diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md
new file mode 100644
index 0000000000000000000000000000000000000000..3487cff8b23a09fb37fd6375e0e0c5f278b5f47b
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/custom.md
@@ -0,0 +1,15 @@
+---
+name: Issue template
+about: Issue template for code error.
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+请提供下述完整信息以便快速定位问题/Please provide the following information to quickly locate the problem
+
+- 系统环境/System Environment:
+- 版本号/Version:Paddle: PaddleOCR: 问题相关组件/Related components:
+- 运行指令/Command Code:
+- 完整报错/Complete Error Message:
diff --git a/MANIFEST.in b/MANIFEST.in
index d674fabc5d714f7e31ed00b32be2d44d6dd10871..1fcf184dacee9dcaf3d5b2e62d12c7b156e068c7 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -5,5 +5,6 @@ recursive-include ppocr/utils *.txt utility.py logging.py network.py
recursive-include ppocr/data *.py
recursive-include ppocr/postprocess *.py
recursive-include tools/infer *.py
+recursive-include tools __init__.py
recursive-include ppocr/utils/e2e_utils *.py
recursive-include ppstructure *.py
\ No newline at end of file
diff --git a/PPOCRLabel/PPOCRLabel.py b/PPOCRLabel/PPOCRLabel.py
index 6e5323a436dd37848293707609f1650de7c504da..6477ea07025c09303e255ba0118f1b9a4d7fbb8a 100644
--- a/PPOCRLabel/PPOCRLabel.py
+++ b/PPOCRLabel/PPOCRLabel.py
@@ -35,6 +35,7 @@ import numpy as np
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../..')))
+sys.path.append(os.path.abspath(os.path.join(__dir__, '../PaddleOCR')))
sys.path.append("..")
from paddleocr import PaddleOCR
@@ -113,7 +114,7 @@ class MainWindow(QMainWindow, WindowMixin):
getStr = lambda strId: self.stringBundle.getString(strId)
self.defaultSaveDir = defaultSaveDir
- self.ocr = PaddleOCR(use_pdserving=False, use_angle_cls=True, det=True, cls=True, use_gpu=gpu, lang=lang)
+ self.ocr = PaddleOCR(use_pdserving=False, use_angle_cls=True, det=True, cls=True, use_gpu=gpu, lang=lang, show_log=False)
if os.path.exists('./data/paddle.png'):
result = self.ocr.ocr('./data/paddle.png', cls=True, det=True)
@@ -390,7 +391,7 @@ class MainWindow(QMainWindow, WindowMixin):
'Ctrl+J', 'edit', u'Move and edit Boxs', enabled=False)
create = action(getStr('crtBox'), self.createShape,
- 'w', 'new', getStr('crtBoxDetail'), enabled=False)
+ 'w', 'objects', getStr('crtBoxDetail'), enabled=False)
delete = action(getStr('delBox'), self.deleteSelectedShape,
'backspace', 'delete', getStr('delBoxDetail'), enabled=False)
@@ -1388,7 +1389,6 @@ class MainWindow(QMainWindow, WindowMixin):
for box in self.PPlabel[imgidx]:
shapes.append((box['transcription'], box['points'], None, None, box['difficult']))
- print(shapes)
self.loadLabels(shapes)
self.canvas.verified = False
diff --git a/PPOCRLabel/README.md b/PPOCRLabel/README.md
index 9e5b3245b0cfb56d300155a94f64d38edcdbb599..242c1521dca9e998520851daa5b5ecf30d4d69e3 100644
--- a/PPOCRLabel/README.md
+++ b/PPOCRLabel/README.md
@@ -8,7 +8,10 @@ PPOCRLabel is a semi-automatic graphic annotation tool suitable for OCR field, w
### Recent Update
-- 2021.8.11:
+- 2021.11.17:
+ - Support install and start PPOCRLabel through the whl package (by [d2623587501](https://github.com/d2623587501))
+ - Dataset segmentation: Divide the annotation file into training, verification and testing parts (refer to section 3.5 below, by [MrCuiHao](https://github.com/MrCuiHao))
+- 2021.8.11:
- New functions: Open the dataset folder, image rotation (Note: Please delete the label box before rotating the image) (by [Wei-JL](https://github.com/Wei-JL))
- Added shortcut key description (Help-Shortcut Key), repaired the direction shortcut key movement function under batch processing (by [d2623587501](https://github.com/d2623587501))
- 2021.2.5: New batch processing and undo functions (by [Evezerest](https://github.com/Evezerest)):
@@ -21,14 +24,11 @@ PPOCRLabel is a semi-automatic graphic annotation tool suitable for OCR field, w
- Click to modify the recognition result.(If you can't change the result, please switch to the system default input method, or switch back to the original input method again)
- 2020.12.18: Support re-recognition of a single label box (by [ninetailskim](https://github.com/ninetailskim) ), perfect shortcut keys.
-### TODO:
-- Lock box mode: For the same scene data, the size and position of the locked detection box can be transferred between different pictures.
-## Installation
-### 1. Environment Preparation
+## 1. Installation and Run
-#### **Install PaddlePaddle 2.0**
+### 1.1 Install PaddlePaddle
```bash
pip3 install --upgrade pip
@@ -42,61 +42,57 @@ python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
For more software version requirements, please refer to the instructions in [Installation Document](https://www.paddlepaddle.org.cn/install/quick) for operation.
-#### **Install PaddleOCR**
+### 1.2 Install and Run PPOCRLabel
-```bash
-# Recommend
-git clone https://github.com/PaddlePaddle/PaddleOCR
-
-# If you cannot pull successfully due to network problems, you can also choose to use the code hosting on the cloud:
-
-git clone https://gitee.com/paddlepaddle/PaddleOCR
-
-# Note: The cloud-hosting code may not be able to synchronize the update with this GitHub project in real time. There might be a delay of 3-5 days. Please give priority to the recommended method.
-```
+PPOCRLabel can be started in two ways: whl package and Python script. The whl package form is more convenient to start, and the python script to start is convenient for secondary development.
-#### **Install Third-party Libraries**
+#### Windows
```bash
-cd PaddleOCR
-pip3 install -r requirements.txt
+pip install PPOCRLabel # install
+PPOCRLabel # run
```
-If you getting this error `OSError: [WinError 126] The specified module could not be found` when you install shapely on windows. Please try to download Shapely whl file using http://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely.
-
-Reference: [Solve shapely installation on windows](https://stackoverflow.com/questions/44398265/install-shapely-oserror-winerror-126-the-specified-module-could-not-be-found)
+> If you getting this error `OSError: [WinError 126] The specified module could not be found` when you install shapely on windows. Please try to download Shapely whl file using http://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely.
+>
+> Reference: [Solve shapely installation on windows](https://stackoverflow.com/questions/44398265/install-shapely-oserror-winerror-126-the-specified-module-could-not-be-found)
+>
-### 2. Install PPOCRLabel
+#### Ubuntu Linux
-#### Windows
+```bash
+pip3 install PPOCRLabel
+pip3 install trash-cli
+PPOCRLabel
+```
+#### MacOS
```bash
-pip install pyqt5
-cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
-python PPOCRLabel.py
+pip3 install PPOCRLabel
+pip3 install opencv-contrib-python-headless==4.2.0.32
+PPOCRLabel # run
```
-#### Ubuntu Linux
+#### 1.2.2 Build and Install the Whl Package Locally
```bash
-pip3 install pyqt5
-pip3 install trash-cli
-cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
-python3 PPOCRLabel.py
+cd PaddleOCR/PPOCRLabel
+python3 setup.py bdist_wheel
+pip3 install dist/PPOCRLabel-1.0.0-py2.py3-none-any.whl
```
-#### MacOS
+#### 1.2.3 Run PPOCRLabel by Python Script
+
```bash
-pip3 install pyqt5
-pip3 uninstall opencv-python # Uninstall opencv manually as it conflicts with pyqt
-pip3 install opencv-contrib-python-headless==4.2.0.32 # Install the headless version of opencv
-cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
-python3 PPOCRLabel.py
+cd ./PPOCRLabel # Switch to the PPOCRLabel directory
+python PPOCRLabel.py --lang ch
```
-## Usage
-### Steps
+
+## 2. Usage
+
+### 2.1 Steps
1. Build and launch using the instructions above.
@@ -122,7 +118,7 @@ python3 PPOCRLabel.py
10. Labeling result: the user can export the label result manually through the menu "File - Export Label", while the program will also export automatically if "File - Auto export Label Mode" is selected. The manually checked label will be stored in *Label.txt* under the opened picture folder. Click "File"-"Export Recognition Results" in the menu bar, the recognition training data of such pictures will be saved in the *crop_img* folder, and the recognition label will be saved in *rec_gt.txt*[4].
-### Note
+### 2.2 Note
[1] PPOCRLabel uses the opened folder as the project. After opening the image folder, the picture will not be displayed in the dialog. Instead, the pictures under the folder will be directly imported into the program after clicking "Open Dir".
@@ -140,9 +136,11 @@ python3 PPOCRLabel.py
| rec_gt.txt | The recognition label file, which can be directly used for PPOCR identification model training, is generated after the user clicks on the menu bar "File"-"Export recognition result". |
| crop_img | The recognition data, generated at the same time with *rec_gt.txt* |
-## Explanation
-### Shortcut keys
+
+## 3. Explanation
+
+### 3.1 Shortcut keys
| Shortcut keys | Description |
| ------------------------ | ------------------------------------------------ |
@@ -162,31 +160,56 @@ python3 PPOCRLabel.py
| Ctrl-- | Zoom out |
| ↑→↓← | Move selected box |
-### Built-in Model
+### 3.2 Built-in Model
- Default model: PPOCRLabel uses the Chinese and English ultra-lightweight OCR model in PaddleOCR by default, supports Chinese, English and number recognition, and multiple language detection.
- Model language switching: Changing the built-in model language is supportable by clicking "PaddleOCR"-"Choose OCR Model" in the menu bar. Currently supported languagesinclude French, German, Korean, and Japanese.
For specific model download links, please refer to [PaddleOCR Model List](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_en/models_list_en.md#multilingual-recognition-modelupdating)
-- Custom model: The model trained by users can be replaced by modifying PPOCRLabel.py in [PaddleOCR class instantiation](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/PPOCRLabel/PPOCRLabel.py#L110) referring [Custom Model Code](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_en/whl_en.md#use-custom-model)
+- **Custom Model**: If users want to replace the built-in model with their own inference model, they can follow the [Custom Model Code Usage](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/doc/doc_en/whl_en.md#31-use-by-code) by modifying PPOCRLabel.py for [Instantiation of PaddleOCR class](https://github.com/PaddlePaddle/PaddleOCR/blob/release/ 2.3/PPOCRLabel/PPOCRLabel.py#L116) :
-### Export Label Result
+ add parameter `det_model_dir` in `self.ocr = PaddleOCR(use_pdserving=False, use_angle_cls=True, det=True, cls=True, use_gpu=gpu, lang=lang) `
+
+### 3.3 Export Label Result
PPOCRLabel supports three ways to export Label.txt
- Automatically export: After selecting "File - Auto Export Label Mode", the program will automatically write the annotations into Label.txt every time the user confirms an image. If this option is not turned on, it will be automatically exported after detecting that the user has manually checked 5 images.
+
+ > The automatically export mode is turned off by default
+
- Manual export: Click "File-Export Marking Results" to manually export the label.
+
- Close application export
-### Export Partial Recognition Results
+### 3.4 Export Partial Recognition Results
+
+For some data that are difficult to recognize, the recognition results will not be exported by **unchecking** the corresponding tags in the recognition results checkbox. The unchecked recognition result is saved as `True` in the `difficult` variable in the label file `label.txt`.
+
+> *Note: The status of the checkboxes in the recognition results still needs to be saved manually by clicking Save Button.*
-For some data that are difficult to recognize, the recognition results will not be exported by **unchecking** the corresponding tags in the recognition results checkbox.
+### 3.5 Dataset division
-*Note: The status of the checkboxes in the recognition results still needs to be saved manually by clicking Save Button.*
+- Enter the following command in the terminal to execute the dataset division script:
-### Error message
+ ```
+ cd ./PPOCRLabel # Change the directory to the PPOCRLabel folder
+ python gen_ocr_train_val_test.py --trainValTestRatio 6:2:2 --labelRootPath ../train_data/label --detRootPath ../train_data/det --recRootPath ../train_data/rec
+ ```
+
+ Parameter Description:
+
+ - `trainValTestRatio` is the division ratio of the number of images in the training set, validation set, and test set, set according to your actual situation, the default is `6:2:2`
+
+ - `labelRootPath` is the storage path of the dataset labeled by PPOCRLabel, the default is `../train_data/label`
+
+ - `detRootPath` is the path where the text detection dataset is divided according to the dataset marked by PPOCRLabel. The default is `../train_data/det`
+
+ - `recRootPath` is the path where the character recognition dataset is divided according to the dataset marked by PPOCRLabel. The default is `../train_data/rec`
+
+### 3.6 Error message
- If paddleocr is installed with whl, it has a higher priority than calling PaddleOCR class with paddleocr.py, which may cause an exception if whl package is not updated.
@@ -204,6 +227,8 @@ For some data that are difficult to recognize, the recognition results will not
pip install opencv-contrib-python-headless==4.2.0.32
```
-### Related
+
+
+### 4. Related
1.[Tzutalin. LabelImg. Git code (2015)](https://github.com/tzutalin/labelImg)
\ No newline at end of file
diff --git a/PPOCRLabel/README_ch.md b/PPOCRLabel/README_ch.md
index 7f9351dfe185be2417162f2c786f5eec0b58816a..d745c9734636e2637f5019a5dd5097dd88cf2e56 100644
--- a/PPOCRLabel/README_ch.md
+++ b/PPOCRLabel/README_ch.md
@@ -2,14 +2,17 @@
# PPOCRLabel
-PPOCRLabel是一款适用于OCR领域的半自动化图形标注工具,内置PPOCR模型对数据自动标注和重新识别。使用python3和pyqt5编写,支持矩形框标注和四点标注模式,导出格式可直接用于PPOCR检测和识别模型的训练。
+PPOCRLabel是一款适用于OCR领域的半自动化图形标注工具,内置PP-OCR模型对数据自动标注和重新识别。使用Python3和PyQT5编写,支持矩形框标注和四点标注模式,导出格式可直接用于PaddleOCR检测和识别模型的训练。
#### 近期更新
+- 2021.11.17:
+ - 新增支持通过whl包安装和启动PPOCRLabel(by [d2623587501](https://github.com/d2623587501))
+ - 标注数据集切分:对标注数据进行训练、验证与测试集划分(参考下方3.5节,by [MrCuiHao](https://github.com/MrCuiHao))
- 2021.8.11:
- - 新增功能:打开数据所在文件夹、图像旋转(注意:旋转前的图片上不能存在标记框)(by [Wei-JL](https://github.com/Wei-JL))
+ - 新增功能:打开数据所在文件夹、右键图像旋转90度(注意:旋转前的图片上不能存在标记框,by [Wei-JL](https://github.com/Wei-JL))
- 新增快捷键说明(帮助-快捷键)、修复批处理下的方向快捷键移动功能(by [d2623587501](https://github.com/d2623587501))
- 2021.2.5:新增批处理与撤销功能(by [Evezerest](https://github.com/Evezerest))
- **批处理功能**:按住Ctrl键选择标记框后可批量移动、复制、删除、重新识别。
@@ -21,85 +24,75 @@ PPOCRLabel是一款适用于OCR领域的半自动化图形标注工具,内置P
- 识别结果更改为单击修改。(如果无法修改,请切换为系统自带输入法,或再次切回原输入法)
- 2020.12.18: 支持对单个标记框进行重新识别(by [ninetailskim](https://github.com/ninetailskim)),完善快捷键。
-#### 尽请期待
-
-- 锁定框模式:针对同一场景数据,被锁定的检测框的大小与位置能在不同图片之间传递。
-
如果您对以上内容感兴趣或对完善工具有不一样的想法,欢迎加入我们的SIG队伍与我们共同开发。可以在[此处](https://github.com/PaddlePaddle/PaddleOCR/issues/1728)完成问卷和前置任务,经过我们确认相关内容后即可正式加入,享受SIG福利,共同为OCR开源事业贡献(特别说明:针对PPOCRLabel的改进也属于PaddleOCR前置任务)
-## 安装
-### 1. 环境搭建
-#### 安装PaddlePaddle
+## 1. 安装与运行
+### 1.1 安装PaddlePaddle
```bash
pip3 install --upgrade pip
-如果您的机器安装的是CUDA9或CUDA10,请运行以下命令安装
+# 如果您的机器安装的是CUDA9或CUDA10,请运行以下命令安装
python3 -m pip install paddlepaddle-gpu -i https://mirror.baidu.com/pypi/simple
-如果您的机器是CPU,请运行以下命令安装
-
+# 如果您的机器是CPU,请运行以下命令安装
python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
```
更多的版本需求,请参照[安装文档](https://www.paddlepaddle.org.cn/install/quick)中的说明进行操作。
-#### **安装PaddleOCR**
+### 1.2 安装与运行PPOCRLabel
-```bash
-【推荐】git clone https://github.com/PaddlePaddle/PaddleOCR
+PPOCRLabel可通过whl包与Python脚本两种方式启动,whl包形式启动更加方便,python脚本启动便于二次开发
-如果因为网络问题无法pull成功,也可选择使用码云上的托管:
+#### 1.2.1 通过whl包安装与运行
-git clone https://gitee.com/paddlepaddle/PaddleOCR
+##### Windows
-注:码云托管代码可能无法实时同步本github项目更新,存在3~5天延时,请优先使用推荐方式。
+```bash
+pip install PPOCRLabel # 安装
+PPOCRLabel --lang ch # 运行
```
-
-#### 安装第三方库
+> 注意:通过whl包安装PPOCRLabel会自动下载 `paddleocr` whl包,其中shapely依赖可能会出现 `[winRrror 126] 找不到指定模块的问题。` 的错误,建议从[这里](https://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely)下载并安装
+##### Ubuntu Linux
```bash
-cd PaddleOCR
-pip3 install -r requirements.txt
+pip3 install PPOCRLabel
+pip3 install trash-cli
+PPOCRLabel --lang ch
```
-注意,windows环境下,建议从[这里](https://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely)下载shapely安装包完成安装, 直接通过pip安装的shapely库可能出现`[winRrror 126] 找不到指定模块的问题`。
-
-### 2. 安装PPOCRLabel
-
-#### Windows
-
+##### MacOS
```bash
-pip install pyqt5
-cd ./PPOCRLabel # 将目录切换到PPOCRLabel文件夹下
-python PPOCRLabel.py --lang ch
+pip3 install PPOCRLabel
+pip3 install opencv-contrib-python-headless==4.2.0.32 # 如果下载过慢请添加"-i https://mirror.baidu.com/pypi/simple"
+PPOCRLabel --lang ch # 启动
```
-#### Ubuntu Linux
+#### 1.2.2 本地构建whl包并安装
```bash
-pip3 install pyqt5
-pip3 install trash-cli
-cd ./PPOCRLabel # 将目录切换到PPOCRLabel文件夹下
-python3 PPOCRLabel.py --lang ch
+cd PaddleOCR/PPOCRLabel
+python3 setup.py bdist_wheel
+pip3 install dist/PPOCRLabel-1.0.0-py2.py3-none-any.whl -i https://mirror.baidu.com/pypi/simple
```
-#### MacOS
+#### 1.2.3 通过Python脚本运行PPOCRLabel
+
+如果您对PPOCRLabel文件有所更改,通过Python脚本运行会更加方面的看到更改的结果
+
```bash
-pip3 install pyqt5
-pip3 uninstall opencv-python # 由于mac版本的opencv与pyqt有冲突,需先手动卸载opencv
-pip3 install opencv-contrib-python-headless==4.2.0.32 # 安装headless版本的open-cv
-cd ./PPOCRLabel # 将目录切换到PPOCRLabel文件夹下
-python3 PPOCRLabel.py --lang ch
+cd ./PPOCRLabel # 切换到PPOCRLabel目录
+python PPOCRLabel.py --lang ch
```
-## 使用
+## 2. 使用
-### 操作步骤
+### 2.1 操作步骤
1. 安装与运行:使用上述命令安装与运行程序。
2. 打开文件夹:在菜单栏点击 “文件” - "打开目录" 选择待标记图片的文件夹[1].
@@ -112,7 +105,7 @@ python3 PPOCRLabel.py --lang ch
9. 删除:点击 “删除图像”,图片将会被删除至回收站。
10. 导出结果:用户可以通过菜单中“文件-导出标记结果”手动导出,同时也可以点击“文件 - 自动导出标记结果”开启自动导出。手动确认过的标记将会被存放在所打开图片文件夹下的*Label.txt*中。在菜单栏点击 “文件” - "导出识别结果"后,会将此类图片的识别训练数据保存在*crop_img*文件夹下,识别标签保存在*rec_gt.txt*中[4]。
-### 注意
+### 2.2 注意
[1] PPOCRLabel以文件夹为基本标记单位,打开待标记的图片文件夹后,不会在窗口栏中显示图片,而是在点击 "选择文件夹" 之后直接将文件夹下的图片导入到程序中。
@@ -130,9 +123,11 @@ python3 PPOCRLabel.py --lang ch
| rec_gt.txt | 识别标签。可直接用于PPOCR识别模型训练。需用户手动点击菜单栏“文件” - "导出识别结果"后产生。 |
| crop_img | 识别数据。按照检测框切割后的图片。与rec_gt.txt同时产生。 |
-## 说明
-### 快捷键
+
+## 3. 说明
+
+### 3.1 快捷键
| 快捷键 | 说明 |
| ---------------- | ---------------------------- |
@@ -152,29 +147,53 @@ python3 PPOCRLabel.py --lang ch
| Ctrl-- | 放大 |
| ↑→↓← | 移动标记框 |
-### 内置模型
+### 3.2 内置模型
- 默认模型:PPOCRLabel默认使用PaddleOCR中的中英文超轻量OCR模型,支持中英文与数字识别,多种语言检测。
- 模型语言切换:用户可通过菜单栏中 "PaddleOCR" - "选择模型" 切换内置模型语言,目前支持的语言包括法文、德文、韩文、日文。具体模型下载链接可参考[PaddleOCR模型列表](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_ch/models_list.md).
- - 自定义模型:用户可根据[自定义模型代码使用](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_ch/whl.md#%E8%87%AA%E5%AE%9A%E4%B9%89%E6%A8%A1%E5%9E%8B),通过修改PPOCRLabel.py中针对[PaddleOCR类的实例化](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/PPOCRLabel/PPOCRLabel.py#L110)替换成自己训练的模型。
+ - **自定义模型**:如果用户想将内置模型更换为自己的推理模型,可根据[自定义模型代码使用](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_ch/whl.md#%E8%87%AA%E5%AE%9A%E4%B9%89%E6%A8%A1%E5%9E%8B),通过修改PPOCRLabel.py中针对[PaddleOCR类的实例化](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/PPOCRLabel/PPOCRLabel.py#L116) 实现,例如指定检测模型:`self.ocr = PaddleOCR(det=True, cls=True, use_gpu=gpu, lang=lang) `,在 `det_model_dir` 中传入 自己的模型即可。
-### 导出标记结果
+### 3.3 导出标记结果
PPOCRLabel支持三种导出方式:
- 自动导出:点击“文件 - 自动导出标记结果”后,用户每确认过一张图片,程序自动将标记结果写入Label.txt中。若未开启此选项,则检测到用户手动确认过5张图片后进行自动导出。
+
+ > 默认情况下自动导出功能为关闭状态
+
- 手动导出:点击“文件 - 导出标记结果”手动导出标记。
+
- 关闭应用程序导出
-### 导出部分识别结果
+### 3.4 导出部分识别结果
+
+针对部分难以识别的数据,通过在识别结果的复选框中**取消勾选**相应的标记,其识别结果不会被导出。被取消勾选的识别结果在标记文件 `label.txt` 中的 `difficult` 变量保存为 `True` 。
+
+> *注意:识别结果中的复选框状态仍需用户手动点击确认后才能保留*
+
+### 3.5 数据集划分
+
+在终端中输入以下命令执行数据集划分脚本:
+
+```
+cd ./PPOCRLabel # 将目录切换到PPOCRLabel文件夹下
+python gen_ocr_train_val_test.py --trainValTestRatio 6:2:2 --labelRootPath ../train_data/label --detRootPath ../train_data/det --recRootPath ../train_data/rec
+```
+
+参数说明:
+
+- `trainValTestRatio` 是训练集、验证集、测试集的图像数量划分比例,根据实际情况设定,默认是`6:2:2`
-针对部分难以识别的数据,通过在识别结果的复选框中**取消勾选**相应的标记,其识别结果不会被导出。
+- `labelRootPath` 是PPOCRLabel标注的数据集存放路径,默认是`../train_data/label`
-*注意:识别结果中的复选框状态仍需用户手动点击确认后才能保留*
+- `detRootPath` 是根据PPOCRLabel标注的数据集划分后的文本检测数据集存放的路径,默认是`../train_data/det `
+
+- `recRootPath` 是根据PPOCRLabel标注的数据集划分后的字符识别数据集存放的路径,默认是`../train_data/rec`
+
+### 3.6 错误提示
-### 错误提示
- 如果同时使用whl包安装了paddleocr,其优先级大于通过paddleocr.py调用PaddleOCR类,whl包未更新时会导致程序异常。
- PPOCRLabel**不支持对中文文件名**的图片进行自动标注。
@@ -194,6 +213,8 @@ PPOCRLabel支持三种导出方式:
pip install opencv-contrib-python-headless==4.2.0.32
```
-### 参考资料
+
+
+### 4. 参考资料
1.[Tzutalin. LabelImg. Git code (2015)](https://github.com/tzutalin/labelImg)
diff --git a/PPOCRLabel/gen_ocr_train_val_test.py b/PPOCRLabel/gen_ocr_train_val_test.py
new file mode 100644
index 0000000000000000000000000000000000000000..64cba612ae267835dd47aedc2b0356c9df462038
--- /dev/null
+++ b/PPOCRLabel/gen_ocr_train_val_test.py
@@ -0,0 +1,147 @@
+# coding:utf8
+import os
+import shutil
+import random
+import argparse
+
+
+# 删除划分的训练集、验证集、测试集文件夹,重新创建一个空的文件夹
+def isCreateOrDeleteFolder(path, flag):
+ flagPath = os.path.join(path, flag)
+
+ if os.path.exists(flagPath):
+ shutil.rmtree(flagPath)
+
+ os.makedirs(flagPath)
+ flagAbsPath = os.path.abspath(flagPath)
+ return flagAbsPath
+
+
+def splitTrainVal(root, dir, absTrainRootPath, absValRootPath, absTestRootPath, trainTxt, valTxt, testTxt, flag):
+ # 按照指定的比例划分训练集、验证集、测试集
+ labelPath = os.path.join(root, dir)
+ labelAbsPath = os.path.abspath(labelPath)
+
+ if flag == "det":
+ labelFilePath = os.path.join(labelAbsPath, args.detLabelFileName)
+ elif flag == "rec":
+ labelFilePath = os.path.join(labelAbsPath, args.recLabelFileName)
+
+ labelFileRead = open(labelFilePath, "r", encoding="UTF-8")
+ labelFileContent = labelFileRead.readlines()
+ random.shuffle(labelFileContent)
+ labelRecordLen = len(labelFileContent)
+
+ for index, labelRecordInfo in enumerate(labelFileContent):
+ imageRelativePath = labelRecordInfo.split('\t')[0]
+ imageLabel = labelRecordInfo.split('\t')[1]
+ imageName = os.path.basename(imageRelativePath)
+
+ if flag == "det":
+ imagePath = os.path.join(labelAbsPath, imageName)
+ elif flag == "rec":
+ imagePath = os.path.join(labelAbsPath, "{}\\{}".format(args.recImageDirName, imageName))
+
+ # 按预设的比例划分训练集、验证集、测试集
+ trainValTestRatio = args.trainValTestRatio.split(":")
+ trainRatio = eval(trainValTestRatio[0]) / 10
+ valRatio = trainRatio + eval(trainValTestRatio[1]) / 10
+ curRatio = index / labelRecordLen
+
+ if curRatio < trainRatio:
+ imageCopyPath = os.path.join(absTrainRootPath, imageName)
+ shutil.copy(imagePath, imageCopyPath)
+ trainTxt.write("{}\t{}".format(imageCopyPath, imageLabel))
+ elif curRatio >= trainRatio and curRatio < valRatio:
+ imageCopyPath = os.path.join(absValRootPath, imageName)
+ shutil.copy(imagePath, imageCopyPath)
+ valTxt.write("{}\t{}".format(imageCopyPath, imageLabel))
+ else:
+ imageCopyPath = os.path.join(absTestRootPath, imageName)
+ shutil.copy(imagePath, imageCopyPath)
+ testTxt.write("{}\t{}".format(imageCopyPath, imageLabel))
+
+
+# 删掉存在的文件
+def removeFile(path):
+ if os.path.exists(path):
+ os.remove(path)
+
+
+def genDetRecTrainVal(args):
+ detAbsTrainRootPath = isCreateOrDeleteFolder(args.detRootPath, "train")
+ detAbsValRootPath = isCreateOrDeleteFolder(args.detRootPath, "val")
+ detAbsTestRootPath = isCreateOrDeleteFolder(args.detRootPath, "test")
+ recAbsTrainRootPath = isCreateOrDeleteFolder(args.recRootPath, "train")
+ recAbsValRootPath = isCreateOrDeleteFolder(args.recRootPath, "val")
+ recAbsTestRootPath = isCreateOrDeleteFolder(args.recRootPath, "test")
+
+ removeFile(os.path.join(args.detRootPath, "train.txt"))
+ removeFile(os.path.join(args.detRootPath, "val.txt"))
+ removeFile(os.path.join(args.detRootPath, "test.txt"))
+ removeFile(os.path.join(args.recRootPath, "train.txt"))
+ removeFile(os.path.join(args.recRootPath, "val.txt"))
+ removeFile(os.path.join(args.recRootPath, "test.txt"))
+
+ detTrainTxt = open(os.path.join(args.detRootPath, "train.txt"), "a", encoding="UTF-8")
+ detValTxt = open(os.path.join(args.detRootPath, "val.txt"), "a", encoding="UTF-8")
+ detTestTxt = open(os.path.join(args.detRootPath, "test.txt"), "a", encoding="UTF-8")
+ recTrainTxt = open(os.path.join(args.recRootPath, "train.txt"), "a", encoding="UTF-8")
+ recValTxt = open(os.path.join(args.recRootPath, "val.txt"), "a", encoding="UTF-8")
+ recTestTxt = open(os.path.join(args.recRootPath, "test.txt"), "a", encoding="UTF-8")
+
+ for root, dirs, files in os.walk(args.labelRootPath):
+ for dir in dirs:
+ splitTrainVal(root, dir, detAbsTrainRootPath, detAbsValRootPath, detAbsTestRootPath, detTrainTxt, detValTxt,
+ detTestTxt, "det")
+ splitTrainVal(root, dir, recAbsTrainRootPath, recAbsValRootPath, recAbsTestRootPath, recTrainTxt, recValTxt,
+ recTestTxt, "rec")
+ break
+
+
+if __name__ == "__main__":
+ # 功能描述:分别划分检测和识别的训练集、验证集、测试集
+ # 说明:可以根据自己的路径和需求调整参数,图像数据往往多人合作分批标注,每一批图像数据放在一个文件夹内用PPOCRLabel进行标注,
+ # 如此会有多个标注好的图像文件夹汇总并划分训练集、验证集、测试集的需求
+ parser = argparse.ArgumentParser()
+ parser.add_argument(
+ "--trainValTestRatio",
+ type=str,
+ default="6:2:2",
+ help="ratio of trainset:valset:testset")
+ parser.add_argument(
+ "--labelRootPath",
+ type=str,
+ default="../train_data/label",
+ help="path to the dataset marked by ppocrlabel, E.g, dataset folder named 1,2,3..."
+ )
+ parser.add_argument(
+ "--detRootPath",
+ type=str,
+ default="../train_data/det",
+ help="the path where the divided detection dataset is placed")
+ parser.add_argument(
+ "--recRootPath",
+ type=str,
+ default="../train_data/rec",
+ help="the path where the divided recognition dataset is placed"
+ )
+ parser.add_argument(
+ "--detLabelFileName",
+ type=str,
+ default="Label.txt",
+ help="the name of the detection annotation file")
+ parser.add_argument(
+ "--recLabelFileName",
+ type=str,
+ default="rec_gt.txt",
+ help="the name of the recognition annotation file"
+ )
+ parser.add_argument(
+ "--recImageDirName",
+ type=str,
+ default="crop_img",
+ help="the name of the folder where the cropped recognition dataset is located"
+ )
+ args = parser.parse_args()
+ genDetRecTrainVal(args)
diff --git a/PPOCRLabel/libs/resources.py b/PPOCRLabel/libs/resources.py
index d7ee7c83601aa2927c7f32a4e64ee513e16dc472..70241e5d2512f8fb42db91bd429fd107b7bba2d7 100644
--- a/PPOCRLabel/libs/resources.py
+++ b/PPOCRLabel/libs/resources.py
@@ -2,9238 +2,441 @@
# Resource object code
#
-# Created by: The Resource Compiler for PyQt5 (Qt v5.9.7)
+# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
-\x00\x00\x06\x33\
+\x00\x00\x04\xf0\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
+\x00\x00\x14\x00\x00\x00\x14\x08\x03\x00\x00\x00\xba\x57\xed\x3f\
+\x00\x00\x03\x00\x50\x4c\x54\x45\x09\x16\x28\x09\x16\x28\x09\x14\
+\x25\x09\x15\x27\x09\x14\x25\x08\x13\x23\x07\x11\x20\x07\x0f\x1c\
+\x06\x0d\x18\x04\x0a\x13\x03\x07\x0d\x02\x04\x07\x00\x00\x00\x00\
+\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
+\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
+\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
+\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
+\x00\x01\x01\x01\x02\x02\x02\x03\x03\x03\x06\x06\x06\x0a\x0a\x0a\
+\x10\x10\x10\x17\x17\x17\x21\x21\x21\x28\x28\x28\x2c\x2c\x2c\x2d\
+\x2d\x2d\x2e\x2e\x2e\x2f\x2f\x2f\x30\x30\x30\x31\x31\x31\x32\x32\
+\x32\x33\x33\x33\x34\x34\x34\x35\x35\x35\x36\x36\x36\x37\x37\x37\
+\x38\x38\x38\x39\x39\x39\x3a\x3a\x3a\x3b\x3b\x3b\x3c\x3c\x3c\x3d\
+\x3d\x3d\x3e\x3e\x3e\x3f\x3f\x3f\x40\x40\x40\x41\x41\x41\x42\x42\
+\x42\x43\x43\x43\x44\x44\x44\x45\x45\x45\x46\x46\x46\x47\x47\x47\
+\x48\x48\x48\x49\x49\x49\x4a\x4a\x4a\x4b\x4b\x4b\x4c\x4c\x4c\x4d\
+\x4d\x4d\x4e\x4e\x4e\x4f\x4f\x4f\x50\x50\x50\x51\x51\x51\x52\x52\
+\x52\x53\x53\x53\x54\x54\x54\x55\x55\x55\x56\x56\x56\x57\x57\x57\
+\x58\x58\x58\x59\x59\x59\x5a\x5a\x5a\x5b\x5b\x5b\x5c\x5c\x5c\x5d\
+\x5d\x5d\x5e\x5e\x5e\x5f\x5f\x5f\x60\x60\x60\x61\x61\x61\x62\x62\
+\x62\x63\x63\x63\x64\x64\x64\x65\x65\x65\x66\x66\x66\x67\x67\x67\
+\x68\x68\x68\x69\x69\x69\x6a\x6a\x6a\x6b\x6b\x6b\x6c\x6c\x6c\x6d\
+\x6d\x6d\x6e\x6e\x6e\x6f\x6f\x6f\x70\x70\x70\x71\x71\x71\x72\x72\
+\x72\x73\x73\x73\x75\x75\x75\x77\x77\x77\x79\x79\x78\x7a\x7b\x7a\
+\x7c\x7d\x7c\x7f\x7f\x7e\x81\x82\x7f\x84\x85\x81\x84\x85\x82\x85\
+\x86\x83\x86\x87\x83\x86\x88\x84\x87\x88\x84\x87\x89\x84\x87\x89\
+\x85\x87\x89\x85\x88\x89\x85\x83\x86\x85\x7f\x84\x85\x7c\x82\x85\
+\x7a\x81\x85\x76\x81\x8b\x76\x82\x8e\x77\x84\x90\x79\x85\x90\x7d\
+\x87\x8e\x83\x89\x8c\x85\x8b\x8c\x89\x8c\x8c\x8a\x8d\x8b\x8c\x8d\
+\x8a\x8e\x8f\x8d\x90\x91\x8f\x92\x92\x91\x94\x94\x93\x95\x95\x95\
+\x97\x97\x97\x99\x99\x99\x9a\x9a\x9a\x9b\x9b\x9b\x9c\x9c\x9c\x9d\
+\x9d\x9d\x9e\x9e\x9e\x9f\x9f\x9f\xa0\xa0\xa0\xa1\xa1\xa1\xa2\xa2\
+\xa2\xa3\xa3\xa3\xa4\xa4\xa4\xa5\xa5\xa5\xa7\xa7\xa6\xa8\xa8\xa8\
+\xa9\xaa\xa9\xaa\xab\xaa\xab\xac\xab\xac\xad\xac\xad\xad\xad\xae\
+\xae\xad\xae\xaf\xae\xaf\xb0\xaf\xb0\xb0\xaf\xb1\xb1\xb0\xb1\xb2\
+\xb1\xb2\xb3\xb2\xb3\xb4\xb3\xb4\xb5\xb4\xb6\xb6\xb6\xb7\xb7\xb7\
+\xb8\xb8\xb8\xb9\xb9\xb9\xba\xba\xba\xbb\xbb\xbb\xbc\xbc\xbc\xbd\
+\xbe\xbd\xbe\xbf\xbe\xbf\xc0\xbf\xc0\xc0\xc0\xc1\xc1\xc1\xc2\xc2\
+\xc1\xc3\xc3\xc2\xc4\xc4\xc3\xc6\xc6\xc6\xc9\xc9\xc9\xcd\xcd\xcd\
+\xcf\xcf\xcf\xd1\xd1\xd1\xd3\xd3\xd3\xd5\xd5\xd4\xd6\xd6\xd5\xd8\
+\xd8\xd8\xda\xda\xda\xdc\xdc\xdc\xde\xde\xdd\xdf\xdf\xdf\xe0\xe0\
+\xe0\xe2\xe2\xe2\xe3\xe3\xe3\xe5\xe5\xe4\xe6\xe6\xe6\xe8\xe8\xe7\
+\xe9\xe9\xe9\xeb\xeb\xea\xeb\xeb\xeb\xec\xec\xec\xec\xec\xec\xee\
+\xee\xed\xef\xef\xef\xf1\xf1\xf1\xef\xef\xef\xef\xef\xee\xef\xef\
+\xee\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\xf2\xf2\xf2\
+\xf3\xf3\xf3\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf7\xf7\xf6\xf7\
+\xf7\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\
+\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\
+\xfe\xfe\xfe\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
+\xff\xff\xff\xff\xff\xff\xff\xff\x7e\xee\x29\x02\x00\x00\x01\x00\
+\x74\x52\x4e\x53\xd1\xd2\xd3\xc8\xb9\xa9\x93\x78\x5d\x43\x2c\x17\
+\x03\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
+\x00\x00\x00\x00\x00\x00\x00\x01\x02\x03\x06\x0a\x10\x17\x21\x28\
+\x2c\x2d\x2e\x2f\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\
+\x3c\x3d\x3e\x3f\x40\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\x5b\
+\x5c\x5d\x5e\x5f\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\
+\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x71\x6f\x6e\x6d\x6d\x68\x68\x62\
+\x6f\x7c\x8a\x95\x9e\xa6\xae\xb6\xbf\xcd\xd2\xd7\xdb\xe1\xe7\xea\
+\xeb\xeb\xe8\xe6\xdc\xd1\xbe\xac\xa1\x9c\x96\x97\x98\x99\x9a\x9b\
+\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa2\xa2\xa1\xa1\xa1\xa3\xa2\xa2\
+\xa2\xa3\xa3\xa4\xa5\xa6\xa8\xaa\xad\xb0\xb3\xb7\xb8\xb9\xba\xbb\
+\xc0\xc5\xc8\xcb\xcd\xce\xcf\xce\xce\xcf\xd3\xd6\xdc\xe0\xe4\xe8\
+\xea\xee\xf1\xf3\xf5\xf6\xf7\xf8\xf9\xfa\xfa\xfb\xfb\xfb\xfc\xfc\
+\xfc\xfd\xfd\xfd\xfd\xfa\xf6\xf3\xef\xeb\xe7\xe0\xd8\xd0\xc8\xbf\
+\xb6\xae\xa5\x9c\x92\x88\x7d\x72\x68\x66\x64\x63\x62\x5b\x55\x51\
+\x4d\x4a\x46\x48\xa6\xfd\x00\x6d\x00\x00\x00\x9f\x49\x44\x41\x54\
+\x18\xd3\xb5\xd0\x31\x0e\x82\x40\x10\x85\x61\xe0\x12\x1e\x76\x54\
+\x54\xa0\xd9\x1d\xf3\xe2\x11\xd4\xc4\xd6\x58\xd3\x10\x0b\x3b\x02\
+\xd1\x42\xa9\xc6\x53\x50\x8e\xee\x02\x31\x9a\xd8\xf2\x17\x53\x7c\
+\xc9\x6e\x26\x13\x4c\xfe\x14\x8c\x87\x34\xf4\x85\x44\xb3\x0c\x40\
+\x1a\x0f\xea\x91\xa6\x40\xc1\xc6\xf0\x1e\x2b\xea\xd1\x3d\xc2\xae\
+\x62\x91\xd0\xf2\x15\xa9\xd7\x80\x28\xc6\xf6\x26\x46\x24\xb2\xa6\
+\xa9\xb1\xa4\x0e\x53\x3c\x45\x4c\x18\x39\x7c\x48\x83\x39\xf9\x3f\
+\x4f\x09\x44\xd8\xba\x58\x4a\xe0\xa0\x1e\x35\xcf\x50\x56\x58\x73\
+\x71\x3f\x63\x91\xab\xf6\x2b\xe9\x71\x83\xae\xe4\xe2\xe8\xb3\xbc\
+\xaa\xb6\xed\xcb\x4d\x1d\xf9\x4a\xbf\xbd\x01\x0c\x0e\x70\x72\x00\
+\x75\x19\xc2\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x03\x12\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\
\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x10\x00\x00\
-\x0b\x10\x01\xad\x23\xbd\x75\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd3\x09\x09\x14\x30\x03\x75\x06\x85\x3f\x00\x00\x05\xc0\x49\x44\
-\x41\x54\x78\xda\xc5\x97\x4d\x6c\x1b\xd7\x11\xc7\x7f\xbb\x5c\x7e\
-\x73\xad\x95\xe4\xc8\x72\x9c\x2a\x52\x80\x26\x46\x9a\xda\x54\x84\
-\xd4\x69\x9b\x16\x16\x20\x07\x69\x51\x24\x05\x9a\x22\x40\x0e\x59\
-\x03\x86\x7b\xe8\xc5\xe8\xb9\x28\x24\xf4\xd2\xab\xdd\x1e\x7b\xf1\
-\xa2\x97\xa2\x48\x51\xb4\x75\x5a\xc4\x68\x2b\xa1\x89\x03\x3b\x85\
-\x62\x26\x76\x52\x35\x82\x2d\xda\xaa\xf5\x41\x52\x21\x25\x92\xbb\
-\xfc\x58\xbe\xd7\xc3\x92\x14\x29\x92\x26\x9b\x4b\x1e\x30\xc4\xf2\
-\xbd\x99\xf7\xff\xef\xbc\xd9\x99\x79\x8a\x94\x92\x2f\x72\x68\x00\
-\xa6\x69\x0e\x6c\xb0\xfa\x98\x35\x09\x4c\x4a\xc9\xe9\xc6\x9c\x90\
-\x20\x04\x4b\x02\x92\xcf\x6c\x99\xc9\x41\xf7\xb2\x2c\xcb\x23\xd0\
-\x6f\xdc\x99\xb0\x0c\xe0\x2c\x60\x22\x88\xb7\x3a\xad\x0e\x8e\x80\
-\x79\x80\xdb\xe3\x56\x42\x48\x2c\x29\xb8\x7c\x32\x6d\xe6\x06\xf2\
-\x40\x1f\xf0\x05\xe0\x02\x60\xa8\x0a\x44\xc3\x10\xf4\xc3\x89\x47\
-\xf3\x44\xc3\x41\x00\xa4\x28\xf3\xde\x5d\x1d\xbb\x04\xc5\x32\xf1\
-\x72\x95\x38\x30\x7f\xf3\xb0\x75\x69\x3a\x63\x2e\x7c\x2e\x02\x6b\
-\x8f\x5b\x86\x90\x2c\x02\x71\x4d\x85\x58\x18\xbe\x7b\xb2\x4a\x7c\
-\x4a\x65\xfa\x09\x1f\xa0\xb7\x68\x07\xf8\x09\xb0\x9e\x11\x7c\xb8\
-\x26\x78\xe7\xd6\x2e\xd7\xd6\x46\x0d\xe1\x32\xbf\x3c\x6a\xbd\x02\
-\xcc\xce\xec\x74\xf7\x86\xd6\x03\x3c\x5e\x07\x37\xf4\x10\xcc\x3e\
-\x5d\xe1\xfb\xa7\x34\x46\x74\x3f\x00\x99\x3d\xc1\xda\x86\x4d\xc5\
-\x15\x08\xa9\x34\xed\x9e\x7d\x52\x67\xf6\x84\xca\xec\x89\x51\xde\
-\xfe\xc0\xe5\x8f\x37\x4a\x7c\xb2\x15\x8b\x0b\xc1\xda\x0d\xc3\x9a\
-\x3d\x95\x33\x13\x7d\x09\xb4\xbc\xb9\xf1\xc4\x61\x87\x1f\x7c\xdd\
-\x4f\x7c\x2a\x00\xc0\xc6\x8e\xcb\xd6\x8e\x03\xc0\x8b\x33\x7a\x07\
-\xf1\xab\xcb\x79\x00\x9e\x9a\xd0\x79\xe1\x69\x8d\x2f\x3f\x1a\xe1\
-\xcd\xa5\x6d\xfe\x74\xfb\x88\x01\x2c\x5e\x1f\xb2\xa6\x9e\xdf\x6d\
-\xf7\x44\x07\x81\x06\xb8\x11\x85\x73\x73\x41\x8e\x0c\xab\x38\x55\
-\x48\x65\x2b\x14\x8b\x0e\xdf\xf9\xda\x50\xcf\xf3\x6c\x90\xba\xba\
-\x9c\x67\xe2\xa8\xce\xa1\xa8\xca\xeb\x67\xc6\xa8\xc9\x14\x57\x6e\
-\x8f\x19\xc0\x22\x30\xdd\x6a\xa3\x76\x09\xb8\xb8\x1e\x82\xd7\x9e\
-\x77\x89\x86\x54\x0a\x0e\x64\xf3\xa2\x2f\xf8\x41\x22\xf7\x37\xf3\
-\x14\x1c\x70\x6b\x0a\x67\x9e\x3b\xcc\xf1\x71\x1b\x21\x89\xbf\x77\
-\xc8\x5a\xe8\x4a\xa0\xfe\xa9\x5d\x50\x15\x78\x6e\xaa\xc2\xe4\xb8\
-\x86\x53\x05\xa7\x0a\x77\x1e\x14\x3b\xc0\x37\xb3\x70\x6d\x05\xde\
-\x59\x81\xeb\xab\x90\x2f\xb5\x93\xf8\xd6\x57\xf5\xa6\x7d\x34\xac\
-\xf2\xf2\xa9\x00\x7e\x1f\x08\xc9\x85\x77\x75\xcb\xe8\xe6\x81\xb3\
-\x80\x71\x28\x02\x27\xa6\x34\xf2\x0e\x4d\x19\x1f\x6e\x73\x14\x4e\
-\x05\x6e\x26\x61\xb7\xbe\xfe\x59\x01\xfe\x9e\xa8\x50\x2c\xb9\x4d\
-\x9d\x70\x00\xca\x95\xfd\x3d\x8e\x8e\x68\x3c\xfb\xa5\x3c\x80\x21\
-\x24\x67\xbb\x11\x30\x55\x05\xa6\x27\xaa\x80\x8a\x5d\xa2\x29\x41\
-\x7f\x3b\x81\x8f\xd7\x69\x5b\xb7\x4b\x9e\x07\xd6\xb7\x9d\x36\x3d\
-\xbf\xe6\xad\xad\x6d\xd5\xf8\xd7\xaa\x8b\x1e\x0b\xa0\xa9\x20\x04\
-\x66\x5b\x10\xae\x3e\x66\x4d\x22\x88\x87\x43\x30\x14\x53\x29\x96\
-\xdb\xdd\x69\x87\x02\xcd\xe7\xb2\x0b\x9f\x6e\x42\xd5\x6d\xd7\xd9\
-\xdd\x49\x73\xfc\xf4\xb1\xb6\xb9\x7f\x7c\x58\x25\x99\x56\xb0\x5d\
-\xad\x09\x37\x12\x83\x8d\x2c\xf1\xa5\x88\x35\x09\x24\x1b\x2b\x93\
-\x52\x7a\x6e\x0b\xf8\x3a\x09\xdc\x49\xf9\xf8\xcb\x4d\x18\x89\xc1\
-\xea\x46\xe7\x79\xbb\xf6\x36\xaf\x7c\xd3\x68\x9b\xfb\xf7\x7f\x05\
-\x9f\x6c\xfa\x3b\x02\x34\x16\x06\xb2\x20\x25\xfb\x04\x1a\x85\x25\
-\xa4\xd5\x28\xd7\x7c\x94\x6b\x9d\x91\xfd\xf1\x7a\x8f\x54\x5a\xd9\
-\xe6\x47\xdf\x1b\x25\x1a\xda\xff\xa2\xed\xb2\xe4\xd7\x57\xab\x40\
-\xb0\x43\x3f\xe8\x07\x29\x41\x78\x98\x4b\x5a\x6b\x51\x31\x22\x35\
-\x8a\x65\xdf\xc0\x95\x31\x50\xbe\xc7\x8f\x5f\x3d\xd6\x01\xfe\x8b\
-\xdf\x57\x58\xcf\x05\xbb\xda\x84\x03\x1e\x96\xd7\x06\x28\x5e\x0c\
-\x88\x7a\x75\x13\x42\xa1\xe0\x0c\x06\x2e\x4b\x29\x7e\xfe\x46\x77\
-\xf0\x95\xad\xe0\xc3\x6d\x5b\xca\xa9\x47\x40\x78\x7f\xb2\xb6\x86\
-\xcf\xdf\x1f\x5c\x41\xf2\xd2\x71\xd1\x06\x9e\xde\x93\xfc\xea\x4a\
-\x95\x4f\xb7\x83\xa8\x4a\x6f\xdb\x83\xf1\xd5\xd8\x61\x49\xc0\x7c\
-\x55\x28\x94\xab\x0f\x67\xee\xd5\x7e\x85\xa7\x26\x22\x6d\x6b\xbf\
-\x7c\xab\xc6\xdd\x4c\x00\xad\xcf\x09\x96\xab\x80\x14\x00\x4b\xe0\
-\xab\x7b\x00\x92\x8d\x04\xe3\xd6\xc0\xa7\xca\x16\x50\xa5\x79\x44\
-\xa0\x34\x7f\x15\xf6\x75\xee\x67\x24\x6b\x69\x0d\x65\x80\xa3\xcb\
-\x15\x00\xcf\x36\xd9\x4c\x44\xcf\x6c\x99\x49\x21\x49\xec\xd9\xa0\
-\x2a\x1e\x68\x43\xc0\x9b\x3b\x28\x99\xc2\xfe\xab\x2e\xdf\x55\xba\
-\xea\x74\x93\xd4\x1e\x00\x89\xb9\xca\xb9\x64\x5b\x35\x94\x02\xab\
-\x2c\x88\xdb\x25\x17\x23\xd6\xbf\x53\xfb\xdd\xfb\x31\x36\xf2\x50\
-\x2c\x79\x35\x21\x30\x40\x73\xb7\x99\x75\x71\xbd\x04\x66\x75\x2b\
-\xc7\x97\x81\xf9\xf5\x1d\xd5\x38\x32\xdc\x7f\x33\xbb\xf0\x19\x46\
-\xc0\x4f\x48\xba\x8c\x0f\xe9\x64\xed\xfe\x0c\xfe\xb3\xa1\x00\x32\
-\x57\xc7\x6a\xaf\x05\x27\xd3\x66\x4e\x48\x2e\x15\x2b\x2a\xd9\xdd\
-\x02\xe1\x00\x3d\xc5\x27\xf2\xfc\xec\x87\x7e\x5e\x9c\xd1\x79\xf9\
-\x1b\xc3\xfc\xf4\x55\x0d\x23\xca\x43\x6d\xb6\x32\x79\x9c\xb2\x04\
-\xc4\xa5\xb9\xca\xb9\x5c\xd7\x7e\xa0\xde\x40\x26\x3e\x7a\x10\xa3\
-\x54\xcc\xe2\xd7\xe8\x2e\x8a\xcb\xe3\x47\xf5\xb6\xe4\x32\x39\x46\
-\x4f\xfd\xbd\xdc\x0e\xd7\xef\x84\x01\x91\x98\xab\x9c\x5f\xe8\xd9\
-\x90\xd4\xc7\xac\x10\xe4\xfe\xb6\x32\x4c\xa5\x90\x26\xe8\xa7\x43\
-\xc2\x91\x30\x4e\xe5\xc0\x91\x94\xe8\xaa\x6b\xef\xa5\x78\xeb\xd6\
-\x10\x20\x72\xc0\xec\x41\xb0\x0e\x02\x33\x3b\x66\x4e\x48\x66\xa5\
-\x24\x77\xe5\xf6\x23\x64\x52\xa9\x0e\x77\xea\xb1\x10\xbf\xbd\xe6\
-\x55\xc5\x7b\x69\xf8\xc3\xfb\x50\x72\x3b\xdd\xbe\xb9\xb9\xc9\x9b\
-\xcb\x23\x4d\xf0\xb9\xca\xf9\xdc\x40\x5d\xf1\xa9\x9c\x99\xb8\x3e\
-\x64\x4d\x09\xc9\xe2\xdb\x2b\x63\xf1\xc3\xf7\x6d\xce\x7c\xa5\xc0\
-\xe8\xe8\x58\x53\x67\xcf\x86\xbf\x7e\xb0\x6f\xd3\x92\x14\xc9\xa4\
-\x1e\xf0\xe7\x8f\x86\x48\x17\x1e\x01\x44\xa2\x17\xf8\x43\xef\x05\
-\xf5\xee\x75\xfa\x5d\xdd\x5a\x48\x15\x23\x17\x7e\x73\x23\x62\x1c\
-\xd3\xf3\xcc\x4c\xec\x32\x36\x1c\x24\x14\x0c\x11\x8d\x79\x71\x50\
-\x2c\xe6\x71\x1c\x87\xad\x4c\x89\x1b\xf7\x0c\x36\xf6\x8e\x00\xe4\
-\xbc\x80\x3b\xff\xf9\x2e\x26\x8d\xf1\x42\xde\x5c\xf8\x67\xcc\xba\
-\x08\x9c\x5d\xdf\xd5\xcd\xf5\x5b\x7a\xbc\x5e\x4e\x5b\x0a\x4b\x0c\
-\x64\xa4\x91\xe1\x12\xde\x77\x2e\x2e\xf7\x7a\xeb\xff\x8b\x00\xc0\
-\xb7\x0b\x66\x0e\xb8\x08\x5c\x5c\x0c\x7b\x97\x53\xe0\x74\xb3\xaa\
-\x35\x73\x3b\xc9\x46\x86\x1b\x74\x28\x5f\xf4\xf5\xfc\x7f\x92\x93\
-\xb2\xba\x6d\x79\x43\x86\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
-\x60\x82\
-\x00\x00\x04\xa3\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\
+\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xe2\x03\x02\x04\x32\x2f\x3b\x59\x63\x86\x00\x00\x00\x19\x74\x45\
+\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\
+\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\
+\x00\x02\x7a\x49\x44\x41\x54\x68\xde\xed\xd8\x4b\xa8\x8d\x6b\x1c\
+\xc7\xf1\xcf\xc6\xce\xe6\xd8\x25\xb9\x0d\x44\x88\x72\xa2\x30\xc1\
+\x84\x5c\x42\x71\x9c\x11\x29\x45\x06\x88\x94\x5c\x06\xe4\x32\x31\
+\x33\x32\xa0\x64\xe2\x96\x08\x21\x85\x93\xd2\x49\x92\x94\x5b\x29\
+\xb9\x76\x8a\x48\x31\x71\x89\xe3\xb2\x2d\x93\x47\xbd\xad\xde\x77\
+\xaf\xb5\x77\x6b\x6f\x7b\x6f\xff\x6f\xad\xc9\xfb\xfe\xff\xbf\xe7\
+\xf9\x3d\x97\xff\xf3\xac\x97\x20\x08\x82\x20\x08\x82\x20\x08\x82\
+\x20\x08\x82\xa0\x6d\x18\x8b\x26\x94\xb0\xfc\x77\x30\xfc\x4f\x32\
+\x7b\x17\xdd\xbb\xba\xd9\x39\xc9\x6c\x09\xb3\xba\xba\xd9\xee\xb8\
+\x97\xcc\x9e\xef\xcc\x46\x86\x60\x0b\xea\x2a\xc4\xad\x48\x66\x9b\
+\xf0\x67\xe6\xf9\x06\x8c\xec\xe8\x26\xbb\x61\x36\x4e\xe3\x1b\xee\
+\x54\x88\x6f\xc4\xab\x64\x78\x5f\x99\xce\x87\xa4\x71\x18\x63\x3a\
+\x9a\xd1\xfe\xd8\x84\x27\x99\xbd\x58\xc2\xa1\x0a\x79\x3b\x53\xdc\
+\x7b\x0c\xca\x3c\x1f\x55\xa6\xf3\x1d\x27\x30\xfe\x57\x9a\xac\xc3\
+\x94\x34\x03\xff\x97\x75\xb0\x84\xd7\xf8\xbb\xc2\x92\xff\x98\x62\
+\xb7\x96\xbd\x1b\x8a\x2b\x39\x9a\x25\x9c\xc3\xa4\xf6\x34\xda\x88\
+\x55\xe9\xf8\xc8\xeb\xd0\x4d\x2c\x43\x43\x05\x9d\x43\x29\xfe\x39\
+\x7a\x17\x0c\xe8\x4c\x5c\x2b\x68\xe7\x12\xa6\xb6\xa5\xd1\x71\xd8\
+\x8b\x77\x39\x8d\x7f\xc1\x51\x4c\xae\xa2\x48\xc1\xc4\xb4\x4c\x4b\
+\x58\x5a\xc5\x4a\x9a\x83\x1b\x05\xc6\xaf\xa6\xba\x51\x57\x4b\xb3\
+\x97\x0a\x1a\x7b\x89\x1d\x18\xdc\xc2\xad\xf0\x6f\xca\xbf\x9d\x0a\
+\x54\xb5\x79\xf3\x70\xab\xa0\x2f\x67\x6a\x65\x76\x40\x8e\xf8\x63\
+\x2c\x46\x7d\x2b\xf4\x16\x64\x74\xa6\xb7\xb2\x76\xac\xcb\xe9\xd3\
+\xa9\x5a\x19\x9e\x95\x23\xfe\x1d\xc7\x5a\x71\x5c\xd4\xe3\x41\xa6\
+\xf8\xb4\xd4\xe8\x4c\x9c\xcd\xdc\xb9\xb3\xbf\xed\xb5\x32\xfc\x07\
+\x36\xa6\xe5\x5b\xde\x48\x13\x8e\xa4\x63\xa4\x1a\xd6\xa6\xbc\x6f\
+\x2d\x18\xac\x46\xac\xc1\xfd\x82\xa5\x7c\x1b\x2b\xd1\xa7\xd6\x45\
+\xab\x01\xab\xf1\x5f\x81\xf1\x03\x18\xd1\x4c\x7e\x5f\xbc\x49\xf1\
+\x7b\xab\x68\x6f\x34\x76\xe3\x6d\x4e\x7b\x9f\x70\x30\x1d\x4f\x75\
+\xda\x98\xfa\x74\xec\x3c\xc8\xe9\xc8\x57\xec\xc7\xb0\x9c\xbc\x5d\
+\x29\xe6\x1d\x06\x36\xa3\x3f\x17\x17\x0b\x66\xf3\x21\xd6\xa3\xdf\
+\xaf\xba\xf4\x2f\x2a\x38\x8f\xaf\x96\xc5\x0e\xc7\xe7\xf4\x6e\x73\
+\x33\x9a\x3d\xd3\xa0\x95\x0f\xe2\x49\xcc\x68\x8f\xd9\xac\xb6\x98\
+\xcc\xc7\xf5\x4c\x27\xf7\x94\xc5\x1c\x4f\xcf\x9f\xa1\x57\x33\x5a\
+\x13\x32\x1a\xcf\xb0\xad\x85\x47\x5e\xbb\x1b\x9f\x81\xcb\xe9\x1f\
+\xd0\x4f\x26\x67\x4c\x2c\xa9\xa0\xb1\x14\x17\xf0\x57\x67\xfb\x08\
+\xd0\x23\x33\x08\xd7\x32\x57\xce\x6e\x55\xe6\x75\x5a\x16\x66\x66\
+\x77\x5a\x57\xff\x92\xd1\x13\x4f\x6b\x7d\xed\xeb\xc8\x6c\xcc\x54\
+\xd9\xd1\x1d\x71\xbf\xd5\x9a\x17\xe9\xa2\xf2\x02\x8f\x04\x41\x10\
+\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x6d\xc8\x0f\xf0\x6b\xdf\
+\x7c\xd8\x29\x0f\xa9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
+\x82\
+\x00\x00\x08\x58\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
-\x79\x71\xc9\x65\x3c\x00\x00\x04\x35\x49\x44\x41\x54\x58\xc3\xe5\
-\x97\xcd\x8f\x54\x45\x14\xc5\x7f\xb7\xea\xd6\x7b\xaf\xdb\x6e\xc7\
-\xf9\x40\x9d\x89\x46\x4d\x34\x99\x44\x8d\x1a\x48\x98\xc4\x8c\x1f\
-\x1b\xfe\x02\x4c\x5c\xf1\x07\x18\x16\x2e\x4d\x5c\x6b\x58\xc3\x8e\
-\xc4\x8d\x1b\x17\xce\x82\x68\x74\x41\x5c\x18\x0d\xe2\xc4\xc6\x00\
-\x3d\x60\x50\x51\x19\x60\x02\xa2\x0e\x0c\x83\xd3\xfd\x5e\xf7\x94\
-\x8b\xaa\xee\xf9\x60\xe6\x0d\x84\x51\x16\x56\x52\xa9\xce\x7b\xb7\
-\xeb\x9e\x3a\xf7\xd4\xa9\x7a\xea\xbd\xe7\x7e\x36\xe5\x3e\xb7\x3e\
-\x80\x5d\xbb\x76\xbd\x03\xec\xfd\x8f\xf2\x4e\x35\x1a\x8d\x03\xeb\
-\x19\xd8\xbb\xef\xbd\xa3\x3b\x1f\x1f\x76\x00\x9c\x3c\x3a\xcf\xcc\
-\x97\x37\x58\x9c\xef\xdc\x53\xa6\xda\xa0\xf2\xdc\x6b\x03\xbc\xb8\
-\x67\x10\x80\x8b\x7f\x16\x7c\xf8\xee\x1e\x80\xdb\x00\x70\xfc\xec\
-\x1c\xdf\x3f\x30\x04\x78\x2e\xfd\xb8\xc0\xfe\xb7\xce\x6f\xcb\x72\
-\x0f\x1d\x79\x9a\x0b\x23\x96\xd3\x9f\x1f\x64\xfc\xd5\x7d\x9b\x6b\
-\x40\x45\xb0\x16\x40\x78\x70\x2c\x23\xcb\xb2\x6d\x01\x30\x30\x96\
-\x61\x8d\x50\x1b\x7c\x14\x23\x25\x22\x14\x2b\xd8\x18\x91\xd5\x95\
-\x73\xe7\xce\x83\x2a\xb8\x04\xd2\x14\xb2\x0c\xd2\x2c\x8c\x49\x0a\
-\x49\x12\xde\x77\x3a\x90\xe7\x90\xb7\xa1\xd5\x82\x76\x2b\x8e\x6d\
-\x28\x72\xb2\xfa\x38\xd6\x0a\xe3\xaf\xbc\x49\x6b\xf1\xfa\xe6\x00\
-\xac\x15\xac\x15\x04\xb0\x46\xd8\xbd\x7b\xe7\x16\x6b\xeb\x86\xae\
-\x80\x5a\xa8\x56\x81\xea\x6d\x51\x8d\xaf\x04\xb5\x82\xf7\xa0\xa6\
-\x84\x01\x67\x05\x35\x82\x08\xa8\x0a\x95\x2c\xc3\x23\x20\x1e\x08\
-\xc0\xf0\x1e\x2f\x02\xde\x23\x12\x26\x15\x7c\x88\x23\xc4\x21\x1e\
-\x3c\x21\x5e\x40\x4d\x58\x18\x40\xd7\x4a\x89\x06\xac\xa0\xda\x63\
-\x00\x9a\x33\xbf\x05\x8a\x53\x07\x69\x02\x95\x04\xb2\x34\xf6\x04\
-\x12\x07\x4e\xa1\xe8\x40\x5e\x40\x2b\x8f\xbd\x05\x4b\x39\xb4\x73\
-\xc8\x0b\x54\x87\x71\x3d\x00\x2a\xe5\x25\x70\x31\x40\xd5\x30\x39\
-\xf9\xd2\xd6\x0a\xf3\x3e\xd0\xaf\x16\xaa\x1b\x8b\xf6\xd8\x27\x61\
-\x61\xbd\x1c\x25\x25\x20\x00\xf0\x81\x8d\x34\x4d\xa3\x3a\xc3\xb3\
-\x98\x11\x89\x6c\x07\xda\x63\x09\x56\x98\x5f\x29\x46\xfc\x61\xcd\
-\x72\x7f\x61\x1d\x2d\xd1\x80\x3a\x09\x54\x49\x18\x4f\x34\x2f\xe0\
-\x9d\x85\xc4\x21\x89\xc3\x67\x09\x92\x69\xd8\x11\x89\xe2\x13\x87\
-\x58\x8b\xef\x76\x91\xbc\x80\xbc\x03\xed\x02\xdf\x6a\x23\xed\x02\
-\xf2\x02\x9f\x77\x50\x1d\x45\xd5\x20\x78\x3a\xeb\x54\x78\x9b\x06\
-\x9c\x33\x78\x0f\x03\x8f\x24\xbc\xfe\xf2\xf3\x77\x68\xe8\x36\x68\
-\xa4\xbe\xf1\xeb\xc6\xfc\xdf\xb1\x04\x52\x5e\x82\x44\x4d\x5f\x84\
-\x8f\x0d\xa5\x38\xe7\xb6\xc5\x88\x9e\x18\x4b\xb9\x76\xb3\x03\x08\
-\x9d\x52\x11\xaa\x90\xb8\x50\xef\x5a\xc5\x30\x7d\xb1\xcb\x40\xc5\
-\xb0\x0e\xf4\x26\xad\x57\xf9\x55\x2e\xe1\xe1\xc6\xd2\x32\xf5\xcc\
-\x70\x7d\xc9\x84\x2d\xe9\x4a\x19\x10\x9c\x1a\xc0\x73\xe5\x66\x97\
-\x2b\x37\xbb\xac\x51\x57\x3f\xd7\xaa\x64\x7e\xc5\x27\xa2\x29\xac\
-\x05\x15\xc3\x9c\x0b\xb5\x77\xa6\x6c\x17\xa8\xc1\xa9\x20\xc8\x1a\
-\x35\xaf\x9b\x35\x1a\x8f\x59\x31\x9e\xfe\x7b\xe9\xef\x14\x00\xf1\
-\x82\xef\x9b\x58\x30\x2b\x57\x56\x02\x55\x21\xd1\x90\xfc\xe7\x53\
-\xdf\xf2\xeb\x99\x13\x2c\x2d\xde\xb8\xa7\xfa\x57\x6a\x03\x3c\xf5\
-\xec\x4e\x9e\x79\x61\x02\x0f\xa8\x33\x5b\x31\x10\x03\x7c\x87\xf7\
-\xf7\xbf\xc1\xc2\xc2\x02\xb7\x6e\xdd\xa2\x28\x0a\x44\x04\x6b\x2d\
-\xd6\x5a\x54\x15\x55\xc5\x39\x87\xaa\x62\xad\xc5\x98\xf0\xdf\xe5\
-\xe5\x65\xf2\x3c\xef\xf7\x23\xcd\xf9\xb8\xf2\x2d\x18\x70\x56\x50\
-\x17\x18\xdc\x31\x3a\xb6\x72\x4f\x38\x7e\x9c\xe9\xe9\x69\x8c\x31\
-\x78\xef\x99\x98\x98\x60\x72\x72\xf2\x8e\x59\xd8\x31\x3a\xd6\xdf\
-\x86\xae\xd4\x09\x55\x70\x36\xac\xa2\x56\xaf\xf7\x6b\x39\x33\x33\
-\xc3\xd0\xd0\x10\xd6\x5a\xbc\xf7\x34\x9b\xcd\xbb\x02\x50\xab\xd7\
-\x70\xd1\x88\xb4\xd4\x88\x14\x9c\x0b\x27\x5c\xa0\x2a\x00\xa8\x56\
-\xab\x64\x59\xd6\xa7\xb8\x37\xde\x69\x73\x1a\xa9\x17\x41\x4b\xad\
-\x38\x1e\xc7\xbd\x23\xb4\xd7\x8c\x31\x88\x44\xdf\x8f\x3a\xb8\xab\
-\x9b\xaf\x35\xa8\x0d\xf3\xf6\x18\x2e\x3d\x8e\x83\x29\x6d\xe3\xd5\
-\xdb\x12\xa9\xf7\xe5\x56\x6c\xad\xf4\x91\x0e\x8e\x0c\xc3\xf2\xef\
-\xdb\x02\xe0\xa1\x91\x61\xd4\xc2\xb5\x2b\x97\x59\x9c\xbf\xbe\x05\
-\x03\x36\xf8\xc0\x60\xad\x02\x0b\xdb\xc3\xc0\x50\xad\xc2\xec\xc5\
-\x4b\x9c\xfd\xee\x1b\xce\x9f\x9c\x9e\x03\xa6\x36\x04\x60\x24\x5e\
-\x4a\x05\x12\x0b\xed\x91\x27\xa9\x3d\x0c\x6f\x1f\x38\xc8\x66\xc7\
-\x81\x27\x3a\xf1\x2a\xe7\x35\x1e\x32\x81\x14\x28\xba\x70\xf9\xea\
-\x55\xce\x34\x8e\xd1\xfc\xfa\x8b\xb9\xd9\x1f\x4e\x1d\x02\x0e\x6f\
-\x08\xe0\xb3\x8f\x3e\xe0\xa7\xd3\x27\x57\x99\xe9\xda\xa3\x86\x55\
-\xe6\xbb\x1e\x04\x1b\x3c\x5f\x1d\x6f\x7c\x77\xee\x8f\xd9\x5f\x0e\
-\x01\x87\x1b\x8d\xc6\x5f\x1b\x01\x98\x9a\xfe\xf4\xe3\x7f\xf5\x73\
-\x6c\x7d\xf2\x35\x00\xe2\xb7\xda\x81\xff\xdd\xd7\xf1\x3f\x4d\xf0\
-\x4b\xb9\xe8\x46\x89\xaf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
-\x60\x82\
-\x00\x00\x0a\xfb\
+\x79\x71\xc9\x65\x3c\x00\x00\x07\xea\x49\x44\x41\x54\x78\xda\xed\
+\x57\x6b\x6c\x14\xd7\x15\x3e\xf7\xce\xec\x7a\xd7\x76\x36\x7e\xcb\
+\x4e\x00\x97\x85\x04\x27\x04\x28\xe0\xda\x78\xcd\x8a\x26\x31\x76\
+\x6c\x13\x27\x8e\xb0\x1b\xa2\x18\xc5\xb4\x34\x22\x52\x15\x4a\xca\
+\x8f\xa8\xf4\x47\x9b\x56\xaa\xd2\x87\xaa\x3a\xa1\x52\x10\xa2\x55\
+\xdd\x28\x8a\xa5\x22\x12\x22\xa7\x34\xb1\x1d\xdb\x3c\x6d\x8c\xa1\
+\xf1\x0f\xc0\x8f\xf8\x0d\xc6\x6b\xf0\xae\x3d\xbb\x3b\x3b\x8f\x7e\
+\x33\xf6\x76\x65\x66\x41\xfc\xcb\x9f\x5e\xe9\x6a\x76\x66\xee\x9c\
+\xef\x3b\xdf\x39\xe7\x9e\xbb\x4c\xd7\x75\xfa\x36\x07\xa7\x6f\x79\
+\x88\xd1\x1f\xbf\xcc\xcd\x25\x55\x51\x88\x18\x23\xa8\x92\xc8\x38\
+\x3f\xe4\x4a\x49\x79\x31\x18\x08\x9c\x51\x65\xf9\x67\x58\x78\x87\
+\x43\x2d\xae\x69\x26\x6b\x86\xdf\xc2\xe2\x6f\xba\x5b\x45\xdc\xc3\
+\x46\x12\x63\xec\x37\xc9\xc9\xc9\x2f\x48\x81\x40\x1b\xbe\x3b\x20\
+\x32\x76\xdb\xfc\x1e\xf3\x47\x73\x73\x51\x02\x4b\x87\xa6\x69\x5c\
+\x13\x84\xdf\x7d\x7f\xed\xda\x37\xf2\x67\x67\xe9\x9a\xcb\xf5\xc4\
+\xbf\xc6\xc6\xb2\x35\x59\xde\x0d\xb0\x19\x7a\x80\xa1\xe9\x7a\x02\
+\x28\x35\x14\xaf\x5b\x57\x9f\xb7\x6c\x19\x0d\x4a\xd2\x6b\xa7\x5b\
+\x5b\x5d\x6a\x24\xb2\x9b\x0b\xc2\xfc\x3d\x43\xa0\xa9\x2a\x8f\x30\
+\xf6\x7b\xef\x86\x0d\x6f\x94\x80\xa1\x0b\xaa\xe4\x87\x42\x54\x9a\
+\x99\x59\xc9\x44\xf1\x98\xaa\xeb\xae\x07\x00\xb7\xa9\x9a\xd6\x50\
+\xe8\x76\xd7\x6f\xca\xc9\xa1\xa4\xf5\xeb\x69\xa3\xdb\x4d\x9e\xed\
+\xdb\x5f\xc2\xf3\x0f\x40\xc2\x01\x95\x2d\x04\x4c\xc9\x34\x51\x7c\
+\x6f\x5b\x51\xd1\x4f\xb7\xdf\xbe\x4d\x7a\x59\x19\x89\x1f\x7d\x44\
+\xda\x81\x03\xf4\x5d\x9f\x8f\x9e\x4b\x4d\xad\x12\x6d\xb6\x26\x8d\
+\x28\xe7\x3e\xe0\x2e\x78\x7e\xd4\x93\x9b\xbb\x77\x63\x7a\x3a\xe9\
+\xd5\xd5\x64\x3b\x78\x90\xb4\x92\x12\xda\xb8\x72\x25\x6d\xdd\xb9\
+\xf3\x15\xe2\xfc\x43\x4d\x51\xb2\x2c\x04\x60\xf8\xe7\xdb\xbc\xde\
+\x7d\x15\xf0\x5c\x7c\xfa\x69\x12\xf6\xef\x27\x1a\x1b\x23\x7b\x55\
+\x15\xb1\x43\x87\x68\xed\xcc\x0c\x95\x3b\x1c\xa5\x82\x28\x1e\x85\
+\x12\x29\x77\x83\xc3\x01\x51\x67\xac\x61\x6b\x56\x56\xdd\x06\xa7\
+\x93\x58\x6d\x2d\x25\x94\x96\x12\x8d\x8f\x93\x50\x58\x48\xac\xb8\
+\x98\x36\xe5\xe5\x51\x71\x5d\x5d\x35\x13\x84\xdf\x5a\x08\x3c\x94\
+\x99\x59\xe3\x31\xa4\xe1\x78\xf4\xe6\x9b\x44\x13\x13\x44\x7e\xbf\
+\x69\xc0\x51\x51\x41\xec\xed\xb7\x69\x15\xee\x9f\x15\x84\x72\xc4\
+\xb1\x11\xde\xa6\x51\x8c\xbc\x43\x65\xec\xf0\x16\x97\x6b\xf7\x13\
+\xa2\x48\x6c\xd7\x2e\x4a\x34\xc0\x6f\xde\x24\x0a\x04\xcc\x2b\xcb\
+\xcf\x27\x4a\x4b\xa3\x75\x20\x91\x91\x97\x57\x66\x21\x10\x9a\x99\
+\x69\xef\x33\xc0\x51\x09\xfa\xb1\x63\x64\xc6\x29\x18\x5c\x30\x00\
+\x25\x9c\x30\xc8\x41\xc2\x1d\x0e\xd3\x33\x8a\x52\x29\x72\xde\xa8\
+\xc1\x24\xa6\x91\x70\x87\x0b\x45\x71\x6f\x1e\xc0\xa9\xae\x8e\x92\
+\x10\x3e\xba\x75\x6b\xe1\x5b\x49\x22\x52\x55\xd2\xbb\xba\x4c\x87\
+\x86\xe0\x90\x7f\x68\xa8\xdb\x52\x86\x5a\x28\x74\xf0\xf3\x8e\x8e\
+\x2c\xf2\x78\x76\x14\x7e\xfc\x31\x29\x00\x17\x77\xec\x20\x9a\x5f\
+\x4c\x5a\x18\x4a\x42\x68\x28\x12\x21\xf7\x3b\xef\x90\x9d\xa8\xbc\
+\x35\x21\xe1\x84\xa2\xeb\x92\x57\xd3\x4a\x57\xa3\xb4\x6c\x00\x77\
+\x81\xa8\x09\x8e\x7b\x73\x38\x1c\xa4\x5e\xbe\x4c\xbc\xb7\x97\xfa\
+\x61\xa3\xbd\xb1\xf1\x82\x2a\x49\xfb\xa3\xb8\xff\xdb\x09\x7f\xf5\
+\xe8\xa3\xa4\x45\x22\xe9\xdc\x6e\xff\x5b\x45\x41\x41\x65\x7e\x7f\
+\x3f\x29\x95\x95\x24\x96\x97\x9b\x24\x60\x70\x41\x95\xe4\x64\xf2\
+\xb7\xb6\x52\xf0\xdd\x77\x69\x14\x9e\xc9\x82\x40\x6e\x82\x0c\xfb\
+\xf6\x51\xea\xf3\xcf\x2f\xac\x85\x4d\x73\x6d\x42\x02\x29\x43\x43\
+\xc4\x2f\x5d\xa2\x61\x54\x53\x6b\x53\xd3\x05\x45\x92\x6a\xc4\x84\
+\x84\x91\x3d\x58\x67\x29\x43\xce\xb9\x8f\x42\xa1\x57\xff\xdd\xdd\
+\xdd\x7c\x65\xc5\x0a\x62\x27\x4e\x90\xfc\xe9\xa7\xa6\x31\x53\x4a\
+\x24\xa8\x11\x4f\x57\x51\x11\x39\x90\xa4\xd9\x00\x5a\x01\xa5\x6c\
+\xf5\xf5\x94\x8a\x4c\xa7\xe9\x69\x73\x4d\x54\xf6\x48\x5f\x1f\xe9\
+\x9d\x9d\x34\x8a\x50\x7c\x75\xfc\x78\x8f\x32\x3f\x5f\x2b\xda\xed\
+\x23\x06\xc1\xb8\x0a\xe0\xa3\x05\x46\x8a\x92\x63\x73\x3a\xff\x5a\
+\xf2\xf8\xe3\xa5\x4f\x21\x19\x19\x64\xb5\x7b\x3c\x04\x72\x31\xef\
+\x12\x13\xe9\x4e\x7b\x3b\xc1\x28\x65\x20\xe6\xd1\x77\x98\xa6\xe7\
+\xf2\xe8\x28\xa9\xdd\xdd\x34\x81\x9c\xea\x68\x6b\xbb\x24\x07\x02\
+\x3f\x80\xe7\xd7\xa3\xe0\x7b\x24\xe9\xde\x04\x04\x3c\xd3\x15\xc5\
+\xc5\x6d\xb6\xbf\x97\xb8\xdd\x55\x4f\x4d\x4e\x92\x0e\x0f\x9d\x20\
+\x01\xef\x62\x24\xec\x76\x43\xb6\x18\xf8\x62\xcc\xc3\x23\x23\xa4\
+\xf4\xf4\xd0\xa4\x2c\x53\xfb\xd9\xb3\xe7\x91\x4f\xb5\x00\x5f\xe2\
+\x39\x08\x2c\x4d\x42\x3d\x76\x35\xa7\xc0\xb9\x1f\xdb\x6f\x7d\xdb\
+\xe0\xe0\x3f\xec\xcb\x97\x3f\xe7\x6e\x6e\x26\x09\x06\x13\x37\x6f\
+\x36\x01\xa3\x89\x89\x11\x03\x07\xa1\xd0\xd5\xab\x24\x23\xe3\xa7\
+\x91\x33\x1d\xbd\xbd\x5d\x6a\x38\xbc\x2b\x2a\xfb\x7d\x9b\x51\x32\
+\xa4\x8a\x2e\x62\xb8\x32\xc2\x10\x84\x19\x34\xa2\x5d\x5f\x0e\x0f\
+\x7f\xa2\x64\x66\x7a\xbf\x73\xea\x14\x31\xa8\xe4\xc4\xf6\x4a\xb2\
+\x1c\x03\x66\xcc\x58\x4b\xe1\xc1\x41\x92\xce\x9d\xa3\x69\xd8\x3a\
+\xd3\xdf\x7f\x45\x09\x85\x5e\xc0\xc6\x35\xf9\x40\xdd\x50\x84\x41\
+\xdd\x00\x66\x6c\xc1\x29\x5c\x99\x71\x45\x99\x29\x91\x88\x24\xdb\
+\x6c\xa4\xa3\x04\x6f\xb7\xb4\x98\x57\x8e\x1c\x40\x7f\x30\xc0\xcd\
+\x7b\x10\xa5\x59\x78\x6f\x83\x2a\x6a\x52\x12\x45\x64\x39\xcc\x34\
+\xcd\xcf\xf1\xdc\xec\x80\xb0\x6d\x76\x51\x4c\x81\xc8\x9a\x84\x7f\
+\x4a\x4d\x5d\x42\x00\x3f\x16\xba\x1a\xe7\x7f\xf1\xae\x5a\x55\xff\
+\xe4\xd4\x14\xf9\x86\x87\x29\x62\xe4\x28\xa6\x8e\x44\x43\xef\x30\
+\x89\x72\x63\x72\x4e\x22\xb6\x60\x01\x33\xed\x91\x47\xc8\x70\xfb\
+\x74\x57\xd7\x67\x0c\x1d\x10\x34\x67\xee\x26\x50\x8b\xfb\xa5\x65\
+\x68\x6d\xcb\x36\x6c\x32\x0d\x85\x6b\xd6\xd4\xaf\x43\x5b\xf6\x03\
+\x5c\x37\x0c\x44\xdf\x63\x47\x94\x51\x01\x11\x94\x9d\x06\x05\x18\
+\x08\x80\x85\x79\xf5\xa3\x79\x2d\xc3\x7e\x51\x54\x5c\x5c\x89\xfb\
+\x63\xda\x7d\xba\x28\xbf\x07\xb8\x0b\x9e\x1f\x2d\xde\xb4\x69\xef\
+\x66\xd4\xb0\xff\xda\xb5\x25\xe0\x2c\x36\xcd\xd8\x33\x4c\x28\x16\
+\x7b\x07\x12\x81\x1b\x37\x68\x25\x54\x2d\x2a\x2b\xab\x12\xec\x76\
+\xb3\x8b\x3e\x10\x01\x5d\xd3\x44\x8d\xf3\x06\x6f\x51\x51\x5d\x21\
+\xf6\x6e\xe9\xeb\xaf\x01\x1e\x1b\x51\x10\x15\x33\x05\x33\x1d\x53\
+\xb3\xda\x35\x49\xcc\xa1\x87\xb8\xd1\x96\x3d\xd5\xd5\xa5\x28\xe9\
+\xa3\x1a\x3e\xb9\x2f\x01\x80\x3b\x20\xfb\x61\x8f\xd7\xbb\x3b\x1f\
+\xed\x57\xba\x78\x31\xea\x79\x6c\x44\xc1\x11\xff\x08\x6a\x7e\x1e\
+\xa5\x97\x0e\x05\x20\xf3\x92\x75\xa6\x22\x58\x33\x8f\xd0\xe5\x42\
+\x89\x82\x9a\x9a\x72\x24\x6d\x23\xec\xa5\xc5\x25\x80\x04\x4c\xc6\
+\x51\xec\xfd\x2d\xa5\xa5\x7b\xb7\x20\xe6\x41\x94\x93\x1a\x2f\x3c\
+\x06\x38\x80\x65\xc4\xf8\x0c\xe7\xff\x39\x4d\x74\x61\x16\xde\xa6\
+\xe3\x59\x3c\x25\x08\xe4\xa4\x81\x01\x5a\x9d\x9d\x4d\xf9\x75\x75\
+\x95\xe8\x35\x06\x89\x6c\x0b\x01\x48\xf6\xeb\xe2\xb2\xb2\x3d\x5e\
+\x80\x2b\xed\xed\xa6\x31\x16\x07\xfc\x61\x00\xcf\xc1\xa3\x8e\x48\
+\xa4\x2b\xac\xeb\x15\x78\xb6\xfd\x6c\x30\x78\xf2\x16\x14\x48\x45\
+\x69\xaa\x66\x17\xb4\x2a\x11\xbe\x7e\x9d\xd6\xe0\x88\xf7\xbd\xd7\
+\x5f\x2f\xe7\x4e\xe7\x1f\x2d\x04\x92\xb2\xb2\x76\xac\x77\x21\x59\
+\xbf\xf8\x22\xae\xe7\xba\x01\x8e\xf7\x81\xcc\x4c\xea\xf4\xfb\x2f\
+\xc8\xaa\xba\x53\x24\x1a\x83\x01\x3f\xd4\x7b\xad\xcb\xe7\xfb\xec\
+\x96\xaa\x52\x2a\xd6\x20\x94\x96\xbc\xd1\xa1\x84\x8a\xe6\xb4\x0a\
+\x07\x92\x94\xd5\xab\xb7\x59\x08\x04\xa7\xa6\xbe\xbc\x66\xb4\x48\
+\xaf\x37\xae\xe7\x0f\x21\x99\x02\x38\xe1\x76\xfa\x7c\x3d\xb2\xa2\
+\xd4\x8a\x8c\x8d\xc4\x9c\x64\x3e\x54\xce\xab\x17\xc7\xc6\x9a\x7d\
+\x8a\x42\x0f\xe3\xe4\xa3\xdf\xad\x04\x9e\x0b\x8f\x3d\x46\x23\xd8\
+\x2d\x67\x87\x86\xba\x2c\x04\xb8\xaa\xfe\xa2\xb3\xb9\xf9\x78\x0f\
+\x36\x11\x7b\x41\x41\xec\x85\x01\x8e\xf8\xf9\x96\x2f\xa7\xb6\xf1\
+\xf1\x4b\xe1\x70\xf8\x65\x1b\xe7\xc3\x96\x6c\xe6\xfc\x8e\xaa\x28\
+\x3f\x3c\x7f\xf5\xea\xa9\x1b\x92\x44\x2e\x10\x26\x90\x40\x72\x99\
+\x87\x98\x04\x9c\x8c\xbf\x41\x78\xcf\x1f\x39\x72\x46\x99\x9b\x7b\
+\xcb\x42\x00\xb5\x3c\xc5\x64\xf9\x95\xce\x93\x27\x3f\xbc\x0c\x12\
+\x4e\x34\x1d\xe3\x65\x32\xbc\xbe\x81\x8f\xbf\x1a\x18\x38\x1f\x0e\
+\x06\x5f\x14\x39\xbf\x1e\x83\xb5\x90\x98\x04\x89\x9a\xee\x2b\x57\
+\x3e\x19\x87\x9a\x06\x71\x06\x12\x49\x38\x11\x8f\xa0\xa4\xcf\x1d\
+\x39\xd2\xa2\xfa\xfd\x2f\x09\x44\x03\x71\xcb\x50\xb0\xd9\x42\xa2\
+\xae\xff\xf8\x5c\x4b\xcb\x3f\xfb\x32\x32\xc8\xb1\x75\x2b\x4d\x20\
+\x71\xda\xfb\xfa\xba\x14\xa3\xab\x09\xc2\x88\x25\x37\x18\x33\xe3\
+\x1d\x9d\x9c\x31\x3f\xc2\x51\xdf\xdb\xdd\xfd\xf9\x04\x40\x9d\x90\
+\x7d\x1c\xbb\xe5\xc5\xa6\xa6\xd3\x68\x60\x75\x00\xbf\x49\xf1\x7a\
+\xc1\xfb\x88\x5b\xb4\x69\x20\x5e\xa9\x30\xf4\x87\x8c\x9c\x9c\x67\
+\x66\xa7\xa7\x7b\x71\x8c\xfa\x09\x17\x84\x51\x8a\x33\x9c\x0b\x5d\
+\x31\xd6\x41\x17\xaf\xb0\x92\xc1\x45\xf1\xcf\x29\x39\x39\xc5\xfe\
+\xa9\xa9\x6e\x38\xf0\x16\xbc\xfd\x26\xfa\x5d\xcd\x22\xee\xff\xff\
+\x1d\xff\x17\xef\xd2\xfe\x9f\xb7\x3d\x84\x48\x00\x00\x00\x00\x49\
+\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x01\x4f\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
+\x00\x00\x30\x00\x00\x00\x30\x08\x04\x00\x00\x00\xfd\x0b\x31\x0c\
+\x00\x00\x01\x16\x49\x44\x41\x54\x78\x01\xed\x96\x4b\x4a\x03\x41\
+\x14\x45\xcf\x20\x66\x1a\x14\x5d\x81\x26\xad\x7b\x08\x82\x38\xd0\
+\x6d\x88\xe0\x46\x14\x07\xe2\x36\x32\x51\x83\x9a\x55\x28\x22\xb8\
+\x03\x23\x22\x0e\x84\x56\xb4\x03\x7e\xba\x53\x4a\xf3\x28\x32\x10\
+\x2c\x0b\xee\x24\xd4\x39\xe3\xcb\x85\xa2\xea\xbd\x22\x31\x85\x24\
+\x12\x1d\x4e\xc8\x29\xa9\xbc\xe3\x09\xdd\x2f\x8e\x18\xb0\x4c\x20\
+\x19\xcf\xb8\x08\x5f\x58\x21\x88\x33\x5c\xa4\x37\x34\x09\xe0\x15\
+\x17\xed\x21\x01\x38\xf3\x3f\xf4\x2c\x33\x66\x5d\x53\xd0\x62\x68\
+\xa9\x07\xe6\x14\x05\xb0\x4a\x65\xb9\xbe\xa6\x00\xf6\x7d\x72\x5b\
+\x53\x30\xc3\x95\x25\x0b\x96\x14\x05\xd0\xa1\xb0\xec\x25\x0d\x45\
+\x01\xec\xf8\xf4\x9e\xa6\x00\xff\x4c\x2b\xba\x9a\x82\x79\x1e\x2d\
+\x3f\xa4\xa5\x28\x80\x0d\x3f\x10\x7b\x9a\x82\x4d\x6d\xc1\x82\x3f\
+\xa2\x5b\xcd\x11\x9d\x5b\xba\xa4\xab\xbd\xa6\xbb\x9a\x87\x36\xb2\
+\xec\x05\x0d\xe5\xa8\x78\x63\x51\x3b\xec\xb6\xb4\xe3\xfa\x58\xb3\
+\x70\xee\x2c\x75\xcf\xac\x72\x65\x56\xac\xf1\x27\x05\x2e\xda\x03\
+\x02\x18\xe0\x22\xbd\xa6\x49\x00\x19\x39\x2e\xc2\x9c\x8c\x40\xda\
+\x1c\xf1\xc4\x7b\xed\x47\xed\x67\xed\xd7\x8f\x65\xed\xc4\x87\xd2\
+\x6e\xfe\x29\x6d\x12\x89\xc4\x54\xf3\x0d\x0a\x7f\x93\xd6\xf9\xe7\
+\x0c\x36\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x08\x19\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
-\x79\x71\xc9\x65\x3c\x00\x00\x0a\x8d\x49\x44\x41\x54\x78\xda\xed\
-\x9a\x5d\x88\x5d\x57\x15\xc7\x7f\x6b\xef\x73\xee\xbd\x93\x3b\x33\
-\x99\xc9\x57\x9b\x8f\x36\x4d\x93\xd2\x54\x6d\x5a\x8a\x6d\xb5\x05\
-\x5b\x29\x05\x5f\x0c\x54\x2a\x88\x2f\x16\x41\x6c\xc5\x22\x14\xd1\
-\x17\x1f\x7d\xb1\x42\xc5\x52\xf0\x31\x42\x5f\xaa\xd0\xaa\xd5\x46\
-\xb0\x54\x90\x52\xa5\x82\x6d\xac\xd4\xa4\x24\x4d\xd3\x4c\xcd\xe4\
-\xab\x99\x4e\x3a\xf7\xfb\x9c\xbd\xbc\x73\xcf\x3e\xb3\xe6\xce\x4c\
-\x26\x93\x20\x82\xe0\x86\x35\x7b\xdf\x7d\xf6\x39\x67\xfd\xd7\xfa\
-\xff\xd7\xde\x07\x26\x51\x55\xfe\x97\x5b\x02\xfc\xef\x03\x10\x79\
-\x8a\xb5\xb5\xfc\xa1\xc4\xcb\x63\xd5\x6a\xba\x03\xc8\x89\x2d\x68\
-\x61\x00\x22\x50\x49\x33\xfe\x33\x99\x4d\xc9\x73\x59\xfc\x2c\xdf\
-\x69\x77\x8f\x06\xe5\x19\xf0\x2f\xab\x3e\x71\x25\x19\xc8\x1f\xdf\
-\x7d\xcb\xe6\xa7\x1f\xf8\xfa\xbd\x8c\x6c\xdb\x04\x79\x00\x20\x00\
-\x93\x23\x30\x5e\x53\xb2\xe0\x09\xb3\x67\xd8\x5b\x3f\xc7\xf8\xfa\
-\x3a\x21\x5c\x1d\x08\x11\x41\xb3\x2e\x7f\x39\x1a\x98\x9d\xd8\xcb\
-\xba\x11\x45\x15\xbc\x17\x4e\xbf\x33\x7d\xcb\x6f\x7f\xf6\xda\xfe\
-\xe9\xa9\xd9\x87\x81\xe7\xd7\x08\x20\x4c\x8e\x8f\xd5\xbe\xbf\xff\
-\x07\x5f\xe4\xaf\xcd\x8d\xcc\x4e\x83\x77\x20\x02\x59\x80\xfb\x6f\
-\x84\x5d\x9b\x61\xb6\x05\xa2\x4d\x76\xef\xf2\x6c\xd9\xb2\x91\x3c\
-\x0f\x57\x0d\xc0\xd3\xe6\xc5\xd7\xcf\xf1\xf7\xc6\x04\xbb\x6e\x76\
-\x68\x0e\x12\x60\xd3\x67\x36\xf0\x8d\x1b\x37\xf0\xe4\x23\xbf\xfc\
-\xce\x95\x00\xd8\xba\xf3\xe6\x8d\x1b\x3f\x4c\x27\xf9\x60\x1a\xd6\
-\xa5\x10\x04\x5c\x04\xd0\x6a\x06\x2e\xce\xf6\xad\xe5\x48\xfb\xe3\
-\xe3\xc7\xa7\x39\x75\x6a\x06\xd5\xb5\x3b\xbc\xb8\xa9\x2a\xd5\xa4\
-\x47\xb3\x51\xa1\xa7\x4a\xde\xa5\x00\x20\x30\x7d\x1a\xee\xb8\x61\
-\x33\xdb\x77\xad\xdf\x7d\x25\x22\x76\xce\x3b\x51\x15\xd2\x04\x12\
-\x0f\x02\x88\x14\x96\xe7\xd0\x6a\x43\xb3\x6f\xa3\x99\x50\xab\xa5\
-\x7d\xab\xac\x49\x07\xaa\x90\xb8\x1c\xe7\x14\x80\x4e\xcf\x01\x8e\
-\x4a\x02\x3e\xf5\x88\x53\x9c\x03\x55\x7b\x67\xde\x13\x5c\xbf\x5d\
-\x02\x80\xae\xf8\x1a\x45\x0b\x87\x89\x4d\xcc\xba\x19\xcc\x35\xa1\
-\xd1\xb7\x8a\x08\xa3\xa3\x23\xd4\xeb\x97\xd7\x80\x77\x42\xb3\xd9\
-\xe2\xd5\x37\xdb\x9c\x9d\xad\xe2\x7d\xe0\xbe\xdb\x33\xb6\x5d\x33\
-\x89\xa7\x4b\x92\xe4\x08\x45\xa6\x03\x0c\x80\x10\x83\xa6\xfd\xb6\
-\x04\x40\xb8\x1e\xc2\x23\x95\x24\xdd\x87\x10\xcc\xf5\x3e\xe0\x2c\
-\x9d\x9c\x3a\xfe\x51\xda\x78\xfa\x20\x1f\xce\x05\x44\x73\x44\x0c\
-\xee\xc5\x54\x79\xd3\x05\x7a\xb9\x50\x91\x36\x7f\x5e\xdf\x23\x49\
-\xfc\xaa\x14\xf2\x3e\xe9\x9b\xa3\xd7\x47\x7f\xe8\x58\xc2\xe9\x8f\
-\x2a\x90\x2b\x9d\xaf\x55\x78\xf4\x9b\x5b\x48\x05\xbc\xef\x40\xa4\
-\x2a\xae\xe8\x15\x08\x5a\xf4\x18\x80\xb0\xaf\x3e\x9a\xbe\xf4\xa5\
-\x6f\xdd\xb3\x63\xfd\x9e\x6d\xe4\x99\xc2\x00\x25\xd4\x52\xd8\x54\
-\x87\x2c\x53\x5a\xb3\x0d\x76\x57\xa6\xd8\xbb\x7b\x23\xbd\xdc\xbc\
-\x53\x04\x0b\xb6\x90\x05\x59\x95\x3e\x89\x87\x43\x6f\x9f\xe7\xad\
-\xb9\xeb\x19\xdf\x38\xc2\xcd\x5e\x49\x12\x08\x9d\x0e\xbf\x3f\xf0\
-\x37\xce\x9d\x3e\xc4\x8f\x7f\x74\x7b\x7f\xae\x87\x8b\xdc\x77\x62\
-\x94\x55\x2d\x0c\x03\xa0\xdf\xdb\xff\xd8\xbd\x3b\xf2\x7b\x3e\xcd\
-\xab\xef\x81\x8f\x68\x73\x85\x1b\x46\xe1\xd6\x3d\xd0\xed\xc1\xdc\
-\xc5\x16\x7b\xea\x19\xfb\x6e\xbd\x9e\x5e\x16\xb8\xda\x56\x4d\x85\
-\x33\x33\xf0\xdc\xeb\x5b\xb9\xed\xb6\x71\x5a\xf1\x51\xa3\x75\xf8\
-\xea\x0f\xb7\xf2\xec\x77\x5f\xe0\xf0\xe1\x8f\x18\xa9\xd5\x91\x66\
-\x41\x9d\x10\x0c\xc0\xfc\x38\x2c\x06\x30\x3e\x56\xbd\x77\xc7\xdd\
-\x37\xf1\xe2\x3b\x40\x66\x25\x52\x81\x46\xaa\xcc\x5c\xc8\xe9\x76\
-\x85\x4e\x2b\x70\x6a\x76\x86\x6e\xa3\x49\x50\xae\xba\xa5\x89\x72\
-\xe6\x4c\x9b\x76\x03\xda\x2d\x90\xe8\xdc\xb9\x26\x4c\xec\x1c\x63\
-\xef\x5d\x3b\x78\xf7\xe8\x2c\xd5\xea\xfa\x02\x00\x0c\x51\x29\x2c\
-\xcd\x80\x38\xf1\x01\x47\xea\x20\xf8\x32\x03\x86\xb2\xdd\x86\x4e\
-\x57\xe9\x76\x20\xa9\x27\x54\xab\x09\x6b\x29\xf1\x0a\x78\x09\xa4\
-\x3e\x80\x40\x2f\x73\x04\x75\x03\x00\xe9\xa0\xc2\x14\xef\x02\x70\
-\xa5\x83\x01\x10\x8f\x13\x87\x4f\x04\x11\x5d\x46\xa1\x65\x00\x50\
-\x14\x8d\x0f\xb0\x85\xb8\xe8\x45\xb3\xad\x74\x3a\xd0\x6b\x07\xaa\
-\x1b\x52\xc6\xc6\x46\xc9\x83\x5e\x7e\x37\x0d\x3d\x0e\x1d\x99\xe1\
-\xd8\xe9\x75\x84\x1c\xf6\x6c\x6d\x72\xc7\x27\x26\xa9\x54\x52\xaa\
-\xb5\x1c\x89\x95\xad\x34\xca\x4a\xa3\x90\x24\x0e\xef\xbd\x55\x21\
-\x03\xb1\x1c\x80\x52\x4c\x98\xe3\x51\xf1\xf3\x16\x94\x76\x7b\xde\
-\xa0\xd7\x81\x4a\x9a\x32\x32\x92\x92\xe5\x97\x07\x90\x48\xce\x3f\
-\x4e\x8c\xf2\xcc\xef\x76\x41\x57\x79\x74\xff\x09\xee\xbf\xcb\x23\
-\x2e\x25\x4d\x93\x62\xc7\xb5\xa0\x45\x3f\x0a\x07\x7d\xe2\x48\xbc\
-\x8b\xd1\x37\x0a\x89\xb3\x35\x43\x65\x34\xa8\x21\x74\x0e\x9c\x3d\
-\x90\x56\x4b\x69\x77\x20\xeb\xea\xfc\x83\x63\xfa\x2f\x0f\x20\x75\
-\x09\xe2\x7a\xd0\x53\x00\x92\xf2\x5e\xef\x49\x13\xb7\xe0\x38\x62\
-\xef\x93\xe8\x4b\xe2\xdc\xe0\x5d\xc2\x30\x33\x5c\x14\xb1\x95\xd1\
-\xe8\x64\x1e\x86\x1f\x26\x18\xda\x66\x04\x90\x77\x75\x50\xdf\x2b\
-\x15\x8f\x64\x6b\x01\xe0\x71\x25\x27\xa4\x88\xea\xfc\xbd\x38\x4f\
-\x92\xfa\x21\xe7\x1c\x31\xe3\x14\xbe\x78\x97\x91\x38\xf3\x43\x82\
-\xe9\x64\x45\x0a\xe5\xc1\x68\x23\x25\x17\xc5\x32\xd0\x6a\x43\x18\
-\x54\x28\x5f\x6c\x52\xac\x01\x80\xf7\xf8\x52\xa5\x30\x18\x27\x49\
-\x01\x20\xf2\xdb\xa2\x8b\x05\x50\x81\x67\x9e\x0f\xf4\xb6\xd4\xd8\
-\x70\x8b\xd1\xcc\x00\xac\x40\x21\x8d\x4e\x6b\x18\xf4\xc6\xb7\x8c\
-\xbe\xf3\x05\x00\x72\xe6\x1d\x18\xd0\x00\x59\x1b\x00\xa7\x0e\xda\
-\x02\x30\x18\xa7\x15\x0f\x32\x4f\x21\x8f\x08\x98\xd9\x79\x47\x83\
-\x32\x53\xdf\xc0\xbe\xfb\x36\x30\x31\xaa\xe4\x19\xb8\xa5\x14\xd2\
-\xa5\x14\xca\x41\x18\x46\x2a\x51\xc4\x65\x06\xc8\x75\xc0\xe3\x6a\
-\x65\x6d\x1a\x70\x24\x6c\xbf\x36\xe7\xee\x3b\x2f\x02\x0c\xc6\xce\
-\x25\x83\x00\xf4\x6d\x58\xa0\x50\xfc\x89\x74\xde\xbc\x05\xb6\x6e\
-\x87\x6e\x53\x08\x6a\x41\x9d\xef\x43\x0e\xba\x5c\xc4\x31\x12\x6e\
-\x58\xcc\xaa\x45\x06\x9a\x2d\x10\x55\x7c\x92\x0c\xa2\xa8\xb2\x96\
-\x93\x66\x95\x87\x1f\x9c\xe0\xcb\x0f\x6a\xcc\xf2\x04\xe2\xab\x24\
-\xa9\x2b\x34\x20\x82\x49\x04\xc4\xce\x3a\x5c\x3b\x02\xbb\xc6\xa0\
-\x9b\x2a\x4e\x84\x56\x06\x17\xda\xf1\x08\xaf\x10\x96\x6b\xc0\x28\
-\x24\x60\x7c\x0b\x46\x21\xa7\x8a\x73\xd2\x37\xd7\x37\x65\x2d\x6d\
-\x62\x62\xdc\x0e\x7e\x0a\x21\x68\xf1\x6c\xef\x10\x86\xb3\x4e\xe4\
-\x77\x96\xc3\x67\xb7\x35\xf8\xca\xde\x39\x5a\xad\x0c\x27\x8e\x57\
-\xde\xaf\x73\xa1\xe5\x57\x16\x31\x6a\x22\x66\xa1\x8c\xda\x79\xa8\
-\xd9\x54\x1a\x7d\x4b\x45\x19\xa9\x40\xad\x92\x91\x88\x72\xb5\x2d\
-\xa9\xc0\x68\x75\x21\xea\x66\xa5\x2f\x0a\x1b\xc7\xab\x6c\x1a\x5f\
-\x47\x3e\xd2\xa5\xd1\x68\x01\x0a\x97\xd4\x40\x34\x27\xa0\x4b\x28\
-\x04\xd0\xcd\x21\x0b\xd0\x0b\x9e\x9f\xfe\x2a\xe1\x9a\xc9\x16\x59\
-\x86\xf1\x1d\xac\xc9\x2a\xba\xc0\x4e\xa3\xc7\xa7\x52\xf0\xbe\x3f\
-\x1e\xde\x44\x89\x0e\xce\x53\x15\x5c\xbf\xaf\x92\x85\x26\x79\x50\
-\x9c\xc3\xaa\x10\x4b\x34\x60\xa7\x3d\x33\x02\xd4\xd6\x7b\x6e\xfc\
-\xdc\xd8\x42\xb4\x0e\x77\x26\xf8\x67\x0b\xa3\x99\x23\x8a\x31\xce\
-\x11\xc7\x8b\x37\x45\xb0\x35\xb1\xb6\x27\x37\xc1\x9d\x63\x10\xb2\
-\xe1\xe3\x32\x91\xdf\xd6\x74\x40\x3b\x0d\xf6\x3e\x5d\xb6\x0f\x0c\
-\x53\xc8\x8e\x16\xe5\x8b\x53\x59\x40\x3f\x5e\x03\x6f\xce\x61\xe5\
-\x6d\xc9\x98\xe5\xd7\xc5\x0d\x5f\x93\xf8\x1e\x5b\x63\x7a\x04\xb0\
-\xe0\x86\xb8\xd1\x1a\xad\x55\x57\xc8\x80\xf3\xd0\x53\xd8\x35\x09\
-\x37\x6c\xb0\x07\x89\x58\x2f\x0c\x8f\x05\xe3\x86\xb3\x75\x36\x1f\
-\x3b\x9b\xb3\xdf\x10\x41\x00\xe7\xdb\x16\xf9\x10\xec\x3d\x1a\x01\
-\xa8\xea\x50\x06\xc2\xb2\x0c\xa8\x3d\x74\x53\x5d\x79\x60\xf3\x71\
-\x5c\x68\xa3\x08\x22\xf3\xe6\x70\xae\x18\x23\x71\x0e\x87\xb8\x72\
-\x2c\x88\x2b\x7b\x17\x29\xe4\x90\xb8\xd6\x95\xf7\x39\x37\x18\x4b\
-\xb4\x4a\x22\x1c\x39\x5f\xe3\x95\xa9\x0a\x4e\xac\xa4\x23\xc3\x5f\
-\xe4\x41\x2f\x71\x9c\x36\x94\x46\x83\x2c\x57\x7c\xf6\x31\x9b\x27\
-\xc6\x49\x6b\x63\x20\x1a\x69\x23\x0b\x20\xc4\x81\x17\x89\x7b\x87\
-\xe0\x88\x34\x2b\x1d\xf6\xa5\x0f\xe6\x2c\x10\x03\x00\x12\xe7\x43\
-\xaf\xc5\xbb\x17\x72\x3b\x4a\x5b\x74\x97\x01\x70\x52\xd0\x57\xc3\
-\xca\x1b\x59\x04\x60\x9a\xa8\x8d\x4e\x52\xed\x9b\x86\xf8\x95\xe6\
-\x30\xfe\x4a\x61\x5e\x2e\x39\xbf\xa6\xd6\xee\x76\xe8\xe5\x8a\x60\
-\x1a\x08\xcb\x34\xa0\xf3\x66\x7b\xd3\x6a\x14\x32\x00\x3a\x40\x8e\
-\xda\x37\xa8\x0f\xa0\xb2\x04\xec\x7c\xaf\xe5\xbc\x39\xaf\x26\xf2\
-\x55\x9b\x6a\x18\x38\x07\x31\xfb\x40\xae\xcb\x44\x5c\xe8\xc2\x19\
-\x00\x65\xb9\x88\x63\x14\x4d\x38\xe5\xe7\x9c\x94\xa0\x88\x62\x0d\
-\x10\x5c\x1c\x97\x11\x73\x10\xa7\x08\xd8\xbc\xc4\xac\x5c\xa2\x59\
-\xd5\x11\x03\x6b\x1c\x8f\xbf\x8d\x42\xab\x1c\xa7\x15\x2a\x2e\x02\
-\x08\x45\x06\x04\x4c\xf5\x21\xf6\xab\x80\x10\x57\x02\xb0\xf9\xbc\
-\xa4\x9f\xac\x9e\x81\x32\x78\x30\xbc\xd3\x6a\x28\x35\xa0\x45\x76\
-\xdd\x0a\x3b\x31\x6a\x1b\x99\xf1\x50\xb1\xf2\x17\x91\x63\x99\x50\
-\xc0\x1b\x88\x62\x6d\x19\x71\xac\xd9\x7c\x19\xe1\xe5\xfc\xce\x83\
-\x5a\x06\x22\x5d\x75\x71\xf4\x43\xb0\x2f\xc6\x15\x35\x80\xf1\xd7\
-\x89\xdd\x04\x5a\x7e\x29\x19\x2d\xb0\x4c\x88\x65\xa2\x88\xf6\xe0\
-\xb7\x1d\x49\x82\x1a\x20\x29\x69\xe2\x96\x55\x98\xb8\xdf\x58\xb6\
-\x8d\x22\x71\x1c\xd4\x02\xec\x20\xac\xbc\x91\x99\xf8\x54\x25\x46\
-\x45\x71\xce\xf4\x11\xb0\xc3\xd4\x72\x4d\xd8\x1a\x00\x62\xc4\x88\
-\xeb\x3c\x10\xb0\x79\x6b\x45\x06\x9c\x60\xeb\x43\xd1\xdb\x29\x21\
-\xd2\xcc\x18\x82\x22\x2b\x7f\x13\x7b\x57\x44\xc5\x28\x54\x18\x98\
-\x80\x9c\x5b\x19\x84\x2e\xd6\x80\x09\x9b\x82\x19\x96\x09\x35\x4d\
-\xc4\xe8\x2a\x56\x7a\x87\x0f\x6b\x8a\xed\x03\x89\x40\xea\xb1\x33\
-\xc8\x4a\x1b\x19\x02\xaa\xa6\x01\x43\x6d\xe5\x33\xb0\x32\x08\x82\
-\xed\x09\x6a\xc2\x2e\x9d\x37\x0a\x9a\xb0\x23\x85\x14\x00\x11\x63\
-\x43\x45\x7a\x40\xe8\xf7\x6d\xea\xd5\xc0\xba\xaa\x52\x19\x81\x86\
-\xc2\xb1\x23\x17\x60\xf6\xe2\xc9\x21\x0a\xe5\x5a\x02\xb0\xb4\x21\
-\x3a\x9c\x81\xc5\x20\x74\x15\x61\x0b\x50\x8a\x39\x98\xf8\x70\xa0\
-\x45\x07\xa1\xe4\xb3\x92\xc7\x8d\xcc\x3b\xdb\xbd\x9f\xfd\xd3\x0c\
-\x6f\x25\xa7\xe8\x75\x32\x54\x2b\x9c\x68\xf5\x68\x4b\x8b\xf7\x8e\
-\xcd\x72\xf8\xb9\x57\x20\x6f\x1d\xc0\x28\x64\xd1\x22\x8a\x68\x25\
-\x0a\xc1\x62\x2d\x2c\xd7\x84\x62\xd1\x46\x6d\xed\xe2\x52\xeb\x2c\
-\x23\xb1\x44\x86\x72\x1f\x30\x90\x22\x1c\x3c\xf0\xc6\xf9\x83\x07\
-\x8e\x34\x58\xc0\xa4\x80\x7a\xb4\xf7\x1e\x64\x3f\x81\xe4\x05\x2c\
-\x03\x42\xae\xca\xfb\x53\x27\x98\x6b\x34\xd8\xb7\x73\x37\x20\xe5\
-\x3e\x60\x14\x92\xe8\x98\x46\xd1\xea\xca\x9a\xf0\x80\x9a\x26\x50\
-\x93\x04\xaa\x20\xc5\xfd\xa6\x01\xb5\x0c\xb0\x50\x61\x3a\x8f\x03\
-\xcf\x01\x75\x30\x51\x83\x74\xc0\x67\x30\x5c\x85\x24\x04\xe8\x4c\
-\xbf\x4d\x6b\xe6\x2c\xf9\xd6\xed\x28\x0e\x19\x3a\xfa\x46\x87\x17\
-\x8f\x31\x70\x5c\x42\x13\x16\x71\x0c\x8d\xd8\xfd\x01\x25\x37\xed\
-\x40\x3c\xef\x83\xeb\xc4\x99\x06\xab\xb4\x84\xc8\x21\x15\xf8\xd4\
-\x9d\x5f\x20\x64\x39\x89\x3a\xf2\x3c\x47\x5c\xac\x4a\x56\x9f\x11\
-\xb5\x7d\x01\x35\xea\x40\x14\xac\x62\x6b\x25\xf6\x98\xb0\x8b\xdf\
-\x96\x11\x82\x12\x72\x8d\xef\xb2\x7d\x68\x2d\xcd\x00\x64\xdd\xa3\
-\x1f\xbe\x7b\xf6\xba\x7c\xdf\x1e\xd6\xe1\x09\xad\x9c\x5a\x1a\xa8\
-\x4a\x17\x2f\x19\xce\xe5\x84\xc8\x03\x2d\xab\x94\x13\x94\x62\x8c\
-\x9a\x73\xaa\x71\xde\x36\x2e\x3b\x76\x0f\x7e\x47\x93\xc2\xba\x69\
-\x4e\x25\x55\xaa\x15\x48\xab\x70\xf2\x78\x60\xee\xe4\xd9\x1c\xdc\
-\xf4\xda\x01\x10\x9e\xfa\xe0\xd7\x7f\xfc\xfc\xab\x49\x2a\xd7\x7e\
-\xf2\x3a\x5c\x1e\x68\x9e\xdd\xc9\xc1\x13\x6d\x90\x93\x58\x93\x28\
-\x36\xc1\xbe\xae\x5c\xbc\x24\x46\x37\x71\x71\x2c\xf1\x52\x79\x5d\
-\x6c\xce\x95\xeb\x6b\xfc\xab\x51\xe5\x22\x4a\x73\xae\xcd\x1b\xbf\
-\x78\x8d\xec\xe4\xfb\x2f\x43\xfa\xfa\x15\x00\xf0\x2f\x85\x8b\xb3\
-\x0f\x4d\xfd\xfc\x85\x6f\x4f\xd5\xc7\x77\x23\xe8\xeb\x9a\x98\x6a\
-\x57\x6d\x0a\x5c\xcd\x12\xc5\x82\xa2\xe0\xd4\xd1\xe9\x34\xe8\x7e\
-\xfc\x07\x48\x9e\x04\x74\xcd\x00\x54\x9f\x00\xf8\xcd\xbc\xfd\xff\
-\xbf\x55\xfe\xcb\xed\xdf\x99\xd5\xe1\x33\x6b\x2f\x52\xdc\x00\x00\
-\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x04\x73\
+\x79\x71\xc9\x65\x3c\x00\x00\x07\xab\x49\x44\x41\x54\x58\xc3\xad\
+\x57\x5b\x50\x93\x67\x1a\xf6\xca\xce\xec\xcc\xf6\x62\x2f\xbc\xd9\
+\xe9\xce\xec\x6e\xbd\xda\xd9\x9b\xb5\xce\xba\x3b\x7b\xb0\xad\xcc\
+\x7a\xb1\xce\xce\x3a\xb3\x76\x54\x70\x75\xdb\xe2\x81\xd6\xb6\x54\
+\x04\xbb\xa5\x20\x6d\xc1\x82\x06\x08\x07\x51\x42\x80\x80\x80\x02\
+\x21\x81\x10\x92\x40\x48\x10\x73\x24\x21\x67\x72\x80\x04\x42\x20\
+\x9c\x09\x47\xb5\x54\x78\xf6\xfb\x7e\x13\x16\x30\x58\x8b\x7d\x67\
+\x9e\xf9\x2f\x92\xfc\xcf\xfb\x3e\xcf\xfb\xbe\xdf\x97\x5d\x00\x76\
+\xfd\x98\x20\xf1\x0b\x82\x14\x02\x03\xc1\x75\x82\x03\xcf\xfd\xfe\
+\x8f\x48\xbc\x9b\x20\xe1\x57\xaf\xef\xb5\x2a\x8c\xd6\x65\xdb\x02\
+\x60\x19\x1e\x5b\x09\x27\xf1\x33\xfa\x19\x81\x22\xfc\xdc\x3e\x76\
+\x48\x7e\x8a\xa0\xb9\xb6\x59\x1c\x32\xcf\xad\x42\x39\xfe\x1d\x44\
+\xf6\x51\xd8\xc7\xe6\xe8\x87\x86\x3d\x7b\xf6\x58\x53\x52\xae\x2c\
+\xca\x3a\x3a\x10\x4e\xe2\xe5\x49\xc3\xc4\x31\x04\xb7\x3e\x49\xf9\
+\x2c\x60\x9b\x5d\x59\x53\x4d\x03\x4d\xb6\x11\x34\xeb\xfb\x20\x31\
+\x79\x60\x19\x9d\xc5\xbb\xef\xbe\x3f\xc5\xab\xbe\x83\xf1\x89\x29\
+\x4c\x4f\xcf\xae\x92\xef\xd7\xbc\x74\x02\x11\x9f\x0f\xbe\x1d\xe3\
+\xb2\x04\x43\x4f\xb4\x33\x40\x8b\x7b\x06\xcd\x3d\x2e\x34\xeb\xec\
+\xa8\x57\xf6\x20\x87\x53\x85\x32\x5e\x35\x43\xbc\xb0\xf4\x90\x81\
+\xc1\x60\x5c\x26\xbf\x4b\x7c\xe1\x04\x48\x1c\x24\x38\x41\xfd\xdd\
+\xea\x73\x27\xf1\xb9\x27\x04\x48\x87\x97\xc1\xd7\xbb\x20\x22\x55\
+\x37\xdc\x37\xa2\xb8\x4e\x88\x2c\x56\x3e\xcc\x56\xdb\x3a\x71\x04\
+\x2c\x16\x6b\x2c\xfc\xce\xe7\x27\x10\x91\x36\x93\x95\x3f\x46\x7d\
+\xa5\xfe\x12\xc4\x6f\xf4\x59\x31\xb6\x02\x7e\xef\x20\x5a\x7b\x9c\
+\xe0\x3f\x30\xa1\x4c\x28\x43\x46\x0e\x1b\xb2\x0e\xf9\x26\xd2\xf9\
+\xc5\x65\xcc\x2d\x2c\x21\x34\xbf\x88\xbd\x7b\xf7\x5a\xc9\x3b\x7e\
+\xba\x6d\x02\x24\x7e\x43\x90\x46\x3d\x35\x13\x69\x75\xb3\x80\xd2\
+\x3f\x0f\xcb\xc4\xe2\x9a\x50\xa1\x5a\xb4\x6c\xf1\x59\xa0\xb6\xa0\
+\xa6\x5d\x8d\x2f\xb2\x73\x71\xb7\x9e\xff\x0c\x31\x25\x9d\x09\xcd\
+\x63\x62\x6a\x06\x83\x43\x81\x27\xe4\xdd\xbc\x2d\xd3\xb0\x3b\x92\
+\x03\x33\x26\xd4\x53\xb5\xd3\xfb\x58\x4f\x88\xc5\x03\x21\x88\x2c\
+\x43\x50\xba\x46\xd0\xed\x09\x42\xe5\x9b\x42\x9b\x73\xfc\xa9\xcf\
+\x5a\x1b\xee\x2a\x74\xc8\xbc\xc9\x45\x09\xa7\x6c\x93\xcf\x9b\x88\
+\x27\xa7\x11\x18\x1d\xc3\x80\x6f\x08\xa2\xd6\xd6\x25\xc2\x51\xdb\
+\x28\x12\x87\xc6\x1f\xaf\x82\x2f\x62\x94\x4d\x89\x24\x90\x22\xea\
+\x52\x2d\x9a\x42\xab\xe8\x18\x79\x04\xa1\xc5\xcf\x10\x53\x74\xf6\
+\x0d\xa3\xd3\xe1\x87\xd4\x3c\x80\x16\xbd\x03\x0d\x5d\x06\x14\xd5\
+\x0a\x90\x91\x95\x0d\x2f\x79\xf1\xc6\xaa\xa9\xd4\xb3\x73\x0b\x4c\
+\xc5\x94\xd8\xdd\xef\x85\xc9\x62\x05\xb7\xbc\x12\xa5\xe5\x95\x4b\
+\x13\xf3\xcb\xab\x23\x0f\x01\x37\xd9\x11\xe6\xd9\x15\x84\x97\x15\
+\x13\x06\xcb\x3c\xd0\x68\xf2\xa3\xdd\xee\x5f\x27\x96\x3b\x86\x20\
+\xb3\x78\xd7\x7d\xe6\x08\xa4\xf8\x3c\x33\x1b\x2a\x8d\x36\xaa\xdc\
+\x53\x33\x21\x8c\x8e\x8d\x33\x15\xd3\x26\xe4\x37\x09\xf1\xc1\xc5\
+\x8f\x51\x73\xaf\x01\xbe\x65\x60\xfc\x11\xa0\x23\x13\x23\xf2\xce\
+\xa1\xbe\x5d\xb9\xb8\x51\x01\x83\x81\x74\x74\x4d\xa7\x1e\x0a\x67\
+\x80\xa9\xb8\xdd\xea\x83\xd8\xe8\x42\x93\xca\xcc\xf8\x7c\xe5\xcb\
+\x2c\x88\xda\x24\x51\x89\xa7\x67\xe7\x18\x1b\x86\x86\x47\x60\x77\
+\x38\x49\x82\x3a\x24\x7c\xf8\x21\xae\xb3\x0b\xe1\x99\x5c\x80\x6f\
+\x09\xd0\x90\xde\xe1\x0f\x2c\x81\xab\x1f\xc4\x7d\xef\x04\xdd\x07\
+\x1d\x61\xeb\xff\x9f\xc0\x1d\xb9\x16\x1d\xf6\x21\x48\xcc\xfd\x4f\
+\x7d\xee\xd4\x22\x9d\x55\x84\xaa\x9a\xba\x4d\x3e\x47\xe4\x8e\xf8\
+\x3c\x3c\x12\x84\xd3\xdd\x0f\xbd\xc1\x88\xc2\xe2\x62\x9c\x7e\x2f\
+\x1e\x3d\x03\x01\xf4\x2f\x02\x83\x84\xbc\xc5\xff\x2d\xee\x3a\x43\
+\x28\x51\x91\xf7\xf6\x05\xf1\x4e\xdc\xbf\x7d\x84\x33\x69\xe3\x20\
+\x18\xf4\x33\xab\xe0\xc9\x54\x68\x35\x38\xd1\xd8\xdd\x0b\x9e\x58\
+\x89\xac\x5c\xf6\x33\x3e\x47\xaa\x9e\x9c\x9e\x65\xe4\xee\xf7\x0e\
+\xa2\xd7\x6c\x41\x43\x03\x1f\x27\x62\xe3\x20\xe9\xd6\xc0\x45\xcf\
+\x01\x52\x90\x24\xb8\x86\xb2\x9e\x00\x6e\xb4\xdb\x50\xd1\x1b\x44\
+\x85\xce\x8b\x4a\x7e\x0b\x6d\xbe\x9b\x5b\x27\xd1\xa0\x99\xf8\x16\
+\x65\x22\x05\xee\x29\xf4\x28\x13\xc8\x90\x78\x35\x0b\x1a\xad\x3e\
+\xaa\xdc\x63\x13\x93\xf0\x0d\x0d\xc3\x66\xef\x83\xb4\x5d\x8e\xc4\
+\x4b\x97\x90\xc3\xca\xc3\xd4\x63\xc0\x4e\x7a\x49\x31\x4e\xfa\x89\
+\x94\x7f\x5b\x3b\x84\x7c\x85\x13\x25\x6a\x1f\x4a\xd5\x03\xe8\xf2\
+\x30\xa3\x28\x22\xf8\xf9\x33\x09\x74\x8f\x2e\xa1\xa8\xbe\x15\xa5\
+\x7c\x09\xb2\x4a\x2a\xf0\xcf\xe3\x71\x51\xe5\xf6\x07\x46\xd1\xe7\
+\xf2\x40\xab\x37\x20\xfd\x6a\x06\x92\xbf\x48\x83\xcd\x37\x02\x27\
+\xa9\xda\x40\x1a\x4c\xe0\x7b\x88\x52\x9d\x1f\x45\xdd\xfd\x0c\x71\
+\x41\x97\x1b\xc5\xdd\x1e\x88\x9c\x41\xfc\xf9\xcd\xb7\x5d\x84\xeb\
+\x6c\xb4\x43\xd0\x28\xf7\x4e\x23\xa7\xfc\x1e\xb2\x4b\xab\xf1\x51\
+\xea\x57\x48\xfe\x6f\xea\xfa\x58\x51\xb9\x47\x82\xe3\xf0\x0c\xf8\
+\x60\x34\x99\x51\xc9\xab\xc2\xfb\x67\xcf\x41\xfe\x40\x03\x3f\xe9\
+\x6e\xb2\x8d\x19\xb9\x6f\x69\x06\x19\xd2\x9b\x2a\x2f\x72\xe5\x0e\
+\xe4\x75\xf6\xa1\xf0\xbe\x1b\x1c\x95\x1b\xf9\x9c\xca\x29\xc2\x53\
+\xb8\xdd\x29\xdc\x2b\x76\x04\x90\x51\xc8\xc5\x95\x6b\x79\x38\x11\
+\x9f\x80\x9b\xb7\x6e\x33\x63\x15\x91\xdb\x6a\x73\x40\x22\x6d\xc7\
+\x85\x84\x0f\x50\x74\xbb\x0c\xf3\x2b\x80\x9f\x34\x58\xf7\x24\x20\
+\x1c\x7c\x84\x4a\xd3\x18\x38\xfa\x61\x86\x9c\x56\xfd\x55\xb3\x1e\
+\xac\x0e\x3b\xb8\x3a\x1f\xd9\x21\x1e\x7a\x2f\xe0\x13\xbc\xba\x5d\
+\x02\x26\xbe\xc1\x83\x94\x6f\xd8\x38\x9f\x9c\x8a\x03\x7f\x3d\x04\
+\x63\xaf\x99\xe9\x6e\x2a\xb7\x46\xd7\x83\xa4\xcb\xc9\x48\xff\x3a\
+\x8b\x8c\xd5\x3c\x53\xb5\x71\xf6\xa9\xdc\x35\xf6\x69\x5c\x97\x59\
+\x19\xd9\xbf\x6e\x21\xa7\xa0\xd4\x82\x74\xbe\x1a\x57\x9b\x34\x60\
+\xc9\xcc\x10\xbb\x82\xf8\xe5\xaf\x5f\xa7\x67\xc0\x3b\xe1\x75\x1f\
+\x35\xcc\x35\xdd\x66\x7c\x94\x96\x85\xb8\x73\x17\xf1\x97\x43\x31\
+\x4c\xd5\x74\x99\xf0\xaa\xaa\x71\xfa\xf4\x19\x68\xcc\x0e\x8c\x92\
+\x2d\x36\x14\x1e\xab\x5a\xc7\x0c\x78\xe6\x71\x70\x0d\x23\x4c\xa3\
+\x65\x8a\x0c\x8c\xec\xb4\xfa\x9c\xb6\x5e\x94\x74\x39\xd0\x66\xf7\
+\xaf\x1e\x3d\x11\x4b\x47\x2e\x6f\xc3\x79\x13\x35\x2c\x5c\x99\x1a\
+\xf1\x97\x3e\xc7\xd1\xd8\x33\xf8\x38\x31\x09\x86\x5e\x13\x1a\x9b\
+\x04\xf8\xdd\x1b\xfb\x51\x4f\xd4\xf1\x90\x99\xee\x9a\x00\xaa\xad\
+\x93\x60\x2b\x5d\x0c\x39\xf5\xbc\xf0\xbe\x67\xbd\xea\xcc\x16\x3d\
+\x4a\x55\x1e\x08\x6d\x01\x94\xd4\xf1\x43\xe1\x65\x53\x40\xf0\xca\
+\xf7\x25\x60\x2b\x6e\x6a\xc7\xa9\x84\x44\xc4\x1c\x39\x8a\xdc\x7c\
+\x36\x5a\x5a\xc5\x38\x14\x13\x83\x2f\x39\x35\xc8\x14\x6a\x98\xe6\
+\xa2\xd5\xd2\x27\xf5\x9a\x7a\x4c\x13\xa1\x49\x64\xb7\x99\x90\xdb\
+\x6e\x46\xb9\xda\x8d\x06\xa5\x76\x39\x2c\x39\x3d\xf9\x4e\x13\xec\
+\xd9\x72\xd4\x47\x0d\x3b\xab\x46\x88\x63\xff\x39\x8f\xdf\xee\xfb\
+\x3d\x1a\xf9\x02\x9c\xbf\x90\x80\x93\xf1\x17\x70\xa3\xad\x07\x19\
+\xc4\x4f\x4a\x14\xe9\x6e\xba\x58\xa8\xef\x2c\xfa\x94\x98\x50\x28\
+\xb7\x40\xe9\x0e\x3c\xf9\x57\xec\x29\x2a\x77\x2d\xc1\x67\x04\xfb\
+\xb6\xb9\xe4\x44\x8d\xbe\xcc\xb2\x5a\xfc\xe3\xe4\x19\x1c\x3c\xf4\
+\x37\xb0\x72\xf3\xb0\xef\xc0\x1f\x50\x20\xd1\x21\x89\x27\x65\x2a\
+\xa6\x4b\x85\x3e\xbf\x21\xd5\x46\xe4\x2e\x90\x5b\x21\xb0\x0c\xae\
+\xe5\xdc\xe2\xd2\x11\x13\x13\xe4\x87\x6f\x3c\xaf\x3c\xe7\x96\x15\
+\x35\x9c\x69\x45\xe5\xf8\xfb\xb1\x58\x1c\x3f\x19\x87\x37\xf6\xef\
+\xc7\x8d\x3a\x11\x92\xab\xa4\x0c\x21\xed\x70\xea\x35\x55\x21\x8b\
+\x34\x5b\xc9\x03\x37\x2a\x34\x6e\xd4\x49\x3a\x17\xc3\x72\x73\x08\
+\x8e\x6d\x95\xfb\x87\x24\xe0\x4a\x65\x73\x70\xe4\xf8\x29\x1c\x3e\
+\x7c\x98\x8c\x63\x2e\x32\x05\x2a\x5c\x22\xd5\xd3\x5d\x7e\x4d\xdc\
+\x0b\x36\xe9\x74\x76\xa7\x1d\x77\x8c\xe4\x88\xb6\xf9\x9e\x84\xb7\
+\x1a\x95\xfb\x22\xbd\x49\xfd\x80\x0b\x6d\xf4\x04\x32\x4a\x78\x4c\
+\x0f\x9c\x4b\x49\xc3\xb5\xa6\x2e\x7c\xc2\x6d\x65\x36\x59\xf1\x83\
+\x01\x5c\x97\x9a\xc1\x51\x7b\x20\xf3\x04\xd7\xce\x25\x26\x05\x36\
+\xc8\xfd\xc7\x9d\xc8\x1d\xd5\x82\xdc\x1a\x01\xce\x5e\x4e\x45\x81\
+\x58\x85\x78\xf6\x5d\x5c\xa9\x55\x90\xaa\xfb\xc0\x96\xdb\x50\xad\
+\x75\xe3\xae\x54\x41\x2f\x10\xca\x0d\x72\xbf\xba\xd3\x6a\xa3\x05\
+\xb7\xa2\x51\xf8\x1d\xaf\x43\x8d\x4f\xb9\x2d\x88\xcb\xe6\xe1\x9a\
+\x48\x8f\xaa\x1e\x2f\x9a\x35\xe6\xc7\x7f\x7a\xf3\x2d\x57\x78\xac\
+\xa8\xdc\xaf\xbd\xac\xdc\xd1\xe2\x08\xdd\x05\x5c\x75\x1f\xde\xcb\
+\xaf\x45\xb9\x76\x00\x32\x67\x60\xf5\xc2\xa7\x97\xa9\xdc\xf7\x08\
+\xd2\xa9\xdc\x3b\xf8\x03\xf3\xc2\xf1\x13\x82\xca\x1c\xee\x9d\x50\
+\x0b\x39\x94\xb8\x0d\xc2\xc8\x16\xa3\x17\x87\xc3\x2f\x22\xf7\x0e\
+\xff\xda\x6d\x8a\xdd\x61\x99\xd5\x1b\xb6\xd8\x6b\xbb\x5e\x32\xbe\
+\x2f\x89\xff\x01\x66\xb9\x5f\xfc\x11\x80\x3d\xcf\x00\x00\x00\x00\
+\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x77\xc9\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
-\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd2\x01\x07\x0b\x02\x2b\xa1\x4a\x72\xae\x00\x00\x03\xf0\x49\x44\
-\x41\x54\x78\xda\xb5\x96\xcf\x6b\x54\x57\x14\xc7\x3f\xf7\xcd\xf8\
-\x06\x99\x49\x4c\x33\x89\x20\x1a\x5f\x68\xb2\xe8\x46\x1b\x45\x17\
-\x3e\xc1\x04\x0c\xc2\xb8\x98\x89\xa4\x83\x9b\x8a\x90\x46\xc8\xa6\
-\x05\xdd\xf9\x17\xb8\x10\x04\xff\x02\xdb\x85\x14\x19\x14\x0c\xad\
-\x30\x76\x15\xd0\xfc\x92\x56\x0d\x41\xc9\x2f\x92\x86\xc4\x41\x26\
-\x04\x9a\xc4\x79\xbf\xee\x8f\x2e\x9a\x0c\x49\xeb\xc4\x52\xd2\x03\
-\x17\x2e\xf7\x1c\xce\xe7\x9e\xef\x7d\xf7\xdc\x07\xff\xb3\x89\x5a\
-\x8e\x4c\x26\x93\x2d\x97\xcb\xf9\x20\x08\x5c\x29\xe5\x51\xa5\x14\
-\xc0\x22\x30\x7c\xe0\xc0\x81\xc2\x8b\x17\x2f\x06\xff\x13\xe0\xca\
-\x95\x2b\x27\x5f\xbf\x7e\x7d\xc7\xb2\xac\xce\xf3\xe7\xcf\x73\xfc\
-\xf8\x71\xd2\xe9\x34\x5a\x6b\xca\xe5\x32\xe3\xe3\xe3\x14\x8b\x45\
-\xa4\x94\x43\x87\x0f\x1f\xbe\x31\x36\x36\xf6\xdb\xbf\x06\x74\x75\
-\x75\x65\x4b\xa5\xd2\x43\xd7\x75\xe3\xbd\xbd\xbd\x1c\x3c\x78\x90\
-\x7d\xfb\xf6\x21\x84\x40\x6b\x4d\x14\x45\xf8\xbe\xcf\xbb\x77\xef\
-\xb8\x7f\xff\x3e\x23\x23\x23\xb2\xa1\xa1\xa1\x77\x6e\x6e\xae\x66\
-\x35\xb1\xad\x49\x2e\x97\x3b\x39\x33\x33\xf3\xcb\xa5\x4b\x97\xe2\
-\x57\xaf\x5e\xa5\xa9\xa9\x89\xba\xba\x3a\x1a\x1b\x1b\x69\x6a\x6a\
-\xa2\xb9\xb9\x99\x74\x3a\x4d\x2a\x95\x22\x95\x4a\x71\xec\xd8\x31\
-\x3c\xcf\xb3\x5e\xbd\x7a\x95\x3f\x72\xe4\xc8\xcf\xab\xab\xab\xa5\
-\x5d\x01\x61\x18\xfe\xe8\xba\xee\xe7\xfd\xfd\xfd\xa4\x52\x29\x1a\
-\x1a\x1a\x68\x6e\x6e\x26\x95\x4a\x91\x48\x24\x88\xc5\x62\xc4\x62\
-\x31\x12\x89\x04\x75\x75\x75\x24\x93\x49\xda\xda\xda\x98\x9e\x9e\
-\xb6\x66\x67\x67\xbf\x08\x82\xe0\xfb\x9a\x3a\x75\x74\x74\x64\x1d\
-\xc7\x31\xc5\x62\xd1\xbc\x79\xf3\xc6\x94\x4a\x25\x73\xf1\xe2\x45\
-\x13\x45\x91\x51\x4a\x19\xa5\x94\x91\x52\x9a\x28\x8a\x8c\xef\xfb\
-\x66\x6d\x6d\xcd\x5c\xb8\x70\xc1\x2c\x2d\x2d\x99\x42\xa1\x60\xea\
-\xeb\xeb\x4d\x63\x63\x63\xf6\x63\xb9\x2d\x80\x72\xb9\x9c\xcf\x66\
-\xb3\x1c\x3a\x74\x88\x64\x32\x49\x5f\x5f\xdf\x5f\x4e\xcb\x42\x08\
-\x41\x36\x9b\x25\x97\xcb\x21\x84\x40\x08\xc1\xe5\xcb\x97\xab\xfe\
-\x8e\x8e\x0e\x32\x99\x0c\x9e\xe7\xe5\x6b\x02\x82\x20\x70\xcf\x9e\
-\x3d\x8b\x6d\xdb\x5c\xbb\x76\xad\xea\x34\xc6\xec\x08\x36\xc6\xd0\
-\xd3\xd3\xb3\x63\x5d\x08\x41\x77\x77\x37\x4a\x29\xb7\x26\x40\x29\
-\x75\xb4\xa5\xa5\x85\x44\x22\xc1\x83\x07\x0f\xaa\xc9\xb6\xc6\xe0\
-\xe0\x20\x8f\x1f\x3f\xc6\x18\xc3\xa3\x47\x8f\x76\x00\x8d\x31\xb4\
-\xb7\xb7\x03\x1c\xfd\x18\x20\xbe\x09\x40\x08\x41\x3c\x1e\x47\x29\
-\x85\x31\x06\x21\x44\x75\xbe\x65\x4a\xa9\xea\x9a\x31\x86\x28\x8a\
-\x90\x52\x12\x45\xd1\x3f\xaa\xfd\x7b\x05\x8b\xf3\xf3\xf3\xd5\x6f\
-\x5d\x6b\x8d\xd6\x1a\x29\x25\x52\x4a\x72\xb9\x1c\xb9\x5c\x6e\x47\
-\xb2\xad\xd8\x30\x0c\x99\x9a\x9a\x42\x29\xb5\x58\x13\x60\x8c\x19\
-\x7e\xfa\xf4\x29\xbe\xef\x13\x86\x21\x5a\x6b\x8c\x31\x84\x61\x48\
-\x10\x04\x68\xad\x51\x4a\x11\x86\x21\x61\x18\xa2\x94\x42\x6b\x4d\
-\x10\x04\x04\x41\x40\xb1\x58\x44\x6b\x3d\x5c\x53\x22\xcb\xb2\x0a\
-\x85\x42\xe1\xeb\x7c\x3e\x4f\x7b\x7b\x7b\x55\x06\xcf\xf3\x10\x42\
-\x70\xef\xde\x3d\x84\x10\x54\x2a\x15\xa4\x94\x3b\xfc\x6f\xdf\xbe\
-\xe5\xc9\x93\x27\x00\x85\xdd\x5a\x85\x63\xdb\xf6\x0f\xa7\x4f\x9f\
-\xee\xbc\x7b\xf7\x2e\xb6\x6d\x63\x59\x16\xb6\x6d\x23\x84\xd8\x71\
-\x26\x4a\xa9\x6a\xcb\xf8\xf0\xe1\x03\xd7\xaf\x5f\x67\x62\x62\x62\
-\x08\xe8\xda\xed\x26\xff\x61\x59\xd6\xc4\xf2\xf2\xf2\x37\xef\xdf\
-\xbf\xb7\x4e\x9c\x38\x51\xd5\x3b\x08\x02\xc2\x30\xc4\xf3\x3c\xc2\
-\x30\xc4\xf7\x7d\x2a\x95\x0a\xeb\xeb\xeb\xdc\xbe\x7d\x9b\x91\x91\
-\x11\x09\x7c\x07\xcc\xec\xda\x2a\xb4\xd6\xb6\x10\x62\x68\x6a\x6a\
-\x2a\xff\xf2\xe5\x4b\xab\xa5\xa5\x85\xfd\xfb\xf7\x57\x93\x6f\xe9\
-\xbd\xb1\xb1\xc1\xe4\xe4\x24\xb7\x6e\xdd\x62\x74\x74\x54\x02\x15\
-\xe0\x2b\x60\x15\xf8\xf5\x53\xed\xda\x01\xd2\x42\x88\x3b\x96\x65\
-\x75\x9e\x3b\x77\x8e\x33\x67\xce\xd0\xda\xda\x0a\xc0\xdc\xdc\x1c\
-\xcf\x9f\x3f\xe7\xd9\xb3\x67\x00\x43\xc0\x0d\xe0\x21\xf0\xd9\xe6\
-\x66\x57\x80\x6f\x81\x9f\x3e\xf5\xe0\x38\xc0\x97\x40\x1e\x70\xb7\
-\x5d\xa2\x45\x60\x78\xf3\x40\x57\x80\x65\x80\xd6\xd6\xd6\x49\x40\
-\x2c\x2c\x2c\x58\x40\x04\x64\x36\xe3\x3e\x69\xce\x2e\x63\x7b\xcc\
-\xca\xc0\xc0\x40\x74\xea\xd4\x29\x0f\x58\xdb\x94\xcd\xd9\xcb\xa7\
-\xd7\x01\xd6\x6f\xde\xbc\xa9\x5c\xd7\x95\xc0\x3a\xb0\xb1\x97\x90\
-\xad\xaa\xfc\x81\x81\x81\xc8\x71\x9c\x68\xaf\x01\xdb\x21\x25\x40\
-\x01\x9d\x80\x23\xf6\xf8\x2f\x65\xfb\x8e\x7f\x07\xf8\x13\x7f\x10\
-\x23\x23\x63\x99\xf1\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
-\x60\x82\
-\x00\x00\x07\x7b\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
-\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\
-\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
-\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\
-\x67\x9b\xee\x3c\x1a\x00\x00\x07\x0d\x49\x44\x41\x54\x58\x85\xc5\
-\x97\x49\x6c\x1c\x65\x16\xc7\x7f\xef\xab\xea\xcd\x6e\xdb\xe9\xb6\
-\xe3\x71\x1c\xdb\x31\x31\x6d\x07\x05\xc5\x09\x4b\x34\xc9\x44\x80\
-\x66\xc4\xa2\x44\x42\x39\x70\xe4\x80\x10\x20\x84\x10\x52\x0e\x13\
-\x0e\x20\x61\x09\x44\x16\x89\x1c\xb8\xc0\x81\x2b\x42\x82\x03\x17\
-\x92\x81\x64\x32\x08\x65\x63\x11\x0e\x26\x13\x5b\x4a\x3c\xce\x82\
-\xdb\x59\xec\x76\xa7\xbb\xdd\x5d\xd5\xdd\xb5\xcc\xa1\xaa\xab\x17\
-\x5b\x73\x8b\xe6\x93\x4a\x5f\x2d\xaf\xde\xff\x5f\xff\xf7\xbe\xf7\
-\xbd\x12\xd7\x75\x39\x28\xb2\x17\x98\x00\xc6\x81\x30\xf7\x77\x54\
-\x80\x29\x60\xe2\xa8\xeb\x9e\x90\xbf\xc3\xde\xae\x58\xec\xf8\xdf\
-\x1e\x7a\x88\x1d\x43\x43\x44\x74\xfd\xbe\xa2\x97\x2d\x8b\x8b\x37\
-\x6f\x72\x7a\x66\x86\x9c\x61\xec\xd3\x81\x89\xbf\x6e\xd9\xc2\xf8\
-\xc6\x8d\x5c\x99\x9f\x67\x3e\x93\xa1\x6a\x59\x6b\xbe\x2c\x22\x68\
-\x22\x28\xa5\xd0\xfc\x43\x29\x85\x26\x12\x9c\x2b\xa5\x50\xbe\x4d\
-\xeb\xac\x2b\x45\x22\x1e\xe7\xd1\xa1\x21\x5c\xd7\xe5\xeb\x8b\x17\
-\x27\x74\x60\x7c\x7c\x70\x90\xab\xe9\x34\xf9\xe1\x61\x52\xaf\xbe\
-\x8a\x16\x89\xac\x85\x8e\x00\x4a\x04\x44\x50\xfe\x3d\x25\x82\xf8\
-\xcf\xa4\xe5\x9c\xc6\xfb\x00\xd5\x2a\xa5\x33\x67\xc8\xcd\xce\x32\
-\x3e\x38\xc8\xd7\x17\x2f\x8e\xeb\x40\x38\xac\x69\xa4\x33\x19\x52\
-\xaf\xbd\x86\x1e\x8f\xaf\xc6\x6e\x70\x12\xea\xea\x22\xdc\xdd\x4d\
-\x28\x91\x40\xeb\xea\xc2\xb2\x6d\xcc\x4c\x06\x29\x14\xd0\x56\x56\
-\x70\x56\x56\x02\xb5\xa4\x75\x0e\x85\x88\x3f\xf1\x04\xf9\xcb\x97\
-\x59\xe7\xe1\x84\x75\x00\xd7\x75\xa9\xda\x36\xae\x6d\x63\xf9\x0e\
-\x5a\xc1\xe3\x23\x23\x24\x77\xed\x42\x8f\xc5\x56\x11\xec\xec\xef\
-\xaf\xc7\xb8\x58\xe4\xc6\xe9\xd3\x24\x0b\x05\x10\x09\xd4\x0b\x66\
-\xc7\x01\x11\x5c\xd7\x05\x20\x20\x00\x60\x15\x8b\x88\xa6\x35\xc7\
-\x3c\x16\xa3\xf7\xa9\xa7\xe8\x18\x1d\x5d\x33\x2f\x5a\x47\xa4\xbd\
-\x9d\xd1\xe7\x9f\xe7\xc6\xe4\x24\x32\x39\x49\xbb\x52\x75\x70\x11\
-\xc4\x71\x50\xad\x04\x1c\xff\xc2\x2e\x16\xc1\x27\x20\x40\x7c\x78\
-\x98\xfe\xfd\xfb\x09\x35\x84\xc5\xb1\x6d\x96\xe6\xe7\xb9\x33\x37\
-\xc7\xdd\xb9\x39\xda\x22\x11\x12\x43\x43\x74\x0f\x0f\xd3\x3d\x30\
-\x80\xf2\x01\x37\x3d\xf2\x08\xc5\xcd\x9b\xb9\xf6\xd5\x57\xf4\x57\
-\x2a\x01\x01\xd7\x71\x50\x4a\x05\x98\x1e\x01\xc7\x01\xa0\x9a\xcf\
-\x23\xa1\x10\x4a\x04\x3d\x1e\x5f\x05\x7e\xed\xb7\xdf\xf8\xd7\xa7\
-\x9f\xb2\x29\x14\x62\x7d\x3c\xce\x48\x2c\x86\x52\x0a\xb9\x71\x83\
-\xdc\xf7\xdf\x73\x2b\x12\xa1\x6f\xff\x7e\x7a\xb7\x6c\x01\xa0\x7d\
-\xdd\x3a\x1e\x78\xe1\x05\xa6\x3e\xfa\x88\x2d\x89\x84\xa7\x80\xeb\
-\xa2\x44\x02\x4c\x05\x60\xfb\x17\xb7\x4e\x9e\xa4\xba\xbc\x8c\x5d\
-\x2a\xd1\xbf\x6f\x5f\x00\x5e\x35\x4d\xfe\xf1\xf1\xc7\x9c\x3b\x72\
-\x84\x3f\xb7\xb7\xf3\x40\x7b\x3b\x1d\x80\x6b\x9a\xb8\x86\x81\x6b\
-\x18\x44\x2c\x8b\x64\xa9\x84\xf5\xc5\x17\x5c\xff\xf2\x4b\xaa\xe5\
-\xb2\x47\x22\x91\x60\xfd\x73\xcf\x91\xcb\x66\xc1\x34\x11\xd3\x44\
-\x44\x02\x4c\xd5\x14\x82\x5c\x8e\xa5\x1f\x7e\xa0\x63\x64\x84\x75\
-\xdb\xb7\x07\x5f\x7e\xea\x93\x4f\xa8\x5e\xb8\xc0\x63\x3d\x3d\x84\
-\x2c\xcb\x03\x35\x4d\x22\x03\x03\x44\x06\x07\x71\x0d\xc3\x73\xee\
-\xcf\x91\xc9\x49\xf2\xdf\x7c\x13\xbc\x9f\xda\xb3\x87\x74\x77\x37\
-\xf8\x64\x95\x48\x80\x19\x28\xa0\xc0\x93\xb3\x5a\x65\xe8\xc5\x17\
-\xeb\xb2\xff\xfa\x2b\x37\x4f\x9c\x60\x24\x16\xf3\x80\x4b\x25\x1c\
-\xc3\x20\xf9\xec\xb3\xf4\xbf\xf1\x06\x7d\xaf\xbf\x4e\x61\xd7\x2e\
-\x8c\x5c\x0e\xd7\x34\xa1\x54\x02\xc3\xc0\x3a\x73\x86\xc2\xcc\x4c\
-\xe0\xe7\xd1\x97\x5f\xe6\xf2\xfc\xbc\xa7\x40\x83\xea\xaa\x96\x03\
-\xb5\x8a\xd6\x91\x4a\x11\x4e\x26\x83\x84\x3b\xfe\xc1\x07\xec\xe8\
-\xec\xf4\xd8\x97\x4a\x01\x89\xf8\xce\x9d\x81\xf3\x4d\x4f\x3e\xc9\
-\xd5\x3b\x77\xa0\x54\xf2\x48\x18\x06\x18\x06\xe5\xcf\x3f\xc7\xb5\
-\x6d\x00\x62\x5d\x5d\x64\xc3\x61\x9c\x4c\x06\x59\x95\x03\xae\x1b\
-\x94\xd3\x75\xdb\xb6\x05\x8e\xef\x5e\xb9\x42\x78\x66\x86\x68\x0b\
-\x38\xa6\x89\x34\x54\xcb\x70\x2c\x46\xae\x50\x80\x1a\xb8\x69\x82\
-\x69\xe2\xcc\xcf\x53\x4d\xa7\x03\xbb\xe8\x86\x0d\x54\xd3\x69\x94\
-\x08\x76\x63\x08\x1c\xc7\x09\x6a\x79\x57\x03\x81\xf4\xd4\x14\x5d\
-\x8e\x43\x35\x9d\xc6\x5a\x5a\xf2\xe4\xad\x81\x34\x0e\xd7\x85\x4a\
-\x05\xca\x65\xa4\x5c\x0e\x08\x88\x69\xe2\xcc\xcd\x05\x66\xbd\xa9\
-\x14\xf7\x2c\x6b\x0d\x05\x6a\x21\x50\x8a\x8e\x87\x1f\x0e\x5e\x58\
-\xf8\xfd\x77\x92\xa1\x90\xb7\xb6\x0d\x03\x7b\x79\x19\xf7\xde\x3d\
-\xdc\x62\xd1\x03\x6d\x1c\x95\x4a\xf0\xf5\x52\x2a\x41\x3e\x8f\x9b\
-\xcd\x62\x5d\xba\x14\x98\xfc\x69\xeb\x56\x32\xd5\x2a\x4a\xa9\x20\
-\x07\x74\x00\xdb\xb6\xd1\x94\x42\x6a\x55\xcb\x1f\x22\x42\x5c\xd7\
-\x83\xdd\x4c\x03\xc4\xb6\xbd\xaf\x6c\x19\x52\x2e\x23\x86\x51\xdf\
-\x90\xfc\x8d\xaa\xc5\x21\x2b\xb6\xed\x2d\x43\x3f\x37\x14\x80\xe5\
-\x87\x40\x53\x0a\x63\x7a\x3a\xb0\xdf\x38\x3e\x4e\xb1\x41\x9d\xc6\
-\xed\xb6\x75\x28\x1f\x50\x35\x80\x8b\x08\xa1\xb1\xb1\xc0\x66\xf1\
-\xf2\x65\x12\xe1\x30\x4a\x04\xab\x29\x04\xb6\x8d\xf8\xab\xa0\xd8\
-\x40\xa0\x7f\xdb\x36\x0a\xb5\xfc\x68\xd9\xdb\x57\x29\xb0\x06\xb8\
-\x12\x41\x4f\xa5\xea\x04\xa6\xa7\x59\x1f\x89\xac\x56\xc0\x76\x9c\
-\xa0\xd1\x30\x1a\xd6\xee\xfa\x54\x0a\xab\xaf\x6f\xcd\x06\xa3\x55\
-\x83\x46\xd0\xda\xa1\xf5\xf5\xa1\x86\x86\x02\x9b\xcc\xcc\x4c\x9d\
-\x40\x6b\x12\x8a\x2f\x6f\xe5\xfa\x75\x2a\xd9\xac\xf7\x50\xd3\x78\
-\xfc\xfd\xf7\x29\xf8\x3b\x58\x23\x89\x46\xa2\x77\x2e\x5d\x22\xa2\
-\x69\xcd\x21\x50\x8a\xb6\x03\x07\x82\xdd\xd5\xc8\x66\x51\xe9\x34\
-\xba\x52\xab\x0b\x91\x65\xdb\x75\xe7\x22\xa4\x8f\x1e\x0d\x9c\x0f\
-\xef\xde\x8d\xb1\x6f\x5f\xd0\xfd\xd4\xec\x4a\x9f\x7d\xc6\xad\x1f\
-\x7f\xe4\xe6\xf9\xf3\x9c\x3f\x76\x8c\x91\xb6\xb6\x26\xf0\xf0\xde\
-\xbd\xe8\xe3\xe3\x81\x9f\x73\x87\x0e\x31\x16\x8f\x7b\xca\x89\x60\
-\xf9\x21\xd0\x6b\x0a\xa8\x5a\x5f\x27\x42\xe9\xf4\x69\x16\x4f\x9d\
-\x62\xfd\xd3\x4f\x03\xb0\xfb\xed\xb7\xf9\xb7\xae\x93\x38\x79\x32\
-\x20\x61\xcf\xce\x22\xef\xbc\x43\xbe\x5a\x65\x4f\x28\x44\x5b\x34\
-\xda\x04\x1e\x79\xe5\x95\x00\x7c\xf6\xdb\x6f\x29\x9f\x3d\xcb\x58\
-\x6f\x6f\xd0\xa6\xad\x0a\x41\x6b\xa2\xe5\x8e\x1d\xc3\xcc\x64\x00\
-\x08\xc5\x62\xec\x78\xf7\x5d\xc2\x87\x0f\x53\xee\xe9\xa9\xc7\x59\
-\x29\xfa\xa2\x51\xda\x74\xdd\x6b\x5e\x36\x6c\xa0\xfd\xc3\x0f\x89\
-\xbd\xf9\x26\x2a\x1a\x05\xa0\xb4\xb8\xc8\xcf\x47\x8e\xf0\x97\x64\
-\xd2\x03\x6f\x21\xa0\xd7\x42\x10\x0d\x87\x9b\x62\xec\xe6\x72\xdc\
-\x7d\xef\x3d\x7a\x26\x26\x68\xeb\xe9\x01\xa0\x7f\xf7\x6e\x9c\x9d\
-\x3b\x29\x5e\xbb\x46\xe5\xca\x15\xe4\xea\x55\x22\x9a\x86\x36\x3a\
-\x8a\x4a\xa5\x08\x6d\xda\xd4\xd4\x51\x95\x16\x17\xf9\xe7\xc1\x83\
-\x6c\xd7\x34\xda\x43\xa1\x00\xdc\x6d\x0d\x41\x53\x0e\x34\xcc\xf6\
-\xd4\x14\x0b\x2f\xbd\x44\xe4\xad\xb7\x18\x7c\xe6\x19\x4f\x32\x5d\
-\xa7\x23\x95\x82\x86\xe5\xb5\xd6\xf8\xcf\x77\xdf\x31\x79\xf4\x28\
-\x8f\xe9\x3a\x03\x1d\x1d\xf5\xce\xd8\x6f\x4a\x56\x13\x80\xb5\x7b\
-\xf9\x95\x15\xd4\xe1\xc3\xcc\x9e\x3d\xcb\xc6\x03\x07\x88\x25\x12\
-\xff\x13\xd8\xc8\x66\x39\x77\xe8\x10\xea\xc2\x05\xf6\x26\x12\x84\
-\x35\xad\x19\xdc\xb7\x6b\x26\xe0\x38\xb8\xb0\xe6\x7a\xd7\x94\x42\
-\x44\xe8\x38\x7f\x9e\xc5\x73\xe7\xb8\xdd\xdb\x8b\x1a\x1d\x25\x36\
-\x36\x46\xf7\xd6\xad\x80\x57\xe1\x32\xd3\xd3\x54\x66\x67\x89\x2e\
-\x2c\x30\x12\x8b\x31\xd0\xdd\xdd\x14\xf3\xc6\x7f\x84\xaa\x6d\x07\
-\x95\x50\x07\x2a\xa6\x65\x85\x8b\xa6\x49\xb4\xb3\x73\x4d\xf0\x5a\
-\xd2\xb5\x29\xc5\x83\xcb\xcb\xc8\x4f\x3f\xa1\x7e\xf9\x05\xd3\x71\
-\xc8\x59\x16\x09\x4d\x63\x73\x38\xec\xad\xf1\x64\xb2\x0e\xb8\x06\
-\xb8\x88\x90\x5e\x5a\xc2\xf4\xfe\xbe\x2a\x3a\x30\x75\xbb\x50\x78\
-\x5c\xc3\xeb\x84\x93\x9d\x9d\x28\xd7\x45\xfc\xd6\xb9\x26\x59\x6d\
-\xef\x73\xfc\xbf\x22\xc7\x75\x89\x2a\x45\x9b\x5f\xd9\xc4\xbf\x27\
-\xae\x5b\x07\xac\x9d\xfb\xfe\x6c\xdb\x66\x7e\x71\x91\xab\x0b\x0b\
-\xdc\x2e\x14\x00\xa6\x74\x60\xe2\x66\x3e\x7f\xdc\x05\xca\xb6\xcd\
-\x82\x5f\x05\xef\xd7\xb0\x5d\x97\xc5\x52\x89\x3f\xf2\x79\x80\x09\
-\xf9\x7f\xff\x9e\xff\x17\xc5\xd6\x3d\x9a\xb0\xf3\x6b\xe8\x00\x00\
-\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x01\xd7\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
-\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x01\
-\x91\x49\x44\x41\x54\x58\x09\xed\x57\xdd\x6d\x84\x30\x0c\x3e\xa0\
-\x0b\x54\x55\x75\xdd\x06\xba\x40\x17\xe8\x3b\x62\x0c\x6e\x0a\x7e\
-\x76\xa9\x7a\xbc\x76\x92\x4a\x9d\x01\x38\x3b\xcd\x87\x4c\x5a\xd3\
-\x43\x84\xe3\xa1\x44\xba\x8b\x63\x27\xb6\xbf\x2f\x36\x52\x0e\x87\
-\xff\x3e\x02\x10\x90\xa6\x69\x0f\xf9\x16\x73\x5d\xd7\x26\xf6\x9d\
-\x0c\x16\x04\x41\xd7\xf7\xfd\x97\xd4\xf9\x96\x29\xc6\x23\xc5\x08\
-\xe1\x77\x94\x00\x07\xa7\xcc\x9e\x60\x5c\x63\x26\xa6\x3f\xc9\xef\
-\x11\xbe\x87\x4c\xa0\xb8\xf5\xbc\x27\x30\xaa\x01\x49\xbf\xef\xae\
-\x40\xd5\xcb\x18\x2c\x6f\x7e\x05\x2a\x03\x5a\xc6\x2e\x82\xa5\xeb\
-\xcd\x19\xd8\x13\x50\x6b\x60\x69\x17\x5c\x5b\x43\x9b\x5f\x81\xca\
-\xc0\xb5\x08\xf6\x2e\x58\xca\x80\x7a\x05\x4b\x1d\x4f\x9c\x7f\x23\
-\xdb\x3d\xec\xab\x26\x90\x65\x59\xd2\x75\xdd\x3b\x07\x0b\xc3\xf0\
-\xb9\x2c\xcb\x33\xd5\xd6\x2b\x82\x1b\xbd\x5c\xf8\x96\x29\x78\x0e\
-\x9f\x52\x86\x8e\x67\x95\x81\xb9\xdf\x01\xb7\x6b\x2c\xfa\x98\x62\
-\x34\x36\x60\xcc\x3a\x66\xc1\xae\xcd\xb4\xda\x77\x00\x88\x89\xfa\
-\x9c\x7f\x1c\x0d\x3a\x13\xd9\xfe\xa9\x0c\xb8\x88\xe4\xa1\xbf\x64\
-\x89\x1e\x88\x89\x51\x66\xe2\x07\x0b\xab\x30\x00\xa4\x40\xce\x09\
-\x43\x86\x0d\x20\xbc\x27\xc0\xe8\xc9\xb9\xb9\x7b\xa0\xe7\x60\x56\
-\x1e\x58\x60\x1d\x0f\xf5\x0a\xbe\xcd\xf3\xff\x05\xc2\x58\x2b\x64\
-\xbb\x27\x61\xef\xe6\x75\xc2\x02\x6f\x9e\xf3\x30\xa1\xbd\x1f\x55\
-\x55\xbd\xf0\x59\x0c\x7b\xf7\xa6\xef\xa1\xd3\xe6\x28\x8a\x92\xa2\
-\x28\x9a\x11\x03\xf6\xc5\x32\x3c\x1a\xb4\xc3\xac\xa7\xbd\x0f\xae\
-\x1d\xe8\xe9\xbe\xcd\x47\xc7\xb5\xf3\x1a\x49\xb6\x6d\x7b\xa2\x65\
-\x32\x30\xf0\xdb\xe6\x39\x3a\x38\xa6\x33\x0d\x75\x50\x32\x75\x96\
-\xd8\x3e\x93\x3d\xe6\x44\xbd\x15\xa1\x40\x9f\x93\xf3\xc9\x21\x3b\
-\xe2\x02\x11\x97\xac\xfa\x31\x31\x38\xd5\x00\x00\x00\x00\x49\x45\
-\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x05\x55\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\
-\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
-\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd3\x01\x09\x0a\x09\x03\x5d\x4a\xcd\x3e\x00\x00\x04\xd2\x49\x44\
-\x41\x54\x78\xda\xbd\x94\x6f\x48\x95\x57\x1c\xc7\x3f\xcf\xf3\xdc\
-\xeb\x9d\xde\xeb\xbc\x7a\xef\x75\xa0\xd9\x35\xbd\xb0\x69\xea\xa2\
-\x49\x84\x5b\x28\x1a\x43\x73\x68\x21\xad\x26\xfd\x31\x26\x24\x1b\
-\xad\x16\xc4\x10\xc6\x20\x88\xb9\x37\x0e\xdf\xd5\x5e\x8c\xc5\x20\
-\x46\x6b\x25\x73\xf6\x42\x25\xb6\x4c\x2c\xff\x34\x72\x7a\x85\xea\
-\x8a\x9a\x7f\xe1\xfa\x87\xf2\xa6\xf7\xde\xe7\x79\xce\xb3\x17\x99\
-\x69\xf3\x4a\xbd\xd9\x0f\x0e\xe7\x70\x7e\xf0\xfb\x9c\xef\x39\xbf\
-\xf3\x95\x88\x10\x25\x25\x25\x65\x7e\xbf\x7f\x7f\x28\x14\xca\xd3\
-\x34\x6d\xb3\xae\xeb\x00\x8f\x80\xce\xb8\xb8\xb8\x2b\x3d\x3d\x3d\
-\x4d\xbc\x42\x48\x2f\x6f\x1c\x3e\x7c\x78\x7b\x5f\x5f\xdf\xf7\xb2\
-\x2c\xe7\x17\x15\x15\x91\x93\x93\x83\xc3\xe1\x40\x08\x81\xdf\xef\
-\xa7\xbb\xbb\x9b\x96\x96\x16\x34\x4d\xbb\x99\x9c\x9c\x7c\xba\xab\
-\xab\xeb\xef\x57\x06\x14\x14\x14\x94\x4d\x4d\x4d\x5d\xcd\xcb\xcb\
-\x33\x55\x54\x54\x90\x98\x98\x88\xd9\x6c\x46\x92\x24\x84\x10\xa8\
-\xaa\x4a\x30\x18\x64\x72\x72\x92\x4b\x97\x2e\x71\xfb\xf6\x6d\xcd\
-\x6e\xb7\x57\x0c\x0d\x0d\x45\x54\xa3\x3c\x5f\x94\x97\x97\x6f\x7f\
-\xf8\xf0\x61\xdb\xbe\x7d\xfb\x4c\x47\x8f\x1e\xc5\xe9\x74\x12\x1b\
-\x1b\x4b\x42\x42\x02\x4e\xa7\x13\x97\xcb\x85\xc3\xe1\xc0\x66\xb3\
-\x61\xb3\xd9\xc8\xce\xce\x66\x69\x69\x49\xbe\x77\xef\xde\xfe\x4d\
-\x9b\x36\x5d\x9f\x9b\x9b\x9b\xda\x10\x10\x0e\x87\x7f\xc9\xcb\xcb\
-\x4b\xab\xae\xae\xc6\x66\xb3\x61\xb7\xdb\x71\xb9\x5c\xd8\x6c\x36\
-\x2c\x16\x0b\x8a\xa2\xa0\x28\x0a\x16\x8b\x85\xd8\xd8\x58\xac\x56\
-\x2b\xe9\xe9\xe9\x3c\x78\xf0\x40\xf6\xf9\x7c\xef\x84\x42\xa1\x8b\
-\xeb\x01\x64\x80\x6d\xdb\xb6\x95\x09\x21\xf2\x8f\x1c\x39\x42\x4c\
-\x4c\x0c\x76\xbb\x1d\xa7\xd3\x49\x54\x54\x14\x8a\xa2\x20\xcb\x32\
-\xb2\x2c\xaf\x40\x64\x59\xc6\x6a\xb5\x92\x96\x96\x46\x4d\x4d\x0d\
-\x86\x61\xe4\x27\x24\x24\x94\x45\x54\x60\x18\xc6\xd7\x85\x85\x85\
-\x39\x19\x19\x19\x68\x9a\x86\x10\x82\xc7\x8f\x1f\xa3\x28\x0a\x31\
-\x31\x31\x48\xd2\x8b\xa7\x32\x0c\x03\x00\x21\x04\xba\xae\xe3\x70\
-\x38\x18\x1b\x1b\xc3\xeb\xf5\xea\x9a\xa6\x35\xae\xa7\xa0\x22\x1c\
-\x0e\x1f\x2a\x2d\x2d\xc5\xe3\xf1\x90\x9d\x9d\x4d\x7a\x7a\x3a\x6d\
-\xdd\xf7\x39\x74\xa6\x81\x89\x89\x89\x95\xa2\x86\x61\xb0\xf7\xb3\
-\x73\xfc\x78\xa5\xf5\x45\x97\x48\x12\xbb\x77\xef\x46\xd7\xf5\xbc\
-\x48\x57\xf4\x9b\xa2\x28\xa4\xa4\xa4\x60\xb1\x58\xb8\x3f\x3c\xc1\
-\x07\x9f\x7c\xc5\xc5\x6b\x37\x78\x3b\x2d\x19\xa7\xd3\x89\xcf\xe7\
-\x43\x08\x81\x61\x18\xec\xc9\xcf\xe5\xa7\x6b\x37\x28\xaa\xfa\x86\
-\xfb\xc3\xcf\xe0\x1e\x8f\x07\x60\x73\xa4\x36\x35\xe2\xe3\xe3\x69\
-\x6e\x6e\xe6\xfc\xd5\x0e\xbc\xbe\x31\x5e\x27\x72\x33\xb7\xb0\xbf\
-\x30\x9b\xd2\xd2\x52\x4d\x55\x55\xf3\xcb\x79\x13\x40\x52\x52\x12\
-\xc3\xc3\xc3\x9c\xfb\xe2\x00\x23\x93\x33\x7c\xf9\xdd\xb3\x86\xf8\
-\xa8\x20\x97\xda\x9a\x8f\x51\x55\x95\x40\x20\x80\xdf\xef\xe7\xcf\
-\xbb\x3e\x7e\xfe\xfd\x2f\x00\xbe\x3d\x79\x80\x24\xe7\x9b\xb4\xb7\
-\xb7\xa3\xeb\xfa\xa3\x88\x5d\xb4\x63\xc7\x0e\x5a\x5b\x5b\x09\x06\
-\x83\xa4\x26\x39\x69\x3e\x5f\xcb\x89\xca\x62\x7a\xfa\x7d\x84\x42\
-\x21\x34\x4d\x43\x96\x65\xec\x76\x3b\xbf\xdf\xe8\xe6\xc3\xf7\xdf\
-\xe5\xd7\xfa\x93\xa4\xbc\x15\x4f\x28\x14\xa2\xa5\xa5\x05\x21\x44\
-\x67\xc4\x2b\x6a\x6a\x6a\xe2\xe0\xc1\x83\x5c\xbe\x7c\x19\x8f\xc7\
-\x83\xc9\xa4\x10\x0e\xab\xcc\xcf\xcf\xaf\x74\x90\x24\x49\x68\x9a\
-\x86\xae\xeb\x58\xad\x56\xa2\xa3\xa3\x09\x06\x83\x0c\x0e\x0e\x72\
-\xec\xd8\x31\x84\x10\xe5\x40\xd3\xba\x0a\xb2\xb2\xb6\x92\x9b\x9b\
-\x4b\x5d\x5d\x1d\x81\xc0\x02\x8b\x8b\x8b\xe8\xba\x4e\x42\x7c\x3c\
-\x76\xbb\x1d\x9b\xcd\x46\x74\x74\x34\x26\x93\x09\x45\x91\x99\x9e\
-\x9e\x66\x61\x61\x81\x27\x4f\x9e\x50\x5f\x5f\x8f\x10\xe2\xe6\x7a\
-\xc5\x57\x14\xa8\xaa\xca\xad\x5b\xb7\xd8\xb3\x67\x0f\xc5\xc5\xc5\
-\x9c\x3a\x75\x0a\xb3\xd9\x8c\xa2\xc8\x18\xc6\xb3\xd3\xeb\xba\x8e\
-\xa6\x69\x84\x42\x41\x66\x66\x66\x89\x8b\x8b\xa3\xa1\xa1\x81\xb6\
-\xb6\x36\x0d\xd8\x0b\x5c\xdf\x10\xd0\xdf\xdf\x8f\x77\x60\x80\x4f\
-\xab\xab\xc9\xcc\xcc\xe4\xf8\xf1\xe3\xa4\xa5\x6d\x41\x96\x65\x84\
-\x30\x10\x42\x20\x84\xe0\xe9\xd3\x00\x7d\x7d\xff\xd0\xd8\xd8\xc8\
-\xe0\xe0\xa0\x06\x2c\x2e\xd7\x39\x03\xfc\x10\x01\x10\x66\x6e\x6e\
-\x8e\x91\x91\x51\xe6\xe7\xe7\x39\x7b\xf6\x2c\xdd\xdd\xdd\xec\xda\
-\xb5\x8b\x9d\x3b\x77\xe2\x76\xbb\x01\x18\x1a\xf2\xd1\xd1\xd1\xc1\
-\x9d\x3b\x5d\x00\x37\x81\xd3\xc0\x55\x20\x7e\xd9\x15\x66\x80\x13\
-\x40\xf3\x5a\x40\x38\xcc\xec\xec\x2c\x48\x60\x08\x83\xb1\xf1\x31\
-\xbc\xde\x41\xfe\x68\x6a\xa2\xa7\xb7\x97\xc9\xc9\x49\x00\x5c\x2e\
-\x17\xd3\xd3\xd3\x00\xe5\xcb\xc5\x26\x00\x52\x53\x53\x07\x00\x69\
-\x64\x64\x44\x06\x54\xa0\x04\xe8\x5c\x01\xe8\xba\x8e\xdf\xef\x47\
-\x08\xb1\x46\xde\xf8\xf8\xf8\x1a\x0f\x1a\x1a\x1a\xa2\xb2\xb2\x12\
-\x20\x15\x18\x5d\x4e\xb9\x81\xbb\x35\x35\x35\x71\xbd\xbd\xbd\x5a\
-\x6f\x6f\xaf\xba\xfc\xbf\x32\x80\x51\xd3\xea\x02\x92\x24\xad\xf8\
-\x0e\x40\x72\x72\xf2\x1a\x83\x0b\x04\x02\xcf\x53\xa3\xab\xce\x31\
-\x0a\xbc\x77\xe1\xc2\x85\x81\xda\xda\xda\x98\xa8\xa8\x28\x73\x67\
-\x67\xe7\x12\xe0\x05\xb6\xca\xab\x01\xcf\xfd\x66\xf5\xfa\xe5\xbd\
-\x0d\x22\xab\xae\xae\x4e\xcd\xc9\xc9\x31\xdc\x6e\xf7\x1b\x6b\xde\
-\xa0\xbd\xbd\x1d\x55\x55\xff\x63\xc9\xab\xd5\x00\x4c\x4c\x4c\x50\
-\x55\x55\xe5\x05\xb2\xd6\x01\xb8\x97\xe7\x3b\x40\x22\x50\x08\x8c\
-\x00\x7c\x0e\x18\xaf\x31\xaa\x37\x50\xe1\x5e\x35\xfe\x9f\xf8\x17\
-\xc1\x08\x40\x3b\x9d\x7d\xa8\x8b\x00\x00\x00\x00\x49\x45\x4e\x44\
-\xae\x42\x60\x82\
-\x00\x00\x10\x75\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\
-\x00\x00\x10\x3c\x49\x44\x41\x54\x78\x5e\xed\x9d\x0d\x8c\x5d\xc7\
-\x55\xc7\xcf\x79\xbb\x71\xb6\x1f\xa9\x48\x3f\x68\xd5\x40\xa3\xa8\
-\x2a\x55\x23\x02\x52\x12\x9a\x8a\x46\xa4\x34\x22\x25\x08\x90\xa8\
-\x70\xbf\x28\x42\xaa\x43\xd2\xd8\xde\xbd\x73\x77\x6d\x43\x45\x51\
-\x1e\x1f\xa9\x2d\xb0\xdf\x3b\xf7\xad\x53\x57\xdb\xd2\x46\x0d\xa5\
-\x9f\xa9\x28\x6d\x93\x0a\x68\x9b\xb4\x49\x0b\xa4\x69\x2a\x41\xd2\
-\x52\x48\x30\x4a\x29\x48\x90\x78\x0d\xc4\x89\xb3\xfb\xde\x41\x13\
-\xad\xc1\x09\xb6\x77\xee\xdc\x99\xfb\xe6\xbd\xf9\x5f\x69\x65\xcb\
-\x9e\x73\xe6\x9c\xff\xff\xfe\x34\xf7\xed\xbb\x77\x2e\x13\x0e\x28\
-\x00\x05\x4e\xab\x00\x43\x1b\x28\x00\x05\x4e\xaf\x00\x00\xc1\xd9\
-\x01\x05\xce\xa0\x00\x00\xc1\xe9\x01\x05\x00\x08\xce\x01\x28\xe0\
-\xa7\x00\x56\x10\x3f\xdd\x10\x95\x89\x02\x00\x24\x13\xa3\xd1\xa6\
-\x9f\x02\x00\xc4\x4f\x37\x44\x65\xa2\x00\x00\xc9\xc4\x68\xb4\xe9\
-\xa7\x00\x00\xf1\xd3\x0d\x51\x99\x28\x00\x40\x32\x31\x1a\x6d\xfa\
-\x29\x00\x40\xfc\x74\x43\x54\x26\x0a\x00\x90\x4c\x8c\x46\x9b\x7e\
-\x0a\x00\x10\x3f\xdd\x10\x95\x89\x02\x00\x24\x13\xa3\xd1\xa6\x9f\
-\x02\x00\xc4\x4f\x37\x44\x65\xa2\x00\x00\xc9\xc4\x68\xb4\xe9\xa7\
-\x00\x00\xf1\xd3\x0d\x51\x99\x28\x00\x40\x32\x31\x1a\x6d\xfa\x29\
-\x00\x40\xfc\x74\x43\x54\x26\x0a\x00\x90\x04\x8d\x5e\x5a\x5a\xba\
-\x70\x38\x1c\x7e\x98\x88\xe6\x54\xb5\xaa\xaa\xea\xfd\x09\x96\x99\
-\x45\x49\x00\x24\x41\x9b\x8d\x31\x5d\x22\xba\xe1\x44\x69\xaa\x7a\
-\xa0\xaa\xaa\x5d\x09\x96\x3a\xf5\x25\x01\x90\x04\x2d\x7e\x26\x20\
-\xb6\x44\x66\xfe\xdc\xfa\xfa\xba\x59\x5e\x5e\x7e\x30\xc1\x92\xa7\
-\xb6\x24\x00\x92\xa0\xb5\xa7\x02\x64\xa3\xcc\x7f\x20\xa2\x42\x44\
-\x6e\x4f\xb0\xec\xa9\x2c\x09\x80\x24\x68\xeb\x19\x00\x39\x51\x6d\
-\x29\x22\x92\x60\xe9\x53\x57\x12\x00\x49\xd0\x52\x07\x40\x48\x55\
-\xdf\x27\x22\xdb\x99\x59\x13\x6c\x61\x6a\x4a\x02\x20\x09\x5a\xe9\
-\x02\x88\x2d\x5b\x55\xbf\x3c\x3b\x3b\xbb\xf3\xc0\x81\x03\x0f\x24\
-\xd8\xc6\x54\x94\x04\x40\x12\xb4\xd1\x15\x90\x0d\x48\xbe\x3f\x33\
-\x33\xb3\xd0\xeb\xf5\x6e\x4d\xb0\x95\x89\x2f\x09\x80\x24\x68\x61\
-\x1d\x40\x4e\x2a\xff\xdd\x22\x72\x63\x82\xed\x4c\x74\x49\x00\x24\
-\x41\xfb\x3c\x01\xb1\x9d\xdc\xc2\xcc\xd7\xf5\xfb\xfd\xc7\x13\x6c\
-\x6b\x22\x4b\x02\x20\x09\xda\xd6\x00\x10\xdb\xcd\xdf\x10\xd1\xf5\
-\x22\xf2\xcd\x04\x5b\x9b\xb8\x92\x00\x48\x82\x96\x35\x04\xc4\x76\
-\x74\x94\x88\x76\x88\xc8\x47\x12\x6c\x6f\xa2\x4a\x02\x20\x09\xda\
-\x15\x00\x90\x13\x5d\xdd\x28\x22\xef\x4e\xb0\xc5\x89\x29\x09\x80\
-\x24\x68\x55\x40\x40\x6c\x77\x9f\x9e\x9b\x9b\xbb\x66\xdf\xbe\x7d\
-\x47\x12\x6c\x35\xf9\x92\x00\x48\x4b\x16\xed\xd9\xb3\xe7\xa5\xc7\
-\x8f\x1f\xbf\x88\x99\xed\xcf\x0f\xaa\xea\xf3\x98\xf9\x1c\x22\x7a\
-\x9e\xfd\xbb\xfd\x73\xe3\xe7\xa9\x7f\x23\xa2\xb3\x03\x96\x76\x7f\
-\xa7\xd3\xb9\xb6\xd7\xeb\x7d\x2d\x60\xce\x2c\x52\x01\x90\xc0\x36\
-\xef\xda\xb5\xeb\x39\xa3\xd1\xe8\xa2\xe1\x70\xf8\x14\x0c\x44\x74\
-\xe2\xe7\x05\x81\xa7\xaa\x9b\x6e\x9d\x99\xdf\xd9\xef\xf7\xff\xa8\
-\x6e\x60\xce\xe3\x01\x48\x00\xf7\x8b\xa2\xb8\x8c\x99\xaf\x26\xa2\
-\x9f\x25\xa2\xcb\x02\xa4\x8c\x96\x82\x99\x0f\xf4\xfb\x7d\xdc\x3a\
-\xef\xa8\x30\x00\x71\x14\xea\xe4\x61\x65\x59\x3e\x5f\x55\xaf\x56\
-\xd5\x2b\x99\xf9\x4a\x22\x7a\x99\x47\x9a\xb1\x85\x30\xf3\x6d\xaa\
-\x7a\x8d\x88\xfc\xeb\xd8\x8a\x98\x90\x89\x01\x88\xa3\x51\x4b\x4b\
-\x4b\x2f\x1c\x8d\x46\x6f\x52\x55\xbb\x4a\x58\x28\x9e\xed\x18\x9a\
-\xe4\x30\x66\xfe\xa7\x0d\x48\xbe\x94\x64\x81\x89\x14\x05\x40\x36\
-\x31\xa2\x28\x8a\xcb\x99\xf9\x4d\x44\x64\x7f\x5e\x9c\x88\x6f\x21\
-\xcb\xd8\x29\x22\x37\x85\x4c\x38\x4d\xb9\x00\xc8\x29\xdc\xdc\xb3\
-\x67\xcf\x39\x6b\x6b\x6b\x76\xb5\xb0\x50\x5c\x35\x4d\x86\x9f\xa6\
-\x97\x9f\x16\x91\x3b\x32\xe8\xb3\x76\x8b\x00\xe4\x24\xc9\x8c\x31\
-\x17\x13\xd1\x5b\x37\x56\x8b\x89\xfa\x5c\x51\xdb\xf9\x93\x02\x98\
-\x79\x47\xbf\xdf\x7f\x6f\x93\x1c\xd3\x1a\x0b\x40\xec\x3d\x19\x3b\
-\x76\x9c\xbf\x65\xcb\x96\x79\x55\x5d\x20\xa2\xb3\xa6\xd5\xec\x53\
-\xf5\xa5\xaa\xf7\x8d\x46\xa3\x37\x2c\x2f\x2f\xff\x7b\x4e\x7d\xbb\
-\xf6\x9a\x35\x20\xf6\x3b\x8b\xf5\xf5\xf5\x05\x0b\x06\x33\xbf\xc4\
-\x55\xb4\x69\x19\xa7\xaa\x7f\x72\xee\xb9\xe7\x6e\xeb\x76\xbb\x4f\
-\x4c\x4b\x4f\xa1\xfb\xc8\x16\x10\x63\xcc\xb5\x44\x34\x4f\x44\x3f\
-\x1a\x5a\xd4\x49\xc8\xa7\xaa\xbf\x5d\x55\xd5\xef\x4f\x42\xad\xe3\
-\xac\x31\x3b\x40\x8c\x31\x6f\x24\x22\x7b\x29\x75\xc5\x38\x85\x1f\
-\xe3\xdc\x8f\xaa\xea\xb5\x55\x55\xe1\x09\x44\x07\x13\xb2\x01\x64\
-\xe3\xcb\xbd\xbd\x44\x64\x57\x8e\x5c\x8f\xaf\x13\xd1\x36\x11\xf9\
-\x76\xae\x02\xd4\xed\x3b\x0b\x40\x8a\xa2\xf8\x19\x66\xde\x47\x44\
-\xf6\xb7\x54\xb9\x1e\x1f\x14\x91\x6d\xb9\x36\xef\xdb\xf7\xd4\x03\
-\x62\x8c\x79\x17\x11\xbd\xc7\x57\xa0\x88\x71\xff\xbd\xf1\x60\xd3\
-\x2a\x33\x1f\x55\xd5\xa3\xcc\x7c\x44\x55\x1f\x21\xa2\x47\x4f\xde\
-\x7a\x34\x40\x0d\xbb\x45\x64\x7f\x80\x3c\xd9\xa5\x98\x5a\x40\x16\
-\x16\x16\x5e\xd1\xe9\x74\xec\xaa\x61\x3f\x73\x8c\xf3\x38\xac\xaa\
-\x0f\x74\x3a\x9d\xfb\xed\x9f\xaa\x7a\xff\x59\x67\x9d\xf5\xc0\xfe\
-\xfd\xfb\x1f\x3b\x5d\x51\x01\x9f\x07\x79\x78\xe3\xf1\xdb\xcf\x8f\
-\x53\x80\x49\x9e\x7b\x2a\x01\x31\xc6\xd8\x2f\xfb\xec\xe7\x8d\xf3\
-\xc7\x60\xce\x7f\x30\xf3\x9d\x44\xf4\xf9\xb9\xb9\xb9\x3f\xdb\xbb\
-\x77\xaf\x5d\x11\x6a\x1d\x81\x00\xf9\xcb\x8d\x0d\x1c\x1e\xaa\x35\
-\x39\x06\x3f\x4d\x81\xa9\x03\xa4\x28\x8a\xdf\x63\xe6\xb6\x1f\x33\
-\xbd\x87\x99\xbf\x34\x1c\x0e\xbf\x32\x18\x0c\x6e\x6b\x7a\x8e\x05\
-\x00\xe4\x26\x11\xd9\xd9\xb4\x0e\xc4\x13\x4d\x15\x20\xc6\x18\xbb\
-\x5f\x6d\xd1\x92\xb1\xab\x44\xf4\x29\x66\xbe\xb5\xdf\xef\x7f\x21\
-\xe4\x9c\xbe\x80\xa8\xaa\xdd\x86\x74\xa1\xaa\xaa\x83\x21\xeb\xc9\
-\x39\xd7\xd4\x00\x62\x8c\xb1\x4f\xca\xbd\xa3\x05\x33\xed\xe5\x93\
-\xfd\x0e\xe1\x53\xb1\x9e\xa7\xf0\x01\x44\x55\xbf\xa3\xaa\x3b\x07\
-\x83\xc1\x17\x5b\xd0\x20\x9b\x29\x26\x1e\x90\x6e\xb7\x3b\xb7\xba\
-\xba\x6a\x5f\x07\xf0\xba\xc8\xae\x7d\xb6\xd3\xe9\xac\xf4\x7a\xbd\
-\xcf\x45\x9e\x87\x3c\x00\xf9\xcc\xfa\xfa\xfa\xf6\x83\x07\x0f\x7e\
-\x3f\x76\x6d\xb9\xe5\x9f\x68\x40\xe6\xe7\xe7\x5f\x34\x33\x33\xf3\
-\xb7\x91\x9f\xd3\x68\x0d\x8c\x13\x27\x5f\x4d\x40\xfe\x40\x44\x7e\
-\x23\xb7\x13\xb7\xad\x7e\x27\x16\x90\xc5\xc5\xc5\x1f\x19\x8d\x46\
-\x7f\x1f\x51\xa8\xd6\xc1\xa8\x03\x08\x33\xff\x97\xaa\x1a\x11\xf9\
-\x60\x44\x0d\xb2\x4f\x3d\x91\x80\x14\x45\xf1\x13\xcc\x6c\xb7\xd8\
-\x8c\x71\x1c\xb6\xbf\x22\x16\x91\x95\x18\xc9\x5d\x72\x6e\xb6\x82\
-\xa8\xea\xbd\xcc\x6c\xdf\x34\x75\xb7\x4b\x3e\x8c\xf1\x57\x60\xe2\
-\x00\xd9\xbd\x7b\xf7\x4b\xd6\xd6\xd6\x62\x6d\x36\x70\xd3\x70\x38\
-\xdc\xb7\xbc\xbc\xfc\x3d\x7f\x49\x9b\x47\x9e\x09\x10\x7b\x8b\x7a\
-\xa7\xd3\x99\xef\xf7\xfb\xf6\xdb\x76\x1c\x91\x15\x98\x38\x40\x8a\
-\xa2\xb0\x5f\xc4\x05\xdd\x63\x4a\x55\xef\x9a\x99\x99\xd9\xdb\xeb\
-\xf5\x1a\x7f\x87\x11\xc2\xaf\xd3\x01\xa2\xaa\x37\x54\x55\xf5\xbb\
-\x21\xe6\x40\x0e\x37\x05\x26\x0a\x10\x63\xcc\x3d\x44\x74\xa9\x5b\
-\x6b\xce\xa3\x96\x45\xc4\xde\xfe\x9e\xcc\xf1\x4c\x40\x98\xf9\xdf\
-\x46\xa3\x91\xa9\xaa\xea\xe3\xc9\x14\x99\x49\x21\x13\x03\x88\x31\
-\xe6\x93\x44\xf4\xcb\x81\x7d\x59\x10\x91\xe5\xc0\x39\x1b\xa7\x33\
-\xc6\xfc\x2a\x11\x7d\x78\x23\xd1\x57\x36\xde\x6c\xfb\xad\xc6\x89\
-\x91\xa0\xb6\x02\x13\x01\x88\x31\xe6\x0f\x89\x28\xe4\x6e\x80\xff\
-\x68\xbf\x71\x4e\xf9\x75\xca\x1b\xab\xc8\x83\xc7\x8e\x1d\xbb\x75\
-\x65\x65\xe5\x58\x6d\x67\x11\x10\x44\x81\xe4\x01\x29\xcb\x72\xbb\
-\xaa\x86\xdc\xb7\xe9\x76\x66\x5e\xe8\xf7\xfb\x16\x12\x1c\x50\xe0\
-\x8c\x0a\x24\x0d\x88\x31\xe6\xf5\x44\x14\xec\xd6\x09\xfb\xea\xe4\
-\xaa\xaa\xae\xc7\x39\x01\x05\x5c\x15\x48\x16\x90\x6e\xb7\xfb\xec\
-\x23\x47\x8e\x7c\x91\x99\x5f\xe3\xda\xcc\x26\xe3\xf0\x92\xcb\x40\
-\x42\xe6\x94\x26\x59\x40\x8c\x31\x7d\x22\x32\x21\xcc\x50\xd5\x5f\
-\xab\xaa\xea\xc4\x87\xde\x10\x29\x91\x23\x13\x05\x92\x04\xa4\x28\
-\x8a\x37\x33\xf3\xc7\x42\x78\xa0\xaa\xbf\x50\x55\x55\xf4\x1b\x0c\
-\x43\xd4\x8a\x1c\xe9\x29\x90\x1c\x20\x4b\x4b\x4b\xe7\x0f\x87\x43\
-\xfb\xb9\xe3\xe5\x4d\xe5\x52\xd5\xab\xaa\xaa\xfa\x8b\xa6\x79\x10\
-\x9f\xaf\x02\xc9\x01\x62\x8c\xf9\x63\x22\xfa\x95\xa6\x96\x30\xf3\
-\x62\xbf\xdf\xb7\x97\x69\x38\xa0\x80\xb7\x02\x49\x01\x52\x96\xe5\
-\x4e\x55\x0d\xf1\xc5\x1d\x1e\x39\xf5\x3e\x25\x10\x78\xb2\x02\xc9\
-\x00\xb2\x7b\xf7\xee\x97\xaf\xad\xad\xd9\x8d\xcd\x5e\xd4\xd0\x22\
-\xec\xff\xd4\x50\x40\x84\xff\x9f\x02\xc9\x00\x52\x14\xc5\x4d\xcc\
-\xbc\xbd\xa1\x39\x1f\x15\x91\xb7\x35\xcc\x81\x70\x28\xf0\xbf\x0a\
-\x24\x01\x88\x31\xc6\x3e\x2e\xfb\xe5\x86\xbe\xd8\x7b\x95\xec\x8b\
-\x60\xec\x66\x0a\x38\xa0\x40\x10\x05\x52\x01\xe4\x33\x44\xf4\x8b\
-\x0d\x3b\xfa\x25\x11\xf9\xd3\x86\x39\x10\x0e\x05\x9e\xa6\xc0\xd8\
-\x01\x29\x8a\xe2\xed\xcc\x7c\x4b\x43\x5f\x44\x44\xca\x86\x39\x10\
-\x0e\x05\xfe\x9f\x02\x63\x05\x64\x7e\x7e\xfe\xec\x99\x99\x99\xaf\
-\x35\xdc\x54\x1a\x97\x56\x38\xb1\xa3\x29\x30\x56\x40\xca\xb2\xfc\
-\x4d\x55\xb5\x5b\x84\x36\x39\x70\x69\xd5\x44\x3d\xc4\x9e\x51\x81\
-\xb1\x01\x62\xdf\x24\xfb\xe4\x93\x4f\xda\x2d\x7b\x9a\xec\x9f\x8b\
-\xef\x3b\x70\x82\x47\x55\x60\x6c\x80\x18\x63\xae\x21\xa2\xf7\x37\
-\xe8\xee\x5f\x66\x66\x66\x5e\x7b\xe0\xc0\x81\x7f\x6e\x90\x03\xa1\
-\x50\x20\xcd\x15\xa4\x28\x0a\xbb\xfb\xf8\x95\x0d\xfc\x29\xed\x27\
-\xf3\x06\xf1\x08\x85\x02\x9b\x2a\x30\x96\x15\x24\xc0\xf7\x1e\x77\
-\x8a\x48\xf0\xad\x46\xbb\xdd\xee\x96\xa3\x47\x8f\xfe\x98\xaa\x3e\
-\x77\x53\xe5\x30\x60\x2c\x0a\x0c\x87\xc3\x87\x97\x97\x97\x1f\x6c\
-\x6b\xf2\xb1\x00\x52\x14\xc5\x21\x66\x7e\xa7\x6f\x93\xa1\x6f\x61\
-\x2f\xcb\xf2\x2a\x55\xed\x12\xd1\x25\x44\xb4\xc5\xb7\x2e\xc4\xb5\
-\xa6\x80\xdd\xdc\xef\xcf\x45\xe4\xba\xd8\x33\xb6\x0e\x48\x59\x96\
-\xe7\xa9\xea\xdf\x11\xd1\x0f\x78\x36\x17\xf4\x5e\xab\xb2\x2c\x3f\
-\xa1\xaa\x5b\x3d\x6b\x41\xd8\x98\x15\xe8\x74\x3a\x17\xf7\x7a\xbd\
-\xfb\x62\x95\xd1\x3a\x20\x45\x51\x2c\x31\xb3\xf7\xfb\xf2\x54\xf5\
-\x8a\xaa\xaa\xec\x56\x38\x8d\x8f\xcd\xb6\xf8\x6c\x3c\x01\x12\xb4\
-\xa1\xc0\xb1\xe3\xc7\x8f\xff\xd0\xa1\x43\x87\x8e\xc4\x98\xac\x75\
-\x40\x8c\x31\x7f\x45\x44\x97\x79\x36\x63\x97\xd5\x37\x78\xc6\x3e\
-\x2d\x6c\xd7\xae\x5d\xcf\x59\x5f\x5f\xff\x2e\x11\xbd\x34\x44\x3e\
-\xe4\x18\x9f\x02\xaa\x7a\x6b\x55\x55\xa1\xf7\x4c\x7b\xaa\xa1\x56\
-\x01\x29\x8a\xe2\x32\x66\xb6\x80\x78\x1d\xa3\xd1\xe8\x1d\x83\xc1\
-\xe0\x43\x5e\xc1\xcf\x08\x8a\xbc\x01\x76\x88\x12\x91\xc3\x5d\x81\
-\x47\x44\xe4\x85\xee\xc3\xdd\x47\xb6\x0a\x88\x31\xe6\x06\x22\xb2\
-\x1f\x86\x6b\x1f\xaa\xfa\x60\xa7\xd3\xb9\xa8\xdf\xef\x3f\x5e\x3b\
-\xf8\x14\x01\x65\x59\x6e\x53\xd5\x0f\x84\xc8\x85\x1c\x49\x28\x70\
-\xa1\x88\x7c\x3b\x74\x25\x6d\x03\xd2\xe4\xf2\xea\x46\x11\x09\xf6\
-\x72\x4e\x7c\xfe\x08\x7d\x2a\x8d\x3d\x9f\x7d\xd4\xe1\x8e\xd0\x55\
-\xb4\x06\x48\x80\xcb\xab\x8b\x06\x83\x81\xfd\xed\x57\x90\x03\x80\
-\x04\x91\x31\xa5\x24\x93\x0d\x48\x93\xcb\x2b\x22\xba\x5d\x44\x7e\
-\x2e\xa4\x1b\x00\x24\xa4\x9a\x49\xe4\x9a\x78\x40\x9a\x5c\x5e\x05\
-\xdf\x85\x1d\x80\x24\x71\x52\x87\x2c\x62\x72\x01\x69\x7a\x79\xc5\
-\xcc\xaf\x08\xbd\xd9\x34\x00\x09\x79\x6e\x26\x91\x6b\xa2\x01\xb9\
-\x8e\x99\xdf\xe7\x29\x63\xf0\xcb\x2b\x5b\x07\x00\xf1\x74\x23\xdd\
-\xb0\xc9\x05\xc4\x18\x73\x90\x88\x76\x78\x6a\x1b\xfc\xf2\x0a\x80\
-\x78\x3a\x91\x76\xd8\x44\x03\x72\x17\x11\xbd\xd6\x47\xdf\x18\x97\
-\x57\x00\xc4\xc7\x89\xe4\x63\x26\x13\x90\xad\x5b\xb7\x6e\x39\xef\
-\xbc\xf3\xfe\x93\x88\xce\xf6\x90\xf8\x9b\x22\x62\xef\xb0\x0d\x7e\
-\x34\xbc\xc4\xfa\x9d\xe0\x05\x21\xa1\x55\xe0\x0a\x22\xf2\x7d\x8c\
-\x61\x32\x01\x59\x58\x58\xb8\xa4\xd3\xe9\x7c\xc3\xd3\xff\x0f\x88\
-\xc8\xaf\x7b\xc6\x9e\x31\xac\x21\x20\x51\xcc\x88\xd1\xe7\x24\xe5\
-\x34\xc6\xd8\xbd\xd1\xf2\x02\xa4\x28\x8a\x6d\xcc\xec\x7b\x4b\xc7\
-\x76\x11\x39\x14\xc3\x64\x00\x12\x43\xd5\x66\x39\xb3\x04\xc4\x18\
-\x63\x7f\x7b\xe5\xf5\x60\x8b\xaa\xbe\xa6\xaa\xaa\xbf\x6e\x26\xfb\
-\xa9\xa3\x01\x48\x0c\x55\x9b\xe5\xcc\x12\x90\xb2\x2c\xef\x56\xd5\
-\x9f\xf4\x91\xee\xd8\xb1\x63\x5b\x56\x56\x56\xd6\x7c\x62\x37\x8b\
-\x01\x20\x9b\x29\xd4\xfe\xff\x67\x09\x48\x51\x14\x0f\x31\xf3\x05\
-\x1e\x72\xdf\x2b\x22\x97\x7a\xc4\x39\x85\x00\x10\x27\x99\x5a\x1d\
-\x94\x2b\x20\x8f\x33\xf3\x5c\x5d\xa5\x55\xf5\x63\x55\x55\xbd\xb5\
-\x6e\x9c\xeb\x78\x00\xe2\xaa\x54\x7b\xe3\xb2\x03\xc4\x18\x63\x9f\
-\x3b\xf7\x7a\x14\x52\x55\xf7\x55\x55\xf5\xae\x58\xf6\x00\x90\x58\
-\xca\xfa\xe7\xcd\x11\x90\x57\x11\xd1\x03\x3e\x92\x8d\x46\xa3\xeb\
-\x07\x83\x81\xef\xed\x29\x9b\x4e\x09\x40\x36\x95\xa8\xf5\x01\x39\
-\x02\xf2\x7a\x22\xb2\x2f\xe4\xac\x7d\x8c\x46\xa3\xab\x07\x83\xc1\
-\x17\x6a\x07\x3a\x06\x00\x10\x47\xa1\x5a\x1c\x96\x1d\x20\x65\x59\
-\xbe\x4d\x55\x3f\xe2\xa3\xf1\xfa\xfa\xfa\xab\x0e\x1e\x3c\xf8\x1d\
-\x9f\x58\x97\x18\x00\xe2\xa2\x52\xbb\x63\x72\x04\x64\x49\x55\xbd\
-\xb6\xf8\x59\x5d\x5d\x7d\xd6\xcd\x37\xdf\xfc\x44\x2c\x8b\x00\x48\
-\x2c\x65\xfd\xf3\x66\x07\x88\xef\x49\xc8\xcc\x4f\xf4\xfb\xfd\x67\
-\xf9\x4b\xbd\x79\xa4\x6f\x6d\x1b\x99\x71\xab\xc9\xe6\x12\xd7\x1e\
-\x01\x40\xdc\x25\x7b\x54\x44\x5e\xe0\x3e\xbc\xfe\x48\x00\x52\x5f\
-\xb3\xd8\x11\x00\xc4\x5d\xe1\xef\x89\xc8\x0f\xbb\x0f\xaf\x3f\x12\
-\x80\xd4\xd7\x2c\x76\x04\x00\x71\x57\xf8\xbb\x22\xf2\x4a\xf7\xe1\
-\xf5\x47\x02\x90\xfa\x9a\xc5\x8e\x00\x20\x8e\x0a\x33\xf3\x7d\xfd\
-\x7e\xff\x62\xc7\xe1\x5e\xc3\x00\x88\x97\x6c\x51\x83\x00\x88\xbb\
-\xbc\x77\x8b\xc8\xe5\xee\xc3\xeb\x8f\x04\x20\xf5\x35\x8b\x1d\x01\
-\x40\xdc\x15\xbe\x47\x44\x5e\xed\x3e\xbc\xfe\x48\x00\x52\x5f\xb3\
-\xd8\x11\x00\xc4\x5d\xe1\xc3\x22\xe2\x73\x07\xb0\xf3\x0c\x00\xc4\
-\x59\xaa\xd6\x06\x66\x07\x48\x51\x14\x0b\xcc\x5c\x79\x28\xfc\x98\
-\x88\x44\x7d\x0d\x1a\x00\xf1\x70\x25\x72\x48\x76\x80\x2c\x2e\x2e\
-\xbe\x7d\x34\x1a\xdd\xe2\xa3\xeb\xec\xec\xec\x73\xf7\xef\xdf\xff\
-\x98\x4f\xac\x4b\x0c\x00\x71\x51\xa9\xdd\x31\x39\x02\xf2\xf3\xa3\
-\xd1\xe8\xb3\x9e\x32\x5f\x20\x22\xf6\x5d\x74\x51\x0e\x00\x12\x45\
-\xd6\x46\x49\xb3\x03\xa4\x28\x8a\x9f\x62\xe6\x3b\x7d\x54\x53\xd5\
-\x57\x57\x55\x75\x8f\x4f\xac\x4b\x0c\x00\x71\x51\xa9\xdd\x31\xd9\
-\x01\xb2\xb8\xb8\xf8\xe3\xa3\xd1\xe8\x5b\x3e\x32\xab\xea\x5b\xaa\
-\xaa\xfa\xb8\x4f\xac\x4b\x0c\x00\x71\x51\xa9\xdd\x31\xd9\x01\xb2\
-\x73\xe7\xce\x0b\x66\x67\x67\x1f\xf2\x94\x39\xe8\x0b\x73\x9e\x59\
-\x03\x00\xf1\x74\x25\x62\x58\x76\x80\x94\x65\xf9\x7c\x55\x7d\xc4\
-\x47\xd3\x98\x2f\x66\xb4\xf5\x00\x10\x1f\x57\xe2\xc6\x64\x07\x48\
-\xb7\xdb\x9d\x5d\x5d\x5d\xf5\xfe\x46\x3c\xc6\x2b\xb5\x4e\x58\x0c\
-\x40\xe2\x9e\xec\x3e\xd9\xb3\x03\xc4\x47\xa4\xb6\x62\x00\x48\x5b\
-\x4a\xbb\xcf\x03\x40\xdc\xb5\x8a\x3e\x12\x80\x44\x97\xb8\xf6\x04\
-\x00\xa4\xb6\x64\xf1\x02\x00\x48\x3c\x6d\x7d\x33\x03\x10\x5f\xe5\
-\x22\xc4\x01\x90\x08\xa2\x36\x4c\x09\x40\x1a\x0a\x18\x32\x1c\x80\
-\x84\x54\x33\x4c\x2e\x00\x12\x46\xc7\x20\x59\x00\x48\x10\x19\x83\
-\x26\x01\x20\x41\xe5\x6c\x96\x0c\x80\x34\xd3\x2f\x46\x34\x00\x89\
-\xa1\xaa\x67\x4e\x00\xe2\x29\x5c\xc4\x30\x00\x12\x51\xdc\xba\xa9\
-\x01\x48\x5d\xc5\xe2\x8f\x07\x20\xf1\x35\x76\x9e\x01\x80\x38\x4b\
-\xd5\xda\x40\x00\xd2\x9a\xd4\x9b\x4f\x04\x40\x36\xd7\xa8\xed\x11\
-\x00\xa4\x6d\xc5\xcf\x30\x1f\x00\x49\xc8\x8c\x8d\x52\x00\x48\x42\
-\x9e\x00\x90\x84\xcc\x00\x20\x49\x9a\xd1\x25\xa2\x1b\x3c\x2b\xc3\
-\xe6\xd5\x9e\xc2\x9d\x29\x0c\x2b\x48\x04\x51\x7d\x53\x62\x05\xf1\
-\x55\x2e\x5e\x1c\x00\x89\xa7\x6d\xed\xcc\x00\xa4\xb6\x64\xd1\x03\
-\x00\x48\x74\x89\xdd\x27\x00\x20\xee\x5a\xb5\x35\x12\x80\xb4\xa5\
-\xb4\xc3\x3c\x00\xc4\x41\xa4\x96\x87\x00\x90\x96\x05\xdf\xe4\x03\
-\x21\x3e\xa4\x27\xe4\x87\x2d\x05\x80\x24\x64\x08\x56\x90\x84\xcc\
-\xc0\xaf\x79\x93\x34\x03\x2b\x48\x62\xb6\x60\x05\x49\xc8\x10\xac\
-\x20\x09\x99\x81\x15\x24\x49\x33\xb0\x82\x24\x66\x0b\x56\x90\x84\
-\x0c\xc1\x0a\x92\x90\x19\x58\x41\x92\x34\x03\x2b\x48\x62\xb6\x60\
-\x05\x49\xc8\x10\xac\x20\x09\x99\x81\x15\x24\x49\x33\xb0\x82\x24\
-\x66\x0b\x56\x90\x84\x0c\xc1\x0a\x92\x90\x19\x58\x41\x92\x34\x03\
-\x2b\x48\x62\xb6\x60\x05\x49\xc8\x10\xac\x20\x09\x99\x81\x15\x24\
-\x49\x33\xb0\x82\x24\x66\x0b\x56\x90\x84\x0c\xc1\x0a\x92\x90\x19\
-\x58\x41\x92\x34\x03\x2b\x48\x62\xb6\x60\x05\x49\xc8\x10\xac\x20\
-\x09\x99\x81\x15\x24\x49\x33\xb0\x82\x24\x66\x0b\x56\x90\x84\x0c\
-\xc1\x0a\x92\x90\x19\x58\x41\x92\x34\xa3\xc9\x0a\x72\x47\x7a\x1d\
-\x4d\x4d\x45\xaf\xf3\xec\x24\xca\x56\x4c\xec\x59\xcc\xc4\x87\x35\
-\x5c\x41\x26\xbe\xff\x29\x6c\x00\x80\x84\x34\x15\x80\x84\x54\x33\
-\x89\x5c\x00\x24\xa4\x0d\x00\x24\xa4\x9a\x49\xe4\x02\x20\x21\x6d\
-\x00\x20\x21\xd5\x4c\x22\x17\x00\x09\x69\x03\x00\x09\xa9\x66\x12\
-\xb9\x00\x48\x48\x1b\x00\x48\x48\x35\x93\xc8\x05\x40\x42\xda\x00\
-\x40\x42\xaa\x99\x44\x2e\x00\x12\xd2\x06\x00\x12\x52\xcd\x24\x72\
-\x01\x90\x90\x36\x14\x45\xb1\x95\x99\x3f\x11\x32\x27\x72\x8d\x4f\
-\x81\x4e\xa7\xf3\xb2\x5e\xaf\xf7\x70\xe8\x0a\xb2\xfd\xa2\x70\x69\
-\x69\xe9\xc2\xe1\x70\x78\x7f\x68\x41\x91\x6f\x2c\x0a\x1c\x16\x91\
-\x0b\x62\xcc\x9c\x2d\x20\x56\x4c\x63\xcc\x37\x88\xe8\x92\x18\xc2\
-\x22\x67\x7b\x0a\xa8\xea\x7b\xaa\xaa\xfa\xad\x18\x33\xe6\x0e\xc8\
-\xd5\x44\x74\x5b\x0c\x61\x91\xb3\x35\x05\xee\x16\x91\xcb\x63\xcd\
-\x96\x35\x20\x56\x54\x7c\x16\x89\x75\x6a\xb5\x92\xf7\x5e\x11\xb9\
-\x34\xe6\x4c\xd9\x03\xb2\x01\xc9\x8b\x3b\x9d\xce\x6e\x55\xb5\x97\
-\x5b\xf6\xe7\x9c\x98\xa2\x23\x77\x23\x05\x0e\x13\xd1\x57\x89\xe8\
-\x2e\x11\x59\x69\x94\xc9\x21\x18\x80\x38\x88\x84\x21\xf9\x2a\x00\
-\x40\xf2\xf5\x1e\x9d\x3b\x28\x00\x40\x1c\x44\xc2\x90\x7c\x15\x00\
-\x20\xf9\x7a\x8f\xce\x1d\x14\x00\x20\x0e\x22\x61\x48\xbe\x0a\x00\
-\x90\x7c\xbd\x47\xe7\x0e\x0a\x00\x10\x07\x91\x30\x24\x5f\x05\x00\
-\x48\xbe\xde\xa3\x73\x07\x05\x00\x88\x83\x48\x18\x92\xaf\x02\x00\
-\x24\x5f\xef\xd1\xb9\x83\x02\x00\xc4\x41\x24\x0c\xc9\x57\x01\x00\
-\x92\xaf\xf7\xe8\xdc\x41\x01\x00\xe2\x20\x12\x86\xe4\xab\x00\x00\
-\xc9\xd7\x7b\x74\xee\xa0\x00\x00\x71\x10\x09\x43\xf2\x55\x00\x80\
-\xe4\xeb\x3d\x3a\x77\x50\x00\x80\x38\x88\x84\x21\xf9\x2a\x00\x40\
-\xf2\xf5\x1e\x9d\x3b\x28\x00\x40\x1c\x44\xc2\x90\x7c\x15\x00\x20\
-\xf9\x7a\x8f\xce\x1d\x14\x00\x20\x0e\x22\x61\x48\xbe\x0a\x00\x90\
-\x7c\xbd\x47\xe7\x0e\x0a\x00\x10\x07\x91\x30\x24\x5f\x05\x00\x48\
-\xbe\xde\xa3\x73\x07\x05\x00\x88\x83\x48\x18\x92\xaf\x02\xff\x03\
-\x39\x5c\xc9\x23\xd1\xf6\x50\x87\x00\x00\x00\x00\x49\x45\x4e\x44\
-\xae\x42\x60\x82\
-\x00\x00\x08\x19\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
-\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
-\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
-\x79\x71\xc9\x65\x3c\x00\x00\x07\xab\x49\x44\x41\x54\x58\xc3\xad\
-\x57\x5b\x50\x93\x67\x1a\xf6\xca\xce\xec\xcc\xf6\x62\x2f\xbc\xd9\
-\xe9\xce\xec\x6e\xbd\xda\xd9\x9b\xb5\xce\xba\x3b\x7b\xb0\xad\xcc\
-\x7a\xb1\xce\xce\x3a\xb3\x76\x54\x70\x75\xdb\xe2\x81\xd6\xb6\x54\
-\x04\xbb\xa5\x20\x6d\xc1\x82\x06\x08\x07\x51\x42\x80\x80\x80\x02\
-\x21\x81\x10\x92\x40\x48\x10\x73\x24\x21\x67\x72\x80\x04\x42\x20\
-\x9c\x09\x47\xb5\x54\x78\xf6\xfb\x7e\x13\x16\x30\x58\x8b\x7d\x67\
-\x9e\xf9\x2f\x92\xfc\xcf\xfb\x3e\xcf\xfb\xbe\xdf\x97\x5d\x00\x76\
-\xfd\x98\x20\xf1\x0b\x82\x14\x02\x03\xc1\x75\x82\x03\xcf\xfd\xfe\
-\x8f\x48\xbc\x9b\x20\xe1\x57\xaf\xef\xb5\x2a\x8c\xd6\x65\xdb\x02\
-\x60\x19\x1e\x5b\x09\x27\xf1\x33\xfa\x19\x81\x22\xfc\xdc\x3e\x76\
-\x48\x7e\x8a\xa0\xb9\xb6\x59\x1c\x32\xcf\xad\x42\x39\xfe\x1d\x44\
-\xf6\x51\xd8\xc7\xe6\xe8\x87\x86\x3d\x7b\xf6\x58\x53\x52\xae\x2c\
-\xca\x3a\x3a\x10\x4e\xe2\xe5\x49\xc3\xc4\x31\x04\xb7\x3e\x49\xf9\
-\x2c\x60\x9b\x5d\x59\x53\x4d\x03\x4d\xb6\x11\x34\xeb\xfb\x20\x31\
-\x79\x60\x19\x9d\xc5\xbb\xef\xbe\x3f\xc5\xab\xbe\x83\xf1\x89\x29\
-\x4c\x4f\xcf\xae\x92\xef\xd7\xbc\x74\x02\x11\x9f\x0f\xbe\x1d\xe3\
-\xb2\x04\x43\x4f\xb4\x33\x40\x8b\x7b\x06\xcd\x3d\x2e\x34\xeb\xec\
-\xa8\x57\xf6\x20\x87\x53\x85\x32\x5e\x35\x43\xbc\xb0\xf4\x90\x81\
-\xc1\x60\x5c\x26\xbf\x4b\x7c\xe1\x04\x48\x1c\x24\x38\x41\xfd\xdd\
-\xea\x73\x27\xf1\xb9\x27\x04\x48\x87\x97\xc1\xd7\xbb\x20\x22\x55\
-\x37\xdc\x37\xa2\xb8\x4e\x88\x2c\x56\x3e\xcc\x56\xdb\x3a\x71\x04\
-\x2c\x16\x6b\x2c\xfc\xce\xe7\x27\x10\x91\x36\x93\x95\x3f\x46\x7d\
-\xa5\xfe\x12\xc4\x6f\xf4\x59\x31\xb6\x02\x7e\xef\x20\x5a\x7b\x9c\
-\xe0\x3f\x30\xa1\x4c\x28\x43\x46\x0e\x1b\xb2\x0e\xf9\x26\xd2\xf9\
-\xc5\x65\xcc\x2d\x2c\x21\x34\xbf\x88\xbd\x7b\xf7\x5a\xc9\x3b\x7e\
-\xba\x6d\x02\x24\x7e\x43\x90\x46\x3d\x35\x13\x69\x75\xb3\x80\xd2\
-\x3f\x0f\xcb\xc4\xe2\x9a\x50\xa1\x5a\xb4\x6c\xf1\x59\xa0\xb6\xa0\
-\xa6\x5d\x8d\x2f\xb2\x73\x71\xb7\x9e\xff\x0c\x31\x25\x9d\x09\xcd\
-\x63\x62\x6a\x06\x83\x43\x81\x27\xe4\xdd\xbc\x2d\xd3\xb0\x3b\x92\
-\x03\x33\x26\xd4\x53\xb5\xd3\xfb\x58\x4f\x88\xc5\x03\x21\x88\x2c\
-\x43\x50\xba\x46\xd0\xed\x09\x42\xe5\x9b\x42\x9b\x73\xfc\xa9\xcf\
-\x5a\x1b\xee\x2a\x74\xc8\xbc\xc9\x45\x09\xa7\x6c\x93\xcf\x9b\x88\
-\x27\xa7\x11\x18\x1d\xc3\x80\x6f\x08\xa2\xd6\xd6\x25\xc2\x51\xdb\
-\x28\x12\x87\xc6\x1f\xaf\x82\x2f\x62\x94\x4d\x89\x24\x90\x22\xea\
-\x52\x2d\x9a\x42\xab\xe8\x18\x79\x04\xa1\xc5\xcf\x10\x53\x74\xf6\
-\x0d\xa3\xd3\xe1\x87\xd4\x3c\x80\x16\xbd\x03\x0d\x5d\x06\x14\xd5\
-\x0a\x90\x91\x95\x0d\x2f\x79\xf1\xc6\xaa\xa9\xd4\xb3\x73\x0b\x4c\
-\xc5\x94\xd8\xdd\xef\x85\xc9\x62\x05\xb7\xbc\x12\xa5\xe5\x95\x4b\
-\x13\xf3\xcb\xab\x23\x0f\x01\x37\xd9\x11\xe6\xd9\x15\x84\x97\x15\
-\x13\x06\xcb\x3c\xd0\x68\xf2\xa3\xdd\xee\x5f\x27\x96\x3b\x86\x20\
-\xb3\x78\xd7\x7d\xe6\x08\xa4\xf8\x3c\x33\x1b\x2a\x8d\x36\xaa\xdc\
-\x53\x33\x21\x8c\x8e\x8d\x33\x15\xd3\x26\xe4\x37\x09\xf1\xc1\xc5\
-\x8f\x51\x73\xaf\x01\xbe\x65\x60\xfc\x11\xa0\x23\x13\x23\xf2\xce\
-\xa1\xbe\x5d\xb9\xb8\x51\x01\x83\x81\x74\x74\x4d\xa7\x1e\x0a\x67\
-\x80\xa9\xb8\xdd\xea\x83\xd8\xe8\x42\x93\xca\xcc\xf8\x7c\xe5\xcb\
-\x2c\x88\xda\x24\x51\x89\xa7\x67\xe7\x18\x1b\x86\x86\x47\x60\x77\
-\x38\x49\x82\x3a\x24\x7c\xf8\x21\xae\xb3\x0b\xe1\x99\x5c\x80\x6f\
-\x09\xd0\x90\xde\xe1\x0f\x2c\x81\xab\x1f\xc4\x7d\xef\x04\xdd\x07\
-\x1d\x61\xeb\xff\x9f\xc0\x1d\xb9\x16\x1d\xf6\x21\x48\xcc\xfd\x4f\
-\x7d\xee\xd4\x22\x9d\x55\x84\xaa\x9a\xba\x4d\x3e\x47\xe4\x8e\xf8\
-\x3c\x3c\x12\x84\xd3\xdd\x0f\xbd\xc1\x88\xc2\xe2\x62\x9c\x7e\x2f\
-\x1e\x3d\x03\x01\xf4\x2f\x02\x83\x84\xbc\xc5\xff\x2d\xee\x3a\x43\
-\x28\x51\x91\xf7\xf6\x05\xf1\x4e\xdc\xbf\x7d\x84\x33\x69\xe3\x20\
-\x18\xf4\x33\xab\xe0\xc9\x54\x68\x35\x38\xd1\xd8\xdd\x0b\x9e\x58\
-\x89\xac\x5c\xf6\x33\x3e\x47\xaa\x9e\x9c\x9e\x65\xe4\xee\xf7\x0e\
-\xa2\xd7\x6c\x41\x43\x03\x1f\x27\x62\xe3\x20\xe9\xd6\xc0\x45\xcf\
-\x01\x52\x90\x24\xb8\x86\xb2\x9e\x00\x6e\xb4\xdb\x50\xd1\x1b\x44\
-\x85\xce\x8b\x4a\x7e\x0b\x6d\xbe\x9b\x5b\x27\xd1\xa0\x99\xf8\x16\
-\x65\x22\x05\xee\x29\xf4\x28\x13\xc8\x90\x78\x35\x0b\x1a\xad\x3e\
-\xaa\xdc\x63\x13\x93\xf0\x0d\x0d\xc3\x66\xef\x83\xb4\x5d\x8e\xc4\
-\x4b\x97\x90\xc3\xca\xc3\xd4\x63\xc0\x4e\x7a\x49\x31\x4e\xfa\x89\
-\x94\x7f\x5b\x3b\x84\x7c\x85\x13\x25\x6a\x1f\x4a\xd5\x03\xe8\xf2\
-\x30\xa3\x28\x22\xf8\xf9\x33\x09\x74\x8f\x2e\xa1\xa8\xbe\x15\xa5\
-\x7c\x09\xb2\x4a\x2a\xf0\xcf\xe3\x71\x51\xe5\xf6\x07\x46\xd1\xe7\
-\xf2\x40\xab\x37\x20\xfd\x6a\x06\x92\xbf\x48\x83\xcd\x37\x02\x27\
-\xa9\xda\x40\x1a\x4c\xe0\x7b\x88\x52\x9d\x1f\x45\xdd\xfd\x0c\x71\
-\x41\x97\x1b\xc5\xdd\x1e\x88\x9c\x41\xfc\xf9\xcd\xb7\x5d\x84\xeb\
-\x6c\xb4\x43\xd0\x28\xf7\x4e\x23\xa7\xfc\x1e\xb2\x4b\xab\xf1\x51\
-\xea\x57\x48\xfe\x6f\xea\xfa\x58\x51\xb9\x47\x82\xe3\xf0\x0c\xf8\
-\x60\x34\x99\x51\xc9\xab\xc2\xfb\x67\xcf\x41\xfe\x40\x03\x3f\xe9\
-\x6e\xb2\x8d\x19\xb9\x6f\x69\x06\x19\xd2\x9b\x2a\x2f\x72\xe5\x0e\
-\xe4\x75\xf6\xa1\xf0\xbe\x1b\x1c\x95\x1b\xf9\x9c\xca\x29\xc2\x53\
-\xb8\xdd\x29\xdc\x2b\x76\x04\x90\x51\xc8\xc5\x95\x6b\x79\x38\x11\
-\x9f\x80\x9b\xb7\x6e\x33\x63\x15\x91\xdb\x6a\x73\x40\x22\x6d\xc7\
-\x85\x84\x0f\x50\x74\xbb\x0c\xf3\x2b\x80\x9f\x34\x58\xf7\x24\x20\
-\x1c\x7c\x84\x4a\xd3\x18\x38\xfa\x61\x86\x9c\x56\xfd\x55\xb3\x1e\
-\xac\x0e\x3b\xb8\x3a\x1f\xd9\x21\x1e\x7a\x2f\xe0\x13\xbc\xba\x5d\
-\x02\x26\xbe\xc1\x83\x94\x6f\xd8\x38\x9f\x9c\x8a\x03\x7f\x3d\x04\
-\x63\xaf\x99\xe9\x6e\x2a\xb7\x46\xd7\x83\xa4\xcb\xc9\x48\xff\x3a\
-\x8b\x8c\xd5\x3c\x53\xb5\x71\xf6\xa9\xdc\x35\xf6\x69\x5c\x97\x59\
-\x19\xd9\xbf\x6e\x21\xa7\xa0\xd4\x82\x74\xbe\x1a\x57\x9b\x34\x60\
-\xc9\xcc\x10\xbb\x82\xf8\xe5\xaf\x5f\xa7\x67\xc0\x3b\xe1\x75\x1f\
-\x35\xcc\x35\xdd\x66\x7c\x94\x96\x85\xb8\x73\x17\xf1\x97\x43\x31\
-\x4c\xd5\x74\x99\xf0\xaa\xaa\x71\xfa\xf4\x19\x68\xcc\x0e\x8c\x92\
-\x2d\x36\x14\x1e\xab\x5a\xc7\x0c\x78\xe6\x71\x70\x0d\x23\x4c\xa3\
-\x65\x8a\x0c\x8c\xec\xb4\xfa\x9c\xb6\x5e\x94\x74\x39\xd0\x66\xf7\
-\xaf\x1e\x3d\x11\x4b\x47\x2e\x6f\xc3\x79\x13\x35\x2c\x5c\x99\x1a\
-\xf1\x97\x3e\xc7\xd1\xd8\x33\xf8\x38\x31\x09\x86\x5e\x13\x1a\x9b\
-\x04\xf8\xdd\x1b\xfb\x51\x4f\xd4\xf1\x90\x99\xee\x9a\x00\xaa\xad\
-\x93\x60\x2b\x5d\x0c\x39\xf5\xbc\xf0\xbe\x67\xbd\xea\xcc\x16\x3d\
-\x4a\x55\x1e\x08\x6d\x01\x94\xd4\xf1\x43\xe1\x65\x53\x40\xf0\xca\
-\xf7\x25\x60\x2b\x6e\x6a\xc7\xa9\x84\x44\xc4\x1c\x39\x8a\xdc\x7c\
-\x36\x5a\x5a\xc5\x38\x14\x13\x83\x2f\x39\x35\xc8\x14\x6a\x98\xe6\
-\xa2\xd5\xd2\x27\xf5\x9a\x7a\x4c\x13\xa1\x49\x64\xb7\x99\x90\xdb\
-\x6e\x46\xb9\xda\x8d\x06\xa5\x76\x39\x2c\x39\x3d\xf9\x4e\x13\xec\
-\xd9\x72\xd4\x47\x0d\x3b\xab\x46\x88\x63\xff\x39\x8f\xdf\xee\xfb\
-\x3d\x1a\xf9\x02\x9c\xbf\x90\x80\x93\xf1\x17\x70\xa3\xad\x07\x19\
-\xc4\x4f\x4a\x14\xe9\x6e\xba\x58\xa8\xef\x2c\xfa\x94\x98\x50\x28\
-\xb7\x40\xe9\x0e\x3c\xf9\x57\xec\x29\x2a\x77\x2d\xc1\x67\x04\xfb\
-\xb6\xb9\xe4\x44\x8d\xbe\xcc\xb2\x5a\xfc\xe3\xe4\x19\x1c\x3c\xf4\
-\x37\xb0\x72\xf3\xb0\xef\xc0\x1f\x50\x20\xd1\x21\x89\x27\x65\x2a\
-\xa6\x4b\x85\x3e\xbf\x21\xd5\x46\xe4\x2e\x90\x5b\x21\xb0\x0c\xae\
-\xe5\xdc\xe2\xd2\x11\x13\x13\xe4\x87\x6f\x3c\xaf\x3c\xe7\x96\x15\
-\x35\x9c\x69\x45\xe5\xf8\xfb\xb1\x58\x1c\x3f\x19\x87\x37\xf6\xef\
-\xc7\x8d\x3a\x11\x92\xab\xa4\x0c\x21\xed\x70\xea\x35\x55\x21\x8b\
-\x34\x5b\xc9\x03\x37\x2a\x34\x6e\xd4\x49\x3a\x17\xc3\x72\x73\x08\
-\x8e\x6d\x95\xfb\x87\x24\xe0\x4a\x65\x73\x70\xe4\xf8\x29\x1c\x3e\
-\x7c\x98\x8c\x63\x2e\x32\x05\x2a\x5c\x22\xd5\xd3\x5d\x7e\x4d\xdc\
-\x0b\x36\xe9\x74\x76\xa7\x1d\x77\x8c\xe4\x88\xb6\xf9\x9e\x84\xb7\
-\x1a\x95\xfb\x22\xbd\x49\xfd\x80\x0b\x6d\xf4\x04\x32\x4a\x78\x4c\
-\x0f\x9c\x4b\x49\xc3\xb5\xa6\x2e\x7c\xc2\x6d\x65\x36\x59\xf1\x83\
-\x01\x5c\x97\x9a\xc1\x51\x7b\x20\xf3\x04\xd7\xce\x25\x26\x05\x36\
-\xc8\xfd\xc7\x9d\xc8\x1d\xd5\x82\xdc\x1a\x01\xce\x5e\x4e\x45\x81\
-\x58\x85\x78\xf6\x5d\x5c\xa9\x55\x90\xaa\xfb\xc0\x96\xdb\x50\xad\
-\x75\xe3\xae\x54\x41\x2f\x10\xca\x0d\x72\xbf\xba\xd3\x6a\xa3\x05\
-\xb7\xa2\x51\xf8\x1d\xaf\x43\x8d\x4f\xb9\x2d\x88\xcb\xe6\xe1\x9a\
-\x48\x8f\xaa\x1e\x2f\x9a\x35\xe6\xc7\x7f\x7a\xf3\x2d\x57\x78\xac\
-\xa8\xdc\xaf\xbd\xac\xdc\xd1\xe2\x08\xdd\x05\x5c\x75\x1f\xde\xcb\
-\xaf\x45\xb9\x76\x00\x32\x67\x60\xf5\xc2\xa7\x97\xa9\xdc\xf7\x08\
-\xd2\xa9\xdc\x3b\xf8\x03\xf3\xc2\xf1\x13\x82\xca\x1c\xee\x9d\x50\
-\x0b\x39\x94\xb8\x0d\xc2\xc8\x16\xa3\x17\x87\xc3\x2f\x22\xf7\x0e\
-\xff\xda\x6d\x8a\xdd\x61\x99\xd5\x1b\xb6\xd8\x6b\xbb\x5e\x32\xbe\
-\x2f\x89\xff\x01\x66\xb9\x5f\xfc\x11\x80\x3d\xcf\x00\x00\x00\x00\
-\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x01\x4f\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x30\x00\x00\x00\x30\x08\x04\x00\x00\x00\xfd\x0b\x31\x0c\
-\x00\x00\x01\x16\x49\x44\x41\x54\x78\x01\xed\x96\x4b\x4a\x03\x41\
-\x14\x45\xcf\x20\x66\x1a\x14\x5d\x81\x26\xad\x7b\x08\x82\x38\xd0\
-\x6d\x88\xe0\x46\x14\x07\xe2\x36\x32\x51\x83\x9a\x55\x28\x22\xb8\
-\x03\x23\x22\x0e\x84\x56\xb4\x03\x7e\xba\x53\x4a\xf3\x28\x32\x10\
-\x2c\x0b\xee\x24\xd4\x39\xe3\xcb\x85\xa2\xea\xbd\x22\x31\x85\x24\
-\x12\x1d\x4e\xc8\x29\xa9\xbc\xe3\x09\xdd\x2f\x8e\x18\xb0\x4c\x20\
-\x19\xcf\xb8\x08\x5f\x58\x21\x88\x33\x5c\xa4\x37\x34\x09\xe0\x15\
-\x17\xed\x21\x01\x38\xf3\x3f\xf4\x2c\x33\x66\x5d\x53\xd0\x62\x68\
-\xa9\x07\xe6\x14\x05\xb0\x4a\x65\xb9\xbe\xa6\x00\xf6\x7d\x72\x5b\
-\x53\x30\xc3\x95\x25\x0b\x96\x14\x05\xd0\xa1\xb0\xec\x25\x0d\x45\
-\x01\xec\xf8\xf4\x9e\xa6\x00\xff\x4c\x2b\xba\x9a\x82\x79\x1e\x2d\
-\x3f\xa4\xa5\x28\x80\x0d\x3f\x10\x7b\x9a\x82\x4d\x6d\xc1\x82\x3f\
-\xa2\x5b\xcd\x11\x9d\x5b\xba\xa4\xab\xbd\xa6\xbb\x9a\x87\x36\xb2\
-\xec\x05\x0d\xe5\xa8\x78\x63\x51\x3b\xec\xb6\xb4\xe3\xfa\x58\xb3\
-\x70\xee\x2c\x75\xcf\xac\x72\x65\x56\xac\xf1\x27\x05\x2e\xda\x03\
-\x02\x18\xe0\x22\xbd\xa6\x49\x00\x19\x39\x2e\xc2\x9c\x8c\x40\xda\
-\x1c\xf1\xc4\x7b\xed\x47\xed\x67\xed\xd7\x8f\x65\xed\xc4\x87\xd2\
-\x6e\xfe\x29\x6d\x12\x89\xc4\x54\xf3\x0d\x0a\x7f\x93\xd6\xf9\xe7\
-\x0c\x36\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x04\xb5\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x1c\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x3f\xc5\x7e\x9f\
-\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x04\
-\x6f\x49\x44\x41\x54\x48\x0d\xbd\x96\x6b\x68\x93\x57\x18\xc7\x9b\
-\x34\xa9\xa8\xd4\x2b\xce\xb6\x54\xa7\x78\x2b\x65\xe8\xa4\x2d\xf3\
-\xcb\x86\xf5\x0e\x32\xfd\xe0\x0c\x82\x8a\x0a\x92\xde\x28\xa5\xc3\
-\xa2\x43\x1d\x65\x4a\xfd\xd2\x0f\x42\x95\x5e\xac\x28\x38\x05\x2b\
-\x38\x10\x65\xb0\xba\x8a\xe0\xb5\x69\x55\xbc\x0b\x32\x6b\xd5\xd8\
-\x74\x3a\x87\xb4\xc9\xd2\xa4\xc9\x7e\x4f\x78\x4f\x7c\xdf\xf2\xe6\
-\x4d\xf4\x83\x07\x4e\x9e\xfb\xf3\x3f\xcf\xf3\x9e\x73\x72\xd2\xd2\
-\x3e\xf3\x48\x4f\x05\x2f\x1a\x8d\xda\x7c\x3e\xdf\xe2\xae\xae\xae\
-\x9e\x54\xfc\xad\x7c\x52\x02\xec\xeb\xeb\xab\x03\xb4\xb5\xa8\xa8\
-\x28\x00\xe8\x55\xab\x84\xc9\x6c\xf6\x64\x0e\xa5\xa5\xa5\x5b\x01\
-\xfb\x09\xbf\x50\x24\x12\xf1\x24\xf3\x4f\x66\xb7\x04\x04\x6c\x31\
-\x20\x2d\x92\xc4\x6e\xb7\x97\xb6\xb4\xb4\x5c\x4a\x96\x30\x99\xdd\
-\x96\xc8\xa1\xa2\xa2\x62\x6e\x38\x1c\xbe\x41\x75\x13\x6d\x36\xdb\
-\x79\xfc\xa4\xba\xa5\xcc\x59\xe8\xb2\xa0\x41\xf4\xef\xa0\xb7\x99\
-\x57\x32\x32\x32\x4e\x36\x34\x34\xbc\x84\xb7\x1c\xa6\x80\xd5\xd5\
-\xd5\x93\x06\x07\x07\x6f\x12\x39\xdb\x32\x5a\x67\x04\x3c\x82\x78\
-\x16\x5a\xd3\xd4\xd4\xd4\xa3\x33\x19\x58\xd3\x96\xfa\xfd\xfe\x56\
-\xbc\xe2\x60\x5a\xb2\x56\xda\xba\x8a\x99\xdb\xdc\xdc\x6c\xcf\xc9\
-\xc9\x71\xc2\xcf\xc4\xb6\x0e\xdf\x53\xcc\x20\x95\xff\xc0\x27\x78\
-\x54\x52\x52\x52\x6e\x40\xd1\x09\x0e\x1d\x1f\x67\x33\x33\x33\x37\
-\x0f\x0c\x0c\xb8\x09\xfe\x11\x65\x2e\x89\x64\x61\x4b\xa1\xb7\xb3\
-\xb3\xb3\x2f\x03\x12\x45\x0e\x33\x7b\xb4\x79\xb6\xaa\xaa\x6a\x6a\
-\x20\x10\xa8\x43\xde\x86\xdf\x61\xb7\xdb\x3d\x8f\x6f\x5e\x85\x6c\
-\x18\xa6\x2d\x55\x1e\x04\x49\x15\x1b\x01\xde\x89\x2e\x4f\xd3\xdf\
-\x24\xd1\x22\xe5\x33\x92\xb2\xd1\x5c\x00\x1e\x67\x8e\x66\x61\x7b\
-\xe9\xc6\x7e\xbd\x8f\x25\xa0\x72\x24\xd8\x46\x9b\xd6\x22\xef\x62\
-\x01\xbf\xf2\x8d\x0e\x29\x9b\x19\x05\x74\x25\x8b\xbc\x80\xcd\x0e\
-\xe8\x4a\x40\xdb\xcd\xfc\x52\xd2\xd5\xd6\xd6\x9a\x7e\xf7\x91\xc1\
-\x74\xa7\x86\x19\x65\xa1\x0f\xda\xda\xda\xe2\x17\x4c\x4a\x15\x56\
-\x56\x56\x8e\xa2\xca\xc9\xfa\xa4\x1c\x99\x70\x56\x56\xd6\x7b\x16\
-\xf0\x9f\x5e\xaf\x78\xf4\x0e\xaf\xd7\x7b\x0f\x39\x8f\x2a\xb7\x53\
-\xe5\x51\xb1\xa5\xb4\xda\x60\x30\xb8\x6c\x68\x68\xe8\x95\x7e\xd2\
-\x32\x1f\x09\xfd\x54\x70\x87\x16\x7e\xa5\x80\x14\x05\x30\x0c\xd0\
-\x2f\x9a\xbc\x49\xe9\x53\x02\x54\xce\xd0\x7f\x48\x72\x54\x9b\xc7\
-\x91\xff\xa2\xf2\x05\xcc\x3f\xcd\x5a\xcd\x6e\x3f\x87\x6f\x00\xfb\
-\xb7\x74\x69\x8a\xe4\x31\x3d\x16\x62\x48\x30\x7a\x69\xcd\x76\x65\
-\xe3\x1b\x8d\x27\xe1\x1b\x12\x7e\x41\xb5\x5f\xa3\xbf\xa5\x6c\x42\
-\xeb\xeb\xeb\x07\xe9\xc0\x15\xd8\xe5\x74\x69\x21\xf4\x8f\x8f\xad\
-\x50\xf2\xc4\x47\x7a\x7a\xfa\x6c\xc0\x64\xd1\x72\x2e\xdf\xc4\x0d\
-\x46\xe6\x99\x26\x4e\x17\x1a\xab\x90\x55\xc8\x1d\xb9\x91\xe0\x8b\
-\x9c\x31\xb9\x35\x12\x8d\x7c\xaa\x7a\xaa\x19\x47\x0d\x0f\x0f\x67\
-\x0b\xcf\x51\x39\xc0\x51\xe9\x35\x0b\xd2\x3a\x90\x06\x8d\x6d\x3a\
-\x55\xe1\x0c\xc0\xb6\xa1\x5c\x6e\x16\xa4\xd3\xf9\xe1\x7b\xf1\x9b\
-\x00\xcd\x85\xbe\xa0\xca\x42\xc0\x76\xeb\x7c\x0c\x2c\x79\xc5\x57\
-\x00\xff\x15\x1a\x03\x64\x85\xb1\xff\x39\x8c\xdf\x88\x32\xd1\x20\
-\xe8\x31\x1d\x58\x82\xff\x1c\x7c\xee\xe2\x3f\x83\x2a\xeb\xa8\xda\
-\x99\x28\x06\xfd\x34\xcd\xd6\x2f\x34\x06\x58\x5c\x5c\xfc\x80\x64\
-\x03\xc8\x79\xb2\x11\x34\x87\x84\xa4\xb1\xb1\xf1\x1d\x95\xb9\x70\
-\x90\x8a\x57\x10\xfb\xb3\x99\xb3\x1c\x78\x16\xf5\x9d\xd8\x38\x46\
-\x37\x84\xc6\x00\x5d\x2e\xd7\x30\xfc\x75\xa6\x8d\xd5\x6f\x16\x43\
-\xb2\x01\xe8\x13\x7c\x76\x68\x7e\xbb\xca\xcb\xcb\x65\x97\x1a\x46\
-\x47\x47\xc7\x32\x14\xb2\x93\xef\xd3\x99\xd7\x62\x54\xdf\x30\x8d\
-\x95\xd4\x8b\x02\xba\x9b\x2a\xc7\x08\xaf\x06\x01\x72\x9b\x78\x99\
-\x7f\x2b\x9d\x50\x92\x34\x42\xce\x10\xd3\xcf\xc5\x73\x90\xb8\x59\
-\x7a\xbb\xe4\xd2\xe4\x63\x4a\x6f\xb8\xda\xd8\xad\x97\x71\x92\x16\
-\xec\x23\x99\x69\x9b\x54\x60\x32\x4a\xae\x4d\xe4\x3a\xc1\x62\xfb\
-\xa1\x33\xc9\x27\xed\xff\x50\xa1\x08\x7c\x17\x79\x2c\x49\x7b\xf7\
-\xb0\xda\xf5\xa2\xfb\x94\x51\x56\x56\x36\x1f\x90\x66\x2d\xb6\x46\
-\x81\x89\x1c\xbf\xc5\x45\xf0\x78\x3c\x2f\x0a\x0a\x0a\xde\xc2\xae\
-\x66\x65\x6b\x0a\x0b\x0b\x5f\x77\x77\x77\xcb\x9b\x25\xe5\x21\x0f\
-\x2f\xc0\x7e\x27\x60\x1c\x39\x8e\x8c\xfc\x3f\x34\x00\x4a\x56\x00\
-\x3c\xbc\x3f\x33\x08\x2a\x46\x14\xd0\x39\xc8\xb7\x78\x8f\xc6\xce\
-\x91\xf8\x98\x0d\xd9\xdd\xf8\xee\x23\xee\x30\xf6\xb1\x80\x9d\xe6\
-\x61\xe5\xee\xec\xec\x94\x8e\xc5\x87\xe1\x1b\xc6\xb5\x30\xac\x74\
-\x03\x5b\x59\xde\x36\x63\x99\x21\x12\xc8\x03\xe9\x02\xba\x6b\x0e\
-\x87\xc3\xc7\x26\x09\x3a\x9d\xce\x1c\xe4\x7c\xce\xa2\xfc\x39\xcb\
-\x27\x98\x84\x4f\x04\xd0\x03\x54\xb6\x17\x5e\xae\x3c\xc3\x48\x08\
-\x28\x5e\x3c\x15\xbf\x0c\x85\x42\x7b\x60\xb7\x30\xad\x0e\xb7\xb8\
-\xcb\x6d\xd2\xce\xb1\xda\xc1\x91\xb9\x1b\x53\x98\xfc\x58\x02\x2a\
-\x7f\xfe\x5a\x72\xb9\xed\xbf\x47\x5e\xc5\xcc\x67\xca\x5f\x8d\xbc\
-\x59\xbc\x54\xf3\x1c\x90\x76\xe8\x6f\x54\xf5\x10\xbd\xe5\xf8\x1f\
-\x26\x14\xf6\x13\xa6\x79\x97\x77\x00\x00\x00\x00\x49\x45\x4e\x44\
-\xae\x42\x60\x82\
-\x00\x00\x04\x4f\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\
-\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd7\x09\x08\x0c\x24\x01\x84\xbe\xe4\xfd\x00\x00\x00\x0f\x74\x45\
-\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x69\x64\x20\x6c\x6f\x67\
-\x6f\x86\xc6\x77\xb9\x00\x00\x03\xc1\x49\x44\x41\x54\x38\xcb\xad\
-\x95\x4b\x68\x5c\x55\x18\xc7\x7f\xe7\xcc\xcd\x4c\x26\x89\xd5\x98\
-\x92\x96\x36\x4e\xd3\x18\xd1\xb6\x98\xfa\x98\x26\xa8\xf8\xc0\x42\
-\xa5\x49\x4b\x7d\x60\x75\xa3\x28\x2a\xa5\x10\x1f\x50\x95\x6e\x14\
-\xba\x91\x2e\x04\x17\x8a\xee\x7c\xe0\x83\x2a\x42\xab\xd0\x04\x52\
-\x92\x58\x8a\x8b\xf4\x11\xfb\x48\x66\x48\x86\x56\xdb\x8a\x64\xd3\
-\x36\x36\x93\xcc\xbd\x33\x77\xce\xdf\xc5\xcc\x24\x69\x1a\x5c\x68\
-\xff\xf0\x71\xee\xe2\xf0\x3f\xbf\xef\x3b\xdf\x77\x2e\x80\xfa\xfa\
-\x7b\x74\x23\x56\xe6\xab\xaf\xbf\x47\x37\x42\x65\xf3\x59\x19\x40\
-\x92\x18\x4d\x9f\x7e\x45\xc2\x97\x54\x90\x08\x24\x85\xc2\x15\x91\
-\x9c\x04\xc6\x60\x9d\xa3\x0a\xc9\x93\x51\x54\x52\x14\x88\x4b\x8a\
-\x6d\xb8\xaf\xe3\x63\x63\x4c\xc5\x0f\x00\xaf\xaf\xbf\x07\x4a\xee\
-\x01\x98\x40\x92\x2f\x91\x07\x15\x40\x61\xf0\xe7\x87\x5b\x9c\xff\
-\xfb\xb3\xb8\x20\x81\xad\xbd\x60\xe2\x77\xfe\xec\x2d\xdf\x31\x08\
-\x08\xc9\x48\x32\xe5\xcc\xd9\xb4\xb1\xf3\x7a\xe2\x33\xa3\x27\xb7\
-\x83\xc9\x39\xa7\x1c\x28\x90\x94\x0f\xce\xef\xd9\x12\x8f\x4e\xbc\
-\xd7\xbc\xfe\x25\x30\x11\x9c\x73\x9c\x3f\xf3\x3d\x33\xe1\xea\x8f\
-\xbc\xe5\x3b\x7e\x41\x8a\x3b\x29\xde\x91\x7c\xe0\x8b\x85\xc4\xb6\
-\x42\x0c\x26\x00\x05\x40\x20\xf0\x81\x5c\x71\x26\xf5\x5c\xcb\x3d\
-\x2f\xf0\x6b\xda\x27\x12\x0e\x11\x71\xc3\xac\x5a\xfb\x18\xca\xa5\
-\xb7\xc9\x29\x28\x65\x46\xa1\x42\x3c\x5f\xde\xa6\x8d\x9d\x48\x42\
-\x28\x3c\xf7\xf2\xab\x7d\x2e\xe7\xe3\xfc\x00\xe5\x03\x5c\xbe\xc0\
-\xc5\xe2\x1e\x7a\x5f\xdb\x45\xd3\x2d\xb5\xb4\x34\x66\x91\x35\x50\
-\x9c\x4e\x08\x42\x20\x94\x08\x81\x6b\xca\xb0\xb0\xc6\xa1\xc2\x22\
-\x0f\x25\x12\x98\x20\xc0\x06\x79\x4c\x21\xcf\x13\x4b\x37\x53\x18\
-\x8f\xf0\xc6\x27\x2b\x38\xf8\xc1\x34\x84\x79\x30\xf6\x0f\x4a\xc6\
-\x45\x49\x6e\xb1\x1a\xcf\x12\x1b\x21\x24\x70\x8e\x8b\x99\x0c\xe4\
-\x72\xa4\xee\x78\x90\xab\x26\x46\xc3\xd2\x95\x5c\xbe\xf4\x17\x83\
-\xa3\xb7\xd1\x14\x7c\x06\xd1\xc4\x3e\x24\x01\x32\xa6\x64\xbc\x90\
-\xd8\xce\x11\x97\x3a\xfc\xea\xe4\x64\xf9\x0e\x0c\x87\xe2\x09\x1a\
-\x9a\x56\x11\x4c\x4f\x51\xbf\x6c\x25\xdf\x1e\x48\x4d\x4f\xfb\xf5\
-\xef\x47\x56\xec\x3e\x50\xe2\x50\xd9\xff\xfa\x1a\xdb\xca\x49\x0e\
-\x45\x8c\xb1\xc8\x18\x96\x2c\x6d\x60\x6c\xfd\xe3\x9c\xae\x6f\x26\
-\xea\x19\xac\x42\x22\x11\xc3\xd9\xcb\xcd\xb1\x6f\x32\x6f\xe6\x05\
-\x11\x49\x16\x64\xe4\xb0\xff\x4a\x0c\x78\x78\x11\x46\xb2\x59\x4e\
-\x4d\x4d\x71\x30\xb6\x9c\x65\x89\x26\x94\x9f\x21\x56\x65\x71\xc1\
-\x0c\xb7\x36\x36\x7a\x63\x99\x8b\xef\x20\x3c\xc0\x13\x78\x47\x8f\
-\x9f\x48\x2c\x46\x3c\xdb\xc7\xbf\x9d\x3a\xf1\x24\xe0\x3b\xe7\x66\
-\x06\xcf\x5c\x59\x7d\xf0\xf0\xf8\xe7\xf1\x25\xf5\x91\xca\x9c\x1a\
-\x03\x9e\x35\xf8\x53\x57\xc2\xae\x47\x5a\xbb\xdb\x5b\xeb\x2e\x08\
-\xd5\xec\xec\xde\xf5\xe3\xfe\x1f\xf6\x71\x7b\x4b\xcb\xe2\x7d\x2c\
-\xb9\x98\x93\x62\x82\xea\x73\x13\xfe\xd3\xd1\x2a\x1b\xc9\x4f\x4f\
-\x12\x4c\x5d\x99\x8b\xec\x24\x9e\x67\xbd\xb3\x13\xfe\x56\x49\x31\
-\xa0\x0a\xe0\xa9\xed\xcf\xf3\xf5\x77\x5f\x2d\x4e\x7c\xe2\xe4\xb1\
-\x17\x4b\x23\xed\x7c\xa4\x40\xa8\xd4\xa3\xc2\x49\x32\x42\x16\xc9\
-\x93\xa8\x12\x8a\x22\x55\x03\xd5\x3b\x5f\x7f\xfb\xcb\xa1\x23\x87\
-\xe9\x78\xf8\x51\x9c\x73\xeb\x46\x86\x8f\x8f\x01\xc5\xf9\x93\x17\
-\x2b\x6f\x8e\x03\x35\x88\x1a\x50\xad\x50\x9d\xa4\x1a\xa0\x12\x71\
-\x20\x2e\xa8\xa6\x14\xa4\xd3\x69\x86\x8e\x1c\xc6\x5a\x3b\xda\xba\
-\x66\xed\xbd\x15\xea\xff\xf5\x5c\xb6\x25\xdb\x25\x49\xe3\xe3\x63\
-\xca\x66\xb3\x6a\x4b\xb6\xab\x2d\xd9\xbe\xc6\xf6\xf5\xf7\x60\x8c\
-\xe1\xd0\x40\xef\x7f\x5a\x2b\xaa\xab\xbb\x89\x4c\x66\x8c\xde\x9f\
-\xf6\x03\xa4\x0c\x50\x0f\xdc\x5c\x8e\x5a\xe6\x52\x8c\x02\x16\x70\
-\xb3\x13\x33\xa7\x22\x10\x00\xf9\xb6\x64\x7b\xff\xa9\x63\x43\x00\
-\x0c\x0c\x0c\xf0\xd6\xbb\xbb\x33\xc6\x98\x6d\x1e\x70\x15\xc8\x01\
-\x97\x00\xaf\x7c\xd3\xd1\xf2\xb7\x2d\xff\x72\xae\xfd\xed\x94\x0e\
-\x2b\x56\x5e\xb6\xf5\x1b\x3a\x78\x66\x6b\x17\xdd\xdd\xdd\x7f\xdf\
-\x7f\xf7\xba\xf4\xf0\x48\x6a\xaf\x57\xde\x50\xa4\xf4\x54\x32\x8f\
-\xce\x56\xee\xa0\xd2\x3d\x0b\x8c\x2b\xd9\x70\xfa\xf8\x51\x0b\x1c\
-\x48\x26\x93\x5b\x3a\x3b\x3b\xef\x1a\x1e\x49\x35\x18\x6e\x90\xda\
-\x92\xed\x5d\xc0\xa7\x65\xc0\xbd\xff\x00\x7c\x02\xcd\x92\x88\x3c\
-\x0a\x8c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x02\xa3\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\
-\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xe2\x03\x02\x04\x34\x31\x97\x0c\xf9\x63\x00\x00\x00\x19\x74\x45\
-\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\
-\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\
-\x00\x02\x0b\x49\x44\x41\x54\x68\xde\xed\x98\xcd\x4b\x94\x51\x14\
-\xc6\x7f\x16\x96\x7d\x2c\xa2\x55\x1b\x3f\x90\xc0\x45\x60\x21\x6e\
-\x5b\x04\x15\x45\x14\x06\x23\xae\x5a\xbb\x90\x72\x21\x6d\x4a\xa5\
-\x76\x41\x7f\x41\xae\xda\x88\x91\xd2\x22\x17\x66\x10\xa2\x92\x50\
-\x18\x45\x05\x81\x04\xd9\x2a\x22\xa5\x60\x48\xc4\x84\x69\x73\x16\
-\x0f\x2f\x33\x13\xfa\x5e\x21\xc6\xe7\x07\x97\xfb\xce\x73\xce\x7d\
-\xee\xdc\x97\x73\xef\x65\x06\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\
-\x63\x8c\x49\x4e\x0f\x50\x8a\x76\x26\xb5\xf9\x9e\xff\x70\xc1\xed\
-\xf2\xfc\x61\x37\x2d\xf8\x1b\xb0\xb2\x9b\x16\xfc\x7e\x27\xcc\xb7\
-\xb2\xe0\x59\xd9\x5b\xa7\x32\xb1\xe3\xc0\x9f\x88\x7d\x02\xf6\x49\
-\xac\x1e\xb8\x01\xbc\x04\x7e\x46\x9b\x03\x7a\xcb\xcc\x7f\x04\x68\
-\xaa\x50\xce\x5b\xf1\x49\xc2\x7d\x59\x70\x4f\x26\xf6\x48\x62\x67\
-\x45\xef\x00\xde\x4a\x2c\xdb\x9e\x03\x7b\x25\xff\xb4\xc4\xae\xe5\
-\xf0\x49\x42\xb7\x4c\x30\x2c\x7a\xa7\xe8\xe3\xa2\x9f\x00\xd6\x24\
-\x36\x0d\xdc\x01\x1e\x02\x9b\xa2\xdf\x94\x31\x7d\xa2\x9f\xcc\xe1\
-\x93\x84\x66\x31\x1f\x0d\xad\x0e\x78\x11\xda\x9a\x94\xe3\x81\x28\
-\xc9\x12\xb0\x01\x5c\xce\x78\x15\xc4\xeb\xb5\xe8\x0f\x42\xdb\x04\
-\xf6\xe7\xf0\x49\x42\x1d\xf0\x3d\xcc\x17\x43\xbb\x20\x13\xde\x92\
-\xdc\xeb\xa2\xdf\xae\xe0\xb5\x1a\xf1\xdf\xa2\x2f\x84\xf6\x31\xa7\
-\x4f\x32\x26\xc3\xbc\x18\x7b\xe6\x5d\x7c\xfe\x0c\x34\x48\xde\x94\
-\x7c\xd1\xd6\x32\x3e\xf5\x52\xa6\x5f\xe5\x00\x2d\x86\x36\x96\xc3\
-\x27\xe9\xb5\xf4\x2a\xfa\xc3\xc0\x80\xec\xb3\x7e\x60\x5d\xf2\x8e\
-\xc9\x73\xb1\x8c\xcf\x95\x28\x57\x80\x67\xd1\xb7\x84\xaf\x5e\x49\
-\xdb\xf1\x49\xca\x79\x79\xe3\x1b\xd1\x3f\x2d\x93\x37\x56\xa5\x14\
-\x3b\x81\x1f\x11\x5b\x05\x1a\x43\xef\x92\x31\x97\x72\xf8\x24\xe5\
-\x68\xe6\x3a\x58\xaf\x50\x6a\x85\x4c\xde\x13\x60\x08\x78\x2c\xf7\
-\x75\x09\xb8\x28\x63\x86\x45\x6f\xca\xe1\x93\x9c\x25\x99\xe8\x6e\
-\x95\xbc\x91\x2a\xf7\xe6\x97\x38\xf0\x94\x89\x88\xfd\x8a\xc3\x68\
-\xbb\x3e\x49\x69\x00\x96\x63\xb2\x65\xe0\xe0\x3f\x4e\xf5\x02\x30\
-\x13\x25\x57\x04\xde\x00\x83\xc0\xa1\x2a\x2f\x72\x3e\xa7\x4f\x52\
-\x06\xe5\xed\x5e\xad\xf5\xdf\xa9\xcd\x72\x05\x4c\x67\xca\xae\x26\
-\x99\x90\xd3\xb9\xad\xd6\x17\x7b\x4e\x4a\xf9\x9e\xff\x94\x31\xc6\
-\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x98\x54\xfc\x05\x94\x34\
-\xe4\xeb\x87\xd7\x3b\x14\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
-\x60\x82\
-\x00\x00\xe7\x64\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x01\x90\x00\x00\x01\x90\x08\x06\x00\x00\x00\x80\xbf\x36\xcc\
-\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x40\
-\x00\x49\x44\x41\x54\x78\x01\xec\xbd\xdb\xb3\x3d\xdb\x55\xdf\xd7\
-\xe7\xe8\x48\x02\x49\x08\x02\xba\xa0\x3b\x17\x1b\x8c\x09\xe1\x26\
-\xc0\x14\x4e\x61\x3b\x05\x0e\x2e\xc7\x24\x0f\x50\x8e\x9d\x9b\x53\
-\xae\x4a\x52\x79\xf3\x1f\x92\x97\x3c\xc4\x49\x25\x05\x0f\x09\xa9\
-\x4a\xfc\x90\x72\xc5\x71\x2a\xc4\x0e\xbe\x94\x63\x73\xb7\x01\x43\
-\xb0\x65\x21\x71\x8b\x84\x14\x30\xba\x71\x74\x39\x27\xe3\x3b\x7a\
-\x7c\xe6\x1a\x3d\x7a\xf6\xea\xee\xbd\xd7\x5e\x6b\xfd\xce\xe9\x59\
-\xbf\x9e\xdf\x31\xc7\x7d\x8c\x39\xbb\xd7\x5e\x7b\xfd\xf6\xde\xcf\
-\x0d\x65\xfc\xd8\x5f\x7f\xf9\x1b\x5f\x7a\x71\xf8\xcb\xc6\xfe\xfe\
-\xe7\x9f\x1b\xde\xfb\xd2\xcb\xc3\x9b\x9e\x7b\x6e\x54\x7a\xd9\x40\
-\xa4\x50\x03\x3a\xc4\x23\xf3\xcc\xbc\x66\xff\xb2\x29\x28\x96\x50\
-\x03\x9a\xf8\x23\xf7\x34\x57\xfd\x9a\xd0\xee\xfc\x56\xe2\xaf\xe5\
-\x7f\xca\xac\x4f\xad\xd9\xd7\x7a\x8e\xfa\xc7\xb3\x70\xec\xff\xc2\
-\x79\x2a\xe7\xf5\x38\xff\xd6\x27\x6e\x32\x23\x8f\xfb\x7f\xd2\x8e\
-\xfe\x21\x4a\xdc\xde\xf3\xc7\xfa\xf9\x49\x6b\xe4\x87\xed\x1e\xfc\
-\x3f\x86\xd7\x0e\xff\xed\x5f\xf8\x73\xcf\xfd\x52\x32\xf1\x1e\xfb\
-\xfa\x7f\xfa\xa5\x97\x5f\xf7\xb9\x5f\x1e\xfe\x0b\x73\xf2\x9f\x19\
-\xe3\x79\x31\x77\x3f\xc0\xdc\xd3\xc3\xa7\x1a\xaf\x16\x34\xf3\x5c\
-\x4f\x08\x87\x47\xd8\x1b\x3b\xf5\x6b\x3e\xd5\xe5\x6a\x7e\xd5\x60\
-\x65\x5d\xe3\xad\xfa\xdf\x59\xcf\xec\x8e\x5a\xe9\x57\xcd\xa7\xa6\
-\xbf\x9a\x5f\x35\x58\x59\xd7\x78\xab\xfe\x8f\xfa\xa7\x4f\x88\x95\
-\xfd\x3c\xf6\xdf\x0e\x20\x3d\xd2\x59\x84\x16\x76\x46\x3d\x8f\x55\
-\x65\xf5\x7c\x56\x83\x95\x75\x8d\xb7\xea\xff\xfa\xe7\xff\x25\x2b\
-\xe1\xbf\x7a\xed\x37\x0c\x7f\xe5\x87\xbf\xf1\xb9\xcf\xaa\x1c\xa5\
-\x30\xf8\x8b\xc7\xaf\x0c\x7f\xf3\xe5\x97\x86\x3f\xd5\x0e\x99\x04\
-\x8f\x1d\xb5\xc0\xea\x6f\x65\x03\x5b\x2e\x9e\xa5\x19\x17\xfd\x59\
-\xc3\x4d\x85\x90\x1e\xaa\xe8\xd7\xf0\x4d\x79\xc1\xff\x4c\x7f\x2f\
-\x83\x64\xf0\x5f\xed\x1f\x99\xdf\x51\xbf\x1d\x09\xeb\xa1\xfa\xa0\
-\x31\x6b\xe7\x8c\x31\xea\xb5\xb9\xee\xcf\x9a\x7e\x33\xdc\x48\x54\
-\xff\xd5\x6c\x2d\x5e\xb5\x2f\xfa\xc7\xfe\x1f\xfb\x7f\x8b\xf3\x6f\
-\xc7\xf2\x6f\xbf\xf6\x8f\x0e\x3f\xa0\x17\x11\x7f\xa7\xe1\xef\x3c\
-\xf4\xe2\xa1\xa1\x43\x7a\xa9\x81\x2f\xa1\x5d\x2a\x16\x74\x5a\x4b\
-\x74\x3a\x31\x91\x09\x33\x8d\x6a\xe6\x39\x8d\x5e\xc4\x71\xbd\x33\
-\xfe\x5b\xad\x5b\xf5\x09\xbc\x15\x89\x1d\xfe\x73\x8e\x39\xf7\x25\
-\x77\x59\x27\xd3\xe8\x67\x9e\xd3\x16\x07\x9c\xd4\x86\x41\xc5\x92\
-\x9f\x8b\xe1\x55\xdd\x87\xac\xf1\x25\xb4\x8b\xdc\x84\x4e\x8b\x8d\
-\x4e\xc7\x3f\xb2\x25\xfd\x99\x1c\xbf\xf2\x89\x5f\xb0\xe3\x7f\xa2\
-\x83\x1e\xd8\xd3\xdf\xcb\xc3\x97\xd0\x2e\xcf\x37\x30\xe7\xbe\xe4\
-\x36\xeb\x64\x1a\xfd\xcc\x73\x3a\xc5\x98\xd4\x86\x41\x45\xe5\xa5\
-\x21\xcc\xb4\x33\x2f\x30\x65\x9f\x46\xe7\x1c\x73\xee\x4b\x91\xb2\
-\x4e\xa6\xd1\xcf\x3c\xa7\x53\x8c\x4d\xf5\x94\xfc\xdc\x2f\x3c\x82\
-\x3c\x06\xf1\x25\xb4\x2b\xe7\x98\x73\x5f\x0a\x91\x75\x32\x8d\x7e\
-\xe6\x39\x9d\x62\x3c\x65\xfd\x16\xe6\x4f\xe9\x35\x43\x79\x3c\xf7\
-\x63\x7f\xed\xe5\x6f\xfc\xc2\x4b\xc3\x3f\x31\xfa\xf9\xfa\x15\x0d\
-\x89\x82\x4a\x12\x1d\xf1\xa0\x85\x5b\x86\x99\xb7\x2f\xfa\xa5\x5f\
-\xbf\xc0\xda\xe2\xe3\x9c\x4e\xcd\xaf\x06\xa8\xf1\xaa\xfe\x5a\x3d\
-\x7b\xf5\x6b\xae\x47\xfd\xa7\x3d\x57\x6f\xea\x7e\xd4\x7e\xed\x5d\
-\xd7\xfd\xa9\x01\x6a\xbc\xaa\x7f\xec\xff\xf8\x90\x5b\xba\x9f\xf7\
-\xf6\xab\xee\xdf\x71\xfe\x4f\x67\x5e\xbd\xa9\xe7\xb1\xf6\x6b\xef\
-\xba\xee\x4f\x0d\x50\xe3\x55\xfd\x9d\xe7\xff\xa5\xd7\x3c\x3f\xfc\
-\x6b\x2f\xd8\x87\xe4\x7f\xd9\x0c\xfd\x9d\xc8\x9a\x43\x0e\x16\xb8\
-\xa6\xbf\x2a\x4f\x4d\xf4\x66\xd5\x13\x56\x3a\x58\x0b\x5c\xf3\xef\
-\xe6\xea\x5a\x8c\x35\xfd\x35\x39\x75\x83\x6b\xfa\xab\x72\xcb\x8b\
-\x4d\xf5\x14\x8f\xfa\x4b\x43\xd8\xb9\x11\x8f\xfd\x9f\x3e\xe0\xd7\
-\xce\x97\x77\xed\x38\xff\xed\x10\xad\xf5\x6b\x4d\xce\x7d\x0f\xae\
-\xe9\xaf\xca\x2d\xb3\x67\xf8\xfe\x7f\x5e\xaf\x1d\x2f\x58\x0d\xdf\
-\xaf\xe7\x96\x86\xdf\xa0\x81\x5a\xd7\x06\x88\x37\x19\x56\xbd\x74\
-\xbc\x0b\x06\xd0\x8e\x52\xdc\x29\xdf\x1d\x5f\x31\xd2\xa0\x0e\xd0\
-\xdf\xc6\xa5\x1d\x72\xff\x26\x6c\x07\xc0\x6c\x89\x29\x37\xd0\x4d\
-\x1e\xba\xad\x9e\x14\xcb\xc9\x9d\xf5\xad\xf5\x67\x77\xfc\x92\x0f\
-\x75\x83\x47\xfd\xda\x54\xbb\xa2\x21\xde\xdf\xd8\x53\xb5\x4e\x6c\
-\x7a\xae\x35\xb4\x50\x43\xfb\x85\xcd\xc8\x29\xf3\xb1\xff\xed\x9e\
-\xa7\x5f\xed\x9e\x17\x63\x67\x7f\x76\xf7\xbf\x6c\x47\x6c\x33\xdb\
-\x1d\x1b\x6c\x4a\x21\x60\x2f\xdb\xfe\x2a\x45\xe5\x18\x7e\xa0\x9b\
-\xfc\xd8\xff\xb3\xe7\xdf\xfa\xf4\xfd\x2f\x58\xf7\xde\xcb\x3e\xd0\
-\x48\x50\xfc\xc5\x87\x27\x46\xe7\x10\x47\xa0\x3b\x5c\x36\x98\x3d\
-\x60\x4d\x35\xc7\x87\x06\xdd\x5d\xf2\xad\xfb\x5e\x4b\xa1\x06\x34\
-\x2a\xd8\x81\xe8\xb8\x72\xe8\xcf\x78\x18\xa3\xb4\x07\xb1\x05\xab\
-\xf3\xe2\xcb\xf3\xe2\xa6\x0b\xd9\x24\xd7\xf0\xd3\xe3\x49\xfd\xa8\
-\xff\xb4\xe7\xea\x87\xda\x45\x4f\x7c\xdd\xeb\x9f\x04\x31\xd8\x26\
-\x50\xec\xdc\x6b\xf4\x36\x23\x8e\x40\x77\xb8\x6c\x7d\xec\xbf\xf5\
-\xe6\x38\xff\x93\x33\x97\xcf\x1f\x34\xe8\xc7\x29\x9d\x2d\xce\xba\
-\xd0\x65\x36\xc1\xf3\x75\xe8\x4e\xec\x5d\x73\x9c\x70\x05\x66\x9b\
-\xa4\x96\xc9\xf7\x3e\x6f\xca\x6f\xca\x9c\x3d\x34\x89\x08\x33\xbd\
-\xe4\x83\xc4\x84\x4e\xcb\x4e\xca\x8d\x81\x40\xcc\xfd\x23\xe7\x90\
-\xe9\xfd\x9e\xb6\x59\xe4\x18\x99\x5e\xb2\xf6\x5a\x4d\xd8\xca\x35\
-\xc2\x79\x8d\x11\xc2\x25\x07\x2b\xfc\x9c\x43\xa6\x57\xcc\x1e\x2c\
-\xce\x31\x32\xbd\xe4\xd0\x6b\x35\x61\x2b\xd7\x08\xe7\x35\x46\x08\
-\x97\x1c\xac\xf0\x73\x0e\x99\x5e\x31\x7b\xb0\x38\xc7\xc8\xf4\x92\
-\x43\xaf\xd5\x84\xad\x5c\x23\x9c\xd7\x18\x21\x5c\x72\xb0\xc2\xcf\
-\x39\x64\x7a\xc5\xec\xc1\xe2\x1c\x23\xd3\x4b\x0e\xbd\x56\x13\xb6\
-\x72\x8d\x70\x5e\x63\x84\x70\xc9\xc1\x0a\x3f\xe7\x90\xe9\x15\xb3\
-\x07\x8b\x73\x8c\x4c\x2f\x39\xf4\x5a\x4d\xd8\xca\x35\xc2\x79\x8d\
-\x11\xc2\x25\x07\x2b\xfc\x9c\x43\xa6\x57\xcc\x1e\x2c\xd6\xcf\x08\
-\x3e\x4f\x20\x79\xf1\x62\x02\xa9\x29\x63\xd6\x11\xcd\x2b\x9d\x90\
-\x57\x3a\x30\xfb\x92\xae\x8f\xcc\xcc\xf4\x82\x58\xb9\x49\xcd\x31\
-\xf4\xcf\xe5\x2b\x37\xb8\x0d\x97\x13\xc0\x76\xab\x3f\x8f\x1d\x3e\
-\xf1\x0b\xca\xf1\x51\xff\xd8\xde\x63\xff\x8f\xf3\xcf\x7d\x0f\x72\
-\x9f\x80\x7e\x52\x58\x08\x33\x3d\x1e\xa3\x09\xcb\x55\x6c\x6a\x18\
-\xfa\xdc\xc3\x32\x09\xd6\xa8\x53\x7c\xc4\x72\x02\xd8\x1e\xf7\xbf\
-\xf5\x6e\x43\x3f\xbd\xf7\xd1\xe7\xdc\x6b\x9a\xaa\xbd\xd6\x67\x20\
-\x8b\x83\xc3\x20\xd4\x50\x50\xff\x3e\x21\xde\x8a\x42\x59\xfa\xc6\
-\xc2\x93\xfd\xec\x7b\x8c\x89\x27\xb9\x0c\x5e\x4e\x06\xc4\x12\x32\
-\x32\x3d\x0f\x30\xfa\xe0\xc9\x3e\xcb\x57\x62\x72\xc7\xe1\x19\x24\
-\x15\xc2\xcf\xfc\x15\x85\xb2\x9c\xa7\x67\x0a\x0a\x4f\x0d\xd0\x2d\
-\x25\x23\x8e\xfa\xb5\x49\xe3\xa6\x1c\xfb\x3f\x9e\x57\xce\x8b\xba\
-\x92\xe9\xf9\x01\x8b\xde\xc5\x81\x9d\x9d\x57\x89\xdb\x61\x93\xb7\
-\xf3\x63\x76\x9e\xcd\x96\x3d\x71\xcb\xa2\x50\x96\xf3\xf4\x4c\x41\
-\xe1\xa9\x01\xba\xa5\x64\xc4\x71\xfe\xad\x41\xd1\x10\x7a\x4d\xbf\
-\xd4\xf3\x4c\xcf\x1b\x1c\xb6\xda\x08\x91\xe6\x07\x1f\x23\x67\xe4\
-\x41\xaf\xe1\x6c\x3f\xab\x3f\x53\x78\x21\x07\x80\x26\xc9\x59\x02\
-\x3a\x00\x2a\x2e\x12\xac\x05\x44\xdd\xd4\xef\xf9\xc1\xf3\xc5\x2c\
-\xa3\xf0\x85\x52\x91\x13\xcb\xd1\x1d\xcc\xa7\x2c\x83\x06\x95\xa7\
-\xd3\x91\x6f\x71\x3f\x6b\xf0\x51\xff\xe9\xd0\xa9\xd3\xea\x1d\x3d\
-\xf1\xce\x97\x7e\x1e\xfb\x6f\x5d\xe1\x50\xa9\x5f\xde\xa4\x13\x6a\
-\x09\xcf\x45\xe8\x0a\x35\x24\x84\xa7\x35\x74\xc8\x39\xbb\xed\x3c\
-\x4b\xa7\x8c\x2c\x83\x06\x8f\xf3\x6f\x2d\xa6\xc7\xd6\xb7\xd2\xde\
-\xd9\xf9\xe6\xac\x1f\xcf\xbf\xf1\x90\xa9\x77\xf4\xc4\x39\xd6\xc0\
-\xdc\x4f\x9d\xdf\x17\xda\x61\x33\x0d\x68\x50\x46\x99\x9e\x6d\x80\
-\xc9\xe1\x49\xb7\x2d\xc4\xd4\x60\xf3\x84\x5a\x16\xcc\x3c\x57\xa8\
-\x13\x7e\xc0\xe2\xaf\xaa\xd7\x35\xb9\x35\x73\xb3\x9f\x34\xc4\x0c\
-\xc8\x49\xb6\xd0\x60\xe6\x89\x9e\xf9\x4b\x3c\xc9\xd7\x14\xf0\x0b\
-\xca\x24\xd3\x5a\x4f\x06\x89\x83\x47\xfd\xa7\x1e\x4f\x1a\xd5\x5f\
-\xcc\xf6\xeb\xd8\xff\xe3\xfc\xdb\xa1\xc8\xf7\x5c\x8f\xee\xf1\x74\
-\xc2\x66\xe7\x29\xf1\xfc\x04\xae\x28\xe0\x17\x94\x4d\xa6\xdd\x47\
-\x9e\xe4\x4f\x03\xbc\xc3\xfb\xff\x05\x72\x1a\x33\x3d\x3f\x53\x6c\
-\x43\xa9\x9b\x03\xf9\xd0\x78\x2e\x68\xa1\x86\x00\x9e\xd6\xb5\xbf\
-\x33\x86\x1b\x84\x61\x00\x36\xcd\xde\x74\x96\xfa\x89\x6e\x93\x93\
-\x07\x28\x27\x46\xc7\x72\x16\x5e\xe2\x73\xa3\xd5\xbd\xe4\x2f\x7c\
-\x1f\xf5\x8f\x5d\x54\x9b\x8e\xfd\x3f\x73\xde\x66\x07\x56\x0d\xb3\
-\x2b\x9d\xaf\xb4\x1c\x45\x26\x6b\xe7\x7b\xaa\xde\x4c\x9b\x1c\x3f\
-\xa0\xe9\x1f\xe7\xbf\xb5\x77\xd6\x2f\xb5\xe7\xdc\x38\xee\xff\xb1\
-\x3b\xad\x0f\xb6\x9c\x7c\x06\x22\xc1\xe4\x2b\x74\x4e\x6f\x9c\xc8\
-\xb2\x6c\x07\x99\x03\x2b\xf7\x3d\xba\xc7\x93\xae\xc7\x0b\xd4\xda\
-\xfd\xa7\x1b\x04\x3b\x10\x1d\xa1\x06\x7c\x30\xf3\x5c\x61\xe7\x74\
-\xd4\x7f\xec\xff\x71\xfe\xc7\xfb\xd2\x6f\x1d\xdd\x58\x7a\xf1\x89\
-\x1b\xac\x2c\x61\x37\x94\x4d\xef\x5e\xec\xf1\xa4\x7b\xdc\xff\x63\
-\xbf\xd4\x07\x0d\xef\xef\x33\xf6\xfc\xf3\x17\x90\xc8\x7f\x7c\xf1\
-\x50\x21\xb1\xe3\x6b\x0f\xd4\x35\x79\x3b\x7c\x04\xf0\x36\x9d\x26\
-\x6e\xd6\xad\xf1\xaa\xbf\x55\xfb\x53\xa8\x91\xb2\xba\x7c\xb3\xa8\
-\x2f\xe4\xa4\xe7\xfe\x8c\xb7\x35\x9f\xa3\xfe\xb1\x57\xde\x53\xf5\
-\xd2\xef\x80\x40\xad\xd5\x58\x78\x5a\x97\xb1\xba\x7f\xd8\xc6\x7e\
-\x55\x7f\xab\xf6\x25\x9e\x72\x39\xf6\xdf\x9a\x12\xfd\xe4\xdc\x83\
-\xc7\xf9\x8f\x23\x4b\x7f\xac\x31\x9c\x31\x3f\x4a\xe2\x73\xa6\x45\
-\xae\xc8\x9b\x2e\x0d\x76\x27\xa7\x09\xdf\x42\x8d\xbd\xfe\x56\xed\
-\x47\xb7\xa7\xd9\xe2\x5c\xfa\xfc\xbf\x40\x4f\x28\xa0\xdd\x64\x62\
-\xd4\x80\xd1\x3c\x4f\x42\xe2\x90\xb7\x06\xc0\x93\xad\x0d\x97\x07\
-\x6a\x5d\x1b\x44\x5f\x41\xd7\xd1\xb4\x30\xd6\xfc\xc9\x8c\xdc\x44\
-\xd7\xfc\xc4\xe3\xe6\x11\x19\xe5\x38\xfa\xba\xd4\x77\xd4\x5f\x0e\
-\x5c\xe9\x4f\xed\xaf\x8b\x75\x26\xd4\x4c\x1b\x6b\xfb\x85\x1e\x28\
-\x9b\x4c\x6b\x9d\xc7\x9a\x3f\xe9\x1e\xfb\x7f\xea\x58\xdd\x1f\x97\
-\xe8\x86\x8f\xa1\x5e\x6b\x49\xcf\xbd\x77\x71\x4f\xbb\x0a\x74\xd8\
-\x54\x79\xf5\xef\xfe\x64\x13\xfe\xd7\xf6\x0b\x3d\x50\x66\x99\x0e\
-\x37\x0d\xd6\xfc\xb9\x7d\x72\x50\xf3\x73\x47\x51\x8b\xeb\xda\xa4\
-\x25\x26\xb5\xbe\xe3\xfe\xb7\xde\xa8\x39\x67\xf6\x7f\xf2\x21\xba\
-\x9a\xda\xba\x19\x76\xc9\xde\xff\x8b\x9d\x37\x7c\xc1\x61\x31\x6f\
-\xae\xd8\x20\x97\x4f\x16\xe2\xd8\x80\xc7\x6e\x86\x7f\xe7\xc3\x4b\
-\x6a\xa8\xbb\x69\x5e\x88\x91\x86\x17\x6f\x6b\x30\x89\x1a\x39\x33\
-\x4f\x0c\x42\xb7\x74\x8c\x70\x5e\x30\x68\x6e\xf6\x9f\xcc\x5b\x59\
-\x13\xde\x64\x11\x69\xc0\x73\xe7\xc6\x0b\xff\x47\xfd\xd1\x8b\xe8\
-\x0f\x6d\x02\xd5\xbd\xdc\x7b\xad\xf3\x40\x06\x66\x19\x74\xf6\xe5\
-\xbc\xc4\x98\x6d\x87\x31\x9c\x17\xfb\xe3\x7e\x8d\xce\xfe\x93\xf9\
-\xb1\xff\xd1\xe4\x49\x4f\x26\x8b\xa2\xe0\xcd\x35\x5e\xf4\xf7\x38\
-\xff\xd1\x8b\xe8\x19\xad\x03\xd5\xbd\x7c\xf6\xb4\xce\x03\x19\x98\
-\x65\xd0\xd9\x97\xf3\x12\x63\xb6\x1d\xc6\x70\x5e\xec\x8f\xfc\x4e\
-\x3e\x03\xc1\x29\x48\xe0\x86\x21\x20\x86\x3b\xb3\x45\xf8\xc3\xec\
-\xe1\x88\x63\x50\x9e\x32\x5d\x3d\x7b\x02\xc6\x24\x01\xe9\xc2\x0b\
-\xd3\xb4\x6c\x22\xd4\xab\xbb\xba\x6e\x75\x47\x0e\xa4\x02\xba\x6f\
-\x5b\x6c\xf5\x57\xfd\xcf\xd6\x38\x06\xa5\x90\xe9\x6a\x40\x71\x24\
-\x20\x5d\x78\x61\x9a\x96\x4d\x84\x7a\x75\x57\xd7\x47\xfd\x63\x47\
-\x5a\x1f\xa2\x41\x6c\x89\xf7\xd6\x16\x5b\xfb\x59\xfb\x3b\x5b\xe3\
-\x18\x94\x42\xa6\xab\x01\x9b\x4b\x02\xd2\x85\x17\xa6\x69\xd9\x44\
-\xa8\x57\x77\x75\xdd\xea\x8e\x1c\x48\x05\x74\xdf\xb6\xd8\xea\xaf\
-\xfa\x9f\xad\x71\x0c\x4a\x21\xd3\xd5\x80\xe2\x48\x40\xba\xf0\xc2\
-\x34\x2d\x9b\x08\xf5\xea\xae\xae\x8f\xfa\xc7\x8e\xb4\x3e\x44\x83\
-\xd8\x12\xf5\xf1\xec\x0b\x48\x6d\x28\x8d\x07\xcb\x7e\x55\xf5\xd9\
-\x86\x29\x11\xde\x56\x4a\x19\x5a\xa8\x31\xf3\x57\x18\x33\x7d\xf9\
-\x93\x9d\xf4\x6c\x40\x93\x5f\x45\x74\x5c\xf9\x01\x53\xf5\x57\xd2\
-\x9b\x79\xf4\x7c\x8c\x8b\xdd\x51\xff\x69\xcf\xd5\xac\xd9\x7e\x46\
-\xaf\x62\x3b\x67\x07\x62\xa6\x7f\xec\x7f\x3b\xf3\xde\x4f\x9b\xfc\
-\x8c\x69\x61\x83\x73\x07\x66\x9e\x2b\xec\x9c\xf0\x03\x1e\xe7\x7f\
-\xec\x71\x3b\xaf\xa5\x9f\xea\x13\x3d\x92\xe8\x95\x78\xff\xfb\x7f\
-\xe3\x6d\xaf\xf2\xa5\xe2\xb2\x5c\x6d\x40\xe9\x5f\x6b\x5e\x6b\xb0\
-\x39\x74\x5a\x8e\x19\x89\x86\x04\xf5\x53\xa9\xa2\xfd\xa7\x53\x3b\
-\xfa\xb0\x40\x7f\x21\x31\x03\x47\x31\xdd\x38\x10\xa5\x8c\xec\x2e\
-\x09\x16\xfd\xb2\x3c\xea\xb7\x3e\xf1\x10\x57\x1b\xa1\x85\xbd\x51\
-\xdb\xab\xfd\xf0\x56\x67\xfd\x44\x43\x82\xc7\xfe\x1f\xe7\x5f\x67\
-\xe1\xb8\xff\xd3\xdd\xc5\xcd\x91\x58\x90\xb7\x78\xfe\xe9\xb7\xf1\
-\xfa\x83\x40\x49\xd4\x57\x48\xdf\x38\x93\xb3\x81\xfe\xc0\x30\x3d\
-\x1e\x18\x55\x7f\xf6\x40\x29\x4f\x90\x2a\xaf\xf6\x34\x22\xa3\x3f\
-\x70\x82\x51\xf3\x51\xee\xf0\xa4\x32\xf3\x0f\x2f\xec\xfd\xe9\xe5\
-\x27\x72\x64\xcc\xf4\xcd\x1f\x3c\x69\xe0\xfb\xa8\x3f\xf5\xcb\x48\
-\xf5\x48\xa3\xee\x1f\xbd\x43\xbe\xb7\xdf\xa3\xd7\xe9\x7c\xec\xff\
-\xa9\x1f\xf5\x3c\x1e\xe7\xff\x74\x8f\xaa\x4b\xf5\xfc\xe9\xec\x38\
-\x8f\x16\x3a\xc3\x16\x71\xa8\x66\xfa\xc6\x87\x27\x93\xda\x6f\x7c\
-\x09\x5d\x5e\xf4\xb1\x45\xfe\x6a\x38\xff\x2f\xf8\x57\x85\xd1\xd0\
-\x46\xf3\x2a\x27\x7e\x7a\xe0\xa2\x06\xd2\x44\xef\xa6\x4d\x7a\xa0\
-\x68\x80\xd5\x9f\xf3\xcd\x5f\x93\x67\x5d\x19\x12\xcb\xf0\x2d\x5f\
-\x31\x0c\xef\x7e\xc7\x30\x7c\x89\xfd\xae\xe0\x37\x7c\xd1\x30\x7c\
-\xf1\x17\x1b\xda\xa5\xf1\xe9\x3f\x18\x86\xcf\x7c\xc6\xf0\xd3\xc3\
-\xf0\x89\x4f\x0d\xc3\x6f\xfc\xd6\x30\x7c\xec\xe3\x27\xbf\x13\xff\
-\xa3\xc9\x38\x27\xff\x62\xcc\xf2\x21\x37\xe9\x69\xdc\xb0\xfe\x5e\
-\x7c\xe7\x9d\x99\xa8\x1b\x94\x6a\xde\xab\xdc\x5f\x97\x45\x7d\x4d\
-\xff\xa8\xbf\x9d\x09\x6f\xf3\xb1\xff\xa7\x7b\x32\x9d\xa5\x7c\xa6\
-\xda\xd9\x91\x3c\x04\xe0\x63\xee\xff\x5e\xff\x9d\x77\x66\x22\x2e\
-\x28\xd5\x9c\xeb\x3d\x9d\x7f\x7f\xbe\xbd\xd3\x9e\x6f\x6f\x1c\x9f\
-\x6b\x5b\x9e\x6f\x67\x4a\x77\x11\x75\x83\xd7\xa8\xff\xb9\x1f\xf9\
-\x1f\x5f\xe6\x0b\xec\x59\x7e\xe5\xfe\xa9\xfd\x9f\xe9\x3f\x96\xf1\
-\x8e\xb7\x0f\xc3\x57\xbd\x67\x18\xde\xf3\xae\xf1\x05\x63\x8f\x3f\
-\xbd\xa0\xfc\xba\xbd\x90\xfc\xda\x87\x87\xe1\xb7\x3f\x1a\x96\xa5\
-\x80\xb2\x5c\xad\x67\xaf\xfe\x9e\x7c\x1f\xa2\xbb\x9a\x4f\x79\x81\
-\xec\xbd\x00\xa2\xa2\xf8\xd0\xc2\xde\x58\x8d\xd7\x33\x7a\x42\xde\
-\x6a\x3e\xb5\xa0\x62\x50\x96\x47\xfd\xb6\x57\xf4\xa4\xb7\x6d\xc8\
-\x84\x1a\xb5\xbd\x23\xf7\x7a\xf3\x6a\x3e\x35\xc1\x62\x50\x96\xab\
-\xf5\xec\xd5\x5f\xeb\xc4\x63\x9f\x6f\x1f\xfe\xcd\x61\xf8\xd0\xaf\
-\x0f\xc3\x6f\x7d\x64\x8c\x54\xcb\x9d\x15\x54\x0a\x28\xcb\x99\x7a\
-\xcd\x7f\x8b\xfe\x73\x3f\x6a\x2f\x20\xd5\x70\xeb\x5a\x96\xbc\x6d\
-\x93\x0d\x74\x7b\x0b\x57\x1c\x2d\xe9\xbf\xf5\x2d\xc3\xf0\xfe\x6f\
-\x1e\x86\xb7\xbf\xad\x18\x3c\x70\xf9\x11\x7b\x01\xf9\xe9\x7f\x1c\
-\xef\x4a\x94\xd7\x03\xfd\xac\x99\x2d\xd5\xb3\xb7\xfe\x25\xfd\xb5\
-\xf8\x55\xbe\x65\xc3\xab\xcd\x63\xd6\x47\xfd\xa7\x33\xaf\x3e\x3e\
-\xf4\xfc\x1f\xfb\xff\x98\x53\x78\xb2\xbd\xd7\xf3\xaf\x77\x1b\x4f\
-\xf5\x7c\x3b\x55\x7f\xfa\x62\x80\x07\xfa\xec\x05\x26\x2b\x5f\x80\
-\xf6\xfb\xff\x47\x7e\xcc\xde\x81\xc4\x13\xb6\x3e\x10\x6a\x8c\xc7\
-\xde\x20\xd5\xbf\xbe\x3d\xf5\xfe\x6f\x19\x86\xf7\xd9\xbb\x8e\xa7\
-\x18\x7a\xb5\xfe\xa9\x9f\x1f\x86\x4f\xd9\xb7\xb9\x34\x6a\xfc\x5a\
-\x4f\x95\x8f\x56\xa7\xb9\xea\x9f\x24\x23\x55\xed\xab\xfe\x5e\x79\
-\xf5\xbf\xe6\xaf\x7e\x49\x51\x0f\xd0\xa5\xe3\xd7\xfc\xf6\xfa\x5f\
-\xad\xa7\x04\x58\xd5\x2f\x05\x97\xe5\xb1\xff\x2b\x5f\xf0\xd5\xfd\
-\x2b\xed\x7f\xf4\x0b\x64\xf5\xbf\xba\x9f\x25\x81\x55\xfd\xb2\xe1\
-\x65\x79\xf5\xfd\xbf\xc6\xf3\xed\xa7\xed\xf9\xf6\x89\x4f\x46\xa3\
-\x4a\xc1\x65\xf9\x24\xf5\x9f\xff\x6f\xbc\x25\x03\x1d\x00\x3d\xa4\
-\x1c\xcb\xe6\x6a\xb9\xb6\xc1\x59\xae\xb7\x73\xdf\xfb\x3d\xc3\xf0\
-\xfa\xd7\x75\x1c\x5d\x88\xa5\x17\xa6\xaf\xb4\x38\x3f\xf1\xf7\xed\
-\xdb\x5a\xf1\xb6\x6f\x29\xf7\x6e\xc8\x27\xac\x5f\xf1\xbc\x9d\xea\
-\x67\x0a\x9e\xe9\xdc\xaf\x4d\xfa\xf8\x0c\x7f\xf5\x86\x75\x1f\x39\
-\x40\xe8\x2d\xc2\x51\x7f\x6c\xd2\xd8\xa1\x4b\x9e\x7f\xdf\x0b\x9b\
-\x7c\x8f\xd3\x06\xe4\xed\x39\xf6\x7f\x7c\xd6\xa8\x0f\x1a\xea\xcd\
-\xd9\x7e\xa1\x23\x65\x1b\xb7\x3c\xff\xb7\x78\xbe\x95\xdb\xf5\x2a\
-\xf5\xfb\x67\x20\xed\x09\x36\xcb\xc0\x76\x01\x9e\x76\x04\x5a\xa8\
-\xe1\x3b\x1a\xe8\x8c\x95\x29\xec\xbf\xe1\xeb\x86\xe1\x3b\xbe\x75\
-\x18\x9e\x7f\x7e\x45\xff\x42\xe2\x97\x5e\xb2\x77\x22\x3f\x37\x0c\
-\xbf\xfc\xcf\xcc\x21\x39\xcb\x37\xb4\x50\x63\xad\xbe\x35\xf9\xe8\
-\x65\x79\x7e\xac\xfd\xb2\xe7\x6d\x92\xb5\xf8\x8f\x95\xaf\x65\xb1\
-\xe6\x7f\xcd\xfe\xb1\xf2\xb5\xf8\x8f\x95\xaf\xe5\xb7\xe6\x7f\xcd\
-\xfe\xb1\xf2\xb5\xf8\x8f\x95\xaf\xe5\xb7\xe6\x7f\xcd\xfe\xb1\xf2\
-\xb5\xf8\x8f\x95\x47\x7e\x37\x7b\xbe\xfd\xea\x4a\x83\x1e\x5b\x5f\
-\xc7\xde\xff\x1b\x6f\x0b\xcb\x83\x14\x94\x20\xd3\x4d\xf1\x81\x84\
-\xf9\xfa\xce\x6f\x1b\x86\x3f\xfa\xf5\x0f\xb4\x7f\xa0\x99\x5e\xa8\
-\xbe\xeb\xdb\xc7\xff\xd1\xf5\x93\xf6\x42\x32\xa9\x29\xd7\x07\x0d\
-\x2a\x5e\xa6\x1f\x18\xbf\x99\xe1\x0b\xbc\xb4\xff\x16\x28\x88\xce\
-\x86\xb7\x17\x49\x74\x7b\xb9\xf4\x78\xe8\x3f\x06\xf1\x0b\xca\x57\
-\xa6\x1f\xe3\xbb\x67\x7b\xd4\x3f\xf6\x57\x7d\xd0\x50\xaf\xe9\x89\
-\x33\x82\x57\xe9\xbc\x27\x99\x46\xef\xa1\x88\x2f\x50\x7e\x32\xfd\
-\x50\xbf\x4b\x76\xd4\x7a\xc5\xfa\x6f\xfe\x7c\xfb\xd9\xd4\x8c\x2b\
-\xd4\x3f\xf9\x9b\xe8\x29\x74\x97\xe4\xdb\x3f\xc2\xde\x25\x23\x74\
-\x32\x8d\xae\x5e\x99\xaf\xfd\xe2\x91\x0b\x51\xec\x3f\xf2\x87\x4f\
-\xb9\xe7\x1c\xb3\xde\x12\x4d\x6d\xd4\x53\xb1\xfa\xab\xfa\x55\xbe\
-\x14\x07\xfe\x9a\x3d\xf7\x9e\x30\xd3\x4b\xf6\x6b\xf9\x62\xb7\x84\
-\x35\x9f\x35\x7f\x55\x5f\x7e\xe1\x2d\xc5\xc8\x7c\x74\x89\x53\xed\
-\x73\xcd\x99\xc6\x47\xb5\xc7\x0f\x58\xfd\x61\xb7\x84\x7b\xfd\x55\
-\xfd\xc7\xc6\xab\xf6\xb9\xe6\x4c\x93\x7f\x8d\x4f\xdd\x60\xf5\x87\
-\xdd\x12\xee\xf5\x57\xf5\x1f\x1b\xaf\xda\xe7\x9a\x33\x4d\xfe\x35\
-\x3e\x75\x83\xd5\x1f\x76\x4b\xb8\xe6\xef\x2e\x9e\x6f\xf6\x8c\x65\
-\xac\xe5\x2b\x3d\x74\xb0\x39\x87\xe8\x0a\xb9\x26\xdf\x44\x9a\x29\
-\x44\x00\x6d\x8e\xae\xfc\x82\xe6\x2f\xea\x36\x81\x23\x11\x4a\x06\
-\x1a\x7c\xef\x52\xf8\xce\xaf\x1c\xbf\x6d\x35\x4a\x6e\x37\x7f\xa7\
-\x7d\xeb\xec\x1d\x96\x4b\x6f\x3c\x65\xfd\xb9\x17\xc4\xae\xf1\xc4\
-\x87\xe7\x3a\xde\x5c\xa3\x84\x99\x76\xe1\xfa\x94\x4d\x32\xbd\x64\
-\x49\x6c\xa1\x5f\xa6\xd8\xd0\x68\xf9\xe0\x1c\xb8\x3f\x9b\xc0\x5e\
-\x7e\xb9\xe6\x4c\x13\xbf\xc6\x13\x1f\x9e\xeb\xb8\x73\xa3\x84\x99\
-\x76\xe1\xfa\x94\x4d\x32\xbd\x64\x49\x6c\xaf\x59\x3d\x30\x45\xa7\
-\x85\x76\xc9\x07\xe8\xfe\x6c\x02\x7b\xf9\xe5\x9a\x33\x6d\x6e\x7c\
-\xd4\x78\x62\xc2\x73\x05\x77\x6e\x94\x30\xd3\x2e\x5c\x9f\xb2\x49\
-\xa6\x97\x2c\x89\xed\x35\x1f\xf5\xef\xda\x7f\x3d\x53\xf4\x6d\xf9\
-\x5b\x0f\x7f\xbe\xd9\xe7\xbe\x1a\x79\xcf\x33\x3d\x4a\xe7\xf3\x43\
-\xf6\xdf\x5f\x40\x38\x30\x8a\xe8\x4e\x14\x4d\x17\x77\x8b\x50\x97\
-\x06\x98\xe9\x90\xbb\xad\xd1\xf8\x03\xdf\x68\x3f\x2c\xf3\x27\xfe\
-\xf8\xf5\x3e\xf3\xf0\x3c\x17\x26\x7d\x3b\xeb\x4f\x5a\x2e\x6f\xb2\
-\xff\x01\xe6\xf9\xaa\xa4\xc8\xf9\xa9\xea\xc7\x7f\x45\x3d\x54\xc4\
-\x13\x66\x1a\x3d\xf5\x5a\xb4\xf7\x3c\xd1\xc8\x7d\x8b\x64\x6f\x2a\
-\x99\x46\x5e\x51\x2d\x71\x7f\x22\x6c\x40\xa3\x77\xd4\x1f\x3d\x69\
-\x0d\xb5\x26\x79\x63\xd5\x2c\x75\xcc\x06\x98\x69\xf1\xec\xf2\x7e\
-\x06\xd2\xd3\x73\x98\xf7\x3c\xd3\xd8\x64\x9f\x99\x46\x9e\xf7\x3c\
-\xd3\xc8\x2b\x7a\xca\x29\x7f\xc9\xe1\x39\x6d\x4e\xc0\x56\xf7\x51\
-\xff\xb8\xe7\xf4\x0d\xf4\xc6\x8d\xfd\x7b\x93\x3d\xdf\xf4\x4c\xb9\
-\xd6\x67\xba\x63\xd4\xfe\xac\x1c\xf4\xac\xd5\x33\xf7\x1a\xfb\xff\
-\xbc\x1f\x14\x1d\x12\x0e\x0a\x48\xa3\x40\x53\x59\x3d\x70\xaa\x49\
-\xf6\x8c\xa0\xf5\xca\xfc\x94\xff\xdb\x8a\x70\x5b\x51\xb9\xf8\x57\
-\x0b\xca\x2f\x5f\xaa\x55\x6b\x21\x75\x83\x62\x05\xcd\xc6\x48\xd7\
-\x79\xf8\x30\x9d\x5e\xfd\x2d\x46\x91\xcf\xfc\xa5\x18\x52\x9d\x0d\
-\xc5\xd1\x88\x78\xc4\x6e\xf9\x98\x08\x9f\x4d\x2f\xe9\x63\xb7\x88\
-\xaa\x4f\xbe\x85\xd4\x0d\x8a\x15\x74\x8b\x67\xba\xce\x8b\x7c\x4c\
-\xe5\xa8\x5f\xbd\x60\x40\x2f\xf4\x67\xd6\x4f\xb3\x83\x87\x8b\x09\
-\x16\x7f\xf4\x5e\x88\x1d\xe8\x76\x45\x7f\x71\xdf\xc9\x4f\xfb\x2b\
-\x5a\x18\x7b\xdd\x50\xac\xe0\xb5\x78\xa6\xeb\x3c\xec\x4d\xc7\xed\
-\x85\x1a\xe2\x6b\x2c\xc8\x67\xfe\x4c\x15\x9e\xdb\xd5\xa9\xf8\x23\
-\xb6\x10\x3b\xd0\x4d\x8b\x7e\xcb\x83\x7c\x2a\xaa\x3e\xf1\x84\x51\
-\x6b\x43\xb1\x82\xd7\xe2\x99\xae\xe8\xbb\x7e\xbe\x59\xde\xab\x75\
-\xd3\x07\xd5\xb7\xb3\xfe\xe7\x5b\xb3\x3a\x0d\x73\x67\x39\x01\x68\
-\xa1\x46\xb6\x31\xda\x97\x81\xd0\xfa\x21\x1a\xfd\x74\xf9\xbd\x0d\
-\xe5\xf4\xd6\x2f\x8f\x1a\x94\xac\x27\x9c\x50\x09\xab\x99\x1a\x34\
-\x18\xda\x99\x36\x65\x1b\xa3\x7d\x19\x98\x69\x17\xf4\xe4\xc9\x85\
-\xbb\x5c\x89\x37\x3b\xc0\xb2\xf7\x40\x6e\x3d\x9f\x90\x09\xb7\x5c\
-\xf2\x80\x8d\xe8\x95\x7c\x9a\x6e\xf8\x76\x53\x9b\x62\xe9\x04\x3c\
-\x31\xa1\x9b\xbc\x84\x5b\x8b\x47\xad\xc2\x4c\x2b\xd5\xee\xf0\x80\
-\x26\x21\xe0\x1a\xca\x09\x36\xa2\x8f\xfa\xd5\x85\xe3\xfc\x9f\xb9\
-\xff\xdf\x7a\xef\xcf\x37\xed\xdf\xda\xb9\x47\x8e\xae\x50\x63\xc3\
-\xf9\x7f\x3e\xdf\x2f\xa3\xd5\x69\xce\x37\x29\x37\x6d\x46\x69\xa2\
-\x23\xba\x17\x4f\xdf\x93\xbb\xd7\xa1\xaf\x1c\x9e\xba\x7e\x7a\xa2\
-\x1e\x40\x0b\x75\x29\x36\xe8\x79\xd8\x04\xb6\xc4\x9c\x61\x8a\x0f\
-\x18\x98\x0a\x7b\x97\x5c\xa2\xd3\x73\xcf\xde\xe6\x3d\xcf\xb4\xdb\
-\x27\x07\xb5\x3e\xc9\xe1\x65\x5a\x3c\xea\x06\xdd\x8d\x4d\x60\x4b\
-\x2c\xf9\x97\x8f\x3d\x03\x53\x61\xef\x92\x2f\x74\x7a\x7e\x8f\xfa\
-\xc7\xae\xe4\x3d\xcf\xb4\xf7\x2f\x35\x90\xbd\x66\x7f\x25\x87\x97\
-\x69\xe4\x32\x15\xcd\xde\x88\x70\x77\x8d\x11\x42\x19\x3f\x60\xb8\
-\x2f\xb3\xc3\x5d\x45\xb9\x44\xa7\xe7\x7e\xcb\xfe\xbf\xff\x8e\x9f\
-\x6f\xe4\x56\xeb\x66\x7d\x89\xfa\x27\x1f\xa2\xf7\x9a\x98\x79\xfa\
-\x3e\xad\x86\xb0\xf7\x3d\xdb\x7c\xb8\x44\xeb\x83\xa5\x4b\xfd\x7a\
-\x92\x31\xf2\x65\x67\xe5\xa6\x0f\xf7\xb7\x8e\xbd\xf5\xcb\x2f\x87\
-\x30\xd3\xf4\xc9\x6f\x1e\xeb\x93\x30\xd3\xc8\x2b\x66\x9d\x4c\x37\
-\xbd\x88\xc7\x01\x71\x9d\xf0\x2d\x5a\x03\x1c\x57\xfb\xe6\xa3\xfe\
-\xb1\x5f\x5b\xcf\xbf\xb4\xb5\x37\x0c\x68\xf6\x2b\xef\x61\xa6\x91\
-\x57\xcc\x3a\x99\x6e\x7a\x11\xef\xd8\xff\xf1\x85\xc1\x7b\x64\x3d\
-\x11\xea\xd2\x00\xc7\xd5\xbe\xb9\x9e\x7f\xfd\xb0\xe0\x57\x5e\xe8\
-\xd7\x2f\xed\xcb\x64\x9b\xb6\x72\xd3\x33\xf8\xa9\xea\xd7\xb9\xf3\
-\x9f\x44\x17\xd1\x1d\x16\xd9\x65\xd1\x75\xe8\xa6\x5f\xe4\x52\x93\
-\xab\x50\x1f\xbe\xfa\x0e\xbf\x75\x55\xeb\xfc\xaa\xf7\xda\x2f\x27\
-\xfb\xed\xca\x8d\x75\xa9\x6f\x6f\xfd\xd2\xd7\xa1\x6b\xfd\x32\xb7\
-\x13\x3a\xc2\xd0\x7e\xd7\x35\x1e\x07\xb5\x67\x1f\x26\x7d\xc0\x51\
-\x60\x59\xfa\xc6\x78\xfc\xd8\x20\xe8\x9c\xd3\xc4\x31\xb9\x2f\xe9\
-\x17\xb9\xd4\x14\x33\xd4\xbd\xd6\xa3\xfe\xb2\xe7\x6c\x4a\xf4\x4a\
-\xfd\x86\x75\xec\x7f\x9c\x9f\x74\xde\xea\xf9\x51\xbf\x16\x07\x8d\
-\x0c\x2c\xcb\x8b\x9f\xff\xaf\x7e\xdf\x62\x26\x77\x23\xd0\xb7\xea\
-\xdb\xf3\xad\xdc\xaf\x97\xb8\xff\xc7\xcf\x40\xb4\x61\xdc\xf5\xa0\
-\x5a\x90\x77\x40\xb4\x64\x60\xa6\xc5\xb3\x4b\x00\x8a\x7e\xcf\xbb\
-\xc5\xb8\xef\xf1\x5e\xfb\xcd\xbf\x5e\x17\x75\x83\x4a\xdb\x0b\x0a\
-\x14\x9d\x6b\xce\xb4\x64\x76\xb9\x7a\xa0\xd3\xc9\x85\x91\xd3\x1e\
-\xf7\xec\x65\x24\xfb\xb8\x64\x92\x1f\xee\xd0\x4b\xf2\xc9\x1e\xca\
-\x7f\xbd\xe4\x9f\xb8\x99\x46\x4f\x01\x45\x33\xa4\xa3\x21\xec\xe9\
-\x67\x9e\xd1\x5a\x7a\xfe\xa1\x1e\x4b\xc1\x38\xf0\x4d\xbc\x6a\xaf\
-\xb5\xfc\xc4\x25\x23\x6a\xce\xf4\x92\xbc\xe5\x8e\xff\x8a\x25\x5e\
-\xeb\x05\x7a\x0a\x22\x9a\x21\x7d\x0d\x61\xb6\x45\x3f\xf3\x8c\xd6\
-\xd2\xf3\x0f\xf5\x58\x0a\xc6\x81\xef\x25\x7b\x39\x90\x9f\xb8\x64\
-\x74\xd4\x3f\xb6\x2e\xf7\x62\xa9\x3f\x6d\xef\xe8\x6f\x45\xf5\x57\
-\xbc\xe8\x73\xa3\xd1\x53\x10\xd1\x0c\xe9\x69\x2c\xe8\xeb\xb7\x86\
-\xdf\xfb\x78\xaf\x9e\xc1\xd4\x77\xe1\xfa\xd5\x97\xf1\x77\x61\xd1\
-\x28\x75\x23\xd3\xb5\x3b\xc8\xc0\xaa\x0f\xdf\x50\x1f\x2e\xf1\xf7\
-\x3b\xaa\x9b\x7b\x5a\x2b\xc7\xff\xf8\x2f\xdc\x53\x46\x47\x2e\x47\
-\x07\x8e\x0e\x1c\x1d\xb8\x4c\x07\xf4\x7c\xd3\x7f\x16\xfa\x1d\xfb\
-\x7b\x49\x3e\x78\x46\x6b\x01\x0d\x66\x9e\x2b\x97\x09\x3d\xd0\xc4\
-\xfe\x93\xe8\x5a\xc3\x03\x65\xca\x57\x3f\x8b\xaf\xf8\x52\x4a\x03\
-\x5b\xe1\xbb\x9f\x81\x57\xe7\x94\xfa\x41\x1e\x1d\x38\x3a\x70\x74\
-\xe0\x15\xd9\x01\xde\x29\xd5\xe7\xb9\x9e\xd3\xfe\x6c\x17\x46\xe5\
-\xa0\x96\x55\x3f\xf3\x42\xdd\xde\x81\xd8\xdb\x9b\xfc\xae\x6d\x42\
-\xc7\xa2\x7d\x4f\xde\xac\xf8\x3e\xad\x3b\x50\x34\xe9\x44\x54\xbe\
-\x5f\x29\x7c\xb3\xfd\xa0\xde\x31\x8e\x0e\x1c\x1d\x38\x3a\x70\x74\
-\xe0\xb6\x1d\xd0\xaf\x95\xf7\xc1\xc3\x9d\xe7\xba\x31\xf5\xd7\x04\
-\x61\x4b\x67\x42\xa3\x17\xe8\x8f\x7b\xa3\xdb\x8b\x8c\x11\xfe\xcb\
-\x14\xdb\x9f\x24\x74\x0d\x79\x95\xab\xf9\xc8\x2f\x10\x2e\x25\x1a\
-\x01\xcc\x0e\x9d\x67\xe1\xdb\x57\xf3\x0a\x0f\xce\xd1\x81\xa3\x03\
-\x47\x07\x5e\x59\x1d\x78\xc3\x1b\xe2\x91\x6e\xcf\x67\xfe\xce\xbb\
-\x2a\x84\x7e\xcc\xf3\xff\xfc\xdf\x03\x29\x7d\xcc\x6f\x69\x8a\x68\
-\x5c\xea\xd5\x29\x5e\x84\x94\xf4\x31\x8e\x0e\x1c\x1d\x38\x3a\x70\
-\x74\xe0\xb6\x1d\xf0\x2f\xe6\x79\x53\x00\x3e\x20\xa5\xde\xf3\x7f\
-\xfa\xbb\xb0\xcc\x29\x4a\xf2\x4f\x2c\x61\xa6\x25\xd3\xc8\x3c\xa7\
-\x6d\x02\x8f\x77\x20\x63\x8f\x8e\xf9\xe8\xc0\xd1\x81\xa3\x03\xb7\
-\xec\xc0\xd2\xb3\x98\x67\xbd\x30\xd3\xe4\xea\xcf\x72\x5b\x08\x33\
-\x9d\xe5\xfe\x0e\x84\xef\x44\x49\x49\x34\xca\xd0\xc8\x65\xd8\xa3\
-\x7b\x3c\x7c\xc8\xe6\x18\x47\x07\x8e\x0e\x1c\x1d\x38\x3a\x70\x9b\
-\x0e\x2c\x3d\x8b\x79\x6e\x83\x0f\x79\xfe\x5f\xf4\xef\x81\x28\x01\
-\x7f\x35\x33\xfc\xcc\x67\x6e\xd3\xac\x23\xea\xd1\x81\xa3\x03\x47\
-\x07\x8e\x0e\x9c\x3a\xa0\x67\x71\x7e\x36\x2f\xbd\xe3\x38\x59\xf4\
-\xa9\xfc\x2e\x05\x1f\xd3\x5f\x65\xc2\x4b\x95\x47\x1b\x5f\x0c\x14\
-\x19\x65\xbd\xfd\x70\x27\x7a\xc9\xea\x5d\x8a\x1b\x2f\x67\x9f\xfa\
-\x74\x3f\x89\x83\x7b\x74\xe0\xe8\xc0\xd1\x81\xa3\x03\xd7\xeb\xc0\
-\xe6\x67\xf1\x03\x9e\xff\xd3\x5f\x65\x92\x5f\x20\x54\x9f\x1c\xea\
-\x05\x01\xc7\xe2\xe5\x71\x46\xfe\xe9\xe3\x1d\x48\xee\xd4\x41\x1f\
-\x1d\x38\x3a\x70\x74\xe0\x26\x1d\xf0\x67\x31\xcf\x70\xd0\x32\xc9\
-\xef\x28\x3c\xb1\x07\x3c\xff\xc7\xbf\x07\x12\x65\x65\x87\x99\x6e\
-\x55\x13\x5c\x98\xe9\xa6\x70\x22\x3e\xf1\x89\x13\x7d\x50\x47\x07\
-\x8e\x0e\x1c\x1d\x38\x3a\x70\x9b\x0e\xb4\x67\x71\x7c\x77\xa8\x7d\
-\xf7\x48\xe9\xc0\x33\x32\x3f\xf3\x33\xdd\xb2\xce\xcf\xfc\xa0\xfd\
-\x77\x61\xf1\x7a\xc0\x9b\x0d\x21\x7e\xc1\xe6\x24\x11\xd5\x1f\x7e\
-\x84\x1f\xfe\xcd\xa4\x78\x90\x47\x07\x8e\x0e\x1c\x1d\x38\x3a\x70\
-\x93\x0e\xe8\x59\xec\xcf\x6a\x9b\x40\x11\xd0\x42\x5d\x0f\x79\xfe\
-\xbf\xa0\x57\x1a\xfd\xf0\x9f\x46\x76\xd2\x67\x38\xb7\x4d\xfc\xd0\
-\x60\xcf\xfe\xa3\x1f\x1b\x06\xbd\x75\x5a\xfa\x2f\x64\xcd\xc9\x8d\
-\x09\xe5\xf8\x63\x7f\x6d\x4c\xe2\x92\xf5\xcb\x63\xde\x90\x5e\x99\
-\xf4\x9e\x57\xfb\x6a\x50\xed\x6b\x7e\x55\x5e\x63\xcc\xfc\x17\x85\
-\x73\xfb\xe7\xaa\x35\xe0\x4e\xfb\xdd\xf9\x15\x83\xb2\x9c\x9d\xcf\
-\x2a\x2f\xe9\xf9\x57\x54\xd4\x58\x65\x5a\x23\xeb\x9d\x5f\xd7\x3f\
-\xea\x3f\x1d\xe2\x4e\x03\xd7\xfa\xb7\x7b\x7f\x8a\x41\x59\xde\xdd\
-\xfe\xff\xc5\x1f\x7a\x36\x9e\x6f\x1f\xfd\x9d\x71\xf3\x74\x9c\x35\
-\xc0\xb5\xfd\x9b\x35\x7c\x34\x6f\xb3\xec\xc7\x9f\x03\x09\xa7\x79\
-\xc3\x44\xeb\x81\x06\x3a\xa1\x45\xba\xfc\xc1\x67\x6b\xa1\xd3\x09\
-\x15\xfc\x43\xbf\x2e\x27\xf7\x3d\x94\xa3\x1a\xaa\x4b\xa5\x81\xa2\
-\xc5\x00\x73\xdd\xd0\x6b\xf5\xcb\x97\x1c\x0a\xfd\x82\x16\x8a\x61\
-\xce\x41\xf7\x19\x3c\x0c\x72\x4f\x9d\x96\x1f\xe9\xc4\x80\x16\xfa\
-\x65\xfc\x86\x46\xfb\x01\x09\x14\xad\x01\x8a\xc6\x95\x50\x97\x54\
-\x40\xea\x06\xa9\x39\xa3\xc7\x37\x05\xe2\xcb\xd8\x79\xe1\x50\xe0\
-\xbc\xf0\xdb\x72\x43\x2f\x6c\x9b\x4f\x19\x28\x20\xf6\x09\xdd\xaf\
-\x44\xe2\xc5\x80\x76\xbf\xc6\x77\x75\xd0\x74\x8e\xfa\xc7\x9e\xa8\
-\x0f\xec\x3b\xa8\x16\xd2\x4a\xef\x9b\xfa\x15\x3c\xa1\x2e\x4d\xa0\
-\x13\x08\x02\xbd\xff\x46\xd3\x7f\xdf\x6b\x9c\xc5\x3e\x38\x2f\xfc\
-\xba\x9e\x68\xc9\xa4\x17\xb6\xcd\x77\xf0\xc6\x8d\x0c\x9d\xd0\x75\
-\xfd\xb0\x35\xf0\x91\x79\xee\xd3\xb8\x0d\x8d\x7e\xea\xfd\x7f\x56\
-\x9e\x6f\x4f\xb9\xff\xe3\xff\xc2\xd2\xc6\xc5\x46\x81\x79\x73\x7c\
-\xb7\x34\x49\x4f\x23\xf4\x1b\xed\xc4\xb8\x61\x22\x49\xf8\x5f\x7c\
-\x28\x04\x77\x0c\x9e\xe3\x13\xd5\xaf\x3e\xf9\x0d\xbb\xd0\xaf\xda\
-\x4f\x74\xe9\x1f\xbd\xdc\xdc\x3e\xc5\xd1\x78\x60\x3d\xbe\xe7\x66\
-\xeb\x37\x61\xf8\xe2\x1c\x34\xbf\xc9\xff\x84\x67\x0b\xcf\x3f\x30\
-\xd7\x42\x3e\x55\xff\xa8\xdf\x3b\xd2\xf6\x2b\xf7\x2c\xf7\x32\xb4\
-\xd6\xe1\xd8\xff\xb1\x47\x57\x3a\xff\xcf\xca\xf3\x6d\xeb\xfd\xfc\
-\x90\xfb\x7f\x7c\x01\xe1\x2b\x0a\xb5\x5f\x5f\x15\x18\xf8\x59\xb4\
-\x09\x74\x42\x7a\x62\x84\xbe\x51\x23\xed\x84\x89\x5c\x79\x44\xd1\
-\xbf\x69\x7f\xa8\xe9\xb7\x3f\x12\xc2\x3b\x04\xe5\xe6\x7f\x6c\xe5\
-\x89\xea\x57\x3b\x7c\xf3\x84\xaa\x3f\x7a\xbb\xd4\xbf\x97\xa2\x7f\
-\xc2\x4c\xcb\xd4\x47\xc8\xdd\x99\xd1\xbe\x0c\x74\x7a\xc5\x3f\x6e\
-\x1a\xaa\x6e\x8d\xa3\xfe\xc9\xde\xa8\x97\xb9\xb7\xf4\xdb\xfb\x24\
-\x41\xf4\x4b\xad\x73\xda\x89\x71\xaf\x45\xfa\x9e\x9b\x9e\xfb\x01\
-\x25\x58\xd9\x9f\xbc\xe7\x99\x96\xa9\x0f\x39\xd4\x70\xc7\x23\x88\
-\x8e\xe5\xaa\xff\xd1\x38\xcd\xc7\xfe\x8f\xcd\x78\xe0\xf9\xd7\xb3\
-\xe3\xee\x9f\x6f\xff\x6f\xda\xef\x4a\x5e\x60\xff\x27\xef\x40\xdc\
-\x9f\x9d\xc6\xe8\xa7\x1f\x4c\xd1\x1c\xd0\xf6\x30\xd4\xa1\x15\x53\
-\xb2\xc0\x71\x35\x9d\x65\xfb\x93\x3f\x33\xe5\xdd\xd3\xaa\xe5\x16\
-\x05\x3e\x45\xfd\xaa\xb7\xf5\xd3\xe2\x78\x3f\x0d\xe9\x1b\x88\x1e\
-\xe8\xb9\x84\xad\x78\xbd\x91\x75\x9c\x0e\xff\x6c\x98\xca\x12\x2d\
-\x74\x3a\xa1\x44\x13\xa6\x29\x64\x1f\xa2\x65\x03\xba\x0f\x9b\x1a\
-\x8a\xb0\x91\xf3\x1f\x39\xa7\xd9\xfd\xd9\x52\xe8\x7e\xcc\x06\xc4\
-\x0e\x94\x55\xd5\xcf\x3c\xd1\x75\xcc\xf4\xc3\xff\x98\x64\x94\x67\
-\x3c\xa5\xaa\x4b\x03\x9c\x2c\x42\xc1\xfd\x19\x2d\xd4\x25\x36\xe8\
-\x2a\x36\x35\x14\x61\x23\xe7\x3f\x72\x4e\xb3\xfb\xb3\x65\xf3\x67\
-\x36\xee\x4f\x7e\x3a\xf6\x55\x5f\x9e\xe0\x9d\xbc\x9e\x28\x64\x42\
-\xa7\xc3\xff\x98\xe4\x98\xab\x68\x85\x8a\x70\x0d\xdd\x4b\x66\x1a\
-\x9d\x7d\x88\x96\x18\x14\xad\x9c\x1b\x8a\x08\xde\x48\xcd\x67\xf7\
-\x67\x6c\xa1\xfb\x31\x1b\xf0\x95\x52\xff\x3f\xba\xe3\xe7\x9b\xe7\
-\xc6\x9e\xc5\xf6\xc4\xb6\x8d\x2b\x16\x42\xbb\x7c\xbf\x02\x7d\x9f\
-\xd8\xb7\x51\xdc\xdd\xff\xc9\xdf\x03\x09\x3f\xe3\x21\x51\x08\x63\
-\x88\x77\x62\x04\x2d\x5e\x67\xe4\x43\xc1\x61\xfb\x88\x7d\x80\xf3\
-\xc1\x0f\x75\x94\x6f\xcc\x52\x4e\x1f\xb1\x0f\xfa\xc9\xb3\xd6\x4e\
-\xdd\xe0\xd8\x08\x4b\xda\x19\xfd\xe4\x7b\xf5\x67\xff\xb2\x3a\x63\
-\x3e\x79\xa8\x64\x5f\x44\xcb\xbc\xe6\xd7\x1c\xca\x27\x7e\x41\x6c\
-\x32\xae\xd9\xe3\x07\x94\x53\xf7\xd7\x18\x29\x50\x76\x1c\xf4\x9a\
-\x7f\xa9\xb9\xbf\x8e\xad\xcb\x42\xe8\xb5\x25\x1a\xf5\x4b\xfb\xf7\
-\xb2\x6c\x72\x8c\xdc\x32\x7d\xd4\x7f\xec\xbf\xce\x43\x3b\x20\xd0\
-\xc2\x18\xfa\xcf\x42\xf7\xfa\x7c\x53\x6e\x79\xac\xdd\x3f\xf9\xec\
-\x53\x37\xd8\x6e\x5c\x67\x9c\xbc\x8e\xef\x40\x62\xed\xaf\x40\x46\
-\x0b\x9d\xb6\x09\x74\x42\xc6\x62\x08\xed\xf2\x84\x02\x9d\x36\x19\
-\x28\x3d\x6c\xf5\x4a\xf8\xe2\x8b\x66\x73\x27\x43\xb9\xfc\xc3\x9f\
-\x9e\x27\xe3\xf9\x1a\x5b\x48\xee\xa0\x33\x1e\x58\x7f\xf3\x67\xf6\
-\xee\x4f\x7e\xd4\x37\xa5\x10\x28\x5a\xdf\xf7\x06\x9d\xb6\x05\x48\
-\x5f\xc1\xd1\x91\x8c\xe4\x64\x1c\x2e\x33\x52\xa8\x4b\x22\x10\x35\
-\x30\x4c\x26\x80\x4c\xe8\xb4\x4d\xe0\xe8\x2c\x04\x4a\x32\x62\x80\
-\x1e\xdb\x94\x41\xe9\x63\x2b\x74\x3a\x72\xf2\x22\x65\x6f\x7c\xb7\
-\x1f\xe1\xa8\xdf\x9a\xa4\x9e\x68\xcf\xd9\x77\x90\xbe\x82\x63\x43\
-\xa5\x6c\x57\x0c\x97\x19\x2d\xd4\x25\x11\x88\x1a\x88\x4d\x46\x64\
-\x42\xa7\x6d\x02\x47\x67\x21\x50\x92\x11\x03\xf4\xd8\xa6\x0c\x4a\
-\x1f\x5b\xa1\xd3\x91\x93\x17\x29\x7b\xe3\xbb\xfd\x08\xcf\xec\xfe\
-\xeb\x59\x72\x8f\xcf\x37\xf5\xfc\xa9\xf7\x7f\xf2\x2d\x2c\xdf\xfc\
-\x38\x18\x99\x66\xc3\x27\x87\xc8\xb2\xd3\xe1\xf6\x83\x02\xad\x03\
-\xe2\x59\xc7\xc1\xd0\x09\xb1\xeb\xf7\xed\x87\x0a\xff\xcf\xbf\x63\
-\xdf\xd7\x7f\xc9\xd6\x37\x1e\xca\x41\xb9\x7c\xe2\x93\x96\x88\xf2\
-\xd3\x88\x3c\x73\xcd\x99\x46\xfe\xd0\xfa\xe5\xcb\xfd\x29\x14\x31\
-\x3d\xf0\x74\x42\xb6\x55\xbf\xe6\xef\xde\x92\x7f\x48\x61\xa6\x5b\
-\xd4\xcc\x34\xda\xe3\x07\x66\xfa\xa8\x3f\x1a\xc8\xd9\x16\xda\xb5\
-\xf5\xfc\x6f\xdd\x4f\xef\xb9\x42\xb1\x17\x41\x1b\xf4\x47\xd9\x3f\
-\x57\x82\x67\x0b\x48\x61\xa6\x9b\xb3\xcc\x34\x3a\xef\x79\xa6\x8f\
-\xfd\x8f\x06\x2e\xec\xff\x27\x3f\x65\xcf\x94\xbf\x7b\x7f\xcf\xb7\
-\xb2\xbd\xbe\xed\xf0\x26\x0b\x31\x1f\xb8\xff\xe3\x0b\x48\xdc\x10\
-\xee\x54\xf4\xd2\x20\xfa\x52\x40\xb3\xe3\x26\xa8\x2e\xf4\x81\xfa\
-\xff\xfd\x53\x95\x7b\xfd\xb5\x72\x50\x2e\x3e\xa8\xf5\x0a\xf5\x77\
-\x2b\x2d\xfd\x74\x1d\x78\x5a\xd4\xfc\x24\x13\x2f\xfa\x2f\x95\xf6\
-\x64\x10\x5d\xf4\x7d\x2f\x8c\x27\x64\x5f\x40\xa9\x57\xfd\x09\xcf\
-\x17\x65\x22\xb7\x88\xef\xbe\xc2\x37\x7e\xc1\x62\xd9\x5f\x16\x7f\
-\xae\x04\x4f\x8b\x52\x8f\xd7\x7a\xd4\x7f\xec\x7f\x9c\xbf\xb5\xf3\
-\xe2\x67\xf1\x4a\xe7\xff\x37\x7f\xeb\x8e\x9e\x6f\xfa\xe0\x3c\xea\
-\x06\xb9\x2f\x41\xef\x5d\xbd\xbf\xc4\x84\xe7\x0a\x65\xe2\xde\x8c\
-\xfe\xcb\x97\xbf\x80\x88\xc0\x31\x28\xd3\xa2\xef\xde\xe0\xf5\xe4\
-\x92\xe5\x2b\xeb\x88\xfe\xa5\x5f\x19\x86\x5f\xf8\xa7\xa2\x6e\x33\
-\x14\x5b\x39\x30\xa8\xf5\x5a\xf5\x13\x17\x5c\x8b\x5f\x37\xc0\x7b\
-\x6f\x13\x3d\x96\x1f\xe7\x35\x87\x41\x84\x82\x9f\x05\xa3\x85\x9c\
-\x0b\x50\x9a\x6b\xf1\xf1\x1d\xee\xdc\x39\x3c\xb7\x77\xce\x29\x1f\
-\xf4\xc0\xac\x13\xaa\x13\x58\x8b\xdf\x8a\x0b\x87\x1e\xdb\xa6\x45\
-\xff\xae\x60\x21\x42\xe1\xa8\x7f\xec\xc5\xb1\xff\xd7\x39\xff\xbf\
-\x78\x2f\xcf\xb7\x2b\x9e\xff\xc9\x5f\x24\xcc\xf7\x1f\x77\x3a\x3c\
-\xd6\x19\x79\x18\x81\x59\x06\x9d\x65\x7a\x60\xe8\x1d\x80\xbe\xa5\
-\xf5\xdd\xdf\x61\xaf\x5e\xe3\xfb\x1f\x54\x9f\x0c\xf5\x6d\x2b\xc5\
-\xcd\x2f\x1e\xbd\x60\xd4\x0a\x4a\x27\xd3\xd5\x86\xda\xc0\x2a\xd7\
-\x3a\xcb\x54\x3f\xdf\xd3\x76\x5d\x13\xfa\x43\x34\x2b\x65\xba\xe7\
-\xf0\x0c\xaf\xfa\x27\x96\x7f\xab\xe5\x8c\x1d\x22\x6a\x05\xc5\xcf\
-\x34\x7a\x20\xa9\x82\xf0\x33\x66\x59\xcd\x4f\xcd\x39\xea\xb7\x6e\
-\xe5\x26\x65\x3a\x37\x72\x03\x5d\xfb\x7b\xec\xff\x78\xbe\xae\x79\
-\xfe\x6f\xf9\x7c\xfb\xc5\x5f\x9e\x3e\x5f\xae\xb1\xff\xfe\xab\x4c\
-\x26\x07\x38\x1d\x54\x9d\x65\x3d\x40\x38\xd3\xf5\x80\x26\xd5\x6d\
-\xa4\x39\x92\x0f\xbd\x52\xff\xee\xbf\x1c\x86\xef\xfb\xde\x61\x78\
-\xfd\xeb\xb7\x99\x3e\x54\x4b\x1f\x6e\xfd\xf8\x4f\xa4\x6f\x5b\x65\
-\x47\x91\x4f\x2b\x30\xcb\x8c\x7e\xaa\xfa\x89\xe7\xfe\x6d\x12\x6a\
-\xd0\x6b\xa1\x8f\xca\x30\xc5\xfc\xc0\x85\x76\x34\x83\x7a\x60\xc4\
-\x87\x17\x1e\xa7\x50\xfc\x4d\x85\x47\xfd\xda\x17\xb6\x40\xbd\x59\
-\xed\x67\x6d\x60\x5d\x97\x7e\xbb\x7f\x9b\x84\x1a\xc4\x12\xfa\xa8\
-\x8c\x62\x7f\xec\xbf\x75\x89\x9e\x88\x0c\x5a\xa8\xb1\xba\x5f\xd8\
-\x86\xfe\x68\x75\x9a\xc5\x66\x0b\xc4\x5d\xf5\x17\xa6\x7a\x90\xff\
-\xee\xef\xd9\xf3\xed\x4f\x5c\xf7\xf9\x76\x8b\xfa\x9f\xfb\xab\x3f\
-\x62\x6d\xa1\x81\x74\xab\x9d\xe0\xe8\x08\x30\xeb\xa8\x09\xe0\x49\
-\x07\x1a\x7f\xd8\x81\xc5\xff\x97\xbc\x69\x18\xfe\x98\xbd\x13\xf9\
-\x9a\xf7\xa1\x70\x59\xd4\x4f\x8a\xea\x7f\x48\xb4\xdf\x46\x59\xdd\
-\xd7\x7c\x4b\x7e\x55\x7d\x56\x5f\xd5\xaf\xfe\xaa\x83\xaa\x5f\xe5\
-\xd5\xbe\xea\x3f\x56\xbe\x37\xde\x5e\xfd\x9a\x5f\xb5\xaf\xf5\x54\
-\x79\xb5\xaf\xfa\x8f\x95\xef\x8d\xb7\x57\xbf\xe6\x57\xed\x6b\x3d\
-\x55\x5e\xed\xab\xfe\x63\xe5\x7b\xe3\xed\xd5\xaf\xf9\x55\xfb\x5a\
-\x4f\x95\x57\xfb\xaa\xff\x58\xf9\xde\x78\x7b\xf5\x4b\x7e\xfe\x7c\
-\x7b\xff\x15\x9f\x6f\x25\x7e\x7b\xf5\x53\x1f\x7b\xe3\x02\xfa\xe3\
-\x0b\x48\xcf\xb9\xf1\x66\xfb\x67\x01\x79\x15\x76\x93\xaa\x50\xfc\
-\x54\x71\xcd\x17\xf5\xb7\xbd\xd5\x5e\x48\xac\xd1\xef\x78\x3b\x9c\
-\xc7\xa1\x7e\x3a\x54\x2f\x1c\xfa\x19\x14\x62\xca\x23\xb4\x70\xcb\
-\x98\xe5\x6f\x86\x4f\x51\x3f\xb9\xcc\xe2\x99\x00\x1e\x3a\x13\xac\
-\x05\xa1\x2c\xb4\x51\x96\x47\xfd\xa9\x27\xde\xa0\x95\x69\xd6\xbf\
-\x63\xff\x8f\xf3\x6f\x87\x82\x77\x38\xb3\x1b\xac\x9c\x27\xce\xcf\
-\x5b\xed\xf9\xf6\xdd\x4f\xf0\x7c\xf3\x9f\xf3\x20\x88\x62\x43\x0b\
-\xe7\xcb\x27\xb9\xff\x27\x2f\x20\x25\xfe\xee\x80\x63\xda\x0f\x9f\
-\xdf\xf9\x8e\x61\xf8\x43\x5f\x35\x0c\xef\x7b\x8f\xfd\x96\xcb\x37\
-\xec\xf3\xf3\x69\xfb\x0b\x88\xfa\xe5\x66\xff\xfc\x83\xf6\xeb\x49\
-\xce\xfd\xf8\xfe\x19\xb7\xb7\xae\x7f\x6f\x7c\x5e\xcc\x84\x1a\xf5\
-\x2d\xec\xc8\xdd\x3e\xef\x8d\xbf\xdd\xf3\x36\xcd\xbd\xf1\x8f\xfa\
-\x4f\x7b\xae\x0e\x1f\xfb\x5f\xbe\xc0\xdb\x76\xec\x9a\xd6\xde\xf3\
-\xd7\x0c\x37\x12\xef\xb2\xe7\xdb\xd7\x7e\xd5\xe3\x9e\x6f\x1f\xf8\
-\xb5\xd3\xb7\xe3\xef\xe1\xfc\xfb\x0b\x48\x3c\x7f\x66\x6d\xa8\x5f\
-\xe0\x56\x85\xda\xf0\xfa\x0a\x38\x7b\x05\xaa\x06\x25\x40\x5e\xfe\
-\x27\xff\x51\x8d\x76\x7e\xfd\x5f\xff\xe8\xec\x05\x78\x66\x90\xfd\
-\x4b\x58\xd3\xa9\x06\x55\xbf\xca\x67\xf6\x95\x51\x1d\xac\xc8\xd7\
-\xd4\x6b\xc2\xf5\x81\x51\xdd\xd7\x7c\x57\xfd\x17\x83\xaa\x5f\xc4\
-\x35\x9d\x79\x43\xab\x83\x9a\x60\x91\x97\xe5\xaa\xff\xa3\xfe\xe9\
-\x03\xb3\xb6\xb7\xee\xd7\x6a\x7f\x8b\x41\xd5\x2f\xe2\xd5\xfd\x79\
-\xcc\xfd\xaf\x58\xb3\x7a\x0a\xe3\x59\xde\xff\xff\xf4\x2f\xd5\x6e\
-\x9e\x5f\xff\xd5\x1f\x9d\x37\xe4\x1e\xea\x9f\xfe\x3d\x10\xdb\x20\
-\x92\x52\x39\xda\x2f\x0d\x70\x5c\xa5\xd9\x4e\x98\x7f\xf5\xab\x93\
-\xa6\x51\x50\xcb\x97\x6d\x82\xdd\x88\x60\xd4\x57\x50\xe9\x2a\x98\
-\xa3\xfc\x3d\x76\x28\xf1\xf0\x29\x57\xd4\x01\x52\xab\xd0\xe5\x26\
-\x80\xe7\xeb\x91\xdd\xec\x62\x79\x02\xb3\x7b\xca\xfa\x49\x3d\xd2\
-\xf3\x3c\xe0\x9d\x92\x38\x43\x1d\xf5\x1f\xfb\x9f\x0e\x0c\xe7\x1e\
-\xe4\xac\x1f\xe7\x7f\xbc\x87\x66\xcf\xa3\xb8\xb5\xe8\xd7\xec\x4e\
-\xb3\xde\x3e\xe6\xfe\x9f\xf9\x3b\xc3\x60\x1b\xc1\x33\xaa\x27\xd1\
-\x15\xee\xff\xf1\x6f\xa2\x13\x52\x0d\x11\xad\x2c\x35\x4a\x02\xed\
-\x61\xbc\x24\x1f\xad\xda\x3c\x7b\x41\xe8\xf8\x9b\x6c\x40\x95\x37\
-\x4f\xeb\x84\xfb\x31\x35\xcf\x1f\x75\xba\xbd\x90\x2f\xba\xa0\xea\
-\x73\x7a\x41\xff\xda\xf5\x93\x17\xe8\xf9\x69\x11\xf9\xd1\x3b\x6a\
-\x57\xd9\x4d\x57\x0b\xe9\x25\xfd\x46\x87\x12\xba\xa0\xfb\xc7\x4e\
-\x88\x2d\x0a\x2b\xfe\x64\x92\xc7\x63\xf7\x9f\xb0\xe0\x51\xbf\x6d\
-\x09\x7b\x62\x8d\x86\x3e\xf6\xff\x74\xea\xda\x59\x11\x6b\xe5\xbc\
-\xa2\x0b\x5e\xfd\xfc\x9f\xd2\x5e\xa5\x26\x7b\x7d\x47\xf7\xff\xf8\
-\x02\x12\x1d\xac\xfd\xf6\xaa\x5a\x77\xc7\x03\xeb\x3a\x59\xdf\xe8\
-\xa8\x67\x75\xc3\xaa\xbf\xf6\xb4\x23\x46\x37\x81\xd5\xde\x36\x05\
-\xb9\xc1\x85\x98\xcf\x19\xc3\x79\xf8\x17\x33\xd1\xda\x94\x59\x3d\
-\xb2\x93\x1e\x63\x4d\x3f\x7c\xb8\x3a\xc1\x71\x20\x5b\x78\x1d\x7f\
-\x2d\x17\x62\xa0\xbb\x64\x8f\x1e\x28\x9f\x89\x16\x89\x0b\x89\x8e\
-\xfa\x8f\xfd\xf7\x33\x91\xce\xc8\xe4\xbc\x18\xdf\xcf\x4b\xc8\x39\
-\x3b\x1c\x3f\x9d\xa1\x55\xfd\xf0\xe1\xba\xd5\x81\xfc\xc2\x73\x85\
-\xa9\xbf\xe6\x3b\xe2\x37\x5d\x12\xa8\xf6\xe8\x81\xf2\x99\xe8\xaa\
-\x7e\xf7\xe7\x9f\x9e\x6c\x45\x6a\x05\xef\xa0\xfe\x17\x68\x3a\xb9\
-\xe4\xfd\x86\x66\x3f\x2b\x62\x4b\x3d\x75\xc3\x5c\x6e\x53\x93\x5b\
-\x10\xe7\x2d\x34\xac\x3e\xd0\x17\xd4\xba\x6c\xfc\x82\x28\x91\xb3\
-\xd6\xc8\x84\x1a\xb5\xbe\x35\x39\xbe\xc0\x99\xbe\x31\x9c\xa7\xc9\
-\x06\x74\x2c\x67\xf1\x46\xad\xd3\xdc\xad\x1f\x63\x53\xdb\x9b\xaf\
-\x3c\x93\xab\x68\xcf\x27\x50\xeb\xbd\xfe\xf0\x05\xce\xfc\x19\xc3\
-\x79\x9a\x6c\x40\xc7\x72\x16\x6f\xd4\x3a\xcd\x47\xfd\xb1\x27\x34\
-\x8c\x26\x46\x8b\xf6\xee\x97\xcc\xd8\x2b\x5c\xe1\x03\x99\xef\x91\
-\x16\x36\xa0\x09\x8f\x2e\x3e\x2a\xce\xf4\x8d\xe1\xbc\x70\x00\x1d\
-\xcb\x63\xff\x53\x8f\xbd\xe1\x3b\x26\xef\x65\xb1\xcf\x3c\xb9\xaa\
-\xfb\x05\x4f\xa8\xb1\xa6\xbf\x26\xef\xed\xff\x0b\x30\x15\x00\x1a\
-\xac\x0e\xa5\x93\x87\xf4\xd0\x11\x1f\x5a\xa8\x31\x93\x9b\x80\xef\
-\xbb\xf6\x14\xaa\xbe\xeb\x3c\x62\xf2\x07\x92\x39\x15\x6a\x10\x9b\
-\xef\xf9\x3a\xcf\x25\xe3\xa4\xf8\x1a\x60\xad\x67\x94\x9e\xe6\x9a\
-\x6f\xd5\x9f\xc9\x77\xd6\x5f\xfd\x9d\x22\x6f\xa3\x8e\xfa\x4f\x7b\
-\xae\x8e\x1d\xfb\x3f\xde\x0b\xc7\xf9\x3f\xdd\x3f\xdc\xeb\x7e\x3e\
-\x82\x0d\x6f\xed\xfe\x9b\xdd\xdf\x3a\x63\x76\xc9\x4e\x03\xba\xf9\
-\xab\xf7\xff\xa8\xf6\x64\xf3\x35\xee\xff\xf1\x27\xd1\x29\x61\x56\
-\xb1\x35\x03\x9e\x74\xa0\xe9\x08\x76\x60\xe9\x38\xb6\x8e\xa1\x43\
-\x73\xb5\xac\xee\x6a\xc1\xb8\xdd\x84\x39\x36\xf9\x15\xf4\x17\x12\
-\xe3\x39\xf6\x9c\xce\x12\xba\x71\xfd\xe4\x1a\x75\xf4\xf2\xcf\xfd\
-\x9c\x35\x34\xec\x9c\x6f\xf5\xf6\xec\x27\x6d\x38\xea\xb7\x26\x59\
-\x47\xe8\x9b\xd1\x9c\x61\xef\x53\xed\xcf\xa4\x79\xb6\xc0\x36\x36\
-\x05\xdb\x07\x9f\x7f\x8b\xc7\x9e\x29\x14\xb4\x63\xc4\x8e\x50\xe3\
-\xaa\xe6\x47\x1d\x81\x3d\xfb\x70\xd3\xb7\x3f\xea\x7f\xd2\xfd\x9f\
-\xf4\x7e\xc3\xa2\xb7\x7f\xb7\xde\xff\xf1\x77\x61\x71\xd0\x54\x44\
-\x8f\x86\xa7\x6c\x45\x47\xd6\x24\x0f\x4a\x46\x91\x72\xe5\x03\x5b\
-\xd6\x09\xb9\x11\xc0\xae\x7d\xd2\x3f\x4b\xa6\xd8\x9b\xfd\x51\x4b\
-\xce\xb1\x47\xc3\xbb\x76\xfd\x25\x9e\xd7\xdf\x9a\x6d\xab\x92\x3f\
-\xbd\x3f\xea\x8f\x93\x62\xfd\xa1\x27\xdd\xb3\x53\xfa\xe7\x3a\xec\
-\xb5\x16\xd0\x60\xd9\x0f\xb6\x02\xec\x9e\x5f\x6c\x3b\x09\xb0\x4f\
-\xe0\xcc\xbe\xc4\x73\x17\x2d\x58\xe4\x87\x8e\x2d\xa9\x75\xd1\x5f\
-\xcd\x41\xb9\x25\x7b\x17\xe7\x7c\xa1\x41\x74\x23\x87\x00\x1e\x07\
-\xde\x2f\x72\x68\xa1\xb0\x6d\x8c\x13\x41\x9e\xe0\xab\xad\xfe\x53\
-\x27\x36\x50\xb3\x66\x9b\x8d\x7a\xcb\x9e\x88\x0c\x7a\xb1\x9f\x35\
-\x4c\xb1\x77\x71\xde\x2f\x68\x90\x58\x91\x8b\x60\xfc\x0c\x24\x18\
-\xd5\x7f\xd1\x1f\xf3\x35\x26\xfe\x6a\x01\xad\x98\x73\xfe\x4c\x86\
-\x58\x7e\x44\x37\x7f\x08\xc0\x9a\xd0\x99\xb5\x9a\xe6\xfe\x02\x5d\
-\x15\x3f\x81\x02\x3e\xa7\x91\x1c\x5a\xd8\x1b\xae\x6f\x02\xc4\x33\
-\xff\xb5\x80\x6a\x50\x9c\xba\xd8\xa6\x89\x3f\xd3\x59\xaa\x7f\xa6\
-\x6f\x8a\x5e\x67\x18\x40\x73\x60\x3c\x1d\x33\xda\xec\x2f\x72\x39\
-\xea\x2f\x1b\x15\x4b\xef\xbf\xd1\x42\x8d\x59\x7f\x9d\x11\x02\x29\
-\x54\x03\xf1\xd2\x70\xb1\x4d\x13\x7f\x26\xdf\xbc\x5f\xa6\xc8\x9e\
-\xcb\x2d\xf4\xb1\xff\x63\x93\x67\xfb\x43\xa3\x03\x05\xdc\xf3\xb2\
-\x80\xbe\xd5\xf9\x1f\xb3\xde\x36\x7b\xee\x77\xb8\xff\xe3\x3b\x90\
-\x85\x1a\x38\xd8\xa0\x17\x61\xba\xb1\x1f\xfd\x0d\x40\x18\x7a\xbe\
-\xa9\xe1\x1f\x1a\x7f\x62\x67\xba\xfa\x0f\xb3\x07\x43\xcf\x5f\x4a\
-\x6f\xd5\x2f\xb9\x81\xd5\x5f\xf7\x00\xa6\x00\x33\x7d\x8b\x08\x8f\
-\xe0\xf8\xd6\x1a\x19\x2e\x24\x83\xe7\xfa\xb6\x70\x7d\x14\x30\x72\
-\xe1\x7c\xc2\x76\xa3\xfa\xcc\x01\xb9\x81\xd5\xdf\x51\x7f\xec\xcf\
-\x42\x83\x67\xfd\xb2\x0e\xc3\xa3\xd9\xf4\x56\x6b\x64\xb8\x93\x0c\
-\x9e\xeb\xdb\xc2\xf5\x51\xc0\xc8\x85\xf3\x09\xdb\x8d\xea\x33\x07\
-\xe4\x06\x56\x7f\xc7\xfe\x3f\x7e\xff\x67\x4d\x5f\x60\xb0\xef\x60\
-\x53\xcb\x9b\xdb\x98\x23\x51\xf7\x4b\xdc\x33\xea\xc5\xfa\xf4\x6c\
-\x3e\xb7\xff\xfe\x21\x7a\xfb\x0a\xc6\x34\xf9\xaa\xc6\x83\x59\x34\
-\x3e\x78\xd4\x1a\x9a\x0f\xe1\xd0\xc5\xde\x4f\x37\x59\x47\x3a\xe7\
-\x12\xae\xf6\xd5\x7f\xb8\xd8\x0c\xc4\x02\x65\x98\x69\x35\x42\xeb\
-\xd6\x10\x5b\x10\x53\xba\xd0\x4b\xf5\xad\xc9\x2f\x5d\x3f\xb9\xb6\
-\x1a\x2a\x23\xf6\x8b\x82\xd0\x03\x55\x53\xa6\x8f\xfa\x8f\xfd\xe7\
-\x08\xf9\xd9\xb0\x05\x67\x5a\x6b\xe8\xe3\xfc\xab\x1b\x76\x56\x76\
-\xf6\x67\xef\xfd\x3f\x46\xd9\x36\xfb\x7d\xcc\xe6\xf9\xc2\xec\xee\
-\xe0\xfe\xf7\x6f\x61\x51\x02\x2f\x04\x60\x4d\xd0\xf5\x78\xfa\x6a\
-\x01\x1d\x28\xd0\x07\x86\xb0\x6b\xbd\xee\xd7\x84\xcd\xbf\xf4\x69\
-\x86\x68\xbb\x34\xc0\x71\xb5\x63\x2e\x01\x67\x37\x84\xb9\xf2\x1c\
-\x93\xcb\x1c\x8b\x5c\xc0\x5b\xd7\x4f\xae\x4b\xfd\x4c\x65\x8c\xe4\
-\x51\xff\x64\x83\x8f\xfd\x1f\xef\xaf\xf6\x82\x70\x9c\xff\xbb\xbb\
-\xff\x67\xf7\xf0\x02\x23\x3f\x0b\xf2\x33\x6b\xa2\x7e\x83\xfb\xff\
-\x85\xe9\x97\xe4\x9d\x13\x96\x32\xf4\x07\xab\x55\xd2\x1e\xb0\x26\
-\xcb\xc5\x40\x83\x32\xcd\xb4\xbb\xca\x8c\xdc\x15\x94\xe1\xb9\xf2\
-\x8e\x49\x7e\xb1\x15\xda\x58\xcb\xb7\xea\xb7\x5e\xe4\x1c\x47\x57\
-\x9b\xfc\x61\x06\x7a\x0e\xc9\x7e\x74\x92\x18\x25\xdf\x1a\x1f\x3f\
-\xe0\xec\x05\x4d\x02\x7c\xc8\x2d\xf4\x51\xbf\x37\xf9\xd8\xff\xf1\
-\x4c\x2c\xdd\xaf\xf5\xbc\xd4\xf3\xe7\x4d\x4c\xd3\x5a\x3f\x39\xa7\
-\xa0\x4c\x33\xed\xae\x32\xa3\x9c\xd7\x1a\x1f\x55\xf0\x15\x77\xfe\
-\x53\x6f\xd7\xc8\x49\xef\xe3\xfe\xae\xfd\xaa\xfb\x39\xb1\x89\x00\
-\xad\x97\x5a\xaf\xf4\xbf\xe6\xd4\xf3\x37\xf9\x9b\x80\x38\x17\x3a\
-\x6d\x13\x38\x12\x08\xaa\xeb\x85\x35\x85\x0a\x33\x8d\xba\x3b\xb7\
-\x85\x30\xd3\xc8\xf7\x62\xf6\x91\xe9\x8d\x7e\xb2\x89\xd3\x36\x81\
-\x0f\xca\x2f\xd7\x9c\x69\xf2\x99\x05\x34\x01\x3c\x74\xf6\x20\xb6\
-\xc2\x4c\x6f\xf4\x91\x4d\x9c\xb6\x09\x7c\x88\xbf\xc9\x9e\x1f\xf5\
-\x8f\xbb\x40\x1f\xb4\x9a\x35\x3c\xf1\x46\xed\x7d\xf3\x23\xfd\xcd\
-\xcc\x8d\xe1\x3c\x4d\x59\xb8\x35\x2b\x6a\x15\x66\x1a\xfb\xec\x33\
-\xd3\xc8\xf7\x62\xf6\x91\xe9\x8d\x7e\xb2\x89\xd3\x36\x81\x4f\x52\
-\xff\xc6\xbc\x36\xab\xcd\x0a\x30\x4b\x78\x1b\x9c\xa0\x2a\x74\xda\
-\x26\xb0\xf9\x71\xc6\xc9\xd9\xfc\x57\x99\x98\x02\x7b\x2d\x5d\xd1\
-\xd8\x40\x2f\xc9\x4f\x6e\x83\xc2\x10\x14\x3b\xd1\xbb\xfd\xcd\x02\
-\x4c\x19\x72\x8d\xcf\xa9\x64\x5c\x21\x6b\xf9\x9b\x81\xf3\x22\x27\
-\xe8\x26\x2f\xfe\x5c\x1e\x3c\x79\x5c\x8b\xd7\x6a\x0d\xff\xb2\x69\
-\x3c\x23\xd7\xfc\xcd\xe4\x3b\xf3\xf5\x78\x69\x7a\xac\xbf\x99\x7d\
-\xaa\x21\x85\x39\x91\xd4\x0d\x4a\x92\xe8\x35\x7f\x33\xf9\x51\xff\
-\xae\xf3\x7a\xda\x88\x91\x7a\x6c\x3f\x67\xf6\xe6\x16\x5e\x8d\xe5\
-\x6b\xf6\x1a\x14\x33\xd1\xd8\x0a\x35\x24\x82\xa7\x35\x74\x93\x9b\
-\x82\xf3\xc2\x07\x74\x93\x27\x1b\xd9\xd7\xe1\xfa\xc6\x6c\xfa\x3b\
-\xfd\xcd\xec\xc3\x57\xa4\x53\xc3\x9d\x6a\xcd\x0a\x99\x9e\x5b\x9c\
-\xe5\xe8\x1d\x80\xe7\x10\x3e\xa0\x5b\x3d\x2b\xf9\xcc\xf2\xdf\xe9\
-\x6f\x66\x6f\xf1\xfc\x05\xa4\x25\x20\x87\xb6\xf0\xb7\x2a\x4a\x26\
-\xe8\xa5\xef\xa1\x56\x87\x67\xab\x37\xa1\xea\xc6\x66\x4d\x77\xaf\
-\x7c\xf2\xf6\x4a\x41\x6c\x10\x2b\x96\x8d\xe7\x44\xc8\x45\x23\xf7\
-\x0d\xb2\xc5\xbd\xd6\x4f\x9e\x60\xcd\x57\x85\xd0\x07\xea\xa2\xe7\
-\x5a\x6b\x60\x9b\x69\x78\xd5\xdf\xbd\xed\x3f\x79\x82\x35\xdf\xa3\
-\xfe\x63\xff\x8f\xf3\x7f\xba\xc9\x75\x9f\x3c\xf5\xfd\x3f\x7e\x88\
-\xae\x28\x1a\x16\x31\x6f\x00\x3c\xc7\x51\x3c\x61\xcd\x6e\x60\x14\
-\xc1\x5a\x81\xc5\xe1\xa7\x73\xa5\x42\x58\xb0\x3e\xb0\x70\xb3\x09\
-\x79\xaa\x80\xf2\x2f\xc7\xd4\x24\x27\x9d\x7c\x1a\x2f\xe4\xd8\x68\
-\xe9\x23\xf9\x83\x04\x9f\xba\xfe\x48\xbf\xf5\xa9\x9d\x86\xd6\xb0\
-\x53\x8d\xa4\xeb\xf5\xc4\x82\x5a\x1c\xc5\x3b\xea\x1f\x0f\x5d\xdb\
-\xc0\xd4\x93\xe8\x0f\x3d\xd3\xd2\x07\xba\xb6\x80\x04\x8f\xfd\xb7\
-\x9e\x58\x33\xda\xf9\x8a\x96\x35\x50\xa3\x38\xc4\x62\x1a\xbd\xe7\
-\xfe\xc7\x94\xe3\xde\x7c\xc1\x20\x36\x1b\xa2\x18\x89\x66\x2f\x5b\
-\x7e\x9d\x7c\xda\x3d\x11\xb6\xd8\x68\xe9\x23\xf9\x83\x04\xa5\xfb\
-\x98\xfa\x09\xb1\x05\xbd\x64\x4d\xd4\x20\x23\xa3\xcf\xe5\x8b\xcc\
-\x31\xf4\x5b\x0f\xb5\xde\xe9\x8f\xba\x41\xf9\x3d\xfb\x21\xba\x27\
-\x1d\x71\x14\x6f\x36\x6a\x01\x35\xa1\x6a\x40\x64\xb0\xe8\x53\x28\
-\x58\xcd\x1f\xbd\xae\x05\x29\x0f\x72\x90\x73\xe8\xd0\xab\xea\xb3\
-\xf8\x4f\x5d\x7f\xf5\x3f\x4b\x60\x27\xa3\x16\x74\xd4\x7f\xda\x73\
-\xb5\xf2\xd8\xff\xc9\x03\xaa\x1e\x97\xd9\x69\xab\xe7\xb3\xf4\xaf\
-\xa7\xef\x3c\x9d\x3b\x8d\xa2\xcf\x7d\x0f\x76\x1f\x90\xa3\xe5\xc3\
-\xe6\x5a\xd0\xad\xcf\xff\xc3\xaa\x78\xb8\xd5\x13\xd4\x3f\xfe\x20\
-\x21\x8e\x57\x1a\x3a\xcb\x1c\x3b\x50\x0a\x3d\x3a\x78\x02\x42\x48\
-\xd5\x69\x63\x0a\x1f\x3d\x72\x5c\x9c\x11\x8c\x00\x35\x01\x6c\xc0\
-\x35\x7d\xfc\x82\xd8\x81\xe2\xf7\xe8\xe0\x09\x08\x21\x55\xa7\x8d\
-\x49\x7a\xe2\xe5\xa1\x1b\x09\x1d\xf1\xa1\x9b\x7e\xf8\x9d\xc4\xcc\
-\x0e\xdc\x20\x0c\xc5\xaf\x09\x54\xfb\x35\xfd\xec\x1b\x7f\x19\x97\
-\xe8\x88\x53\xc3\xcf\xea\x29\xfe\x8f\xfa\x4f\x7b\xae\xd6\xcc\xfa\
-\x55\xf7\xaf\xf4\x6f\x34\x08\x43\xc9\xea\x06\x54\xfb\x63\xff\x4f\
-\x3d\xea\xf5\x4b\xbc\x3c\x6a\xff\x24\x83\x97\xe9\xe0\x09\x68\xb1\
-\xc4\x7b\x46\xbe\x17\xe4\xc3\x07\xb1\x40\xf8\x20\xc1\x30\xa8\x09\
-\x60\x07\xae\xe9\xe3\x17\x34\xbb\xf1\x43\xf4\xc4\x70\x32\x1c\xba\
-\x3f\xa3\x97\xe2\xd7\x78\xad\x3b\x4b\x06\xc4\x79\x22\x54\xda\xe4\
-\x94\xeb\x60\x53\x5d\x76\xa6\x1e\xf4\xc0\x35\x7d\x62\x09\x7d\x54\
-\xc6\x2c\x21\x14\xb7\x21\x7e\x41\x59\x65\xba\x7a\x99\x85\x13\x43\
-\x23\xd0\xd3\x33\x1a\x1f\x8f\xd5\x77\x7f\xe6\x1e\x7f\xad\xf9\x30\
-\x66\x01\x3c\x9b\xcd\x13\x6e\x40\x19\x66\xba\x3a\x9a\x85\x13\x43\
-\x23\x50\xb6\xdc\x88\xb0\x9d\xa7\x85\xc6\x4e\x7d\x6c\x5b\x4e\x95\
-\x31\x4b\x68\x0c\xb3\x75\xc6\x2f\x28\xbb\x4c\x57\x3f\xb3\x70\x3b\
-\xeb\x39\xea\x8f\x8e\x46\xdf\x7c\x3b\x8d\xa6\xe7\xb5\xbf\x2e\xcf\
-\x7b\x52\x19\xd5\xa0\x6e\xd8\x8e\x35\x39\x80\x3d\xd3\x59\x38\x31\
-\x34\x02\x3d\x3d\xa3\xf1\xf1\x58\x7d\xf9\x99\xfe\x3d\x10\x39\x37\
-\xae\x6e\x32\x1f\x1e\xd1\xa8\x88\x18\xc0\xd2\xf3\x42\x45\xfa\xf5\
-\x57\x1b\x70\xb3\xe2\x0f\xdf\x42\x8d\x6e\x01\xd9\xe1\xa8\xb6\x69\
-\xf6\x58\x66\x0b\xf6\x8c\x6a\x3c\x42\x45\x3a\xcd\x96\x7c\xbd\x50\
-\x8c\xcc\x21\x7a\x20\x22\xa1\xc6\xc5\xeb\x2f\x09\x96\xe5\x2c\xdf\
-\xda\xdf\x31\xab\xd3\x3c\xcb\xd7\x44\xf0\xa4\x45\xef\x8e\xfa\xa3\
-\x67\xa5\xe1\xec\x3b\x48\xef\x8e\xfd\x1f\xfb\x75\x9c\xff\xb8\x9f\
-\xe2\x40\xf8\xfd\x14\xf7\x95\x3a\xb4\x76\x7f\x8e\x5d\xec\xcf\xf9\
-\xac\xb5\xf3\x67\x4c\x7c\x6e\xf1\x9f\x7d\xb8\xbe\x4d\xf0\xb4\x7e\
-\xc8\xfd\x3f\xfe\x2a\x13\x59\xdb\xf0\x64\x02\xb5\x9e\x39\x14\x33\
-\x0f\xab\xc4\x1f\x36\x51\x91\x92\xd1\x00\xf5\xc4\x75\x1a\x79\x64\
-\xeb\x36\x52\x2c\xf6\xb3\x27\xb4\x74\xb6\x8e\x14\xab\xc5\x8f\x78\
-\x24\x44\xb3\x85\x1a\x45\x7c\x7f\xf5\xcf\x12\x4c\x49\xab\x80\xa8\
-\x03\xf4\xba\xe9\x83\xe4\xc5\xfe\xa8\xdf\x5a\x62\x3d\x39\xf6\x5f\
-\x87\x63\x76\x3c\x8e\xf3\x1f\xf7\x4e\x3b\x1f\x71\x56\xda\xf3\x6a\
-\x6c\xdb\x69\x96\x3e\xf7\x58\xf4\x53\x42\xb1\x7c\x70\x2f\x1a\x6a\
-\xa0\xbb\xe8\x6f\x54\xeb\xcf\xc4\x01\xa5\x15\x7e\x41\x8f\x4b\x4c\
-\xc9\xd1\x75\xc1\x78\xee\x15\xbb\xd5\x17\x2e\x42\xfc\xa0\xfd\x9f\
-\xfc\x3d\x10\x1c\x4d\xd0\x16\xac\x95\xaf\x68\xf2\x36\x72\x3a\x10\
-\x62\x30\x95\x8e\xab\x35\x19\x41\x7a\xb6\xe7\x78\x39\xf6\x42\x82\
-\x6c\x1c\x28\x77\x39\x1d\xe8\x09\xda\x82\x35\xa9\x2d\xb8\x3f\x35\
-\x07\x83\x5e\xbe\x6b\x32\x82\xc8\x16\x3a\x02\x7a\xde\x46\x2f\xe5\
-\x5f\xf5\x6b\x78\xec\x40\xc9\x73\x3a\xd0\x13\xb4\x05\xeb\x92\x4e\
-\x75\x7f\xd4\xaf\x46\xd1\xa4\x79\x77\x46\x0e\xcd\xec\xc9\xab\x3d\
-\xbe\x84\x36\x8e\xfd\xb7\x26\x58\x2f\x96\xce\x6f\xeb\x7d\xf4\xcb\
-\x9b\x96\x26\xec\x40\x89\xf2\x76\x40\x4f\xd0\x16\xac\xcb\x76\x24\
-\xcf\x41\x4a\x11\xa5\xb9\x74\xe4\xe0\x6c\x49\xbe\xc4\xa7\x6e\x30\
-\xf4\x26\xee\x88\x2d\xec\x0c\xea\x06\xa5\x92\xed\xa1\x27\x68\x0b\
-\xd6\x3d\xf7\x93\x9f\x44\xf7\xe2\xe5\x55\x9a\x76\x79\x1e\x81\x4e\
-\x87\x48\x2a\x1a\x24\x22\xcc\xf4\x28\xb5\x39\x1b\x19\xed\x89\x04\
-\x3a\x2d\x3b\x77\x24\x67\xa1\x0f\x8a\xbf\x77\xb8\x33\x33\x12\xe2\
-\x07\xcc\xb9\x2c\xf9\xcd\x3a\x46\xfb\x32\x30\x8b\x30\xcf\x35\x67\
-\x1a\xf9\xa3\xea\x57\x40\x72\xa7\x1e\x39\x16\xbd\x34\x90\xa1\x9f\
-\x7d\xf4\x0a\xa8\x7e\xb2\x8e\xd1\xbe\x0c\xcc\x22\xcc\x72\xcd\x99\
-\x46\x7e\xd4\x1f\x9d\x50\xf3\xec\xf2\xed\x09\x74\xda\x26\x70\xb2\
-\xd7\xa1\x3f\xe1\xb9\xa2\xf9\x01\x5b\x93\x13\x81\x4c\xa8\x4b\x7e\
-\x40\xd1\x1a\xe0\xb8\x9a\xce\xc8\x84\x76\xf9\x32\xd0\xe9\x62\x9e\
-\xf7\x3c\xd3\xcd\x69\x36\x32\xda\xd3\x0b\x74\xda\x26\xb0\xe5\x29\
-\x86\xec\x74\x41\x0b\x5d\x31\xa1\x91\xb3\x91\x75\xb2\x2d\xfe\x64\
-\x20\x7a\x69\x20\x0b\x7d\x5f\xda\x14\x4b\xb7\x72\x5e\xd8\xe7\x9a\
-\x33\xdd\xdc\xa3\x1c\x0e\x3c\x3d\xa3\x49\xb3\xe9\x6d\x21\x30\x02\
-\x7b\x36\xc8\x84\xba\x14\x17\xcc\xb9\xf4\x6c\xc5\xcb\x3a\x46\xfb\
-\x32\x30\x8b\x30\x57\xcd\xf3\xcf\x40\x4c\x4a\x33\x5c\x51\x09\xc4\
-\x90\x13\xf2\x11\xcb\xdf\x0a\x19\xa3\xbd\x25\x0a\x1a\xfb\xfa\x3d\
-\x51\x77\x93\xfc\xf9\x3a\x4d\xb2\xf3\x18\x67\x74\x92\xfa\x84\x94\
-\x49\xcd\xaf\xed\x54\xf8\x73\x1d\x9b\x62\x39\xd3\xef\xc6\x47\xb9\
-\xe3\xff\x2a\xf5\x9f\x89\x2f\x11\x35\xab\x19\xd0\x42\x1f\xd8\x06\
-\xba\xbe\x4d\xb0\xab\xfe\x51\x7f\xe7\xfc\xd1\x2c\x6b\x68\xed\xd7\
-\xb1\xff\xd6\x14\xeb\xcf\x93\xde\xff\x67\xfa\x2f\x11\x7b\xa2\xf3\
-\x0e\x2d\xf4\x81\x6d\xa0\xeb\xdb\x04\xbb\xea\xdf\xfa\xfc\x93\x76\
-\x0f\x3d\x77\x13\x80\xd2\x81\x5e\xaa\xa7\x15\x1a\x0a\xae\x6f\xd3\
-\x92\xfe\x43\xea\x1f\xff\x1b\x6f\x2f\x63\xe3\xcd\x1a\x9c\x78\x6e\
-\x42\x26\x81\xae\x6f\x34\x1b\x28\x36\x3e\xa4\x0f\xbd\x24\x97\x0e\
-\x2e\x45\x3f\x76\x78\x43\x2c\x98\xd0\x07\x34\x09\xac\x04\x90\x1a\
-\x35\x48\x15\x1a\x77\x2d\xd9\x60\xb8\xbe\xd1\xb8\xaf\xfa\xab\xfe\
-\x22\x86\x62\x69\x54\x7d\x78\x2e\xdc\x30\x1d\xf5\x5b\x0f\xad\x89\
-\xc7\xfe\xc7\x61\xa1\x17\x3a\x58\x1b\x46\x3d\x7f\xf5\x3c\x1f\xe7\
-\x3f\x9a\xf8\xc0\xfb\x7f\xc3\x16\x34\x15\xb6\x0c\x6c\x82\x33\xc4\
-\x35\xee\xff\x5d\x7f\x0f\x44\x4f\x34\xbf\x19\xa9\xa2\x9c\xa8\xe8\
-\x63\x3b\x57\x33\xfd\x5a\x6c\xb1\xef\x3e\x31\xab\xcd\x99\x75\x37\
-\xbe\xf4\x23\x5f\xc1\xe4\xd7\xcd\x9b\x41\x7e\xc0\x40\x2f\x7d\x45\
-\x35\xab\xa7\xe4\xdf\x8d\x8f\x4e\x2f\x6f\x64\x18\x7a\x82\xa7\x7c\
-\x61\x83\xb3\x57\x30\xd3\xcf\xfb\x81\x1e\xe8\xf9\x2a\xee\x51\xbf\
-\x77\xff\xd8\xff\xe3\xfc\xdf\xd5\xfd\xef\xa7\x72\xdb\xe4\xf7\xb4\
-\x26\x9e\x11\x32\xbb\x83\xfb\xff\xfc\xdf\x03\xb1\x1c\xdb\x57\x6f\
-\x4a\xb8\x8e\x78\x30\xf1\x80\xaa\x62\x5f\xa3\x63\x0b\x1e\x76\xd9\
-\x67\xa6\xbb\xf6\x7b\x98\x9d\x06\xb7\x87\xae\xe2\x87\x2f\x50\xcb\
-\x09\x1d\x8b\x9c\x53\xa6\xc3\xfc\x04\xd4\x06\x9e\x24\x27\x2a\xc9\
-\xdc\x97\xad\xb3\xcf\x4c\x9f\x8c\x1e\x48\x29\x7f\xc5\xa3\x28\xe8\
-\xc8\x01\x36\xa8\x28\x13\x3a\x16\x39\xa7\x4c\x4b\x7f\x32\xc2\xef\
-\xb1\xff\x93\xae\x4c\x17\xf4\xc8\xb8\xde\x4b\x5b\xe7\x9e\x66\x7a\
-\x6a\xf8\x80\x95\xf6\x4f\xf1\xd8\x54\xe8\xc8\x01\x36\xa8\x08\x13\
-\x3a\x16\x39\xa7\x4c\x4b\x7f\x32\xc2\xef\xb1\xff\x93\xae\x4c\x17\
-\xf4\xc8\xb8\xde\x4b\x5b\x9f\xed\xe9\xd4\x7a\xdf\x4a\xfb\xa7\x78\
-\x6c\x2a\x74\xe4\x00\x1b\x94\xf3\x09\x1d\x8b\x9c\x5f\xa6\xa5\x3f\
-\x19\xe6\xd7\xff\x17\x16\x5f\x71\xbb\x37\x82\x4a\x13\x3a\x12\xa8\
-\x72\xc5\x43\x65\x83\xfa\xa8\x6b\x46\xb8\x6b\xc6\x30\xaa\x43\x39\
-\xdd\x38\x54\x68\x7d\x07\xb1\x9a\xaf\xc5\xc5\xce\xc3\xd4\xf8\x14\
-\xb7\x90\xdf\x4e\xf5\xdd\xf5\x77\xfd\xab\xce\xe8\x89\xe7\x6e\x34\
-\x9b\x7c\xd4\x7f\x7e\x3f\x67\xfd\x3c\xf6\xff\x38\xff\xba\x9f\xda\
-\x0d\x65\x37\x93\x68\x1d\x14\x0d\xe8\x05\xf9\xec\x3c\x99\x09\x3c\
-\x99\x43\x4f\xdc\xd9\x02\x77\xd2\xd9\x3a\xf2\xbd\x8e\x7d\xe6\xc9\
-\xcf\x2d\xee\xff\xc9\xaf\x32\xf1\x82\x6d\xa2\xe0\x46\x04\xc3\xfb\
-\x69\x34\x05\x54\xf4\x22\x52\x47\xd6\xe4\xb3\x06\x98\x2d\xbc\xe4\
-\x66\x13\xe9\xb1\xc8\xad\x15\x20\x87\x67\xcc\x91\x05\x0a\xf8\xe0\
-\xdf\xad\x8a\x5c\x31\x72\x7e\x6b\xf5\xad\xc9\xf1\x25\xd4\xa8\xfe\
-\x47\xee\xf2\x3c\xf3\x6f\x7e\x9c\x47\xde\x32\xcd\x74\x75\x85\x2c\
-\x50\x70\xd4\x9f\x5a\x56\xfa\x53\xf7\x67\xd6\x7f\xf5\x2f\xf5\x18\
-\x1a\x94\x28\xd3\xc7\xfe\x8f\xfd\x78\xb5\x9e\xff\x74\x54\x1e\x44\
-\x72\x96\x40\xdd\xeb\x4e\x73\x6e\xe5\x35\xd3\x35\x0a\xb2\x40\xc1\
-\xde\xfb\x7f\xf2\xab\x4c\x14\xdc\x9d\x44\x20\x3f\xe0\xc6\x64\x83\
-\x3d\xbb\xa4\x00\x29\xec\x8e\xaa\x50\x02\x94\x65\xfb\x6a\xa8\xc5\
-\xeb\x3a\x5d\x66\xd6\x70\xad\x18\x12\xa4\x16\x05\xb6\x01\x1b\x5c\
-\xcd\xa7\x28\xcc\xe2\x8d\x6e\x4f\x73\x55\x28\xf6\x65\x39\xaf\xdf\
-\x14\xbc\x17\x52\xb4\x41\x9e\xe0\xcc\xde\x74\xe0\x35\x83\xcc\x30\
-\x7a\x97\x3f\x0b\xc4\x57\x35\xee\x0f\x5f\x42\x1b\xb5\xbc\x91\x9b\
-\xe6\xaa\x50\xec\xcb\xf2\xa8\xbf\xd3\xef\x5d\xfb\x65\xad\xa7\xa7\
-\xbe\x0b\x9d\xfe\xef\xf2\xd7\xc9\xa7\x6d\xba\x05\xa8\xee\xd3\xce\
-\x8f\x64\x55\x20\x39\xa1\x8d\xb2\x7c\xd5\xed\xff\xd8\x85\xed\xb3\
-\xda\xa9\x01\xce\xfa\x67\x32\x78\x4d\x31\x33\x8c\xbe\xf4\xfe\x4f\
-\x7e\x12\x1d\xe7\x8e\xca\xa0\x17\x50\x3c\xcf\x6e\x9c\x32\x9d\xd8\
-\x4e\xfa\xc3\xc7\x28\xde\x22\x4a\x17\x9e\x14\xb0\x05\x33\x4f\xf4\
-\x9e\x31\xc9\x5d\x4d\xb3\x41\x2c\xe2\x8f\x4c\x9f\x7d\xf2\x7c\x8c\
-\x22\xfe\xc4\x87\x34\xee\xbc\xfe\xb5\x7c\x8f\xfa\xc7\xbd\x3d\xf6\
-\xdf\x8f\xfb\x38\xc5\xbd\xa1\xc5\x71\xfe\xfd\x16\xbf\xd9\xfd\x9f\
-\x76\xe5\x41\xe4\x3d\xdc\xff\xd3\xbf\x07\xc2\xa9\xda\x5a\x4e\x3d\
-\x81\xc5\xae\x3d\x98\x13\x1f\x5e\x62\x9d\x48\x1d\x6e\x7c\x9e\xb8\
-\xdb\xa8\x6c\x1b\x41\x88\x05\xb6\x97\x67\x6e\x22\x13\xe4\xbf\x4f\
-\xe0\x81\x9a\xf2\x86\xb0\xd2\x25\x6e\x47\x1d\x57\xa0\x54\x32\x3d\
-\x33\xc1\x57\xca\xef\x9c\xff\x26\x5b\xd0\x27\x16\xd8\xd3\x3f\xea\
-\x2f\x9b\xd2\x9a\x35\xdb\x9d\x39\x43\xba\xec\xd9\x5c\xda\xf6\x3a\
-\xbb\xcc\xf4\xcc\x04\x5f\x0b\xfb\xb9\x57\x9f\x58\x60\xcb\x35\xf9\
-\x3f\xf6\xdf\xba\xda\x1a\x54\xe8\x59\xc3\x0b\x43\x76\xec\x59\x11\
-\x69\x89\x5b\x30\xf3\x3a\xea\xe7\x59\xd9\x09\x9a\xc4\x4e\xfb\x99\
-\xf3\xc1\x04\x6c\xb2\xa4\xff\xd8\xfd\x3f\xff\x21\x3a\x91\x03\x05\
-\xe4\xac\x1a\x9c\x36\x26\xf9\x50\x57\x43\x94\x97\x14\xaa\xc3\x88\
-\xd3\x3a\xdf\x1c\x6d\x24\x88\x13\xa8\x57\x68\xff\x2a\xbc\xfa\x8d\
-\x35\xb2\xf6\x15\xaa\xf8\xe4\xac\x90\xc5\xae\x8a\x5d\xd5\x98\x84\
-\x9d\x65\x89\xaf\x25\x85\xea\xb0\xc4\x6b\xb9\x60\x5f\xf5\x6b\x40\
-\xf4\x02\x8f\xfa\x8f\xfd\xe7\x8c\xfb\x51\x29\xe7\x0b\xd9\x71\xfe\
-\xe3\x46\xaa\xf7\x57\xe9\x57\x15\xeb\x36\xf3\x7b\xac\xde\x87\xac\
-\x5d\xc1\x16\xdc\x97\xf0\x1f\x82\xd9\x17\x79\x55\x3f\xc4\x09\xbc\
-\xc6\xfd\xef\xdf\xc2\x6a\x0f\x4a\x25\xb4\x94\x9c\x89\x4a\x7e\xae\
-\x4a\x5d\xb5\x16\xad\xf9\x40\x46\xa8\xb1\xb6\x01\x55\x3e\x5a\x6d\
-\x9b\xd9\x48\x7c\xc8\xca\xf3\x35\x06\x79\xcf\x3c\x21\x93\x11\x23\
-\xd3\xf0\x02\xf1\x03\x4a\x55\xf4\x92\xc9\xa3\xeb\xc7\x71\xa0\xc7\
-\x32\xba\xc5\x0f\x5a\xb5\x6b\x90\x0b\x72\xc7\xa4\x3f\x6a\xa5\x19\
-\x59\xd8\xbb\x24\xd3\x49\x55\xe4\xc4\xaf\xad\xa5\x4a\x4c\xc9\xeb\
-\x38\xea\x8f\x1e\x45\x4f\x6b\xbf\xbc\x77\xc6\xa4\xaf\x55\xde\x0e\
-\x56\xd8\xcf\xf4\xc3\xf6\xd8\xff\xf1\xe4\x71\x16\xe9\xa7\x63\xea\
-\x6f\x3d\x9f\xea\x2f\x3a\x4d\x16\xbd\x6e\xeb\x44\x4c\xfc\x1a\x5f\
-\xaa\xe2\x2d\x99\xac\x9d\xff\xe4\x7a\x95\x6c\xcf\x37\x72\x56\xdc\
-\xa0\x6f\xb9\xff\xd3\x6f\x61\xd1\x8d\xe8\x54\x59\xae\x7e\xc8\x35\
-\xd3\xb7\x22\xe1\xd1\xa1\xdc\x6c\x68\x10\x5d\xe1\x43\x86\x37\xd2\
-\x8c\x69\x68\x0b\xbe\xe4\x50\x81\x09\xaa\x80\xd0\xa1\x5f\x96\x57\
-\xaf\xbf\xa6\xb7\xd6\x93\xa3\xfe\x71\x0f\x8f\xfd\x8f\x93\x52\x0f\
-\x70\x3d\x40\xf5\x80\x15\xfd\xb2\x3c\xce\xbf\xf5\x8b\x77\x6d\xde\
-\x4a\x6b\x10\xf7\x9c\xd6\xb3\x7e\x25\x9e\xeb\xdb\xa4\x96\x3f\xd5\
-\x20\x97\x6b\x9e\xff\xe7\xfd\x55\xd8\x2a\xf7\xb7\xb1\xd1\x20\xaf\
-\xd2\x68\x2f\x36\x50\xb4\x37\x2f\xb0\xa7\xef\x8d\x71\xa3\x68\x11\
-\xb4\xd0\x2e\x35\x18\x74\xda\x96\xa0\x8b\x42\xbf\x35\x40\xcc\xad\
-\x43\xfe\xe5\x2c\xd0\x69\x5b\x82\xee\x26\xfc\x7b\x61\x3d\xfd\xc4\
-\x93\x8e\xab\x07\x8a\x96\x2f\x30\xc7\xc2\xdf\x24\x86\x16\xee\x20\
-\xd0\x68\xaf\x35\x90\xba\x41\x57\x0f\x7d\xd5\xef\x3d\x48\x28\x5f\
-\x2e\x0e\xcc\x34\xf1\x73\x4e\xd4\x0d\xca\xff\x2c\x1f\x05\x37\x47\
-\xd2\xc9\xb6\xf8\xcb\x31\x44\x4b\x07\xec\xe9\x2b\x44\x8b\x91\x69\
-\x19\xd9\xe5\xb5\x06\x3a\x6d\x6c\xd0\xd5\xa5\x67\xe3\xa8\x7f\xec\
-\x81\x7a\xc6\x39\x70\xda\x9b\xe3\xad\x1c\xdb\x2c\x79\xf0\x44\xe4\
-\x3d\x71\xda\x64\xa0\xd4\x46\xe5\xc0\x9e\x7e\xe2\x49\xd7\xfe\xf9\
-\x24\xd4\x25\x5f\x60\x8e\xe5\x4c\x57\x0e\x45\x03\x1f\x99\x67\xf4\
-\xb1\xff\xd6\x15\xfa\x10\x2d\xda\x0c\x66\xe7\xed\x0c\xcc\x34\xfd\
-\xcf\x7b\xc2\xbe\x83\xdd\xfd\xd0\x86\x98\x23\xe9\x64\x5b\xfc\xe5\
-\x18\xa2\xa5\x03\xa2\xff\x82\x76\xd5\x15\x15\x01\xda\xd0\x87\x6b\
-\x1b\x15\x0a\xe8\x81\xae\x8f\x8e\xd4\x82\x76\x94\x03\xf9\xdb\x21\
-\x97\xbe\x0f\x30\x96\x5b\x81\xbc\x40\xe5\x3d\xf9\x90\x48\x7e\x73\
-\x3e\x72\xac\x1c\x09\x00\x4d\x7c\x74\x43\x01\x3d\x70\x6f\x7d\xf4\
-\x62\xa9\x3f\xb3\xfa\x4b\x7c\xd2\x5c\x42\xf2\x02\x8f\xfa\x8f\xfd\
-\x3f\xce\xbf\xdd\x2d\xdc\x10\xf7\x76\xff\x2f\xdd\xc8\x0f\xe4\x53\
-\x26\x78\x8d\xfb\x7f\xfc\x10\x7d\x21\x61\x25\xc2\xf7\xf1\xa4\x52\
-\xfa\xbf\x60\x95\xd8\x54\x02\x4a\x94\xe9\xa4\xea\x22\x93\xf9\xab\
-\xdc\x19\x9d\x62\xb2\x6b\xa9\x07\xb7\xd7\x10\xfe\xd7\xea\x91\xda\
-\x2d\xeb\x27\x57\xa1\x46\x37\xff\xa8\x69\xd4\x38\x3f\x77\xed\xcd\
-\x04\xff\xd5\xfa\xa8\xff\xd8\xff\xe3\xfc\x9f\x1e\x59\x6b\xcf\x8b\
-\x7a\xff\xb4\x67\x5d\x3c\x6f\x5c\x9e\xe9\x99\xc1\x79\x46\xf7\xfe\
-\xbd\xf1\xfd\x3f\xfd\x7b\x20\x25\x7f\x1e\x2c\xc2\x4c\xa3\xa6\x82\
-\x34\x84\x99\x1e\xb9\x36\x67\x23\xa3\x5d\x3d\xd0\x69\xd9\xb9\x03\
-\x39\x09\x75\xb0\x39\xd9\x4e\xe4\x1c\x32\xbd\xdd\xc3\x54\xb3\xa4\
-\xef\x42\x78\x5a\xe4\x18\x99\x6e\x5e\x50\x16\xda\xe5\xb5\x06\x52\
-\x37\x58\xeb\xcf\xa6\xf8\xcb\xbc\x4c\x23\xcf\x39\x64\x1a\xf9\x5e\
-\xcc\x31\x32\x8d\x9f\x1c\x23\xd3\xc8\x1f\xb3\xff\xbd\x78\x99\x97\
-\x69\xe2\xe5\x1c\x32\x8d\x7c\x2f\xe6\x18\x99\xc6\x4f\x8e\x91\x69\
-\xe4\x47\xfd\xd1\x09\x35\xcf\xae\xe3\xfc\xa7\x3e\xb4\x43\xb2\x9d\
-\xc8\x67\x30\xd3\x78\xc8\x67\x30\xd3\xc8\xf7\x62\x8e\x91\x69\xfc\
-\x28\xc6\x0b\xda\x55\x7f\x9b\x0b\xf7\x0c\xca\x89\x0e\x41\x75\xc6\
-\x1a\x99\x50\x83\xaf\x5e\x84\x6d\x64\xba\x31\x47\xa2\xda\x17\xf1\
-\xd9\x25\x6e\xc1\xae\x72\x09\xc0\xdb\xfb\xbb\xad\xbf\xe4\xcb\xbb\
-\x33\xff\xfe\xa3\x15\x58\xc4\x5e\xf2\x51\x7f\x77\xe7\x47\x66\x69\
-\xd8\xb1\xff\xe3\x21\x3a\xce\xff\x99\x33\x93\x44\x4f\xfd\xfc\x4b\
-\xa1\x66\xa4\x1e\xd6\xf7\x78\xff\xfb\xaf\x32\x59\x7a\x01\xa8\x55\
-\xf8\xab\x9a\x29\xf3\xea\xe6\xaf\x24\xdc\x94\xa1\x9c\x1f\x60\xd0\
-\xa0\x54\x7a\x74\xe3\x19\xc1\x4d\x5d\x63\xaf\xae\xcd\x76\xd6\xe0\
-\xc4\xc3\xbe\xe5\x6e\x8c\x7a\x20\x94\x07\x3c\xf4\x33\x5e\xbb\xfe\
-\x59\x3d\xca\x4f\xfd\x27\x29\x23\x72\xbf\x66\xfa\x47\xfd\xed\x4c\
-\xb4\x96\xb5\xe6\x9d\xf6\x5a\x7b\xae\x21\xd1\xb1\xff\xe9\x7c\x79\
-\x57\x4e\xd3\x71\xfe\xc7\x03\xd2\x9e\x21\x1c\x16\x0e\x90\x89\xd3\
-\xf1\x6a\x74\x8f\x77\xea\xea\x36\x8a\xfb\x1e\x74\x2b\x73\x7c\xeb\
-\xfb\x7f\xfc\x10\x9d\x0a\xad\x11\x1c\x12\x12\x9c\xdc\x51\xb5\x61\
-\xb2\x83\xb7\xa5\x0f\xe8\x0a\x6d\x28\x16\x0f\x3d\xad\xa1\x85\x0f\
-\x19\x6c\x2c\xa8\xdc\x26\xf5\x14\xa7\xc8\x16\xf5\x6b\x7d\x25\xff\
-\xd5\x27\x4e\x89\xd7\x7a\xb5\xb1\xfe\x59\x7e\xe6\x8f\xad\x6a\xae\
-\x13\x83\x3a\xc0\xa3\xfe\x63\xff\x39\x43\xed\xbc\x24\x02\xd9\xe2\
-\x79\x39\xce\xff\xf4\xf9\x76\xe1\xfb\x3f\x6d\xc5\x2a\xc9\x1e\xa5\
-\xdb\x7d\xb4\x49\x8c\xa6\x03\xef\x0a\xcf\x3f\xff\x6f\xbc\x2d\x7b\
-\x02\x0b\x33\xdd\x14\x56\x88\x78\x30\xfa\x83\x32\xd3\x61\x96\x0b\
-\x14\xed\xfb\x11\xd8\x51\x5f\x09\x56\xc4\xe6\xc0\x53\x0e\xec\xa6\
-\x9f\x99\x99\xc6\x55\xe6\x65\x1a\xf9\x1a\xe6\x22\x32\x1d\x76\xbb\
-\xeb\xcf\x3e\x32\x4d\x1e\x99\x67\xb4\xa7\x1c\xd8\x4d\x3f\x33\x33\
-\x8d\xbf\xcc\xcb\x34\xf2\x35\x2c\xf9\xb8\x3a\x3c\x5b\x1c\xf5\x8f\
-\x0d\x54\x1f\x36\x9d\x7f\x7a\x27\xcc\xf4\xe8\x66\xca\x33\xb9\x6f\
-\x59\x60\x77\xfb\x32\x33\xd3\xf8\xcb\xbc\x4c\x23\x5f\xc3\x9c\x63\
-\xa6\xc3\xee\xd8\xff\xb1\x11\xf4\x61\xad\x9d\x13\x79\xa7\x9f\x93\
-\x33\x11\xfb\x2e\x9e\xb6\xae\xbb\x7d\x99\x99\x69\x02\x65\x5e\xa6\
-\x91\x77\x70\xf2\x37\xd1\x3b\xf2\x09\x2b\x1f\xfa\x26\x20\x90\x18\
-\xd0\x60\xe6\x19\xad\x1e\x48\x44\x2f\x44\xf8\xe7\x23\x30\x10\x66\
-\x7b\xf9\xd8\x30\x72\x6e\xcd\x9d\xf9\x11\x3d\xd9\xb0\xe4\xdb\x65\
-\x26\x47\x7f\x2d\x4c\x8e\xd1\x74\x93\xbf\x4b\xd7\x2f\xd7\xe4\xa8\
-\x78\xd4\x42\xbe\x35\x9f\x35\xb9\xe7\x9c\xf2\xc5\x37\xfe\x5c\x7e\
-\x66\xaa\xf1\xaa\xbf\xa3\xfe\x68\x5e\xea\x71\xeb\x89\x89\x66\xfd\
-\x36\xc6\xb9\xf3\x7f\xec\xff\xa9\x67\xea\xac\xf7\xcf\x9a\xc2\x79\
-\xad\xe7\x71\x4d\xee\xbb\x93\xf6\xc6\xf5\xc3\xaf\xcb\x56\xa6\x1a\
-\xaf\xfa\x6b\x7b\x9d\x62\x34\x5e\xc4\x61\x4f\x57\x42\xcd\xc4\x39\
-\xf6\x3d\xd5\x3f\xf9\x9b\xe8\x9e\xa4\x65\x27\xf4\x51\x3a\x5c\x96\
-\xde\x1b\x78\xd2\x87\x16\x2e\x8d\x2c\xcb\x4d\x91\xbe\xdb\x5b\xec\
-\xac\xb3\xe4\xe7\x29\xf8\x47\xfd\xd6\x7b\x6b\xfe\xb1\xff\x71\xba\
-\xfc\x40\xc6\xc1\x0c\xc8\x0f\x00\xe8\x85\xdb\xa5\x7b\x44\xf3\xd9\
-\x3e\xce\xff\xe9\x9e\x57\xb3\xbc\xdd\xaf\xa2\xfb\xbf\x7b\x40\x6e\
-\xc8\x7c\xc8\xf3\x6f\xf2\xf7\x40\xb4\x83\x7e\x33\x70\xca\xd7\xee\
-\x90\x22\xe7\x03\x1d\x47\x35\xa2\xc8\x6b\x6f\x78\x58\xf1\x99\xc7\
-\xac\x80\x6a\x70\x66\xdd\x0e\x9f\x6a\xf0\x22\x46\xe5\x44\xc6\x09\
-\x35\x7e\xd4\x87\x0c\xbc\xbb\xfa\xa9\x85\x7c\x95\x28\x3c\x91\x41\
-\x9f\xeb\x5f\xab\x4d\xed\x90\x9f\xf0\xa1\x25\x32\xf0\xa8\x3f\x7a\
-\x12\xfd\x6e\xbd\xa2\x41\xa5\x7f\x55\x7e\xf1\xf3\x1f\xfb\xeb\xfb\
-\xa6\xfd\x8a\xbd\xe3\x7c\x1f\xfb\x3f\xf6\xe4\x59\x3d\xff\xba\x07\
-\xf7\x8c\x7b\xdc\xff\xc9\x3b\x90\x7a\x43\xcc\x1e\x38\xe5\x00\xfb\
-\x03\x27\x78\xad\x11\xdc\x7c\x62\x40\x83\xe8\x0a\x6d\x04\x34\xcc\
-\x3c\x57\xd8\x31\x4d\x9a\x4b\xbc\x9e\xfd\x39\x59\xc9\xef\xee\xea\
-\x27\xf7\xc0\x49\xcd\xaa\xd5\xf8\xf0\x7a\xa5\x3b\x0f\x1f\x3d\x85\
-\xa3\xfe\xd3\x8b\xac\xfa\xa3\x5e\xd1\x13\x91\x41\x3b\x86\x1c\x9e\
-\x96\x3e\x72\x7f\xa1\x41\x7c\x09\x6d\x04\x34\xcc\x3c\x57\xa8\x13\
-\x7e\x02\x89\x7d\x36\x9f\x25\x1f\x95\xaf\x75\xc9\xef\xa8\x3f\xf5\
-\x44\x64\xf4\xe7\x6c\xbf\xd9\x23\xf5\x13\x1a\xac\xfd\x95\xce\x9e\
-\x81\x9f\xc0\x4d\xf9\x54\xff\xf8\xa8\x7c\xad\x6b\x7e\xd2\x85\x27\
-\xb2\x53\xbf\xff\x1c\x88\x6c\xdb\x90\xd2\xd2\x20\x38\x88\xf3\xb0\
-\x29\xcb\x7a\xfe\xc6\x5c\x4c\x29\xd4\xe7\x3f\x27\x52\x12\x5e\x4a\
-\x63\x91\x8f\x63\x70\x51\xf1\x8c\xe0\x9c\x2d\x75\x83\xd2\x25\x67\
-\x23\xcb\xb2\x89\x26\xea\xa6\x44\x88\xd9\xcf\xc9\xe0\x6b\x62\x10\
-\x8e\x97\xfc\x9b\x33\xd4\x9b\x63\x02\x98\xcd\xee\x71\xce\x96\x40\
-\xa0\x74\x45\x87\x4d\x59\x36\xd1\x44\xdd\x94\x42\x7d\x7d\xff\x8b\
-\xc3\xb2\x1c\xfd\x1b\x13\xff\xcd\x31\x01\x76\x17\x7f\xaa\xa5\x6b\
-\x4a\x20\xb0\x24\x54\x96\x47\xfd\xd1\xce\x49\xbb\xac\x49\x6c\xcf\
-\xab\xfd\xfc\x77\xcf\xd8\x12\x33\xfa\xa6\x5e\xb6\xfe\x89\xb6\x05\
-\xfd\x6d\x02\x14\x96\x7c\x9d\xe3\x9f\xb3\x25\x10\x68\xba\x93\x0f\
-\xd1\x65\x9b\x13\x5c\x4b\xc8\x75\xcd\x08\x7f\x15\x95\x27\xbc\x4c\
-\xc3\xab\xf1\x66\x07\x4a\x46\x5b\x87\x9c\x16\x87\x65\x39\xf3\x94\
-\x4d\x24\x9c\xe9\x8b\xa1\x01\x8e\xab\x36\xbb\xbd\xc9\xa8\xa7\xa2\
-\x14\xe1\x65\x1a\x5e\x8d\xd7\xad\x7f\x21\xb6\x27\x21\x47\x38\x11\
-\x03\x3a\x6c\xca\xd2\x4d\xf2\xb4\x62\x7e\xaa\x3b\xfc\x65\x5b\xd1\
-\x6e\x6f\x32\xea\xa9\x88\x0e\x76\x55\x5e\xf3\x3b\xea\x8f\x2d\xcc\
-\xfd\xce\x34\x8d\x04\x7d\x03\x6c\x41\x63\x4b\x43\xcb\x12\xab\x86\
-\x2b\xe6\xc7\xfe\xd3\x7b\xb0\x75\x6e\x24\xbc\x7f\x26\xa3\xfd\x15\
-\xa5\x05\x2f\xd3\x99\x37\x7a\x7a\xe0\x2c\x47\x6c\xb2\x5c\x40\x47\
-\xbe\x65\x39\x0b\xb2\x62\xbe\x69\xff\x27\xdf\xc2\xa2\x30\xb0\x26\
-\xb0\x1a\xb0\xa4\xb8\xa6\xbf\x26\x2f\xee\xce\x2e\xdb\xdb\xca\x68\
-\x9e\x94\xf7\xfa\x97\xbe\x06\x78\xf3\xfa\x4b\x02\xdd\xef\x79\x5b\
-\xbe\xad\x76\x25\x7f\xd4\xaf\x2e\xf8\x38\xf6\xff\xf4\x4c\x51\x43\
-\xca\x71\x1a\x9b\x94\x66\xce\x3d\x58\xf5\x1f\xd2\x4f\x7c\xf4\xe2\
-\xaf\xfa\xc3\x58\x68\xe3\x95\x76\xfe\xc7\xaa\xb6\xcd\xfe\x4e\xc3\
-\x1a\x06\xca\xca\xe9\xc0\xe6\x25\x7a\xa5\xf5\x6a\x7f\x9b\xd1\x48\
-\x48\x5f\x03\x2c\xed\xef\xfa\x1b\x3f\x44\x27\x68\x8d\x68\xce\x10\
-\xc9\xb1\x3f\xa8\x4c\xc7\x51\x0c\xe8\x88\x58\xcd\x6b\x02\xee\x43\
-\x53\x0c\x7c\x83\xd5\x1e\xbd\xcd\x58\x02\xce\x3e\xd4\x34\x47\xc4\
-\x92\xcf\x5e\x3d\xed\x2e\x8b\xa0\x6b\xfa\xf8\x90\x7a\xcd\xbf\xa4\
-\xe3\x1e\x27\xfe\x4a\x8c\x99\xbd\x31\x9c\xa7\x89\x91\x69\x78\x60\
-\x09\x78\xd4\x6f\x8d\xb1\x9e\xb4\xff\xd4\x31\x2e\xe9\xd6\xb1\xff\
-\x71\x5e\xf2\xfd\x7c\x9c\x7f\x3b\x1e\xe9\x1e\x9b\xdc\xaf\x9d\x7e\
-\x3d\xe6\xfe\x6f\x07\x71\x0b\x41\x4e\x60\xcf\x26\xf2\xe3\x21\x77\
-\x8d\xfb\x7f\xfc\x0c\x84\xa4\x4a\x02\xb3\x27\x22\x7a\x60\xd1\x9f\
-\x25\x6c\x72\x78\x5e\xaf\xec\xb0\x11\x03\x5a\x18\xcb\x8c\xce\xdc\
-\x3a\x65\x5f\xe4\x27\xdb\x4c\x67\x1d\x64\xf0\xb4\x86\x16\x6a\xd4\
-\x7c\xf1\x05\x16\x7d\x6a\x75\x94\xbd\xc9\xe1\x69\x39\xf3\x57\xed\
-\x5d\x69\x4c\x23\x48\x4f\xa9\xd1\x91\xcf\x66\xff\x32\x24\x57\xd1\
-\x25\xde\x5a\x3e\x33\x39\xbe\xc0\xe2\x8f\x5a\x37\xe7\x57\xed\x95\
-\xa3\x0d\xb1\x19\x13\xfa\xa8\xdf\x9b\xb3\xb9\xbf\x6a\x22\x7b\x25\
-\xba\xf4\x7b\xb6\xbf\x6b\x72\x7c\x81\x45\xff\xd8\xff\xb1\xc7\xbb\
-\xf6\x47\xfb\xb2\x65\x58\xaf\x77\xf7\x57\x7e\xd9\x2b\xd1\x65\xbf\
-\x2e\xb1\xff\xfe\xab\x4c\xda\x1d\xab\x60\x04\xe9\x05\x14\x2f\x8f\
-\x35\xfd\x22\xd7\xab\x35\x6f\x43\xe5\xc6\xc5\xe2\xe1\xb3\xe8\xc3\
-\xde\x8c\xca\x5d\x23\x50\x80\x4b\xb1\x89\x2d\xf4\x31\x53\x30\x2e\
-\x3c\x29\x40\x0b\x7b\x03\xe7\x1b\xfd\xed\xae\x7f\x2d\x7e\xcd\x89\
-\x3c\x03\xab\xf9\x51\xbf\x6d\xa9\x35\xe5\xd8\xff\x38\x38\xb3\x03\
-\x62\x7c\x78\x52\x81\x16\xf6\xc6\x71\xfe\x4f\x3d\x52\x7f\x6a\xbf\
-\x4a\x7f\x38\x7b\xc2\x27\x19\xf8\x0d\x9c\xa5\x63\xf9\x90\x83\xc7\
-\x9f\x29\x18\x17\x9e\x14\xa0\x85\xbd\x61\xfe\xfc\xef\x81\x20\xab\
-\x1f\x62\xba\xbd\x4d\xd8\x97\x7e\x9c\x04\xa1\x30\xd3\x0f\x5b\xf9\
-\x6d\x23\xd3\x8d\x39\x12\x5e\x9c\x91\x0f\x69\xb0\xc7\x2e\x0d\xf2\
-\xb8\xc6\x23\x7e\xd7\x7f\xca\xe7\xde\xea\xf7\x7e\x5b\x7e\x42\x8d\
-\xd5\xfc\x8f\xfa\x27\x37\xc8\xb1\xff\x76\x68\x8e\xf3\xff\xcc\xdc\
-\xff\x7e\x93\x9f\x99\xee\xf1\xfe\xf7\xcf\x40\x78\x40\x29\xf7\x1e\
-\x0d\xcf\x1f\xd2\xa6\xd3\x9e\xb9\x85\x31\xfb\x0a\xb7\xf8\xab\xaf\
-\x68\xf5\x2d\x99\xe2\xe0\xd2\xc8\x5d\xc3\x6d\xcd\x18\x94\x31\xb4\
-\xb0\x37\x5c\x6e\x82\x2c\xef\xd1\xf0\xc8\x4d\xe8\xa3\x30\x2e\x5d\
-\x7f\x71\xdf\x42\x46\xf4\xb1\x3e\x5b\xb4\xfc\xcc\x40\x34\x2f\xc0\
-\xd0\xc8\xb1\x03\x5d\x9e\xec\xc5\xcf\xba\xd0\xc2\xbf\xf2\x9f\x4b\
-\xfa\xca\x1d\xea\x59\xbb\xac\x4c\xef\x61\xf0\x5e\x7a\x69\x18\x74\
-\x7d\x21\xe3\x17\x6c\x6d\xd7\xe7\xed\xfa\xdc\xe7\x0c\x3f\x3f\xae\
-\x3f\x67\xa8\xf5\x67\x3f\x3b\x5e\x2f\x06\xfd\xe2\x8b\xc3\xf0\xe9\
-\x4f\x0f\xc3\x1f\x08\x3f\x33\xca\xd6\xce\xff\x3d\xed\xbf\x76\x7e\
-\x96\x4f\x61\xbc\x92\xcf\xff\x53\xd4\x2f\x9f\x5b\x87\x5a\xad\x01\
-\x8a\xae\xf7\xaf\xce\xac\xf3\x42\x09\x5a\xd8\x1b\xd5\x5e\x3a\x59\
-\x17\x1a\x94\x5b\x6c\xdc\x9f\x31\xa6\x7f\x0f\x64\xa6\xe1\x6a\xa7\
-\xc9\xac\xfd\xc6\x0a\x8f\x7e\x60\xe4\x34\xd6\x5e\x00\x3a\xb2\x12\
-\x1f\x9f\x5a\xdb\xd0\x72\x69\xe0\xdb\x71\x49\x69\x81\x3f\xb1\x25\
-\x9f\xd0\x6d\x31\x8d\xe0\xa6\x95\x08\xda\xd1\x19\x36\x91\xb3\xd6\
-\x75\x50\x5b\xf8\xbf\x46\xfd\x2d\x77\xe5\x42\x6e\x11\x7f\x52\x73\
-\xc8\xe1\x69\x89\x2d\x28\x06\x35\xbb\x3c\xfc\x6d\xae\x5f\x46\xaf\
-\xd0\xa1\xbd\xe4\x1c\x5f\xa3\x44\xbd\xf8\x7c\xf2\x53\x71\x7d\x72\
-\x18\x7e\xff\x13\xc3\xf0\xbb\xbf\x67\xd7\xbf\x1c\x86\x8f\x7f\x7c\
-\x18\x3e\xf3\x07\x63\x16\x6d\xef\xb4\xbc\xf5\xfe\x5b\xfc\x7c\xbe\
-\x5e\x75\xe7\xff\x89\xeb\x3f\x7b\xee\x74\x10\xee\x70\xff\x27\xff\
-\x8d\x77\x56\x40\x49\xb8\xbd\x18\xc4\xa9\xe6\x61\xd4\x1e\x40\x6a\
-\xb0\x9c\xc8\x4e\x23\x17\xad\x75\xf5\x07\x4f\xf8\x14\xa3\xc6\x57\
-\x8c\xc8\x7d\x53\xb8\x9a\x6f\xf1\xf7\xe4\xf5\xd7\xf8\x4a\x9a\xde\
-\x6e\x29\xa0\xe4\xeb\x26\x8f\xa9\x7f\x4b\xcc\x43\x67\x53\x07\x5e\
-\xf3\x9a\x61\xf8\xd2\x37\x8f\x57\xcf\xe0\xf7\x7f\x7f\x18\x7e\xfb\
-\xa3\xc3\xf0\x6b\x1f\x1a\x86\x7f\xf1\xe1\xf1\xdd\x8b\xeb\xdd\x72\
-\xff\xcb\x79\x7a\xd5\x9d\xff\xa7\xa8\xbf\xb7\xf9\x3d\x1e\xfb\x0e\
-\xf6\x74\x2a\xaf\xe4\xeb\xe2\xc7\xdc\xff\xc5\x9f\xf6\x7f\xf2\xf7\
-\x40\xfc\x2b\x0a\x53\xe2\x2b\x31\x7d\xb5\x01\x4f\xc1\xa1\x17\xe5\
-\xa6\x43\x0c\x4f\x56\x93\x18\x0b\x63\xe6\xdf\xf4\x9c\xb7\xa0\xbf\
-\xca\x26\x16\x28\x83\x4c\xab\xf9\x5a\xc7\x26\xcc\xe2\x1b\x1f\x9e\
-\x9b\x9a\x2e\x35\x6b\x0d\x7d\xb5\xfa\xc9\x3d\x90\xd4\x61\x7b\x39\
-\xb6\x88\x72\x4e\xb5\xa2\xe0\x45\x68\x8a\xe1\x06\x46\x87\x01\xb5\
-\x0a\x35\xd6\xea\x1b\xb5\x8e\xf9\x1a\x1d\x78\xb3\xbd\xb8\xe8\xfa\
-\xfa\x3f\x34\x9e\xc9\x8f\xfe\xce\x30\xfc\xf2\x3f\x1b\x86\x7f\xfa\
-\x2b\xe3\xb7\xc0\x94\xc3\xb5\xf7\x7f\xed\x7c\x94\xe3\x35\xb6\x29\
-\x9f\xc5\xd2\xb8\xd9\xf9\x33\xb9\xf3\xd0\xc3\x36\x50\x40\x0c\xa9\
-\x3c\xeb\xf5\x53\xe6\x26\xb4\xe2\xef\xb1\xfe\xc9\xaf\x32\xe1\x41\
-\x02\xce\x36\x28\x36\x8d\x82\x25\xd7\x00\x2b\xed\xc2\x34\x71\x38\
-\xf0\x2f\x51\xa6\x93\xea\x83\xc8\x59\x83\x2d\x31\x8f\x49\x82\x55\
-\xc1\x13\x38\x85\x22\x17\x50\x66\x6e\x7f\x52\xe9\xd6\x8a\x7b\xa9\
-\x65\x3a\x99\x39\x89\x2f\xfc\x8b\x99\xe9\xaa\xbf\x77\x5d\xcb\xab\
-\x37\xfc\xec\x04\x7a\x02\xa7\x28\xe4\x02\xf6\xea\x3f\x69\x1f\xd4\
-\xb5\x3a\xa0\x7d\x7c\xfb\xdb\xc6\xeb\x5f\xff\x63\xc3\xf0\x81\x0f\
-\x0e\xc3\xcf\xfd\xc2\x30\xfc\xc6\x6f\x4e\x33\xb8\xc6\xfe\xe7\xf3\
-\x0d\x0d\x2a\x9b\x4c\x4f\xb3\x3b\xdd\x4b\x9c\x2f\xc9\x33\x5d\xf5\
-\xf7\xae\x9f\xc5\xfa\xf7\xd6\x78\x4e\xff\x16\xf5\xfb\xff\xc2\xd2\
-\x01\xd5\xa8\x09\x8c\xdc\xd3\xac\xcd\x96\x6a\xdb\x74\x19\x68\x80\
-\x2e\xb4\x35\xa7\xa8\x3a\x34\xbe\xdb\x86\x7c\x4d\xdd\x7d\x6f\x9c\
-\x72\xa8\x16\xde\x98\x6f\x7c\xf3\xd6\x00\x00\x40\x00\x49\x44\x41\
-\x54\x1e\x83\xfc\x0a\xd6\x07\x6c\xf6\xd1\x0b\x7b\xeb\xfa\xd7\xfa\
-\x35\x93\x5f\xb8\xfe\x5e\x4f\x0e\xde\x75\x3b\xa0\x6f\x7d\x7d\x9d\
-\xbd\x2b\xd1\xf5\x1b\xbf\x35\x0c\xff\xe0\x1f\x0d\xc3\x87\xe3\x85\
-\xe4\xa9\xf7\xff\xd5\x7e\xfe\x2f\x5d\xff\x9e\x93\x93\x9f\x4d\xda\
-\x67\x8d\xcc\xd3\xfa\x16\xfb\xff\xbc\x02\xb7\xa1\x8c\x34\x84\x76\
-\xf9\x32\xd0\xe9\x10\x49\xc5\x07\x95\x08\x33\x8d\x38\x78\x7a\x50\
-\xf3\x22\x05\x4a\x25\xfb\xcc\x74\x98\xef\x86\xec\x23\xd3\x9b\x1d\
-\x65\x23\xa3\x7d\x19\x98\x45\xcd\x5f\xae\x39\xd3\xa1\x40\xad\xaf\
-\x84\xfa\x5b\xcd\x07\x71\x37\x1d\x78\xf7\x3b\x87\xe1\x87\xff\x9d\
-\x61\xf8\xa1\x1f\x1c\x86\x7f\xe5\xcb\x2e\x70\x3f\xe5\x43\x1e\xe7\
-\x9e\xe7\x40\x16\xb5\x06\xe4\x33\x9f\xe9\x50\x78\x25\x9d\xff\xa7\
-\xa8\xbf\xf5\xf1\x42\x44\xce\x31\xd3\x9b\xdd\x67\x23\xa3\x7d\x19\
-\x98\x45\xcd\x9f\xed\xb9\xbf\x80\xe8\x95\x55\x97\x5e\x04\xc0\xc9\
-\xcb\x99\x64\x3d\x0f\x99\x87\x4e\x42\xf7\x65\xeb\xe6\x3f\x68\xf7\
-\x25\x3d\x0d\x30\xd3\x99\xe7\x4a\x1b\x27\xec\x84\xbd\x2b\xc7\x90\
-\x4a\xe8\xb7\xfc\xee\xa9\xfe\x5c\x4b\x94\x3f\xcb\x37\xd5\xe0\x2a\
-\xd9\xe6\xd2\xf5\x47\x0e\x07\xdc\x5f\x07\xde\xf7\x9e\x61\xf8\x0f\
-\xff\xdd\x61\xf8\xee\xef\x18\x86\xd7\xe8\x8e\xee\xed\x7d\x3e\x1b\
-\x51\xc2\xec\x3c\x1d\xe7\xff\x7a\xcf\xbf\x07\x1c\xa3\xd9\x7e\x69\
-\xab\xd9\x57\xf9\x83\xbe\xe2\xfe\x3f\xef\x2f\x14\x76\x70\xf2\x8b\
-\x87\x92\x22\x31\x50\xf9\xcd\x12\x94\x9d\x92\x0d\x7b\xa9\x38\xed\
-\x44\xa2\x97\xe4\xe8\x05\xe6\xfa\x8b\x68\x75\x49\x9e\xa0\x1b\x28\
-\xae\x06\xf1\x57\xd0\x6d\x4d\x47\x88\x1f\xd0\xfd\xe4\x04\xa9\x1b\
-\xcc\xb1\x5c\x39\xe2\x8a\x26\x2e\xb4\xb0\x33\xaa\x7b\xf5\xd6\x79\
-\x9a\x74\xc9\x0f\x18\x79\x8a\xb7\x98\xaf\xf4\x35\x84\x1b\x2e\xaf\
-\xf5\x9c\x3f\x77\x76\x4c\xf7\xd8\x81\x17\xec\x5b\x5b\xdf\xf3\x5d\
-\xc3\xf0\x17\x7f\x68\x18\xbe\xec\x4b\x23\xc3\x4b\xef\xbf\x1f\x46\
-\xf3\xbd\x70\x1e\x3d\x2a\x31\xb5\x80\x16\x66\xda\x15\xe7\x53\x75\
-\xaf\x38\xce\x5b\x88\xb7\x7a\x5e\x73\x4c\x72\x38\x83\xab\xfe\x6a\
-\x82\xf2\x25\x1e\x3e\x55\x92\x68\x06\xf4\x92\x1c\xbd\x2d\x48\x1c\
-\xd0\x7c\xae\xe6\x5b\xe3\x93\xc7\x02\xae\xfa\xeb\xd4\xff\xbc\x6f\
-\x92\x09\x64\x2c\xbf\xa0\xc7\xb6\x09\x6c\x8d\x71\xc6\x58\xb1\x07\
-\x0c\x1b\xd1\xf2\xdf\x50\x2a\xc1\x1b\x05\xa3\x1c\xde\x44\x57\x7a\
-\x76\xe9\x2d\x2f\x28\xf3\x3d\x43\x69\xc9\x27\xd8\xf3\xef\xb1\x5d\
-\x30\x2a\x2b\x16\x3c\x8f\xab\xa5\xf1\xe4\x43\x97\x26\x70\x24\x10\
-\x48\x38\xea\x82\xb2\x73\x77\xa0\x0b\x46\xde\x28\x38\xd1\xae\x17\
-\xf6\xcd\xc6\x88\x5c\x7f\x7e\xfb\x2f\x57\x1a\x9e\x6f\x20\x79\x82\
-\xca\x53\xbe\xc0\xe6\x37\xe9\x53\x6b\xcb\xc7\x95\x46\xbf\xf8\x01\
-\xa9\x1b\x34\x37\xc7\x78\x06\x3a\xf0\xb6\xb7\x0e\xc3\x7f\xf0\xe7\
-\xc7\xcf\x48\xb4\x97\xed\x1c\xa4\xbd\x7e\xd0\xfe\xfb\x41\xb0\x06\
-\x80\x46\xca\xbf\x86\xc7\xc9\xb1\xc4\x73\xc1\x09\xc5\xc8\x3c\xd1\
-\x35\xbf\xbb\x3e\xff\xd4\x0d\x46\xfe\x5e\xa6\x6a\x8b\xfa\x1a\xae\
-\xd4\x2f\xf1\xde\x21\xdf\x1a\x1e\xc3\x68\xa5\x22\x5a\xe8\x74\x42\
-\xa9\xb6\x5c\x6c\xe1\xb6\x09\x7d\x3f\x5c\x69\xd9\x9f\x9c\xca\x6f\
-\x0b\x00\x2d\xb4\x21\x9f\xcf\xcb\xc7\xd6\x04\x3c\xa1\x48\x42\xb4\
-\x27\x1d\xe8\x81\xc2\x97\x9c\xf7\x46\xd6\xc9\x34\xba\x5e\xa4\x2d\
-\x40\xf8\x5b\x31\xfb\xcc\x34\xf6\xaa\x55\x43\xa8\x4b\x3a\x60\xa6\
-\x91\x7b\xbd\xd2\x31\x46\xef\x72\x1b\x93\x09\x75\x69\x80\xe3\x6a\
-\x3a\x23\x5b\xd2\xa7\x6e\x62\xc9\x1a\xde\xd4\x53\x7f\xb5\xea\x3f\
-\xcc\xa8\x4f\xfa\xa2\xc9\x07\x1a\xb9\xe7\x21\x1d\x31\x8e\xf1\xcc\
-\x74\xe0\x75\xaf\x1b\x86\x3f\xf7\x03\xc3\xf0\xc7\xed\x1d\x09\x67\
-\x42\xc9\xb3\x8d\xec\xef\x9e\xfd\xe7\x4c\x66\x74\x7b\x73\xc6\xf9\
-\x51\x8c\x1c\x4f\xeb\x3c\x90\x2d\xe9\x73\xce\x88\x21\x5b\x78\xd9\
-\xcf\x12\xbd\xea\x3f\x0c\xef\xa1\xfe\xa5\x1a\x1e\xc3\xbf\x45\xfd\
-\xe3\x67\x20\x96\xb5\x9a\xaa\x04\xc0\x9c\x4c\x2b\x2a\x33\x8d\x96\
-\xae\x8c\xd8\x10\x11\xce\x0b\x06\x74\x2c\xc7\x87\xb0\x62\x18\x83\
-\x83\x01\xb6\x18\x0f\x24\xdc\x27\xbe\x85\x76\x29\x5d\x30\xa7\x6e\
-\x6c\x1f\x92\x69\x08\xd1\x03\x7b\xfa\xed\xee\x90\xd0\x2e\xb7\x0f\
-\x74\xda\x26\x50\x04\xb4\xd0\xaf\xe0\x6d\xad\x9f\xde\x2c\xe9\x57\
-\xf9\x24\xc6\x98\xa2\xc7\x8d\x74\x8d\x33\xf6\xc4\x09\x9b\xa4\xaf\
-\xe1\x76\x86\xd2\x13\xbd\xa4\x6f\xa2\x63\x3c\x43\x1d\xf8\xee\xef\
-\x1c\x86\xef\xfb\x93\xf6\x55\xa2\x6d\xa8\xf6\x54\x03\x14\xbd\x7b\
-\xff\x31\x16\xda\xe5\xf6\x81\x4e\xdb\x04\x8a\x80\x16\xfa\x15\xbc\
-\xa5\xf3\xac\x9c\xf2\xa8\xe7\x5b\x32\x78\x99\xc6\xdf\x24\x86\x29\
-\x28\x4d\xf1\x22\x5d\x99\xdc\x4d\xfd\x9e\xcc\x8e\x89\xba\x41\x99\
-\x42\xdf\xb2\xfe\xf1\x27\xd1\xd5\x65\x25\x34\x42\x43\x3f\x24\xec\
-\x00\x0a\xec\x8a\xd6\xd0\x42\x8d\x8a\xd8\xe2\x58\x3a\x99\xd6\xfa\
-\x82\x43\x8d\xf4\x94\x52\x8c\x44\xba\xd0\x9b\x4e\x9e\x12\xba\xc1\
-\x98\x04\xba\xa0\x64\xe7\xf4\x9b\x2d\xfe\x2a\x16\xff\x1e\xa5\x39\
-\xdf\x50\x78\xf5\x27\x13\x78\x1d\xf3\x27\xaf\xbf\x13\xf3\x60\xdd\
-\x77\x07\xbe\xf9\x5f\x1d\x86\x2f\xfe\xa2\x61\xf8\xeb\x7f\x73\xcc\
-\xf3\xdc\x79\xe6\x68\x82\xc7\xf9\xbf\xf1\xfd\x9f\x8f\x16\xf7\x3d\
-\x98\x65\x41\x3f\xf9\xfd\x5f\x9f\x67\x96\x8b\x7f\x06\xe2\x0f\x25\
-\x5b\xf8\xc1\x09\x74\xda\x26\xd0\x09\x25\x2f\x86\x50\x7a\x41\x0b\
-\x9d\x96\xd8\x0d\x8c\x10\x3d\x82\xa3\xd3\xe1\x1b\xfb\xe6\x4b\x42\
-\xbb\xdc\x16\x0c\xdb\xad\x20\x17\xfe\x3d\xd4\x40\xff\x0c\xc1\xe2\
-\x81\x1e\xd3\x95\x4c\x41\x98\x69\xea\x31\xb6\xd7\x15\x62\xcf\x49\
-\xbc\x25\xfd\xf0\xf1\x14\xf5\x4f\x7a\x41\x7c\x72\x11\xda\x10\x5b\
-\x03\xf1\x93\xd6\x3f\x86\x3a\xe6\x67\xb0\x03\xfa\x99\x91\x1f\xf8\
-\xbe\x38\x28\x3a\xeb\xed\xc0\x24\x5e\xba\x37\x11\x4b\x4f\xf4\xa2\
-\xbe\x84\xb2\x93\x9e\x2b\x9e\x10\x33\xd0\xc5\x29\x46\xef\x7e\xcc\
-\x67\x3e\xd3\x2d\x3e\xce\x84\x36\x22\x64\x13\x3f\xe9\xf9\x57\x30\
-\x7a\x27\x8c\xba\xc1\xdd\xf5\xab\x80\x3d\x23\x17\x1b\x76\x99\xe5\
-\xe9\x45\x7f\xd5\x07\x9e\x7b\xe0\x24\x77\x29\xbb\x41\xc2\xb0\xf5\
-\x7a\x82\x2d\x1d\xa9\x9d\x1a\x5c\xf4\x4d\x38\x79\x07\x62\x3e\x5c\
-\xd9\x31\xe9\xba\x93\x90\x09\x46\xaf\xd1\x4f\x13\x36\xfd\xa0\x69\
-\xa6\xf8\xa2\xb7\xca\xd1\x03\x3d\xd6\x9e\x89\x44\x03\x05\x9e\x43\
-\xf8\x70\x3a\xe5\x43\x1d\xa0\xc7\x4d\xf2\x6a\x8f\x1e\x58\xfd\x51\
-\xeb\xa5\xea\xaf\xf1\xa9\xc5\xf3\xec\xf5\x45\x06\x1a\x81\x5d\x7b\
-\x63\x36\xfb\xa2\xef\xfc\x24\xaf\xf6\xa3\xf3\x63\x7e\x16\x3b\xf0\
-\x8d\x7f\xc4\x7e\x13\xb0\xfd\x82\xc6\xbf\xf5\x77\x1f\xb1\xff\x9d\
-\xf3\xc2\x99\x57\x4f\xa0\x5f\xb1\xe7\xff\xc2\xf5\xef\x39\x47\xf9\
-\x5e\x6c\xf7\x6f\x75\x50\xf2\xcb\x36\x52\x95\x1d\x7b\xe4\xa6\x45\
-\x7f\xf5\xfe\xef\xe8\xbf\x00\xcf\x1d\xd6\xc9\x84\xfc\xc2\x34\x17\
-\x79\x06\x46\x2d\x56\x30\x75\x80\x6f\x50\xd2\x4c\x4f\xb5\x47\x19\
-\x21\xaa\xec\x12\x6b\x62\x83\xab\x3e\x4d\xf1\x96\xf5\xd3\x0b\xda\
-\xfd\xb2\xfd\x3a\x71\xff\x2a\xcb\xd0\x87\x09\xc4\x7b\xcc\x7e\x84\
-\xa7\x3e\xd4\xfa\xfb\x5a\x07\xf7\x19\xe9\xc0\xb7\x7f\xcb\xf8\x5b\
-\x7f\x7f\xea\xe7\x36\x26\x5c\xf7\xbf\x1e\xc8\x15\x37\xdc\x67\xa0\
-\xd4\x33\x5d\xcd\x25\x23\x84\x64\xd0\x42\x8d\x9b\x9f\xff\x9a\xd0\
-\x98\xd6\xe2\x4c\xad\xa0\xd7\xb0\xa8\x7d\x5e\xe0\xa1\x6f\x7d\xff\
-\x77\xea\xf7\x0f\xd1\x49\x9d\x8d\x12\x3a\x6d\x13\x38\x12\x08\x46\
-\x0b\xbe\xd2\x10\x66\x7a\xd1\x9f\xe9\xb9\x3f\x75\x54\x36\x52\x0c\
-\x14\x2d\x19\x28\xd1\xde\x91\x73\x10\xed\xfe\x02\x3d\xae\x39\x04\
-\x7b\xbe\x91\x09\x9d\xb6\x09\x6c\x86\xce\x18\xad\x6b\x3c\x71\xe1\
-\x89\x46\x55\xe8\x74\xe4\xe2\x45\x1a\x6d\xff\x16\xeb\x97\xbe\xe4\
-\xa0\xeb\xda\x02\x9c\x38\x97\x1f\x1b\xc4\x16\xea\x72\xdb\x40\xd1\
-\x1a\xe0\xb8\x9a\xce\xc8\x84\x4e\xdb\x04\x4e\x35\x8f\xd5\xb3\xda\
-\x81\xef\xfd\x9e\x61\x78\xef\xbb\xfb\xd9\xfb\x5e\x9b\x48\xc8\xbe\
-\x83\x23\x03\xc1\x68\x5f\xcf\x9b\xb8\xf0\x44\xcf\xfc\xc5\x59\x7c\
-\x26\xcf\x7f\x2e\x46\xc5\xd9\xa0\x56\x61\xa6\x47\xe9\x4a\xfd\x28\
-\x6d\x44\x0b\xe1\x0e\xc1\x49\x73\xc3\x47\xce\x41\xb4\x52\x06\x3b\
-\xe9\x87\xd5\x09\xb2\x8e\xd3\x36\x81\x4b\xf1\xc6\xcf\x40\x16\x12\
-\xd0\x46\x7b\x52\xca\xda\x33\x4f\x28\x9b\x1a\x51\x3a\xe2\x85\xbe\
-\x9b\xd8\x14\x4b\x59\x34\x37\xbe\x28\x53\x6e\x40\x11\xad\x2f\x15\
-\x84\xd8\x42\xbb\x3c\x7e\xa0\xd3\x36\x81\x2d\x11\x67\x8c\xee\x73\
-\x7c\xea\x06\x7b\xfa\x4f\x59\x3f\x71\xc1\x6e\x7c\x72\x17\xea\x7a\
-\xca\xfa\xc7\x16\x1d\xf3\x33\xde\x81\xe7\xed\x4b\xc6\x7f\xeb\xdf\
-\x1c\x86\x37\xbd\x31\x0a\xe1\x0c\xd9\xd2\xcf\x5a\x20\xe7\x0e\xec\
-\x9e\x3f\x9d\x37\x0d\x61\x3e\x7b\x71\x1e\xdd\xb5\x4d\xb1\x74\x55\
-\xe7\x39\x35\x9f\x76\xc7\xc7\x19\x01\x72\x0e\x46\xbb\x38\xd0\x69\
-\x9b\xc0\x5e\x3d\xbb\xe3\x2b\x9e\x86\x50\x97\x9c\x83\x29\x96\xd8\
-\x1e\x37\xa1\x91\xfb\x46\xcf\x41\xe6\x89\x26\x76\xe4\xe3\x62\xa3\
-\x85\x4e\xdb\x04\xf6\x12\x7a\x48\xfd\x93\x77\x20\xab\x15\x79\xf4\
-\xc8\x46\x74\xbd\x4a\x01\x2e\x87\x27\x5d\x68\x61\xa6\xf1\x63\xec\
-\x56\x98\xe8\x47\x8e\x59\x43\xcc\x1f\xbc\x07\xb9\x56\x9e\x1a\xe4\
-\x5b\x31\xd7\x94\x69\xf4\x32\x2f\xd3\xc8\xf1\xed\x41\x6c\x92\x8e\
-\x86\x30\xd3\xce\x5c\x9f\xa8\x55\x98\xe9\x75\xcb\x43\xe3\x95\xdc\
-\x81\x37\xbe\x61\x18\x7e\xd0\x7e\x4e\xc4\x3f\x60\xdd\x53\xa8\xce\
-\xa9\x06\xe7\xb5\x62\x3e\xd3\x99\x46\x2f\xf3\x32\x8d\x1c\xdf\x1e\
-\xc4\x26\xe9\x68\x08\x33\xed\xcc\xf5\x29\x9f\xf9\x4c\xaf\x5b\x2e\
-\x68\x28\x4f\x0d\xf2\xad\x98\x6b\xca\x34\x7a\x99\x37\x7a\xda\x3e\
-\xdf\x69\xfd\xfe\x02\xb2\xf4\x80\xa9\xfd\xa2\x77\x54\x5d\xe5\xee\
-\xc7\x84\xf8\xf3\xbe\xd9\xe4\x18\x46\xd8\x64\x5f\x4b\x72\xe2\x6c\
-\xc5\x7c\x48\x44\xfb\x7e\x05\xf6\xfa\x5f\xf5\x3d\xa7\x94\x20\xa4\
-\x30\xd3\xe4\x93\x79\xae\x63\x53\xc3\x4c\x6f\xb4\xf7\xf8\x38\x97\
-\x8d\x9c\x05\x8a\xae\x17\x32\x57\x0a\x3d\x78\xd2\xbd\x64\xfd\xc4\
-\x38\xf0\x95\xd1\x81\x77\xd9\x2f\x62\xfc\xae\x6f\x1f\x6b\xe1\x5c\
-\x69\x25\x9a\x01\x29\xcc\xf4\x92\xdc\xfd\x48\xd7\x94\x27\xf4\x46\
-\x7b\xf9\x25\x8e\xd3\xb1\x68\xfe\xf0\x1b\x98\x75\x32\x8d\xfe\x25\
-\xcf\x3f\x79\x81\x1e\x4f\x93\x0d\xf1\xfc\xb2\xa9\x61\xa6\x43\x8e\
-\xae\x70\xef\xa0\xa6\x8c\xf2\xa1\x35\x03\x1a\x9d\x6b\xd4\x3f\x79\
-\x07\x42\x2e\xde\x84\xc8\x0a\x1e\x49\x9e\xc3\xfc\x90\x16\x5d\x2f\
-\x15\x46\x51\xb9\xd8\x73\x3e\xaf\x29\xa3\xd6\x7b\xa9\xbf\xf6\x53\
-\xbd\x80\xf7\x14\x7d\x79\x6c\xfd\x4f\x91\xd3\xe1\xf3\xe9\x3a\xa0\
-\xdf\x9d\xf5\x76\xfb\xd5\x27\x8c\xc7\xee\x3f\x67\x53\xd8\xbb\xf6\
-\xde\xff\xd5\x9f\xf2\x84\x47\xce\x97\xc4\x6b\xd6\xbf\x37\x6f\xea\
-\x06\xf7\xda\x6f\xd1\x7f\x48\xfd\xcf\xf3\x20\xdf\x14\x20\x22\xc8\
-\xc6\xed\x12\xea\xa5\xd7\xc5\x81\xa2\x5d\x0f\x74\xe1\xf4\x15\x93\
-\x66\x08\x75\x49\x05\x34\x72\xd7\x50\x2c\xb7\x0d\xc4\x0f\x28\xdf\
-\x6b\xf9\xac\x05\xf4\x9a\xf1\xe3\x0e\xa3\x1e\x68\x39\x30\x3a\x96\
-\xab\xf1\x94\x9b\x86\x90\x3c\x41\xf7\x81\x2f\xa1\x18\x36\xc0\x4c\
-\x7b\x5d\x26\x77\xdb\x40\xfc\x80\x32\x77\x3d\xb0\xe3\x4f\x3e\x8f\
-\xf1\xea\xe9\x80\xfe\xb6\xc8\x9f\xf9\x7e\x3b\x37\x3a\x24\x1b\x06\
-\x67\x8f\xf3\xe6\x67\xdd\x0f\x96\x19\x1b\xfa\x91\x0a\x74\x36\xb4\
-\x50\x0c\xa9\x05\x8a\x26\xac\x90\x73\x0a\x4a\xcd\xe3\x80\x1d\x7b\
-\x7c\xb9\x9e\xc9\xdd\x36\x10\x3f\xe0\x16\x7f\x16\xea\xec\xa8\xf1\
-\x1e\x5b\xff\xd9\x60\x45\x98\x63\x23\xca\x3c\xd1\xb7\xa8\x7f\xf2\
-\x0e\x64\x3c\x01\x96\x9e\x77\xbb\x83\xec\x86\xb0\x77\xa9\x32\xf1\
-\x19\xd0\xe8\x8a\x0f\xcf\xc8\xda\x00\x89\xe1\x89\xde\x35\xcc\xaf\
-\xd2\x96\x7f\xd2\xd7\xd2\x79\x22\xb6\x0c\x94\x71\x50\x51\xb9\x8b\
-\x27\xec\x5d\x8a\x21\x3e\x03\x1a\x5d\xf1\xe1\x19\x49\xad\xc2\x4c\
-\x63\xbe\x8a\xf8\x0a\xff\x4a\x4d\xfe\x49\x5b\x4b\xe7\x89\xd8\x32\
-\x50\xc6\x41\xc6\x2d\xf6\x87\xce\x33\xd7\x81\xb7\xbe\x65\x18\xf4\
-\xd3\xea\x3e\xce\xed\xbf\x64\x3a\x67\x60\x9c\x39\xe7\x41\xcb\x89\
-\x68\x06\xf4\x82\x3c\x9f\xf9\x4c\x63\xbe\x8a\xc5\xbf\xa7\x6f\x3c\
-\xa1\xd3\x09\x57\x7d\x49\x21\x1b\xe1\x24\xa3\xe2\x69\x4d\x3d\x15\
-\xe5\x43\x3c\x06\x34\x7a\xe2\xc3\x43\xe7\x31\x88\xaf\xf0\xef\xe9\
-\x1b\x4d\xca\x72\xed\xbc\xad\x31\x50\xc6\x41\x45\xc5\x11\x2f\xe2\
-\x09\xc7\x17\x10\x14\x8b\x82\xd8\x52\x42\xac\xa5\xf3\x44\xd8\xc8\
-\x9b\xee\xb4\x09\x41\x29\x42\x0b\x33\xdd\x1c\xd6\x78\x72\xae\x78\
-\xc2\x87\x0c\xec\x84\x76\xe5\x98\xf8\x04\xdd\x7d\xd1\xf7\xc6\x88\
-\xa7\xbc\xa2\x6e\x30\xab\xba\xad\x4d\xf8\x12\x3a\x9d\xb0\x1b\xbf\
-\xc8\x67\xf1\x14\x24\xea\xcf\xbe\x17\xe3\xa5\x1c\x5c\x47\xf6\x1a\
-\xc2\x14\xab\xe5\x27\x36\x3a\xe8\x81\xe2\xab\x6e\xb0\xd4\x2f\xb5\
-\x63\xbc\x32\x3b\xa0\x3f\x93\xfb\xba\xd7\x5a\x6d\x67\xf6\x9f\x63\
-\x03\xaa\x13\x9c\xa5\x76\xbe\x4c\xe8\x3c\x29\x25\x7a\x49\x3e\x8b\
-\x27\xbb\x3b\x3d\xff\x4a\x4d\x03\x74\x3a\x16\x4b\xf5\xd1\x8b\xae\
-\xdc\xbd\xed\x9b\xdc\x9f\x72\xb0\xb8\x99\x6e\x5e\x48\x4e\x88\x4e\
-\xe0\x16\xfd\xd9\x7e\xc8\x71\x3c\x07\xb2\x6b\xe2\xc9\xe7\xf8\xf7\
-\x40\x82\x93\x83\x88\xf6\xf3\x14\x98\x69\xc9\x7a\xf2\x88\x87\xff\
-\xf6\xd6\x58\x6f\x91\x79\x9b\x0c\xba\x92\xf9\x69\x98\xe9\x60\xef\
-\x81\x9c\x3b\x76\xc4\x6a\xf1\xc9\x43\xc5\xe8\xd2\x00\x8d\xcc\x3e\
-\x7a\xf5\x65\x5e\xa6\x17\xdc\x4d\x6a\xce\xb9\x78\x5c\x4d\xb9\xe6\
-\x4c\x37\x85\x29\x41\xaa\xc4\xcb\x39\x88\xd6\x00\x45\xe7\x98\x4e\
-\x9b\x21\xd8\xea\xc6\x69\xb2\x95\x8f\xec\x3b\xa9\xc8\xed\x31\x5e\
-\x61\x1d\x78\x83\xfd\xaf\x2c\xfd\x31\x2a\xce\x4e\x6f\xff\x75\x06\
-\xf2\x99\xc8\xb4\x64\x9c\x11\x50\x2d\x9a\x9d\xbf\xc4\x93\xfc\x59\
-\x3a\xff\x4f\x52\xbf\x37\x61\xfb\x44\x6f\x85\xbd\x7c\xe4\x89\x3d\
-\x14\x3d\xeb\xbf\x19\x3d\xf4\xfe\xef\xc5\x13\xcf\xff\x26\xba\x82\
-\x31\x78\x8e\xb1\xce\x28\x03\x0d\x50\xba\xee\xd8\xb9\x9d\x09\x67\
-\x4b\x88\x71\x38\x2c\xcb\x8e\xc3\x65\x56\xb6\x25\xdc\xe4\x80\x2e\
-\x99\x36\xe5\x51\xa1\x2c\x27\x56\x91\xe6\xd5\xea\x57\x2e\xd4\x35\
-\x49\x24\x16\xc8\xc8\x6b\xa6\x4f\x31\x60\xcf\x49\x91\x95\x65\xcf\
-\xe2\xe0\xbd\x02\x3b\xf0\xad\xdf\x6c\x7f\x5f\xfd\xa7\x86\xe1\xb3\
-\x9f\x5d\x2e\x8e\x73\x06\xea\xac\x70\x06\xbb\x56\x1c\xa6\x25\xc4\
-\x38\x1c\x96\xa5\xdf\xbe\xf0\x7a\xfe\x91\x85\xf9\x5c\xbf\xc6\xed\
-\x39\x41\x27\x64\x65\x39\xb1\x20\x0e\x28\x5d\x72\x98\x28\xb2\xc0\
-\xd9\x12\xa2\xb7\x01\x71\x91\x55\x89\xbd\x98\x0f\x46\x60\x36\x86\
-\x2e\xb2\xb2\x44\xcb\x91\x38\xa0\x74\x27\x3f\x48\x38\xd1\xb6\x05\
-\xaf\x66\xc2\xde\x25\x7d\x74\xaa\xad\xd6\x04\x12\x3a\x6d\x13\xd8\
-\x3a\x2f\x86\x32\x51\x0c\x83\x86\xa2\x1f\x3b\xdc\xa1\x39\x09\xff\
-\x33\x94\x7f\x74\x3a\xb1\xa8\xad\x57\x7b\x96\x75\x4c\x9d\xe5\xb5\
-\x1a\x25\xa4\x6e\x70\xad\x7e\xa5\x25\x5d\xd0\xed\xf0\x63\xb8\x69\
-\x50\x9b\xb0\x77\xc9\x09\x3a\x1d\x87\x5b\x6a\xec\x98\x1d\xac\x67\
-\xb0\x03\xaf\xb7\xbf\x21\xf2\x2d\x7c\x16\x12\xf9\xe7\xfd\xef\xdd\
-\x03\x52\x43\xa7\x57\x72\x3e\xb3\x9c\x7b\x70\x72\xb8\xe3\x6c\xfa\
-\x51\xb4\x29\x96\x13\x95\xec\xab\x17\xab\xcb\x73\x87\x4a\x72\xe1\
-\x92\x11\x3a\xa2\xcb\xa0\xb6\x5e\xed\x59\x56\xcc\xda\x32\xe7\x4c\
-\xdd\x60\x53\xda\x48\x64\x5f\x1b\x4d\x4e\xb5\x3d\x61\xfd\x93\x6f\
-\x61\xcd\x12\xcb\x59\x8b\xae\x97\x12\x13\x6f\x21\x41\xdf\x1b\x9b\
-\x10\x8b\x80\xe7\x04\xb6\xf8\x95\x10\x9e\x91\x7b\x46\x77\x43\xe5\
-\x4b\x03\xff\x15\x91\xb9\x52\x67\x5a\xb3\xcf\xf9\x8a\x2e\x97\x96\
-\xd4\x9c\xe9\xa6\x27\xff\x12\x90\x17\xb4\xd0\x2e\xaf\x29\xb0\x57\
-\x5f\xe6\x65\xda\xac\xc7\xb1\x96\xbf\xb4\xd0\x09\x93\x09\x20\x03\
-\x27\xc2\x63\xf1\x4a\xeb\xc0\xfb\xbf\xd5\x8e\x43\xde\x6b\x68\x61\
-\xef\x2a\xe7\xb5\x9d\x6b\xce\xaf\x1a\xa4\xf3\x3b\x42\xa3\x1b\x43\
-\x3e\xf1\x91\x69\xec\x13\xf6\xce\x77\xe6\x65\x5a\x61\x7d\xc8\xa7\
-\x46\x2f\xf7\x2c\x1b\xb5\xe6\x73\xd6\xe9\xf9\x20\xf7\xc8\xb3\xd5\
-\x45\xde\xf2\x68\x34\x62\x68\x67\xcc\xa3\x9d\xe5\xf4\xea\xcb\xbc\
-\x4c\x37\x47\x6b\xf9\x4b\x11\x9d\x66\x94\x08\x64\xbd\xda\xc5\xb3\
-\xc2\x5e\x68\x45\x85\x2f\x15\x8b\x9d\x13\x89\xa1\x24\x75\xc0\x48\
-\xd6\x7d\x88\x47\x4c\x67\x24\x07\xd8\x0a\x19\x3d\x1a\x5e\xb5\xc7\
-\x66\x23\x7a\x7e\xa6\x3b\xc9\xcf\xd6\x2d\xbf\xe2\xa7\xa6\x37\x0b\
-\x5f\x18\x57\xaf\xbf\x26\x58\xf2\xaf\xcb\xa7\xae\xbf\xc6\xbb\xf6\
-\xfa\xc5\x17\x87\xe1\xc7\xff\x2f\x8b\xca\x86\x96\xfe\xb0\x6c\xf2\
-\x9d\x09\xe2\x56\x67\xdc\x2f\xfb\x2f\x26\xe2\x3d\x6f\xff\xdd\x55\
-\xbf\x02\x44\x97\xfe\xf6\xf8\x0b\xf6\x3b\xac\x5f\x6b\x1f\x3a\xbf\
-\x5e\x97\xfd\xad\x8d\x37\x7e\xb1\xfd\x6a\x90\x37\x0d\xc3\x97\xd8\
-\x25\x9d\x67\x75\xbc\xf9\x4b\x86\xe1\x0f\x7f\xcd\x30\xfc\xea\x3f\
-\x8f\x0a\x54\x7c\x6b\xea\x78\x5f\x5d\xf5\xfe\x27\xb6\x70\xc3\x78\
-\xea\xf3\x7f\xf1\xfb\x7f\x43\x4d\x7b\x54\x6e\x51\xbf\xff\x36\x5e\
-\x1d\x0a\x8d\x59\x83\x6c\xe3\x7c\x0f\x63\x03\x5d\xcf\xe8\xad\xfa\
-\xd8\x86\x79\x7b\xf1\x59\xb2\xf7\x60\x9e\x88\xa7\xb3\x6b\xf2\x58\
-\x56\x07\x35\xb8\x31\xb9\x46\x02\xae\x63\x82\x58\xae\xe6\xf3\x9c\
-\x29\xba\x4d\x18\xdc\xa4\x7e\x92\xb5\xbc\x6b\x3e\xe4\x86\x8a\xf2\
-\x7b\xca\xfa\x77\x6d\xc8\x13\x28\x7f\xfa\x33\xc3\xf0\x0b\xbf\x3c\
-\x3e\xd4\xe5\xde\xeb\x0f\xd4\xba\x57\xbf\xbf\x02\x44\x83\xd6\xf4\
-\xe9\x9d\xd0\xfd\xd9\x84\x4d\x8f\x51\xf5\x5f\x63\x2f\x1e\x6f\xf9\
-\x8a\x61\x78\xd7\x3b\x86\xe1\x7d\xef\xb1\x5f\x5a\x68\xd7\x1b\xec\
-\xc5\xe5\x59\x1a\xfa\xb5\xef\xff\x4f\xbc\x80\xd4\xf3\xf6\x6a\x3f\
-\xff\x97\xae\x7f\xcf\xb9\xf0\x73\x68\x13\x28\x5b\x68\xa1\x46\xef\
-\xfc\x93\xb3\xe4\xae\x1f\xa8\x75\xd5\xaf\xe7\x79\xcb\xfe\xbf\xe0\
-\xaf\x1d\x91\x01\xb4\x63\x27\xa0\x67\xa0\xc8\x49\xdf\x83\x8a\x67\
-\x63\x96\x60\xe2\xb9\xdc\x14\xe4\x9b\x1b\x14\x9e\x50\xc3\x65\x81\
-\xce\xd8\x39\xe1\x17\x74\xf3\xc8\x55\xf4\xcc\x7f\xe4\x93\xeb\x11\
-\x7d\x2f\xf5\x2b\x75\x72\xf6\x5a\x56\x26\xea\x06\x5d\xfd\x92\xf5\
-\xaf\xc4\xbf\xb5\x98\xba\xc1\x8b\xd7\x4f\x2f\x03\x7d\x6f\x8c\xe6\
-\xbc\x7c\xc1\x7e\xdd\xf6\x47\x7f\x67\x18\x3e\x62\xd7\xcf\xfe\x93\
-\x91\xff\x16\xfb\x39\x8b\x6f\xfa\x86\xf1\x67\x2d\xbe\xc8\xde\xad\
-\xdc\xfb\xf8\xda\xaf\xb6\x77\x55\xf6\x79\x88\x3e\x4c\x57\x99\x93\
-\xf3\xb7\x52\x7f\xd5\xc7\x96\xfe\x68\x5f\x9c\x87\x1f\xf3\x9f\xf7\
-\x6a\xa6\x5f\xe3\xaf\x34\x0f\x5f\xa0\xab\xa7\x58\xd5\x7f\xbb\xd7\
-\x43\xc7\xf3\x8c\x1c\x65\x2b\x36\x36\x13\x5f\x49\x9f\x9a\x7a\xfa\
-\xd8\xba\x5f\xf9\x0b\xdf\x93\xfc\xdc\xf1\x65\x26\xfc\x82\xee\x35\
-\x72\x15\x5d\xf3\xb9\x44\xfd\xfe\x93\xe8\x8a\xd1\xbb\xc4\xf4\xf8\
-\x08\x95\x85\x33\x44\xac\x0f\x54\x97\xcc\x69\xac\xd0\x8b\x33\x45\
-\x70\xdd\xfb\x5c\xa3\xfa\x93\x06\x3c\xd1\x34\x56\xe8\x57\xf0\xc8\
-\xaf\xe2\x2d\xeb\xcf\xb9\x2a\x77\x8d\xcc\xcb\xf4\x28\x3d\xd5\xaa\
-\x9a\xa9\x1b\xec\xd9\x7b\xbd\xea\x85\x7c\x77\xae\x49\xfd\x72\x70\
-\xe3\x91\x6b\xce\x34\x69\x51\xeb\x93\xd4\xaf\x06\x69\x80\xe3\xea\
-\xec\x2c\xd5\xdf\xf9\xd8\x30\xfc\xed\xbf\x37\x0c\xff\xe5\x7f\x33\
-\x0c\xff\xdb\x8f\x0f\xc3\xc7\x3e\x7e\xd6\xe4\xe6\x42\x7d\x7b\x4e\
-\x7f\xc1\xd0\xcb\xb4\x09\x6c\x75\x3b\x63\x5b\x9a\xa8\x0a\x33\x8d\
-\x75\xdd\x2f\xed\xa9\x78\xc2\xde\xfe\x66\x5e\xa6\x97\xfc\x89\x4f\
-\x0c\xd1\xd9\x46\xb4\x72\x6a\x28\xba\x5c\x62\x88\xd7\x04\xd0\xc2\
-\x0d\xc3\x6d\x4d\x0f\xbf\x32\x81\xb7\xc1\x7c\xa6\x52\xf3\x77\x7f\
-\xc9\x21\xb5\x0a\x33\x8d\xa3\x6a\xef\x79\xd9\xe4\x68\x4a\x15\xc5\
-\x10\xaf\x09\xa0\x85\x31\xce\x7f\xc7\x36\x67\x21\x5a\xde\x40\x39\
-\xd7\x3a\x30\x27\x17\xbe\x67\x90\x75\x44\xbb\x39\x28\x6d\xf3\x2d\
-\x5e\xab\x5e\xf4\x8e\x51\xfd\xcb\x14\xde\x0e\x37\x27\xd5\x5b\xd6\
-\x9f\x63\x93\x51\xe6\x65\x3a\xe4\xd4\xea\xbd\xf5\x46\x5e\xb0\x7e\
-\x72\xb8\x25\xe6\x9a\x33\x7d\x8d\xfa\x15\x4f\x3d\x05\x75\x6e\xb5\
-\x0e\xcc\xbd\x8f\x74\x26\xf0\xf9\x2f\x0c\xc3\xcf\xff\xc2\x30\xfc\
-\x77\xff\xfd\x30\xfc\xc4\xdf\x1f\x86\xcf\x7f\x7e\x22\xbe\xab\xc5\
-\xd7\x7d\x6d\xa4\x93\x7b\x4c\xdd\xe0\xce\xfa\xe5\x31\xf7\xc8\xcf\
-\x68\xf0\xa2\x8d\xd3\xfb\x3f\xc7\x8e\x74\xda\x73\x41\xb2\x8e\xbc\
-\xfa\x97\x19\x3c\x5c\xec\xc2\x1c\x43\xb4\x12\x05\x1f\x59\xff\xae\
-\x3c\x50\xae\xf9\x88\x0f\xcf\x48\x6a\xf5\xde\x2a\xd7\xc4\x1b\x57\
-\x3b\x67\x7c\x0b\x75\x75\xea\x1f\x3f\x03\x21\x58\xd2\xeb\x85\xaa\
-\xdf\x33\xab\x3a\x4a\x1c\x1d\xc9\x72\xcc\xa6\x1b\xb1\xda\x3a\x11\
-\xd5\x3e\x89\x56\x49\xb7\x35\x2d\xb0\x67\x90\xeb\x97\xbc\x7e\x8f\
-\xaf\xca\xab\x0f\x6a\x13\xf6\x46\xcd\xff\xd2\xf5\xd7\xf8\xdd\x78\
-\xda\x83\x5e\x72\xc6\xab\xf5\xed\xad\x7f\xc1\xed\x55\xd9\xd4\xac\
-\xa0\xd0\x42\x0d\xef\xf7\x13\xd6\x5f\xfb\x3f\x46\x3d\xcd\xdd\x7c\
-\x22\x2f\xb4\x5e\xb2\x17\x92\x7f\xf0\x93\xc3\xf0\x2b\xbf\x3a\x0c\
-\x7f\xf6\x4f\x0f\xc3\xbb\xdf\x85\xe4\x7e\x50\x7f\x70\x8a\x9e\xe6\
-\xac\x2e\x51\xbf\x1f\xc2\xec\x34\xd1\xb5\x7f\x49\xe4\x64\x8d\x5f\
-\xf5\x9f\x85\xfd\x3f\x57\x7f\xad\x37\xaf\x73\xad\xea\x83\x46\xe6\
-\x69\x7d\x8b\xfa\xc7\x77\x20\x8a\x6c\x97\xe7\x15\x18\x2c\xe7\x41\
-\x7b\xc2\x91\xb8\x68\x35\x03\x14\xed\xf6\x81\xa2\xa5\x02\x66\x1a\
-\x7f\xd9\xc6\x95\x4d\xbf\xa1\xe8\xbd\xc3\x13\x30\xa3\x08\xe0\xb9\
-\x19\x2d\x74\xda\x44\xa0\xbb\x2e\xfa\xbe\xb4\x49\xd8\xbb\x64\x2b\
-\x7e\xf3\x87\x5f\x15\x17\x32\xd0\xf5\xc2\x4f\x88\x47\xdb\xe4\x1b\
-\x5d\xaf\x59\x4a\x1a\xa0\x91\x1c\x14\xa1\xd3\x8a\x81\x63\xf4\x40\
-\xd9\x4a\xa6\x21\xb4\xcb\x6b\x0d\xa4\x6e\xb0\xe9\x25\x7d\x37\xb7\
-\x49\x58\x2f\xd7\xbf\xf5\x74\xc3\xfa\xd5\x0f\xf5\x0e\xf4\x3e\xda\
-\x1a\xcc\x7b\x49\xef\xb4\x35\xae\x2f\xdb\x44\x8b\xf7\xbb\xbf\x37\
-\x0c\xff\xc3\xff\x3c\xbe\x90\xd8\xf2\xae\x86\x3e\xab\x79\xc7\xdb\
-\xe7\x67\xe0\x92\xf5\xab\x07\xb9\x67\xed\xdc\xab\x51\x31\xee\xe9\
-\xfc\xfb\x3e\x5a\x6e\x20\xfb\x0e\xe6\x5a\xa4\xe3\x7a\x09\xeb\xfe\
-\x53\xe3\x56\xe4\xbe\x07\x7b\xfd\xf2\xa0\x72\x18\x09\x78\x6e\x46\
-\x0b\x9d\x36\x11\xe8\x71\xa5\xa7\x11\xfa\xbe\xb4\x29\x96\x33\x94\
-\xad\x64\xcd\x9f\xad\x9f\x9f\x30\x42\x28\x9f\x1a\x2a\x5a\x43\xa8\
-\xcb\x75\x03\x33\x8d\xbc\xa2\xa9\x36\x1f\xa2\xeb\xa0\x98\x96\x90\
-\x29\xc0\xab\xba\x5b\xd6\xd8\x2e\xf9\x53\xce\x1a\x42\xcf\xdf\x12\
-\x06\xb3\xad\x2b\xd9\xa4\x7a\x34\xa8\xcb\x75\x6d\xdd\xec\x83\x46\
-\x5e\x11\x5b\x61\x6f\xe4\x98\x99\x46\x37\xf3\x44\xbb\x7f\x30\x94\
-\xc4\x63\x54\x7d\xf1\xe1\x89\x56\xde\x1a\x2d\x7f\x33\xf6\x9a\xe4\
-\x33\x1c\x81\xd2\xc3\x37\x28\xde\xad\x87\xf2\x53\x3e\xe4\x04\x2a\
-\x2f\x72\x77\x9d\x10\xc0\x93\xfc\x31\xf5\xcb\x9d\xf7\x2a\x30\xd3\
-\x92\xf5\x2e\x63\xb7\x3c\x45\xd7\xf1\x05\x7b\x37\xf2\xbf\xfc\x8d\
-\x61\xf8\xc7\xf6\xad\xad\x7b\x1b\xfa\x5f\x64\xd1\xc2\x56\x5b\xae\
-\x39\xd3\xbd\xda\xb3\xed\x52\x6d\xec\xcd\xd2\x7e\x55\xb9\xc7\xb1\
-\x89\x78\xf2\x4b\x1c\xa7\x63\xb1\xe4\x4f\x39\x6b\x08\x3d\x7f\xd3\
-\x07\x73\x2c\x57\xb2\x09\xdf\x42\x5d\xae\x1b\x98\x69\xe4\x15\x4d\
-\xb5\xf9\x10\xfd\x98\xe1\x35\x99\x83\x86\xe1\x4c\x31\x19\xb9\x86\
-\x4c\x23\x57\xce\x1a\x42\xcf\xdf\x8c\xc1\x9e\x3e\xbe\xa9\xcb\x75\
-\xb3\xbd\xd1\xcf\xa3\x64\x74\x2b\x16\x83\xcc\x13\xbd\x36\x14\x40\
-\x43\x98\x69\x67\xda\x94\x93\x74\xda\x94\xc0\xae\x01\x86\x5b\x91\
-\x62\xa2\x00\xcf\xc1\x68\xf2\x11\x5b\x74\x88\xdd\xab\x68\x06\xf4\
-\x92\x1c\xbd\x25\xf4\x78\x26\x24\x9e\xf4\xe0\x89\xde\x5b\x3f\xb6\
-\x4b\xfe\xe4\x73\x32\x4a\x01\x6e\x6f\x3c\xec\x25\x16\xbd\x54\x5f\
-\x31\x77\xd7\xf0\x26\x71\x6e\xb8\xf0\x9a\x96\xe2\x93\x6c\x14\x78\
-\xed\xfa\xc9\x4d\x98\x69\xd2\xed\xed\xff\x4b\xf6\x3f\xb7\xfe\x86\
-\x7d\xb8\xfe\x0b\xbf\x84\xd6\x7d\x20\xdf\x5a\xa3\xa5\x5b\xb2\xca\
-\x35\x67\x1a\xdb\x5e\xfd\xe7\xee\xff\xec\x23\xd3\xf8\x9b\x21\xc9\
-\x3e\x03\xfb\x3f\xcb\x7d\x85\x71\xaf\xf5\xfb\xef\xc2\xe2\xad\xe2\
-\x4a\x0d\xed\x61\xdf\x0e\x42\x18\xb0\x6f\x5a\x66\x7a\xb6\x56\x17\
-\xa4\x40\x37\xa4\x90\x69\xad\x1f\x3a\xf0\x0b\x9a\x1f\x0e\xe7\x52\
-\xbe\xaa\x5b\xb2\x7b\xad\xbf\xe6\xaf\x5e\xc1\xf3\x36\x51\xab\x50\
-\x43\xbd\x84\x27\x32\x68\xc7\x10\x19\xb4\x3d\xda\x5b\xbf\x6c\x6f\
-\x3d\xa8\xc9\xf3\xa0\xd6\x2b\xd5\x4f\xec\xa5\x7e\x2a\x27\x52\xa1\
-\x4f\x93\x75\xd9\x1f\xd7\x11\xcf\xc6\xff\xfe\xb7\xec\xdb\x46\xf6\
-\xf3\x23\x6f\xf9\xf2\x71\x7d\xeb\xf9\x6d\xf6\xdf\x8f\xeb\x78\xca\
-\xfa\x6b\x2c\xad\x6b\xbc\x5b\x9f\xff\x9a\x0f\x7b\x0b\x7a\xce\xa5\
-\x90\x2c\xab\xf7\x67\x51\x3d\xbb\x9c\xc4\x8e\x33\xd3\xee\x75\x82\
-\x94\xf3\x35\xb1\x31\xef\xa8\x81\x7b\xef\xff\x9e\xbf\xc9\xff\xc2\
-\x72\x05\x05\xb2\x08\x4e\x27\x9c\x24\xab\x44\xed\xf2\x3a\x02\x33\
-\xed\x02\x31\xea\x65\xac\xd1\x48\x84\x0d\x2a\x11\x66\xda\x85\xd7\
-\x9f\x8e\xfa\xc7\x9e\x77\xf7\xff\xfa\xdb\x71\xf5\x88\xb7\xdc\xff\
-\xcf\x7d\xce\xbe\x9d\xf5\xbf\xde\xcf\xff\xce\xfa\xd2\x37\xdb\xaf\
-\x78\xb7\xff\xd2\xcb\x73\xe0\xb8\xff\xed\x38\xea\x79\xa6\xe7\x54\
-\x3c\xd7\x04\xa2\x63\xd9\xe8\xc6\x40\x00\x86\xbe\xe0\x1e\xc7\x43\
-\xce\xff\xe4\x33\x10\xd5\x29\x27\xd4\x4b\xaf\x84\xba\x34\xc0\x4c\
-\x23\x97\xad\xd3\xc2\x0d\x97\x02\x79\xd2\x11\x10\xda\xd1\xa3\xed\
-\x98\x92\xaf\x16\x5b\xf9\x92\x93\xd1\x0a\xa3\xfc\x22\x5c\xab\x15\
-\x7d\x97\x9b\x42\x93\x27\x1b\xd9\x69\x80\x99\x16\xcf\x2f\x9b\x1a\
-\x8a\x5e\xb9\xce\xd5\x2f\x5b\x8f\x11\x98\x69\xfc\xae\xd9\xcb\xd4\
-\x75\x85\x76\x3d\xa6\x7e\xc5\xbf\x97\x71\x8b\xfa\xd9\x06\x50\xbd\
-\x80\x16\xfa\x65\x53\x43\xd1\x2b\x57\xdd\x3f\xfd\x00\xe2\xdf\xfb\
-\x87\xf7\xd1\x65\x7d\x75\xaa\x1f\x82\xe4\xcc\xa8\x2e\x0d\x30\xd3\
-\xe2\xf9\x65\x53\x43\xd1\x2b\x57\xad\x5f\xfa\xf0\x9c\x96\x5f\xf1\
-\x62\x40\x0b\x9d\xb6\xe4\x40\xec\x40\xd7\x31\xbb\x86\x46\x53\x8b\
-\xd0\x69\xf3\x03\x4a\x0f\xba\xc9\xd1\x93\x1f\xbb\x34\xc0\x4c\x8b\
-\xe7\x97\x4d\x0d\x45\x9f\xb9\x64\xbf\x77\xc8\x9f\x06\x7e\x95\xb0\
-\xf3\x22\x61\x68\xe4\x2d\x17\xd9\xd8\xe5\xf5\x05\x3a\x6d\x4c\x50\
-\x36\xd0\x42\xa7\x13\xca\x5e\x03\x84\xf6\x77\x20\x9b\x0d\xc2\x9a\
-\x04\x6b\x40\x39\x15\x8f\x01\x8d\x7f\xf1\xe1\xb9\x0e\xd9\x08\x33\
-\xed\xc2\x7d\x93\x37\x4f\x6e\xf0\x63\x34\xb1\x96\xe2\x57\xb9\x4c\
-\xc5\x5b\x4a\x07\xdf\xd7\xaa\x9f\x52\xc8\x87\xdc\xa8\x47\x79\x38\
-\xcf\x30\xe7\x66\x25\xf8\x90\x4c\x03\x7d\x68\x67\x06\x1f\x9e\xfb\
-\x09\x1e\xf1\x24\x13\x7d\x4f\x43\xf9\x50\xcf\xb5\xeb\xcf\x3d\xce\
-\xb1\xc9\x47\x7d\x12\xcd\x80\x5e\x92\xb7\xe6\xa6\x86\xff\xcc\xcf\
-\x0e\xc3\x67\xfe\x00\x0f\xb7\x45\xfd\x5a\x96\xbc\xff\xd7\xa8\x3f\
-\x07\x24\x36\xed\x51\x1f\x45\xd3\xcf\xbc\x07\x39\x37\xba\xb6\xd6\
-\xff\x2a\xc7\x37\xf1\xe4\x47\x34\x23\xc7\xc8\xb1\xc9\x47\x7a\xf8\
-\xcc\xf4\x92\x1c\xbf\x5b\x30\xe7\x86\xbf\x9c\x43\xce\x0d\x7f\xe4\
-\x82\x7e\xce\x29\xd3\xc8\x73\x0c\xea\x06\xa5\x9f\x63\x10\xdb\x3f\
-\x44\x97\x12\x8a\x60\x2f\x00\x81\x40\xe9\x8a\x6e\xf6\x46\xb8\x7d\
-\x30\xa0\x63\xe9\x42\x78\x52\x84\x46\x8e\x2f\xe1\x25\x86\xfb\x37\
-\x47\xf8\x5f\x43\xc5\xc4\x46\x34\x79\x08\x7b\x97\x74\xc5\xc7\xaf\
-\x08\xb7\x0f\x06\x74\x2c\x5d\x08\x2f\xeb\x22\xc7\x17\xb1\xcc\x75\
-\xcb\x41\x74\xdd\xc0\xcc\x13\x5d\x87\xc7\x32\x26\xfe\xd7\x50\xf6\
-\xd8\x88\x56\x1e\x1a\xe0\xb8\xba\xfd\xac\x3e\xe4\x5e\x2c\x65\x44\
-\x2d\x6b\x75\x23\x97\x1f\x6c\x44\x53\x37\xfb\x51\x51\xba\xe2\x35\
-\x7b\x23\xdc\x3e\x18\xd0\xb1\x74\x21\x3c\x29\x42\x23\x97\xaf\x17\
-\xed\x5b\x59\x3f\x6d\x2f\x22\xf7\x30\xf4\xcb\x15\x35\x6a\xdd\xac\
-\x95\xf7\xa5\xeb\xc7\xa7\xfc\x6a\x80\xa2\xf3\x9e\x67\x5a\xb2\xde\
-\xf0\xfe\x9a\x80\xfe\xae\xa1\x7c\x60\x23\x9a\xd8\xc2\xde\x25\x5d\
-\xf1\xf1\x2b\xc2\xed\x83\x01\x1d\x4b\x17\xc2\x33\xb3\xdd\x23\xd7\
-\x9c\xe9\x25\x47\x1e\xcb\x84\xc4\x5f\x43\xf9\xc1\x46\xf4\x96\xfa\
-\xa7\x7f\x0f\x04\xeb\x88\xe4\x49\x1a\x2d\xd4\xf5\x52\x42\xd1\x1a\
-\xa0\x2f\x6a\x44\x31\xe1\x65\x5a\x3c\x5d\xf2\x01\xca\xb7\x74\x40\
-\xd1\x8f\x1d\xee\xd0\x9c\x08\x7b\x97\xfc\xa3\x93\xe9\xd0\xbd\x65\
-\xfd\xa4\x05\x2a\xbd\xdd\x03\xe3\xa8\x67\xd6\x03\x39\x44\x27\xd3\
-\xa1\x9f\xeb\xdf\x1d\xfb\x1e\x0c\xa8\xed\x02\xf5\x5f\xf3\xfc\xff\
-\xe4\xcf\x0d\x83\x3e\x13\xb9\xf5\xd0\x6f\x17\xd6\xf9\x50\xed\xd7\
-\xac\x9f\xed\x52\xfd\xa2\x1f\x3c\x30\xc6\x61\x45\x39\x46\x27\xd3\
-\xa1\x97\xcf\xff\xc5\xeb\x7f\x70\x51\x3b\x0c\xa9\xad\xd6\xcd\x3a\
-\xd7\x9c\xe9\x1d\xf5\x4f\x3e\x44\x6f\x0f\x7b\x1e\xf0\x72\x2a\x3a\
-\x06\xff\x5b\x49\xe8\xb4\x05\x02\x7d\x23\x48\x0c\x94\x9d\xe8\x18\
-\xbe\x21\x46\x0b\x9d\x36\x3f\x60\x7b\x21\x51\xbc\x64\x83\xed\x2a\
-\x12\x33\x23\xbe\x84\xba\x34\xc0\x71\x35\x9d\x91\x2d\xe8\x5f\xb5\
-\x7e\x7a\x14\x48\x9f\xc0\x59\xbf\x72\xdd\xd0\xaa\x43\xf4\x42\x3d\
-\xd3\xe2\x43\x4f\xcc\xad\xfa\x33\x07\x4f\xcf\xb8\x65\xfd\xd7\xda\
-\xff\x3f\xb0\xdf\x3a\xfc\xe1\xdf\x78\xfa\x5e\xae\x45\x78\xd3\x1b\
-\x4d\x43\x67\x21\xc6\xb5\xea\xe7\x59\xe2\x7b\x7d\x47\xe7\xff\x92\
-\xf5\xd3\xd3\xad\xc8\xb9\x07\x6f\x71\xff\xf7\xea\xf7\x17\x10\x25\
-\xd5\xbb\x54\x9c\x27\x1c\x55\x42\xa3\x5b\xe5\xed\xb0\xf1\x00\xe2\
-\xe1\x25\xd4\xa5\x01\x66\x1a\xb9\xec\x44\xa7\x43\x2b\xb5\xad\x03\
-\xd7\xb8\xf3\x3c\xcd\x78\x29\xdf\x5a\x0f\x7a\xa0\xe2\xa2\x93\xe9\
-\x25\x79\xcb\xfb\x12\xf5\x9b\x0f\x6f\x43\xa0\xd3\x96\x04\xa8\x7c\
-\xea\x78\xea\xfa\x6b\xbc\x5b\xac\x6f\x59\x3f\x67\xe1\x1a\xfb\xff\
-\xc1\x0f\xdf\xa2\xbb\xd3\x98\x7a\x07\x42\xcd\x92\x40\x5f\xa3\x7e\
-\x1d\x74\xdf\xeb\x40\xf6\x1d\x9c\x66\x3a\xae\x9e\xfa\xfc\x5f\xbc\
-\xfe\x5e\x11\x0b\x3c\xea\x06\x7b\x6a\xb7\xa8\x7f\xfc\x5d\x58\x91\
-\x8d\x12\x50\x82\x39\x11\x89\x58\x23\xa3\x88\xaa\xdf\xfd\xdd\x4a\
-\xa6\xb4\xd5\xbe\x29\x62\xa0\xe0\x1b\x47\xce\x85\xfc\xaa\x69\xd6\
-\x91\x6c\xad\x1e\xd2\x00\xd7\xf4\x9f\xa4\x7e\x82\x2b\x5f\xa3\xb5\
-\x14\x6a\x40\xc7\x72\x56\xcf\xa8\x75\x9a\x5d\x3f\xec\xc4\x5d\xab\
-\x07\xbf\xe0\xc9\xd3\xed\x28\xaf\x21\x12\x82\x26\xbf\x5a\x4f\xcd\
-\xd2\xf5\x8d\xb9\xa4\x5f\xe5\xe8\x81\xd5\x7f\xd5\xdf\xbb\x3f\xd5\
-\xbe\x25\x66\x82\x0f\xfe\x9a\x25\xfa\xbd\xb5\x82\xeb\xae\x5f\xff\
-\xfa\x31\x9e\xf2\xd4\xb8\x66\xfd\x63\x44\x9b\x09\xae\xf8\x46\x6b\
-\x79\xab\xf3\x7f\xe9\xfa\x5b\x8d\x1b\x08\xea\x06\x65\x02\x2d\xd4\
-\xa8\xf9\x8d\xdc\xd3\xec\xfa\xb6\x5c\xd2\xaf\x72\xf4\xc0\xea\x5f\
-\x7c\xfb\x9f\xde\x27\x87\x95\xd6\x3a\x0f\x1c\x81\x92\xf5\xe8\x1e\
-\xcf\x75\x25\xb0\x2c\x78\x25\x6f\xb4\x32\xbb\xc0\x20\x2e\x38\x76\
-\xd8\x1c\xc3\x20\x76\xc4\x83\x0d\x2a\x85\x4c\xd7\x94\x90\x81\x55\
-\x1f\x3e\x38\x93\x4b\x40\x0e\x12\x42\x47\x3e\x62\x3d\x66\x10\x17\
-\xbc\x74\xfd\x8f\xc9\xed\x1a\xb6\xd4\x0d\x5e\xba\x7e\xfc\x82\xaa\
-\xa9\x47\xf7\x78\xae\x2b\x01\x7b\x2e\x06\x74\x67\xff\xf5\x5f\x7a\
-\xf5\x17\x18\x79\x88\x4b\xfd\xda\x43\xbf\xda\x3d\x0f\xea\x02\x25\
-\xeb\xd1\x3d\x9e\xeb\x4a\x40\xcd\x62\x40\x77\xea\x97\x78\xef\x20\
-\x2e\x78\xf7\xfb\xbf\xb7\xc0\x15\x7d\xea\x06\xaf\x51\xff\xf8\x21\
-\xba\x22\x12\x15\x14\x2b\xe8\xc5\xb7\xac\xb5\x20\x6c\x85\x99\xae\
-\x7a\x4b\xeb\x87\xd8\xe0\xab\x67\xcb\xc1\x14\xea\x92\x0e\x28\xba\
-\x5e\xc6\x6a\x79\x8b\x0c\x9f\x37\xa9\x3f\x62\xe7\x7c\xf8\x0f\x0b\
-\x42\xa7\x13\x36\x3d\xec\x54\xcb\x05\xeb\x97\xbb\x7b\x19\xb7\xa8\
-\x3f\x9f\x85\xc5\x3e\xd0\x7b\x61\xa6\x17\x0d\x8a\x20\xdb\x18\xfd\
-\xc9\x4f\x15\xf9\x95\x97\xbc\x80\x1c\xe7\x7f\xfa\x2c\x58\xdc\x86\
-\xb2\x7f\xae\x07\x6f\xd1\x68\xbb\xe0\x96\xf7\xff\xd2\xf9\x1f\x3f\
-\x44\xe7\x01\xab\x5a\x78\xe8\x88\x0c\x5a\xe8\xb4\x35\x03\xd4\x0d\
-\xe2\x4e\x03\x9d\x36\x3d\xb0\xf9\x49\xfe\xe8\xa5\xd0\x69\xd9\x2a\
-\x26\x0c\xe9\x8a\x4e\x36\x12\x6f\x1a\x29\xb6\x72\xf0\x3c\xcc\x10\
-\xec\xfa\x20\x8e\x30\xd3\xa1\x7c\xd3\xfa\x95\x0f\xbd\x88\xfe\x78\
-\x8a\x46\xb7\x74\x8d\x70\x5e\x30\xe8\xfd\x53\xd4\xdf\xed\xdf\x2d\
-\x98\x37\xaa\x9f\x73\x0f\x6a\x6f\xbc\xdf\x81\xb9\xf7\xa7\x0d\xb2\
-\x06\xf9\x06\x8d\x8d\x32\x55\x1f\x42\xa7\x65\x2b\x0e\x0c\xe9\x8a\
-\x8e\xfd\xfc\xf4\xa7\x25\xbc\xdd\x78\x6d\xbc\x03\x51\xcd\xd4\x0d\
-\x2a\xcf\xa7\xae\xbf\xf5\x22\xfa\xe3\xad\x34\x3a\xda\xe3\x84\xf3\
-\x82\x91\xf7\xc0\x69\x6b\x1d\xd8\xed\xa2\x1b\x9b\xa4\x39\x0c\x3a\
-\x94\xbd\x56\xb1\x4c\x4e\xdd\xe0\x63\xeb\x8f\x10\xdb\x21\xea\x56\
-\xdc\x96\xae\xf2\x92\x87\x60\xdc\xa2\xfe\x47\xfd\x3d\x10\x4f\x3e\
-\xf2\x57\x1d\x2a\x40\x0d\x66\xd3\x24\x37\xd6\x58\xa4\x14\x34\xc4\
-\x58\x18\x6e\x6f\x32\xec\x17\xd4\xba\xec\x6c\x4b\x5e\x34\x9b\x98\
-\x9e\x8b\x4d\xa4\xd0\xfd\x9e\xaa\xe2\x77\x23\x9c\x6a\xf3\x43\x64\
-\x3a\xc4\x01\x3d\x07\x5b\x90\xbf\xf8\x1e\x33\xfb\x5b\x72\x2e\x5d\
-\x93\xb9\x4d\xd6\x49\x34\xbd\x25\x7e\x37\x5e\xf8\xf0\x90\xd0\xe1\
-\x43\x40\xcd\x92\x43\x4f\xbe\xa7\x6c\xfc\x50\x97\xca\xdd\x0d\xaf\
-\x21\x1a\x7e\xed\xfa\x6b\xff\x23\x8d\x76\x0e\xba\xf9\x58\x07\xd1\
-\xf3\x66\x9e\x69\x6e\xdd\xff\x4f\xd9\xff\xc6\xba\xe5\x78\xcd\x6b\
-\x4e\x67\x59\x79\x5c\xbb\x7e\xaf\x3d\xf5\xab\xc6\xef\xf6\xdb\xf4\
-\x5b\xbf\xa1\xc3\x87\x80\x33\xef\xf5\x18\x03\x9e\xd6\x4e\x07\x6a\
-\x5d\x47\x8d\x4f\x1c\xb0\x9b\x8f\x39\x41\xee\xfe\x14\xe4\x01\xc3\
-\x73\x33\x47\xc4\x90\x0b\x68\xa1\x86\xe2\x38\xcf\x57\x5a\x44\xec\
-\x90\xbb\x0f\x9b\x62\xd9\x7a\xb1\xf5\xfe\xef\xd5\x5f\xbe\xcb\x49\
-\xe4\x3e\x92\x28\x58\xb5\x6a\x01\x9e\xf0\x58\x87\xab\xba\xdc\x28\
-\xa1\x46\x95\xc3\x73\xe1\x05\xa6\x4b\xfb\xa7\x6e\xb0\xa6\x78\xe9\
-\xfa\x6b\xbf\xea\x81\xf0\xf8\x9c\x86\x9a\x8c\xad\x2f\x5d\x7f\x27\
-\xc4\xd5\x59\x7e\x76\x72\xcd\x99\x2e\xd9\x5c\xba\x7e\xf6\x1d\x2c\
-\xe1\x66\x37\x70\x8d\x5f\xf7\xb3\xca\xe5\x2f\x97\xf3\x99\x1b\xbf\
-\x80\xd4\x9f\x45\xa1\x6e\xf0\xa9\xeb\xaf\xfd\xba\xf5\xf9\xa7\x6e\
-\xf0\xb1\xf5\x57\xfb\x73\x6b\xce\x3d\xd8\x74\xf3\x81\x69\xcc\x91\
-\x58\x3b\x5f\x45\x7d\x75\x49\xdd\xa0\x0c\x26\xff\x8d\x57\x8c\x2c\
-\x6c\xa7\x59\x99\x90\x28\xe8\xca\x9a\x6c\x84\xdc\x45\x36\xc5\xb2\
-\x89\x9c\xe8\x4d\x6e\x70\xb2\x5f\x37\xe8\x39\x39\xf1\xf6\xba\xa3\
-\x56\x61\xa6\x9b\xc7\x35\x87\x45\xee\x4b\xf9\x32\x07\x59\xd4\xfc\
-\x55\x22\x2b\x65\x3a\xf4\x32\x4b\xb4\xe7\x09\x86\x90\xbc\x65\x52\
-\xf5\x33\x4f\x74\x1d\xd8\xba\xdf\x8e\xbf\x89\xc3\x6a\x7c\xa3\x75\
-\xeb\x43\x27\xdf\x27\xad\x3f\x3b\xa7\xf6\xcc\x33\xda\x97\x81\x59\
-\x84\xfa\x0c\xb3\x52\xa6\x43\x51\x5f\xf1\xdd\x72\x7c\xf6\xb3\x11\
-\x5d\xb9\x75\xf2\x9b\xf0\x4c\xee\x2a\x81\x3d\xf5\x59\x2d\x59\x29\
-\xd3\x29\xac\x48\x89\xfc\xb2\xa9\xa1\x08\xf1\x03\x9d\x76\xce\x49\
-\x3f\xf3\x42\x34\x01\x6c\x37\x9d\x7f\xe2\x80\xd9\xb9\x78\x76\xb9\
-\x28\xd0\xe9\x91\x3d\x89\xf9\xd0\x85\xfc\x79\x9e\x60\x04\xa0\x06\
-\xf9\xcd\x31\x33\x2d\x59\x6f\x60\xfb\x98\xfa\xc7\x77\x20\x1c\x54\
-\x45\x15\x4d\x74\x68\xe4\xca\xa2\x47\xf7\x78\xd2\x2d\xc3\x13\x36\
-\x5d\x12\x97\x38\xd3\x45\x7d\xff\x72\x4b\xfe\xd9\x2b\x79\x83\x5b\
-\xec\xd1\x95\x1f\x68\x30\xf3\x72\x9c\xa0\x5f\x11\xf5\x77\xea\xba\
-\x1b\xd6\x96\xfd\xcb\xc9\xb2\x6f\xe0\x16\x7b\x74\xe5\x07\x1a\xcc\
-\xbc\x1c\x27\xe8\xbd\xfb\x7f\xcb\xff\x81\xa5\x94\xf5\x6b\x55\xfc\
-\x59\xb0\x54\x1f\x7c\x50\x46\x99\xd6\x3a\x8d\xbd\xf5\x27\xd3\x6d\
-\xe4\x96\xfd\xcb\x9e\xc8\x15\xdc\x62\x8f\xae\xfc\x40\x83\x99\x97\
-\xe3\x04\xdd\xab\xbf\xa3\xf6\x70\xd6\x96\xfc\xb3\x77\xf2\x06\xb7\
-\xd8\xa3\x2b\x3f\x46\xef\xfe\x7b\x20\x7c\x1f\x2c\xe7\x01\x2d\xdf\
-\xe4\x20\x1e\xb4\x50\xc3\xe5\xb6\x68\x39\xac\x19\x8c\x66\x9b\x66\
-\x6d\x0e\xb9\xb5\xaf\xdc\x4a\x02\x65\x39\xd7\x5f\x89\x94\x63\xf4\
-\x54\xd7\xca\xd9\x5b\xff\x5a\xbe\x35\x9f\xa7\xae\xbf\x57\xf3\xb5\
-\x79\xd4\xac\xb8\xd0\x42\x8d\xa7\xae\xbf\xc6\x1b\xa3\x9e\xe6\x4b\
-\xef\xff\xeb\x5f\x77\xf2\x7d\x0b\xaa\xbd\x03\x89\xe0\xd7\xae\xff\
-\xde\xce\xff\xc5\xeb\xdf\xb1\xa9\x39\x36\xcf\xb7\xcc\x93\xab\x5b\
-\x9c\xff\xc9\x67\x20\x75\xc3\xda\x3b\x11\x6e\x50\x4b\xd2\x93\x3e\
-\x53\xb8\x6e\x22\x86\x17\x6a\xb6\x14\x2c\x7f\xf0\xa4\x83\x2f\xa1\
-\xc6\xec\x01\x3b\xb2\x37\xcd\x1e\x57\xfe\xa5\x1d\xfe\xdc\x30\xd3\
-\x2b\x9e\xa4\xea\x39\xa0\x87\x6d\xe0\x96\xfc\x3c\x7e\xd8\x53\xeb\
-\x53\xd5\x4f\x2c\xd0\xfb\xab\xd8\xe4\x5d\xe9\xc8\x6b\x09\xd6\xea\
-\x5f\xb2\xbb\x15\x9f\xba\xc1\xa7\xae\x5f\x71\x38\xb3\x4b\x35\xb7\
-\x5c\x4c\xe1\xb1\xfb\xff\x26\xfd\x2e\xaa\x1b\x0e\xbd\x80\xf8\x51\
-\x3a\xce\xbf\xef\xc2\xa5\xf7\xff\xb1\x5b\xcb\x59\x03\x6f\x71\xfe\
-\xfd\x05\x64\xe9\x01\x3e\x7b\xa0\x94\x8a\xd7\xe4\xed\x41\x16\x07\
-\xd0\xcd\x13\xed\x1b\x62\x4c\x1a\xb0\xea\xaf\xc4\xaf\xcb\x2d\xf6\
-\x29\xbc\x3f\x0c\xe4\xe3\x9e\xeb\xbf\x64\xbe\x5e\x6b\x6a\x1a\x75\
-\x83\xbe\x1f\x16\xf0\x52\xfb\x91\x42\x5d\x94\x7c\x4c\xbe\x97\xec\
-\xa7\x7c\x71\x86\xbb\x05\x12\x0c\x94\x52\xa2\xb1\xed\xf5\x5b\x3f\
-\x83\x71\xeb\xbf\x4e\xa8\x17\x10\x72\xec\xd5\xf7\x94\xf5\x13\x2f\
-\xb5\xab\xdd\xa7\xaf\x94\xfd\xa7\xc6\xad\x48\xdd\xa0\xef\x8d\x35\
-\xa8\x77\x7e\x96\x7c\x5e\xb2\x9f\xf2\xe5\x7f\x50\x8a\x60\x24\x26\
-\xcc\x74\x93\x07\x21\x43\x12\x01\xd1\xc9\x48\x61\xc2\x4c\xa3\x83\
-\xed\x56\x7f\xd8\xf5\xb0\x97\x6f\x8e\x49\x0e\x19\xe5\x07\x1d\xd1\
-\xd9\x47\xa6\x25\xd3\xd8\x9b\x2f\xbe\x89\x29\x1f\xf0\x1e\xe2\x4f\
-\x36\x79\xe4\x1c\x33\x8d\x0e\xb1\x88\x5f\x51\x7a\xe8\x88\xce\x3e\
-\x32\x2d\xd9\x3d\x8e\x9c\x63\xa6\xc9\x95\xda\x6a\xdd\xac\xa5\x87\
-\x8e\xe8\xec\x23\xd3\x92\x69\x5c\x73\xff\xdf\xfe\x56\xbb\x39\xc7\
-\x9f\xd2\x1a\x83\xdf\x60\x7e\x51\xef\x40\x28\xfa\xca\xf5\x6f\x29\
-\x97\xdc\x84\x99\xc6\x96\xbd\x65\xbf\x2b\x4a\x0f\x1d\xd1\xd9\x47\
-\xa6\x25\xd3\xa0\x15\xc2\x4c\xbb\xb0\x33\xe1\x9b\xb8\x52\x81\xd7\
-\x51\xdf\xcd\xca\x39\x66\x1a\x47\xc4\x22\x7e\x45\xe9\xa1\x23\x3a\
-\xfb\xc8\xb4\x64\x1a\xb9\x66\x68\xff\x39\x90\x26\x91\x37\x49\xb2\
-\xd7\x4c\xcb\x4b\x1e\xe8\xe2\x2d\xcb\x8c\x7e\x39\xfc\x39\x6a\x1d\
-\xfa\x24\x37\x0b\x37\x63\x14\x87\xe7\x96\xe4\x09\x76\xe2\x79\x5d\
-\xe4\x2c\x5f\x46\x93\xa3\xbb\xee\xc5\x4f\xfe\x5c\x27\x4f\xf8\x12\
-\x76\x06\xbe\x2f\x56\x7f\x8d\xb7\x92\x6f\xed\xf7\xc5\xeb\xef\xd4\
-\x7c\x15\x16\xfd\xbe\x75\xfd\x75\x3f\x4a\xf1\x8f\xd9\xff\x77\xbf\
-\xb3\x38\xbb\xc1\xf2\x77\x7f\xcf\x82\x1e\xe7\x7f\xb9\xf3\x8f\xdc\
-\xff\x65\xc7\x0b\x92\x1a\xef\x0e\xce\xff\xf4\x43\xf4\x92\x60\x59\
-\xce\xaa\xd2\xf7\x78\xf5\x90\xca\xdf\xe3\x6f\x0f\xa9\x99\xf6\x49\
-\x0f\x7d\x6c\xdb\x0b\x8a\xf9\xf2\x98\x9a\x2e\x30\xdc\x97\xf9\x69\
-\xee\x20\x02\xd7\xf2\x9f\xd9\x97\x9c\xd6\xec\x8b\x7a\xeb\xd3\xe6\
-\xfa\x7b\x07\xa4\x3a\x3d\xb3\x9e\xe5\x7f\xe1\xfa\xcf\x84\xbe\x0b\
-\xd1\x53\xd7\xff\x94\xfb\xff\x4d\xdf\x78\xfb\x16\x7e\xec\xe3\x96\
-\x83\x35\x91\x63\x53\x33\x7a\xca\xfa\x3d\xd6\x9d\x9f\xff\xc7\xd6\
-\x5f\xfb\x79\xe9\xf5\x35\xce\xff\xf8\x21\x3a\x27\xa4\x6c\x98\xff\
-\x84\xa2\xf1\xf8\x49\xc5\x5a\xa0\xbf\x00\x18\x93\x17\x00\x97\xe3\
-\xcb\x16\xfc\xd4\x27\xf6\xb5\x20\x0f\x67\x4c\xa1\x46\x95\x8f\xdc\
-\x6d\x73\xcb\xc5\xd4\xf1\xe7\x0f\x6a\xf9\x0f\x86\xeb\x18\xdd\xf2\
-\x55\x40\x0d\x50\x7a\x24\x61\xe4\xcd\xeb\x27\xaf\x40\x4f\xcf\xe8\
-\x28\x67\x7c\xf1\x56\xca\x59\xae\xbc\xed\xd2\x78\xea\xfa\xc7\x28\
-\xd7\x9d\xd9\x67\x45\x85\xbe\x55\xfd\x35\xbe\x77\x82\x3d\xb3\xc5\
-\x43\xcf\xff\x5b\xed\xdb\x57\xef\xfc\x4a\xf7\x76\xd3\xe9\xe3\x7a\
-\x01\xb1\xc3\xc4\xfd\x5b\x93\x79\xaa\xfa\x5b\x0b\x21\xf2\xf9\x36\
-\x9a\xf3\x5d\xe3\x8b\x2f\x55\xe4\x4f\x7d\xfe\x6b\x7c\xef\x0f\x39\
-\x2b\x0f\xa3\x3d\x9f\xe0\x39\x1d\x39\xba\xee\x8e\x29\xc7\xa2\xbe\
-\xcc\x93\xab\x5b\xd4\x3f\x7e\x88\x4e\x21\x51\x28\x0f\x54\x4f\xc8\
-\x78\x2d\xe1\x94\x64\x35\xd1\x5a\x1b\xe6\x45\x85\x01\xb4\x90\x91\
-\x48\xc2\x34\xac\xf6\xd8\x6c\x45\x7c\x83\xcd\x71\x63\x8c\xf9\xe1\
-\x0f\x36\x58\xf5\x6f\x5d\x7f\xaf\x7f\xe4\xde\x43\xea\x00\x6b\x3d\
-\xb2\xe9\xed\xc5\x92\x7e\xad\xbf\x17\xf3\x9e\x78\xd4\x01\x5e\xba\
-\x7e\xf9\xf5\x9e\xa4\xa2\x5b\x2c\xc9\x4c\xc8\x9e\x49\x05\xba\xd7\
-\x73\x97\x6b\xb2\x81\x0f\xec\xdf\xff\x2d\x23\xff\xd6\xf3\xc7\xfe\
-\xbf\xa8\x21\x12\xb9\x56\xfd\xea\x83\x46\xaf\x7f\xa3\xa4\x3f\xd3\
-\x47\xb0\x35\xb6\x31\x46\x9f\x58\xc3\x06\xab\x7e\x3d\xff\xd2\xbb\
-\xe4\xfe\x93\xc7\xa5\x90\x3a\xc0\x5a\x8f\xe2\xf4\xce\xe2\x92\xfe\
-\x96\xfa\xfd\x63\x3a\x29\xea\x52\x40\x50\xb4\x3b\x0e\x14\xed\x0e\
-\x03\x5d\x2f\x68\x03\x1f\x24\x27\x74\x3a\x61\xf6\x2d\xdb\xae\xfd\
-\x4b\xe1\x27\x70\x5c\x6d\x9c\x2d\x96\xfb\x0c\xec\xf9\xaf\x9e\xb2\
-\x4e\xb6\xf5\xc2\x95\xbb\x0c\x02\x45\x4b\x07\xcc\xb6\x52\xd3\xb8\
-\x64\xfd\x2f\x77\x7a\xe1\xf9\x28\x4e\x5c\xe4\x06\x23\xd7\xd0\xcb\
-\x4f\x39\xe6\x91\x75\xb2\x2d\xfe\x3c\x9e\x4d\xc4\xcd\xb6\xb7\xa4\
-\x6f\x51\xbf\x62\xaa\x47\x60\xee\x1d\xbd\xb8\xc4\xfe\xbf\xcd\xde\
-\x7d\x7c\xfb\x1d\xbc\x80\x7c\xe2\x93\xf6\x83\x84\xf6\x21\xba\x0a\
-\xa6\xdf\xd7\xa8\x5f\xbd\xd4\xd9\xbf\xb7\xf3\xcf\xbe\x83\x8f\xdd\
-\x7f\xce\xcc\x1e\x54\x6c\x0d\xf6\x83\xbd\x81\xe1\x39\x99\x50\xd8\
-\xcb\xcf\x8d\xd3\x94\x75\xb2\x2d\xfe\x3c\x9e\x4d\xc4\x93\x8e\x68\
-\x21\xb6\xd3\x77\x20\xc6\x75\x23\xa4\x68\x3b\x33\x64\xe1\xc4\xc0\
-\xbd\xf8\x4d\x83\xbe\x33\xd3\x04\x3f\x10\x5d\x6e\x34\x65\x01\xcf\
-\xad\x8a\x7e\xf2\xb4\x4e\xca\x97\xb4\x40\xd1\xc6\xe0\x83\x4c\x2d\
-\xbd\x6a\x6a\x1a\xc5\xce\x8e\xf2\x4e\xb6\xe4\x81\x6e\x28\xa0\x07\
-\xce\xf2\x77\x6f\x69\xc2\x4f\x20\xb5\xee\xaa\x1f\x1f\xc9\x6d\x23\
-\x91\xe1\x5f\x02\xa3\x5b\x7e\x46\x5c\xb2\xfe\x16\xf7\x5e\x88\x2b\
-\xd7\x4f\x5f\xc1\xa7\xd8\xff\x3f\xfb\xfd\xb7\xff\xdf\x57\xda\xde\
-\x8f\xdb\xbb\x0f\x3f\x48\xea\x71\x14\x4c\xdd\xe0\x53\xd4\xaf\xd8\
-\xf2\xdb\x46\xa6\x1b\x33\x08\x64\x81\x9e\x97\xd1\x2d\x3f\x23\x2e\
-\x79\xfe\xf1\x0b\x3e\xba\xfe\x5a\xcf\xde\xf5\x1d\xd4\x3f\x7e\x88\
-\xbe\x90\xb8\x1a\xc5\xf7\xf1\xa4\xa2\x7c\x9d\xa7\x45\x6f\x20\x6c\
-\x1d\xee\x28\x9d\x91\xe9\xc1\xca\xdb\xf8\x8e\xe5\x79\x56\x8e\x4d\
-\x63\x8b\x85\xfb\x37\x1e\x0f\xf0\xb5\x7a\xdc\xa5\x4d\x42\x8d\x35\
-\xfd\xd6\x1c\x0c\x46\xb3\xe9\x7c\x46\x56\xeb\xa7\x17\x4b\x6f\xe9\
-\x67\xf9\xcc\x18\x25\xb4\xc5\x76\x95\xc8\x61\x45\x7d\x2c\xc7\x74\
-\xcf\xa4\x3c\x0d\xf0\xc4\x2b\xf2\x58\xdc\xbf\x95\x82\xee\x7d\xff\
-\xbf\xf3\xdb\x86\xe1\x3d\xef\x7e\xe2\x26\x6e\x74\xff\x5b\xbf\x1d\
-\xf7\x7a\xda\xff\x95\xf6\x86\x81\x05\x60\xa3\x7a\xb1\xce\xc8\xee\
-\xfd\xfc\x3f\x75\xfd\xbd\x76\x65\xde\xac\x3f\xd1\x6a\xe5\xe5\x63\
-\x25\xc1\xa7\x38\xff\xe3\x87\xe8\x0b\x09\xf8\x87\x67\x96\x14\x1f\
-\xa2\x69\xef\xc9\xd1\x4d\x38\x0c\x81\x2e\x33\x5a\xe8\x03\xe5\x60\
-\xd4\x06\xb4\x83\x86\xbd\xe9\xa1\x83\x8b\x3d\x38\x6b\x50\xf5\xa7\
-\x38\xe4\xd4\x73\x8c\x4c\x68\xe3\xd6\xf5\xd3\x0b\xa1\xe7\x63\x13\
-\x35\x8e\x9c\xd4\xeb\x24\x6b\xfa\x17\xae\x9f\x98\xb7\x42\xdf\x9e\
-\x7c\xbe\x2c\x91\xd8\x2a\x4f\x89\xde\x3c\x55\xfd\xb3\xe3\x13\xfb\
-\xc2\x39\x9e\xe5\xe7\x8c\x53\x92\x9e\x9f\xf1\xc8\x0f\x3b\xe1\xd7\
-\x7c\xd5\x30\xfc\xe9\x7f\xc3\xcb\xb8\x8b\xe9\x03\xbf\x16\xbd\xb5\
-\x7c\x6f\x75\xff\xd7\x7e\xcd\xfa\x6b\x9d\x12\x8f\xe1\xfa\xb6\xa0\
-\xbf\xf5\x0b\x30\xef\xb7\x3b\xc1\xa2\x20\xb2\x70\xfa\xe4\xf7\x7f\
-\x09\x7f\x6e\x99\x6b\xcb\x35\x67\x3a\xeb\xc8\xd7\x35\xea\x9f\x7e\
-\x0b\xab\xdc\x10\x5e\x10\x3c\x25\x64\x97\x96\x2d\xe9\xc2\xf0\x02\
-\x8c\xc7\x06\xe6\x1b\xc4\x7d\xc9\xfe\x8c\xbf\xda\x00\x6c\xb6\x20\
-\x6e\x41\xb7\x61\x01\x8a\x99\x68\x48\xb0\xc9\x1a\x63\xaa\x5f\xca\
-\x9d\x35\xe4\x29\xea\xcf\xfd\xf2\x9a\xd2\xa4\x34\xc9\x09\x76\x4e\
-\x7d\xad\x1e\x74\xc1\x35\x7d\x62\xdc\x0b\x5e\xbb\x7e\x7a\x2d\xf4\
-\x51\x18\x0f\xdd\xff\xb7\x7e\xc5\x30\xfc\xf0\xbf\x7d\x1f\xdf\xba\
-\x52\x5d\x9f\xfb\xfc\x30\x7c\xe8\xc3\x71\xab\xb4\xc3\x71\x3a\x6b\
-\x97\xae\x1f\x7f\xbd\xfb\xff\x9e\xce\x7f\xd9\xee\x59\x43\xf6\xee\
-\xff\x78\x88\x1e\x3e\xdf\xc3\xf9\xf7\x17\x90\xb6\x81\x56\x0b\x4d\
-\xea\x95\xc5\x59\x02\x7b\x0f\x9c\x73\x1b\x5e\x7d\xe2\x07\x94\x3c\
-\xd3\x55\x7f\x6d\x4d\xee\xad\x1e\x73\xc6\xab\xb0\xdb\x9a\xc0\xf3\
-\x0b\x85\x99\xbe\x29\xc1\xeb\xc5\x22\x37\xb0\x25\xdb\x18\xe1\xbf\
-\x67\xdc\xe1\x61\x06\x4a\x25\xd3\xe4\x12\xe9\xba\x0c\x1e\xee\xce\
-\xea\x9b\xf0\x92\xf5\x13\xf3\x56\xa8\x5a\x6f\x59\x3f\xbd\x06\xdb\
-\x66\x35\xc6\xfe\xfd\xd7\x8b\xc7\xbf\xff\xe7\x87\xe1\x8b\xbe\xe8\
-\x56\x5d\x9d\xc7\xfd\xd0\xaf\x0f\xc3\xe7\xbf\x30\xe7\x53\x26\x78\
-\x89\xfa\x15\xa5\xf9\x2b\x34\x7b\x7d\x2f\xe7\x9f\x3c\xc1\x96\x78\
-\x63\xec\xdb\xff\x79\x87\x97\x39\xb9\x17\x29\x5c\x4b\x41\x96\x59\
-\x47\xeb\xd9\x0b\x9a\x29\x5c\xfa\xf9\x77\xf6\xef\x81\xf0\x62\x20\
-\xcc\xb4\x92\xf3\x41\x25\xc2\xde\x25\x25\x74\xdc\x60\x3a\x65\x9f\
-\x99\x9e\x6a\x6d\x5f\x11\x8a\x54\xd4\x51\xe7\xa9\xb3\xba\x34\x40\
-\x23\x73\xcc\x4c\xbb\xde\x06\x79\xab\x8d\x80\x15\xe5\xc8\x13\xc0\
-\xe3\x14\x73\xcc\x4c\xa3\x85\x69\x73\x6b\x84\xd3\x42\x11\x36\x40\
-\xa7\x9d\x13\x3a\xa2\x2f\x58\x7f\xb8\xbe\x2d\xdc\xb0\x7e\xfa\x0c\
-\x7a\x23\x62\x0f\xc6\x4d\x31\x8e\xd6\xf9\x92\x12\x3a\xa2\xcb\x78\
-\xd7\x3b\x86\xe1\x2f\xfd\x7b\xc3\xf0\xe6\x2f\x29\x82\x1b\x2f\x3f\
-\xf0\xc1\x31\x01\x6a\x15\x66\xba\xa5\x47\x6d\xc2\xde\x25\x45\x74\
-\x9a\xd1\x89\xc8\x3e\x33\x8d\x06\xa6\xcd\xb5\x11\x4e\x0b\x45\xd8\
-\x00\x9d\x76\x4e\xe8\x88\xbe\xe0\xf9\x27\x0e\xe8\xa1\x22\x87\x6e\
-\xed\x59\x16\x79\x3d\x06\xe4\x4e\xb1\x1b\x86\xff\x9c\x4f\xb0\x5a\
-\x3a\xd7\xa8\x7f\xfa\x19\x48\xce\xc0\x12\xf6\x67\xad\xf1\xd2\x33\
-\x77\x42\xb7\x45\x56\xa8\x5d\x4a\x32\x15\x3b\xf9\x8a\x38\x9a\x52\
-\x4d\x1e\xba\xae\xfe\x89\x25\xdc\x34\xee\xbc\x7e\xca\x00\x55\x53\
-\xa6\xaf\x51\xff\xa6\x3e\x3e\xb1\x52\xae\x39\xd3\xd7\xa8\x3f\xc7\
-\x6b\xcd\x9f\x30\x4b\xf1\x49\x96\xf3\xfb\xb6\x6f\x1e\x86\x1f\xf8\
-\xbe\x61\x78\xdd\x6b\x8b\xfe\x1d\x2c\x3f\xf0\x01\x4b\x82\xfb\x1e\
-\x8c\xbc\x52\x39\xa7\xc3\x37\x61\x96\x02\x92\x2c\xd7\x8f\x96\x78\
-\x5b\x07\xae\x40\xd9\x65\xba\xfa\x7f\x16\xee\xff\xad\xb5\xe7\x5a\
-\x73\xcd\x99\xbe\x45\xfd\x67\x7f\x95\x89\xef\x8e\x36\x38\xb2\xac\
-\x09\xee\x29\x9e\x06\xb8\x0f\x0c\xe5\x37\xf9\xf7\x43\x0b\x0f\x9d\
-\x8d\x98\x73\xe3\x05\x23\xf3\x7a\x6e\x66\x07\x8c\x5c\x38\xd4\xe4\
-\x72\xa3\xfa\xbb\xe9\x18\x33\xd2\xf1\xaf\x48\x3c\xc5\xc8\xb7\xd6\
-\x73\xe9\xfa\x7b\x3d\xbc\x36\x2f\x9f\x1f\x68\xa1\xc6\x53\xd7\xbf\
-\xd6\xcf\x31\x8b\xe5\x59\x7b\xa5\x77\x1b\x3f\xf8\x67\x86\xe1\x6b\
-\xbf\x7a\x59\xef\x96\x92\x8f\x7e\x6c\x18\x74\xf9\xf0\xc3\x65\x94\
-\xd0\xc6\x25\xea\x67\xcf\xdc\x61\xf1\x5f\xef\xff\x7b\x3b\xff\x17\
-\xaf\xdf\x9b\xb0\x6d\xa2\x6f\xa0\xac\xa0\x85\x1a\xb7\x38\xff\xe3\
-\x3b\x90\x48\xc0\x37\xcc\xa6\x58\x9e\x88\xc6\x18\x93\x1e\xd3\x9d\
-\xcf\xf5\x3c\x54\x0d\xf7\x6f\xcc\xe6\x0e\x22\xd0\xed\x8d\x8e\xf3\
-\x5a\xcd\x57\xd7\x34\x12\x94\x41\xa6\x67\x0e\x4a\x7c\x2d\xf5\x3f\
-\x2f\x60\x37\xa2\x31\xce\xfb\x7b\x35\xd4\x3f\xeb\xe1\x1d\x31\xd8\
-\x6b\x50\xa9\x65\x7a\x96\x2a\xfb\x1a\x28\x78\xaa\xfd\xd7\xaf\x66\
-\xff\xce\xef\x18\x86\x6f\xf9\xa6\xfb\x7c\xd7\x41\x6f\x7e\xea\x67\
-\x8e\xf3\xcf\xb1\x78\xf2\xfb\x9f\xa6\x5f\x08\x39\xeb\xa0\xdc\x66\
-\x7a\x16\x86\x42\x1f\x71\xfe\xa7\xff\x0b\x4b\x01\x67\x51\x4e\x8c\
-\xfa\x80\x94\x2e\x3c\x69\x61\x0b\x3a\x23\x2b\x18\xed\x05\x89\xd7\
-\x19\xc8\xce\x16\xdd\xb1\x13\x8b\x30\xa0\xab\xd5\x04\x11\x46\x7c\
-\xf2\x04\x65\x93\x69\xf7\x91\xa6\x62\x3e\x2b\x0f\x5b\x70\xa6\x60\
-\x0e\xa8\x31\xb9\x6d\x24\xb2\x56\x7f\xd1\xc7\x2f\xb8\x96\x4f\x2f\
-\x7e\xe3\x59\x54\xfc\x80\x4a\x24\xd3\x2d\xb1\x3b\x23\xc8\xf1\xda\
-\xf5\xaf\xc5\x23\x2f\xf0\xcb\xbf\x6c\xfc\xef\xb9\xdf\xf0\xf5\xe3\
-\x3b\x0e\x7d\x85\x78\xcf\xe3\xc5\x17\x87\xe1\xe7\x7f\x71\x39\xc3\
-\xbd\xf5\xb7\xb3\x46\x43\xcc\x01\x67\xbc\x17\x05\xd9\xbd\x9e\xff\
-\xa7\xae\xbf\xd7\x93\xcc\xa3\x8d\xe0\x5a\x3e\xbd\xfe\x37\x9e\x39\
-\xc6\x0f\xa8\x58\x99\xce\xb1\x45\xf7\xe2\x4d\x3e\x03\xd1\xc6\xf1\
-\x36\xc8\x0d\x62\xc3\x39\xf8\x38\x07\xa5\x93\x69\xad\x27\x43\x11\
-\x35\xc0\x4a\xbb\xf0\x32\xd3\x4b\x91\x3b\xe8\x5e\x89\x0b\xae\xc4\
-\x7f\xd6\xea\xa7\x56\xa1\x97\x66\x75\xc2\x1b\x19\x23\x7f\x6b\xff\
-\xd7\xea\x0f\x6f\x77\x03\xd4\x7a\xad\xfa\x39\xeb\xa0\x1a\xf1\x5a\
-\xfb\x0c\xe3\xff\x67\xef\x3d\xe0\xaf\xcb\xaa\xf2\xe0\xcd\xf0\x32\
-\x0e\x8c\xcc\xd0\x87\xde\xab\x80\x80\x14\x41\x3a\x28\x48\x11\x11\
-\x11\x89\xd8\x85\x18\x5b\xd4\x24\xfa\x99\x98\x5f\x3e\x34\x5f\xd4\
-\x24\x58\x12\x23\xe8\x67\x49\xd4\x28\x04\x10\x45\x05\xe9\x30\xf4\
-\xce\x50\xa4\xb7\x99\x01\x86\x19\x18\x3a\x0c\x65\xc0\xac\x67\x9d\
-\xfd\x9c\xfb\x9c\x75\xf6\xbe\xfb\x9c\x5b\xfe\xf7\xbe\xef\x7b\xf7\
-\xef\x77\xcf\xb3\xf6\xea\x6b\xed\x7d\xce\xf9\xdf\xff\x6d\x57\xb4\
-\x7f\x4b\x9d\x79\x46\x4a\x57\xb5\x67\x19\x57\xbd\x72\x4a\xf8\x3a\
-\x92\x6b\x9d\x95\xd2\x15\xae\xb0\x37\xad\x9a\x94\xc8\x39\x6f\x4d\
-\xc9\x7f\x85\x50\xf6\x13\xf7\x04\x1c\xb0\x6e\xa2\xf2\x8a\x01\x78\
-\xde\x11\xa1\xa4\x74\xd1\x68\x3a\x73\x1f\xd6\x5f\x7b\x31\xca\x9c\
-\xb5\x12\xa1\xa0\xf4\xc8\x60\x1e\x63\x1f\xea\xef\x9e\x81\x70\xc3\
-\x58\xfe\xbe\x61\xa4\x8e\xa5\xf5\xc2\x0e\x0a\xd9\x3e\x4c\x7b\x11\
-\x7d\xb4\xe4\x23\x03\xc9\xa3\x45\xfa\x4d\xce\x02\x10\x8b\xfa\xcc\
-\x35\x27\xc4\x93\x03\x88\xe1\x62\xf8\xe8\xa6\x3d\x4f\xa6\x43\x32\
-\x14\x14\xa6\xa3\x72\x5a\xf2\x96\xc1\xc8\xde\x12\x65\x0d\x9e\x98\
-\x29\x1c\x69\xfd\xc3\x6e\x6c\x7d\x76\xaa\xfd\x46\xf8\xcd\x6f\x22\
-\x61\x7c\xc1\x6c\xce\x05\x8b\x0d\x12\x55\x27\x0b\xfa\x97\xb1\xf7\
-\x21\x82\x8d\xbe\xe1\x07\x9c\xf0\x38\x76\x59\x7b\xd8\x99\x81\xc7\
-\xe5\xec\x71\xea\xd7\xa5\x84\xdf\x27\x47\xfc\x2b\x5c\x3e\xa5\xcb\
-\xdb\x03\x78\xfa\xe9\xf6\xf6\x5b\x93\x9d\x28\xe3\xb5\xf8\xf7\x15\
-\xf6\x90\x14\xa4\xb4\xb0\x3b\x32\xf4\x3b\x4c\x5b\xdb\x79\x24\x1f\
-\x31\x82\xc3\x30\xed\xff\xd8\xf5\x3d\x8f\x8c\x4c\xe1\x48\xf7\x7f\
-\x48\x28\x4c\x5b\xe5\x8c\xda\xb9\x94\x61\xce\x47\xfe\x6d\x71\x76\
-\x7a\xfe\x5b\x42\x83\x17\xd1\x99\x0c\xd0\x47\xc4\x50\x21\x36\x57\
-\xdc\x70\x03\x15\x57\x30\x4e\xde\x85\x19\x38\xed\x8b\x67\x3c\xfe\
-\xff\xd9\x3f\x01\x3a\x70\x34\x71\x12\x02\xb4\xea\xc1\x66\xa3\x0e\
-\x22\x90\x66\x3e\xbc\x31\xf6\x18\xd2\x40\x38\xb7\x09\xfc\x7e\xea\
-\x0a\x36\xcb\x79\x65\xe0\x74\x14\x6f\x54\x7f\xb0\x1f\xed\xa0\x3e\
-\x50\x26\x42\x80\x56\x3d\xeb\xd6\x1f\xc3\x6f\x7b\x7e\x45\xfb\x8d\
-\xf0\xc7\x3c\x6a\xdb\x51\x4e\x4e\xff\xef\x7e\x6f\x4a\x1f\xbb\xb8\
-\xbb\x00\x1f\xf6\x7f\xde\x03\x5b\xbe\xfe\xcd\xda\x69\x7a\x2d\x60\
-\x5e\xd1\xc1\x11\x9f\xff\x08\xe7\xcf\x40\x78\x81\xf4\xf8\x96\x1c\
-\xf3\x40\x9e\xa0\x6b\xf9\x92\x4f\x44\x3d\x4a\xf7\x93\xcc\x04\xa8\
-\x3f\xa7\x8d\x39\x35\x1e\xfc\xd7\x46\xbf\xe9\x45\xa1\xe9\x9f\xc9\
-\x66\xf4\x3c\x66\xe4\x13\xcc\x3d\x32\x79\x83\x49\x66\x02\x3c\xa7\
-\x9c\xe3\xdc\xfc\x60\xa6\x75\x92\x26\x66\xb7\x3d\xcc\xf5\x3f\xb7\
-\xfe\x3e\xd0\x81\x38\xae\x3b\xf0\x55\xfb\xd0\xe0\x73\x5e\x90\xcf\
-\x43\xdb\xa4\xbe\x0f\xac\xa2\xb8\x5f\x63\x91\x79\x5b\xf7\xa7\x39\
-\xe4\xe4\xb9\x2e\x27\x19\x01\xbe\x27\x5d\x98\x69\x63\x56\xe3\x05\
-\x7b\x98\xe9\x5e\x27\x4d\xcc\x6e\x7b\xf0\x58\x33\xfc\x7b\x1e\xcb\
-\xf4\x7b\xcf\x1d\x51\x48\x6f\x56\xfd\xc1\xdd\xd2\x29\x6b\x24\x42\
-\x99\x34\x31\x3a\x38\x8a\xfa\xfd\x06\xd2\x27\xe0\x11\x2d\x0d\xef\
-\x64\x97\x0e\x9b\xe4\x33\x4c\xa8\x03\x06\xe9\xac\x1f\xa6\xc5\x0d\
-\xa8\xfe\x48\x13\xa3\xbd\xc7\x9c\x73\x08\xf9\xf1\x9b\x38\x1d\xb3\
-\x1f\xc6\xc2\xd4\xeb\xb6\xa0\xfb\x5a\x7f\x28\xa7\xdd\x89\x60\xb0\
-\xf1\xfa\xdb\x19\x1c\x34\x8e\xc3\x0e\xbc\xe6\xf5\x29\xf9\xaf\x0f\
-\x16\x4e\x40\x3d\x5f\x46\x27\x74\xd0\x0f\xd3\x91\x3a\x5a\xa3\xfe\
-\x48\x13\xa7\xd8\x2f\x6d\x2f\x1c\xd1\x09\x62\x65\x7a\x5f\xcf\xff\
-\xa5\xb5\xac\x22\xdc\x41\xfd\xa7\xf4\xab\xcc\xc6\x13\xb9\xaa\x44\
-\x14\x04\x19\x06\x90\x7a\x44\xd3\x73\xd5\x8c\xa0\x71\x61\xee\x11\
-\x44\xe6\x75\xd4\xf8\xc8\x17\x43\x89\x63\x8d\x25\x1c\xf8\x67\x2e\
-\xcc\x0f\xea\xa0\x39\x72\x0e\x5d\x52\xc6\x8c\xfa\xea\x43\x75\x69\
-\x4f\x5f\xf4\x1f\xf4\xdd\xc4\x0e\x40\x7f\x90\x06\x82\x01\x7e\xc6\
-\x6e\x36\x3c\xb2\x6e\xa0\xd3\x82\xee\xd0\x1d\x88\x0d\x7d\x01\xf1\
-\x88\xf5\x40\x95\x39\x83\x6e\xe9\xab\x0f\xd5\x85\xed\x61\x9c\x90\
-\x1d\xf8\xfc\xe7\x53\x7a\xf1\xcb\xad\x34\xdd\x3b\x58\xfb\xd2\xfa\
-\x73\x2f\x01\x0b\xfa\x6e\x62\x07\x9a\xaf\x73\xfe\xef\xe5\xfe\xdf\
-\x72\xfd\x4b\x37\x58\x69\x3d\x94\x07\x5a\xd7\x44\x73\xa5\xe3\x96\
-\xbe\xfa\x50\x5d\xda\xab\xcf\x1c\xeb\xd8\xe0\x02\xa3\x0a\x66\x84\
-\x0d\xc0\xff\x93\xc3\x47\xb6\x59\x98\x44\x86\x26\x00\xfd\x2c\x77\
-\x2c\xf9\x33\x39\x63\xb8\x7f\xe8\xdb\xa0\x7e\x37\x5b\xfd\x48\xdf\
-\x40\x0c\xd6\x32\xf0\x9f\x63\x76\x0a\x7e\xec\x0a\x35\x72\x64\x0f\
-\x9e\x3d\x7a\x13\x10\xca\x20\x2d\xf1\x20\x67\xbc\x91\x3f\xb3\x27\
-\xcf\x3c\xf5\x7a\xd4\xef\x6d\xb3\x3f\xe8\xcc\x19\xf4\x0d\xc4\x58\
-\xb7\xfe\xce\xcb\xe1\x78\x22\x75\xe0\x85\x67\xdb\x0f\x47\xd9\xdb\
-\x77\x7d\x70\x63\x67\x1c\xed\x1f\x53\xc2\x56\xa2\xda\xe8\x82\x40\
-\xa1\xec\xb7\x7e\x0f\xc3\xd6\xf8\xdc\x83\x88\x47\x9a\xfb\x3d\x62\
-\x6f\x9b\xfd\xc1\x66\xce\x68\xc5\x73\x5f\x7d\x31\x36\x23\x7d\x44\
-\xf5\xcf\xa9\x65\x15\xdd\xa3\xa8\xdf\x5f\x44\x5f\x96\x1c\x92\x98\
-\x3a\xa0\x8a\xde\xd3\x64\xf4\xa2\x30\x1c\x51\x08\x3a\x8c\x58\x70\
-\x10\x2f\x9d\x6a\xec\xb0\x0f\xfa\x7d\xe1\xfe\xcd\xcb\xac\x9a\x96\
-\xe4\x1b\x13\xd2\x1c\x20\x5b\xb7\x7e\xef\xa5\x39\x65\x3d\xc5\xfc\
-\x25\x3f\xf6\x9e\xfa\x11\x8b\xf6\xb1\x88\x30\x9f\xd3\xab\x60\x7a\
-\x98\xee\x79\x07\xde\xfb\xfe\x94\x5e\xff\xa6\xa5\xa7\xe4\xbc\x73\
-\xc5\xea\xe5\x1e\x44\xe9\x27\xdb\xfe\x5f\xf7\xfc\x6f\x6d\x97\xe2\
-\xf9\xbb\xe3\xf3\xdf\x5f\x03\xe1\x85\xa6\x5f\x7d\x32\x42\x47\xc2\
-\x74\xb1\xf3\xa4\x88\xc1\x05\x87\xbb\xa9\xe6\x2f\xdb\xd1\xc6\xd5\
-\x8d\x47\xf5\x56\x43\x55\xae\xb6\x53\xfd\xb9\x0d\x36\x3a\x1d\x45\
-\x46\x28\x38\x4c\xb7\x5e\xff\x28\x9e\xe5\x09\x1e\xc7\x28\x5d\x13\
-\x3a\x2f\x2b\x91\x06\x96\x46\xb4\x6f\xad\x7f\xc9\xc7\x81\x77\x7c\
-\x76\xe0\xb3\x9f\x4d\xe9\xaf\x9e\xd9\xed\xa7\x7e\x7f\xc4\x0d\x11\
-\x36\x60\x98\x2e\x36\x63\xde\x6f\xe8\x04\xcf\x3d\xef\x4a\xcb\x5f\
-\xb6\xa3\x8d\xab\x1b\x8f\xf9\x8c\xe2\xc1\xbf\x3b\xee\x0e\x23\xf7\
-\xd9\xb6\xe6\x4f\x4c\x9d\x8c\xf6\xad\xfd\x3f\xca\x87\xc9\x10\xcd\
-\x2b\x63\x17\x03\x8c\x1c\xc4\x8c\xea\x73\x86\x20\x42\x33\xe6\x8f\
-\xd8\xce\xcb\x4a\xa4\x81\xa5\x11\xed\xc7\x0e\xcd\x8a\x4a\x46\xc2\
-\xad\x4c\x9d\xd1\xbd\x88\x4e\xef\xcc\x8e\x08\xbe\xd2\x61\x4a\x67\
-\x40\x8c\x18\x80\xcd\x24\xba\x4e\xf0\xe7\x86\xf9\x40\x11\x51\x65\
-\x2d\x9a\x36\x44\xe8\x93\x26\x2a\x4f\xe9\x5e\x4e\x82\xa8\x4a\xa0\
-\x6d\xa8\x68\xeb\xf5\x5b\x30\xbe\x10\xe8\xc1\x43\x40\xe6\x42\x8c\
-\xf9\x91\x4f\x6c\xca\xa9\x48\x8c\x06\x9e\xc4\xe1\x70\xbc\x77\xe0\
-\x6b\xf6\x9b\xe3\x4f\xfd\x9b\x94\x3e\xf7\x85\xae\x92\x7e\xb9\x49\
-\x10\x21\x56\x3a\x4c\xc3\x76\xdc\xfc\xf9\x6f\xb1\xf7\x6d\xff\x6b\
-\x3b\x36\x5d\x7f\xb7\x1a\x95\x23\x02\x87\x80\xcc\x85\x08\xcb\x12\
-\x5d\xe2\xa9\x6e\x2f\x27\x41\x54\x25\xd0\x36\x54\x84\x74\xfc\xeb\
-\xdc\x5d\xb2\xc2\x81\xce\x80\x4a\xaf\xe0\x6a\x7d\x93\x52\x02\xca\
-\x53\x7a\xfd\x68\xee\x41\x5d\x2a\xbd\x21\xf7\xdd\x86\x81\x33\xac\
-\x14\x1e\x18\x44\xd0\x1a\x54\x69\xc8\x30\x94\xa7\x74\x27\x3d\x1c\
-\x4f\xd2\x0e\xbc\xe8\xa5\x29\x7d\xf0\xbc\xf5\x8b\xd7\x2d\xa5\xf4\
-\xfa\x9e\xb3\x07\xee\xf5\x3d\xdd\xff\x5a\xb3\xd2\x1b\xab\x5f\x1d\
-\x69\x2f\xc8\xd7\xa0\x4a\x4f\x95\x53\x6f\x45\x44\x48\xbf\x81\xe0\
-\x19\x02\x9f\x25\x10\xe1\x93\xf4\x54\x39\xf5\x88\xb8\x80\xb9\x0f\
-\x44\xc2\x03\x83\x08\x32\xd3\xbd\xbe\xf0\xa0\x3a\x6b\xa0\xc1\xf0\
-\x47\x54\xba\xb2\x01\x5b\xf1\xe7\xca\x59\x07\x71\xed\xfa\xd9\x2b\
-\xa0\x3d\x3c\x9f\x8c\x4e\x5b\x5d\xc4\xbe\xee\x2d\xd5\x3f\x6b\x2d\
-\x0e\xca\x7b\xdb\x81\x7f\x7c\x47\x4a\x2f\x7d\x45\x97\x9e\xef\x1d\
-\x23\x81\x4a\x33\x79\xe5\x29\x5d\x93\xd3\x0f\x51\xf7\xac\x9f\x9b\
-\x30\xc4\x5e\xce\x43\x7d\x2a\x4d\x79\xaf\x0b\x1b\xe6\x98\xd1\xf5\
-\x8f\x70\xff\x97\xf2\x53\x1e\xe8\xf8\xd0\x9c\x07\xb5\xf4\x05\xce\
-\x20\xf6\xb4\xfe\x63\x7d\x61\x58\x23\x4b\x12\x83\x18\x69\x17\xca\
-\x01\xd7\x2a\x0c\xe2\xe0\x22\x06\x81\xf9\xf3\x77\x56\x88\x5f\xbf\
-\xbe\xe5\xb9\xab\x08\x8d\xf9\x3a\x03\xae\xdc\x7f\x76\x42\xba\xcf\
-\x2f\x2a\x40\x4f\xe2\xb3\x6e\xa2\x8b\x45\x9e\xdd\xf6\x40\xbf\xc4\
-\x3e\x38\x19\x66\xbb\x56\xfd\xf4\x43\x2c\xe5\xdf\x67\xd3\x95\x02\
-\x55\xa6\x4c\x9a\xe6\x2e\x20\x93\x76\x54\x86\x5d\xa6\x89\x50\x51\
-\x9a\x26\x07\x3c\x3e\x3b\xf0\xce\x77\x77\xff\xba\x1a\xac\xe9\x1a\
-\xeb\xcf\x7d\x45\x3c\xd9\xf6\x3f\xeb\x26\xae\x52\xff\xe4\x9d\x84\
-\x20\x58\x2b\x62\xc1\x30\x8a\xa9\xda\xe7\x17\x15\xe0\x63\xcd\xf5\
-\x3f\x46\x9f\xf4\xc5\xa0\x98\x93\x66\x02\xd8\x78\xce\x93\xa0\x9a\
-\x40\x4f\xd7\xe4\xc3\x7c\x47\x6f\xe3\x73\xff\x16\x60\xb0\xc1\x91\
-\xc8\x84\xa1\xb9\x4d\xcd\xd7\x6b\x31\xdf\xbd\x7e\xa6\x99\xfe\x48\
-\xbe\x07\xf5\x6b\x6f\x48\x13\x3d\xdf\x9c\x23\x5a\xa6\x3d\xc1\xdc\
-\x07\x8b\xb3\xc9\xa8\x3e\xe1\x41\x37\xca\xc1\x3b\x8c\xe3\xb3\x03\
-\xf8\xaa\x92\x27\x3f\x3d\xa5\xaf\xda\xeb\x1f\x1c\x71\x7d\xb1\x35\
-\xc8\x83\x0e\x69\x20\x46\x6b\x3f\x1d\xc5\xf9\xcf\xbd\xce\x7c\x14\
-\x3d\xdf\x2d\xee\xff\x4d\xd7\x8f\xdc\xa7\x0e\xd6\x4d\x84\x1d\x69\
-\xe2\x2e\xea\x1f\xbe\x06\xc2\x8b\x0b\xd0\x1e\x3e\xcd\xe8\x74\xc7\
-\x46\xee\x1b\x19\x2c\x1c\xa8\xf4\xaa\xce\x35\x47\xa5\x27\xfb\x53\
-\x23\xe4\x04\xc3\x8c\x2a\x9a\xec\xaf\xa1\xa8\x35\x2b\x5d\x33\xe3\
-\x89\x0c\x54\x9a\xfa\x9a\xa3\xd2\x94\x37\x51\x8d\x8c\xf6\x29\xb1\
-\x69\x7c\x50\xd8\xd7\x0e\xe0\x27\x6a\xff\xf2\x69\xc3\x9b\x47\x31\
-\x57\x5f\x70\x93\x00\xb9\xee\x19\x55\x54\xb4\x5d\x81\xa9\x7b\x5e\
-\xe9\x9a\x2b\xdd\xf3\x4a\x53\x5f\x73\x54\x9a\xf2\x26\xaa\x91\xd1\
-\x3e\xcd\xa8\xa2\xa6\x9f\x2d\x29\x68\xcd\x4a\x33\x9c\xe6\xa8\x34\
-\xe5\x4d\x54\x23\xa3\x7d\x9a\x51\x45\xea\x67\xf8\x2e\x2c\xcb\xca\
-\x15\x99\x1d\x26\xa0\x69\x4d\x7a\x55\xb9\x46\x06\x1d\xfc\x61\x13\
-\xe1\x5f\x3e\xdc\x4c\x51\xbd\x39\x8f\xf9\x46\x83\x18\x2f\xcb\x59\
-\x1e\xf2\x71\x1a\x7a\x18\xd1\x5f\xb0\x9f\x2d\xef\xbc\x2e\x8e\xc1\
-\x5f\xac\x9f\xbd\xf0\x7f\x83\x21\x9d\x9c\x4f\xdf\x1f\xe4\xcb\x1c\
-\xe1\x95\x34\xb0\x34\x62\xbc\xac\xd3\xab\xc3\x1f\x78\xd0\xc3\x68\
-\xf9\xeb\xb4\x0e\xc7\x3d\xee\xc0\x1b\xce\x49\xe9\xef\x9e\x9d\xd2\
-\xa5\xf6\x7d\x57\xa3\xf3\x2d\xe7\x3d\x79\xfd\xc3\xfe\x19\xed\x8f\
-\x96\x3c\xf6\x29\xe8\xef\xfd\xfe\x0f\xf9\xae\x5d\x7f\xec\x47\x63\
-\xce\x73\x7d\x67\xe7\x7f\xa1\x7e\xbf\x81\x30\xef\xd6\x02\x36\x1b\
-\x06\x47\x08\xc2\x41\x9a\xb8\xc5\x0b\x92\xe6\xce\x0b\x2e\xd3\x18\
-\x20\x73\x19\x30\xbb\x89\xfa\x00\x27\x5e\xc0\x77\x5e\x3f\x73\xcf\
-\xd8\xcc\xb7\x50\xe3\x60\x7d\x82\x7c\x25\x7f\xc1\xc7\x61\xba\x1f\
-\x1d\xb8\xf4\xd2\x94\xfe\xfe\xb9\xdd\x07\x05\x3d\xa3\xb0\x77\x4a\
-\x59\x36\xd7\x3f\x9e\xbf\xf0\x49\x1e\x1d\x32\x0e\xe6\xa4\x89\xd4\
-\x05\xae\x32\xe8\x27\x63\x33\xdf\x52\x0c\xfa\x28\xc8\x9a\xfe\x62\
-\xfe\xf0\x45\x1e\xfd\xa9\x7f\xd2\x44\xea\x9e\x40\xf5\xfb\x8b\xe8\
-\xac\xc7\xfb\x61\x13\xd6\x8b\x9e\x28\xdd\x4f\x32\x33\x36\x9c\x3d\
-\x24\xba\x3f\xf1\xe1\xfd\xb3\x03\xe3\xf5\x44\x66\x8c\x2e\xd8\x74\
-\x34\x01\xd5\x16\x79\x95\x46\x31\x1f\x53\xa4\xba\xcb\x6d\x92\xcb\
-\x73\x17\x4a\xf7\x82\xcc\xdc\x76\xfd\x4d\xff\x96\x07\x75\x90\x2c\
-\x69\x60\x69\x20\x6d\x88\x58\x13\x69\xaa\xbb\xdc\x26\x94\xc3\x87\
-\xd2\x98\x1f\xc6\xfe\x77\xe0\x93\x9f\xb2\x7f\x59\xd9\xeb\x1d\x1f\
-\xb9\x60\x98\xab\xaf\xaf\xb1\xb8\xa6\xb3\xd7\x9f\x86\x19\x57\xda\
-\x6f\x16\x94\xfb\xad\x27\x32\x43\xcf\x61\x64\xde\xf4\x6f\x79\x50\
-\x67\x92\x3e\x7c\xda\x83\x65\x90\x66\x3e\xe0\xbb\x3f\x38\xcb\x83\
-\xba\x3e\xe5\x24\x23\x63\x03\x4b\xc3\xfd\x99\x80\x66\x1e\xcf\x0e\
-\x15\xf5\x92\x8b\x9e\x57\x8a\x31\xbb\x5f\xe6\xcd\x73\xc8\x5e\x49\
-\x33\x1f\xcf\xd7\x26\xcc\x17\x6a\x4a\xf7\x93\xcc\x44\x4e\x4b\x5f\
-\x44\xef\x2b\x65\x84\x1c\x98\x10\x03\x42\xcd\x79\x54\x08\xc8\x64\
-\x88\x51\x9f\x4d\x22\x06\xf3\xe6\x94\x7e\x89\x23\xff\xd9\x03\xcb\
-\x81\x1e\x75\x20\x22\x4d\xf9\xae\xeb\xf7\xfc\x2c\x99\x5a\x3d\xb9\
-\x9c\x1e\xa8\x47\x8c\xf5\xb0\x2e\xa2\xfb\x37\xeb\x9a\x7e\xab\xfe\
-\x3e\xf0\x81\xd8\x8b\x0e\xe0\xbc\x79\xe3\x9b\x53\xfa\x87\xe7\xa7\
-\xf4\xc5\x2f\x76\x29\x71\x8d\x31\xe3\xba\x13\x29\x5b\x75\xfd\xdd\
-\xde\x9c\x55\xed\x43\x57\xa8\x47\x44\x1e\xee\x23\xeb\xf1\xbc\x27\
-\xba\x6c\x93\xfe\x19\x27\x23\x63\xd7\xf2\x19\x35\x2c\xdb\x11\xd6\
-\xcd\x8f\x7e\xa6\xa0\xe6\xca\xf5\x8b\x76\xac\x83\x38\xea\x6f\x36\
-\xa0\xbd\xfa\x84\x28\xea\x4f\xa9\x7f\xf8\x1a\x48\x76\x92\xe3\x34\
-\x81\x89\x10\x61\x50\xa2\x95\x17\x9d\x2e\x93\x45\xdd\x65\x73\x6e\
-\x3a\x4d\xa0\xd5\x20\xc6\x26\xc2\xbf\xd2\xcb\xe2\xa9\xae\xda\x94\
-\x68\xe5\x45\x9f\x4b\x65\x10\x5a\x11\x7d\x6d\xa4\x51\x98\x0d\xf2\
-\x89\x1d\xd3\x8f\x7e\xd8\x76\xfd\x8b\x48\x07\x6a\xd7\x1d\xb8\xf0\
-\xa2\x94\x9e\x69\xaf\x75\x9c\x7b\xfe\x22\x93\x6d\xaf\x3f\xf7\x2e\
-\x11\x91\x4b\xb4\xf2\x16\xd9\x75\xd4\x52\x19\x84\xdc\xf3\x50\x27\
-\x8d\xc2\x6c\x70\xdf\x13\x3b\xa6\x1f\xfd\x70\x3c\xd4\xbf\xc8\x76\
-\x39\xe5\x35\xee\x61\xfd\xdd\x0d\x24\xaf\x62\x7c\x4a\x14\x4b\x42\
-\x11\xd4\x81\x8c\x34\x70\x1f\x46\xcc\x2f\x6e\x38\xe4\xa8\x1b\x36\
-\xea\xb7\xea\x99\xab\xbf\x76\x4f\xd8\x57\x22\x1c\x2a\x1d\x02\xc4\
-\xfc\x36\x5d\x7f\x08\x77\x98\xee\x41\x07\xbe\xf4\xe5\x94\x5e\xf2\
-\xb2\x94\x5e\xfe\x6a\x7b\x97\x95\xbd\x50\xce\x3d\xec\xa9\xd9\x5e\
-\xc1\x9e\xd0\x3d\x73\xd8\xff\x8b\x45\x8b\xe7\x0b\x7b\x57\xbb\x9e\
-\xcd\xd5\x5f\x44\xda\x00\xc5\xf3\x9e\x58\x70\x19\xf3\xdb\xf4\xf9\
-\x1f\xfd\xa3\x4f\x4b\x7f\xd2\x36\x36\x94\x8d\x25\x96\x1c\x92\x87\
-\xfa\x48\x03\x31\xa2\x3f\xbf\x9a\xa3\x21\x59\xce\xbd\xae\x9b\xdc\
-\x0d\x27\x1c\x34\x16\xf3\x83\x99\xd2\xaa\x43\x19\x79\x98\x93\x06\
-\x62\xc4\x7c\xe9\x8b\xd8\xd2\x6f\xc9\xe7\xd6\x1f\xf3\x69\xfa\xcf\
-\x35\x78\x31\x76\x68\xe9\xb7\xe4\xf4\x73\xc0\xdd\x77\xe0\x2b\x5f\
-\x49\x09\x3f\x04\x75\xf6\x2b\x53\xc2\x6f\x7a\x60\xc4\xfd\x41\x9e\
-\x0b\xed\xd0\x5a\xdf\x96\x9c\xfb\x9e\xd8\xd2\x6f\xc9\x8f\xb7\xfd\
-\xcf\xba\x89\xad\xfa\x5a\x72\xae\xcb\x14\x54\x5f\x53\xe3\xc3\x2f\
-\x75\x41\xab\x0f\xca\xc8\x9b\x22\xa7\x2f\x22\x6c\x8f\xf9\x44\x2e\
-\x98\x58\x54\x55\x00\x0d\xc5\xd2\xa0\xac\xa6\xdf\x94\x9b\x53\x2f\
-\x20\x3b\x77\x3f\x12\xbf\x14\x73\x29\x8f\x79\x66\x04\xc8\xfd\x69\
-\x7c\x82\x31\x56\xd6\x8f\xf1\xd9\xdc\x5d\xd5\xdf\x8a\x3f\xea\x45\
-\xae\xa3\x76\x43\x8e\xeb\xd1\xaf\xf5\x8a\xf5\x8f\xe2\x1f\x18\x5b\
-\xef\x00\xde\x8e\xfb\xfa\x37\xda\xb3\x8e\x97\xa7\xf4\x19\xfb\x46\
-\x5d\xdf\xb3\x8c\x7a\xc4\xeb\x1f\xf7\x53\xdc\xaf\x4d\xb9\xe5\xed\
-\x36\x39\x7f\xaf\xc5\x6a\x60\x4d\xd1\x1f\xcb\xac\xe2\x71\x56\x7f\
-\xb5\x8e\x55\x05\x3b\xa8\x7f\xf8\x7b\x20\x21\x01\xd4\x81\x45\x5c\
-\x75\xd0\x96\x08\x3f\x4a\x47\xbf\x90\xf9\x05\x7f\xd5\x98\xbc\x5b\
-\x00\x31\xe0\x87\x3c\x4c\xb3\x5f\x22\x54\x78\xb1\x1d\xd0\x12\x7f\
-\xa0\xeb\x4a\xd3\x0f\xb4\x25\xc2\x52\xe9\xe8\x09\xb2\x58\xbf\xea\
-\x93\x26\x8e\xfc\xb1\xd6\x3d\xa9\x3f\xd6\x77\x98\xaf\xde\x81\x8b\
-\x3e\xde\xbd\x25\xf7\x4d\xf6\x22\xf9\xe7\xf3\xb7\xe8\xee\xfb\xfa\
-\x73\x9f\x12\x47\xf9\x86\x76\x40\xef\x44\xda\xff\xac\x9b\xa8\xf5\
-\xe3\x17\x17\x4f\xe1\x79\x1a\xfa\x10\xa7\xfe\xeb\x8c\xc6\xa4\x1f\
-\xa2\xfa\x73\x9b\x1d\x9c\xff\x83\xcf\x81\x34\xe2\xc7\xba\x9a\x05\
-\x8d\xfc\x61\x83\x18\x93\x0d\xe0\x57\x35\xd7\x7e\xb3\x78\x14\xb0\
-\xc1\xe8\xfd\x5a\x1c\x0e\xf2\x38\x5f\x86\xa3\x7c\x4d\x99\xbc\x92\
-\x1d\x7d\x13\xa1\xa3\x34\x6d\x81\x18\x90\x9d\x48\xf5\x77\x55\x1d\
-\x8e\xdb\xea\xc0\x27\x3e\x99\x12\x3e\x45\x8e\x77\x56\xe9\x8b\xe3\
-\xb5\x78\xdc\x7b\x44\xe8\x29\x5d\xb3\x23\x7f\xb4\x5f\x4d\x40\x1e\
-\x75\x14\xe9\x9b\x08\x99\xd2\xb4\x3d\x51\xf7\x3f\x6b\x25\xce\xa9\
-\xff\x73\x9f\x4b\xe9\x8c\x2b\x6a\x37\xeb\x34\x74\xa7\x0c\xe6\x41\
-\x84\x8d\xd2\x2d\x1f\xa3\xf5\x32\x03\xf2\x4a\xb6\xf0\xdd\x7d\x99\
-\x62\x5e\x61\x0f\x66\xb4\x06\x95\x6b\xf1\xc2\x5b\xd6\x1f\x39\x85\
-\xb2\x44\x9c\x7d\x83\x08\xf6\x23\xff\xcb\x18\x6a\x3b\x31\xbf\x3e\
-\xd7\xac\xbf\x6f\xf5\x6b\x49\x28\x9d\x37\x1f\x3e\xc5\x8f\xcf\xb0\
-\x62\x3d\xa3\x76\x8d\x1c\x9a\x06\x79\x20\x33\x5d\x5d\xff\x91\xc3\
-\x03\x63\x53\x1d\xc0\x5f\x99\x17\x7d\x2c\xa5\xf3\x3e\x64\x5f\xb5\
-\xfe\xc1\x94\x3e\x70\x6e\x4a\x9f\xfa\xcc\xe0\x74\xda\xfd\xfa\xf3\
-\xdc\x9e\x78\x7e\xad\x7b\xfe\x73\x6b\x02\x31\x76\xbe\xff\x37\x58\
-\xff\xfb\x3f\x98\xd2\xed\x6f\xeb\x65\x35\x0f\xf8\x23\x02\xe7\xe4\
-\x3e\xd6\x3f\x78\x06\x32\xaa\x24\x36\x6c\xb4\xa2\x66\x41\x1e\x8c\
-\xb9\xb1\x88\x94\x01\x31\xa2\x3f\xf2\x5c\xb8\xde\x41\x43\xf5\xe1\
-\x8d\xc9\xa6\x33\x94\x2f\xc4\xd4\x50\x31\x5f\x0d\xd2\x3b\x34\x82\
-\x01\x23\xb6\xf4\xe9\xa3\x92\x8f\xdf\x28\x72\x0d\x54\x71\x5e\x9e\
-\xb4\xdc\xeb\xa6\x63\xa8\xb5\xea\x67\x12\x07\x5c\xb9\x03\xf8\x84\
-\x38\x5e\xbb\xb8\xf8\x13\x29\x7d\xec\xe2\x94\x3e\x6e\xff\x9a\xba\
-\xd0\x6e\x1c\x1f\xfe\x48\x4a\x5f\xb6\x77\x54\xf5\xe7\x08\xc8\xbc\
-\xff\x74\xcd\x95\x3e\xf2\xf5\x6f\x05\x3c\xd1\xf7\xff\x06\xeb\xc7\
-\x6f\xd1\xdf\xfa\x96\x29\x5d\xee\x72\xcb\xb7\x12\xde\x2c\x81\xdf\
-\x6f\xe1\xba\x13\x61\xd5\x4a\x67\xe3\xe7\x7f\x21\xe0\x31\x6c\x58\
-\x04\xc2\x40\x72\x0c\x8a\x39\xe9\xa9\x72\xd8\x8c\x46\xf6\x0d\x3e\
-\xf6\x17\x73\xc0\x7c\xe4\x9f\x3c\x08\x67\x0e\xf7\x6d\xce\x89\x30\
-\x27\x0d\xf4\x61\x04\x7e\xa7\xd9\x05\x06\xa3\xf8\x26\x27\x0f\xfa\
-\xa4\x81\x18\xad\xfe\x74\x5a\xe1\x98\x6d\xdd\xde\x0e\x12\x7e\xec\
-\x1f\x72\x53\x60\xbe\xa4\x19\x3f\x78\x1e\xd5\x17\xf5\xe1\x87\x3c\
-\xb7\x5d\xb3\xfe\x18\xff\x44\x9c\xa3\x5f\x58\x23\xef\x39\x68\x7b\
-\xe0\x17\xfc\xf8\xc0\xb7\xd9\x82\xc6\x8d\xe0\x2b\xf6\x00\xe2\x81\
-\x8b\x3f\xde\x52\xfb\xa5\x2f\x75\x88\x0f\xf2\x7d\xe1\x12\x7b\xd8\
-\xeb\x15\x78\xcd\xe2\x73\xf6\x4e\x29\xfc\x8c\x2c\x90\x17\x01\x5f\
-\x9b\xbc\xe7\xd0\xcb\xb8\x5e\x2e\x67\x2e\x50\x08\xa3\xa5\x1f\xe5\
-\x08\x70\xd8\xff\xd6\x44\x34\xc6\xc6\xa8\xff\xc6\x27\x6f\x15\xb9\
-\x3b\x8d\x07\x6c\xa6\x3c\x7c\x3d\x8c\x06\xe2\x0f\x88\x67\xdb\x07\
-\x3e\xbf\xf3\xc1\x94\x96\x11\x1f\x0a\xfd\xb8\xfd\xa1\x51\x1a\xee\
-\xcf\xfc\x03\x31\xe2\x7e\x89\xf2\x6d\xac\xff\xe0\x45\x74\x24\xc0\
-\x44\x3a\xaa\x4b\x8a\x74\x0b\x5b\x17\xd8\x75\xfd\xb7\xe2\x8f\xe4\
-\xde\x41\xe3\xe6\x0e\x73\x73\x30\x0f\xe8\x97\xe8\x12\x6f\xe4\xbb\
-\xc0\xd8\x74\xfd\x7e\xa1\xc1\x06\x59\x92\x7f\x21\x8d\x05\xeb\x88\
-\xeb\x5f\x04\xde\x1e\xf5\xef\x7e\x75\xb1\x66\xa1\xbc\xfe\xe6\xcc\
-\x73\xb6\xb5\x1e\x73\xb3\x6c\xf9\x6b\xc9\x19\x6f\xea\xfe\xf2\x75\
-\x3f\x8e\xd6\xbf\x55\x3f\xeb\x26\xa2\x1f\x4a\xb3\x3f\xc4\x13\xbd\
-\xfe\x57\xbf\x2e\xa5\x4f\xda\xeb\x5c\x8f\x78\xd8\xf8\xf5\x10\x3c\
-\x4b\x7d\xc6\xdf\xa5\xf4\xee\xf7\xec\xf7\xf9\x3f\x78\x0d\x84\x0b\
-\x57\x43\x2e\x36\x11\x67\xac\x9f\xac\xf9\x8c\x25\x9d\xa7\xee\xa6\
-\xd7\x2d\x38\x6d\x5d\x00\x0a\x26\x55\x16\x63\x12\xa1\xc8\xd8\xc4\
-\x98\xaf\xdf\x58\x60\x90\x2f\xd0\x55\xe7\x59\x40\x3f\xc4\xe8\xcf\
-\x63\xdb\xa1\x94\x43\xc9\x77\xb3\x7e\x3a\x22\x9a\x93\x3e\x36\x68\
-\xe6\x25\xce\xc9\x03\x8b\xba\xc4\x98\xef\xdc\xfa\x25\xcc\xce\xc8\
-\xbe\x16\xd4\x97\xb3\x20\x62\x3a\xa0\xf3\xa4\xb7\xb1\xb9\xb3\xa8\
-\x14\x17\x20\xfb\xab\x01\xfd\x10\x63\x3f\xe9\x9b\xee\x3d\x1f\x9d\
-\x04\xc7\x31\x3c\x54\xc9\x73\x55\xda\x12\x8d\xd9\xc7\x06\xed\x4a\
-\x0b\xc4\x94\x3c\xa7\xf3\xa4\xb7\xb1\xb9\xb3\xa8\xc4\x60\xc0\x09\
-\x83\x7e\x88\x87\xfa\x87\xfd\x64\x6f\xd9\x5e\xb4\xb4\xef\x55\xa1\
-\xbf\x68\xfb\xbb\xde\x9b\xd2\x6f\xfe\x6e\x4a\xb7\xb8\x69\x4a\x57\
-\xbf\x7a\xb7\xfe\xf8\x97\x26\xf8\xf8\xf7\x95\x0f\x71\xa8\xfe\xc8\
-\x26\x42\x77\x40\xe7\x49\x6f\x63\x73\x67\x51\x69\x03\xeb\x3f\x7c\
-\x0d\x04\x8e\xe9\x14\xd9\x90\x06\x96\x06\xf9\x44\xe8\x28\x5d\xb2\
-\x11\x1e\xeb\x20\x42\xa4\xb4\xa8\x1e\x0d\x79\xa8\x7f\xb1\xe6\xe8\
-\x38\xd6\x92\x3d\x39\x9a\x15\xd8\x6d\x14\xd6\xca\x4d\xd8\xaa\x9f\
-\x7b\x9d\x88\xec\x95\x6e\x54\xc3\x30\x44\xa8\x2b\xdd\x30\xdf\xbc\
-\x18\xc1\x59\x33\xbc\x93\xae\xd5\x44\x3e\x91\x36\xc0\x09\x83\xb5\
-\x12\x61\xa2\xf4\x04\x17\x9b\x55\xd9\x51\xfd\x5f\xb6\x1b\xc5\x5b\
-\xed\xa7\x86\x13\x1e\xbb\x1c\x2b\xd4\xef\xaf\x81\xf4\xab\x16\x36\
-\x0c\xee\x5c\x7c\x5a\x8a\xba\x48\xfb\x53\x4b\x9b\x8f\xe4\xe0\x41\
-\xcf\x1e\x18\xa4\x81\xa5\xd1\xf2\x57\xb2\x59\xc6\x8b\xf9\x44\xdd\
-\x18\x6f\x94\xe0\x9e\xd5\x1f\xf3\x8d\xf5\xb5\xe4\x9b\xae\x3f\xfa\
-\xdb\xd5\x1c\x7d\xc0\x38\xea\xfa\x5b\xf1\xc2\xf6\x19\x6d\xaf\x2e\
-\xeb\xc5\xb1\xe9\xcf\x1c\x72\xcd\x61\x45\xfa\x50\x7f\xd7\xc3\x56\
-\xff\x16\x9d\x2e\xeb\x8f\x16\x28\x2c\xe0\xdc\x7e\x07\xf3\x91\xfb\
-\x56\x3e\xb3\xe3\x35\xf6\x47\x2b\xde\x28\xc1\x50\xc0\x94\x7c\xba\
-\x67\x20\x30\xb4\x31\x32\x20\xcf\xa5\x59\x9e\x79\x60\xc5\x05\x44\
-\x42\xe0\x79\x62\x59\xde\xf3\xc0\xce\x72\xe0\xa6\x87\xfb\x66\x0c\
-\x3a\x67\x2e\xb9\x3e\xb0\x3d\x3f\x95\x3b\xb3\x63\xc4\xfc\xdc\x1c\
-\x39\x67\x7d\x8d\xe1\x66\x26\xa0\x8d\xab\x6c\xba\x7e\xf6\x29\x23\
-\x7b\xcb\x1a\x18\x1b\xe8\xf9\xd8\x81\x39\x2e\x18\x46\xb1\x00\x90\
-\x42\xf7\xfc\xcc\x6b\xfa\x73\xa7\x3b\x3e\xb0\xc7\x96\x46\x33\x5f\
-\xd4\x85\xde\x48\xcd\xeb\xd4\xcf\xde\x02\x31\xe0\x8b\x39\x38\x83\
-\xb9\x89\x7c\xad\xfd\x9f\xfd\x4c\x3d\x9f\xbc\x5c\xe4\xe0\xc9\x20\
-\x41\x7b\xc0\x47\xcf\xe8\x72\xa6\xb8\xe7\x67\x39\x6b\xe9\xeb\x83\
-\xb9\xf8\x23\xdd\xcb\xcd\xce\x79\xf4\x0f\x5d\xd0\x88\x69\x83\x34\
-\x7b\x4e\x5d\xda\x77\x5a\x4b\x8e\xd9\xcf\x54\x7f\x1e\x5a\xf2\x3d\
-\xd4\x6f\xbd\x45\x0f\xb9\x3e\x20\x85\xee\xf9\x99\x17\xd7\x27\xf6\
-\xd3\xe5\x70\x29\xeb\x3b\x78\x11\xdd\x64\xbd\x10\x74\x5c\x00\xbe\
-\x83\xc3\x31\xeb\x32\x88\xeb\xe3\xc0\x45\x57\x5a\x78\x0c\xee\xe2\
-\xcc\x27\x0f\xc5\x79\x92\xb9\x20\xe8\x4c\x1d\x9e\x87\x29\x13\xdd\
-\x8e\x71\x89\x13\x9c\x31\x17\x57\xa5\xb3\x9c\xcf\x51\xd7\xcf\x5e\
-\xf4\x39\xb1\x8e\x8c\x9e\x9e\xd1\x39\xbd\x7e\xaf\x50\xad\x5f\x8b\
-\x9e\xd1\x6e\x40\x1f\x0b\xaa\xa1\xfe\xb6\xf5\xf6\x35\xbc\x94\x5c\
-\xcf\x51\xd7\x7f\xb2\xaf\xff\xa1\xfe\xee\x9c\x38\xaa\xeb\xdf\xbe\
-\x9d\xff\xa5\xf5\x1f\xbe\x06\x12\xce\x7f\x5e\x4c\x88\xa3\x0b\x92\
-\x9d\xc1\x2e\xe3\x15\x2c\xd8\xc7\xeb\x0f\xce\x7b\xf2\x82\xaa\x4f\
-\x19\x87\x58\xd2\x39\x4a\x1e\xf3\x20\xee\xa2\xfe\x3e\xf6\x51\x16\
-\x9e\x63\x31\x36\x71\x07\x29\xec\x34\x24\xeb\x26\x9e\xf4\xeb\xcf\
-\x3f\x44\x88\x47\x70\xfe\xf7\xbd\xdf\xc1\x4e\x60\x6c\xe2\x61\xfd\
-\x79\x61\xc8\x68\xeb\x7f\xca\xac\x75\xc1\xd5\x1f\x03\xa8\xb4\x33\
-\xed\xc0\x8d\x05\xb4\x87\x4f\x33\x2a\xed\x02\x67\x88\x0d\x7d\xac\
-\x88\x5c\x64\xe2\x8a\x6e\x96\x9b\x69\xcd\x4a\xd3\x4a\x6b\xca\x75\
-\xb3\x0f\x2b\xd5\x1f\xfc\x79\x18\xf2\x6c\xc2\x5a\x81\x4a\x33\x9d\
-\x13\x12\x77\x59\xbf\xae\xb9\xd2\x6c\x34\x73\x03\x62\x4d\xc0\xcf\
-\xa8\xb4\x0b\x9c\xd1\xc9\xa1\x56\x1c\xaa\xa3\x74\x56\xd6\x35\x57\
-\xba\xe8\x6b\x13\x4c\xad\x59\x69\xfa\xd6\x1c\x8d\xf6\x69\x46\xa5\
-\x0f\xf5\x5b\xc3\xbc\x21\x82\xec\xa1\xa2\xea\x28\x9d\x75\x74\xcd\
-\x95\x56\x17\x1b\xa5\x75\xcd\x33\xed\x37\x10\x04\xf7\x04\x04\x4b\
-\x05\x6a\x92\x4a\xf7\x49\x16\x02\xf4\x37\x9a\x5e\x69\x4b\x84\xc5\
-\xf6\x9c\x32\xae\x54\xcf\xbe\xd5\xdf\xea\x67\x90\x6f\xbb\xfe\x2d\
-\xad\xdc\x3c\xb7\xac\x19\x56\xa4\x81\xf6\xd8\x76\xfd\xee\xdf\x42\
-\x01\x95\x46\x2a\x3e\x42\x3e\x03\x5e\x56\x99\x05\x2d\x7f\x41\x7e\
-\xa8\xdf\xba\x9b\xf7\x81\xf7\x82\xeb\x64\x38\xe9\x7a\x36\x57\x1f\
-\x6e\xe1\x9b\x23\xac\x87\xb3\xc9\xa3\xce\x1c\xa4\x2d\x50\x69\xfa\
-\x50\x9e\xd1\xbb\x58\xff\xe5\xbf\x07\x82\x86\x22\xf7\xdc\xa4\xd6\
-\x8b\x62\xf1\x35\x0c\x14\x44\x1e\x6a\x26\xed\x7e\x6c\x1e\xe5\xd0\
-\x59\x75\xa8\x2f\xfa\x87\x2f\xf6\x18\xb4\xea\xb8\x2c\x37\x9d\xfa\
-\x23\xf9\x9e\xd5\xdf\xea\x5f\x94\x7b\x8d\x38\xe4\x31\xaa\x6f\x66\
-\xfd\xf4\xb3\x4b\x64\x0d\xc8\x81\x34\x10\x63\xdb\xf5\xfb\x3e\xc9\
-\x7b\x1a\xf1\x5a\xf1\xe7\xca\xe1\x73\xd9\x88\xf5\xb5\xfc\xc3\xd7\
-\x61\xff\x2f\x3a\xda\xea\xd7\x48\x7e\x38\xff\x9b\xd7\xff\x63\xd8\
-\x60\x68\x1c\x06\x69\x6e\x3a\xb0\x9d\xe7\x52\x3b\x64\xbd\x1e\xc1\
-\x22\x4f\x68\xf2\x46\xfe\x4c\x97\xbc\xde\xa5\xd8\x33\x16\x70\x95\
-\xc1\xb8\xc4\xe8\x83\xb1\xe9\x1f\x7a\xe4\x41\x97\x74\x2f\x27\x8f\
-\x8e\x98\x2b\xd1\xf8\x1a\x8b\x34\x71\xe4\x2f\xc4\x83\x5b\xea\x82\
-\x76\xfd\x8c\x98\x23\x0c\x79\x98\xb7\x06\x7d\x11\xa3\x7e\x2b\x9f\
-\x91\xdc\x1c\xcc\x89\x1f\xe3\x1d\xf5\x9c\x75\x13\x63\xfc\x51\x7d\
-\x61\x3d\x46\xf2\x58\x3f\xd7\x9d\x68\x72\x8d\x45\x9a\x38\xf2\x17\
-\xe2\x21\x3f\xea\x82\x66\xaf\x81\x18\x08\x43\x9e\x33\x1a\x07\xfa\
-\x22\x46\xf5\x56\x3e\x23\x79\x8c\xcf\xba\x89\x26\xd7\x58\xa4\x89\
-\x23\x7f\x87\xfa\xbb\xf5\xac\xf4\x8f\x6b\x0d\xc4\x80\x1a\x79\xce\
-\x68\x1c\xd8\x77\x62\x54\x6f\xad\xc7\x48\x1e\xe3\x33\x6f\xa2\xc9\
-\x4f\x11\xba\xbf\x2f\x80\xe7\x7c\x3b\x10\x07\xc2\x98\x59\x65\xee\
-\xb6\xd9\x97\xd2\x15\xf5\x55\x42\x0c\x5c\xb1\xf1\x40\xa5\xa9\xa4\
-\x39\x28\x5d\x95\x9b\x92\xeb\xe1\x50\x32\xa0\x61\x05\xd5\x44\xe9\
-\x8a\xfa\x20\x44\x49\xff\x9f\xec\x3b\x98\x30\x80\x4a\x77\xdc\x61\
-\xcd\x1b\xaf\x9f\x41\xf6\x00\x77\x52\x7f\x69\x41\x1a\xbd\x50\x13\
-\xa5\x6b\x66\xaa\xa3\x34\xf5\x75\xcd\x95\xa6\x5c\xd7\x5c\x69\xca\
-\xd5\xa7\xd2\x55\xb9\x29\xb9\x1e\x0e\x25\x03\x1a\x56\x50\x4d\x94\
-\xae\xa8\x0f\x42\x94\xf4\xb5\x66\xa5\xe9\x4f\x6b\x56\x9a\x72\xf5\
-\xa9\x74\x55\x6e\x4a\xae\x87\x43\xc9\x80\x86\x15\x54\x13\xa5\x2b\
-\xea\x83\x10\x25\x7d\xad\x59\x69\xfa\xd3\x9a\x95\xa6\x5c\x7d\x2a\
-\x5d\x95\x9b\x92\xeb\xe1\x50\x32\x30\xf6\xf2\x17\xd1\x35\x0b\xa5\
-\xab\x11\x25\x10\x75\x04\x79\x67\x04\x2a\x2d\x2a\x6b\x91\xea\x53\
-\xe9\x95\x9d\x6a\xcd\x4a\xd3\xa1\x36\x55\x69\xca\x03\x6a\x4e\x4a\
-\x07\xb5\xfa\x54\x73\x50\x3a\x5b\xa8\x4f\xa5\xeb\x0e\x1b\x92\x42\
-\x8c\x86\xc5\xd1\x88\x91\x57\x21\x37\xad\x59\xe9\x95\x93\xd2\x18\
-\x4a\x13\x6d\xd1\xe1\x00\x00\x40\x00\x49\x44\x41\x54\xd3\xa1\xae\
-\xb9\xd2\x94\x07\xd4\x9c\x94\x0e\x6a\xf5\xa9\xe6\xa0\x74\xb6\x50\
-\x9f\x4a\xd7\x1d\x36\x24\x1a\x43\x69\x9a\x69\xcd\x4a\x53\x1e\x50\
-\x73\x52\x3a\xa8\xd5\xa7\x9a\x83\xd2\xd9\x42\x7d\x2a\x5d\x77\xd8\
-\x90\x68\x0c\xa5\x69\xa6\x35\x2b\x4d\x79\x40\xcd\x49\xe9\xa0\x56\
-\x9f\x6a\x0e\x4a\x67\x0b\xf5\xa9\x74\xdd\x61\x43\xa2\x31\x94\xa6\
-\x99\xd5\x7c\x0a\x03\x81\x47\x1a\x58\x7a\xa8\x8e\xfb\x50\xa7\x46\
-\xbb\x7d\x46\xf5\xe5\xba\x13\x0e\xab\xd8\xd0\xad\xc6\xf6\x8b\x8b\
-\xe6\x96\x95\xd4\xbf\xd2\x03\x1f\x36\x81\xac\xf4\x80\x1e\xed\xdc\
-\x46\x63\x6c\xb8\xfe\x29\xf1\x99\x0b\x75\x51\xb7\xf3\x90\x97\xe6\
-\xe6\xc9\x2e\x72\xef\xf5\x43\x3d\xd1\x1f\xf5\xc8\xcf\x6e\x76\x0a\
-\x9a\x0b\x69\xe6\xb9\xcd\xfa\x35\x56\xdf\x00\xed\xb1\xf4\xbe\xcf\
-\x27\xf4\xb7\xb7\xab\x10\x1a\x83\x3e\x14\x61\x46\x1d\xa5\xa9\x73\
-\xa8\x7f\x7b\xfb\x9f\x7d\x27\xfa\x12\x1e\xd6\xdf\x7e\x50\x6a\xc9\
-\x68\xbe\x68\x67\xb6\xb8\xf1\xf6\x7d\x04\x61\x0c\x7f\xb1\x11\x64\
-\xa6\xd9\xf4\xe8\xaf\xd7\x85\x13\x0e\xa5\xc9\x5b\x11\x63\x7c\xb8\
-\x61\x2e\x53\x5c\xc6\x7c\xa3\xbf\x5c\xee\xd6\xea\x8f\xf1\x91\x33\
-\x7b\x3b\x25\xff\x98\x2f\x6c\xd6\xa9\x7f\x4a\xcc\x6d\xeb\xec\xb2\
-\xfe\xd8\xcf\x93\x6d\xfd\x0f\xf5\x77\xe7\x1f\xcf\xa1\xc3\xfa\xdb\
-\x2f\x12\x7a\x13\xf2\x45\x3b\x5e\xb0\x8a\x1b\x06\x37\x85\x7c\x95\
-\x80\x19\x9b\xe8\x2c\x5e\xfc\x89\xc6\x64\xb3\xb3\xc9\x00\x46\xf6\
-\xd0\x1f\x68\xcc\x9b\x30\x16\x11\xd6\x4a\x33\xd7\x3e\x7f\x0b\xe6\
-\xbc\x1c\x74\xdf\xea\x67\xee\xc4\x52\x37\x54\x46\x9a\xb8\xe9\xfa\
-\x4b\xf1\x8f\x9a\xa7\xb5\xc5\xfa\x28\x23\x46\xf9\x61\xfd\xbb\xf3\
-\xeb\xb0\xff\xbb\x5d\x8b\x7d\x72\x38\xff\x17\xd7\xc8\x55\xae\x7f\
-\xc7\xf4\x82\xcd\x13\x8f\x18\x4f\xc0\xae\xed\xab\x1f\xe9\x97\xb8\
-\x69\xff\x31\xb3\xd1\x05\xc3\x14\xc8\xa3\xee\xa1\x7e\x76\x62\xb1\
-\x91\x8e\x6a\x7d\x16\x91\xb7\x43\x71\xad\x81\x18\x58\x6b\xf2\x9c\
-\x91\x79\x3d\x9d\x37\xc3\xb6\xea\xa7\x5f\x22\xe2\x2a\xcd\x3c\x36\
-\x85\xac\xf5\x50\x7f\xd7\xd1\xc3\xfa\x6f\x7e\xff\x0f\x3e\x07\xd2\
-\xda\xb8\xbe\xd9\x6d\x37\x72\xd3\xf3\xe2\x4b\x6c\xde\xc1\xb2\x2d\
-\xf4\x36\x3e\x74\x77\x64\xff\xcc\xab\xc7\xac\xc3\xfc\x63\xbe\xad\
-\x9c\x8e\xba\x7e\xc4\x63\x8e\xc8\x8d\x74\xdf\xbf\x5c\x4f\xff\xb4\
-\x0d\x75\x93\x97\x49\xd8\x81\x85\x11\xf3\x1f\xf9\xeb\xd4\xf6\xfa\
-\xc8\x9e\x78\x92\xac\x95\x05\x6e\xb9\xfe\xd8\x3f\x86\x25\xc6\x7e\
-\x32\x57\xb7\xb3\x84\xa3\xbc\xd5\xe8\xa6\xfd\xa1\xfe\x74\x19\x7b\
-\x1b\xd0\xd5\xaf\x9a\xd2\xb5\xae\x99\xd2\x95\xce\x4c\xe9\xeb\x4f\
-\xb7\xc7\xd7\x77\x78\x3a\x68\x7b\x5c\xe1\xf2\x5d\xa7\xfd\x57\x25\
-\xad\x67\x78\x07\x13\x7e\x83\x1e\x73\xfc\x92\xe4\xa7\xed\xb7\xe7\
-\xf1\xf8\xd4\xa7\x33\x6d\x88\xdf\xa3\xc7\x6f\xd4\x7f\xf5\xab\x8b\
-\x55\x3a\xac\x3f\x36\x71\xbe\x8e\x18\x89\xed\x37\x78\x0d\x64\xb4\
-\x61\xb3\x52\xbe\x1e\xbb\xb1\x5e\xa0\xc8\x27\x9a\xfa\xe0\x7f\xf4\
-\xbc\xd0\x11\xa3\xbc\xf7\x85\x4c\x5c\x68\x07\xd0\xea\xd0\x05\x13\
-\x0e\xb4\x21\x4e\x30\x89\x2a\xfb\x56\x3f\x4b\x21\x22\x5f\xa5\xfb\
-\x89\x32\x95\x8e\x05\x36\xe6\xcd\xfa\x1b\xf6\x47\x21\x1e\x94\xc7\
-\x09\x11\x09\x28\x3d\x33\xa1\x66\xfd\xf0\x2d\xfb\x93\xa1\x88\x1e\
-\x5e\x26\xdc\xf7\xc4\x28\xef\x7d\x55\xf6\x3f\x5d\x11\xdd\x1e\x07\
-\x0e\x0a\x88\xe0\x2b\x4d\xbd\x89\xb8\xef\xf5\x5f\xf6\xb2\x29\x5d\
-\xf7\x5a\x29\x5d\xfb\xda\xf6\xb0\x1b\x06\x6e\x1a\xd7\x3a\xab\xfd\
-\xbb\xe2\xad\xf2\xaf\x7e\xb5\xb2\x06\x6e\x1e\x17\x7c\x34\xa5\xf3\
-\x3f\x9c\xd2\x87\xec\x71\x9e\x3d\x2e\xba\xc8\xb6\x40\xee\x31\x5b\
-\x4d\x84\x97\xd2\x5a\x97\x78\x1e\x91\x7b\xe9\x38\x5e\x7f\xbf\x81\
-\x60\xe3\x60\xa0\x50\x6e\x22\xcc\x49\xf7\x72\xf0\xa0\x07\xa1\x8d\
-\x28\xef\xb8\xd3\x8f\xad\x78\xd3\x3d\x75\x9a\x53\xf2\x61\x2d\xb0\
-\x20\x4d\x6c\xe5\x83\xba\x8f\xb2\x7e\x8f\x67\x01\x07\xfd\x96\xbc\
-\x5b\xf9\xa2\xc6\x38\x58\x2b\xf8\xa4\x89\xab\xf8\x8b\xfe\x8f\x62\
-\xbe\x4e\xbe\xb4\x5d\xa5\xfe\x93\x7d\xfd\x77\x51\xff\x15\xed\xd9\
-\xc4\x37\xdc\x22\xa5\x5b\xde\x3c\xa5\x9b\xdd\x24\xa5\x53\x4f\x3d\
-\x8a\x1d\xd6\xc5\xf0\x1b\xd6\x75\xec\xa6\x65\x0f\x0e\x3c\x63\x39\
-\xf7\xfc\x94\xfe\xf1\x9d\x29\xbd\xed\xed\x29\xe1\xa7\x67\x75\x4f\
-\x51\x6f\x0a\xb6\xce\xb7\x7d\x3b\xff\x4b\xeb\x7f\x0c\x45\xf8\x55\
-\x11\x90\x2f\x56\xda\x90\x12\x4d\xde\xa8\x40\xf3\x21\xee\x9a\x37\
-\x24\xc6\xed\x11\x5d\xc7\x15\x7a\x85\xc1\x9c\x88\x70\x11\x17\x68\
-\xe4\x96\x77\x83\x1c\x13\xb6\xac\x89\xba\xea\x8f\x34\x91\xba\x40\
-\x8c\xe0\x6e\x14\xdf\xfd\x9b\x32\xed\xfb\x5a\x73\xfc\xde\x89\x13\
-\x8b\x56\x50\xec\xf1\x4c\xd6\xc7\x6b\xe4\xbb\xe9\xfa\x73\x5a\x3b\
-\x05\xf6\x18\x49\x78\x3f\x33\x32\xa9\xbe\xb7\xc6\xd8\x74\xfd\xf4\
-\x4d\xf4\xf5\xc8\x6b\x80\xf8\xcc\x0d\x88\x11\xe3\x7b\xbe\xc7\xf1\
-\xfa\xb3\x6e\xe2\xb6\xea\xbf\xfe\x75\xed\xa6\x71\xcb\x94\x6e\x65\
-\x37\x8d\x6b\xdb\x33\x8e\x7d\x1a\xb8\x81\xe1\x46\x86\xc7\xc3\x1f\
-\x62\xcf\x4c\x3e\x62\x37\x13\xfb\x25\x41\x3c\x2e\xb8\x30\x5f\x3f\
-\x72\xc2\x27\xc3\xfa\x8f\x7f\x0f\x44\x56\xcb\x37\x88\xcd\x81\x18\
-\xf1\x04\xe1\x89\x42\xa4\x8e\x2b\x43\x3f\x0b\x88\x2e\x17\x65\x92\
-\xc4\x18\x8f\x7e\x56\x45\xc6\x25\x16\xfd\x30\x78\x16\xea\x34\xe6\
-\x03\x19\x79\x50\xa7\x2e\x51\x79\x4e\x67\x81\xc6\x1f\xd0\x50\xb2\
-\x41\x7b\xfa\x06\x62\x80\x4f\x1e\xe7\x8a\x91\xc6\x5c\x07\x63\x11\
-\x55\xd6\xd3\x0c\x9e\x19\x3a\x65\x6c\xe6\xd3\xdb\xec\x98\xd0\x1c\
-\x95\x8e\x69\xb1\x6e\x62\x94\xfb\x3c\x38\xd0\x69\xac\x1f\x32\xf2\
-\x60\x4b\x5d\xa2\xf2\x9c\xce\x02\x8d\x3f\xa0\xa1\x64\x83\xf6\xf4\
-\xcd\x7e\x83\x4f\x9e\xea\x51\x5f\x79\xa0\xe3\x60\x2c\x62\x94\xfb\
-\x5c\x9d\x19\x43\xa7\x8c\xbd\x6a\x3e\x8c\x4b\x44\xbc\x01\xed\x09\
-\x74\x31\x4f\x3b\x2d\xa5\x3b\xde\x2e\xa5\xbb\xdd\x25\xa5\xb3\xae\
-\x91\x05\xc7\x01\x5c\xd7\xfe\x9d\x86\xc7\x03\xef\x9f\xd2\xc7\x3f\
-\x91\xd2\x6b\x5e\x97\xd2\x6b\xdf\x90\xd2\x17\x2e\x59\xd4\x3a\xa8\
-\x59\x1a\x4c\x92\xb8\x6e\xbf\x63\xbb\x18\x97\x18\xe5\x3e\x67\xf0\
-\x2c\xd4\xe9\x94\x7c\x8e\xf5\x57\xa9\x82\x77\x0f\x6c\x5e\x98\x00\
-\x9d\x13\xe3\x1d\xb6\xe0\x62\x39\x0b\x8e\x98\xa5\x91\xfe\xbf\x45\
-\xe3\xf1\x7f\x8c\xcb\x8d\xdb\x52\xe4\xcd\x1c\xa1\xcd\x50\x40\x1f\
-\x23\x06\x05\x1d\xee\x43\xfd\xec\xf5\x30\xb3\x69\xb3\x4d\xd7\x3f\
-\x2d\xea\xfe\x68\x6d\xba\x7e\xae\x05\x91\x7b\x0b\xb8\xd2\x80\x23\
-\xee\x41\x23\x4b\xfb\x9f\xb1\x56\xf1\x7f\x3c\xd4\x7f\x5d\x7b\xb6\
-\x71\xb7\x3b\xa7\x74\xfb\xdb\x1e\xed\xbf\xa7\x56\xe9\x67\xcb\xe6\
-\x6a\x57\x49\xe9\x21\x0f\x4c\xe9\x01\xf7\x4b\xe9\x9c\xb7\xa6\xf4\
-\xca\xd7\x74\xcf\x50\xaa\x76\x27\xc0\xfa\x77\xbf\x89\x5e\xab\x90\
-\x27\x46\xc6\x30\xed\xfe\x85\x60\x4c\xbf\xd0\x16\x7c\xc4\x13\x6c\
-\xb4\xa1\xb3\x2d\x4f\xc0\x28\x2f\xb8\xac\xb2\xd4\x96\xfe\x22\xc2\
-\x98\x35\xf4\x8e\x46\x8c\x5e\xb2\x50\xce\x3a\x54\x25\x6a\x4c\xb1\
-\xea\xc9\x4d\xd7\x3f\xd7\xdf\xa6\xeb\xef\x0b\xdb\x21\xc1\x9e\x23\
-\x05\xd2\x40\x8c\xd8\x9f\x4d\xd7\xcf\x75\x27\xc6\xf8\x5d\x16\x8b\
-\x63\xcc\x27\xea\xb7\xe4\x0b\x4f\x1d\xd5\xd2\x8f\x72\xcc\x31\x88\
-\x4e\x3b\x47\x0e\x2c\x46\x58\x3d\x49\x19\xfd\x64\x01\xd9\xb1\x9e\
-\xde\x8e\x7a\xa6\x48\x1d\xb0\x48\x03\xef\xf0\x8d\x29\xdd\xfb\x1e\
-\xdd\x5f\xef\xd1\xee\x78\x9f\x5f\xee\x72\x29\xdd\xf9\x9b\xba\xc7\
-\x79\x1f\x4a\xe9\x15\xaf\x4e\xe9\x4d\x6f\xe9\xde\xf5\xc5\x35\x42\
-\x8d\xa4\xb9\x3e\xda\x9f\x52\x0f\x5a\xfa\x51\x4e\xbf\x44\x8f\x19\
-\x1d\x73\x31\x23\x5f\x95\x97\xac\xbf\x3f\x03\xa9\xfd\x95\x13\x13\
-\x8a\x05\xc2\xaf\xf3\x18\xdc\x19\x36\xc9\x01\xa3\x3e\xd4\xc0\xab\
-\x0d\x16\x4a\xac\xe9\xd5\xf8\xf4\x4d\x8c\x7a\x21\xbd\xfe\xc9\x57\
-\x2d\xa5\x5d\xd7\x5f\xea\x5f\xac\x49\xe7\xac\x9b\xa8\x32\xd0\xeb\
-\xd6\x1f\xfd\xed\xdb\x9c\x75\x13\x63\x7e\xeb\xd6\x0f\xbf\xdc\x13\
-\xf0\xed\xfe\xc0\x63\xa0\x10\x20\xea\x43\xad\x96\x1b\x64\xdc\xf7\
-\xc4\x92\x3d\xf4\x6a\x83\xbe\x89\x51\x2f\xa4\xb7\x93\xfd\x7f\xcb\
-\x9b\xa5\xf4\xa0\x07\x74\xef\xa2\x8a\xf9\x9d\x88\x73\xbc\x9e\x73\
-\xfd\x47\xa6\x74\xff\x7b\xa7\xf4\xec\xe7\xd9\x0b\xef\xf6\x5a\x49\
-\x6d\x70\xdd\x89\xc7\xc3\xfa\xfb\x07\x09\x6b\x09\x73\x23\x12\xa1\
-\xc7\xa2\xd0\x04\xd2\xbd\x1c\x3c\x7b\xf4\x27\x14\x94\x64\xb4\xec\
-\x45\x75\x25\x32\xfa\xef\x93\x41\x52\x36\x98\x5b\x9e\xf6\x17\x83\
-\x7d\xae\x9f\xbd\xf5\xfc\x59\x07\x0b\x40\x4d\x42\x6f\xbb\x7e\xe4\
-\xb0\x0f\x43\x6b\x56\x7a\xdb\xf5\x47\xff\x88\x4d\x1e\xfa\x12\x2f\
-\xd0\xb1\x57\xd4\x05\x62\x44\xfb\x8e\x3b\x3c\x6a\x7d\xa4\x89\xf4\
-\x41\x8b\xe8\x3f\x6e\x78\x6c\x15\xe6\x08\x9b\xa8\x1f\xf3\x61\x1c\
-\x62\x4b\x9f\xbe\x73\x79\x4c\xcb\xf1\x86\x37\xb0\x7f\xef\xd8\x8d\
-\xe3\x46\x86\x27\xe3\xb8\xc6\xd5\x53\xfa\xe1\xc7\x74\xef\xe0\x7a\
-\xd6\x73\x53\xfa\xc0\xb9\x27\xc6\xfa\x0f\xde\xc6\x8b\x85\xe5\x66\
-\x29\x2d\x32\x65\xc4\xa8\x4f\x3e\x71\xae\xbc\x14\x73\x0e\x8f\x71\
-\x89\x6e\x8b\xb3\x46\x86\x4e\xa9\x47\x84\x9a\xd2\x62\xe6\x24\x65\
-\xc4\xa8\x4f\x3e\x71\xae\x3c\xc6\x8b\xf3\x78\x82\xa2\x16\xf2\x34\
-\x96\xc6\xf7\x8b\x88\x38\x5a\xa7\x7e\x71\xb3\x53\x92\x17\xa8\xa3\
-\xae\x9f\x7d\x25\x6a\xcf\x95\x5e\x55\xde\x6a\x2a\xd7\xfa\x78\xaa\
-\xff\x2c\xbb\x70\x3e\xd8\x5e\x17\xc0\x5b\x71\x0f\x23\xa5\x1b\x5c\
-\x2f\xa5\x9f\x7c\x6c\x4a\xef\x78\x57\x4a\xcf\xb2\x67\x24\x1f\xb5\
-\x77\x6e\x4d\x1d\xfb\xb8\xfe\x4b\x3f\x89\x8e\x13\x81\x7f\x75\xa0\
-\x48\xd2\xc0\xad\x8c\x78\x45\xd8\x70\x90\xb9\xf5\xcc\xd5\x5f\x3b\
-\xdd\x58\x7f\xd8\x31\xf8\xf4\x2c\x7a\x0f\xc4\x20\x3d\x75\x3d\xe6\
-\xd6\x13\xf5\xbb\xa8\xbb\x3f\xee\xaa\x7e\xf4\x99\x3d\xd9\x4a\x17\
-\xf6\x7c\xfd\xe7\xd4\x7f\x8a\x7d\x42\x1c\xff\xb6\xf9\xd6\xfb\xa4\
-\x84\xcf\x53\x6c\x73\xe0\x03\x7f\x17\xda\x07\xfc\x3e\x7c\x81\xbd\
-\x13\xea\xe2\x94\x3e\xf7\x79\x7b\x7c\x2e\x23\x68\x7b\x40\x07\xa7\
-\xd3\x29\x96\x0b\xea\x38\xc5\x1e\xc7\xec\xcf\x67\x7c\xce\x04\x9f\
-\x60\x3f\xd3\x1e\x57\x3a\xa3\xc3\xab\xd9\x27\xdb\xf1\x41\x45\xbc\
-\x96\xb1\xad\x71\x2b\xbb\xa1\xde\xfc\xa6\x29\xbd\xe8\xa5\x29\xbd\
-\xe0\x25\xf9\x13\xef\xc7\xe1\xfa\xfb\x97\x29\xd6\x9a\xc4\x0b\x13\
-\x11\x7f\xcd\x3a\x8d\x42\x6d\x8c\xea\x6d\x9c\x60\x3c\xf9\x80\x18\
-\xf0\x45\x5e\xc7\xf0\x63\xb7\xd2\x99\x9c\x03\xf4\x55\xf3\x6f\xe1\
-\x7c\x10\x31\x51\xba\x93\x2e\x8e\xac\x9b\xb8\x93\xfa\x25\x41\xe6\
-\x41\xf4\xfc\x45\xbe\xf5\xfa\x17\xad\xd9\x29\xb5\xb3\xfa\x77\xb1\
-\xff\x65\x7d\x59\x37\xf1\xc8\xd7\x7f\x62\xfd\xf8\xec\xc6\xa3\xbf\
-\x3b\xa5\xeb\x6c\xe9\x33\x1c\xb8\x59\xbc\xfb\x7d\x76\xc3\xb0\xcf\
-\x60\xe0\xa6\xc1\xaf\x1c\x69\xed\x7f\xbf\x60\x5d\x6a\x5d\xcb\xd7\
-\x1f\x9c\xfc\x9f\xb1\xaf\x2c\x81\x8f\x38\x70\x03\xc4\xa7\xdc\xaf\
-\x67\xaf\x61\x5c\xcf\x3e\x48\x88\xd7\x32\xae\x69\x73\xed\x7d\xb4\
-\x99\x3b\xc7\x8d\xf5\xdb\xee\x9b\xd2\xad\x6f\x95\xd2\x53\xfe\x2a\
-\xa5\x8f\x30\x0f\x59\x73\xbd\x40\x31\x36\x11\xf1\x94\x6e\xd5\x4f\
-\xb7\x44\xb7\x5f\x92\x34\x7d\x13\x4b\xd7\xbf\xee\x35\x90\xdc\x50\
-\x00\x9c\xb3\xbf\xd1\x37\x1c\x31\x49\xc8\x98\x08\x91\x32\x20\xe5\
-\xf4\xd9\x71\xec\x58\x73\x0e\x91\xc9\x18\xa3\xd7\x9f\x48\x30\x26\
-\xb1\x64\xc6\x5c\x98\x02\x7e\xeb\xdd\x79\x99\xe1\x34\xf2\x28\x19\
-\x1b\x8f\xb9\xb1\xa1\xac\x9b\x18\xf3\x07\x9f\x3e\x7b\x97\x35\xe7\
-\xd0\x35\x19\x63\xf4\xfa\x42\x50\xc6\xf8\x25\xfd\x6d\xd6\x2f\xa9\
-\xec\x8c\x64\xcd\x48\x80\xb4\xd6\xac\x74\x4c\x92\x6b\xc1\x25\x38\
-\xac\x7f\xde\x9f\xb9\x21\xb1\x3f\xb1\x7f\x71\xff\x71\xdf\xf7\x68\
-\x04\x2e\x88\x9b\x7e\xd6\xf1\x95\xaf\xa4\xf4\xbe\x0f\x74\xff\xf6\
-\x79\xbb\xfd\xeb\xe7\x93\x9f\xea\x32\xdb\xe6\xfa\xe3\x19\x0b\x3e\
-\x24\x88\xc7\xab\x72\x23\xce\xb4\x67\x28\xb8\xd8\xdf\xc6\x1e\x37\
-\xbd\xf1\xe6\x9e\x59\xe1\xd9\xce\xcf\xfe\x8b\x94\x5e\x78\xb6\x3c\
-\x1b\x89\xcd\xb7\x79\xec\xff\x36\xeb\x2f\x84\x1f\xc5\xc7\xba\xfb\
-\x6b\x20\xfd\x9d\xa0\xb1\x83\x78\x72\x12\x63\x90\x56\x81\x08\xc8\
-\x10\xb0\xf5\x06\x64\xc4\x1c\xa3\xe6\xbb\x93\x2e\x3f\xb6\xe2\x8f\
-\xfc\x8f\x12\x32\x0d\xf2\x0a\xa1\x98\x1b\x31\xaa\xb4\xe2\xd3\x35\
-\x10\xa3\x55\x7f\xcb\x1f\x7d\xb8\x33\x3b\xcc\xd5\xef\x6b\xed\x13\
-\x82\x13\x7b\x60\x91\xf6\x74\xb0\x46\xa6\xa7\x6b\x41\x19\x10\xc3\
-\xfb\x6b\xb4\xea\x28\xdd\xd7\x3a\xb1\x7e\xda\x12\xbb\x28\x8b\x63\
-\x2b\x3e\x5b\xdb\x87\xb3\x3e\x3b\x4f\xfa\xad\xbe\x5b\xfe\x58\x23\
-\x33\x98\xab\xbf\xc9\xfa\xf1\x5a\xc7\x63\x1e\x65\xcf\x3a\xec\x43\
-\x75\x9b\x18\xe8\xc3\xbb\xdf\x6b\x17\x6f\xfb\x60\xde\xbb\xde\x93\
-\x12\x6e\x22\xe0\xb1\x46\xc6\x58\xa7\x5f\x73\xeb\xc7\x17\x2e\xe2\
-\xb3\x1d\x78\x9c\xf6\x75\xdd\xd7\xab\xdc\xc1\x3e\xfc\x88\xd7\x77\
-\xf0\x8c\x65\x9d\x81\x67\x23\xf8\xfc\xc8\x6d\xbe\x21\xa5\xff\xfd\
-\x14\xfb\x97\x9c\x7d\x91\x23\x6b\x05\x62\xec\xba\x7e\xf6\x9a\x88\
-\x9c\xfc\x06\xa2\x0c\xa5\xa1\x30\x67\xd0\x96\x08\x5b\xa5\xe7\xf8\
-\x5a\x45\x97\xb1\x88\xad\xf8\xd4\x23\xb6\xf4\x5b\x39\xd1\x0f\xf1\
-\xa8\xfd\x31\x2e\xb1\x15\x9f\x7a\xc4\x96\x7e\xab\xfe\xa3\x90\x6b\
-\xae\x31\x1e\x65\xc4\x56\x3d\xd4\x23\xb6\xf4\x63\xbc\x38\xa7\x1f\
-\xe2\x51\xfb\x63\x5c\x62\x2b\x3e\xf5\x88\x2d\xfd\x58\x2f\xe7\xf8\
-\xda\x11\xdc\x3c\x70\x51\x5d\x77\xe0\xf5\x0a\x7c\x92\xfb\xd5\x76\
-\xe3\xb8\xd8\x3e\xd9\x1d\x87\xe6\x5a\x93\xa9\x8e\xd2\xeb\xea\xab\
-\xfd\x17\xbf\xd4\x7d\x58\x10\x1f\x18\xbc\xf2\x95\xba\x4f\xd0\x7f\
-\xf3\x9d\xba\x6f\xff\x55\xbd\xb9\x34\x9e\x8d\xfc\xcb\x9f\x48\xe9\
-\x2f\x9e\x9a\xd2\xdb\xed\xfb\xb6\x30\xb4\x06\xa5\x3b\xe9\xe2\x48\
-\x19\x31\xda\x2e\x34\x3b\x8a\x7a\xc4\x96\x7e\xb4\xc7\xbc\x7b\x06\
-\x52\x92\x6c\x81\xe7\x89\xda\xdd\xb4\x4f\x98\x74\xbe\xc3\x6e\x21\
-\xe4\x5e\xb9\x3c\xd9\xeb\xdf\xab\xc5\xd8\x41\x32\x27\xe2\xfa\xdf\
-\xf7\x5e\xf6\x2e\xab\x6f\x5b\xff\x2f\xf0\x8f\x7c\xd4\x5e\x50\x3e\
-\x3b\xa5\xb7\xfc\xe3\xf0\x2b\xd4\x77\xb0\x4c\xb3\x43\xe2\x5f\x6a\
-\xf8\x8c\xc7\x73\x5f\x68\x9f\xa8\xb7\x0f\x48\xde\xeb\x6e\xc3\x2f\
-\x60\x9c\xeb\x10\x37\xe2\x1f\x79\x4c\x4a\xff\xf0\x82\xae\x27\x73\
-\xed\x8f\x52\x7f\xe9\xbb\xb0\x62\x22\x38\x01\xf8\xb4\x2a\xca\x30\
-\xa7\xac\xf6\x94\x2b\xca\xdd\xc7\x86\x6e\x1e\x9a\x1b\xe3\xf7\xff\
-\x2f\xcb\xff\x22\x00\x20\x5c\x9e\x8e\xf2\xf5\x7c\x96\x1c\x34\x46\
-\x49\x2d\xd6\x17\xf5\xa3\xdc\x7d\x2c\xa9\xbf\x65\xdf\x92\x6f\xba\
-\xfe\x52\xcd\x47\xcd\x63\xcd\x88\x4b\x1a\x88\x31\xea\x6f\x58\xf0\
-\x30\x1d\xeb\x77\x6e\xaa\xc7\x18\x2f\x2a\xc6\xf8\x51\x3f\xca\xdd\
-\xfe\x38\x5a\x7f\xad\x07\xef\x60\x7a\xd4\x77\xa5\x74\xa7\x3b\xc4\
-\x2e\xcc\x9b\xe3\x59\xc6\x73\xec\x42\x89\x4f\x6a\x73\x1d\xe9\x41\
-\xe3\x81\x17\xfb\xd7\x92\x6f\x7a\xff\xc7\x78\xcc\x93\x88\xd7\x4d\
-\x5e\xff\xc6\x94\xde\xf0\xa6\x94\x6e\x77\x1b\xfb\xc0\xa4\xdd\x58\
-\x6b\x5f\x15\x4f\x9b\x1a\xe2\x5f\x62\xf8\xdc\x0c\x9e\x91\x3c\xe5\
-\xe9\xf6\x2f\xbc\x4b\xf7\xb3\xfe\xc1\x33\x90\x56\x83\xe2\x02\xc6\
-\x05\x42\x33\xf4\x7c\x80\xbe\xf3\x84\x49\x1e\xf8\x31\xde\xc8\xbf\
-\x5b\x1f\xdd\x21\xe6\x13\x23\x8f\xf2\x8b\x57\x24\x33\x90\x52\x7d\
-\xc3\xc3\x87\xd6\xac\x74\x8c\x37\xf2\x1f\x13\xd8\xf2\x3c\xe6\xb3\
-\xe5\x70\x7b\xe7\xbe\x55\xff\x68\x7d\x4e\xb2\xf5\x67\xfd\x67\x9c\
-\xd1\xfd\x85\x8c\xcf\x34\xac\x3a\xf0\x35\xe8\xcf\x7f\x91\xfd\xab\
-\xea\xf5\x8b\x67\x1c\xf4\x0f\xdc\xc5\xd8\xe4\xfa\xbf\xf9\x6d\x29\
-\xbd\xf5\xed\x29\xe1\xdf\x5a\x78\x6d\xe3\x8c\x2b\xae\x56\x11\xbe\
-\xf2\x05\x3f\x98\xf5\xc7\x7f\xde\x7d\x75\xfc\x6a\x5e\xa6\x59\xad\
-\x52\xff\x5a\xaf\x81\x8c\xce\x1f\x30\x30\x88\xdd\xac\x7a\x8c\x1b\
-\xa6\x55\x40\xd5\x91\x09\xd4\x17\xfc\xf4\x43\x69\x63\xea\x94\x7a\
-\x44\xd8\x28\xdd\xfb\xa8\x10\xf0\x85\xbd\xde\xfb\x24\x41\xac\xd8\
-\x91\xad\x39\x83\x87\xd8\xe4\x51\x47\xf3\x21\x4d\xa4\x2e\x10\xa3\
-\x64\xbf\x48\x2e\xeb\x74\xe0\x47\xfa\x21\x82\xa9\xb4\xa8\xee\x15\
-\xc9\x1c\x77\x5d\x3f\x96\xf9\x64\x5b\x7f\xfc\xbf\xff\xa7\x1e\x97\
-\xd2\x55\xae\xbc\xda\x96\xc0\x5f\xe9\x78\xb7\x11\x1e\x97\xda\x5f\
-\xd5\x58\xcb\x65\xfb\x97\x6b\x8d\x68\xa4\x89\xfb\xbe\xfe\xa8\x15\
-\x2f\xb8\xbf\xce\x9e\x95\xdc\xcf\xfe\xd5\xb7\xea\xbb\xd3\xf0\x7b\
-\x24\x3f\xfd\xcf\x53\xfa\xbd\x3f\xec\x7e\x35\x71\x9f\xea\xc7\xe7\
-\x69\x26\x0f\x26\x0e\x54\xba\xe6\x80\xbe\x81\x4a\x53\x5f\x7d\x28\
-\x4d\xf9\x1c\x9c\x62\xaf\x39\x28\x3d\x35\x8e\xc6\x50\xba\x66\xaf\
-\x31\x94\xa6\xbe\xfa\x50\x9a\xf2\x16\xaa\x8d\xd2\x35\x3b\xcd\x41\
-\xe9\x9a\xfe\xbe\xf3\xb5\x66\xa5\x6b\x79\x6b\xcd\x4a\xd7\xf4\x23\
-\x5f\x63\x28\x1d\xf5\x38\xd7\x18\x4a\x53\xae\x3e\x94\xa6\xbc\x85\
-\x6a\xa3\x74\xcd\x4e\x73\x50\xba\xa6\x1f\xf9\x78\x1b\xeb\x3a\x37\
-\x0f\x7c\xce\xe1\xbf\x3d\xb1\xfb\x97\x15\xdf\x55\x85\x18\xc8\x7d\
-\x4a\xfe\x31\x1f\xb5\x51\x3a\xea\x71\xae\x35\x2b\x4d\x79\x0b\x35\
-\x86\xd2\x35\x3b\xc6\xb8\xd4\xde\x41\xf6\xbc\x17\xa6\xf4\xdb\xbf\
-\xd7\x7d\x76\xa5\xa6\xbf\x8c\x7f\xd5\xab\x74\xbd\xc7\x87\x1e\x39\
-\x34\x07\xa5\x29\x8f\xc8\x7c\x80\x4a\x47\xbd\xda\x5c\x63\x90\x3e\
-\x05\x7f\x45\x6d\x6a\xd0\x29\xd0\x1f\xe6\xb8\x47\xa5\x57\xdc\x30\
-\xeb\xe6\xc9\x5a\x81\x4a\xaf\xeb\x97\xf6\x5b\xaf\x5f\x93\x56\x9a\
-\x09\x34\x50\x4d\x94\x6e\x98\xed\x9f\x18\xc9\xaf\x50\x80\x9a\x28\
-\xbd\xa9\x02\x4f\xe4\xf5\xc7\x85\x6b\xd5\x9b\x07\xfe\x12\xc7\x0b\
-\xcc\xbf\xf9\x3f\xec\x73\x15\x76\x13\xf1\x6b\x42\x5e\x00\xf6\x6c\
-\xd2\x1a\xe8\xa2\x29\x3d\xc9\x78\xb8\x65\x56\x30\x6f\x46\x61\x2d\
-\xac\x0f\x31\x9c\x06\xda\x03\x1f\x58\xfc\xed\x7c\x03\x45\x4f\xe6\
-\x8e\xfe\x26\x62\x37\xf2\x7d\xd9\xff\xa7\xb0\x68\x2f\x46\xbb\x6a\
-\xb4\xcb\x32\xf6\x4d\x91\x39\x6c\xd4\x9e\x4f\x45\x81\x4a\xbb\x6f\
-\x3b\x28\x0f\x34\x6c\x89\xf4\x43\xa4\xcd\x3a\x48\x5f\xc0\xd2\x03\
-\xbe\xa9\xe3\x71\x4c\xaf\xc7\x6c\x83\x85\x2a\xd9\xd2\x8e\x08\xbb\
-\x58\x9f\xf2\x94\x86\x1e\xeb\x26\xd2\x0f\x11\xfa\xeb\x0e\xfa\x02\
-\x96\x1e\xf0\x4f\x1d\x8f\xb5\xa4\xfe\x75\x73\xd9\x85\x3d\x6b\x2b\
-\xd5\xae\xb2\x3e\xb7\x25\xf5\x97\x7c\xc0\x8e\x7e\x40\x9f\xa8\xeb\
-\x8f\xff\xdf\xe3\xfb\x9b\x70\x01\x9b\x3b\xf0\x5d\x4f\xbf\x63\x17\
-\x4d\xdc\x40\xd8\xab\xe3\x71\xff\x6f\x6a\xfd\xbf\xf6\x35\x7b\x36\
-\x62\xaf\xfd\xe0\xd9\xc8\x9c\xef\xc1\x62\xdf\xb1\x06\x3f\xfd\xe3\
-\xdd\x5b\x87\xc9\xab\x21\xfb\x5d\xca\x5d\x65\xbd\xfd\x0a\xfb\x7f\
-\xf8\xf1\x17\x7d\x5e\xa3\x74\x8e\x10\x4f\x10\x24\xa1\x17\xc0\x98\
-\x28\xcc\x98\xa8\xd2\xd4\xa3\x6d\x69\x43\xe5\x90\x93\x81\x71\x88\
-\x30\x8c\xf9\x2a\xaf\xe8\x58\x6b\x56\x3a\x2b\x47\x7f\x88\xc5\x1a\
-\x58\x93\x22\xcc\x34\x1f\xd2\xd4\xa1\x2d\x50\x69\xca\x23\xe2\x79\
-\xa7\xfb\x40\x6e\x42\x53\x2f\xc6\x83\x4f\x0c\xfa\x27\xed\xcc\xd2\
-\x21\xeb\xfb\xf3\x5b\xa5\x4b\xba\x3b\xe2\xed\xb2\xfe\xd8\x4f\xe4\
-\xc2\x75\xe3\x1a\x28\xa2\x45\x9e\x6f\xee\x15\x69\xea\xd0\x96\xeb\
-\x03\x3e\x79\xd4\x51\xd4\x35\x57\x9a\x3a\x31\x1e\x7c\x61\xd0\x3f\
-\x69\x67\x96\x0e\xba\xe6\x99\xc6\x0b\xe6\x78\xe6\x81\xef\x87\x9a\
-\x3b\xf0\x33\xaf\xb8\x79\xf0\xab\x42\x90\x27\x06\xf3\x65\xad\xcc\
-\x0f\x7c\xf2\xa8\xa3\xa8\x35\x2b\x4d\x1d\xfa\xf6\x20\x76\x80\x2f\
-\x0c\xfa\x27\xed\xcc\xd2\xa1\x50\x3f\xe2\x70\x44\x7f\xcd\x7c\xcd\
-\x10\x3a\x1c\xa4\x81\xe8\xc9\x7f\x7b\xd2\xf2\xaf\x77\xa7\x5d\x44\
-\xbc\xfe\xf4\x53\xf6\x9a\x88\xbf\x30\x6f\xf9\xc1\x9f\xfa\xa6\x7e\
-\xcc\x17\x7c\xf2\xa8\x33\x40\xd6\x0a\x54\x3a\x2b\xd1\x16\x88\x07\
-\x62\xfa\x0d\x84\x09\x44\xa4\x92\x1a\x90\x37\x25\x61\xe8\x2c\xd3\
-\x57\x1f\xaa\x0b\x9b\x55\x46\xf4\x87\xb9\x3e\xe0\x93\x3a\x4a\xab\
-\x8e\xd2\xcc\x1d\xa8\x34\x75\xd4\x07\x68\xe6\x3d\x55\x9f\xb9\xd0\
-\x9f\xc6\x50\x5f\xf0\x3d\x65\x44\x7f\xf4\x4b\x84\x0f\xea\x28\x4d\
-\x79\x44\xcd\x67\x4a\xfc\x5d\xeb\xb0\xb6\x58\x07\xe7\x5a\xb3\xd2\
-\x94\x47\xd4\xfa\x95\xa6\x9e\xfa\x00\xad\x6b\x36\x45\x1f\x7e\x30\
-\xe8\x4f\x6d\xd4\x57\xa7\xd5\x3e\x46\x7f\xf4\x4b\x64\x2c\x7a\x6a\
-\xe9\xe3\xf7\xbf\x1f\xf7\xc3\xab\xbd\x15\xf5\x85\x2f\xe9\xde\x39\
-\xf4\x65\xfb\xff\xff\xd4\xf8\xfb\x56\x7f\xcc\x07\x75\x90\xa7\xbd\
-\x63\x3f\x75\xcd\xa8\x47\x2c\xe9\xe3\xc3\x88\x7f\x62\xef\xae\x7a\
-\xfe\x8b\xe9\x61\x3a\xe2\x26\xf2\xa3\x3f\x60\x5f\xf8\x28\xef\xa3\
-\xd5\x18\xa0\xe3\x03\xde\xa9\xa3\x74\xd4\xe3\x9c\xb9\x03\x95\xa6\
-\x1c\x3e\xfc\x06\x82\xeb\x35\xaf\xd9\xc4\x52\x00\xe5\x81\x8e\x83\
-\xc9\x69\x00\xf2\xa2\x6e\x69\x4e\x5d\x62\x49\x67\x93\x3c\xd6\xba\
-\x8f\xf5\xb3\x07\x44\xd4\x4d\x1a\xa8\xf4\xaa\x3d\x99\x53\xff\xaa\
-\x31\xb6\x61\xb7\x8b\xfa\xa7\xf4\x5b\x75\x94\x9e\xda\x03\xb5\x51\
-\x9a\xf6\xca\x53\x9a\xf2\xb9\xd8\x5a\xff\x55\xbe\x10\x11\x2f\x8e\
-\xff\xef\xff\x93\xd2\xdf\x3f\x77\x71\x01\x9b\x9a\x97\xd6\xa4\x34\
-\xed\x95\xa7\x34\xe5\x73\xb1\x55\xbf\xc6\x50\xba\x16\x47\x75\x94\
-\xae\xe9\x83\x0f\x3d\x7c\x08\xf1\x4f\x9f\x9c\x12\x6e\xb6\x73\x06\
-\xbe\xe0\xf1\x7b\x1f\x31\xc7\x62\xa8\xbb\x89\xfa\xbb\x67\x20\xe6\
-\xd7\xea\xf0\x41\xcc\xd3\xcd\x02\x9d\x03\x95\xde\x6c\x94\x85\x37\
-\x8d\xa1\x74\xd6\x50\x96\xd2\x0b\x07\x1b\xa6\x34\x88\xd2\x1b\x0e\
-\xd3\xbb\xd3\x18\x4a\x67\x05\x65\x29\xdd\xdb\x1f\xef\x84\x16\xa5\
-\xf4\xae\xea\xd7\x1c\x94\xde\x56\x9f\x35\x86\xd2\x13\xea\xc7\x57\
-\xb1\xe3\x33\x08\x73\xc6\xe7\xbf\x90\xd2\xff\xf8\x43\xfb\x20\xdd\
-\x39\x15\x2b\xcd\x41\xe9\x8a\xfa\xda\x6c\x8d\xa1\x74\x76\xac\x2c\
-\xa5\xd7\x8e\x5b\x73\xa0\x41\x94\x36\xfd\x73\xde\x62\x6f\xd3\xfd\
-\xff\x53\xba\xe4\x92\x9a\x71\x99\xff\x4d\xb7\xb7\xaf\xcd\xbf\x4f\
-\x59\x36\xb8\xc6\x86\x78\xb0\x50\x96\xd2\x15\x6f\x45\xb6\xbf\x88\
-\x8e\xbb\x60\xe9\x8e\xa9\x3c\xa5\x8b\x9e\x90\x50\xce\x02\xa8\x34\
-\xf5\x35\x49\xa5\x7b\xb9\xd8\x93\x37\x15\x4b\xf1\x06\x4f\xab\xec\
-\x76\xeb\x3a\x19\x99\xa3\x22\x62\xd1\x8f\xd2\xd4\x51\x1e\xe8\x38\
-\x68\x5b\xd3\xd7\x9a\x95\xa6\x9f\xa6\xbd\xf4\x87\x31\x14\xe1\x87\
-\x3e\xdc\x67\xf8\x13\xc3\x65\x2b\xd6\xcf\x1c\xf7\x01\xb5\x66\xa5\
-\x91\xdb\xb6\xea\xa7\x5f\x62\xa9\x0f\x94\x01\x95\xa6\xae\xae\xb9\
-\xd2\xbd\x3c\xac\x2f\xf8\xf4\xa3\x34\xfd\x47\x54\x1d\xd0\xab\xee\
-\xff\x5b\xde\xdc\xbe\x9e\xe4\x01\xee\x61\xf2\xe1\x0b\x76\xe1\x7b\
-\xd2\x1f\xa5\x74\xde\xf9\x5d\xce\xcc\x9b\x08\x47\x5a\xb3\xd2\x0c\
-\x42\x5d\xd6\xe5\x36\x54\x84\x7d\xe8\x0f\xf5\x88\x51\x7f\xd5\xfa\
-\xa7\xe6\x43\x3d\x62\xcc\x2f\xe6\xc3\x52\x80\x4a\xd3\xfe\x5c\xeb\
-\xdd\x93\xfe\x38\x25\xf4\x72\xce\x78\xb0\x7d\xe2\x1d\xdf\x47\x86\
-\xc1\x1c\x7c\xb2\xc1\xf3\x9f\x7e\x89\xee\xdf\x0e\xdd\xbf\xb0\x2c\
-\x10\xfe\xc7\x85\x41\x54\xba\xf6\x3f\x30\x38\xd3\x87\xfe\x9f\x8c\
-\x7e\x88\xee\x3c\x1c\x98\x0c\x7d\xa8\x7d\x50\x6d\x4e\xd5\x96\xfe\
-\x60\xc4\x18\x25\x07\xcc\x0d\xa8\x34\x75\x95\x07\x1a\xbe\x88\x8c\
-\xa1\x48\x19\x10\x0f\x0c\x62\x37\x1b\x1e\x99\x1b\x7d\x44\x7b\xf0\
-\xc9\x73\xda\xcc\x89\x70\x0f\x59\x8f\x46\x44\x7d\x44\x03\xaf\x36\
-\x98\x9b\xfb\x81\x23\x1b\xe4\x29\xad\x3c\x57\xda\xe1\x61\x57\xf5\
-\xa3\x07\xb1\xbf\x98\xeb\x43\x75\xd8\x33\x62\xa9\x65\xb0\xc5\xa0\
-\x8f\x68\x0f\x3e\x79\x4e\x67\x5d\x5f\x73\xa3\x21\x73\x1a\x68\x8f\
-\xa8\x4f\xdf\xc0\xd2\x80\x0d\x86\xfb\xc9\x34\xbe\x7a\xe3\x07\x1f\
-\x3d\xef\xbb\xad\x2e\xf9\x62\x77\xf3\xc0\x0b\xc3\xcc\x41\x7d\x77\
-\x51\xc6\x47\xe8\x62\x00\x69\x47\x2c\xd5\x83\x14\x5d\x6e\x08\xda\
-\xf3\x26\x1a\x83\xb6\x40\x3c\x30\x88\xdd\x6c\x78\xd4\x1c\x95\xa6\
-\x96\xf2\x40\x47\xff\x8c\x43\x54\x1d\xb5\xa5\xbf\x88\xcc\x4d\xed\
-\xcf\xfb\x50\x4a\xbf\x6f\x37\x91\x39\xcf\x44\xf0\xb5\x27\x3f\x60\
-\x6b\x86\x9f\xcd\x65\x0e\xea\x3b\xc6\xe5\x5c\x73\x54\xba\x26\x87\
-\x4f\xf5\x8f\x79\xf7\x2f\xac\xdc\x70\x16\x52\x43\x1a\x03\x4b\x8f\
-\x52\x00\xf5\x85\xc4\x30\xaf\x0d\xca\x88\x35\xbd\x12\x9f\x36\x44\
-\xd7\x61\x2c\xa0\xd2\xd9\x01\x75\x81\x53\x1e\x47\x59\xbf\xe6\xd6\
-\xd7\x8b\xb3\x06\x03\x98\x37\x34\xb1\xa8\xaf\x35\x2b\xed\x4e\x16\
-\x6b\x31\xa5\xf6\x6c\xb2\x1f\xb0\x83\xfa\xd1\xa3\x13\x7d\xfd\x71\
-\x21\xc2\x0b\xb3\x97\xbf\xfc\xf4\x65\xfe\xa2\xdd\x3c\x70\xc1\xc3\
-\xef\x66\x68\x8f\x4a\x7b\x0a\x5e\xc1\xaf\x0d\xca\x68\x0b\x3d\xf2\
-\xdc\x66\x87\xfb\x1f\x79\x1c\xd5\xfa\xe3\x26\xf2\x7b\xf6\x6c\xee\
-\x0b\xf6\x2f\xc1\xa9\x03\x5f\xc0\x88\x1b\x3f\x72\xec\x07\x7b\x0d\
-\x54\x3a\x2b\xb0\xb7\xec\x77\x0b\x4b\xf5\x77\xcf\x40\xcc\x21\xe3\
-\x12\xfb\x24\x84\x68\x05\x84\x2a\x75\xc4\xec\xc8\x48\xe6\x0e\xc4\
-\x03\x3d\x23\x16\xfa\x37\xa8\x59\x6d\x6b\x09\xb3\xb6\x5a\xa3\x61\
-\x47\x9d\x9a\x8f\x39\x7c\x6e\x06\xa0\x2e\x1e\xe3\xc7\x78\x5a\x03\
-\xeb\x26\x6e\xa2\xfe\x39\xb9\x6f\x4b\x97\x7d\x60\x9f\x89\x88\xb7\
-\xed\xfa\x19\x8b\xfd\x8f\x88\x1c\xa8\x03\x7a\xdd\x71\xd4\xeb\xff\
-\xed\xdf\xda\xfd\x0a\xdf\xd4\xbc\xbf\xf4\xe5\xee\x5f\x2e\xf8\xd7\
-\x0b\xeb\x26\x4e\xf5\xb1\x4c\xef\xa8\xeb\x47\x2e\xdc\x43\xa5\xbc\
-\x58\x1b\xb0\xf4\x80\x0d\x75\x4a\xf6\x73\x78\x1f\xfa\x70\x4a\x7f\
-\xf0\x3f\xe7\xbd\xb0\x8e\xdf\x62\xc1\xf7\x6e\xa1\x06\x9e\xf7\xc4\
-\x4d\x9c\xff\xac\x4d\x6b\xef\x9e\x81\xa0\xf0\x5c\x1d\x11\xd3\x68\
-\xa0\x3c\x57\xa7\x32\x50\x69\x17\xb6\x0f\x4d\xff\x6d\x17\x03\x0d\
-\x4d\x41\xe9\x81\x92\x4c\x54\x47\x69\xaa\x34\xf3\x53\x23\xa5\xe9\
-\xa0\x81\x2d\xff\x51\x8e\xb9\x3e\xe0\x9e\x3a\x4e\xe7\x78\x48\x65\
-\x4a\x3a\xaa\xa3\x74\x76\xd3\xfb\xd6\x18\x94\xed\x0a\x77\x55\x3f\
-\x7b\x40\xf4\xfa\xb5\x69\x4a\x4f\x6c\x0e\x7d\xb1\x26\x98\x91\xa7\
-\x34\xe5\x11\x55\xc7\x69\x1c\x6c\x20\x95\x29\xe9\xa8\xce\xb5\xed\
-\xe2\x83\xef\x6b\x9a\x33\xfe\xd2\x7e\xb3\x02\x37\x8f\xc9\x01\x83\
-\x73\xd6\xca\xba\x20\x26\x4f\x69\xca\x23\xaa\x8e\xd3\x38\xd8\x58\
-\xa5\x7e\xed\x45\xe7\x65\x91\x0b\xe3\xba\x6f\x2a\x32\x10\x91\x7c\
-\x22\x9d\x2c\x41\xd6\x5a\xf3\x8f\xde\xe2\x9b\x78\xe7\x0c\xfc\x22\
-\x24\x7e\x52\x98\x69\x10\x4b\x3e\x28\x03\x2a\x4d\xdd\x56\x7e\x30\
-\xf2\x1b\x48\xcd\x80\x7f\xed\x01\xf5\xaf\x01\xea\xf7\xb7\x6b\xdc\
-\xe6\xf0\xc0\x20\x76\xb3\xc1\xb1\x99\xd0\x40\x7b\xfe\x64\x5d\xff\
-\xd1\xfe\x50\x7f\x77\x12\x71\xed\xe7\xaf\xc8\xd1\x5a\xc4\xf5\x43\
-\x74\xf2\xa6\x64\x42\x5d\x20\x1e\x27\xcb\xfa\xe3\x5f\x57\xff\xec\
-\x91\xf3\x7e\xa2\x15\xdf\xa4\x8b\x6f\x9c\xf5\x71\x38\xff\x17\xd7\
-\xbd\x0d\x5f\xff\xde\xf8\xe6\x79\x9f\x13\xc1\x2f\x1b\x7e\xdf\xf7\
-\x74\x7b\x17\x6b\xc3\x3d\xdd\x2d\xd4\xf2\x23\x75\xe7\xec\xff\xc1\
-\xef\x81\xb0\x76\x22\xc2\x29\xad\x27\xd5\xf2\x54\xca\x52\xf8\x72\
-\x1f\x14\x3b\xc3\x26\x39\xc8\x3a\xfe\xd5\x96\x17\x3c\xe5\x31\xa4\
-\xa2\x5e\x20\xc0\x67\xad\x44\xe5\x81\x6e\xf9\x83\xce\xb2\xe1\xe5\
-\xe2\xc2\x44\x25\x67\xd8\x24\x33\x5a\xfe\x63\xbe\x51\xbf\x25\x67\
-\x58\x62\xd4\x67\x5e\x44\xe8\x29\x4d\xbb\x5d\x22\x6b\x46\x0e\xa4\
-\x81\x18\xb1\x9e\x28\xef\xb4\x16\xc7\xa8\xcf\x5a\x89\xee\x73\xa1\
-\x3e\x8a\x27\xa2\x49\x24\xfc\x7a\x4e\xd4\x76\x86\x4d\x72\xc0\xb9\
-\xf9\x46\xfd\x58\x4f\x94\x33\x2c\x91\xfa\xdf\x7a\x1f\xfb\x01\x24\
-\x7b\x06\x32\x75\xe0\x13\xe6\xcf\x7a\x5e\x57\xcb\x54\x1b\xe8\xed\
-\x6b\xfd\xe8\x03\xf3\x53\x8c\x74\xab\x9f\xee\x64\xc9\x61\xd5\xfa\
-\x9f\x65\x9f\xa9\xb9\xd6\x59\xdd\xcf\xdd\x2e\x71\xdf\x8b\xf0\xaf\
-\xac\x07\xde\xdf\x7e\x90\xea\xf9\x8b\x73\xa2\x17\x0a\xc1\xf5\x5f\
-\xa7\xfe\xe1\x33\x90\xec\x1c\xe7\xa3\x3f\xec\xd0\x23\x08\xf0\x33\
-\x76\xb3\xe1\x31\xaf\x83\x6f\x14\xd0\x48\xac\x47\x23\x60\xea\x49\
-\x1b\xf6\x7e\x41\xdb\xc4\x17\x27\xd3\xb0\x59\x65\x30\x37\xfa\x83\
-\x0f\xf2\xa6\xf8\x63\x69\x9e\x5b\xb6\xed\xf3\xcc\xc2\x65\xfe\x98\
-\xb7\xd7\x6c\xf6\xeb\xd4\xaf\xbe\xa6\xe4\x0e\x1d\xe6\xb6\x8d\xfa\
-\xa7\xe6\xb0\x4b\xbd\x6d\xd6\xaf\xbe\x6b\x35\xea\x9a\xf9\x1e\xb0\
-\x43\x8f\x46\x60\x0b\x4d\xdd\xff\xb0\xc3\x20\x76\xb3\xe5\x47\xcd\
-\x51\xe9\x65\x56\x67\x5d\xa3\xfb\xbf\xf9\x32\x1d\x95\xe1\xb7\xba\
-\xff\xcc\x7e\xb3\x9b\xfe\x55\xc6\x5c\x81\xfe\xb0\x43\x8f\x46\xec\
-\x63\xfd\x9a\x7f\x3e\xc5\xbb\x6b\x93\x09\x50\x23\x78\x8e\x59\x58\
-\xaa\x9b\x3e\x50\x2b\x86\xd7\x0c\x34\xc2\x69\xa0\x3d\xe0\x82\xd8\
-\xfb\x35\x1e\xfd\x43\x17\xb4\xdb\x18\x8d\x41\xde\x9f\xd9\x07\x0d\
-\xe7\x7c\x77\x16\xfe\x95\x75\xad\x6b\x76\xfe\x3a\x4f\xed\x63\x2e\
-\x71\x56\xfd\xdd\x6b\x20\x66\xc9\xc6\x10\x4b\xe1\x50\x0c\x46\x2c\
-\xb0\xe3\x9a\x8f\x4c\x00\xfd\x01\xbf\xa0\x81\x20\x32\xdd\x51\xe3\
-\x63\x56\xe9\xfd\x8c\x35\x36\xcb\xd1\x9c\x94\xae\x45\x39\xca\xfa\
-\x4b\xbd\xd0\x1c\x95\xae\xe5\xdb\xe2\xab\x0f\xa5\x5b\x76\xbb\x96\
-\x23\xd7\x4d\xe4\xab\x3e\x94\xae\xd5\x77\x22\xae\xff\xf7\x3c\xdc\
-\x7e\xd7\x5a\xbe\x0e\xa3\x56\x3b\xf8\xf8\xfd\x0e\x7c\xf5\xc6\x97\
-\xec\x9d\x57\xda\x0b\xda\xe8\x9e\x05\xed\xeb\x44\xcc\x42\xf6\x99\
-\x36\x8a\xd1\x1e\x32\xf2\x9c\x16\x1f\xf4\x43\x54\x3f\x53\x69\xda\
-\x02\x95\xae\xd9\x6b\xcd\x4a\x53\x9f\xb9\x02\xfd\x01\xbf\xa0\x81\
-\x20\x32\xdd\x51\xe3\x63\x56\xe9\x6c\xb2\x98\x3c\xbc\x61\x01\x37\
-\x91\xa9\xdf\xe2\x8b\x7f\x65\x7d\xc7\x83\xc6\x31\x94\xa3\x39\x29\
-\xad\x3a\x4a\x6b\xcd\xa4\x87\xcf\x40\xa4\xc8\x92\x43\x16\x03\x54\
-\x5a\x83\xec\x8a\x2e\xe5\x3b\x37\x17\xf5\xa1\x34\xfd\x68\xcd\x4a\
-\x53\x7e\xd4\xa8\x39\x2a\xbd\x6a\x1e\xea\x43\xe9\x55\xfd\x6d\xdb\
-\x4e\x73\x54\x7a\xd5\xb8\xea\x43\x69\xfa\xd3\x35\x57\x9a\xf2\xa3\
-\x46\xcd\x51\xe9\xa9\x79\xdc\xfc\x26\x29\xdd\xcc\x1e\x53\xc7\x73\
-\x5e\xd8\xfd\x15\x8c\xda\x4f\x84\xfa\x63\xdd\xda\x43\xa5\xa9\xa7\
-\x35\x2b\x4d\xf9\xb6\x11\x9f\xb3\xc1\x37\xf9\x4e\x1d\xb7\xb6\x0f\
-\x17\xde\xf8\x86\xd3\xb4\xf1\xcc\x08\xbf\xe7\x0e\x1b\xd4\x3e\xb5\
-\xfe\xc1\x33\x10\x7f\x7a\x65\xc6\x40\x3c\x30\x88\xdd\x6c\x78\xd4\
-\x20\x0c\xaa\x08\x6d\xea\x28\x4d\x1d\xe5\x81\x5e\x67\x30\x4f\x22\
-\x7c\x31\x76\x2d\x5e\x94\xc3\x16\x3c\x20\xfd\x10\x4b\xb9\x45\x7b\
-\xc6\x21\x6a\x0e\x4a\xd7\xe4\xa5\x18\xca\x8b\xf1\x5a\xf9\x46\x7d\
-\xcd\x41\x69\xe6\xd3\xf2\xa7\xb9\xec\x92\x9e\x9a\xef\xb6\xeb\x8f\
-\xfe\x99\x17\x51\x7b\xac\x74\x4d\xde\xea\x69\x8c\xd7\x5a\xaf\xa8\
-\xaf\x39\x80\x7e\xf0\x03\x5b\x11\x17\xf2\x0f\xdb\xe7\x3c\x5e\xf8\
-\x92\xc5\x1c\x54\xf4\xcf\xba\x88\xaa\xa3\x74\x4d\x0e\x9d\x65\x23\
-\xc6\x5b\xb7\xfe\xb9\xfe\x62\x6e\xd1\x9e\x75\x11\xa1\x4f\x1d\xa5\
-\x6b\xf2\xe8\x3f\xce\x61\x87\x1b\x08\xd6\x62\xea\xc0\xb3\x90\x5a\
-\x3c\xf0\xf1\xec\xf3\x5b\xbe\x39\xa5\x5f\xfe\x85\xee\x67\x8a\xe1\
-\x17\x7d\xc5\x83\x74\x47\x8d\x8f\x6e\x8f\x03\x95\x49\x03\xa7\x0c\
-\x5d\x40\xe8\xb7\xec\x19\x87\x18\xf5\xa3\xbf\x29\x39\xcc\xd1\x61\
-\x5d\xc4\x18\x2f\xe6\xd3\xf2\x3d\xd7\x9e\x75\x13\x63\xbc\xe8\xaf\
-\x15\x7f\xae\x9c\x75\x13\x63\xbc\x98\xcf\x5c\xff\xfb\xae\xcf\xba\
-\x89\xeb\xd6\x3f\xd7\x1e\xfa\x18\xc4\xd8\xef\xe8\xaf\xd3\xde\xdc\
-\x91\x75\x03\x6f\x7d\xab\x94\x6e\x74\x83\x69\xbe\xf1\x6f\x93\xbf\
-\x78\xda\xf8\xdf\x27\x31\xdf\x58\x4f\xf4\xce\xba\x89\x51\x3f\xfa\
-\x8b\xf6\xeb\xce\xb5\x7e\xf8\x8a\xf1\x62\x3e\xad\x78\x73\xed\x59\
-\x37\x31\xc6\x8b\xfe\x4a\xf1\xf1\x7b\x22\xf8\xb2\xca\x7f\xf3\x2f\
-\xa7\xbd\x6b\x0e\xcf\x40\xb0\xd6\x78\xe3\x83\xd6\x7f\xf9\xd3\x52\
-\xba\xc7\xb7\xa4\x74\xef\xbb\x0f\x7f\xaf\xfd\xa2\x8f\x2f\xf4\x4a\
-\xf1\x95\x87\x7c\xfd\xbf\x9f\x74\x1c\x0b\x88\x05\xaa\x31\x68\xda\
-\x11\x95\xa7\xb4\xca\xc1\xe7\xc0\xf9\xe4\x31\x32\x83\x74\x4d\x9f\
-\x76\x25\x2c\xd9\xb4\xea\xa1\x0d\xb1\xa5\x1f\xe3\xd2\x8e\x08\x79\
-\x89\x56\x9e\xfa\x58\xa5\x7e\xf5\x45\x9a\xa8\xbe\x41\xb7\xea\xa1\
-\x1d\xb1\xa5\x1f\xfd\xef\x62\xce\x5c\x11\x9b\x34\x31\xe6\xd3\xaa\
-\x87\x76\xc4\x96\x7e\xf4\x4f\x3b\xa2\xe6\xa4\xb4\xca\xd5\xc7\x2e\
-\xd7\xff\xa1\x33\x9e\x7d\xe0\xf7\xcb\xf1\xc1\xb6\x38\x58\x17\x11\
-\xf2\x12\xad\x3c\xf5\xb1\xcb\xfa\x35\x57\xe6\x77\xbc\xac\x3f\xfe\
-\x95\x85\xaf\x80\xc7\x07\x3f\xa7\x8c\x87\x7e\x7b\x4a\xef\x78\x57\
-\x4a\xb8\xf9\xe0\x67\x89\xef\x73\xcf\x94\xee\x6e\xcf\x3a\x4e\xb3\
-\x9b\x88\x0e\xfc\xa1\xf0\xf1\x8b\xeb\x7f\xe0\xa8\x2e\x68\xf4\x6d\
-\xf0\xf2\x19\x1b\x49\xa4\x52\x34\xac\xcd\x67\x2f\x40\x76\x64\x79\
-\xf8\x88\xf6\x99\xbd\x32\xb0\x0e\x22\x1c\x29\x1d\x1d\x53\x46\x6c\
-\xe9\x47\xfb\x98\x3f\xfc\x90\x17\x75\xdd\x77\x66\xd6\xea\x6f\xd9\
-\x97\x7c\x2a\x8f\x75\x10\x3d\x26\x83\xa9\x62\xa6\xa9\x47\x6c\xe9\
-\x17\x5c\xec\x15\x8b\x75\x10\x5b\xf5\x50\x8f\xd8\xd2\x8f\xc5\x72\
-\xad\x81\xb4\x25\x2f\xea\xba\x3c\x33\xb9\x24\xd4\x9d\x6a\x5f\xf2\
-\xa9\x3c\xd6\x41\xf4\x98\x16\x0c\xdf\xb2\x8b\xb7\x7a\x4e\x19\x9f\
-\xfc\x54\xf7\x1b\xe6\x53\x74\xe7\xe6\xcf\xba\x89\x73\xed\x5b\x39\
-\xb1\x6e\x22\xf4\x95\x8e\xf6\x94\x11\x5b\xfa\xd1\x7e\x6e\xfe\xac\
-\x9b\x38\xc7\x1e\x37\x10\xfc\xeb\xc9\x7f\x54\x2a\x26\x12\xe6\xd7\
-\xb1\x0f\x16\xe2\x99\xc6\x35\xcf\x4a\xe9\xce\xdf\x54\x7f\xd3\x04\
-\x6e\x1e\xb8\xc9\xe8\xd0\x5e\x28\x9f\xf4\xe0\x45\x74\x32\x57\x45\
-\x06\x03\x96\x1e\xf0\x4b\x9d\x52\x0c\x26\x4f\x2c\xe9\x54\x79\x5c\
-\x05\x62\x55\x71\x7b\x02\xd6\x56\xaa\x5d\x65\xb5\x0c\x58\x37\x50\
-\xe9\x9a\xfe\xe0\x95\x4c\xd6\x4d\xac\x1a\x9d\x40\x02\xd6\x0a\x54\
-\x7a\x47\x25\xea\x1a\x97\xf6\x00\xd2\xa2\x4e\x29\x45\x5d\x73\xa5\
-\x4b\xba\xce\xd3\x9a\x95\xae\x1a\x74\x82\x07\x4e\xfc\xcb\x15\xda\
-\xcf\x79\x41\xf7\xee\xab\x86\x4b\x17\xb3\xb6\x52\xed\x2a\xab\xf9\
-\xd2\x9a\x95\xae\xe9\x0f\xd6\x7c\x46\xfd\x55\x7f\x6b\x0a\xb4\xc6\
-\x52\x0f\xe0\x9e\x3a\xa5\x50\x5a\xb3\xd2\x25\x5d\xfc\xee\xca\x73\
-\x9e\x5f\x92\x94\x79\x0f\x7f\x68\x4a\x77\xbb\x4b\xfd\xe6\x01\xab\
-\x8b\xec\x2d\xda\x73\xc7\xd2\x1b\x08\x8b\x65\x33\xe0\x9c\xbc\x29\
-\x81\x70\x47\xc5\x00\xea\xdd\xb5\xe6\x4f\xf5\x3b\xcb\x19\xc7\x1c\
-\xab\x7f\x7f\xa1\x99\x32\xd7\x5a\xbc\x96\xf7\x75\xed\xb5\x9e\xb9\
-\xf5\xab\x6d\x35\x4f\xad\x59\xe9\x6c\xb0\x6e\xfe\x6a\x5f\xcd\x61\
-\x97\x02\xad\x59\xe9\x2d\xd4\xbf\x4a\x2f\x74\x0d\xf7\x65\xfd\x6f\
-\x78\x7d\xfb\xaa\x0b\xfb\x7c\xc0\x94\xf1\x31\xfb\x7f\xf8\x6b\x5e\
-\xdf\x9d\x47\x27\x4a\xfd\xac\x63\x4a\xfd\xd4\x05\x2a\x3d\xc5\x16\
-\x3a\xdb\x5e\xff\x57\xbe\xb6\xfb\x97\xd3\x94\x7c\x98\xcb\x32\xdd\
-\x78\x03\xd1\x9a\x95\x56\x1f\x83\xdf\x03\x61\xa3\x88\x50\xa4\xa1\
-\x1a\xd5\x68\xea\x6e\xc2\xbe\x16\xa3\xc6\xd7\xd8\xd4\xd1\x6b\x0a\
-\x68\xe8\x10\x99\xe3\x32\x84\x1f\xfa\xa5\xcf\x65\x48\x5d\xfa\xdc\
-\xb4\x7d\xf4\xcf\x38\xc4\x18\xef\xa8\xeb\x5f\xd6\x9b\x4d\xca\x58\
-\x6f\xc4\x5d\xd7\x8f\x7c\x98\x83\xd2\x1d\xb7\x7d\x54\x1b\xa5\x69\
-\xa9\x3c\xd0\xf1\xc1\xd8\xd4\x2f\xad\xff\xdd\xef\x4a\x69\x1b\xf1\
-\x4b\x79\x53\x3f\x77\xa0\xb1\x99\x97\xf2\xda\xd1\x16\xe7\x5a\xcd\
-\x1e\x7c\xfa\xa4\x8e\x22\x65\x9d\x56\x77\xae\x83\x46\x1f\x78\xde\
-\x13\xd5\xae\x46\xc3\x16\xb2\xa9\x83\xba\xf4\x07\x3b\xf2\xa6\xf8\
-\xa0\x6e\xcd\x3e\xca\xb1\x36\xf8\x94\xfa\xa6\xc6\x85\x17\x0d\xf7\
-\x14\xfc\x32\x66\x2d\xc6\xe0\x19\x08\xef\x52\xc0\xd2\x03\xce\xc0\
-\x67\x81\x11\xa7\x04\xd4\x44\x98\x1c\xfd\xd0\x37\x70\xee\x50\x5b\
-\xfa\xc3\xae\xf1\x18\xf0\x47\x9f\xc4\x42\x00\xc6\x05\x96\x1e\xf0\
-\xc5\x38\x8c\xa1\x08\x97\x1e\xaf\xe0\xbb\xc4\xa2\x2e\x7d\xd0\x37\
-\x63\x83\x4f\x9e\xea\xd2\x17\x64\x18\x55\x7d\x93\xbb\x1d\xf4\xb2\
-\x6e\x8f\x6e\x39\x3c\x44\x7f\xf4\x4b\xfe\x50\x7b\x37\x33\xf6\x01\
-\xd1\x99\x17\xf3\x1c\xf5\x6b\x83\xf5\x23\x46\xf4\x8f\xb9\x3e\x90\
-\x13\xe6\x53\x07\x75\xe9\x43\x63\x28\x4d\x39\xfc\xd2\x06\x34\x74\
-\x88\x45\xfd\x50\x3f\x5e\x34\x9d\xfa\x2b\x83\x17\x7c\x34\x25\x7c\
-\x0f\x13\xfc\xf2\x81\xd8\x8c\xc3\x9c\x14\x91\x8b\xe6\xe7\xc9\x2d\
-\x39\x50\x97\x3e\xe8\xbb\x16\x2f\xfa\x87\x1e\x46\x55\x3f\xd4\xdf\
-\x29\xfb\xb1\x78\x88\xfe\xe8\x97\x88\x3c\x41\x33\xdf\x88\x70\x0a\
-\xde\xd4\x41\x5d\xfa\xa1\xef\x5a\x3c\xf8\xa5\x0d\x68\xe8\xe1\xd7\
-\x1f\xf1\xa2\xfa\x26\x06\xbe\x65\x00\x83\xf1\x23\x22\x36\x78\xcc\
-\x17\xd8\x7c\x11\xbd\x73\xb9\x38\xc6\x02\xe8\x14\x1a\xa4\xa9\x13\
-\x91\x3a\x0b\x6f\x43\xaa\xa4\x3f\xd4\xa8\xcf\x4a\xb6\xcb\x78\x25\
-\x4f\x25\xfd\xa8\x47\x1d\xf0\xd9\x4c\x20\x06\x64\xe4\x71\xae\x18\
-\x69\xcc\x75\xd0\x37\x11\x32\xa5\x55\x57\x65\xaa\x53\xa2\x4b\xbc\
-\xe8\xab\xe6\xaf\xa4\xb7\x2f\x3c\xd6\x45\xd4\x1a\x94\xae\xc9\x63\
-\x1d\xd4\x23\x46\xb9\xfa\x04\xcd\xb5\x3e\x5e\xd6\x1f\x2f\xa0\x9e\
-\x7a\x6a\xa9\xaa\x31\x0f\xdf\xa3\xc4\xff\xc3\xab\x54\x7b\x73\xbc\
-\xd5\x8f\x3a\x34\x7f\xad\x4b\x65\x53\x74\xa0\xbf\xeb\xfa\xf1\x1b\
-\x20\xf7\xb4\x17\xc7\xaf\x7c\x66\xac\x64\xb5\x39\x9e\x81\x60\xcc\
-\xa9\x7f\x70\x03\xe9\xcc\xa7\x1f\x19\x88\xd8\x0a\x3e\xdd\xf3\x66\
-\x34\x91\x17\x17\x19\x1e\x49\x03\x37\x31\x58\x37\x11\x3e\x95\xde\
-\x44\x8c\x75\x7c\x6c\xb2\xfe\x9f\xb1\x0f\x1a\x1d\x6f\x63\x93\xf5\
-\x97\x6a\xe7\x5a\x13\xa1\xa3\x74\xc9\xe6\x28\x79\xb1\x7e\xbc\x75\
-\x73\xca\xf8\xcc\x67\xe5\x9b\x76\x97\x18\xb0\x56\x22\x54\x95\x5e\
-\x62\x7a\x24\xa2\x58\xff\x89\x72\xfe\xe3\xad\xb8\xf7\xbd\x57\xf9\
-\xad\xb8\xab\x36\x16\xbf\x67\x8f\xc7\x9c\x81\xfe\xfa\x0d\x84\x8b\
-\x1e\x1b\xdc\x5a\x80\x28\x8f\xc1\xa3\xbf\x28\x8f\xf6\x2d\xfd\x68\
-\xdf\x9a\xc3\x1f\x06\x31\xd2\xad\xf8\x73\xe5\x1e\x4c\x0e\xad\x7a\
-\x5a\xfe\xc5\x95\x93\x73\xf5\x59\x37\x11\x4e\x94\x6e\xf9\x9b\x2b\
-\x8f\xf9\x1e\xea\xef\x2e\xa8\xda\x73\xed\x51\xab\xbf\xaa\x0b\x7a\
-\xae\x3e\xe3\x02\xaf\x7f\xdd\xe9\x6f\xdd\xc5\x0b\xe7\x78\xf6\xd1\
-\x8a\x17\xe5\x31\xdf\xc3\xfa\x2f\x7a\x18\x7b\xb3\xca\x7a\x5e\xc3\
-\x7e\x6e\xf8\x5b\xef\xbb\xfc\xad\xb8\xa5\x38\x53\x78\xfa\xec\x83\
-\xfb\x26\xae\x6f\x5c\x4f\xc8\x07\xcf\x40\xc0\xc0\x20\x46\xda\x85\
-\x72\x60\x20\xa2\x88\x7a\x52\x65\x31\x21\x28\x69\xac\xde\x68\x45\
-\x22\xfa\x8f\x05\xb7\xdc\x32\x17\x22\xf4\x95\x8e\xf6\xac\x8d\x18\
-\xe5\x98\xab\x2c\xe6\x07\xf9\x32\xff\x90\xcf\x19\xd1\xff\xa1\xfe\
-\xae\xbf\xba\x06\xcb\xfa\xc9\xb5\x20\x42\x57\xe9\x68\x4b\xbf\xc4\
-\x28\xc7\x5c\x65\x71\x7d\x20\x5f\xe6\x1f\xf2\x39\x23\xfa\x47\x6c\
-\xf2\x6e\x70\xbd\x69\x9e\xa0\xff\x8a\x57\x2f\xf2\x5a\x96\x1f\x6b\
-\x23\x96\x22\xa8\x8c\xb9\xa8\x4f\xa5\x4b\xf6\x73\x78\xd1\xbf\xd6\
-\x3f\xc5\x0f\x73\x21\xc2\x46\xe9\xe8\x83\xb5\x11\xa3\x1c\x73\x95\
-\xc5\xfc\x20\x5f\xe6\x1f\x72\x0c\xac\x1d\xbe\x5d\xf7\x1b\x6f\x33\
-\xf4\xd7\x49\x37\x73\xc4\x3b\xb0\x98\x0b\x11\x9e\x95\x8e\x91\x50\
-\xdb\xe0\xf7\x40\xa0\x0c\x26\x8d\x48\xb3\x09\x51\x1e\x1d\x4e\x99\
-\xd3\x37\x74\x37\xe9\x5f\x73\x9b\x9a\x6f\x2b\x7e\x4b\x3e\xa5\xde\
-\xa8\xb3\x6e\xfd\x6a\x4f\x9a\x38\x37\xdf\x96\x7e\x4b\x1e\x6b\x9b\
-\x32\x67\xae\xd0\x5d\xc5\xbf\xda\x93\x26\xce\xf5\xd7\xd2\x6f\xc9\
-\xa7\xd4\x1b\x75\x98\xeb\x51\xd7\x7f\xa5\x2b\xc5\x4c\xca\xf3\x77\
-\xbf\x77\xf1\xd6\xd0\x13\xa9\xfe\x52\xb5\xad\xfa\x5a\xf2\x92\xcf\
-\x16\x6f\xce\xfa\x5f\xf5\x2a\x29\x7d\xff\xf7\xce\xfb\xc2\xcb\x56\
-\xfc\x9a\x9c\x6f\xe1\x65\xcd\xd0\x23\x0d\xc4\x40\xee\xe4\x75\x9c\
-\xfc\x8b\x84\x10\xb0\x30\x22\x0d\x88\xe4\x13\xe9\x60\x1d\xa4\x2f\
-\xa0\xd2\xab\xfa\x54\x1f\x4a\xd7\xfc\xa9\x8e\xd2\xd4\x57\x9e\xd2\
-\x94\xaf\x8b\xea\x53\xe9\x9a\x5f\x2e\x24\x50\x69\xea\xab\x0f\xa5\
-\x29\x8f\xa8\x3a\x4a\x53\x4f\x79\x4a\x53\xbe\x2e\xaa\x4f\xa5\x6b\
-\x7e\xb5\x66\xa5\xa9\xaf\x3e\x94\xa6\x3c\xa2\xea\x28\x4d\x3d\xe5\
-\x29\x4d\xf9\xba\xa8\x3e\x95\xae\xf9\xd5\x9a\x95\xa6\xbe\xfa\x50\
-\x1a\x72\xfe\x8b\x82\xba\x35\xc4\xb3\x0f\x0e\xf5\xa1\x34\xe5\xeb\
-\xa2\xfa\x54\xba\xe6\x57\x6b\x56\x9a\xfa\xea\x43\x69\xca\x23\xaa\
-\x8e\xd2\xd4\x53\x9e\xd2\x94\xaf\x8b\xea\x53\x69\xfa\xbd\xf8\x13\
-\x29\xbd\xe4\xe5\x29\xe1\xdb\x00\xb6\x3d\xb8\x3f\x98\x07\xe2\x91\
-\x06\x2a\xad\xb9\x0c\xde\xc6\xab\x82\x4d\xd0\x16\xd7\x07\x50\xe9\
-\xcc\x1e\x41\x2d\xc9\x91\xe2\x44\x86\xfa\x53\x7a\xa2\xf9\xda\x6a\
-\x5a\xb3\xd2\x35\xc7\x9a\xa3\xd2\xd4\x57\x9e\xd2\x94\x47\x54\x1d\
-\xa5\xa3\xde\xb6\xe6\x5a\xb3\xd2\xb5\x78\x9a\xa3\xd2\xd4\x57\x9e\
-\xd2\x94\x47\x54\x1d\xa5\xa3\xde\xb6\xe6\x5a\xb3\xd2\xb5\x78\x9a\
-\xa3\xd2\xd4\x57\x9e\xd2\x94\x47\x54\x9d\xb7\xbf\x33\x25\x7c\x7a\
-\x79\xd9\xc0\x5b\x77\xcf\x79\xeb\x32\x8d\x79\x32\xad\x59\xe9\x9a\
-\x17\xcd\x57\x69\xea\x2b\x4f\x69\xca\x23\xaa\x8e\xd2\x51\x6f\x5b\
-\x73\xad\x59\xe9\x5a\x3c\xcd\x91\xf4\x39\x6f\x49\xe9\x3f\xfe\x97\
-\x94\x5e\xf0\xe2\x79\x9f\xc9\xa9\xc5\xa8\xf1\xf9\x16\xde\x9a\xbc\
-\xc6\x1f\xdc\x40\x98\x34\x50\xe9\x9a\x71\x8b\x9f\x9f\xf9\xf8\x47\
-\x0f\x94\x6e\xd9\xad\x22\x2f\xe5\xab\x7f\xa5\x28\x5d\xf3\xaf\x3e\
-\x94\xae\xe9\xb7\xf8\x5a\xb3\xd2\x2d\xbb\xa9\x72\xcd\x51\x69\xda\
-\x6b\xcd\x4a\x53\x1e\x51\x7d\x28\x1d\xf5\xa6\xce\xb5\x66\xa5\xa7\
-\xda\xb7\xf4\x34\x47\xa5\x69\xa7\x35\x2b\x4d\x79\x44\xf5\xa1\x74\
-\xd4\x9b\x3a\xd7\x9a\x95\x9e\x6a\xdf\xd2\xd3\x1c\x95\xa6\x9d\xd6\
-\xfc\xd9\xcf\xa5\xf4\xd4\xbf\xa6\x64\x8c\xf8\x50\x1a\xe4\x7c\xf1\
-\xbc\xe4\x6f\x6c\xb5\x9c\xa3\x35\x2b\xbd\xdc\x6a\xba\x54\x73\x54\
-\x9a\x1e\xb4\x7e\xa5\x29\x8f\xa8\x3e\x94\x8e\x7a\x53\xe7\x5a\xb3\
-\xd2\x53\xed\xa9\xf7\x65\xfb\x31\xa9\xbf\x79\x56\x4a\xbf\xfe\x5b\
-\x29\xbd\xe7\x7d\xe4\x6e\x0e\xb1\xe6\xf8\xd6\x01\xad\x59\xe9\x65\
-\x91\x06\xef\xc2\xc2\x95\xde\x0d\x59\x2d\x2c\x95\x0e\x9e\xa0\x8b\
-\x85\x61\xb0\x20\xee\x6c\x71\xeb\xa5\x0f\xd2\xc0\xc2\xa0\x2f\x2e\
-\x76\x41\xa5\xca\x52\xdb\x5a\x3e\xaa\x03\x47\xa3\xfc\x59\x0b\xf3\
-\x85\x92\xd2\x98\xcb\x18\xd9\x8b\xcc\x49\xd8\xb2\x66\x30\x48\x4f\
-\xac\xbf\xe5\xbf\x59\x8f\x27\xb1\x38\x34\xf5\x0f\xf5\xef\xd5\xfe\
-\xdf\xf4\xfa\xbf\xca\xbe\xfa\x02\xcf\x42\xbe\xeb\x3b\xba\x6f\x65\
-\xe5\xce\xc0\x97\xe8\xfd\xaf\xbf\x48\xe9\x03\xe7\xc9\x1e\xa5\xf0\
-\xb0\xff\xd9\x89\x11\xb6\xd6\xc7\xaf\x1d\x3c\xe7\x61\x4d\x7a\xc5\
-\xf3\x1f\xcf\x10\x7f\xe7\x89\x29\xdd\xe5\x8e\xdd\x1a\x4e\xf9\x22\
-\xc5\x51\xd2\x05\xc6\xc7\xed\x5f\x65\xf8\xb5\x49\xe4\x8b\x9a\x06\
-\xd7\xbc\xc6\xfa\x2f\x7d\x11\x9d\x75\x12\x47\xb1\x63\x40\x06\xcf\
-\x06\x88\x4d\x96\xdb\x32\x99\x8c\x71\x01\x3c\x79\xd8\x54\x03\x8e\
-\x32\x18\x30\x70\x81\xc4\x20\xb6\xfc\xb7\x2e\xa8\x4c\x83\xd8\x79\
-\x97\xa3\xc5\xf3\x5c\x59\x17\x8b\xcd\x06\x60\x93\xe5\x56\xd4\xcb\
-\xb8\x6e\x7e\x92\x49\xe7\x3e\xfb\x3d\xd4\xdf\x75\x66\xdd\xfe\x72\
-\xdd\x89\xb1\xdf\xa3\x13\x8e\x8b\x9d\x0d\xf6\x71\xfd\x5f\xf7\xc6\
-\xee\xdf\x54\xf8\x3e\xac\xab\xd8\x8b\xb4\x17\x5e\x98\xd2\x05\xf6\
-\xf0\x61\x79\xf3\x9c\xc0\x9c\x75\x13\x3b\x25\x39\x5a\x81\x87\xfd\
-\x6f\xfd\xc8\xe7\x5d\x7f\xb2\x6f\x79\xfd\x5f\xfb\x86\x94\xde\xf2\
-\x8f\x29\x3d\xec\xc1\xf6\x41\xc2\xbb\xd9\x0b\xd9\x83\xff\x23\xc9\
-\xfa\x4c\x24\x2f\xb2\x0f\x10\x72\xdd\x89\x30\xe5\xba\x13\x47\xee\
-\xac\xee\xe1\x33\x10\x18\x55\xb5\x47\xe6\xe5\x08\x62\x4f\x5f\xc4\
-\x82\x87\x79\xf1\x4a\x0e\x32\xaf\x18\xa3\xb1\xc1\x69\x43\x84\x2b\
-\xa5\x97\x84\xeb\x44\xac\x95\xe8\x0e\x16\x56\xf4\x45\x5c\x48\x16\
-\xd4\x14\x99\xea\x94\x68\xe5\x2d\x3c\x1b\x75\xa8\x7f\xe9\x05\x8e\
-\x7d\x23\xa2\x77\x4a\x0f\x7a\x59\x9a\x70\xdd\x89\xee\x60\xa1\x48\
-\x5f\xc4\x85\x64\x41\x4d\x91\xa9\x4e\x89\x56\xde\xc2\xb3\x51\x95\
-\xf5\xc7\xb3\x90\x73\xcf\xef\x1e\x03\x7d\x9b\x54\x7d\x45\x45\xcc\
-\x59\x37\x51\x79\x10\x67\x3e\x11\xe2\x38\xa6\xc8\x54\xa7\x44\x2b\
-\x6f\xe0\xbf\x52\x3f\xf3\xa6\x1d\x11\xb6\x4a\x0f\x7c\x95\x26\xac\
-\x9b\xe8\x0e\x16\x8a\xf4\x45\x5c\x48\x16\xd4\x14\x99\xea\x90\xfe\
-\xe2\x17\xed\x5f\x8e\xcf\x48\xe9\x55\xaf\x49\xe9\xd1\x8f\x4c\x09\
-\x5f\x92\xb9\xea\xc0\x0b\xe8\xf4\x4b\x9c\xe4\xcb\xea\xf6\x7b\x17\
-\x8c\x68\x48\x2c\x39\xa0\x6c\xaa\x7e\xc9\xc7\x36\x79\xa3\xfc\x58\
-\x17\x16\x18\x0f\x0c\x22\xc8\x4c\x4f\xad\x67\xae\xbe\xc7\x3b\xc2\
-\xc3\x28\x3f\xab\xcf\x79\xa8\x93\x75\x13\x0f\xf5\x1f\xd6\x3f\xef\
-\x85\xc3\xfe\x1f\x5e\x0b\x6a\xa7\xec\xe8\xfc\x92\x73\xa8\x66\xb3\
-\x6d\xfe\xf9\xf6\x43\x5f\x4f\xf8\xef\x29\x3d\xd9\x7e\x31\xf2\x0b\
-\x33\x3f\x49\xce\xdc\xa6\xde\x40\x4a\xf5\x2f\xfd\x17\x16\x9f\xce\
-\x00\x31\x22\xc2\x21\x75\x28\x27\x0f\x73\xd2\x0c\x4c\x5d\xfa\x81\
-\x8e\x8e\xa8\xaf\xb2\x16\xad\xb6\xea\x5f\x69\xd5\x81\xbf\x98\x4f\
-\x4b\x4e\x5f\xc4\x96\x7e\x4b\x1e\x6b\x8a\xfa\x51\x3e\x37\x5f\xd6\
-\x48\x3f\xd1\xff\x5c\x7f\xac\x9b\xb8\xae\x3f\xe6\x45\x8c\xfe\xc8\
-\x27\xce\xcd\x17\x76\xcc\x15\x74\xf4\x3f\xd7\x1f\x7d\x11\xd7\xf5\
-\x87\x9c\x74\x44\x7f\x2a\x03\x3d\x37\x5f\xda\xd0\x4f\xf4\x3f\xd7\
-\x1f\xeb\x26\xae\xeb\x8f\x79\x11\xa3\x3f\xf2\x89\x73\xf3\x85\x1d\
-\x73\x05\x1d\xfd\xcf\xf5\x47\x5f\xc4\x75\xfd\x21\x27\x1d\xd1\x9f\
-\xca\x40\xd7\xf2\xc5\x8b\xe0\x2f\x7b\x55\xf7\xaf\x49\xfc\xee\xc7\
-\x5d\xef\x3c\xac\x3b\xfa\x89\x73\xbc\x03\x4b\x7d\x23\x0f\x0c\xe5\
-\x71\xae\x08\xbd\x63\x6c\x86\x0a\xc8\x5b\xb5\xa0\x5a\x02\xd1\x5f\
-\x2b\x41\xe4\xb4\xce\x68\xc5\x83\x6f\xd6\xaa\x34\x79\xd1\x3e\xe6\
-\x12\xf3\x8f\xfa\x73\xe5\x8c\x4b\x8c\xfe\x62\xfc\xd6\x3c\xda\xc7\
-\x7c\xb4\x66\xa5\xa7\xc6\x8f\xfe\x5a\xf1\x5a\x72\xc6\x25\x46\xfd\
-\x56\xbd\x51\x1e\xed\x63\xbe\x5a\xb3\xd2\x53\xe3\x47\x7f\xad\x78\
-\x2d\x39\xe3\x12\xa3\x7e\xac\xaf\x35\x8f\xf6\x31\x5f\xad\x59\xe9\
-\xa9\xf1\xa3\xbf\x56\xbc\x96\x9c\x71\x89\x51\xbf\x55\x6f\x94\x47\
-\xfb\x98\xaf\xd6\xac\xf4\xd4\xf8\xd1\x5f\x2b\x5e\x4b\xce\xb8\xc4\
-\xa8\x1f\xeb\x8b\xf3\xcf\x7d\x3e\xa5\x3f\x7f\x4a\x4a\xaf\xcc\xff\
-\xd6\xc2\x2f\x11\x4e\x19\xfa\x21\x42\xe8\x4f\x8d\x0f\x3d\x7f\x06\
-\xb2\x2c\x08\x8a\x58\x75\xd0\x96\x08\x3f\x4a\x47\xbf\x90\x21\xa9\
-\x65\x3a\xd1\x66\xce\x9c\x7e\x89\x53\x6c\xe7\xe8\x46\x7f\xb4\x25\
-\x42\xae\x74\x49\x3f\xd6\xaf\xfa\xa4\x89\x2d\x7f\x25\xff\xab\xda\
-\x44\x5f\x53\xe6\xcc\x93\xd8\x8a\x0d\xbd\x43\xfd\xc3\x3d\x52\xea\
-\x5d\x89\xb7\xea\x7a\xb4\xec\x34\x56\x4b\x37\xca\x69\x4b\x84\x5c\
-\xe9\x92\xfe\x61\xfd\x87\x3d\xd2\x7e\x91\x26\xd6\xfa\xf9\xfe\x0f\
-\xa6\xf4\x1b\xf6\x96\xdf\xfb\xdc\x23\xa5\x87\x3c\x70\xfc\xdb\xe7\
-\xda\xf7\x4b\x2e\x49\xe9\xd3\x9f\x51\xce\x90\xd6\x58\x43\x49\x37\
-\x1b\xbe\x7e\x9f\xff\x55\xe5\xef\x2a\x50\xba\x64\x69\x3c\x3a\x07\
-\x2a\x4d\x75\x6c\x06\x0c\xa0\xd2\x1d\x77\x68\x53\xb2\xa7\xde\x54\
-\x54\x1f\x4a\x4f\xb5\xf7\xba\xa1\x8c\xbc\x0f\xf5\x77\x6d\x63\x1f\
-\xba\xd9\xe0\xa8\x3d\x56\x9a\x4a\xba\xe6\x4a\x53\xae\x36\x4a\x53\
-\x3e\x17\xd5\x87\xd2\x93\xfd\xb0\xd6\xc3\xfa\x1f\xf6\xbf\xee\x85\
-\xca\x06\xd2\x3d\xa6\x34\xd5\x75\xcf\x2b\x4d\xb9\xda\x28\x4d\xf9\
-\x5c\x54\x1f\xf8\x5c\xcf\x0b\xcf\x4e\xe9\x57\x7e\xa3\xfb\xcd\x90\
-\x9a\x2f\x7e\x02\xdd\xe5\x5a\xb3\xd2\x15\x63\xc4\x3b\xc5\x1e\x8b\
-\xc1\x09\x50\xe9\x85\xc6\x2c\x4a\x0b\x02\xed\x6e\x89\xd9\x13\xc3\
-\xcc\x72\xbc\xa2\x32\x63\x79\x1e\xa5\xf8\x4d\x85\x79\x81\xd7\xad\
-\x7f\xc3\xe9\x0c\x96\x54\x7d\xf7\x55\x29\x53\xe9\x5e\x61\x1e\x71\
-\xa8\xbf\xeb\x97\xef\x7d\xeb\x27\x5a\xda\x9f\x07\xb9\x95\x6c\x73\
-\xa9\xb3\x94\xb9\xdd\x04\xfd\x92\x0f\xe5\x35\xfd\x35\x15\xd4\x5b\
-\x9b\x3e\xac\x7f\xd7\xa3\x5d\xae\x3f\x9e\x5d\xfc\xf1\x9f\xa5\xf4\
-\xdf\x7f\xbf\xfc\x75\x36\x1f\xcd\x3f\x22\xe5\x99\xae\xb0\xfe\xa7\
-\xf0\x46\xd3\xde\x0e\xc3\x7b\x8a\xc6\x9a\x62\x0b\x1d\xc6\x02\x2a\
-\x3d\xd5\x7e\x99\x9e\x6e\x56\xea\x29\x0f\x34\x62\x12\x57\x89\xaf\
-\x35\x2b\xcd\x78\x2d\xd4\x98\x4a\xd7\xec\x54\x47\x69\xea\xc7\xfa\
-\xc0\x27\x4f\x69\xf0\x58\x37\xb1\xe4\x8f\x7e\x6b\xa8\x35\x2b\x5d\
-\xd3\x8f\x7c\x8d\xa9\x74\xd4\xe3\x5c\x75\x94\xa6\x9c\xb5\xb2\x3e\
-\xf0\xc9\x53\x9a\x72\xf8\x00\x0d\x2c\xf9\x83\xcd\xb2\xa1\x35\x2b\
-\xbd\xcc\x46\x65\x1a\x53\x69\xd5\x51\x5a\x75\x94\xa6\x0e\x6b\x65\
-\x7d\xe0\x93\xa7\x34\xe5\xf0\x01\x1a\x58\xf2\x07\x9b\x65\x43\x6b\
-\x56\x7a\x99\x8d\xca\x34\xa6\xd2\xaa\xa3\xb4\xea\x28\x4d\x1d\xd6\
-\xca\xfa\xc0\x27\x4f\x69\xca\xe1\x03\x34\xb0\xe4\x0f\x36\xcb\x86\
-\xd6\xac\xf4\x32\x1b\x95\x69\x4c\xa5\x55\x47\x69\xd5\x51\x9a\x3a\
-\xac\x95\xf5\x81\x4f\x9e\xd2\xe0\xbd\xe3\x5d\x29\xfd\x7f\xff\x35\
-\xa5\xbf\x7d\x76\x4a\xf8\x64\x3b\x07\x3e\x03\x32\x75\x68\xcd\xa4\
-\x07\x9f\x03\xc1\xd3\x2c\x04\xe3\xd3\x2d\xd2\x4c\xaa\x25\x6f\x25\
-\xd2\xb2\x8f\xf2\x96\x3f\x95\xab\x6d\x2d\x5f\xe8\x43\x8f\x63\x6e\
-\x7d\x1a\x03\x3e\xa2\x3d\xfd\xd6\xb0\x65\xdf\x92\x47\xbf\x2d\xfd\
-\x28\x87\x3d\x78\x1c\x31\xff\xa8\x3f\x57\x4e\xbf\x35\xdc\xb4\xff\
-\xb9\xfe\x90\xd7\xa1\xfe\xc5\xea\xcc\x5d\xdf\x56\xbf\x17\x9e\xcb\
-\x54\xcb\xbe\x25\x8f\x5e\x5b\xfa\x51\x0e\x7b\xf0\x38\x4e\xb6\xfa\
-\xf1\x6f\xad\xe7\xbc\x20\x25\x7c\x98\xf4\x51\xdf\x95\xd2\x6d\x6f\
-\xdd\x3d\x2b\x41\x1f\x30\x62\xbf\xa6\xf4\x67\xf0\x22\x3a\x1d\x11\
-\xe1\x54\x69\xcc\x97\x8d\x56\x02\xf4\x45\x84\x2f\xa5\x97\xf9\x6e\
-\xc9\x78\x47\x24\x96\xf4\x11\x8b\x39\x52\xae\xf1\x49\x13\xa1\xa3\
-\x34\x6d\x6a\x48\xdf\x40\x0c\xd8\x92\xc7\xb9\x62\xa4\x31\xd7\x41\
-\x3f\xc4\x91\xbf\xac\xac\x35\x2b\xad\xbe\x40\x47\x7b\xf2\xa8\xc7\
-\x5a\x89\x51\x4e\xbd\x1a\xb2\xd6\x6a\xbe\x39\xb9\xa9\xfe\xe9\x87\
-\x18\xf3\x67\xad\x44\xcf\xb7\x96\x9c\xf1\xa3\xbd\xeb\x8b\x31\xf3\
-\x22\x46\xf9\x12\xd7\x2e\x3a\xd4\xbf\xe8\x31\x7b\xc7\x9e\x70\xae\
-\x18\x69\xcc\x75\x70\xdd\x89\x71\xfd\xb8\x74\x44\xd8\x2a\xad\xbe\
-\x5c\x66\x42\xcd\x87\x3c\xea\x71\xdd\x89\x51\x4e\xbd\x1a\xd2\x77\
-\x35\xdf\x9c\xdc\x54\xff\xf4\x43\xdc\x54\xfd\xf8\xea\x9a\x27\xfe\
-\x51\xf7\xfb\x22\x1f\x91\xdf\x53\x67\x5e\xc4\x29\xf5\xfb\x33\x90\
-\x5a\x43\x22\x9f\x8e\x89\x31\x00\xf9\xc4\x28\x8f\xfe\x5a\x0d\x8f\
-\xfa\x4b\xe7\xdc\x39\x44\x53\x66\x1e\x44\xd8\x2b\xbd\xd4\x5f\x41\
-\x48\x5b\x62\xf4\x47\x3e\x31\xca\xa3\xcb\x55\xea\x57\xdf\xfd\xd9\
-\x22\x35\xf7\x3c\x0b\x46\x5d\x62\x2b\x9f\x98\x5f\x9c\xd3\x0f\x31\
-\xfa\x23\x9f\x18\xe5\xd1\xdf\xa1\xfe\x6e\x8d\x6a\x17\x88\xd8\xaf\
-\x51\x3f\xb9\xee\x44\x57\x58\x58\x71\x1d\x88\x23\xfb\x85\xea\x24\
-\x8a\x7e\x88\xd1\x1f\xf9\xc4\x28\x8f\x41\x0e\xeb\xbf\xdb\xf5\x7f\
-\xcb\xdb\xe2\x8a\x2c\x9f\x73\x5d\x89\xd0\x1e\xbc\x0b\x8b\xfb\x10\
-\xa8\xf4\x72\xb7\xab\x4b\x99\x08\x50\xe9\xd5\x3d\xae\x67\xa9\x35\
-\x2b\xbd\x9e\xd7\xba\xb5\xd6\xac\x74\xdd\x62\xbb\x12\xad\x59\xe9\
-\x6d\x45\xd5\x9a\x95\xde\x56\xbc\x96\x5f\xad\x59\xe9\x96\xdd\xaa\
-\x72\xad\x59\xe9\x55\xfd\xad\x6b\xa7\x35\x2b\xbd\xae\xdf\x9a\xbd\
-\xd6\xac\x74\x4d\x7f\xdb\x7c\xad\x59\xe9\x6d\xc5\xd5\x9a\x95\xde\
-\x56\xbc\x96\x5f\xad\x59\xe9\x65\x76\x83\x1b\x08\xff\x3d\x08\xc4\
-\x03\x45\x11\x4b\x05\x2a\x4f\x69\x06\x54\x1e\xe8\xf8\x80\x1e\x75\
-\x94\x56\x1e\x7d\x4d\x41\xda\xc5\x38\x9c\x6b\x8c\x92\xbf\x7d\xaa\
-\x5f\x6b\x61\xae\xca\x53\xba\x26\x67\xdd\xc4\x43\xfd\xc3\xfd\xc6\
-\xbe\x11\x0f\xeb\xdf\x75\x02\x7d\xe0\x79\x4f\x9c\xb2\xdf\x60\x4d\
-\x3d\xa5\xb9\xff\x22\xaa\x8e\xd2\xd4\x53\x9e\xd2\x53\xe5\xd4\x23\
-\xaa\x0f\xd0\x71\x1c\xd6\xbf\xeb\xc8\x9c\xf5\x1f\xfc\x0b\x0b\x8d\
-\xe6\xd3\x4a\xb8\x22\x5d\x7b\x8a\x1d\xe5\xb4\xe9\xd2\xe8\xec\x95\
-\x17\xfd\x53\x6f\x13\x08\xdf\xd8\xf5\x44\x8f\x6b\x87\xcc\xee\x43\
-\xb0\x96\x9e\x21\x44\xcc\x2f\xd6\xd7\x92\xc3\x95\xfa\x27\x4d\x8c\
-\xf6\x12\x7a\x12\x49\x3f\xc4\x91\xbf\x43\xfd\x87\xf5\x97\x0d\x8f\
-\x0b\x81\x4c\x7d\x8f\x71\xef\x94\x36\x5c\xdc\x4f\xd0\x25\x0f\xfa\
-\xa4\x81\x18\x51\x4e\x9e\x0b\xb3\x5c\x79\xd1\x9e\x7a\x53\x91\xb9\
-\x13\x47\xfe\x0e\xfb\xff\xc8\xf7\xff\xe0\x45\x74\x2c\x24\x37\x47\
-\x69\x51\xb9\x70\xc4\xd1\x02\x96\x8c\x02\x4f\xfd\x93\x26\xc2\x2f\
-\x7d\x06\xb3\xf6\x54\xcf\x96\xbc\xc1\x33\xf4\xff\x8e\x6b\x3b\xd9\
-\xaf\xfa\xd9\x0b\xf6\x67\x94\x7f\x38\x61\xfa\xab\xc5\xa1\x7e\x6f\
-\xd5\x61\xfd\xbb\x1d\xc3\x3e\x8c\xf6\x4f\x81\x51\xdd\x6b\xa6\xcb\
-\xf3\x9e\xd8\xdc\x9f\x0d\xff\x8c\x45\x8c\xe7\x7f\xd3\xff\x61\xff\
-\x0f\x6e\x18\xbb\x38\xff\x07\xcf\x40\xe2\x7a\x73\x61\x89\x51\x8e\
-\xf9\x32\x59\xf7\x3c\xd8\x94\x70\x71\xc7\xc0\x4e\xe6\x85\xde\x19\
-\xc3\x03\x7d\x11\x87\xd2\xe5\x33\xba\x25\x2e\xd7\x9e\x26\x65\x1e\
-\xc4\x92\xd5\x32\x59\x5f\xeb\x1a\xf5\x2f\xf3\xcf\x5a\x27\xba\x2f\
-\xa5\xbf\x94\xc7\xd8\xc4\x92\xf2\x32\xd9\xa1\x7e\xeb\x18\xf7\x3c\
-\x9a\x47\xba\x72\x45\x67\x2f\x89\x6e\x52\xd1\x85\xec\xb0\xfe\x8b\
-\x96\x7a\xaf\xa4\x27\x98\xaf\x3b\xb8\x0e\xc4\x92\xbf\x65\xb2\xb9\
-\x0b\x44\x5f\x44\xc4\x53\x3a\xc6\xdf\x87\xf5\x1f\xbc\x06\x12\x13\
-\x5c\x7b\xce\xcd\x0f\xb4\x87\x4f\x33\x3a\xdd\xb1\xd7\x0e\x03\x07\
-\x6c\x34\x71\x23\x4e\xd7\x75\xa2\x45\xe6\xba\xd9\x07\x15\xd5\xc2\
-\xa8\x8e\xd2\xd4\x67\xad\x40\xa5\x29\xdf\x39\x6a\xd2\xc8\x11\x09\
-\x65\x54\x51\x2d\x4f\xd5\x51\x9a\xfa\x5a\xb3\xd2\x94\xef\x1c\x35\
-\x69\xa3\x7d\x9a\x51\x45\xb5\x3c\x55\x47\x69\xea\x6b\xcd\x4a\x53\
-\xbe\x73\xd4\xa4\x8d\xf6\x69\x46\x15\xd5\xf2\x54\x1d\xa5\xa9\xaf\
-\x35\x2b\x4d\xf9\xce\x51\x93\x36\xda\xa7\x19\x55\x54\xcb\x53\x75\
-\x94\xa6\xbe\xd6\xac\x34\xe5\x47\x81\x7e\x03\x41\xf0\x29\x09\xa8\
-\x8e\xd2\x47\x91\xe8\x94\x18\x9a\x93\xd2\x35\x5b\xd5\x51\x7a\x53\
-\xfa\x35\x3f\x53\xf9\x7c\x66\x01\x54\xba\x66\xaf\x35\x28\xbd\x2b\
-\xfd\x5a\xdc\xa9\x7c\xad\x59\xe9\x9a\xbd\xd6\xac\xf4\xae\xf4\x6b\
-\x71\xa7\xf2\xb5\x66\xa5\x6b\xf6\x5a\xb3\xd2\xbb\xd2\xaf\xc5\x9d\
-\xca\xd7\x9a\x95\xae\xd9\x6b\xcd\x4a\xef\x4a\xbf\x16\x77\x2a\x5f\
-\x6b\x56\xba\x66\xaf\x35\x2b\xbd\x4d\xfd\x9d\xfe\x1e\x08\x8a\xe4\
-\xff\x3d\x6b\x45\x4e\xe5\xab\x2f\xfe\x8f\x16\xb6\x4a\xab\x0e\x65\
-\xe4\x61\x4e\x1a\x88\xc1\xdc\xe8\x23\x62\x4b\x7f\xae\xbc\x8b\x5a\
-\x3f\xc6\x7c\x5a\xfe\x59\x03\x3d\xb6\xf4\x5b\xf2\x43\xfd\x5d\x27\
-\xd9\x87\x56\xbf\xe6\xca\xb9\x4e\x35\x3c\xac\xff\xe2\x1c\x45\x8f\
-\x5a\xfd\x85\x0e\xd7\x6a\x8a\x7e\xcb\x1f\x7d\x11\x5b\xfa\x73\xe5\
-\xc8\x71\xd9\xd8\xc7\xf5\xf7\xdf\x03\x41\xa1\x18\xad\x04\x3b\x2d\
-\x39\xda\x6d\xd1\x6d\xf3\xed\x91\x34\xfd\xe1\xcf\x66\xf2\x60\x45\
-\xba\x97\x93\x97\x5d\xc6\xf8\x99\x3d\x19\xe8\x97\x18\x0d\xa3\x7f\
-\xe8\x91\x07\x5d\xd2\x40\x8c\x28\xef\xb8\x72\x6c\xd5\xd7\x92\xe7\
-\x18\xf4\x38\x3b\x3e\x0d\x33\xb2\x6e\x62\x10\x37\xeb\x9b\x1d\xbf\
-\x55\x5f\x4b\x6e\x09\x6a\xae\xb3\xe3\x87\x02\xe9\x8b\x18\xc4\x87\
-\xfa\xf3\x7a\xd4\xf6\xf7\xec\xfe\xb7\xd6\xb7\x25\x3f\xac\xff\x71\
-\xbf\xff\x4f\xd1\x93\x8d\x34\x50\xe9\x78\x22\x4e\x9e\xe7\x1b\x93\
-\xff\xf3\x4f\xe9\x8a\x83\x75\x63\xf2\xc4\x00\x2a\xcd\x70\xea\x5f\
-\xe9\xa9\x72\xea\x4d\x46\xad\x59\xe9\x8a\x03\xcd\x49\x69\xaa\x2b\
-\x4f\x69\xca\xb5\x66\xa5\x29\x57\x1b\xa5\xa7\xca\xa9\x37\x19\xb5\
-\x66\xa5\x2b\x0e\x34\x27\xa5\xa9\xae\x3c\xa5\x29\xd7\x9a\x95\xa6\
-\x5c\x6d\x94\x9e\x2a\xa7\xde\x64\xd4\x9a\x95\xae\x38\xd0\x9c\x94\
-\xa6\xba\xf2\x94\xa6\x5c\x6b\x06\x7d\xb5\xab\xa6\x74\xbb\xdb\x52\
-\x3a\x3c\xa7\x4b\xf6\xca\x53\x7a\xe1\x61\x26\xa5\x35\x2b\x5d\x71\
-\xa3\x31\x95\xa6\xba\xf2\x94\xa6\x3c\xd6\x0f\x3e\x79\xa0\xd5\x46\
-\x69\xc8\x30\x94\xa7\x74\x27\x5d\xe1\xa8\x35\x2b\x5d\x71\xa5\x31\
-\x95\xa6\xba\xf2\x94\xa6\x9c\xb5\x02\x95\xa6\x5c\x6d\x94\x9e\x2a\
-\xa7\x9e\xe2\x5a\x2f\xa2\x6b\x12\x4a\x6b\x00\xa5\xb5\x87\x4a\xab\
-\xce\x3a\xb4\xe6\xa0\xf4\x3a\x3e\x97\xd9\x6a\x0c\xa5\x6b\x36\x5a\
-\xb3\xd2\x35\xfd\xb9\x7c\xcd\x41\xe9\xb9\x7e\xa6\xea\x6b\x0c\xa5\
-\x6b\xf6\x5a\xb3\xd2\x35\xfd\xb9\x7c\xcd\x41\xe9\xb9\x7e\xa6\xea\
-\x6b\x0c\xa5\x6b\xf6\x5a\xb3\xd2\x35\xfd\xb9\x7c\xcd\x01\xf4\xf5\
-\xaf\x9b\xd2\x4f\x3e\x36\xa5\x9f\x7a\x5c\x4a\x57\xbd\xca\x5c\x6f\
-\x6d\xfd\x18\x0f\x16\xe4\x95\xac\xb5\x66\xa5\x4b\xba\xab\xf0\x18\
-\x1b\xa8\xf4\x2a\xbe\xa6\xd8\x68\x0c\xa5\x6b\xb6\x5a\xb3\xd2\x35\
-\xfd\xb9\x7c\xcd\x41\xe9\xb9\x7e\xa6\xea\x23\xc6\xd2\xd7\x40\xa2\
-\x23\xdc\xd5\x60\xd4\xdf\xdd\xb2\x82\xb1\x7d\x50\xc6\xe4\xa3\xbe\
-\x3f\x13\x81\x32\xbb\x47\x3a\x3b\x88\xf6\xd9\xed\x24\x50\x5b\xe6\
-\x17\x0d\x55\x07\xb2\x98\x5f\x94\x47\xfb\xa8\xcf\xba\x89\xd1\x3e\
-\xea\xaf\x5b\x7f\xf4\xd7\x8c\x17\x0a\x68\xe9\x47\x79\x30\x1f\xf5\
-\x8b\x75\x13\xa3\x7d\xcc\xf7\x50\x3f\x36\x9d\x3d\x56\xdc\xff\xb1\
-\x9f\xad\x7e\x9f\x75\x8d\x6e\x05\xbf\xf1\x36\x29\xdd\xf2\xe6\x29\
-\x3d\xfb\x79\x29\x3d\xef\x45\x29\x5d\x7a\x69\xc7\x6f\xf9\xeb\xb4\
-\x16\xc7\xa8\xcf\x75\x27\xb6\xf2\x39\xac\xbf\xf5\xf2\x08\xd7\x7f\
-\xb1\x72\x1d\xd5\x5a\x9f\x28\x8f\xf6\xa5\xf5\x1f\x7e\x0e\x84\x3b\
-\x21\x23\x6b\x25\x7b\x14\x20\x28\x78\x00\xf4\x28\x1b\x44\xfd\x98\
-\x00\xce\x23\xda\x30\x59\x9e\x5b\x9c\xaf\x83\x31\x3e\x7c\x81\x57\
-\x1d\x2c\x34\x63\x28\xaf\xbf\x79\xf6\x3e\x82\x02\x6b\xd9\x54\xfd\
-\xb1\x5f\xc8\x9b\xbe\xab\x35\x88\xe0\x50\x7f\xde\x5f\xb2\xe6\xfd\
-\xda\x49\x9f\x7a\xf2\x04\x5b\xff\x6b\x9e\xd5\x57\x96\x4e\x3d\x35\
-\xa5\x87\x3f\x34\xa5\xbb\xdd\x25\xa5\xbf\x7c\xaa\xfd\x3e\xc4\xbb\
-\x17\xb2\x9e\x3a\xc1\xea\x3f\xec\xff\xed\xef\xff\x79\x2f\xa2\xdb\
-\x06\xf3\x13\x90\x1b\xcd\xef\x00\xb6\xfd\xf2\x09\xca\xf3\x94\x88\
-\x8d\xb9\xf4\x84\x0d\xf6\xbe\x91\xd5\xd8\x19\xd3\x0f\x8c\x45\x84\
-\xa5\xd2\xf1\x82\x0c\x19\x79\xd0\x25\xcd\x8b\x74\x94\xc7\x37\x05\
-\xc4\xbf\xa8\x98\x3a\x31\xc6\xc7\x7c\x30\xa0\x88\x5e\x0e\x0c\x16\
-\x1a\xcc\x9d\xb8\x90\x2c\x28\x95\x91\x26\x42\x4b\xe9\x56\x7d\x2d\
-\xf9\xa1\xfe\xdc\xcf\x23\xda\xff\x5c\x3b\xe2\x62\xd5\x17\x94\xca\
-\x48\x13\xf9\x0c\x64\xa1\x9d\x12\x78\x3f\xff\xd3\xdd\x6f\x42\x3c\
-\xf5\x19\x29\x7d\xe6\xb3\x8b\x3d\x72\x58\xff\xae\x17\x87\xf3\xbf\
-\xdb\x31\xd8\x47\xdc\x13\xce\x29\x5c\xff\x07\x5f\x65\xc2\x8d\x47\
-\x84\x91\xd2\xbc\xd6\x55\xce\x9f\xc5\xc5\xb0\xa2\x40\x5f\xc4\xe8\
-\xdf\x93\xdc\xe0\x81\xc5\x57\x37\x44\xa8\x8f\x79\x11\x63\x7e\x47\
-\x5e\x7f\x33\xe0\xf2\x66\x1d\xea\x6f\x5c\x10\x4e\xf0\xf5\xbf\x66\
-\xfe\x17\x56\x69\x97\xdc\xf9\x9b\xec\x07\x85\xbe\xa1\xfb\x85\xba\
-\x17\xbd\x34\xa5\xaf\x7d\x6d\x71\xae\x1f\xf6\xff\xa2\x63\xda\x8b\
-\xe6\xe9\xd8\x50\xa0\x2f\x22\xa2\x28\xbd\x88\x9a\xa9\x86\xbf\x91\
-\x7e\x60\x1c\xc5\xf9\x3f\x78\x17\x56\x88\x3f\x9a\xb2\x58\x60\xe9\
-\x81\xbf\xa4\x5d\x07\x7f\x51\x83\x86\x87\x8c\x4e\x77\x53\x70\x37\
-\x3e\x4a\xfe\x9b\xf9\x5a\x16\xd4\x99\x92\x10\x75\x81\xa5\xc7\xa6\
-\xeb\x8f\xf1\x90\x23\x79\x4e\xe7\xa4\x51\xfb\xa1\xfe\xae\x19\xec\
-\x83\xf7\x27\x4f\x4a\x6b\xc5\x3e\x12\x73\x2b\x97\x02\x75\xab\xfe\
-\x2c\x9e\xeb\x20\x2e\x68\x4f\xa2\x43\xa7\x3b\xf6\xd2\x18\x2a\x8c\
-\xf1\xdc\x1d\x1d\x89\x2f\xb0\xc8\x26\x9e\x71\xc5\x94\x2e\x7f\x79\
-\xf5\x36\xa6\x4f\x3b\xcd\x7e\x99\xee\x11\x29\xfd\xfb\x5f\x48\xe9\
-\x26\x37\x1a\xcb\x23\x27\xe6\x13\xfb\xe0\x35\x33\x19\x43\xcf\x25\
-\xa3\xd3\xe6\x90\x18\x7d\x97\xe6\x31\x1e\x74\xc8\x73\x3a\x1b\xc1\
-\x27\xfd\x12\x5d\x9e\x27\x31\x4f\xce\x55\x27\xbb\x5a\x0a\x8c\x4d\
-\xfb\x88\x27\x63\xfd\x83\x77\x61\x8d\x1a\x64\xed\xf4\x26\x01\x73\
-\x6b\x89\x98\xf2\x2f\x7b\xa0\xd2\x59\xd5\xff\x3b\xe3\x7a\xd0\xcd\
-\x4c\x22\xa6\xf4\x05\x54\x3a\xab\xce\x02\xfa\x25\xce\x32\xce\xca\
-\xfb\x56\x3f\x6b\x01\x2a\xcd\xda\x94\xa7\x34\xe5\x73\xf1\x50\x7f\
-\xd7\x31\xdf\xf3\xb6\x21\x7d\x5f\x12\x73\x33\xb9\x4f\x31\xd5\x3d\
-\xaf\x74\x56\x1d\xac\x59\x69\x7d\xe8\xcb\xe3\x94\xfc\x67\x1e\x6c\
-\x4b\xf6\xca\x53\x1a\x66\xfa\xfa\x47\x76\x53\x85\xeb\x5e\x27\xa5\
-\x5f\xfc\xb9\x94\x7e\xe8\xfb\x52\xfa\xfa\xd3\xad\x6e\xd4\x8c\x87\
-\x59\xf4\x98\xad\xc1\xe3\xd0\x9a\x95\xee\xe5\x99\xa8\xe5\x4f\x5f\
-\x1e\x27\xeb\x92\x87\xa9\xd6\xa4\x74\x56\x6d\xca\xa9\x37\x15\x51\
-\x2b\xc6\xa1\x7e\x59\x77\xeb\x49\x75\x7d\x6c\x51\x8e\x61\x15\xd8\
-\x38\x6c\x02\xd0\xdc\x0c\xa4\x29\xf7\x15\x83\xb7\xbc\x9a\x23\xb9\
-\xb7\x7f\xfa\xa1\x19\x6f\xba\x2b\xd7\x6c\xe6\xc3\x5a\x25\xff\xbd\
-\xae\x1f\x79\x4a\xbf\x7b\x1a\x3c\x1b\xb3\xfb\x77\xa8\xbf\xdb\xeb\
-\x27\xc1\xfa\x9f\x75\xf5\x6e\x8f\x4c\x3d\x62\x2f\xdd\xfd\xae\x29\
-\xdd\xde\x3e\x37\xf2\x8c\xbf\x4b\xe9\xe5\xaf\xea\xfe\xad\xc5\x3d\
-\xe6\x7e\xc2\x7e\x6c\x9e\x6f\x8d\xe0\xf4\x0d\xc4\x18\xf9\x0b\xf1\
-\x0e\xfb\xdf\x9a\xc4\x9e\x80\x34\x9a\x3d\x2b\xf6\x0f\x4c\x1d\x59\
-\x5f\xaf\xdf\xeb\x5e\xff\x4e\x41\x3e\xee\x50\x9c\x23\x29\x3c\x30\
-\x88\x4a\x53\xae\x05\x70\x13\x10\xa1\x4f\x1a\xa8\x34\x64\x18\x39\
-\x84\xa3\xd2\x9d\x74\xde\x91\x79\x12\x61\xad\x31\x3d\x87\xcc\x43\
-\xcd\xac\x9b\xd8\x37\xd2\x18\xac\x0f\x3e\xd4\x1f\x69\xca\xe1\x13\
-\xb4\xfb\x76\x47\x8b\x98\xb0\x8d\xf1\x95\x07\x5a\x6b\x56\x1a\x32\
-\x1f\xca\xcc\x71\x60\xc4\x78\x8c\xcd\x7c\x60\x03\x9a\x23\xc6\x47\
-\x8a\x6e\x0b\x84\x92\x1d\x88\x87\xfa\x73\xef\xac\x21\xb5\x7e\xb2\
-\xb7\x94\xa3\x97\xa0\xb9\x1e\xde\x52\x6f\x28\xa8\x8e\x4f\xd4\xb5\
-\x70\xa1\x1d\xb8\x54\x40\xa5\x29\x1f\x30\x73\x9c\xa9\xeb\x7f\x96\
-\xbc\x03\xab\xf7\x37\x81\x38\xdd\x9e\x81\xfc\xc0\xa3\x53\xfa\xa5\
-\x9f\xef\x3e\x47\xc2\x9a\x61\x4a\xfa\x78\xa8\x1f\xf9\x6a\xcf\x7d\
-\x8d\x32\x0f\x4b\xe4\xcb\x64\x07\xe2\x61\xff\xe7\xf5\xb5\x86\x70\
-\x7d\xd1\x43\xae\xb9\xd2\x94\xa3\xa7\x83\x17\xd1\xa1\xd4\x6f\x5a\
-\x23\xa1\x00\x65\x2e\x04\x36\x39\x1a\xde\x6f\xf6\xcc\x28\x05\x31\
-\xb5\x3e\x78\x4d\xbe\x70\x04\x6d\x1b\x74\x0e\xdc\xc0\x60\x5c\x62\
-\xc9\x25\x6b\xe9\x65\xc2\xd8\x79\xfd\xb9\xbf\xec\x13\xeb\x20\x22\
-\x67\xa5\xfb\x1a\x32\x41\x19\x31\xca\x31\x97\x72\x3b\xb1\x30\x0e\
-\xf5\x77\xfd\xdd\xd9\xfe\x5f\x63\xfd\x97\xbd\x80\x5e\xda\x07\x91\
-\x77\xa3\x1b\xa6\xf4\xcb\xf6\xda\xc8\x4b\x5e\x96\xd2\x33\x9f\x95\
-\xd2\x25\x5f\xec\xf6\x0a\x4f\x51\xe8\xfb\xbe\x32\x86\xee\xaf\x12\
-\x5d\xe2\xc1\xbe\xdf\x7c\xdc\x73\x74\xce\xf3\x7f\x8d\xfa\xdd\x7d\
-\xf6\xab\xf1\x3d\xae\x1c\x18\xba\x67\x09\xe3\xb0\xff\xbb\xb5\x5d\
-\xb6\xff\x87\x9f\x03\xe9\xbb\xd8\x11\x6c\xfc\x00\x65\xc3\x78\x83\
-\xed\xdd\x1b\x0c\x10\xcc\xe7\x4f\xb9\x78\xc4\xf9\x1e\x06\x16\x70\
-\xc3\x3d\x09\x01\x69\xee\xcf\x81\x72\x61\x32\xa8\xdb\xe4\x3e\x3f\
-\xea\xfa\xd7\xe8\xc5\xa1\xfe\xc5\x9a\x63\x79\x4f\xa6\xf5\x9f\xf3\
-\x1a\x48\x61\xeb\x3b\xeb\x14\x7b\x85\xf4\x7e\xf7\x4e\xe9\x4e\x77\
-\x48\xe9\xa9\x7f\x93\xd2\xab\x5f\xdb\x35\x91\xe7\xc5\x91\x9c\xff\
-\x87\xfd\x5f\x5b\x9e\x2a\xff\x0a\xf6\xe6\x89\x87\x3d\x24\xa5\xdb\
-\xd8\xbb\xec\xae\x72\xa5\x94\x3e\x7e\x71\x4a\x6f\x7a\x4b\x4a\xcf\
-\x7a\x6e\x4a\x5f\xfa\x72\x77\x1e\x54\x8d\x45\xc0\x75\x1e\x60\xb8\
-\xfe\x2d\xbd\x81\x88\x2f\x27\x79\xa3\x20\xfa\x05\x0a\x0e\xa3\x62\
-\x9e\xc7\x13\x16\x89\xf8\xa6\xcb\x06\xa4\x07\xfe\xcc\xb6\xe6\xaf\
-\x12\xc6\xd9\xb0\x89\xf1\x30\xc7\x20\x46\xda\x85\x33\x0e\xcc\x93\
-\xe8\x31\xcd\x79\x2d\xdf\x98\xcf\xec\xfa\xb5\x28\xd4\x81\x58\xc6\
-\x1b\xc4\x37\x3e\xe3\xc7\x78\x98\x63\x10\x23\xed\xc2\x19\x07\xc6\
-\x25\x7a\x7a\xc8\xa9\xe2\x23\xe6\xc3\xdc\x81\x18\xad\x7a\xdc\x31\
-\x9d\x4c\xd0\xa7\x2a\x10\x23\xa2\xf2\x5c\x61\xe6\x81\x75\x13\xf7\
-\xb5\xfe\x63\x97\xed\xbe\x07\x6b\x66\x79\x55\xf5\x33\xce\x48\xe9\
-\xb1\x3f\x98\xd2\x3d\xef\x96\xd2\x5f\xd8\x87\x10\x2f\xf8\x68\xa7\
-\xba\xaf\xf5\xc7\x75\xe7\x1c\x59\x2b\x5d\x2d\xb8\x22\xe0\xba\x13\
-\xf7\xb1\x7e\xfc\xe1\xf0\x73\x3f\x39\xfc\xea\x9a\x6b\x5d\x33\x25\
-\x3c\xbe\xf9\x4e\x29\xfd\xda\x13\xba\xcf\xfe\x54\x4a\x5c\xca\x66\
-\xdd\x44\xd4\xef\xef\xc2\xc2\x09\x5d\x7a\xc0\x1b\x4f\x76\xa5\xa9\
-\x8b\xc5\x00\x0d\x2c\x3d\xbc\xc1\xd0\xc9\x0f\x83\xea\xc5\x06\x32\
-\x2e\x2e\x11\xbc\x39\x83\xb9\x32\xbf\x88\xf0\x45\x1d\xa5\xa3\x1e\
-\xe7\xaa\xa3\x34\xe5\xc8\x13\x74\xa9\x76\x97\x99\x9c\x88\x1e\x60\
-\x10\xbb\xd9\xf0\x08\x5d\x0c\xfa\x03\xe1\xbc\x9e\x91\x85\xae\x35\
-\x3e\x20\x17\x0c\xe6\x17\x91\x32\x57\xca\x7a\xe4\x45\x5d\xf5\x55\
-\xd3\x47\x5a\xd0\x63\x7a\x11\x91\x8e\xeb\x40\x2f\x3b\x21\xe6\xe9\
-\x00\xa0\x8b\x41\x3f\x20\x9c\xd7\x33\xb2\xd0\xb5\xc6\x07\xcd\x79\
-\x95\x7a\xa2\x0d\x22\xd0\xa7\xd2\xd4\x43\x5a\xa0\x99\x5e\xc4\x5d\
-\xd5\x7f\xf5\xab\xd9\x89\x3d\x78\x7f\x25\xb2\x5f\x7f\xdc\xe2\x66\
-\x29\xfd\x87\x5f\x4a\xe9\x11\x0f\x4b\xe9\x72\x97\xcb\x6b\xbb\x87\
-\xf5\x73\x7d\x22\xa2\x03\xe0\x71\x90\x8e\x7a\x9c\x43\x8f\x3a\x4a\
-\x53\xbe\x8f\xeb\xff\x83\xff\x6c\x78\xf3\x60\xad\x40\x7c\x1f\xda\
-\xe3\x7e\x78\xc1\x61\x6d\xac\x27\x22\x34\xa9\xa3\x34\xf5\x50\xff\
-\xd2\xef\xc2\xa2\x31\x11\x77\x1e\xd0\xfd\x1d\x28\xd3\x35\xb9\x5f\
-\x35\xbc\xcb\x08\xdf\xd9\x2d\xb3\xef\xb4\x56\x3c\x4a\x2e\x7d\x7e\
-\x88\x69\x0f\xee\x19\xcf\x33\xd7\x80\x28\xad\x7a\x58\x17\xb1\xa5\
-\x1f\xe5\x9b\xa8\x9f\xb9\x23\xdf\x7f\xca\xc5\x38\x3a\x63\xc1\xc3\
-\x34\xc6\x87\xed\xa1\xfe\x93\x6f\xfd\xaf\xb5\xe2\x0b\xe8\xd8\x43\
-\xad\x81\x67\x37\x0f\xfa\xb6\xee\xaf\xd9\xa7\x3c\xbd\xfb\xd7\x48\
-\xed\xfc\x38\xec\x7f\xeb\xa6\x9c\x80\xa3\xf3\x53\xae\x59\xb5\xbe\
-\xcf\x39\xff\xef\x70\xbb\x94\x6e\x76\x93\x9a\xa7\x8e\x8f\xef\x44\
-\xc3\xb7\x11\x7c\xf4\xc2\xc2\xf5\x22\xe4\xc3\x75\x25\x96\xf2\x1f\
-\x3c\x03\x41\x08\x2a\x97\xd2\xa0\x0c\xa8\x34\x75\x95\xa7\xf4\x54\
-\x39\xf5\x56\x45\x8d\xe9\x34\xf3\xc4\x2a\xe0\x81\x41\x04\x99\x69\
-\xa0\xd2\xae\x57\x38\xa8\x8e\xd2\x54\x55\x9e\xd2\x53\xe5\xd4\x5b\
-\x15\x35\xa6\xd3\xac\x0b\x75\xe6\x5a\x7b\x04\x2b\xf3\x80\x4a\xd7\
-\xe2\xab\x8e\xd2\xd4\x57\x9e\xd2\x53\xe5\xd4\x5b\x15\x35\xa6\xd3\
-\xac\x0b\x75\xe6\x5a\x7b\x04\x2b\xf3\x80\x4a\xd7\xe2\xab\x8e\xd2\
-\xd4\x57\x9e\xd2\x53\xe5\xd4\x5b\x15\x19\xb3\xf4\x15\x26\xab\xfa\
-\xac\xd9\x5d\xe5\xca\x29\xdd\xff\x3e\xc3\xbf\x76\x19\x1f\xa8\x34\
-\x7d\x28\x4f\x69\xca\xd7\x45\xf5\xe9\x34\xf3\xc0\x3a\xe3\x81\x41\
-\x04\x99\x69\xa0\xd2\xae\x57\x38\xa8\x8e\xd2\x54\x55\x9e\xd2\x53\
-\xe5\xd4\x5b\x15\xef\x73\x8f\x69\x96\xbc\xc9\x68\x8e\x4a\xd7\xbc\
-\xa8\x0e\xe9\x63\xe8\x21\x6e\x92\xa5\x01\x25\xde\x75\x20\x27\x0d\
-\x3c\x1e\x07\x6b\x05\x62\xf0\x8f\x83\x5a\x39\xfb\x56\xff\x3f\xe5\
-\x37\x2c\x00\x3d\x7f\x4b\x9c\xbc\x8e\xb3\xfc\x78\xa8\x7f\xb1\xe6\
-\xde\x3f\x3b\xb0\x27\xa5\xce\x1d\xaf\xeb\xbf\x89\x17\xd0\x4b\xfd\
-\x00\x0f\x3d\x39\xc7\x5e\x90\xc5\x37\xfb\x7e\xe0\xdc\x9a\xd6\x76\
-\xf8\xdc\xeb\x87\xfd\xdf\xf5\xd7\xaf\xc7\xf9\x9a\x80\x7f\x5b\x7e\
-\xc3\x2d\xa7\xf5\x3d\xbe\xa3\x6e\x9d\xeb\xdf\xb1\x9a\x31\x52\xe1\
-\x8d\x82\xa8\x3c\xd0\x73\x4f\xb0\xb9\xfa\x88\x31\x67\xb4\xfc\xb3\
-\x56\x22\x7c\x2b\x1d\x63\xb1\x6e\xa2\xeb\x8b\x41\x2b\x5e\xf4\x37\
-\x57\x3f\xda\x33\x0f\xe2\xdc\x7c\x98\x3a\xd1\xed\x63\x10\x99\x33\
-\x0e\x71\x6e\x3c\x71\xe5\xe4\xa1\xfe\xee\x9c\x42\x1f\x30\xd0\x57\
-\xf6\xa4\xe3\x2c\x3f\x72\x1d\x88\xf4\x41\x2b\xfa\xda\xc6\x33\x10\
-\x7c\x05\xfc\xab\x5f\x97\xd2\x73\x5e\xd0\xfd\xfb\x03\x31\x19\x6f\
-\x6a\x3d\x73\xf5\x59\x17\x91\x75\x13\xc1\x57\xba\xe5\x9f\xfb\x9e\
-\xe8\xf6\x74\x5e\x40\xfa\x26\xba\xbe\x18\xb7\xe2\x45\x97\x73\xf5\
-\xa3\x3d\xf3\x20\x6a\x3e\xf7\xba\xfb\xb0\x17\xd1\x56\xe7\xfe\xef\
-\xab\xcc\x90\x72\x54\xc5\x69\xc6\x21\x82\xa9\x34\xea\x59\xfa\x1a\
-\x48\xf4\x08\x63\x36\x41\x9d\xd1\x29\x65\x40\xca\xc9\xeb\x38\xcb\
-\x8f\xd4\xa5\xfd\x72\xed\xa1\xd4\x6d\x72\x7e\x83\xbb\x82\x74\x28\
-\xfa\x8f\xf5\x44\xf9\x30\xc2\xf8\x84\x67\xdd\xc4\x68\x1f\xfd\x47\
-\x7f\x71\x1e\xed\xa3\x3c\xfa\x1b\xe9\x1f\xea\xf7\xfd\x79\xb2\xaf\
-\xff\x26\x9f\x81\xe0\xaf\xd5\x97\xbe\xbc\xfb\x1d\x91\x4f\x7f\x66\
-\xb7\xe7\xff\x61\xff\x0f\xfb\xcf\xf3\x1f\x6f\x98\xb8\xc7\x5d\xe3\
-\xd5\xa2\x3c\xff\xf0\x05\x29\x9d\xff\xa1\x4e\xd6\xec\x67\x70\x11\
-\xf5\x31\x5f\xfe\x36\x5e\x5c\x7c\x71\x33\xc8\x17\x61\x24\x0c\xda\
-\x31\x38\xc7\x34\x06\x60\x81\xd4\x6f\xc9\xe1\x83\xba\xa0\xe7\x8e\
-\x90\x6e\x7f\xb3\x53\x9f\x4a\x37\xfd\x07\x87\x6e\x7b\x84\xf5\x8f\
-\xfa\x65\x09\x3b\x4f\x12\xcf\xf7\x6a\xe7\x84\x74\x0f\xf5\x5b\x73\
-\xd8\x43\xb6\xec\x44\x5f\xff\xd3\xbf\xbe\xfb\x3e\x2b\xd6\xbb\x2a\
-\x7e\xfe\xf3\x29\x3d\xf7\x45\x29\xbd\xe8\xec\xee\x43\x84\xee\xe7\
-\x88\xcf\x7f\xae\x1d\x10\xc3\xc3\xe3\xfc\xeb\xa6\x3d\x8f\xd3\x93\
-\x75\xff\xdf\xf1\xf6\x29\x5d\xd1\xbe\x3c\x73\xca\x38\xdb\x3e\x18\
-\x3a\x79\x84\x86\x96\xae\x7f\x7e\x03\xe9\x4f\x2a\x2c\x4e\xde\x24\
-\x1e\x84\x74\x6d\xc5\x42\x26\xf4\x43\x84\x78\x40\x67\xfd\x89\xee\
-\x82\xf7\xf6\x94\xb1\x88\xb0\x50\x3a\x7a\xa0\x8c\xd8\xdf\x1c\xd1\
-\x38\x8c\x1d\xd7\xcf\xbc\x88\x4c\xc9\x73\xe3\x41\x9a\x49\x3d\xa2\
-\xeb\x8b\x9c\x26\x44\xea\x11\x0f\xf5\xef\xd7\xfe\xe7\xba\x10\x7d\
-\x3d\xb9\x78\x44\x59\x5f\xe8\x6d\xea\xd9\xc7\x27\x3e\x65\xaf\x73\
-\xd8\x07\xcf\xdc\xbd\xc4\x18\x5c\xbd\x99\x43\x46\xe6\x49\x04\x7b\
-\x40\x53\x2f\xa3\xcb\x85\x8e\x24\x6d\x89\x45\x7d\xc9\x8d\x7a\x44\
-\xd7\x17\x79\xd3\xff\x9e\x5d\xff\x58\x07\xb1\x54\x3f\x2e\x55\x0f\
-\x79\x60\xac\xac\x3c\xc7\x87\x08\x5f\x89\x0f\x83\xe6\x41\xbf\xc4\
-\x55\xce\xff\xe1\xbb\xc5\xd9\x6c\xa0\xd2\x8c\xb8\x26\x32\x51\xa0\
-\xd2\x6b\xba\xdd\x9c\xb9\xd6\xac\xf4\x86\x22\x68\xcd\x4a\x6f\xc8\
-\xfd\xfa\x6e\xb4\x66\xa5\xd7\xf7\xec\x1e\xb4\x66\xa5\x37\xe4\x7e\
-\x7d\x37\x5a\xb3\xd2\xeb\x7b\x3e\xb2\xfa\xd7\xfd\x0a\x13\x96\x7a\
-\x3d\xfb\x86\x5e\x7c\xf0\xac\xbf\x0e\x50\xb0\x06\xea\x9a\x2b\xbd\
-\x86\xcb\xcd\x9a\xea\x9a\x2b\xbd\xa1\x28\x5a\xb3\xd2\xeb\xb8\xbf\
-\xcb\x1d\x53\xc2\xb7\x29\x4f\x19\xaf\x7b\x83\x3d\x9b\xbc\x64\x89\
-\xa6\xd6\xac\xf4\x12\x93\x79\xbf\x07\x92\x1d\xc1\xb7\x3f\xec\xd0\
-\x23\x08\xf0\x33\x2a\x0d\x1e\x1e\xb8\x5b\x12\xf9\x47\x3e\x11\xfa\
-\xeb\x0c\xc6\x25\xc2\x17\x53\x01\xfa\xc3\x0e\x3d\x82\x00\x3f\x63\
-\x37\x5b\x7e\xa4\xaa\xfb\xc8\xb6\x4e\xdb\x81\x7e\x88\xf0\x44\x1a\
-\x88\xc7\xdc\xfa\xa3\xbd\xfa\x54\x9a\xfe\x95\xe7\x34\x0e\x36\x3c\
-\x47\x20\xf2\x20\x82\xc8\x74\x47\xb5\x8f\xd9\x64\xb2\xbf\x98\xff\
-\xa1\xfe\xc5\x3e\xe0\xbe\x27\x96\xba\x1f\xfb\x07\x1d\xf2\x94\xf6\
-\x75\xcd\x8b\xb3\xa9\x67\x20\xf0\x8f\x9f\xc0\xbd\xac\xfc\x89\x79\
-\x58\x7f\x74\x25\x9f\x43\x40\x6b\x08\x7a\xa2\xfd\x5f\xb6\x3e\x9b\
-\xde\xff\xf8\xd7\xde\x77\xda\x57\x96\x4c\x1d\xf8\x5e\xb3\x65\xf9\
-\xb6\xfc\x94\xd6\x5f\xb6\x47\xd7\x08\x38\x61\x43\x22\x8e\x1a\x60\
-\x0c\xf0\xfc\xe0\x44\xa6\xc1\xb3\xc1\xff\x5d\x02\x95\xee\xa4\xe3\
-\x78\xe0\xeb\x02\x50\x6f\x12\x96\xe2\x67\x43\x88\x0a\xe2\x91\x5b\
-\xc6\x8e\x75\x73\x0e\x1f\xa0\x7b\x7f\x46\xb8\xdf\x9e\x21\x81\x40\
-\xba\xb0\x43\xa5\x19\x38\xc6\x03\x9f\x3c\xea\x2c\xc5\xec\x7f\x91\
-\x90\x69\x93\x27\x64\x25\xbd\x91\x6b\xc6\x06\x96\x1e\xf0\x03\x7e\
-\xef\xcf\x08\xd0\x0b\x46\xa6\xc1\xb3\xa1\x35\x2b\xdd\x49\x17\xb5\
-\x32\x16\xf8\xa0\x27\x0f\x0f\x6e\xda\x7d\x42\x99\xce\x0e\x1a\xe2\
-\x51\x18\xc6\x66\x3e\x11\xe1\x0f\xbc\x3e\x9c\x11\x1e\xa3\x67\x84\
-\xf8\x2e\xec\xfa\x70\x54\xf5\x4f\xb9\x81\xb0\xce\x51\x03\x02\x03\
-\x6f\x0d\xbd\xa7\xbd\xbb\x87\x7d\x40\x39\xfb\x5e\x7f\xb7\x20\x5d\
-\x21\xb9\xfd\x8b\xf5\x32\x36\x79\xa1\x54\x9f\xb2\x2f\xac\x37\xe2\
-\xbe\xd5\x7f\xcf\x6f\xe9\x3e\x14\x58\xaa\x25\xf2\xf0\xc2\xf9\xfb\
-\x3f\xb8\xf9\xfa\xe7\xbf\x06\xa2\x99\xe1\x64\xf7\xae\x76\x4c\x9e\
-\xfb\x44\x55\x2d\xd1\x38\xa9\x7c\x43\xe6\x55\xbd\xd5\x2d\x52\xc2\
-\x4f\x6d\xe2\x37\x09\xe6\x8e\xdf\xfe\x35\xfb\x54\xec\x5b\x53\x7a\
-\xfd\x1b\x53\x7a\xfb\x3b\xeb\xd6\xdc\x24\xd0\x20\x4d\x44\x2d\x4e\
-\xe7\x7c\xfc\x76\x0d\xba\x56\xd0\x86\xeb\x47\x6c\xf6\x84\x15\xf4\
-\xb9\x15\xf2\xa5\x2e\x2f\x4e\x25\x7b\xfa\x21\x2e\xf3\x77\xa8\xff\
-\xf8\x5f\xff\x65\x37\x10\xbc\x15\xf7\x95\xaf\x49\xe9\x23\xf6\x4e\
-\x9c\x47\x3f\x92\x3b\x62\x39\x3e\xec\x41\x29\xbd\xe2\x55\x29\x7d\
-\xf9\x2b\x05\xbd\xc3\xfe\xdf\xe8\xf5\xaf\x74\xfe\xd6\xce\xd7\x63\
-\x76\xe5\x7e\xd8\x83\x0b\x6b\x52\x61\xe1\x73\x3b\x18\x35\x7f\x2e\
-\x5c\xe1\xfa\xe7\x3f\x28\xd5\x5f\x20\x79\xa1\x24\x7a\x44\x77\xed\
-\x07\x06\x27\xba\x58\x75\x17\xaa\x1d\xc5\x8b\x6f\xe5\x82\x4c\x3f\
-\x37\xba\x41\xf7\xd3\x9a\x37\xbf\x69\x74\x30\x7d\x7e\xe6\x99\x29\
-\xe1\x93\x98\x78\xbc\xfb\xbd\xf6\xed\xa1\xcf\xb0\x3b\xee\xb9\x66\
-\x8f\xfc\x18\x3f\xba\xa3\x8c\x35\x44\x84\x3e\x79\x20\x33\x4d\x74\
-\xb1\xc8\x31\x1f\x8c\x89\xf5\x4f\xf6\x37\x70\x3e\x21\x9f\x18\x3f\
-\xd8\xf7\xbd\x61\x0d\x11\xa1\x4f\x1e\xc8\x4c\x13\x5d\x2c\x72\xcc\
-\x07\x23\xc6\x87\x2e\x79\x46\xd2\x0f\x11\xb6\x4a\x63\xbe\x6c\x50\
-\x97\x08\x5d\xa5\xfb\x58\x88\x59\x1a\x21\x9f\xbe\x56\xad\x49\x68\
-\xfa\x26\xc2\xa5\xd2\xa3\x10\xac\x95\xf1\x43\x3c\xda\x12\x9b\xfe\
-\x42\x00\xda\x11\xf1\x76\x4e\x3c\x6b\x88\x03\x6f\xc5\x3d\xfb\xe5\
-\xdd\x5b\x71\x3f\xf5\xe9\xee\x8f\x94\xbb\xdb\x17\x23\xe2\x75\x8e\
-\xd6\xc0\x79\xf5\x60\x7b\x91\xf6\x6f\xfe\x7e\x51\x2b\xe3\xc1\x56\
-\xe9\x91\xaf\x23\xae\x7f\x94\x4f\x8c\x1f\x13\x0c\xeb\x71\x3c\xad\
-\xff\x77\xd8\x8d\xfd\xca\xf6\x4d\xbb\x53\xc6\xf9\x1f\x4e\xe9\x35\
-\xf6\xfa\xc7\xe8\x3a\xb8\x81\xfa\x8f\xf5\x4d\x9b\x92\x49\x43\x27\
-\xe6\x73\x19\x63\x38\x0f\x07\x1b\xa4\xf3\x34\x5d\xc3\x36\xfb\xf7\
-\x7c\x57\xf7\x75\xd1\x9d\xc6\x66\x8e\xb8\x11\xfd\xfb\x5f\x4c\xe9\
-\x0d\x6f\xb2\x1b\xc9\x5f\xa7\xf4\xb1\x8f\x2f\xf1\xcb\x64\x96\xa8\
-\x4c\x15\x79\x7d\xa6\x4c\x97\xad\xfa\x5b\xfb\x3b\xc6\x1d\xf9\xcf\
-\xb1\x78\x7d\x8a\xfa\x7d\x22\x4c\x68\xa4\x90\x1d\x94\xf8\x2b\xf0\
-\x46\xf9\x19\xc3\x79\x39\x3e\xe9\x3c\x6d\x5e\xdf\x63\x0a\x6e\x2f\
-\x29\x37\xfb\xc7\x40\xc4\xe8\x10\xf3\x65\xb2\x92\xfe\x12\xde\x28\
-\x3f\x63\x38\x2f\xc7\x20\x9d\xa7\x1b\xaf\x1f\x37\x0f\x7c\x57\x15\
-\x07\x3e\xb7\xf1\xfc\x17\xa7\xf4\xe2\x97\x0e\x5f\x3c\xc5\x45\xff\
-\xaf\x9e\xd9\x7d\x6b\x2b\x75\x97\x21\x6e\x20\x6f\x38\x67\xf1\xf9\
-\x81\x9a\xae\xd7\x67\xc2\xbe\x3e\x23\x9c\x97\x19\xa4\xf3\x74\xe3\
-\xf5\x8f\xf2\x62\x20\xe2\x48\x41\x92\x2d\xc9\x66\xf2\xbc\x3e\x71\
-\xb9\xad\xf3\xff\x7a\xd7\xb5\x9b\xfa\x03\xa6\x27\xf7\x8c\xbf\x95\
-\xa4\xa2\xd9\xb2\xde\x44\xdd\xc2\x7c\xf0\x41\xc2\x28\x8f\x0d\xe9\
-\x76\x83\x69\xe5\xa0\xf1\x5f\x28\xbc\x90\x11\xe1\xaf\x44\x83\x87\
-\x8f\xdd\xff\xc4\x63\x53\x3a\xfd\x0a\xd0\xda\xce\xb8\xe3\x1d\x52\
-\xba\xe5\x2d\x52\x7a\xe2\x1f\x96\xff\xad\x15\xf3\x8f\x59\x6c\xb3\
-\x7e\xc4\x8a\xfe\xd1\x17\xf2\x62\x2e\xab\xcc\x71\xa1\x60\x8d\x25\
-\x7b\xca\x80\xa5\xc1\x5c\x80\x3e\x02\x23\xda\xd3\x0d\x11\x36\x25\
-\x9a\xbc\xe0\x6e\xf6\x05\xa5\x4b\xaa\x7e\x3c\xd9\xea\xe7\x97\x28\
-\x5e\xf4\xb1\xee\x13\xe3\x2f\x7b\x65\x4a\x5f\xfd\xaa\x29\x7e\xc5\
-\x29\x00\x00\x26\xfa\x49\x44\x41\x54\xed\xa9\x7e\x01\x17\xbd\x7a\
-\xb3\xfd\xbb\xf7\x3d\xef\x6b\x7f\xf9\x1e\x2c\x70\x53\xfa\xb1\x1f\
-\x4c\xe9\x57\x7f\xdd\xfc\xc1\x57\xf6\x77\x58\xff\xae\xb7\x3c\x7f\
-\xb8\xaf\x89\xe8\x5d\x89\x26\x6f\x95\xfd\x8f\x37\x35\xfc\xd8\x0f\
-\xd8\x9b\x1b\xe4\x0f\x05\xc4\xa9\x8d\xf7\xbe\xbf\xfb\xea\x99\x92\
-\x3c\xae\x5f\xd4\x89\xf9\xf5\x17\x27\x59\xff\xcb\xde\xfe\xce\x8f\
-\x7f\x3c\x0b\x8a\x0e\x30\x57\x59\xdf\x28\x63\x6a\xf0\xd2\x06\x75\
-\x5b\xd3\xe3\x49\x8c\x39\x69\xfc\x48\xcd\x3f\xff\x91\x94\xbe\xee\
-\x54\x70\xb7\x3b\x4e\xb5\xaf\x9d\xbe\xdb\x5d\x52\xfa\x82\xbd\x7d\
-\x0d\xff\xd2\xf2\x1a\x2c\x2f\x14\x06\xe8\xb1\x92\x86\xeb\x64\xd9\
-\xa6\xea\x67\xbf\xb4\x87\x88\xc3\xfe\x50\x1e\x53\x6a\xea\xbb\x13\
-\xb3\xca\x49\xbb\x3e\xa6\x36\xc7\xc3\x6b\xcd\xd8\xd7\x0d\x59\x0c\
-\x24\x73\x95\xb9\x0f\xf1\x37\x27\x5f\xb8\x8c\xfa\x9e\x9f\x6d\x46\
-\xcf\xaf\x20\x87\x8d\x8e\xa6\x3e\x92\xe5\xae\x37\xd2\xf5\x33\x82\
-\x3e\xd1\xeb\xc7\x57\x98\xbc\xe9\xcd\x29\xfd\xd9\x53\xba\xef\xa9\
-\x42\xbf\xbd\x1d\x56\x7b\xa9\xfe\x0b\x2f\xb2\x17\xc9\xed\x85\xd8\
-\x29\xe3\x4c\xfb\x4d\x10\xf8\x7a\xe7\x7b\xf2\x7a\x99\xcf\xb8\x9e\
-\xd1\x8f\xae\x17\x64\x51\x5f\xe5\xbe\x74\x16\x80\xbc\xe8\x0b\x73\
-\xca\x80\x45\x7d\x67\x42\xb1\xb3\x76\xfd\x6c\x07\xfa\x44\x58\xff\
-\x87\x7c\x7b\x4a\x77\xbd\x73\x57\xdf\x94\xe3\x1f\xfe\x69\x4a\x17\
-\x7f\xa2\xeb\xdd\x36\xea\xf7\x7f\x61\x61\x63\x14\x87\x35\x1d\x8b\
-\xce\x05\x21\xed\x98\x0d\x94\xd6\x05\x86\x18\x32\xf2\xb2\xba\xbf\
-\x78\xf7\x80\xfb\x71\x76\x34\x88\xff\x0d\x3f\xe6\x51\xdd\xff\x87\
-\x9f\xfc\xb4\x45\x4c\xd6\x4d\x5c\x48\x32\xb5\x85\xfa\xb5\x5f\x8c\
-\x4b\xd4\x0d\x8f\x0c\x4a\xfd\x1b\xe5\xa8\x0c\x3a\xca\x18\xa6\xae\
-\x49\x1e\x26\xa4\x89\xea\xca\xe9\x43\xfd\x1b\xdf\xff\xdb\x5c\x7f\
-\x3c\xab\xd0\xc1\x75\x25\x42\xa6\x34\x5e\x2b\x7c\xf3\xdb\x52\xba\
-\xdd\x6d\xd4\xaa\x4e\xe3\xe2\xf5\x06\xbb\x41\x9d\x7f\xfe\x42\x47\
-\xeb\xe1\xb9\x0e\xc4\x28\xed\x5f\xd5\x67\x2e\xc4\xc3\xfe\xef\xd6\
-\xa7\xd6\xbf\xeb\x5c\xcb\x5e\x38\xb7\xd7\x3e\xa6\x8e\xb7\xbd\xc3\
-\x6e\xf8\xef\x1a\x6a\xb3\xd7\xe0\x92\x26\x0e\x35\x6d\x36\xe1\xfc\
-\xb7\x4b\x6b\xa7\xc8\x9b\x44\x8f\xe0\xd3\x33\x10\x0f\x6c\x0c\x62\
-\xde\x24\xaa\x1f\xd5\x4d\xbb\x77\x01\xfa\xfe\xf7\x4d\xe9\xa8\x6f\
-\x1e\x88\xcb\x81\xd8\xf7\xbf\x0f\x67\x86\x5a\x83\xd2\x54\x89\x05\
-\x41\x67\x8d\xfa\x47\xf1\xe8\x0b\x68\x0f\x3f\xb9\x32\xf2\x44\x23\
-\x22\x25\xd2\x40\xa5\x21\xf3\xa1\x35\x28\x4d\x79\x44\xd5\x51\x9a\
-\x7a\xc8\x0b\x03\x88\x07\x74\x88\x05\xfd\xa8\x6e\xda\xae\x0e\xf4\
-\xa1\x36\xea\x2b\xfb\xf7\x9a\x8c\xae\xd5\xa7\x35\x2b\x4d\xf7\xa3\
-\xfe\x42\xc0\x98\xbd\x92\x10\x94\x01\x95\xa6\x4a\x2c\x08\x3a\xe0\
-\x55\xf4\xa3\x3a\xdc\x90\x07\x7a\x10\x43\x7d\x41\xc9\x1e\xbb\xa8\
-\xff\xe9\xf6\x1a\xe1\xa5\xf6\x6f\xae\x29\x03\xff\xca\xfa\xf1\x1f\
-\x49\xe9\xb4\xd3\x4c\x1b\xf9\x63\x10\x8d\x64\xad\xb9\x1c\x17\x93\
-\xe7\x13\xea\x02\xf1\x80\x90\x68\xf4\x2e\xea\xef\xf3\xd2\xdc\x9c\
-\x99\xf3\x03\xcd\x82\x98\x2b\xb0\xa0\xcf\x5a\xa9\x4e\x53\xa0\x0f\
-\xb5\x51\x5f\xd9\x60\x59\xfd\xe8\xf9\x4f\x3e\xce\xfe\x9d\x78\x8c\
-\xce\x96\x23\xde\x71\x87\xdf\x6b\xe9\xf3\x2c\xa9\xc7\x7c\xa0\x43\
-\x1e\xe8\x58\x90\xe6\x9c\xf5\xba\x1b\x48\xb5\x62\x78\x91\x11\x1d\
-\x42\x44\x9e\xd2\x05\x7f\x78\xcd\xe3\xfb\x1e\x29\xbe\x76\x44\x7e\
-\xdf\xf7\xc8\xd7\x1e\x33\xf7\x42\xbe\xc5\xf4\x5a\xfa\x0d\xb9\x5e\
-\xf4\x94\x2e\xc6\x5a\x85\xd9\x88\x3f\x72\xb9\x69\xfd\x86\x3f\xad\
-\x59\xe9\x51\x5e\xab\x32\x1a\xf1\x47\x6e\x37\xad\xdf\xf0\xa7\x35\
-\x2b\x3d\xca\x6b\x55\x46\x23\xfe\xc8\xad\xe9\x7f\xe8\x23\x29\xfd\
-\xfd\x3f\x8c\x24\x55\x06\xfe\x0a\xc6\xbf\x9f\xfb\xeb\x0c\x63\xc2\
-\x82\x34\x50\xe9\xec\x4d\x6b\x56\x3a\x8b\xd7\x07\x8d\xa9\x74\xcd\
-\xb3\xea\x28\xbd\xaa\xbe\xfa\x50\x3a\xfb\xd3\x9a\x95\xae\x85\x23\
-\x1f\xcf\x48\x70\xe3\xc6\xcf\xd2\x4e\x1d\x7f\x67\x6b\xfa\x61\x5b\
-\xdb\x7e\x1d\x4a\x86\x9a\xa3\xd2\x25\x5d\xf0\x54\x27\xd3\xfe\x49\
-\x74\xd0\x2a\xa3\xbd\x16\xa9\x34\xe5\x11\xd5\x87\xd2\x78\x77\xc8\
-\x4f\xda\x0b\xe6\xdb\xf8\x99\xcd\x98\x43\x6b\x8e\x1c\x90\xcb\xd5\
-\xae\xda\xd5\x8c\xba\x90\xab\xe6\x4b\x1f\x5a\xb3\xd2\x94\x47\x54\
-\x1f\x4a\x47\xbd\xda\x5c\x6d\x94\xa6\xbe\xe6\xd0\xe7\x6d\x8a\xd0\
-\x2d\xe9\xd3\x8e\x38\xd7\x3e\xea\xc3\x0f\x79\xf4\xa9\xa8\x39\x28\
-\xad\x3a\xcb\x68\xb5\x51\x9a\x36\x8c\x0d\xf4\x87\x09\x7a\xcc\x4a\
-\xb4\xa3\x8d\xe2\x5c\xfb\xa8\x0f\x5f\xe4\xa9\x5f\xd2\x8c\x0d\x54\
-\x9a\xf2\x16\xaa\x8d\xd2\xb4\x63\x6c\xa0\x3f\x10\x07\x34\x30\x2b\
-\x11\x69\xa3\x58\xb3\xc7\xc5\xe6\xbc\x0f\xa9\xe6\x72\xfa\x0e\xdf\
-\xd8\xfd\xac\x6d\xd4\x62\xec\xa9\xf9\xcc\xb5\xaf\xe5\x3f\x35\xde\
-\x5c\xfb\xa8\x8f\x7c\xc9\x8b\xb9\xbb\x2c\x33\xa7\xe6\x13\x7d\xd4\
-\xfa\xf7\x5d\xdf\x61\x9f\x8d\xb3\x9e\x4f\x1d\x58\xcb\x67\x3d\x67\
-\xac\xcd\xdc\x81\xfe\x30\x95\x1e\xb3\x3a\x73\xc0\x34\xea\x2b\x2f\
-\xab\xdb\x6f\xa2\xdb\xdd\x0d\x7f\x4d\xe0\x81\x41\x74\x3a\x4f\x70\
-\x07\xc4\x03\xce\x89\xa0\xfb\xe0\x39\x21\xa8\x83\x07\xc4\x03\x03\
-\xf8\xa8\x47\xd8\xbb\xad\x4e\xf7\xe9\x5e\x1c\x90\xcb\xf7\x7e\x77\
-\xce\xd1\x12\x8c\xf9\x32\x49\xd4\x8a\xb1\x6e\xfd\x9d\x17\x3b\xa2\
-\x69\x18\xde\xbc\x3c\x45\xef\x32\x0b\xe1\x40\x33\x1f\xd2\xbd\xdc\
-\x04\xce\x33\xf4\x9c\xa0\x0b\x3a\xdb\xb0\xf7\xbe\x2e\x50\xb4\x01\
-\xba\x1f\x50\xc4\xc8\x06\x3e\xb5\x43\x9e\xf6\x22\x27\xa0\xe6\x0a\
-\x1d\x82\x66\x6c\xa0\x3f\xec\xd0\xa3\x11\x50\x67\x0e\xd9\xd4\x79\
-\xf4\xe7\xca\x98\xb8\x51\x07\xa0\xf3\xb4\xb3\x37\x31\x6c\xdd\x97\
-\x20\x74\x34\x87\xbe\x6e\x53\xec\xf5\x4d\xc9\xed\xe0\x13\x06\x36\
-\x88\x3e\x81\x10\x23\x1b\xf8\xd4\x0e\x79\xda\x8b\x9c\x80\x9a\x2b\
-\x74\xa8\xb1\xe1\xda\x1f\x88\x03\x1a\x68\x0f\xa8\x13\xb3\xa9\xf3\
-\x8c\xdd\x0d\x28\x63\xb8\x51\x07\xa0\xf3\xb4\xb3\x37\x31\xf3\x01\
-\xdf\x7d\x66\x13\xcd\x61\x93\xf5\x7f\xcd\x7e\x94\xe8\x8f\xfe\x74\
-\xfa\xbf\xb2\x2c\x9d\xf4\x50\x7b\x3d\xe4\x2e\x77\xca\xb9\xa3\x06\
-\x7b\x78\xae\x19\x41\x63\x10\x7d\x82\x82\x30\x80\xf6\xf0\x69\x46\
-\xd0\x6e\x9f\x51\x69\xc8\x5c\x6e\x4c\xe2\x26\xeb\x47\x2c\x3c\x30\
-\x88\x4e\xe7\x89\xc7\x32\x9a\xb1\x99\x8f\xaf\xbb\x29\x3a\x1a\x13\
-\xea\xec\x03\xfd\x10\xe1\xaf\x2b\x38\xa3\xe9\xc3\x0f\x0e\x40\x3c\
-\xdc\x3e\x23\xe9\xbb\xd8\x07\xab\xf1\x99\x8f\xa9\x03\xef\xba\xd3\
-\xb5\x44\x3e\xfd\x60\x32\x40\x7b\xf8\x34\xa3\xd3\x1d\x7b\xa1\x9e\
-\x99\xcb\xea\x3f\xc5\x0b\x40\x11\x13\x1e\xf0\xa7\x0d\x1a\x2c\xa2\
-\x09\x5d\x96\x91\xfe\x6e\x7c\xc3\xcd\x7f\xce\xa3\xaf\x70\x0d\xe2\
-\x4e\xf6\x16\x5f\xe4\xb6\xed\xfa\xd9\x07\x20\x06\xb1\x9b\x0d\x8f\
-\x94\xd1\x86\xb9\xf9\xee\xe2\x46\x20\x8a\xaf\x5e\x5f\x78\xf0\x4c\
-\x55\xa0\xd3\x76\x20\x82\xf0\x78\x19\xe9\x63\x19\xae\xb2\xfe\xea\
-\xcf\x73\xf2\x04\x40\x8d\x87\xe7\x63\x6c\xda\x68\x8e\x5d\xe2\x10\
-\x2e\xec\x46\xfa\xd9\x96\x1a\x54\x05\x3a\x6d\x07\x22\x08\xb7\xcf\
-\xc8\x98\xcb\xf0\x44\xae\xff\x3c\x7b\x61\x7c\xce\xbf\xb2\xd0\x63\
-\xbc\x9d\xf4\xc6\x37\xb0\x0b\x91\x35\x06\x0f\xf4\x8e\x58\xea\x23\
-\x6c\xc0\xaf\x0d\xca\x68\xab\x6b\xd4\x2d\x1c\x1c\x2c\xac\x47\xfa\
-\x10\xab\x3c\xab\x82\xe5\x6c\x3b\x10\x41\xb8\x6e\x46\xc6\x5c\x86\
-\x47\xbd\xfe\xe8\xed\x8f\xfd\xd0\xa2\xde\x29\xd4\xb3\x9e\x6b\xcf\
-\x26\x6d\x2d\x31\xac\x34\x1f\x40\xa7\xed\x40\xdc\x54\xfd\xcb\x5f\
-\x44\xcf\x09\x10\xb8\x38\xb5\x26\xe3\x96\xe6\x3a\xe8\x34\x1e\x36\
-\xf0\x97\xfe\xbe\x8e\x3e\x37\xc9\x97\x79\x97\x72\x5e\xa5\xfe\x65\
-\xfe\xc6\x2b\x6c\x51\x7d\x85\x73\xf4\xdc\x43\xf7\x61\x34\x7b\xcb\
-\xfe\x43\x8b\x39\xb9\x45\xd0\x77\x5f\xe0\xc1\x27\xfd\x12\x61\x10\
-\xf5\x95\x07\x3a\x0c\xc6\x62\xfc\x88\xf0\xe7\x3a\xf0\xab\xbe\x83\
-\x9f\x7e\xca\x5c\x26\xe6\x47\xdf\x8c\x0b\x3f\xce\xa3\x43\x8d\x09\
-\x1a\x7e\x89\x1a\xab\xa6\x0f\x3e\x7d\x50\x47\x90\xb1\x18\x3f\xe2\
-\xf1\x5e\xff\xdf\x3d\x7b\xde\xbf\xb2\x4e\xb5\xb7\xe1\xff\xeb\x9f\
-\x49\xe9\x06\xd7\x5b\xac\xbb\xf7\x08\x3d\x64\x1f\x89\xd2\xc7\x9e\
-\xd4\x35\x51\x9a\x0a\xb4\xcd\xfe\xe8\x9b\x7d\x87\x9a\xf3\x2a\xfa\
-\xc7\xf3\xfa\xe3\xdb\x39\xfe\xcd\xcf\xce\xfb\xa8\x03\x5e\xf3\x78\
-\xe6\xb3\xac\x19\xb9\x5f\x47\x51\xbf\xdf\x40\x6a\x0b\xa2\x6b\xaa\
-\x34\xd7\x4b\x79\x4e\xdb\x81\x08\x02\x2f\x9c\xaf\xf3\xf5\x24\x8c\
-\xb3\x2d\x44\x6e\xc8\x71\x5b\xf5\x7b\xde\xde\x90\x72\x05\x14\x01\
-\x95\xee\xb5\x95\x69\xb4\x4f\x33\xaa\xa8\xa6\xef\x7c\x2a\xf6\x4a\
-\x0b\x82\x27\xdf\xa1\xfe\x6e\x0f\xa0\x33\xec\x89\xd3\xb9\x55\x68\
-\x21\xdb\x48\x2c\xca\x4d\xe8\x72\x1c\xa8\x48\xcc\xbe\x14\x28\xaa\
-\xaa\x07\x05\x9f\xda\x61\xaa\xbe\xc7\xa2\x0f\x0d\x9c\x69\xd6\xca\
-\xf5\xff\xaa\xfd\x2b\xeb\x49\x7f\x2c\x3f\x20\x55\xb0\x89\x2c\xfc\
-\x3b\xf8\x17\x7e\xce\x6e\x22\xd7\x37\x49\xce\xad\x9e\xe0\xd0\x9a\
-\xa9\x4d\xad\xc7\xf5\x73\x0c\xb5\xed\xbd\x2a\x53\xe9\x5e\x61\x48\
-\xc4\xfa\x21\x25\xcf\xe9\xac\x0e\x57\x25\x77\xca\x73\xda\x0e\xc4\
-\xa2\x41\xf6\x47\x18\xd9\xe7\x38\x37\xb4\x5e\xe2\xe6\x71\x85\xcb\
-\x53\xb3\x8d\xf8\x9c\xdb\xef\xfe\x41\xf7\xc1\xd1\xc9\xfd\xcf\x09\
-\x70\xfd\x11\x65\x6e\xfd\x7e\x03\xa9\xdd\xb0\xc0\x47\x0c\xca\x11\
-\x00\x34\x07\xe9\x9a\x1c\xdf\x55\xbf\xef\x03\x39\x32\x7f\xd6\x0a\
-\x54\x9a\x72\xd4\xc2\x9a\x95\xae\xc9\xa1\xa3\x83\x8b\x53\x5b\x30\
-\xd5\x5d\x85\x46\xce\x18\xcc\x9f\xb4\x33\x0b\x07\xd6\xc2\xfc\xb5\
-\x66\xa5\x29\x87\x0b\xda\x28\x5d\x93\xc7\x90\x87\xfa\xbb\x8e\xec\
-\xf3\xfa\x5f\x70\x41\x4a\xbf\x6f\x37\x11\xbc\x2e\x32\x75\xe0\xdb\
-\x24\x7e\xd1\x6e\x22\xb8\xf0\xe9\xfe\x88\xf6\x87\xf5\xef\x3a\xb2\
-\x6c\xfd\xd1\x43\xdc\x90\xe7\x7c\x43\x07\xd6\xea\x0f\x6c\xcd\x2e\
-\xb8\x30\xfb\x37\xd0\x6b\x41\x5c\x07\xce\xb9\x56\x3c\x7f\xf5\x9c\
-\x57\x9a\x72\xd8\xd1\x86\xf4\xbc\xdf\x03\xc9\x59\xb1\x01\x23\x34\
-\xaf\xce\x03\xda\x63\xce\x3b\x07\x90\xd0\x2e\xc6\x9c\x1c\x51\x1b\
-\xc6\xa8\x6e\xe3\xf7\x75\x83\x86\x0e\xf5\x88\x60\x58\xf7\xdd\x47\
-\x5e\x11\x5f\x0c\x3b\xe4\xa9\xdb\x80\xae\xd9\xbb\xcc\x84\xbd\x7e\
-\xa6\x99\x4f\x4b\x4e\x3d\xa2\x85\xea\xf2\x01\x31\x61\x78\xee\xa6\
-\x47\xfb\x11\x52\x06\x54\xda\x26\x6e\x6b\x09\x12\x51\x04\xf2\x25\
-\x7a\xee\xdd\xf4\x50\x3f\x7a\x87\x07\xfa\x46\x34\xc2\x7b\x94\x51\
-\x69\xae\x83\xf2\x94\xa6\x3c\xa2\xb9\xee\xd6\x03\x84\x8c\x73\xde\
-\x6a\xdf\x95\x85\xef\x4f\x9a\x31\x70\xc1\xc3\x85\x0f\xff\x7a\xf1\
-\x9c\xcd\x36\xe6\x8f\x02\xc0\xf3\x42\x8c\x46\x8e\x38\x00\xf1\xa0\
-\xa8\x66\xef\x3a\x26\xec\xf5\x33\xcd\xba\x5a\x72\xea\x11\x11\xde\
-\xf3\x01\x31\x61\x50\x97\xf6\x23\x34\x1f\xce\x03\x2a\x6d\x13\xb7\
-\xb5\x04\x89\xac\x9b\x88\xdc\x6f\x74\x43\xbb\x11\xdb\x33\x8f\x39\
-\x37\x0f\x33\x4b\x4f\x7f\xa6\x7d\x5d\x89\xad\xd9\x2e\xea\x3f\x86\
-\x04\xfa\x81\xaa\x3d\x8b\x8e\x83\x29\x06\x11\xb2\xbe\x01\x14\x88\
-\xbe\x2b\xe7\xc3\x4d\x6e\x94\xd2\x95\xce\x54\xce\x7e\xd2\xc8\xf1\
-\x7f\xfd\xfe\x7e\xe6\x76\xc8\xea\xe4\xed\xc0\x17\xed\x1b\x74\x3f\
-\x6c\xcf\x06\xce\x7e\x85\x3d\x5e\x36\xad\x0f\x3c\x4f\x89\x7e\xbe\
-\xc2\x14\xe7\x28\x06\x04\x95\xf3\x35\xca\xf1\x82\xfa\x75\xaf\xdd\
-\x7d\x0d\x90\xcb\x26\x1c\x70\xe1\xfb\xb7\xff\x3a\x25\x7c\x7d\xc6\
-\x6b\xed\xdb\x5f\xfd\x05\x75\x84\xcc\xf1\x3d\xbc\xd1\xcc\x8f\xd7\
-\x12\x47\xf8\x87\x8c\x39\x4e\x88\x17\x55\x7a\xbf\x14\x30\x56\x8e\
-\x3f\xa7\x7e\xb8\x28\xfa\xd3\xfc\x48\x53\x91\x71\x33\xce\xa9\xff\
-\xae\xf6\x75\x4b\xf8\xbe\x31\x7c\xf5\xd2\x9c\xf1\x9a\xd7\x2f\xde\
-\xb2\xcb\x34\x88\xeb\xac\x3f\x72\xa0\x1f\xe2\x68\x7d\x4c\x70\xd9\
-\xdb\xdd\xf1\xf1\x8f\x9f\x9c\x30\x17\x82\x08\x43\xa5\xc5\xd1\x7d\
-\xef\x69\x5f\x64\x78\x73\x61\x1c\xc8\x43\x07\x0e\x1d\x98\xdc\x01\
-\x7c\xe2\xf8\x2a\x57\x4e\x09\x9f\xb9\xb8\xc5\xcd\x52\xc2\xd7\x52\
-\xe0\xa6\x32\x18\x38\xf7\x70\x76\x03\x95\xee\xcf\xf8\x81\xf6\xec\
-\x09\xbe\xe6\xe4\xb6\xdf\x30\xfd\x6b\xc3\x11\x00\x5f\xf2\x87\x7f\
-\x0b\xe3\x4b\xff\xde\x81\xaf\xd1\x58\x96\x8b\xe6\xac\xf4\x32\x1b\
-\xad\x42\x6d\x94\x9e\x6a\xaf\xbe\xa6\xd0\x88\x81\x41\x8c\xb4\x0b\
-\x67\x1c\xcc\x0f\x5c\xe1\x1b\xc9\xf1\x55\x4b\x53\xbf\x20\x91\x11\
-\xce\x3d\x2f\xa5\xdf\x79\xa2\xbd\xee\x61\xff\xc2\xda\xc6\xfa\x33\
-\x4e\x8f\xac\x9b\x68\x02\x7f\x0d\x84\x0a\xec\x3b\x50\x69\xca\x07\
-\xcc\xa2\x42\xaf\x99\xae\x71\xf5\x05\x7d\xa0\x0e\x1d\x38\x74\x60\
-\xf5\x0e\xe0\x8d\x1e\xff\xe2\x47\xc7\xf6\xfc\xcb\x1d\xa8\xf4\x58\
-\x73\x1a\x47\x4f\x69\xd0\x5f\xb1\x1f\x91\xfa\x9d\x27\x35\x7e\x0e\
-\xa1\xe2\x1a\x3f\x76\xf4\xb3\x3f\x61\x5f\x7b\xf2\x75\x15\x05\xb0\
-\x43\x40\x9f\xda\x01\xa8\xa2\x9a\x07\xad\x59\xe9\x9a\x7e\x8b\xaf\
-\x31\x95\xee\xed\x94\xa9\x74\xaf\x30\x8f\x38\xcd\xde\xc5\x86\x1e\
-\xe1\x33\x35\x73\xc7\x85\x1f\x4b\xe9\xb7\x7e\xcf\x7e\xe8\xeb\xcb\
-\xdd\xda\xef\xaa\x7e\xbf\x81\xa0\x17\x78\xe0\xc6\x42\xe4\x4d\x86\
-\x58\x2a\x50\x7b\xe8\x3e\xec\x40\x3c\x1e\xfe\x7d\x55\xaa\xe9\xc0\
-\x3b\x74\x60\x1f\x3b\x80\x9b\xc8\xbd\xef\xde\x65\x86\x8b\x05\x1e\
-\x7e\xbe\x66\xe4\x79\x4a\x84\x26\xce\x45\x0c\xa0\xd2\xce\x0c\x3c\
-\xc8\xdd\x5f\x46\xfa\xf9\xd4\xa7\x52\xfa\xf5\xdf\x5c\xed\x26\x72\
-\x87\xdb\xa5\xf4\x1f\x7e\xc9\x7e\xb8\xca\x7e\xbf\x02\x43\x2f\x72\
-\x4a\x77\xd2\x2e\x3e\x68\xc4\x66\x7c\x22\xf8\x6a\x73\x54\xf5\x6b\
-\x7c\xe4\xa0\x43\x7b\xea\x3d\xb6\x43\x8f\x59\xc8\x9c\x61\x47\x1a\
-\x88\x1f\xf3\x42\x6f\xd0\xa3\xb9\x03\x5f\xd7\xff\x6b\xff\x35\x25\
-\xac\x0d\xfb\xc0\x3c\x89\xf0\x99\x53\x58\x6b\xfd\xd5\x5f\xcc\x13\
-\xfe\xfd\x45\x74\x28\xe1\xc1\x64\x80\x53\x1e\x6a\xe3\x81\xec\x40\
-\xbc\xd2\x95\x62\xb8\xc3\xfc\xd0\x81\x43\x07\xd6\xe9\xc0\xbd\xef\
-\x31\xd3\x3a\x5c\x41\x70\x4e\xe3\x6a\xc2\x73\x3b\x9e\xbf\xe0\x93\
-\x47\x1d\xe0\xc7\x2f\xb6\x0b\xd6\x13\x56\xbb\x89\x5c\xc7\x5e\x47\
-\x79\xfc\xbf\x4b\xe9\xe1\x0f\x5d\x7c\x11\x20\x5e\x1b\xf0\xd7\x07\
-\x10\xcf\xe8\x3e\x16\xd2\x43\x7e\x5d\x9a\x5e\x2c\xe8\x95\x07\x8d\
-\xb3\x43\xf8\x5e\xa5\xfe\x3e\x3f\xb3\x57\x9a\xbd\x02\xe2\x81\x03\
-\xb1\x23\x28\x80\xb0\xab\x15\xff\xa6\x7a\xc4\xc3\xac\x27\xbf\x9c\
-\x12\x7a\x33\x77\xf8\xcd\xc3\xd6\xe2\x93\x76\xf3\x68\x8e\x23\xa8\
-\x7f\xf8\x0c\xc4\xaa\x47\x4c\x2e\x30\x12\x04\xdd\x0f\xd2\x40\xe8\
-\xba\xf2\xa2\xa9\x5c\x1c\xe0\x95\x8f\x83\x17\xd0\xfb\xba\x0e\xc4\
-\xa1\x03\xc7\x41\x07\x70\xc1\xe1\x39\x57\x3a\xff\x70\x3a\xfa\x05\
-\x0e\x68\x0f\xbf\x38\x67\xe4\x79\x4c\x34\xb6\xeb\x10\x5b\xfa\xf8\
-\x4d\x89\x5f\x5b\xf1\x99\x08\xbe\xc5\x17\xdf\xe7\xf4\xff\xfe\x5b\
-\x7b\x61\xde\x9e\x8d\xf0\x22\xac\x35\xf8\x05\xd7\x93\xc8\x89\x19\
-\xed\xb5\x66\x64\xdd\x44\xb5\xa5\x3f\x98\x3b\x9d\x5d\x6c\xb2\x7e\
-\xf4\xc9\x73\x24\x36\xae\x7f\x7e\x2d\x84\x2e\xf2\xef\x20\x5d\xdf\
-\x6a\xef\x6f\xa6\xd6\x93\xb9\x03\xbf\xac\x8a\x67\x83\x9f\xc0\xcd\
-\xa3\x10\x7f\x17\xf5\x77\xaf\x81\xe4\x0a\x7d\x71\x50\x70\x7e\x68\
-\x92\xde\x3c\xe8\xe1\xe6\x91\xf5\xbd\x01\xa0\xf3\xe0\xe6\xe4\xc2\
-\x91\x7f\xc0\x43\x07\x0e\x1d\x38\x82\x0e\xf0\x5c\xcc\xe7\xe7\xe8\
-\x7c\xb6\x14\x9c\xc7\x54\x5a\xfa\x72\x91\xc2\x79\x7f\x31\x9e\x89\
-\xd8\x05\x0c\x7f\x05\xaf\x32\xf0\x89\xf5\x5f\xb1\x9b\x08\x6e\x26\
-\xf8\x14\xbb\x5f\x47\xe0\x28\xe7\xeb\xd7\x0f\xa3\x81\x7a\x2d\x99\
-\x1c\xab\x55\x0f\x42\x51\x87\x71\x89\xc6\x1f\xf5\x2b\xd4\xef\x79\
-\x1a\x8f\xf9\xc2\xb4\xaf\xc1\x48\xcd\x59\x6b\xc1\x3b\xab\x1e\x61\
-\x35\xe3\xe6\x81\x9b\xc8\x2a\x03\x37\x0f\xf4\x1e\x37\xf2\xea\x60\
-\x6d\xc0\x52\x3d\x60\x53\x07\x4e\x48\xd7\xf4\x27\xd4\xdf\xdd\x40\
-\xd0\x14\x28\xc3\x69\x46\xa7\xed\x40\x1c\x04\x83\x5e\x61\x30\x39\
-\xe0\xa7\x3e\x5d\x50\x38\xb0\x0e\x1d\x38\x74\x60\xe5\x0e\xf8\xd7\
-\x73\xc3\x1a\x27\xa5\x9c\x9b\x79\xea\x7e\x41\x4f\x1e\x38\xef\x31\
-\x66\x9c\xff\xb8\x89\xfc\x27\xfb\xff\xfb\x07\xcf\xed\x4c\xe7\x1e\
-\xf1\xee\x32\xdc\x40\x9e\xf0\x9f\x52\xba\xdf\xbd\x86\xdf\xd0\xfd\
-\xb5\x9c\x3c\x50\xe9\x3e\x06\x8b\x03\xda\xc3\xa7\x19\x9d\xee\xd8\
-\xbd\x7a\x93\x58\xa1\xfe\x2e\x68\xd9\xb3\x5e\xff\x40\x9f\x62\xcf\
-\x32\xee\x6b\x35\xa2\x56\xfc\x0b\x6f\xee\xbb\xac\x18\xe5\xfd\x1f\
-\x48\xe9\x3f\xfe\xe7\xee\x06\xee\x3c\x14\x6b\x0f\x00\xd1\xe9\x6e\
-\x0a\xee\xb4\xb1\x81\xfa\xbb\xcf\x81\xe4\xe8\xee\xcf\x68\xfa\x05\
-\x1b\x34\x93\x8b\x59\x51\x46\x7d\x95\xe3\x05\x1e\xfe\x46\xb3\xf2\
-\x0f\xf4\xa1\x03\x87\x0e\xac\xd6\x81\xb3\x5f\xde\x9d\x8b\x3c\xdf\
-\x22\xc2\x2b\x79\xa0\xe3\xf9\x0b\x19\x79\x90\xf7\x27\x76\x3e\xc1\
-\xdd\xd6\x68\xfa\xa0\x6e\x16\xbb\x09\x0e\xf8\x17\xca\xaf\xfe\x17\
-\xfb\x5d\x90\x1f\xb2\x9f\x57\xb5\xcf\x2f\xac\x32\xf0\x26\x9b\x1f\
-\xfe\xfe\x94\xbe\xfd\xdb\xec\x83\x70\x7f\x93\x3f\x37\x92\x1d\xd5\
-\xe2\xc7\xfc\xa9\x47\x84\xb9\xd2\x31\xff\x68\xbf\x6a\xfd\xac\x77\
-\xe4\x8f\xf9\x9b\x00\x3f\x3b\xfb\xdd\xdf\x99\xd6\x7e\x37\xea\x2b\
-\x5f\xd3\x7d\xbb\xee\x57\x2e\x5d\x5c\x8b\x59\x63\xc4\x5d\xd4\x7f\
-\x8c\x77\x4d\xaf\x3d\x76\xc4\x56\xe0\x9f\xc8\x63\x76\x5c\x95\xdc\
-\x2c\x05\xf8\xc2\x53\x37\xe0\xa4\x17\x79\xd4\xf8\x40\x1f\x3a\x70\
-\xe8\x40\xb5\x03\x6f\x7f\x67\x4a\x2f\x7e\xd9\xe2\xfc\x2a\x29\xf2\
-\xdc\xe3\xbf\x52\xa2\x8e\x9f\xeb\xf9\xfc\x8c\x32\x9f\xf3\x5c\x07\
-\x62\x2c\x39\xff\xf1\x16\xdf\x27\xfe\x91\x7d\xf9\xe2\x87\x53\x7a\
-\xa4\x5d\x28\x57\xfd\xad\x9f\x6b\x9e\x95\xd2\x4f\xff\x78\xf7\x8c\
-\xe6\xb9\x2f\x4c\x09\x1f\x8c\x83\x6f\x8c\x58\x8f\x5e\x5f\x3a\x8d\
-\xe1\x31\xea\x0f\xa5\xdd\x75\x09\x77\x18\xef\x43\x14\x62\x3e\xa3\
-\xfe\x92\x39\x7a\x80\xcf\xc0\x3c\xf4\x41\xab\xff\xab\x8a\x7e\xf1\
-\xf5\x24\x4f\xfb\x6b\xfb\x86\xe4\xe7\x74\x7d\xf0\xd4\xe4\xfa\x4a\
-\x3d\xc5\x5d\xd4\x7f\x99\xef\x7f\xac\xb5\x33\x6f\x98\x42\xff\xfa\
-\x9e\x7a\xa2\x56\xc0\x90\xa1\xe9\x8b\xcc\x1c\xe1\xee\xfb\xf0\x87\
-\x04\xf9\x61\x7a\xe8\xc0\xa1\x03\xb3\x3b\xf0\x8f\xf6\x21\x42\x7c\
-\xc9\xe1\xa7\x3f\x63\xa6\x3c\x07\x4b\x5e\x28\x03\xda\x88\x17\x94\
-\xd1\x05\x38\x9c\xf0\x61\xda\x87\xca\xee\x16\xb1\x7b\x46\x17\x07\
-\x1f\x76\xfc\x89\xc7\xa5\x74\xf9\xd3\xba\xf9\x3a\xc7\xcf\x7e\x36\
-\xa5\x97\xd8\x33\xad\x17\x9d\xdd\xbd\xfb\x8b\x35\xb8\xcf\x98\x60\
-\x0c\xb4\xa3\xfa\xf1\x99\x37\xfc\xab\xea\x5e\x77\x4f\xe9\x8c\x2b\
-\xc6\xa4\xe6\xcf\x2f\xf9\xa2\xad\xf7\x1f\xa6\xf4\xa6\xb7\x2c\xd6\
-\x70\x5f\xeb\xef\x6e\x20\x53\x6b\x0c\x0b\x18\xa6\x7e\x67\xe7\x82\
-\xdf\xe4\xc6\xf6\xa2\x91\xbd\x60\x76\x18\x87\x0e\x1c\x3a\x30\xbf\
-\x03\xf8\xd4\x39\x7e\x6e\x16\xff\xb6\x7a\x89\x3d\xf3\xf0\x31\x3a\
-\xe1\x8c\x4b\x5e\x56\xd9\x2a\x30\x16\xd0\x86\x4e\xaf\x7d\xad\xee\
-\x37\xbb\x57\x7d\x91\xb8\xf3\xb8\x38\xe2\x2f\xf0\x73\xec\x02\xfa\
-\xaa\xd7\xa6\x84\x4f\xc4\x5f\x72\x49\x08\x08\xd5\x70\xc3\x58\x58\
-\x6f\x89\x92\x82\xf1\x26\x80\xdb\xdd\xc6\x6e\x1c\xf6\x8d\x1b\xb7\
-\xb1\x4f\xeb\xe3\xba\xb7\x89\x81\x4f\x97\xe3\x99\xdd\x47\xec\x6b\
-\x6c\x46\x43\xe2\xbb\x6c\x87\xf5\x23\x3e\xd2\x19\x3c\x03\xd9\xf4\
-\x82\xfc\xee\x13\xf6\xff\xfb\xb0\xf0\x62\xff\xcf\xfc\x82\x2f\xc7\
-\xd1\x6f\xc8\x1c\xb6\x0a\x6b\x6e\x98\xb8\xbf\xa2\xbb\xc1\x15\x00\
-\x49\x44\x83\x6a\x62\x47\x24\x88\x09\xcf\xcc\x2f\xaa\x47\x77\x87\
-\xfa\x65\xcd\xb1\xa4\xb1\x61\x33\x97\x19\x2f\x12\xe3\xc5\x62\xfc\
-\x82\xde\xaa\x2f\x18\x97\x42\x5e\x6a\xff\xff\xc7\xd7\xa2\xbc\xe1\
-\x9c\x94\xde\xf8\x66\xfb\xf7\xf8\x27\x4b\x5a\x63\x5e\x2c\x67\xdd\
-\xf5\xc7\x4f\x73\xdf\xfe\xb6\x76\xe3\xb0\x67\x5c\xb7\xba\xc5\xfc\
-\xef\xad\x1a\x67\xb8\xe0\xa0\xc6\xbf\x7d\x76\xf7\xc0\xaf\x0a\xfa\
-\x88\x09\xc7\x82\x16\xe6\x45\x2a\xaa\x47\x77\x9b\xd8\xff\x7e\x03\
-\x41\x20\x8c\x18\x20\x3e\xe5\xe5\xb3\x0b\xde\x6d\xa3\x3c\x3a\xf8\
-\xd1\x1f\xe8\xde\x69\xd1\x79\xdf\xcf\xe3\x8b\x5e\x9a\xd2\x9f\xfc\
-\x79\x97\xdb\xa6\xeb\x8f\xfe\x62\x07\x62\xff\x62\x7f\xd7\xd5\x8f\
-\xf6\x71\xde\xda\x60\xad\xfc\xa2\x3c\xae\xff\xa1\xfe\xc5\x35\x39\
-\xf6\x1e\xf3\xd8\xbf\x13\x65\xfd\xf1\xdb\x20\xf8\xea\x15\x7e\x02\
-\xbd\x54\xfb\xaa\x3c\xf4\xec\x43\xf6\xba\xcb\xfb\x3e\x90\xd2\xfb\
-\x3f\x68\xf8\xfe\xee\x99\xda\x9c\xaf\x9f\x67\xec\x65\xfb\x1f\x37\
-\xc0\x6b\x5f\xb3\xfb\x9d\x13\x7c\xc5\x3a\x9e\x65\xac\xf2\xc1\x3f\
-\xc6\x5a\x86\x78\xd6\xf1\x07\x7f\x92\xd2\xf9\x56\x17\xf7\x44\x49\
-\x9f\x32\x20\x46\x6b\xbf\x74\x5a\xf5\xe3\xb2\xfa\x61\xd5\x8a\xe7\
-\x72\xbc\x06\x92\xf3\x59\xec\x76\x32\xc2\x15\x20\x4c\xeb\x99\x65\
-\xc9\xad\x6f\x95\xd2\x2f\xfd\xab\xa6\xda\x4e\x15\x7e\xe3\xb7\xba\
-\x2f\xaa\xf3\x24\x1a\x1d\x9d\x5b\x7f\x2c\x2c\x2e\x48\x94\xb7\x36\
-\x44\xb4\x8f\xfa\x2d\x79\x8c\x17\xcb\x1d\xfd\x05\x1a\x0a\x0e\xd3\
-\xe8\xae\x39\x8f\xf9\x45\x83\x58\x4f\x94\x47\xfb\xa8\xdf\x92\x8f\
-\xfc\x19\x83\x35\xb9\x2c\x36\x84\x42\xa0\x8d\x30\xed\x98\x33\x8e\
-\x31\xbf\x68\x1a\xeb\x89\xf2\x68\x1f\xf5\x5b\xf2\x91\x3f\x63\xb0\
-\x26\x97\x6d\xb0\xfe\x6d\x3d\x1b\x89\x35\x60\xfe\x65\x7b\xd1\xfd\
-\x3c\xbb\x08\x7f\xf4\xa2\xee\xcd\x3b\xf8\xac\xc4\x27\xec\x59\x0a\
-\xde\xc8\x83\x67\x2b\xb8\xb9\xe0\x0b\x07\x81\xff\x94\x11\xf9\x5d\
-\xf1\x8c\x94\xce\xb4\xd7\x2c\x80\x78\xed\x02\xf4\x59\xf6\xa2\x3e\
-\x3e\xaf\x72\x1d\xfb\x97\x1c\xde\x72\xbc\xcd\x81\x67\x1d\xf8\x05\
-\x41\x3c\xf3\xc0\xb3\x8e\xb8\x9e\x31\x76\x6b\x7d\x5b\xf2\x91\x3f\
-\x63\xac\xbb\xfe\xdd\xbb\xb0\xf2\x09\x12\x03\xd0\x39\xc5\x31\xc1\
-\xa8\x1f\xe7\x6f\x7b\x7b\x4a\xef\x7c\xf7\xfe\x7e\x2b\x2f\x72\x43\
-\x8e\xde\xc5\x98\x7c\x66\xf3\x9c\x82\x78\x6e\xfd\x23\x97\xd6\x48\
-\xf8\x60\xbc\xd9\xfd\x0d\xf6\xf4\xe5\x08\xb7\x59\x0e\xc4\x68\xe6\
-\x1b\xfc\x75\x56\x8b\x23\xdc\x48\xba\x6d\x7f\x0b\xd3\x32\x15\xe2\
-\xcd\xf6\x1f\xec\x0f\xf5\x5b\x9b\xd9\x13\x90\x99\xde\x87\xf5\xc7\
-\xc5\x11\x6f\xcf\x7d\xf5\xeb\x52\x7a\xf4\x77\x6f\xf7\xb7\x81\xf0\
-\x41\xbd\x9b\xde\xa4\x7b\x94\x37\xde\xfe\x71\xf1\xfb\x1d\xff\xe7\
-\xe9\xf6\xac\xc3\x5e\xe7\xc2\x79\xa0\x6b\xc7\xf3\x79\x94\x35\xd7\
-\x1a\x06\x36\xf6\x61\xff\x5f\xe6\x31\x3f\x66\x69\xe4\x84\xfa\xab\
-\x05\xae\x1a\xab\x0c\xf8\xd1\x2b\x8e\x4d\x6f\x7a\xe3\xfd\x7d\x31\
-\xfd\xf1\xbf\x9e\xd2\x7b\xdf\x67\x49\x6e\xb1\xfe\x41\x1b\xd9\x9b\
-\x4d\xf5\x77\xdf\xfd\x0d\x8a\xb7\xc9\xbe\xe7\xbb\xe9\xfc\x0e\xf5\
-\xf7\x1d\xc0\x57\xd2\xe3\x46\x72\x33\xbb\xd0\x9f\xcc\xe3\xdd\xef\
-\xb5\x1b\xc7\x5f\xa5\xf4\xae\xf7\xac\xd0\x85\x78\x7d\xdd\xf4\x7e\
-\x5d\xc1\x5f\xf7\x24\x0d\x86\x1c\x42\x47\x7f\x31\x7f\x9a\xf4\x48\
-\xdb\x8c\x00\x5c\xa0\xf1\xe3\x32\xfb\xf6\xf3\xb6\xaf\xb3\x9c\xfc\
-\xe6\x81\xe4\x99\x77\xa0\xc1\x66\xcd\x10\x91\x06\x16\x07\xfd\x64\
-\x2c\xda\x1b\xb3\x66\x5f\xd4\xb7\x40\xbd\x7e\xf6\x5b\xcb\x37\xe6\
-\xb4\xae\xbf\xa6\x7d\x29\x20\x78\x39\xcf\xa2\xbd\x31\xfb\x7a\x82\
-\x7d\x51\xdf\x74\x7a\xfd\xec\x97\xfe\xdd\x9c\xbc\xe0\x0b\xd3\x75\
-\xfd\x35\xed\x63\x4c\xe6\x92\xb1\x68\x6f\xcc\xbe\x9e\x60\x5f\xd4\
-\x37\x9d\x5e\x3f\xfb\x3d\x1e\xeb\xc7\xb3\xfd\x5f\xb1\x3f\xd8\xee\
-\x78\x87\x94\xbe\xf7\x11\xf6\xfa\x82\xfd\x8b\xe8\x64\x1a\xe7\x9d\
-\x9f\xd2\x53\xff\x3a\xbf\x35\xb7\x52\xf8\xf1\xb8\xfe\x83\xff\xf2\
-\xe1\x29\x11\x9f\x4a\xa1\x46\xd2\x7c\x4a\xec\xbc\x4a\xf1\x25\x36\
-\x37\xfe\x93\x9f\x96\xd2\xad\xed\xeb\xa8\x4f\x3f\xbd\xa4\x75\xf4\
-\xbc\xcf\x7f\x3e\xa5\xbf\xb4\x9c\xe2\xd8\x56\xfd\xec\x03\xe2\x29\
-\x1d\xe3\xcf\x9d\xb7\xf2\x65\x2c\x62\x2b\x7e\xcb\x5f\xcb\x3e\xe6\
-\xcf\xb8\xc4\xb9\xf6\xd1\x5f\x9c\xb7\xf2\x65\x5c\x62\x2b\x7e\xcb\
-\x5f\xcb\x3e\xe6\xc7\xb8\xc4\xb9\xf6\xd1\x5f\x9c\xb7\xf2\x65\x5c\
-\x62\x2b\x7e\xcb\x5f\xcb\x3e\xe6\xc7\xb8\x44\xc8\xdf\xf0\x26\x7b\
-\x27\x95\xbd\x9b\xea\x5b\xbe\x39\xa5\x07\xdc\x2f\x25\xbc\xdd\xff\
-\x44\x1e\x1f\x38\x37\xa5\x67\x3f\xcf\xfe\x95\x67\x6f\x47\xf6\xfe\
-\x6e\xb0\xd8\xd6\x7a\xb1\xef\x44\x84\x56\x3a\xa6\xd2\xf2\x57\xb2\
-\xf7\x7f\x61\xc1\xd0\x07\xbc\xf3\x36\x68\x64\x98\x76\x3a\x72\x8c\
-\x01\x45\xd4\x91\xe2\xe0\x36\xf6\x82\xfa\xff\xf3\xf3\xab\x7f\x62\
-\x75\xe4\x7b\x45\x06\x5e\x48\xfb\xcf\xbf\x9d\x12\x3e\x9c\x35\xca\
-\x5f\xf2\x85\xfb\x30\x1d\x45\x1c\xd9\x47\x8d\xe8\x80\xbd\x9d\xd8\
-\xef\xa8\xde\xaf\x4d\xb6\x8f\x37\xf8\xd9\xfa\x66\x40\x1f\x9e\x7a\
-\xc8\x37\x4c\x63\x75\xe3\xfe\x45\x8d\xe8\x20\x26\x18\xe4\x61\x1a\
-\xcb\x5d\xec\xcd\x43\xfd\xdd\x72\x59\xc3\xb8\x07\xc1\x88\xed\x8d\
-\x0c\xae\x35\xff\x20\xa4\x2d\xf0\xff\xb6\x77\x2d\xad\x96\x1d\x55\
-\xf8\xdc\x36\x38\xca\xc0\xb4\xa0\x98\x81\x18\x33\x74\x60\x88\x22\
-\x38\x11\x41\x0c\xf8\x07\x24\xdd\xa0\xa2\x38\x71\xe2\xc0\x5f\xe0\
-\x6f\x10\x42\x26\x99\x84\x40\xe2\xe3\x0f\x48\x4b\x07\x05\x71\xec\
-\x24\x23\x45\x31\x33\x1f\xa3\xd0\x88\x09\xd8\xed\xfa\x56\xad\xaf\
-\xf6\xda\x5f\xed\xbd\x6b\xef\x7b\xce\xed\x98\xa4\x0a\x6e\xad\x55\
-\xeb\xf1\xad\x47\xd5\xde\xe7\x9e\x7b\x1e\xd7\x87\x6c\x80\x2c\xc3\
-\x68\x22\x8d\xff\xa4\x2a\x9c\x02\x68\x82\xa6\xc7\xff\x50\xff\xa6\
-\x3d\x90\x7c\xf5\x2b\x97\x7d\x5b\xac\xa6\xf2\x38\xd7\xef\xbe\x5b\
-\x3e\xbf\x72\xff\x77\xf6\x4e\xb1\xbf\x5a\x64\xf4\x01\x63\xa1\xfe\
-\x2a\x33\x75\xaf\x5d\xd5\x16\x38\xb0\x37\x07\xee\x01\xd6\x0a\xaf\
-\x82\xc6\xde\x1c\x28\x83\xbf\x26\xa0\xf9\xb8\x4d\x9a\x3c\xf6\xdd\
-\x1f\x3c\x7a\xb4\x7a\xa0\x92\xf1\x22\xab\x11\xa4\x02\x26\x47\x7c\
-\xfc\xc6\xf1\xdd\xbb\x8b\x48\x8f\x4d\xf8\xea\xeb\xa7\xd3\xbd\xfb\
-\x25\x9c\xe6\xc7\xcd\x00\xdd\x35\x0e\xd6\xaf\x98\x4d\x3c\xc1\x93\
-\x65\x3d\x2c\xcc\xaf\xc9\xdf\x02\xd0\xc7\x63\xc9\x7e\x68\xfc\xc6\
-\x5f\x0f\x94\x3a\xe8\x9a\xc1\x40\x31\x24\x9e\xe2\x17\xa3\x69\x1e\
-\xf5\x1f\xbb\x80\xb5\x5f\xda\x5f\x69\x7f\xb3\x1f\x53\xe7\x0b\xd7\
-\xf8\xbf\x8f\xfb\xff\xa4\xfd\x75\xe2\xeb\x5f\x2b\x6f\xfb\xff\xf4\
-\xa7\x34\xd3\x0f\xc6\x1a\x1f\xfc\xbc\xff\xdb\xd3\xe9\xf7\x7f\x38\
-\x9d\xfe\x6d\x1f\x7c\xd4\xfe\x6a\x15\xba\x9f\xf5\xe2\x8d\xeb\xa9\
-\xb9\xbc\x64\x7f\x14\xff\xfd\xd8\xff\x2b\x3c\x80\xd4\xc2\x9a\x8c\
-\x4d\x43\x59\x35\x3a\x8f\xf9\xce\x8b\xe5\x0b\xd4\xce\x43\xb9\x9e\
-\xf7\xaf\x7f\x73\x3a\xbd\xf6\x0b\xf3\x9d\x2a\x9e\x03\xb1\x56\x50\
-\x8c\x66\x47\x8a\xf8\x62\xf3\x4d\xc7\x3b\x8a\x7f\xd4\xfe\xdc\x46\
-\xdc\x74\xbc\xa3\xf8\x47\xed\x47\xfd\xe7\x75\x60\xa5\xdf\xf8\x6f\
-\x7d\x5f\x7a\xee\x74\xfa\xf2\xf3\xe5\x19\xca\x79\x41\x6e\xd6\xfb\
-\x6f\xf6\xda\xc6\x1f\xed\xc3\x8d\xf8\x80\xe3\x9f\xff\x72\x30\xd6\
-\x4a\xfd\xab\xf7\xa7\x83\xf0\xf5\xde\x8d\x38\x18\xbd\xfb\xd9\x35\
-\xf2\xf1\x07\x10\xde\x4f\xd5\xbf\x44\x9d\x66\x8d\xdf\xd8\xab\x40\
-\x1d\x02\xea\x85\x6f\x9c\x4e\x78\x20\xb9\xee\x17\xb0\x4d\x19\xed\
-\xe3\xf0\x67\xab\xd7\x7e\x3e\x3d\xf3\xa0\x97\xa6\xa7\xe9\xd3\x8e\
-\xb4\x6b\xaf\x00\xea\x40\xa0\x35\x7a\xa6\xbf\x86\x53\x38\x0d\x7b\
-\x71\x7b\x0d\xa8\x01\x34\x01\x5d\x9f\xe9\xaf\xe1\x14\x4e\xc3\x5d\
-\xdc\x5e\x03\x6a\x00\x4d\x40\xd7\x67\xfa\x6b\x38\x85\xd3\x70\x17\
-\xb7\xd7\x80\x1a\x40\x13\xd0\xf5\x82\xff\xed\xdb\xf1\x60\x62\x2f\
-\xbe\xe3\xad\xba\x9b\xff\x63\x5d\xf1\x6e\x60\xfd\x1f\xfb\xf3\xd4\
-\x5b\xf6\xd6\x7f\x7c\x4f\x15\xbe\x6a\x05\xdf\x4c\x8c\xb4\x7d\x2c\
-\xe4\x5f\x6f\xe2\xb4\xd9\xa2\x67\xfa\x6b\xbb\x15\x4e\x43\x5f\xc2\
-\xfe\xea\x0e\xfe\x84\x15\xc8\x97\x00\x24\x06\x20\xf5\x29\x5a\x7e\
-\xca\x85\xd7\x44\x7e\xfc\xa3\x9b\x7f\x61\x1d\x2f\x98\xff\xec\xe5\
-\xf2\x61\x41\xe6\x06\x8a\xa1\x0d\xee\xe9\x8b\xd7\x34\xf7\xec\xb7\
-\xea\x9f\x50\x26\x4e\xed\x35\xc1\x1b\xcf\xd7\x52\x61\x0c\x64\x45\
-\x1e\x74\x69\x8c\xfa\xa7\x1e\xa1\x3f\xda\x2f\xdd\xcf\x7c\xfe\x17\
-\xfb\x69\x0d\xa5\x8d\xeb\x05\x50\x96\xcd\x2f\x94\xaa\xd7\x18\xdd\
-\xfd\x4a\x35\xc0\xf7\x6c\x3c\xa9\x87\xb5\x81\x2e\x0d\xed\x97\x26\
-\x70\xcb\xfc\x9e\x7e\xda\x1e\x48\x9e\x39\x9d\x3e\xff\xb9\xf2\x02\
-\x3c\x9e\xad\xdc\xd4\x07\xfe\xde\x7b\xaf\x7c\x3a\x1c\x9f\x14\xc7\
-\x33\x0d\x50\xbc\x28\x8e\xcf\xb8\x60\x74\xfb\x79\xe1\xfa\xd1\x36\
-\xc6\xdc\x13\x1f\x36\x79\xd0\x17\x14\xe3\x22\x78\xb3\x3f\x61\x15\
-\xdc\x3a\xf7\x36\xf4\x68\x02\x8a\x87\x6f\xb1\xbc\xfb\xed\x9b\x7b\
-\x8b\x2f\xde\x3e\xfc\xc6\x2f\x4f\xa7\xbf\xff\xb3\x94\xd4\x3b\xc0\
-\xb5\xf0\x60\x34\x5f\xed\xf8\xb9\xf5\x9f\x8d\x67\x79\x32\x07\xa4\
-\x4c\x1e\x14\x43\xf3\x1f\xf5\x4f\x3d\x29\x1d\xda\x9e\xb5\x7f\xda\
-\xe0\xa6\xdf\x06\x47\x19\x90\xc9\xaf\xed\x87\x1a\x34\xf6\x09\x63\
-\x11\xaf\xa7\x3f\x78\x03\x43\x8c\x3c\x3e\x08\xf5\x7f\xdc\xde\x47\
-\xfa\x19\x7b\x4b\xf0\x27\xed\x99\xca\xed\xa7\xca\x4f\xe6\xf1\x8c\
-\x05\x7f\xe9\xb8\xb2\x1f\x7c\xfa\x1c\x0f\x42\xfc\xcb\xc7\x03\xfb\
-\xe5\xf2\x1d\xfb\xf6\xdf\x77\xde\x29\x14\xdf\x76\x8c\x6f\x03\xfe\
-\x97\x7d\x92\x1d\x6f\xbb\xe5\x17\x1a\xa2\x0f\x3e\x64\x83\x64\x59\
-\x6f\xee\x2b\xe6\xcd\xf5\xf8\x61\xd8\xff\xab\x3b\xdf\xaf\xed\xc9\
-\x67\x67\x99\x97\x8e\xc9\xb2\xdb\x20\xed\x30\x6f\x68\xf8\x70\x11\
-\x1e\x48\xf0\x61\xa3\x4b\x0c\x7c\x48\xe7\x75\x7b\xe0\xf8\x93\xfd\
-\x4d\x92\x39\x3a\x2e\x76\x76\x26\x38\x18\x8d\xbe\xa0\x36\x64\x79\
-\xed\xfa\xf9\x1b\x59\xef\x82\xd5\xfe\x95\x2c\xa6\x99\xfd\xac\x78\
-\x29\x47\xb7\x1a\xf5\x4f\x9b\x36\xb5\x6d\x3f\x27\x1b\x2e\xcb\xb1\
-\xff\x76\xbe\x78\x06\xbd\xa9\x4d\x83\x4c\x4a\x19\x58\xe3\x79\xe6\
-\x61\x4f\xbe\xde\x91\x68\x0b\x8a\xd1\x39\xbf\x0d\x9e\xb9\x10\x62\
-\x8f\xbf\xdb\x6c\x4d\x04\x8b\x7c\x64\x79\x38\xff\x26\xdf\x83\xfd\
-\xd3\x54\x1b\x3c\x33\x60\x8e\x6e\xdb\xe9\x9f\xe2\x35\x6b\x82\xa5\
-\xfa\xe7\x0f\x20\x62\xd0\x00\x1c\x4d\x40\xf1\x3a\xfe\xf8\xc2\x32\
-\xfc\x27\xaf\xe7\xed\x05\x34\xfc\xc7\xb2\x23\x03\xdf\xaa\x8b\xf7\
-\x97\xe3\xab\x13\xfc\xeb\x49\xe0\x7c\x30\x7e\x63\xaf\x09\x74\xf2\
-\x57\xf3\x06\xaf\xe7\x7f\x6e\xbe\x8a\x7f\x2e\x9e\x16\xa4\xf8\xaa\
-\xd7\xf5\xb9\xf1\x7b\xf1\x7a\xf8\x3d\x7d\x2f\x5f\xd5\xf7\xf2\x51\
-\xfb\x73\xe3\xf7\xe2\xf5\xf0\x7b\xfa\x5e\xbe\xaa\xef\xe5\xa3\xf6\
-\xe7\xc6\xef\xc5\xeb\xe1\xf7\xf4\xbd\x7c\x55\xdf\xcb\x47\xed\xcf\
-\x8d\xdf\x8b\xd7\xc3\xef\xe9\x7b\xf9\xaa\x7e\x21\x9f\xab\x17\xed\
-\x19\x08\xe2\x2c\x0d\xb5\xd7\x7c\xf4\x06\xa9\xbf\x41\xa8\x7d\x17\
-\x2f\x25\x81\xaf\x40\x79\xee\x8b\xf6\xe5\x66\xf6\x67\xae\xa7\x3e\
-\x31\xfd\xc0\xc4\xbf\x24\xcd\x5e\xbc\x02\xfd\x87\xfd\x79\x8a\xef\
-\x80\xd0\x78\x09\xce\xd9\x23\xf1\xe1\xd0\xb5\x97\x80\x97\xac\x7f\
-\x4f\xfc\x6e\x7e\x5e\xf5\x34\x5d\xdc\x7e\xd4\x3f\x1d\x12\x9c\x17\
-\x6b\x30\x7f\x0b\x44\xd7\xa5\x3d\xfd\xf3\x34\x6d\x95\x73\xbd\xfd\
-\xea\xe9\x05\xee\xe2\xf1\xb5\xc0\x51\xff\x47\x6f\xff\x67\x9f\x44\
-\xd7\x03\x87\x0b\x00\x83\xb4\x39\xb0\x26\x70\x19\x26\xda\x19\xbf\
-\x6a\x6f\x36\x6e\xef\xd6\x65\xa2\x2d\x56\xd4\x81\xe2\xcf\x4f\x78\
-\x5b\x1c\x65\xc5\x7a\x3e\x53\x07\xba\x34\xf4\x40\x23\x31\xc8\x6a\
-\x82\x4b\x4e\x49\xc6\xdc\x48\xe9\xca\x78\x57\xc6\xb8\x2c\x04\x6e\
-\x67\xfc\xaa\xbd\x61\xbb\xfd\x42\x0c\x88\xa8\x0b\x38\xc7\xa1\x8c\
-\x2e\xc4\xe6\x7a\x8b\x8e\xfa\x6d\x2f\xac\x61\xbe\xe7\x68\x14\xf9\
-\x9d\x4d\xa4\x19\x29\xf7\xa2\xee\x8f\x31\x2e\x0b\x81\xdb\x19\xbf\
-\x6a\x6f\x29\xb8\x7d\xda\x34\xda\x42\x44\x5d\xc0\x8d\xfd\x4f\x3d\
-\x61\xcb\x72\xbf\x28\x5b\xa3\xe3\xfc\xdf\xfc\xf9\x7f\x02\x1b\xc2\
-\x0b\x8c\x17\x1b\x28\x86\x6e\x40\x4f\x5f\xbc\xd2\x6c\x38\x8e\xbd\
-\xb2\xeb\x5d\x7c\x83\xf2\xfc\x08\xb9\x70\x85\x65\x7c\x5e\x78\xa4\
-\x7e\xc3\x80\x6f\xc4\x77\x2c\x9b\x62\x79\xb8\xbe\x51\xff\x74\x26\
-\xd0\x56\xdd\x3f\xc8\x66\xc3\x1a\x9d\xf7\x67\xa6\xb3\x85\xfa\x37\
-\xfd\x35\x1b\xdf\x33\x3a\x8e\xfd\x9f\x37\x44\xfa\xcb\x73\x4f\x3a\
-\xce\xbf\x9d\x31\x9c\x9d\xb8\xe0\xfd\x2c\xd9\x14\xcb\xfe\xf9\x33\
-\x67\x9e\x49\x87\x31\x47\x9e\x59\xac\xc9\xfb\x19\x87\x40\x47\xd8\
-\xd7\x80\xa2\x57\x7f\xc6\x02\xc5\x40\xee\x60\xeb\x7e\xaa\x40\xf0\
-\x69\x47\x0a\x67\xe7\x03\xcf\xb1\x6c\x8a\x65\x93\x7f\x13\xdf\x9c\
-\x29\x43\x3e\xe4\x6b\x7e\xa6\x7f\xa2\x06\x43\xa2\xb1\x20\x85\x53\
-\xe6\xb1\x9e\x0d\x66\x12\x14\x04\x10\x14\x3b\x6f\x0b\xc6\x70\x2c\
-\xac\x29\x80\x7d\xe6\x03\x9c\xa2\x45\xbc\x88\x11\xa6\x73\x02\x47\
-\x3a\x81\x8d\x58\xb5\xe0\xb9\xda\x7d\x19\x0b\x0b\xe6\x42\x9a\x65\
-\x6e\xac\x13\x62\x61\x04\x65\x68\x8a\x3d\x1d\x5b\x30\x86\xe3\x62\
-\x4d\x81\xb9\xce\x78\x07\x9b\xec\x17\xf1\xe0\x13\x76\x0d\xf1\x80\
-\x93\xc1\xa8\xbf\xf4\x77\xec\x7f\x39\x29\x72\x3c\x5c\x98\xcf\x12\
-\xcf\x22\x29\x0c\x32\x5f\x50\xd2\xcc\x83\x1e\x74\xf1\xbc\x9a\x90\
-\x31\x1c\x0b\x6b\x0a\x04\x9f\x62\xd2\x45\x3c\xf8\xa4\x14\x66\x2c\
-\x14\x74\x02\x1b\xb1\xc6\xfe\x97\x2e\x49\x7b\x5c\x98\x7b\xc9\x7d\
-\x21\x85\x41\xe6\x0b\x4a\x9a\xad\xbf\x4f\xf8\x6e\xa0\xe9\x18\x1a\
-\x81\x9b\x11\x7a\x07\x33\x3e\x83\xce\x12\x28\x28\xb3\x0d\xce\xfa\
-\x1a\x23\xec\xea\x66\xaf\xc4\xa7\x2f\x29\xdc\x72\xec\x1a\x88\x06\
-\x07\xf3\xed\xc5\x57\xfd\xa8\xdf\x36\x60\xec\xff\xec\x0c\xf2\xe8\
-\xf9\xd9\xc4\x64\x63\x49\x56\x34\xa2\x94\xf3\xaa\xd7\x1f\x71\x48\
-\x1d\x7b\xb6\x08\x54\xca\x04\xaf\x77\x5e\xf5\x7c\x6b\x7c\xd5\xf7\
-\xf0\x98\x06\xa9\xe7\x1b\x29\x56\x92\x95\x92\xaf\xc6\xa7\x29\xa9\
-\xe3\xcd\x16\x81\x4a\x99\xe0\xf5\xf2\xd5\xfa\x34\xbe\xea\x7b\x78\
-\x4c\x83\xd4\xf3\xad\x85\x4b\xae\x58\x4a\xbe\x1a\x9f\x38\xa4\x70\
-\xf1\x1c\xc0\x60\x50\x41\x2a\x78\xbd\x7c\x7b\xf1\x55\xbf\x84\x67\
-\xef\x8e\x9e\x06\xf3\x00\x75\xde\x26\xd2\x26\xd9\xc9\xed\xfa\x9c\
-\x83\x47\xb0\xcc\xaf\x21\xa2\x41\x18\xa0\x99\x77\xa1\x4d\x19\x23\
-\xf3\xd4\x77\x68\x76\x71\xde\x26\xd2\x19\x76\x07\x67\xb7\xba\x09\
-\x68\x9e\x94\x2d\x81\xe4\x9a\x33\x4f\x5b\xfa\x82\x66\x9e\xfa\x0e\
-\xcd\x2e\xce\xdb\x44\x7a\x1d\xbc\x4e\xb8\x79\x8e\x39\xf8\x9a\x63\
-\xae\x39\xf3\xb4\xcf\x18\x99\xa7\xbe\x43\xb3\x8b\xf3\x36\x91\x8e\
-\xfa\xa3\x79\x6c\x52\xa7\x97\xbb\xd4\xc4\x02\xcd\xfc\x9a\x73\xde\
-\xf3\xcc\xd3\x3e\x63\x64\x9e\xfa\x0e\xcd\x2e\xce\xdb\x44\xba\x2b\
-\xbf\x0e\x7e\xa3\x6e\x02\x9a\x05\x65\x8d\xb1\x09\x72\xcd\x99\xa7\
-\x2d\x7d\x41\x33\x4f\x7d\x87\x66\x17\xe7\x6d\x22\x5d\xc3\xf3\x17\
-\xd1\xf9\xa8\x86\x9c\xc0\x33\x37\x38\xbb\x2c\x02\x93\x5f\xd3\x77\
-\xf2\x6b\xd4\x0d\x1e\x62\x9b\xb0\xe6\x13\x7c\x7d\x0a\x1a\xb9\x55\
-\xbd\x21\x6e\xe5\xab\x01\x17\xe3\x05\x06\x6c\x5d\x3f\xea\x1f\xfb\
-\x1f\x07\x67\x9c\xff\x71\xfd\xf3\x9e\x51\xef\x0f\x71\x9f\xc0\x5a\
-\xcf\x07\x64\x47\x06\xb1\x41\x31\xfc\x5e\x66\x8b\x7a\x7f\x0b\xfe\
-\xff\xf9\xfe\xe7\xcf\x40\x50\x00\x7e\x78\x33\x06\x65\x11\xa4\x5e\
-\x20\x26\x1b\x68\x5c\x6e\x1e\xfd\xa1\x03\xcf\x41\x7e\x4d\x4f\xbb\
-\x35\x8a\x18\x18\x6b\xf1\x7a\xf9\xf6\xe2\xab\xbe\x87\xd7\xcb\x07\
-\xb9\x12\x33\xf3\xa3\xfe\xa9\x2f\xb9\x3f\xe8\xd1\xd6\xe8\xf5\xbb\
-\xb7\x5f\x8c\xb5\xd6\x7f\xd5\xf7\xf0\x7a\xf9\xa0\x16\x62\x66\x7e\
-\x2d\xfe\x56\xed\xd0\xf5\xe2\xf5\xf2\x65\x2e\x6b\xf1\x55\xdf\xc3\
-\xeb\xe5\x93\x6b\xce\xfc\x5a\x7c\xd8\x6c\x8d\x5e\xbc\x5e\xbe\x5a\
-\x1f\x62\x51\x96\x79\xe6\xd7\xc3\xeb\xe5\x93\x31\x33\x4f\xfc\x2c\
-\x03\xdf\x1b\xbd\x78\xbd\x7c\x59\xeb\x5a\x7c\xd5\xf7\xf0\x96\xf2\
-\x29\x2f\xa2\x53\x63\x88\x00\x61\x97\x11\x00\x1f\x12\x61\x20\x2d\
-\xd8\x03\xd2\x27\x94\x84\xc2\xd2\x3f\x60\x62\x82\xfa\x41\x13\xf2\
-\x61\x44\x5b\x52\x3e\xfb\x98\x3d\xe2\x26\x7c\xda\x91\x22\xb1\x9c\
-\xef\xec\x51\x0d\xf1\x35\x27\x14\x02\x21\x28\x06\x79\x1a\x0a\x9e\
-\x9b\xdb\x44\xf3\xe2\x34\xcd\xa3\x7e\xeb\x0d\x7b\x16\x6d\x61\x2b\
-\xb1\x1c\xfb\x8f\x26\x44\x1f\xbc\x21\x53\x4f\x62\x09\x52\xcf\x29\
-\x7b\x39\xce\xbf\xb7\xa5\xfc\x42\x9b\xce\x17\xcf\x16\xe9\xb8\xfe\
-\xed\xec\xa0\x19\xbc\x41\x91\x8f\x06\xb1\x4f\xa4\x6e\x47\x1b\x1e\
-\x3c\xf8\xd2\x80\xbd\x0e\x3c\x57\xd9\x14\xcb\xb2\x29\x69\x46\xec\
-\xcd\x17\xd1\x89\x4b\x9a\x7c\x0b\x6b\xc8\x5b\x05\x2c\xd9\xbb\x8c\
-\x19\x01\x18\x7c\x04\x70\x2c\x2c\x19\xf0\xc2\xf8\x8c\x53\x29\x63\
-\xaf\xe5\xe3\xc9\xd6\xf4\x62\x95\xc8\x85\xf3\x63\xdd\xa4\xe8\x8d\
-\xf3\x2b\xf9\xa5\x4c\x0a\x4b\x3b\x52\xe9\x6f\xad\x3b\xf5\xd7\x65\
-\x2b\xf6\x34\x23\x5d\x8a\x77\xc9\xfc\x58\x37\xe9\xa8\x7f\xec\xff\
-\x25\xcf\xd7\x38\xff\x71\x05\xf3\x82\xc6\x75\x0f\xfe\x8c\xeb\xbf\
-\x7c\x90\x70\x27\x60\x73\x03\xa1\x1f\x29\x0c\x96\xf8\x90\x81\x30\
-\x67\x98\x3a\x6f\x42\xe6\x0f\x59\x1e\x38\x3c\xb4\x81\x9c\x7c\xb5\
-\x0f\xdc\x59\xcc\x0c\xe0\x0e\xe1\x08\xb9\x26\xa0\xfe\x3d\xfb\x8c\
-\x4d\xbc\x4c\xd7\xf8\x88\xa3\xe1\x9b\x7a\x04\x7f\xd4\x3f\xed\x39\
-\x5a\xd3\xf4\x4b\xf7\x4f\xfa\x57\x1c\xc2\x11\x3a\xdd\x00\xf5\x1f\
-\xfb\x3f\xf5\x68\xa9\x5f\x90\xe5\xa1\xfd\x83\x8e\xb2\xcc\x87\x0c\
-\x84\x2d\x86\xba\xd9\x4f\x08\xd3\x18\xe7\x7f\xea\x11\xda\xd2\xf4\
-\x8b\xbd\x26\x4d\xbd\x73\x96\xcd\x06\xc5\xd0\x0d\xa0\x1f\x69\xcf\
-\xbe\xa0\x4c\xb3\xf9\xcd\x5e\x44\x77\x0d\xc1\x6c\xa1\x09\x43\xc5\
-\x18\xb0\x25\x0f\x7a\x13\x83\xb8\xa4\x88\x91\x79\x8d\xe9\x07\xce\
-\x0c\x40\xeb\x48\x3c\x7c\x79\x28\xa1\x3f\x6c\x6f\x3e\x8e\x01\x67\
-\x1b\xe4\x41\x6f\x62\x10\x97\x14\x31\x32\xaf\x31\x0f\xd7\x63\xbd\
-\xe1\x9f\x4d\x2a\xd6\x56\xbf\x22\x3e\x4d\x90\x0b\xf8\xad\x9c\x2a\
-\xee\x35\x18\xe2\x92\x02\x22\xf3\x0a\x39\xea\x3f\xb8\x9f\x63\xff\
-\xc7\xf9\xb7\x0b\x0a\xd7\x4d\x1d\x89\xc7\xb5\xe6\xd7\x54\x28\x79\
-\xad\xd3\x04\x7a\x7f\x0d\x64\xed\x6f\xae\x7a\x87\xe4\xc5\x4b\xaa\
-\x17\x2c\x6f\x46\x6b\x78\x8d\xde\x12\xf0\x24\x23\xc1\x7a\x37\x62\
-\x86\x94\x07\x6d\xfc\xcd\x8e\x32\x98\x90\x07\xad\x23\xf1\x4d\x03\
-\x4c\xe7\xb2\xb0\xd1\x7a\x6a\x72\xa1\x27\x14\xa9\xda\x6b\xfc\xae\
-\x1e\x39\xdb\x4f\x2d\x57\x13\xac\x45\x14\xe6\x28\xbe\x7b\x31\xd9\
-\x88\x93\xe3\x39\x9e\xc9\xd9\x2f\xcd\xb7\x26\x17\x18\x84\x22\x55\
-\xfb\xa3\xf9\x35\xe5\x36\x82\x52\x37\xe7\xa3\xf8\xee\xc7\x64\x6d\
-\xa1\xf0\xa3\xfe\x71\xfe\xfd\x4c\xc4\x19\xd1\xf3\x3c\xce\x7f\xba\
-\x68\x8c\xe5\xa5\x44\x8a\x7e\x95\x67\x20\x7e\xa5\xc5\x0d\x18\x86\
-\x6b\x0d\x0d\xbb\x4a\xcc\x0e\x20\x44\x26\xef\x14\x46\x07\xf5\xc4\
-\xa9\x94\xd8\xa0\x3b\x06\xcd\x48\xdb\x3b\x86\xe4\x1b\x98\xb4\xef\
-\xde\x50\x34\x87\x83\xf5\xf5\xfa\x53\xeb\x8e\xfe\x37\xf9\x6b\x7c\
-\x59\xb3\x0e\xd2\xc6\x5f\xf3\x1d\xf5\x7b\x07\xd8\xaf\xb1\xff\x9d\
-\x07\x14\x39\x6f\x47\xaf\xef\x71\xfe\xad\x81\xbc\x06\xd1\x4b\xf2\
-\xbc\xde\x95\xe2\x60\x42\xc6\x03\x0a\x9f\x8d\x41\x33\xd2\xc7\x71\
-\xfd\x97\x17\xd1\x23\x29\x06\x9e\x51\x5b\x70\xcd\x5a\x58\xe7\x46\
-\x2d\x45\x45\x47\x52\x48\x33\xaf\x00\xd0\x31\x08\x75\xc9\x9e\x0f\
-\x4c\xa4\x30\xc9\x3c\x5d\x56\x29\xb1\x48\xc5\x90\xe2\x19\xb5\x05\
-\xd7\x4c\x6d\xd4\x2f\x8d\x5b\x5b\xb2\x71\xa4\xb0\xcb\xbc\xfa\x41\
-\xc7\x26\x53\x97\xec\xb9\xd7\xa4\x30\xc9\x3c\x5d\x56\x29\xb1\x48\
-\xc5\x90\xe2\x19\xb5\x05\xd7\x4c\x6d\xec\xbf\x34\x6e\x6d\xc9\xc6\
-\x91\xc2\x2e\xf3\xea\x07\x1d\x9b\x4c\x5d\xb2\xe7\x5e\x93\xc2\x24\
-\xf3\x74\x59\xa5\xc4\x22\x15\x43\x8a\x67\xd4\x16\x5c\x33\xb5\xb1\
-\xff\x53\xe3\xf0\x39\x90\x07\x75\xc9\xce\x80\xda\x8f\x2f\x83\x3a\
-\x5f\xc4\xd5\x9c\x9b\x07\x9a\xf9\x6a\x90\x9d\x8c\xf7\x8d\x08\xea\
-\x3c\xfc\x60\x8c\x09\x3f\xb0\x27\xcd\xbe\x26\xde\x35\x1c\xcc\x2c\
-\x89\x07\x27\xca\xf6\x00\xe4\x98\xc6\xfb\x32\x68\x56\x11\x2a\xd7\
-\x9c\x79\xea\x0b\x80\xad\xe0\x6c\x3f\x9e\x4a\x50\xe7\x6d\x22\x75\
-\x06\x76\x10\x84\xbd\x71\x91\x84\x73\xfd\xc9\xc1\xcc\x0c\x34\xf3\
-\x7d\xcf\x62\x81\xb8\x18\x11\xdf\x97\x36\xc5\xb2\xaa\x9c\xb1\x29\
-\xd7\x9c\x79\xea\xdd\x11\x8b\x00\xf0\x94\x8c\xaf\xe9\x19\xe3\x32\
-\x0a\x60\x07\x7e\x2d\x20\xb0\xb6\x86\x83\x99\x01\xf1\x60\x4b\xd9\
-\x96\x1f\x75\x88\x8b\x11\xf1\x7d\x69\x53\x2c\xab\xca\x19\x9b\x72\
-\xcd\x99\xa7\xde\x1d\xb1\x08\x00\x4f\xc5\xf8\x9a\x9e\x31\x2e\xa3\
-\x00\x76\xe0\xd7\x02\x02\x6b\x6b\x38\x98\x19\x10\x0f\xb6\x94\x6d\
-\xf9\x51\x87\xb8\x18\x11\xdf\x97\x36\xc5\xb2\xaa\x9c\xb1\x29\xd7\
-\x9c\x79\xea\xdd\x11\x8b\x00\xf0\x54\x8c\xaf\xe9\x19\xe3\x32\x0a\
-\x60\x07\x7e\x2d\x20\xb0\xb6\x86\x83\x99\x01\xf1\x60\x4b\xd9\x96\
-\x1f\x75\x88\x8b\x11\xf1\x7d\x69\x53\x2c\xab\xca\x19\x9b\x72\xcd\
-\x99\xa7\xde\x1d\xb1\x08\x00\x4f\xc5\xf8\x9a\x9e\x31\x2e\xa3\x00\
-\x76\xe0\xd7\x02\x02\x6b\x6b\x38\x98\x19\x10\x0f\xb6\x94\x6d\xf9\
-\x51\x87\xb8\x18\x11\xdf\x97\x36\xc5\xb2\xaa\x9c\xb1\xc9\x6a\x7e\
-\x70\xcb\xde\xab\xff\x76\x12\x38\x8b\x66\xf8\x4f\x31\x5a\xcd\xc7\
-\x03\x98\x0d\x03\x20\x57\xf0\x35\x7f\xe0\xd8\x7a\x12\x04\x0f\xd9\
-\xc2\xc8\x9b\xb0\x27\xbe\x63\x1b\x4e\x8d\x17\xfc\x02\xb4\x8b\x7a\
-\xf6\x47\xe3\x8f\xfa\x4b\xa7\xc7\xfe\x4f\xe7\x7e\x9c\xff\x74\x3d\
-\xda\x05\xe7\xd7\xdc\xce\x0b\xf4\xe8\xf5\xd7\xbb\x9e\xf5\x3e\xd0\
-\xb3\x3f\x1a\xff\x23\x7f\xfd\xdb\x63\x07\xfe\x45\xf0\x3d\x6d\x34\
-\xd7\xbd\x06\xf1\x5c\x90\xf2\xe2\x01\xcd\xfc\x5e\x3d\xe2\x72\x93\
-\xc1\x6b\xfc\x2c\x03\xdf\x1b\x7a\x20\x60\x4f\x59\xcf\x17\x7a\x8d\
-\x8f\xdc\x58\x17\x6b\xca\x94\x3a\xd0\xcc\xd3\x26\xcb\x32\x4f\x3d\
-\x62\x82\xe7\x80\x0d\x06\x68\xe6\x5d\xb8\x63\x62\xad\xa0\x99\xdf\
-\xe1\xea\x26\x39\x26\x78\xe4\x46\xca\x9c\x33\xa5\x0e\x34\xf3\xb4\
-\xc9\xb2\xcc\x53\x8f\xa0\xe0\x39\x60\x83\x01\x9a\x79\x17\xee\x98\
-\x72\xcd\x99\xdf\xe1\xea\x26\x39\x26\x78\xe4\x46\xca\x9c\x33\xa5\
-\x0e\x34\xf3\xb4\xc9\xb2\xcc\x53\x8f\xa0\xe0\x39\x60\x83\x01\x9a\
-\x79\x17\xee\x98\x72\xcd\x99\xdf\xe1\xea\x26\x39\x26\x78\xe4\x46\
-\xca\x9c\x33\xa5\x0e\x34\xf3\xb4\xc9\xb2\xcc\x53\x8f\xa0\xe0\x39\
-\x60\x83\x01\x9a\x79\x17\xee\x98\x72\xcd\x99\xdf\xe1\xea\x26\x39\
-\x26\x78\xe4\x46\xca\x9c\x33\xa5\x0e\x34\xf3\xb4\xc9\xb2\xcc\x53\
-\x8f\xa0\xe0\x39\x60\x83\x01\x9a\x79\x17\xee\x98\x72\xcd\x99\xdf\
-\xe1\xea\x26\x39\x26\x78\xe4\x46\x1a\x79\xde\xbb\x65\xff\x67\xfe\
-\x15\x93\x3f\x44\x00\x57\x06\xcd\x3c\x74\x8b\x09\x04\x8a\x23\xd3\
-\x26\xa8\xdb\x27\x59\xed\x0c\x7d\x90\x22\x79\xd0\xcc\x43\x67\x23\
-\xc7\x64\x0e\x99\x66\x9b\xcc\xd3\x06\x05\x39\x06\x8a\xb1\x1f\x10\
-\x52\xf0\xd0\x91\x66\x1e\x32\xca\x49\x1d\x27\x7c\x8c\x94\x91\x73\
-\x36\xde\x6d\x82\x66\x9e\xfd\x71\x27\xfa\x60\x41\x1e\x34\xf3\x6e\
-\x18\x78\x50\x99\x6e\xe9\x07\x66\x1e\x67\xc5\x1e\x45\xb8\x3e\x0a\
-\x02\x19\xf5\x97\xbd\xe5\xbe\x92\xa2\x4f\xe4\x41\x33\xcf\xde\xa3\
-\x7d\xb9\xdf\xb3\x3d\x8b\x3d\x82\xac\xda\x27\xd9\xcc\x16\x40\x18\
-\xa6\xf7\x01\x9a\x79\x8a\x43\x46\x3c\xa5\x30\xcb\xf9\x90\xa7\xdd\
-\xd8\xff\xe8\x4f\x6c\x28\xc8\x38\xff\x97\x39\xff\xf6\x86\x93\x87\
-\x78\xec\xb8\xf5\xc6\xab\x57\x6f\xd9\xe1\x7d\x39\x1f\xc6\x7a\x00\
-\xe5\x80\xc2\x66\x73\xf8\x0e\x99\x45\x6c\x98\x52\x3f\xe0\xa6\xdb\
-\x8d\xaf\x78\x08\x4e\xd9\x66\x22\x45\x49\x53\x50\xfc\xe0\x7a\x24\
-\x5d\xb8\x5e\xeb\xc5\xb8\x3b\xbf\x12\x66\x9a\x35\x20\x03\x07\x1d\
-\xf5\x97\x0d\xd8\xdd\x5f\xed\x27\x3a\x4d\xd9\xd4\xf5\x55\x8e\xa6\
-\xd1\xfe\xb1\xff\xd1\x3e\x9c\xfd\x71\xfe\xcb\xb1\x61\x1f\xb0\xf2\
-\xeb\x33\x68\xe6\x8b\xe5\x8e\x59\x0f\x1c\x0f\x5e\xd0\x0f\xd9\xf5\
-\xff\x32\x1e\x3b\xfc\xcb\x14\x1f\x3d\x7b\xfa\x89\xb5\xe7\xcd\x6e\
-\x8b\xd8\xed\x38\x81\xbe\xb4\x29\x96\xce\x50\x06\xa1\x37\x2c\xe8\
-\xe2\x86\x68\xc3\xe1\x0c\x19\xe8\x0e\xff\x8c\x99\x79\xd6\x91\x65\
-\xe0\xf5\x07\x76\xb4\xa1\xcf\x26\x45\x5e\x18\xcc\x2f\xf8\x58\x96\
-\x9c\xb3\x9e\x76\x46\x19\x87\x14\x66\xf5\x66\xc8\x83\x06\xfb\x51\
-\xff\xd4\xdf\x4e\xff\xd8\x4b\xd0\xcc\x7b\x6f\x6d\xca\x32\xda\x64\
-\x0a\x3b\xda\xd0\x67\x93\x22\x1f\x0c\xe6\x15\x7c\x2c\x5d\xee\x26\
-\xd4\x27\xca\x38\xa4\x8e\x33\xce\xbf\xb7\xc1\xcf\x3c\xcf\x3d\xa9\
-\xf5\xce\x7b\x15\x94\x7d\x23\xf5\xd6\xa3\xbf\x36\x20\xa3\x9c\x94\
-\x72\x52\xda\x64\x4a\x1d\xe8\xae\x11\xf1\xc6\xfe\x9f\xde\x7c\xf4\
-\x8c\x3f\x66\x9c\xfc\x01\xe4\x57\x3f\xbd\x7a\xef\xf4\xec\xe9\x5b\
-\xd6\x9f\x97\xf0\xd4\x04\x7d\x5a\xfa\x41\x93\xd9\x43\xf0\x7a\xfe\
-\xb3\x2c\xf3\xb0\xcb\xb6\xd0\x61\x70\xb3\xb9\xa9\x59\xe6\x06\x9d\
-\x29\x63\x66\xbe\xe3\xb6\xaa\x66\x6d\x4b\xb5\x67\x1d\x01\x72\xcc\
-\xcc\xef\xd5\x8f\xfa\x4b\xa7\xc6\xfe\xcf\xaf\x05\x9e\x9f\x1e\xcd\
-\x67\x2e\xf3\x3d\xbf\x35\x7d\x3e\xe3\x4b\xd7\x00\xfc\x68\x03\x3e\
-\xc7\xcc\x3c\x74\x18\x59\x96\xf9\xa2\x9d\xd7\x9c\xaf\x05\xea\x7b\
-\x34\x63\x66\xbe\xe7\xb7\xa6\x67\x6d\x4b\xb5\x67\x1d\xfd\x73\xcc\
-\xcc\xef\xd5\xe7\x9a\x33\x4f\xff\x1e\xcd\x31\x33\xdf\xf3\x5b\xd3\
-\xe7\x1a\x97\x7a\x10\x8f\x0d\x2f\xe1\xb1\xc2\x1f\x33\x0c\x88\x71\
-\x2b\xe6\x9d\xef\x3d\xfa\xc2\x7f\x4f\xa7\x1f\x3e\x7a\x78\x7a\xc1\
-\x4e\xcb\x67\xcd\xe2\x49\x16\xe7\x1f\xb4\x32\x64\x50\x0c\xc8\x29\
-\x73\x01\xe4\x88\x4c\x54\xf2\xa0\x0b\x83\xbe\xd7\xc5\x6b\xfc\x2d\
-\x06\x53\xf0\x70\x1a\x9f\x4a\xe6\x27\x39\xa9\x5a\xeb\x6b\xe2\x19\
-\x3e\x65\x0e\xd5\x00\x68\x42\xf3\x80\xf4\x05\xc5\xd0\x78\xb5\x18\
-\xe6\x2b\xf5\x34\xfe\x86\xc1\x14\x0a\xa0\x08\xa8\x24\x9e\x1b\x4d\
-\x93\xaa\x35\x9f\x26\xde\xa8\x7f\xec\xbf\x1d\x1a\x9c\x13\x1f\xcd\
-\x01\x32\x29\x65\x61\x92\xc9\xb9\xe7\xa9\xf1\xd7\x70\x72\xbd\xd4\
-\x5c\x90\xd3\xc2\x60\xaa\x54\x8f\xf3\xef\xf7\xb7\x07\x76\x4f\x7f\
-\xdb\x7a\x7d\xef\x63\xb7\x4e\xaf\xf8\x4b\x1e\xa9\x77\xff\x03\xbd\
-\xa0\x7f\xb0\xc0\x59\x80\x24\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
-\x42\x60\x82\
-\x00\x00\x03\x12\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\
-\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xe2\x03\x02\x04\x32\x2f\x3b\x59\x63\x86\x00\x00\x00\x19\x74\x45\
-\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\
-\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\
-\x00\x02\x7a\x49\x44\x41\x54\x68\xde\xed\xd8\x4b\xa8\x8d\x6b\x1c\
-\xc7\xf1\xcf\xc6\xce\xe6\xd8\x25\xb9\x0d\x44\x88\x72\xa2\x30\xc1\
-\x84\x5c\x42\x71\x9c\x11\x29\x45\x06\x88\x94\x5c\x06\xe4\x32\x31\
-\x33\x32\xa0\x64\xe2\x96\x08\x21\x85\x93\xd2\x49\x92\x94\x5b\x29\
-\xb9\x76\x8a\x48\x31\x71\x89\xe3\xb2\x2d\x93\x47\xbd\xad\xde\x77\
-\xaf\xb5\x77\x6b\x6f\x7b\x6f\xff\x6f\xad\xc9\xfb\xfe\xff\xbf\xe7\
-\xf9\x3d\x97\xff\xf3\xac\x97\x20\x08\x82\x20\x08\x82\x20\x08\x82\
-\x20\x08\x82\xa0\x6d\x18\x8b\x26\x94\xb0\xfc\x77\x30\xfc\x4f\x32\
-\x7b\x17\xdd\xbb\xba\xd9\x39\xc9\x6c\x09\xb3\xba\xba\xd9\xee\xb8\
-\x97\xcc\x9e\xef\xcc\x46\x86\x60\x0b\xea\x2a\xc4\xad\x48\x66\x9b\
-\xf0\x67\xe6\xf9\x06\x8c\xec\xe8\x26\xbb\x61\x36\x4e\xe3\x1b\xee\
-\x54\x88\x6f\xc4\xab\x64\x78\x5f\x99\xce\x87\xa4\x71\x18\x63\x3a\
-\x9a\xd1\xfe\xd8\x84\x27\x99\xbd\x58\xc2\xa1\x0a\x79\x3b\x53\xdc\
-\x7b\x0c\xca\x3c\x1f\x55\xa6\xf3\x1d\x27\x30\xfe\x57\x9a\xac\xc3\
-\x94\x34\x03\xff\x97\x75\xb0\x84\xd7\xf8\xbb\xc2\x92\xff\x98\x62\
-\xb7\x96\xbd\x1b\x8a\x2b\x39\x9a\x25\x9c\xc3\xa4\xf6\x34\xda\x88\
-\x55\xe9\xf8\xc8\xeb\xd0\x4d\x2c\x43\x43\x05\x9d\x43\x29\xfe\x39\
-\x7a\x17\x0c\xe8\x4c\x5c\x2b\x68\xe7\x12\xa6\xb6\xa5\xd1\x71\xd8\
-\x8b\x77\x39\x8d\x7f\xc1\x51\x4c\xae\xa2\x48\xc1\xc4\xb4\x4c\x4b\
-\x58\x5a\xc5\x4a\x9a\x83\x1b\x05\xc6\xaf\xa6\xba\x51\x57\x4b\xb3\
-\x97\x0a\x1a\x7b\x89\x1d\x18\xdc\xc2\xad\xf0\x6f\xca\xbf\x9d\x0a\
-\x54\xb5\x79\xf3\x70\xab\xa0\x2f\x67\x6a\x65\x76\x40\x8e\xf8\x63\
-\x2c\x46\x7d\x2b\xf4\x16\x64\x74\xa6\xb7\xb2\x76\xac\xcb\xe9\xd3\
-\xa9\x5a\x19\x9e\x95\x23\xfe\x1d\xc7\x5a\x71\x5c\xd4\xe3\x41\xa6\
-\xf8\xb4\xd4\xe8\x4c\x9c\xcd\xdc\xb9\xb3\xbf\xed\xb5\x32\xfc\x07\
-\x36\xa6\xe5\x5b\xde\x48\x13\x8e\xa4\x63\xa4\x1a\xd6\xa6\xbc\x6f\
-\x2d\x18\xac\x46\xac\xc1\xfd\x82\xa5\x7c\x1b\x2b\xd1\xa7\xd6\x45\
-\xab\x01\xab\xf1\x5f\x81\xf1\x03\x18\xd1\x4c\x7e\x5f\xbc\x49\xf1\
-\x7b\xab\x68\x6f\x34\x76\xe3\x6d\x4e\x7b\x9f\x70\x30\x1d\x4f\x75\
-\xda\x98\xfa\x74\xec\x3c\xc8\xe9\xc8\x57\xec\xc7\xb0\x9c\xbc\x5d\
-\x29\xe6\x1d\x06\x36\xa3\x3f\x17\x17\x0b\x66\xf3\x21\xd6\xa3\xdf\
-\xaf\xba\xf4\x2f\x2a\x38\x8f\xaf\x96\xc5\x0e\xc7\xe7\xf4\x6e\x73\
-\x33\x9a\x3d\xd3\xa0\x95\x0f\xe2\x49\xcc\x68\x8f\xd9\xac\xb6\x98\
-\xcc\xc7\xf5\x4c\x27\xf7\x94\xc5\x1c\x4f\xcf\x9f\xa1\x57\x33\x5a\
-\x13\x32\x1a\xcf\xb0\xad\x85\x47\x5e\xbb\x1b\x9f\x81\xcb\xe9\x1f\
-\xd0\x4f\x26\x67\x4c\x2c\xa9\xa0\xb1\x14\x17\xf0\x57\x67\xfb\x08\
-\xd0\x23\x33\x08\xd7\x32\x57\xce\x6e\x55\xe6\x75\x5a\x16\x66\x66\
-\x77\x5a\x57\xff\x92\xd1\x13\x4f\x6b\x7d\xed\xeb\xc8\x6c\xcc\x54\
-\xd9\xd1\x1d\x71\xbf\xd5\x9a\x17\xe9\xa2\xf2\x02\x8f\x04\x41\x10\
-\x04\x41\x10\x04\x41\x10\x04\x41\x10\x04\x6d\xc8\x0f\xf0\x6b\xdf\
-\x7c\xd8\x29\x0f\xa9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
-\x82\
-\x00\x00\x02\x86\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
-\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd2\x02\x01\x0b\x00\x03\xc4\x02\x9d\xda\x00\x00\x02\x03\x49\x44\
-\x41\x54\x78\xda\xbd\x95\xbf\xab\xda\x50\x14\xc7\x3f\x79\x7d\x2d\
-\x0a\xa5\x94\x82\x98\x74\x2b\x05\x41\xfa\x63\x08\x8a\xbc\xff\xc1\
-\xff\xc1\x31\x05\x41\xb2\xb9\x14\xb4\x0e\xdd\x8a\x6e\x25\x20\xd4\
-\xd1\xcd\x41\xe7\x2e\x19\x44\x04\x47\xfd\x0b\x1e\xa8\x9b\xa0\x49\
-\x90\x36\xb7\x4b\xae\xcd\x8b\xfa\x12\x2d\xf4\xc0\x81\x5c\xc8\x3d\
-\x9f\x73\xee\xf7\xdc\x73\xe1\x3f\xd9\x17\x40\x5c\xe8\x9f\x81\xa7\
-\x80\x92\x04\x20\x46\xa3\x91\xf0\x3c\x2f\xd6\x1d\xc7\x11\xb6\x6d\
-\x4b\xc8\xab\x00\x72\xd6\x24\x5d\x78\x9e\xc7\x66\xb3\x49\x5c\x72\
-\x36\x9b\x05\x78\x0b\xac\x81\x5d\x00\x3c\xb2\xdb\xf0\x62\x30\x18\
-\xb0\x5e\xaf\x01\x48\xa5\x52\x54\x2a\x15\xa6\xd3\x29\xb3\xd9\x0c\
-\xc3\x30\xb0\x2c\x0b\x5d\xd7\x29\x16\x8b\x72\x4b\x2a\x88\xa1\x9c\
-\x03\x5c\x54\x81\x10\x7f\x63\xa8\xaa\x0a\xf0\x11\xb8\x07\x36\x80\
-\x7f\x6a\xcb\x03\x40\xb5\x5a\xc5\x75\x5d\xda\xed\x36\xad\x56\x8b\
-\x6c\x36\x8b\xae\xeb\x14\x0a\x05\x19\xf0\x12\x33\x80\x1f\x84\x00\
-\x62\xb5\x5a\x9d\x74\x40\x0c\x87\x43\x91\xd4\xe6\xf3\xf9\xa1\x09\
-\xce\x6a\x20\xcf\x5c\x1e\x4b\xb9\x5c\x4e\x9c\x7a\x3e\x9f\x97\x9f\
-\x2f\x63\x35\x10\x42\xa0\xaa\x2a\x42\x08\xfa\xfd\x3e\xcb\xe5\x12\
-\x80\x74\x3a\x8d\x61\x18\x8c\xc7\x63\x26\x93\x09\xa6\x69\xd2\xe9\
-\x74\x28\x95\x4a\xdc\xdd\xdd\xa1\x28\x0a\xc0\xbb\x93\x1a\x00\x07\
-\x1d\x32\x99\x0c\xcd\x66\xf3\x81\xc0\x49\x2c\x00\x7c\x88\xad\xc0\
-\xf7\x7d\x34\x4d\x43\x08\x41\xad\x56\xc3\x71\x1c\xba\xdd\x2e\xf5\
-\x7a\x1d\x4d\xd3\x0e\x19\x87\x2b\x39\x0b\xe8\xf5\x7a\x27\x35\x68\
-\x34\x1a\xd7\x56\xf0\xfe\x00\xd8\xed\x76\x6c\xb7\xdb\xc4\x1a\xc8\
-\x33\x07\x0e\x55\x58\x96\x85\xeb\xba\x98\xa6\x79\x0c\xb0\x6d\x9b\
-\x5c\x2e\xf7\x28\xe0\x5f\x2a\xf8\x04\x7c\x8f\xbb\xc5\x52\x03\x20\
-\x56\x87\x28\xe0\x16\x78\x0e\xbc\x00\x9e\x05\x23\x44\xfa\x6b\xe0\
-\xe7\xb5\x5d\x24\x2f\xda\x6f\x60\x0b\xec\x81\x9b\xd0\x8c\x52\x80\
-\x95\xdc\x74\x89\x06\xd1\x59\x14\x1d\x7e\xe1\xb5\x02\xfc\xba\x56\
-\x83\x9b\xe8\x51\x47\xdc\x97\x53\x72\xb1\x58\x24\x0e\x1e\xfa\xd7\
-\x4f\x94\x0c\xf0\xf5\x8a\x27\xf5\x1b\xf0\x46\x49\x98\xd4\x63\x4d\
-\xa0\x44\xdf\x96\xc0\xf7\xc0\x26\x29\x40\x01\x9e\x04\xc1\xa3\x4d\
-\x70\x2a\x86\x08\x1a\x67\xaf\x5c\xf8\x88\xc4\x35\xc5\x91\x9e\x7f\
-\x00\xb7\xae\x9e\x43\x7d\xb2\x82\x67\x00\x00\x00\x00\x49\x45\x4e\
-\x44\xae\x42\x60\x82\
-\x00\x00\x76\x50\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x01\x2a\x00\x00\x01\x08\x08\x06\x00\x00\x00\xe8\x5e\xb9\x12\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\xd0\xcb\x00\x00\
-\xd0\xcb\x01\x9f\x0e\xc0\x23\x00\x00\x00\x09\x76\x70\x41\x67\x00\
-\x00\x01\x2a\x00\x00\x01\x08\x00\xdc\x89\x70\xd2\x00\x00\x74\x99\
-\x49\x44\x41\x54\x78\xda\xed\xbd\x67\x98\x5d\xd7\x79\x1e\xfa\xae\
-\x73\xce\xcc\x99\x72\xa6\x62\x66\x30\x00\x06\x04\x2b\xc0\xde\x04\
-\x52\x50\xa5\x2c\x51\x85\x12\x65\x39\xb2\x64\xcb\x45\x91\xcb\x75\
-\x42\xdf\x9b\x9b\xe7\x96\x27\xbe\x6e\x71\xb9\x56\x6c\xc5\x92\x15\
-\xeb\xda\x4a\x64\x3b\x91\xe4\xc4\x91\x13\x3b\x11\x25\xf6\x02\x12\
-\x20\x08\x90\x60\x01\x09\x90\x00\x89\x4e\xf4\x36\xfd\xcc\xcc\xe9\
-\x7b\xaf\xfb\x63\xb7\x55\xf7\x5e\xfb\x94\x29\xc4\xfe\xf0\x0c\xce\
-\xde\xab\xaf\x5d\xde\xfd\x7e\xdf\x5a\xdf\x5a\x04\x89\x5c\xf6\x32\
-\xba\xe5\x01\xef\xf0\x23\x00\xfe\x0f\x00\xb7\x00\x28\x02\xf8\x01\
-\x80\xff\x02\xe0\x34\x00\x5c\xd8\xfd\x9d\xa5\x6e\x6a\x22\x97\xa9\
-\xa4\x97\xba\x01\x89\x2c\xad\x30\x20\xb5\x05\xc0\xb7\x01\xdc\x03\
-\x60\x00\xc0\x08\x80\x0f\x03\xb8\x19\xc0\x7e\x00\x17\x73\x63\x9b\
-\x31\x7f\xe6\xd5\xa5\x6e\x72\x22\x97\xa1\xa4\x96\xba\x01\x89\x2c\
-\x0b\x69\x03\xf0\xcf\x01\xdc\xaa\x08\xff\x14\x80\xef\x03\xf8\x38\
-\x00\xc2\x00\x5b\x22\x89\x2c\x9a\x24\x40\x95\x08\x00\xf4\x01\xb8\
-\x3d\x24\xfe\x76\x00\x7f\x03\xe0\x17\x01\xb4\x25\x60\x95\xc8\x62\
-\x4b\x02\x54\x89\x00\x40\xb7\xfb\x17\x26\x1b\x00\x7c\x0b\xc0\xff\
-\x05\xa0\x27\x01\xab\x44\x16\x53\x12\xa0\x4a\x24\x8e\x0c\x00\xf8\
-\x7d\x00\xff\x06\xc0\x48\x02\x56\x89\x2c\x96\x24\x40\x95\x48\x5c\
-\xe9\x04\xf0\xeb\x00\xfe\x03\x80\xeb\x46\xb7\x3c\x80\x04\xb0\x12\
-\x69\xb5\x24\x40\x95\x48\x3d\x92\x01\xf0\x79\x00\xdf\x83\x33\x5a\
-\x98\x80\x55\x22\x2d\x95\x04\xa8\x12\x69\x44\x3e\x00\x07\xac\x3e\
-\x07\x20\x95\x80\x55\x22\xad\x92\x04\xa8\x12\x69\x54\xae\x07\xf0\
-\x1d\x00\xff\x0c\x40\x47\x02\x56\x89\xb4\x42\x12\xa0\x4a\xa4\x19\
-\x32\x0a\xe0\x4f\x01\xfc\x0e\x80\xfe\x04\xac\x12\x69\xb6\x24\x40\
-\x95\x48\xa4\xa4\x52\x69\xd0\xe8\x64\x3d\x00\x7e\x03\xc0\x37\x01\
-\x8c\x25\x46\xf6\x44\x9a\x29\x09\x50\x25\x12\x2a\x94\x52\xac\x1d\
-\x1b\xc3\x5d\x77\xde\x8c\x74\x3a\x0d\x4a\x43\x21\xab\x1d\xc0\x57\
-\xe0\x4c\x0e\xbd\x05\x48\x8c\xec\x89\x34\x47\x12\xa0\x4a\x24\x54\
-\x28\x05\x7a\x7b\xba\xf1\x4b\x5f\xfc\x38\x3e\xff\xe9\x0f\xa2\xb3\
-\xb3\x23\x0a\xac\x52\x08\xdc\x6e\x3e\x8a\xc4\xed\x26\x91\x26\x48\
-\x02\x54\x89\x44\x0a\xa5\x14\xb9\xee\x2c\xbe\xf4\x93\x1f\xc2\x57\
-\xbe\xf8\x71\xf4\xf7\xf5\xc0\xb6\x23\x95\xc1\x3b\x01\xfc\x47\x00\
-\x5f\x02\x90\x49\xc0\x2a\x91\x46\x24\x01\xaa\x44\x8c\x84\x52\x8a\
-\xf6\x4c\x06\xf7\x7d\xe4\x4e\xfc\xfa\x57\x3e\x8b\x75\x6b\x86\x4d\
-\xc0\xea\x2a\x00\x7f\x01\x67\xe9\x98\xee\x04\xac\x12\xa9\x57\x12\
-\xa0\x4a\xc4\x58\x28\x00\x42\x08\xde\x77\xe7\x26\xfc\xcb\x5f\xfd\
-\x1c\x6e\xd8\xb8\x21\x4a\x0d\x04\x80\x55\x00\xfe\x10\xc0\x57\x01\
-\x0c\x25\x60\x95\x48\x3d\x92\x00\x55\x22\xb1\x85\x52\x8a\x9b\xae\
-\x1b\xc3\xbf\xfc\x95\xcf\x61\xcb\x7b\x6e\x02\x40\xa2\x00\xab\x0b\
-\xc0\xbf\x80\xb3\xde\xd5\x35\xc9\x88\x60\x22\x71\x25\x01\xaa\x44\
-\xc2\x85\xb8\xbf\x94\xfd\xa1\xb0\x6d\x8a\xf5\xa3\x83\x78\xe0\xcb\
-\x9f\xc6\x27\x7f\xe2\x2e\xb4\xb5\xb5\x45\x81\x55\x06\xc0\xcf\x00\
-\xf8\x2e\x80\xbb\x80\x64\x44\x30\x11\x73\x49\x80\x2a\x11\x23\xa1\
-\x00\xa8\xfb\xbf\x07\x5a\x36\xa5\x18\xec\xeb\xc6\x2f\x7d\xf1\x63\
-\xf8\xe2\x67\xef\x41\x77\x77\x27\xec\x68\x55\xf0\xc3\x70\x46\x04\
-\x3f\x83\xc4\xed\x26\x11\x43\x49\x80\x2a\x11\x73\xa1\x01\x48\x79\
-\x62\x53\x8a\xce\x8e\x76\x7c\xfe\xbe\xf7\xe1\x57\xbe\x74\x1f\x86\
-\x06\xfb\x4d\x8c\xec\x37\x02\xf8\x6b\x00\xbf\x02\x20\x9b\x80\x55\
-\x22\x51\x92\x00\x55\x22\x91\x42\x23\xc2\x29\xa5\x68\x4b\xa7\xf0\
-\xb1\xf7\xdf\x82\xff\xf5\x2b\x9f\xc5\x86\xf5\xa3\x26\xcc\x6a\x2d\
-\x80\x3f\x03\xf0\x9b\x00\xfa\x12\xb0\x4a\x24\x4c\x92\xcd\x1d\x2e\
-\x73\xc9\x8d\x6d\x06\x80\x7e\x00\xff\x14\xce\x08\x1d\x27\x14\xc0\
-\xf0\xc8\x30\x3e\xf0\x9e\x4d\xe8\xca\x66\xfc\x30\xa8\x12\x02\x58\
-\xb7\x7a\x10\xd7\x5e\xb5\x0e\x17\x2e\xcd\xe0\xe2\xf8\x34\x08\x41\
-\x98\x64\x01\xbc\x0f\xc0\x6a\x00\x7b\x72\x63\x9b\xe7\x92\x0d\x24\
-\x12\x51\x49\xc2\xa8\x12\x31\x12\xc7\x3a\x45\x64\x90\x72\xcd\x56\
-\xde\xa1\x4d\x29\x36\x5e\xb9\x06\xff\xdb\x2f\x7d\x16\x1f\xda\x72\
-\x2b\x48\x2a\x15\x65\x64\xcf\x02\xf8\x55\x38\xaa\xe0\x8d\x40\x62\
-\x64\x4f\x44\x96\x04\xa8\x12\x31\x10\xaa\xa6\x51\x54\x79\x08\x9b\
-\xda\x18\x1d\xee\xc3\xaf\xfd\xfc\x27\x71\xff\xbd\x5b\x90\xcd\xb6\
-\x9b\xb8\xdd\x7c\x06\x8e\x91\xfd\xc3\x40\x02\x56\x89\xf0\x92\x00\
-\x55\x22\x86\x22\xa0\x12\x95\x0e\xb9\x74\x94\x52\xf4\xe6\x3a\xf1\
-\xf3\x3f\x75\x0f\x7e\xee\x9f\x7c\x0c\xbd\x3d\x39\x13\x23\xfb\x5d\
-\x70\xa6\x2f\xfc\x0c\x12\xb7\x9b\x44\x18\x49\x80\x2a\x11\x73\x89\
-\x04\x28\x3e\xc4\xb6\x29\xb2\xed\x19\xdc\xff\xd1\xcd\xf8\x5f\x7e\
-\xe1\xd3\x18\x5d\xbd\xca\x04\xac\xae\x81\x33\x31\xf4\x5f\x00\xe8\
-\x4a\xc0\x2a\x11\x20\x31\xa6\x5f\xf6\x12\xcf\x98\xde\xa6\xd0\x00\
-\x15\x21\x42\x10\x21\x04\x57\xac\x1d\xc6\x95\x63\xa3\x38\x7d\x7e\
-\x02\x53\xd3\x79\x90\x70\x2b\x7b\x17\x1c\x15\x30\x07\xc7\xc8\x5e\
-\x4c\x8c\xec\x97\xb7\x24\x8c\x2a\x91\x68\xa1\xe1\x0c\xaa\x5a\xb3\
-\x61\x59\x9e\xca\x27\xe7\x75\xfe\x28\x6e\xd9\x74\x05\xfe\xc5\x2f\
-\xfd\x24\xee\xbc\x75\x93\x49\xad\x5d\x70\x9c\x99\xff\x12\xc0\x95\
-\x40\x62\xb7\xba\x9c\x25\x01\xaa\x44\x62\x08\x85\x08\x59\x04\xc0\
-\xec\x42\x05\x27\x2f\xe6\x51\xae\x58\x20\x62\x72\xe6\xd0\xa6\x14\
-\x1b\xd6\x0d\xe3\x81\x2f\x7f\x06\x1f\xfd\xe0\x9d\x26\x0b\xf1\x65\
-\xe0\x2c\x13\xf3\x5d\x38\xcb\xc6\x24\x60\x75\x99\x4a\x02\x54\x89\
-\x44\x0a\xe5\xff\x93\xe2\x28\xa5\x98\x98\x2d\xe1\xf8\xf9\x59\x2c\
-\x94\xaa\x4c\x26\xe9\x10\x36\xa5\x58\x35\x90\xc3\x57\xbe\x78\x2f\
-\x7e\xea\xbe\x0f\xa2\x2b\x7a\x21\x3e\x02\xe0\x27\xe0\x8c\x08\x7e\
-\x0a\xc9\x42\x7c\x97\xa5\x24\x40\x95\x48\x6c\xa1\x34\xf8\x63\x42\
-\x31\x3b\x5f\xc6\xb1\xb3\x33\x98\x9d\x2f\xbb\x21\xcc\xec\x75\xff\
-\x98\x82\x52\x8a\xee\xce\x2c\x7e\xfa\xbe\xf7\xe3\x17\xbf\xf0\x09\
-\x0c\xf4\xf7\x9a\xcc\x64\xbf\x05\xce\x12\xc7\xbf\x04\xa0\x3d\x01\
-\xab\xcb\x4b\x12\x63\xfa\x65\x2e\x46\xc6\xf4\xe1\x61\xbc\xff\x3d\
-\x9b\xd0\x99\xcd\xc8\x86\x72\x00\x85\x52\x0d\xd3\x73\x0e\x38\x55\
-\x2c\x1b\xf9\x42\x05\xe9\x34\x41\x57\xb6\x0d\x84\x04\x00\xc5\x15\
-\x0a\x20\x9d\x4a\xe1\xaa\x2b\x46\xb1\x76\x74\x18\x27\xcf\x5c\x44\
-\x7e\x6e\x21\xca\xc8\xde\x0b\xe0\x23\x6e\xb5\xaf\xe7\xc6\x36\x57\
-\x12\x23\xfb\xe5\x21\x09\xa3\x4a\xc4\x4c\x28\x00\x10\x45\x18\xcf\
-\x9a\x00\xa0\x5c\xb1\x70\xf2\x42\x1e\xe7\x26\xe7\x61\xd9\x36\x74\
-\x7a\xa0\xb3\x10\x1f\x70\xd7\x6d\xd7\xe2\xd7\xbf\xf2\x93\xb8\x61\
-\xe3\x55\x88\x26\x56\xe8\x03\xf0\xbb\x70\xb6\xe7\x1a\x05\x12\xbb\
-\xd5\xe5\x20\x09\x50\x25\x62\x2e\x14\x92\x3d\x9d\x03\x29\x26\xbc\
-\x66\x51\x9c\x19\x9f\xc3\xa9\x8b\x79\x54\x6b\xb6\x03\x71\x9a\x39\
-\x58\x94\x52\x5c\x7f\xf5\x5a\xfc\xfa\x3f\xbd\x1f\x5b\x36\xdf\x84\
-\x54\x8a\x44\x01\x56\x16\xc0\xaf\xc1\xd9\xf8\x74\x13\x90\x80\xd5\
-\xbb\x5d\x12\xa0\x4a\xc4\x48\x68\xd8\xf4\x4e\x66\x99\x2a\xca\x20\
-\x19\xa5\x14\x17\xa7\x0b\x38\x7e\x6e\x16\x85\x72\xcd\x4f\xaa\x12\
-\xdb\xa6\x58\x3b\x32\x80\x5f\xfd\xb9\x4f\xe1\x13\x1f\x79\x2f\xda\
-\xdb\x23\x17\xe2\x4b\xc3\xd9\x4a\xfe\xfb\x70\xb6\x96\x4f\xc0\xea\
-\x5d\x2c\x09\x50\x25\x62\x2c\xf2\xe4\x84\x00\x9c\xa8\x10\xc3\x1a\
-\xdc\xa7\xe6\x4a\x38\x76\x76\x06\xf9\x42\x45\x5b\xb0\x37\x7d\xa1\
-\xbf\xa7\x0b\x3f\xf7\xb9\x7b\xf0\x85\xcf\xde\x83\x9e\x5c\xb7\xc9\
-\x9a\xec\x5b\x00\x7c\x0f\xc0\xe7\x01\xa4\x13\xb0\x7a\x77\x4a\x02\
-\x54\x89\xc4\x12\x5e\xfb\x53\xcf\x4a\xa7\x0a\x93\x54\xbe\x50\xc5\
-\xb1\xb3\x33\x98\xca\x17\xa5\xc2\x78\x35\xd0\x46\x67\x47\x1b\x3e\
-\xfb\xb1\xbb\xf0\x95\x9f\xfd\x24\x86\x87\x06\x4d\xc0\xea\x3a\x00\
-\xff\x01\xc0\xaf\x03\xe8\x48\xc0\xea\xdd\x27\xc9\xa8\xdf\x65\x2e\
-\x26\xa3\x7e\x43\xc3\xc3\x78\xdf\x1d\x9b\xd0\xd9\x91\x81\xa8\xbc\
-\x11\x00\x0b\xee\xa8\x9f\x0a\xa0\xbc\x03\x02\x8a\xaa\x65\x23\xbf\
-\x50\x01\x21\x04\xdd\x1d\x6d\x20\x84\x5d\x36\x86\x2f\x37\x95\x72\
-\xdc\x6e\xc6\xd6\x8e\xe0\xcc\xf9\x49\x4c\xcf\x44\xba\xdd\x74\x03\
-\xb8\x07\x40\x27\x80\xd7\x72\x63\x9b\x4b\xc9\x88\xe0\xbb\x47\x12\
-\x46\x95\x48\xb4\x88\x96\x72\xf1\x54\x30\x92\xf3\xc9\x79\xee\x55\
-\xa9\xd9\x38\x75\x31\x8f\x53\x97\xe6\x50\xb5\x6c\xbe\x00\xef\x8c\
-\x61\x65\xb7\xdd\x70\x25\x1e\xf8\xf2\xfd\xb8\xed\xe6\xeb\x4c\x5a\
-\xda\x0d\xe0\xff\x06\xf0\x2d\x00\x57\x00\x89\xdd\xea\xdd\x22\x09\
-\x50\x25\x62\x2e\x94\x28\xf1\xca\xff\x65\xfc\xfa\x44\xd3\x3a\x9b\
-\xcf\xb2\x29\xce\x4f\xcc\xe3\x9d\xf3\x33\x28\x57\x6a\xdc\xa4\x07\
-\x51\xcb\xa3\x94\xe2\xaa\xf5\x23\xf8\xb5\x9f\xff\x34\x3e\xfc\xbe\
-\xdb\x4d\xdc\x6e\xda\x00\xfc\x22\x80\xff\x04\xe0\x36\x20\x01\xab\
-\x77\x83\x24\x40\x95\x88\x91\x88\x33\xcc\x25\x42\xa5\x00\x27\x2f\
-\xc8\xdb\x13\x22\x50\x07\x9d\x11\xc1\xf1\x99\x22\x8e\x9e\x9d\xc1\
-\x5c\xb1\x0a\xbf\x08\x55\xdd\x94\x62\x64\x55\x2f\xbe\xfc\x85\x8f\
-\xe1\xfe\x8f\xbf\x1f\x9d\x66\x6e\x37\xf7\x02\xf8\x5b\xf7\x37\x71\
-\xbb\x59\xe1\x92\x00\x55\x22\xc6\x42\x43\x63\x64\xf6\x24\xad\xb8\
-\xe0\xea\x74\x6c\xf8\xcc\x7c\x19\x47\xce\x4c\x63\x6a\xae\x14\x5a\
-\xba\x4d\x29\x7a\xba\x3b\xf1\xf9\xfb\x3e\x80\x2f\xfd\xd4\xc7\xd0\
-\xdf\xdf\x6b\x62\x64\xbf\x0d\x0e\xb3\xfa\x45\x00\x6d\x09\x58\xad\
-\x5c\x49\x80\x2a\x11\x33\x89\xd8\x8a\x46\xcb\x9e\xbc\x48\x4a\xa5\
-\x70\x0f\x67\x16\x8a\x35\x1c\x3b\x3b\x8b\x8b\xd3\x05\x0e\x7c\xc4\
-\xb9\x5a\xd4\xa6\xc8\xb6\xa7\xf1\xf1\x0f\xdd\x86\x5f\xfe\xd2\x7d\
-\x58\xbb\x66\xd8\x04\xac\xae\x80\x63\xb3\xfa\xbf\x01\xe4\x12\xb0\
-\x5a\x99\x92\x00\x55\x22\xf5\x09\x3b\x3b\x9d\x2a\x36\x7e\x60\x26\
-\x52\xa9\x00\x8a\xc5\x17\x42\x80\x72\xb5\x86\x77\xce\xcf\xe2\xcc\
-\xf8\x3c\x2c\x71\x15\x50\x06\xad\x28\xa5\x48\x11\x82\xbb\x6f\xbb\
-\x0e\xbf\xf6\x8b\xf7\x63\xd3\x75\x1b\x4c\x5a\x3b\x00\xe0\xf7\x01\
-\xfc\x09\x80\x91\x04\xac\x56\x9e\x24\xd3\x13\x2e\x73\x31\x9d\x9e\
-\xb0\xe5\xce\x8d\xe8\xca\xb6\xc9\xfb\x3c\x10\x60\xa1\x54\xc5\xf4\
-\x5c\x89\x43\x1f\xe5\x5e\x10\x3a\x1b\x94\x5b\xa8\x4d\x29\xe6\x0a\
-\x15\x54\x6b\x36\xba\x3b\xdb\x90\x49\xa7\xa4\xe5\x65\xd8\x22\x86\
-\x07\x7b\x71\xdd\xd5\xeb\x31\x93\x2f\xe0\xc2\xa5\x49\xd8\x36\x0d\
-\xdb\x9e\x2b\x03\xe0\x3d\x00\xae\x85\xe3\xd0\x3c\x95\x4c\x5f\x58\
-\x39\x92\x30\xaa\x44\xcc\x84\x7a\x33\xd0\xb5\x91\xea\x99\xeb\xca\
-\x25\x61\xbc\x5c\xd4\x07\x29\x2f\xda\xa6\x14\x17\xa6\x16\x70\xf4\
-\xec\x8c\xbb\xb6\x95\x1e\xfc\xa8\x4d\x31\xb6\x7a\x10\xbf\xf4\x33\
-\x1f\xc7\xc7\x3e\xb4\x19\xd9\xac\x91\xdb\xcd\xe7\xe1\xcc\x64\xdf\
-\x02\x24\x23\x82\x2b\x45\x12\xa0\x4a\x24\x52\xd4\x5e\x7e\xe2\x28\
-\x9f\xda\x7d\x46\x2e\xcb\xfd\xe7\x1a\xb3\xa4\x5d\xe2\x3d\xb7\x9b\
-\x7c\x11\x87\x4f\x4f\x63\x76\xa1\xac\x58\x06\x19\x3e\xd3\xa2\xd4\
-\xc6\x40\x5f\x37\x7e\xf6\x27\x3f\x8c\xcf\xdd\xf7\x21\xe4\x72\x5d\
-\x26\x76\xab\x0f\xc0\x01\xab\xcf\x01\x48\x25\x60\xb5\xfc\x25\x01\
-\xaa\x44\x0c\x44\xc5\x95\xf8\xa8\x30\x70\x72\x92\x05\xec\x49\x3d\
-\x22\x08\x9f\xb5\x79\x31\x73\x85\x0a\x0e\x9f\x9e\xc1\xc4\x4c\x51\
-\x72\x80\x66\x57\xb9\xa2\x94\xa2\xab\xb3\x1d\x9f\xf9\xe8\x5d\xf8\
-\x85\x9f\xfe\x04\x86\x87\x06\x4c\xc0\xea\x7a\x38\xab\x2f\xfc\x73\
-\x00\xd9\x04\xac\x96\xb7\x24\x40\x95\x48\xb4\x78\xac\x87\x3a\x06\
-\x20\x16\x94\x02\x58\x21\x8a\x6c\x34\x16\x40\x89\xac\x0c\x00\x8a\
-\x95\x1a\x8e\x9e\x9d\xc1\xb9\xf1\x79\x66\xab\x2d\x95\x81\x9e\xa2\
-\x3d\x93\xc2\x87\xef\xbe\x11\xbf\xfc\xa5\x4f\xe3\xca\x2b\xd6\x9a\
-\x80\xd5\x28\x9c\x75\xad\xfe\x35\x80\xfe\x04\xac\x96\xaf\x24\x40\
-\x95\x48\xa8\xf8\xf0\xe3\x81\x8c\xf6\xdd\x0f\x54\x40\x09\x9c\x62\
-\x02\x14\x37\x22\x08\x67\x97\x9b\x13\x17\xf2\x38\x71\x61\x16\xd5\
-\x9a\x05\x7d\x0b\x9c\x11\xc4\xdb\x6f\xbc\x12\xbf\xfa\xf3\x9f\xc6\
-\xad\x37\x5d\x87\x50\xef\x40\x47\x72\x00\xfe\x15\x80\x7f\x07\x60\
-\x2c\x01\xab\xe5\x29\xc9\xa8\xdf\x65\x2e\x51\xa3\x7e\x00\xb0\x6a\
-\x68\x08\xef\xbb\x63\x23\xba\x3a\xda\xa4\x38\xe2\x8e\xfa\x4d\xcd\
-\x15\x75\x0b\x79\x2a\x03\xa5\xf5\xad\x54\x5a\x25\xa3\xef\x79\x23\
-\x82\xa5\xaa\x85\x5c\x67\x3b\xda\xd2\xa9\x90\xf4\xc0\x60\x7f\x0e\
-\xd7\x5e\x3d\x86\x85\x62\x05\xe7\x2e\x4e\xc0\xb2\xec\x30\xa7\xe6\
-\x34\x80\x5b\x01\xdc\x0c\x60\x5f\x6e\x6c\xf3\xa5\x64\x44\x70\x79\
-\x49\xc2\xa8\x12\x69\x5c\x04\xb5\x4e\xc5\x9c\x58\xf6\x14\xc6\xa0\
-\xd8\x70\xd1\xa1\x99\x02\xb8\x34\x5d\xc4\xa1\x53\xd3\xc8\x17\xaa\
-\x8a\xf4\xec\x39\xc5\xe8\x50\x1f\x7e\xfe\xf3\x1f\xc5\xa7\x3e\xba\
-\xc5\x64\xb7\x9b\x14\x80\x4f\xc2\x59\x88\xef\xa3\x48\xdc\x6e\x96\
-\x95\x24\x40\x95\x88\x91\xc8\x8b\xe5\xa9\xfd\xfe\xc4\x04\x61\xe0\
-\x24\x83\x8b\xf7\x27\xb8\xe4\x30\xf1\x00\x30\xb3\x50\xc2\xa1\xd3\
-\x53\x98\xcc\x97\xc2\x0d\xf8\x94\xa2\x37\xd7\x81\x9f\xfa\xe4\xfb\
-\xf0\xd3\x9f\xfd\x09\x53\xb7\x9b\x3b\xe1\xb8\xdd\xfc\x1c\x80\x4c\
-\x02\x56\xcb\x43\x12\xa0\x4a\xc4\x48\xb4\xe3\x7e\x0c\xdd\xf1\x40\
-\x26\x0e\x38\xb1\x71\x92\xcf\xa0\x14\xef\x08\x01\xb0\x50\xac\xe2\
-\xf0\xe9\x69\x9c\x9f\x5c\x50\x82\x8f\xdf\x02\x9b\xa2\x23\x9b\xc1\
-\xbd\x1f\xb8\x0d\x5f\xfe\xc2\x27\x4c\xdd\x6e\xae\x04\xf0\x17\x70\
-\x76\x6a\xee\x4e\xc0\x6a\xe9\x25\x01\xaa\x44\xcc\x85\x52\x35\x8d\
-\xa2\x1e\x24\xc9\x76\xa7\x70\xc6\x13\x0f\xa0\xfc\x74\x6e\x58\xb9\
-\x6a\xe1\xd8\xb9\x19\x9c\xbc\x38\x87\x9a\xbf\xb6\x55\x30\xd3\x9d\
-\x75\xf1\x49\xa7\x09\xee\xbe\xfd\x3a\xfc\xf2\x97\xee\xc3\xa6\x6b\
-\x8d\xdc\x6e\x06\x01\xfc\x21\x80\xaf\x02\x18\x4e\xc0\x6a\x69\x25\
-\x31\xa6\x5f\xe6\x62\x62\x4c\x1f\x1c\x1a\xc2\x96\xdb\x37\xa2\x4b\
-\xb5\xc2\x27\x01\xe6\x8b\x55\x4c\xb9\x6a\x58\x94\xb0\x06\x72\x40\
-\xc1\xd0\xa0\x02\x36\x2a\x85\xfb\x18\x69\x03\xf9\x85\x32\x2a\x55\
-\x1b\x3d\x5d\x6d\xc8\xa4\x89\xba\x50\x57\x86\x57\xf5\xe1\xaa\x2b\
-\xd7\x21\x3f\x57\xc0\x85\x4b\x53\xb0\xed\x50\x23\x7b\x1b\x80\xcd\
-\x00\xae\x86\xb3\x6a\xe8\x74\x62\x64\x5f\x1a\x49\x18\x55\x22\x86\
-\xc2\xf3\x1d\x89\x54\x85\xe5\x14\x6c\x4f\x61\xec\x49\xc7\xa0\xbc\
-\x70\x6e\xbe\xa7\x1b\x66\x53\x8a\xf3\x53\xf3\x38\x74\x6a\x1a\xf3\
-\xc5\xaa\x5c\x3f\xdb\x4e\x4a\x71\xc5\x9a\x55\xf8\x85\x9f\xbe\x17\
-\x3f\xf1\xc1\xf7\x20\x9b\x6d\x8f\x52\x05\x33\x00\xbe\x08\x67\x26\
-\xfb\xdd\x40\xe2\x76\xb3\x14\x92\x00\x55\x22\x46\xe2\xbc\xec\x44\
-\x37\x3f\xdd\x49\xc3\xae\xa6\x10\x02\x4e\x66\xea\x5d\x34\x40\x01\
-\xbc\x9a\x37\x99\x2f\xe1\xed\x93\xd3\x98\x76\xb7\x94\x07\x34\x8c\
-\xcd\xa6\x18\xea\xcf\xe1\x0b\x9f\xf9\x10\x3e\xfb\xc9\x0f\x9a\xee\
-\x76\xf3\x21\x38\x60\x75\x3f\x12\xb7\x9b\x45\x97\x04\xa8\x12\x69\
-\x4c\xc4\x91\x3a\x0e\x98\xc2\xc1\x29\x8a\x3d\x01\xe1\x00\xc5\x3a\
-\x34\x7b\x51\x73\x85\x0a\x0e\x9d\x9a\xc2\xc5\xe9\x02\xc4\xd5\x62\
-\x78\xbb\x15\x45\x77\x57\x3b\x3e\xf5\x91\xf7\xe0\x67\xff\xc9\xc7\
-\x4c\xdd\x6e\x6e\x04\xf0\x57\x00\x7e\x15\x89\xdb\xcd\xa2\x4a\x02\
-\x54\x89\x98\x89\x37\x2d\x9d\x33\xa6\xf3\x8a\x9f\x76\xba\x02\xa2\
-\xc0\xa9\x4e\x80\xa2\x72\x3d\x84\x00\xc5\x72\x0d\x87\x4f\x4f\xe3\
-\xf4\xa5\xb9\x60\x6d\x2b\x45\xd9\x94\x52\x64\xdb\xd2\xf8\xc0\xe6\
-\x1b\xf0\xe5\x2f\x7e\xca\xd4\xed\x66\x2d\x80\x6f\x00\xf8\x2d\x00\
-\x7d\x09\x58\x2d\x8e\x24\x40\x95\x08\x10\x6e\x62\xe2\x9c\x80\xc5\
-\x99\x51\xf2\xd6\xa3\x6e\x2a\x5a\x3f\x38\x51\x05\xda\x45\x01\x94\
-\x53\x27\xf5\x81\xa6\x6a\xd9\x78\xe7\xfc\x2c\x8e\x9f\x9d\x41\xa5\
-\x6a\xfb\xae\x34\x3c\xa4\x3a\xff\xa7\x53\x04\xb7\xdd\xb0\x01\x5f\
-\xf9\xd9\x4f\xe1\x96\x1b\xaf\x75\xb6\xf1\x0a\xbf\x22\xbd\x00\x7e\
-\x13\x0e\x60\xad\x4d\xc0\xaa\xf5\x92\x59\xea\x06\x78\xe2\xde\xec\
-\x34\x9c\xd5\x18\xc7\x00\x64\x15\xc9\x0c\xc6\x95\xa4\xf4\xa4\x09\
-\x65\x34\x2a\xf5\x94\xd1\x68\xbd\xa6\xf9\x29\x1c\x96\x90\xd5\xa6\
-\xf0\x37\x9f\xa1\xda\x42\xf5\xd3\x10\xf8\xb9\x54\xa1\x29\xc4\x09\
-\xa0\xe0\xd9\x90\xbe\x6e\x2a\x97\x47\x1d\x23\xfb\x99\xf1\x79\x94\
-\xab\x36\xae\x5e\xdb\x87\xae\x6c\x46\x55\x89\x2f\x57\x5f\xb1\x1a\
-\x5f\xfe\xc2\x27\xf0\xd0\x53\xbb\xf0\xd2\x9e\x03\xa8\x56\x6b\x61\
-\x23\x82\x59\x00\xbf\x02\x60\x0d\x80\xff\x67\x74\xcb\x03\x07\x00\
-\xe0\xc2\xee\xef\x18\x5e\xf6\x44\xe2\xc8\xb2\x00\x2a\x17\xa4\x06\
-\x01\xfc\xef\x00\x3e\x03\x60\x03\x5a\xcb\xf6\x9a\x01\x3e\xad\x96\
-\xc5\x6c\x63\x1a\xce\x14\x85\x88\x96\x10\x75\xb3\x54\x3a\x9a\x17\
-\x15\x13\x9c\x9c\xa0\x06\x00\x4a\xc8\x40\x01\x5c\x9a\x29\xa0\x5c\
-\xad\xe1\x9a\x75\xfd\xe8\xeb\x6e\xe7\x22\x79\xb2\x47\x31\x3a\xdc\
-\x87\x9f\xf9\xec\x47\xd0\xd7\x9b\xc3\xb6\x9d\x7b\x50\x28\x94\xc2\
-\xc0\x2a\x05\xe7\x79\x1d\x81\xe3\xd8\xbc\x63\x74\xcb\x03\x34\x01\
-\xab\xe6\xcb\x92\x03\x95\x0b\x52\x59\x38\x8b\xef\xff\x2b\x38\x73\
-\x57\x12\x59\x69\x12\x32\xb1\xd3\x8d\xd6\x9c\x78\x41\xf2\x24\xa9\
-\x46\x00\x8a\x0f\xa7\x98\x99\x2b\xe3\xed\x93\x93\xb8\x66\x6d\x3f\
-\x86\xfb\x3a\xb5\xe5\x53\x4a\xd1\xdf\xdb\x85\xfb\x3f\xbe\x05\xfd\
-\x7d\x3d\x78\xec\xe9\x17\x4c\x76\x69\xbe\x0b\x8e\xdb\xcd\xef\x00\
-\xf8\x9f\xa3\x5b\x1e\xa8\x25\x60\xd5\x5c\x59\xf2\x09\x9f\xee\x84\
-\xc3\x3b\x01\x7c\x13\x40\xcf\x52\xb7\x27\x11\x59\x06\x87\x86\xb0\
-\xe5\x8e\xeb\x9c\x35\xd3\x21\x03\xd2\x7c\xb1\x8a\xc9\x7c\xb0\xdd\
-\x55\x84\x06\xc8\x04\x99\x83\x93\x53\x6f\x7c\x80\xf2\xcf\x09\x50\
-\xa9\xda\x98\x99\x2f\x23\x95\x22\xe8\xee\x6a\xd3\x82\x0f\x05\xd0\
-\x9e\x49\x63\xfd\xba\x11\x0c\xad\x1a\xc0\xb9\x0b\x93\xc8\xcf\x2d\
-\x44\x81\xd5\x20\x80\x8f\x00\xa8\x00\x78\x23\x37\xb6\xb9\x9a\x4c\
-\x0c\x6d\x9e\x2c\x17\xa0\xfa\x30\x9c\xbd\xd7\x0c\x96\x0f\x4a\x64\
-\xb1\x65\xd5\xf0\x30\xee\xbe\xed\x3a\x74\x75\xb4\x49\x20\x45\x08\
-\x30\x5f\x70\x80\x2a\x4c\x9d\x0b\xa2\x14\xd3\xcb\xd1\x42\x80\x62\
-\x22\x09\x80\x9a\x4d\x31\x33\x5f\x86\x4d\x29\x7a\xbb\xda\x91\x4e\
-\x11\xb9\x0c\x37\x63\x3a\x05\xac\x59\x3d\x88\x75\x6b\x47\x30\x31\
-\x39\x8b\xc9\xe9\xd9\xa8\x4b\xd5\x05\xe0\x83\x70\x3e\xb8\xaf\xe5\
-\xc6\x36\x17\x12\xb0\x6a\x8e\x2c\x17\xa0\xba\x1b\xc0\x4f\x22\x01\
-\xaa\xe5\x27\x24\x85\xd5\x6b\xc7\x70\xd7\x2d\x57\x69\xd7\xa3\x9a\
-\x2f\x56\x31\x31\x5b\x32\x66\x4d\xc2\xa1\x52\xb4\xe0\xa4\xc8\x1c\
-\x05\x50\x7c\x98\xb3\xb6\xd5\xec\x42\x19\xe5\x8a\x85\x9e\xae\x2c\
-\xda\x32\x29\x01\xfc\x82\xd4\x84\x00\x43\x83\xbd\xd8\x70\xc5\x5a\
-\xcc\x2d\x14\x71\x31\xda\xed\xa6\x1d\x8e\x2a\xb8\x01\x0e\x58\xcd\
-\x24\x6e\x37\x8d\xcb\x72\x01\xaa\x3b\x90\x00\xd5\xf2\x13\x4a\x91\
-\xcd\xf5\x61\x74\xfd\x95\xb8\x63\xd3\x1a\x2d\x50\xcd\x15\x2b\x98\
-\xcc\x17\xe5\x31\xc1\x18\xc0\xe4\x54\xa7\x30\xc6\x87\x14\x10\x0a\
-\x50\x6e\x00\x15\x52\xb3\x76\xff\xf9\x62\x15\x0b\xa5\x2a\xba\x3b\
-\xda\x90\x6d\x4b\x4b\x20\xc5\x96\xd7\xd7\xd3\x85\xab\x37\xac\x45\
-\xcd\xb6\x71\xfe\xc2\x04\x6a\x35\x2b\x6a\x21\xbe\x9b\xe1\xec\xd4\
-\x7c\x00\xc0\xb9\x04\xac\x1a\x93\x15\x01\x54\xa2\x1b\x45\xf2\xd7\
-\xcc\x3f\xaa\x08\x23\x20\xe9\x34\xda\xba\x7a\xd1\x3b\xba\x01\x7d\
-\xfd\x7d\xb8\xfd\xda\x61\x74\x77\x64\x14\x13\x14\x88\x92\x51\x19\
-\xcf\x8d\x88\x09\x4e\x7c\x7c\x4c\x80\x12\x12\x53\x00\xc5\x52\x0d\
-\xb3\x0b\x65\x74\xb6\x67\xd0\x99\xcd\x40\x91\xcc\xaf\xaa\xbb\x33\
-\x8b\xab\xae\x58\x8b\xf6\x6c\x3b\xce\x9e\x1f\x47\xb9\x5c\x09\x03\
-\x2b\x02\xe0\x2a\x00\xef\x07\x70\x02\xc0\xb1\x04\xac\xea\x97\x25\
-\x1f\xf5\x8b\x92\x6c\xb6\x1d\x37\xdc\xb0\x09\xab\x06\x7b\x23\x52\
-\x12\xf7\x7f\xaa\x1c\x7d\xe2\x9e\x27\xca\x65\x79\x17\x4b\x34\x72\
-\xa8\x82\x09\x21\xc8\x64\x3b\xd1\xd6\xd1\x0d\x92\x4a\xa3\xa7\xab\
-\x1d\xed\x6d\x69\x7f\x8b\x2b\x3e\x31\xe5\x3e\x24\x91\x2d\xd2\x0c\
-\x0d\x46\x8f\x0a\xfa\x05\xe8\xeb\x8a\x01\x50\xec\x41\x7e\xa1\x82\
-\xb7\x4e\x4e\xe2\xea\xb5\xfd\x18\x1d\xec\x96\x36\x31\x0d\x7c\x18\
-\x29\x7a\xba\xb3\xb8\xf7\x43\x77\xa2\xaf\x37\x87\x47\x9e\xda\x85\
-\x4b\xe3\x53\x51\x46\xf6\x9b\x01\xfc\x35\x9c\x9d\x9a\xff\x6e\x74\
-\xcb\x03\x95\x64\x44\x30\xbe\x2c\x6b\xa0\x72\xb6\x41\xea\xc0\x47\
-\xdf\x7f\x2b\x36\x5d\xb3\x16\x80\x06\x5b\x88\xf3\x5f\x14\xee\xa8\
-\x9e\x27\xa2\x3b\x23\xe6\x38\x46\xd4\x85\x29\xcb\x35\x48\x62\x5e\
-\x5f\x4c\x51\x82\x92\x2e\x9d\x00\x28\xa9\x14\x31\x9f\x7e\xc0\x86\
-\xd7\x09\x4c\x72\x1a\x3d\x7b\xe2\xc3\xf5\x00\x15\xf4\xcd\x3b\x76\
-\x0e\x1c\xb7\x1b\x0b\x87\x4e\x4d\xa3\x54\xb1\x70\xc5\xea\x1e\xa4\
-\x35\xfd\xa5\x14\xe8\x68\xcf\x60\xcb\x9d\xd7\xa3\x27\xd7\x85\x87\
-\x9e\x78\x1e\xef\x9c\x3c\x17\x05\x56\x63\x70\x46\xb5\xd7\x01\xf8\
-\xd6\xe8\x96\x07\xf2\x09\x58\xc5\x93\x65\x0d\x54\x80\xf3\x10\xa5\
-\x52\x04\x29\x12\x4c\x36\x54\x83\x15\x45\xc0\xaa\xc2\xcb\x93\xc2\
-\xfc\x23\x86\x6a\x11\x44\x96\x25\xe7\xd7\x65\xe0\x29\xdc\x52\x82\
-\x95\x79\x05\x71\x6b\xa0\x91\x7e\x72\x4d\x03\x27\x26\x30\x16\x40\
-\xb9\x07\xba\x8d\x25\x6a\x96\x8d\x77\xce\xcd\xa2\x5c\xa9\xe1\xaa\
-\x35\x7d\xc8\xb6\xa7\x35\x9b\xa8\x02\xe9\x74\x0a\xb7\x5c\xbf\x01\
-\xb9\xee\x4e\x3c\xfc\xe4\x4e\xec\x7f\xfb\x78\xd4\x96\xf2\x7d\x00\
-\x7e\x1b\x0e\x58\xfd\xc1\xe8\x96\x07\x2e\x00\xc9\x4c\x76\x53\x59\
-\xf6\x36\xaa\xae\xce\x0e\xdc\x7e\xeb\x26\x0c\x0d\xe4\xa4\xbc\x44\
-\x1b\xd0\x0c\x76\xc5\x84\xc4\x00\x2d\xa1\x19\x26\xa9\x4c\x93\xd5\
-\x2d\xcd\x00\x35\x2d\x04\xb9\xc6\xf4\x89\xd9\x52\x78\x7a\xe3\xc9\
-\xa0\xd4\xa8\x8c\x7a\x00\xca\xf9\x61\x72\x2a\xda\x64\x53\x8a\xfc\
-\x42\x05\x85\x72\xcd\x57\x79\xd5\x4d\xa0\x20\x00\x06\xfa\xba\x71\
-\xe5\x15\x6b\x51\xae\x54\x71\x21\x7a\xb7\x9b\x0c\x9c\x67\x7d\x13\
-\x80\xbd\x00\x26\x12\xbb\x95\x99\xac\x08\xa0\xba\xe3\xd6\x4d\x18\
-\xea\x77\xe7\x82\x0a\x29\xc2\x54\x41\x6d\x3c\x9b\x74\xc9\x01\x4b\
-\x4e\x14\x99\x7c\x19\xd9\xd6\xbc\xe9\x09\x93\xb3\x66\xf3\xa8\x94\
-\xd1\x61\xcc\x89\x89\x50\x41\x58\xb3\x00\x4a\x64\x83\x0b\xa5\x2a\
-\xf2\x0b\x15\x74\x77\xb4\xa1\xa3\x3d\xc3\x14\x25\x1b\xe4\x72\x5d\
-\x1d\xb8\x6a\xc3\x3a\xa4\x52\x69\x9c\xbb\x30\x8e\x4a\xb8\x8f\x60\
-\x0a\x0e\x50\xdd\x05\xe0\x10\x80\xd3\x09\x58\x45\xcb\xca\x58\x3d\
-\x81\x6a\x8e\x11\x8c\x54\xc9\xe9\xbd\x31\xad\x88\xa2\xa9\xfc\xe0\
-\xca\x65\xba\x21\xfc\x8f\x51\xb3\xa9\x5b\x47\x74\x26\x76\x1c\x8e\
-\x1f\x85\x0b\x49\xaa\xfe\x6b\xb5\x28\xea\x0c\xeb\xa3\xd4\x3c\x66\
-\x59\x05\x4a\xa9\xfe\x1e\x7a\xc9\xc0\x82\x04\x0d\xbd\xae\x41\x1d\
-\xde\xbd\x0a\x5c\xa9\xf5\x9b\x4b\x50\x39\x3f\x80\x99\xf9\x32\x0e\
-\x1c\x9f\xc0\xc5\xe9\x42\x50\xab\xa2\xb1\x14\x40\x5f\x4f\x27\x3e\
-\xf9\xd1\xbb\xf1\xb9\xfb\xee\xc1\xe0\x80\xd1\x6e\x37\xef\x85\xe3\
-\x76\xf3\xd3\x00\xd2\xc9\x0a\x0c\xe1\xb2\x32\x18\xd5\x2d\x9b\xb0\
-\x6a\xa0\x27\x44\xd5\x0b\x63\x56\xce\x81\x91\xad\xa9\x85\xec\x4a\
-\xd1\xa4\x7a\x72\x35\x46\xa6\xe2\x9b\x9d\xa2\x8b\x24\x04\xf3\xae\
-\xea\xa7\x06\x55\x6a\x56\xa4\x76\x80\x52\xc1\xb6\x22\xd8\x93\x73\
-\x18\xce\xa0\x9c\xf0\x68\x35\xb3\x62\x59\x98\xce\x97\x90\x4a\x11\
-\xf4\x74\xb6\x73\x4c\x49\xcc\xd3\x96\x49\x63\xdd\x9a\x61\xac\x5a\
-\x35\x80\x8b\x97\xa6\x4c\xdc\x6e\x56\x01\xf8\x09\x00\x45\x00\xfb\
-\x13\xb7\x1b\xbd\x2c\x7b\x63\x3a\x2b\xd2\xac\x02\xea\xd8\x14\x2c\
-\x66\x29\xc7\x30\x30\xab\xd7\x76\xc5\x15\xa3\xb0\x9c\x13\x21\xbc\
-\x6e\xf0\x32\xce\x4c\x62\x84\xb6\x56\x08\x21\xb0\x6c\xd7\x90\x6e\
-\x0a\x4a\x8a\x04\x71\xc1\x89\x0b\x52\xa8\x77\x80\x19\x40\xe9\xea\
-\xf1\x5a\x40\xe0\xec\x76\x73\xe4\xf4\x34\x4a\x65\xc7\xc8\xde\xd6\
-\x96\x92\xcb\x76\xcf\xdb\x33\x69\xdc\x71\xf3\xb5\xe8\xc9\x75\xe1\
-\x91\x27\x77\xe2\xd0\xd1\x53\x51\x57\x61\x18\xc0\x1f\xc3\x19\x19\
-\xfc\xb7\xa3\x5b\x1e\x98\x4a\x0c\xec\xb2\xac\x28\xa0\xf2\x24\x18\
-\xdf\x03\xce\x4f\x2e\xe0\xec\xc4\x3c\x08\x91\x79\x87\x9e\x21\xc9\
-\xa8\x42\x54\xe9\x88\x1c\xa3\x08\xe2\xcb\x8c\x62\x5a\x44\x0f\x33\
-\xe1\xac\x50\x5b\x9c\x61\x64\x7c\x18\x73\x72\x44\xd3\xaa\x72\xd5\
-\xf2\x55\x38\xad\xd0\xb0\x53\x0d\xb3\xa1\x11\xc5\xb4\x0c\xa0\xdc\
-\x52\x99\x04\x96\x4d\x71\xf2\x42\x1e\xa5\x8a\x85\x6b\xc7\xfa\xd1\
-\xd5\x91\x11\x17\x38\xf5\x0f\xd3\x29\x82\x8d\x57\xad\xc3\xcf\xfc\
-\xd4\xbd\x78\x7c\xeb\x8b\x78\xfd\xcd\x43\x51\x33\xd9\x73\x00\xfe\
-\x4f\x38\xeb\x82\xfd\xee\xe8\x96\x07\x4e\x02\xc9\x88\x20\x2b\x2b\
-\x0c\xa8\x02\x4e\xe5\x1d\x15\x4a\x35\x4c\xcd\x16\x7d\x54\x62\x1f\
-\x05\xd5\x83\x41\x54\x0c\x2b\xcc\x40\x4f\xf4\x8a\x97\x16\x08\xa3\
-\x8c\xf9\x26\x03\x02\x50\x03\x60\x1c\x69\x05\xc3\xd2\x81\x91\x72\
-\x42\xad\x36\x4f\x34\x60\x44\xc5\xab\x60\xb1\x15\x00\xc5\x8a\x4d\
-\x81\xf3\x93\xf3\x28\x57\x6b\xd8\xb8\x7e\x10\x7d\xdd\xed\xca\x2d\
-\xbc\x9c\xeb\x41\xb1\x7e\xcd\x20\x3e\x7f\xff\x3d\xe8\xed\xe9\xc6\
-\xae\x97\xf7\xa1\x54\xaa\x44\x6d\xcd\xf5\x0b\x00\x46\x01\xfc\x06\
-\x80\xd7\x47\xb7\x3c\x90\x80\x95\x2b\x2b\xc3\x98\x2e\x59\x30\x19\
-\x55\x8f\x38\xff\x11\x30\xf8\x40\xbc\x17\x27\x98\xd0\x47\x08\xff\
-\x32\x39\xe7\x94\xc3\x01\xe2\x97\xc7\x94\x23\xb4\x43\x55\x16\x5b\
-\x07\xab\x97\x4a\x84\xc6\xcb\xcb\x57\x21\xa5\x01\x5b\x16\xa1\xee\
-\x1c\x31\xa1\xbe\xb0\x3f\x22\xf7\xa3\x59\x7f\xaa\xf6\xfb\x97\x5a\
-\x30\x7e\xab\x86\x06\x24\x97\x1d\xcd\x40\x00\x6f\x7c\xf7\xca\x8e\
-\xbb\x03\x33\xd5\x1a\xca\x65\xdb\xb8\xdb\x3e\xcd\x24\x4f\x6f\xa3\
-\x54\x0a\x60\x72\xb6\x84\x37\x8f\x8d\x63\x7c\xa6\xa8\x78\x22\xf9\
-\x8e\x0c\x0d\xe4\xf0\xe9\x7b\xdf\x87\x4f\xdf\xfb\x01\xf4\xf6\x44\
-\xee\x76\x43\x00\xdc\x0b\x67\xb7\x9b\x4f\x00\x20\x89\x91\xdd\x91\
-\x95\x6d\x4c\x07\x30\x35\x57\xc6\xd4\x9c\x33\x87\x47\xa5\xe9\xb0\
-\xac\x44\xc9\x80\x04\xe3\x93\xce\xd8\x2d\xa9\x86\x21\x46\x52\x35\
-\xd3\x52\x1b\xb1\xe2\xcc\xa1\x8a\x6b\x99\x6a\x36\xa3\xa2\x31\x63\
-\x69\xcc\x42\x4c\x99\x13\x60\xce\x9e\xf4\xe5\xf2\x01\x3a\x80\xe2\
-\xd2\x30\x19\xcb\x55\x1b\x53\x73\x25\x64\xd2\x69\xe4\xfc\xb5\xad\
-\xd4\x2a\x68\xb6\x3d\x83\xb1\x75\x23\xe8\xef\xeb\xc5\xf9\x8b\x13\
-\x98\x5f\x28\x46\x19\xd9\x47\xe1\xac\x6d\x35\x05\xe0\xed\xdc\xd8\
-\x66\xeb\x72\x37\xb2\xaf\x1c\xa0\x72\xe7\x51\x89\xf7\x77\x2a\x5f\
-\xc2\x54\x3e\x58\x2e\x56\x65\x4c\x37\xb2\x5d\xd5\x09\x58\x4e\xde\
-\x78\xa0\xe5\x94\x53\x07\x70\x69\x12\x98\x01\x52\xbd\xb0\x15\x6f\
-\xbe\x43\x1c\x70\xd2\xa9\x7c\x71\xc1\xc9\x89\x33\x30\xe4\xd3\x06\
-\x00\x4a\x2c\x94\x00\x55\x8b\x62\x7a\xce\xd9\x21\xba\xb7\xbb\x8d\
-\x5b\xdb\x4a\x2c\x37\x93\x4e\x61\x74\x64\x15\x56\x8f\x0c\x61\x62\
-\x72\x1a\x33\xb3\xf3\x51\x97\xb2\x0f\xc0\x3d\x6e\xad\xfb\x72\x63\
-\x9b\x2b\x97\x33\x58\xad\x1c\xa0\x1a\xe0\x17\xff\xf4\x00\x60\x2a\
-\x5f\xc2\xa4\xc7\xa8\x88\x08\x49\xfc\x49\x33\x01\x4b\x15\x14\xf1\
-\x95\x34\x03\x2d\x45\xc1\xc6\x10\xd3\x24\x0a\x45\x22\x63\xf5\x7f\
-\x84\x57\x08\x95\x05\xca\x00\xa5\x86\xa6\xa8\xa9\x48\x91\xec\x89\
-\x09\x68\x16\x40\x09\x58\x05\xcb\xb6\x31\x33\x57\x46\xa5\x66\xa3\
-\x37\x97\x45\x26\xad\x1f\x11\x4c\xa7\x08\x86\x06\xfb\x30\xb6\x6e\
-\x35\xf2\x73\x0b\x18\x9f\x98\x01\xa5\x08\x73\xbb\xe9\x04\xf0\x01\
-\x38\xab\x87\xee\xc9\x8d\x6d\x5e\xb8\x5c\x27\x87\xae\x58\xa0\x02\
-\x9c\x1b\x3c\x95\x2f\x61\x6a\xae\xe4\x67\x14\xc1\xa2\x59\x80\xc5\
-\x1d\x35\xc8\xb2\xe4\x3a\x14\x71\x06\x95\x34\x05\x97\x04\x1b\x9d\
-\x0c\x36\x5a\x8b\x9a\xd1\xbc\xa9\xd0\xb4\x7e\xfd\x44\xea\x6f\xdd\
-\xaa\x9d\x10\x68\x02\x50\x41\x78\x08\x83\x12\x4e\x45\xdb\x57\x7e\
-\xa1\x82\x85\x62\x0d\xbd\x5d\xed\xc8\xb6\xa7\x95\x99\x28\x9c\xe7\
-\xa2\xbf\x37\x87\x2b\xd6\xaf\x45\xb5\x5a\xc5\x85\x4b\x93\xb0\xac\
-\xd0\x11\xc1\x0c\x80\xf7\x00\xb8\x0e\xc0\xeb\x00\x26\x2f\x47\xb0\
-\x5a\x39\x40\xa5\x71\xa1\x99\x9a\xf3\x54\x3f\x3e\x5c\xcb\xae\x98\
-\x00\x13\xc0\xe2\xc3\xe3\xb3\x2c\xb1\x2d\x61\x12\x95\x8c\xd4\x81\
-\x56\x66\xaa\xa4\x1a\x88\x78\x31\x54\x01\x4d\xd1\x53\xc9\x52\xf4\
-\xed\x30\x55\xed\xf8\x38\x13\x70\x62\xd2\x69\x0a\xd7\x01\x94\x58\
-\xce\x42\xa9\x8a\xd9\xf9\x32\xba\x3a\xda\x9c\xb5\xad\xa8\xb2\x38\
-\x10\x02\xe4\xba\xb2\xd8\x30\xb6\x16\x99\x74\x1a\xe7\x2f\x4e\xa0\
-\x52\xa9\x46\xb9\xdd\xdc\x00\x07\xb0\x0e\xe2\x32\x74\xbb\x59\x79\
-\x40\xe5\x89\x52\xf5\x93\xcb\x6f\x25\x60\x71\x47\x31\x30\xa4\x59\
-\xc0\xc5\xd7\x15\x4a\xcf\x22\xdb\x64\x9e\xc0\x4b\xc4\xfc\x51\x35\
-\xfb\xa2\x11\x6d\x52\x72\x23\xaa\x06\x21\xe2\x0f\xb7\x46\x19\xc7\
-\x83\xb3\x56\x03\x94\x58\x07\x05\x45\xb1\xe2\xcc\x64\xcf\xb6\x65\
-\x90\xeb\x6a\xd7\x5c\x01\x27\x53\x47\xb6\x0d\xeb\xd6\xad\x46\x4f\
-\x77\x37\xce\x5f\x98\x40\xa1\x58\x8a\x7a\x36\xd6\xc3\x59\x93\xfd\
-\x0c\x80\x23\xb9\xb1\xcd\xf4\x72\x01\xab\x15\x03\x54\x83\x9e\x31\
-\x9d\x8d\x24\xc0\x64\xbe\x84\xa9\xb9\xa2\xff\xa2\x46\x81\x15\xd0\
-\x38\x60\xf1\x71\x0a\x23\x7e\x4c\xe2\x63\x0a\x5c\x72\xdd\x11\xe9\
-\xf4\xb3\x4b\xe3\xd9\xa1\x88\x08\x48\x42\x21\x52\x61\xe1\x43\x7b\
-\x91\x03\xf4\x3a\x9b\x16\x55\xb7\x5c\x9c\xc7\xde\x4c\x80\x72\xf2\
-\x85\xcf\xd9\x62\xf7\x21\x24\x00\x2a\x96\x8d\xa9\x7c\x11\x29\x42\
-\xd0\xdb\x9d\x75\x97\x28\x52\xb7\xb1\x3d\x93\xc6\x9a\xd1\x21\x0c\
-\x0d\xf5\xe3\xd2\xf8\x14\x66\xa3\xdd\x6e\x86\xe0\xb8\xdd\x2c\x00\
-\x78\x33\x37\xb6\xb9\x76\x39\x80\xd5\x8a\x01\x2a\x91\x51\x79\x09\
-\xa7\xe6\x8a\xce\x56\x4d\x84\x67\x15\x8b\x0f\x58\x4c\xfa\xd0\x4a\
-\x42\x83\x95\xed\x34\x15\x6e\x9e\x58\x0c\x8b\x7c\xd0\x6a\x8d\xfa\
-\xc7\x02\x92\x3f\x69\x4a\x2f\x46\x40\x44\xd4\x91\xd4\x07\x44\x55\
-\x59\x54\x5b\xa4\x9f\xa2\xde\x51\x3c\xc4\x07\x28\x27\x8f\x1a\x79\
-\x2d\x8b\x62\x6a\xae\x84\x9a\x45\xd1\x9b\x6b\x47\x26\x1d\x3e\x22\
-\x38\xbc\x6a\x00\x6b\xd6\x8c\x60\x66\x26\x8f\xa9\xa9\x59\x44\x48\
-\x0e\xce\x88\x60\x07\x9c\x0d\x24\x4a\xef\x76\xb0\x5a\xb1\x40\x05\
-\x37\x31\x67\x4c\xf7\x81\xa6\xd9\x80\x15\x9c\xc5\x05\x2d\xa9\x9c\
-\xba\x18\x8e\xba\xdd\xea\xfa\x65\x14\x88\xb6\x7d\xc5\x15\x51\xbd\
-\x13\x98\x57\x84\x11\x3e\x96\xaf\x8d\x10\x2c\xaa\x7d\xb2\x7d\x8b\
-\x89\xa6\x7c\x8e\xa6\x03\x94\x90\x99\x2d\x9f\xba\xe5\xcc\x2e\x94\
-\x51\x2c\x57\xd1\xeb\xed\x76\xa3\x99\x79\x9f\x4a\x11\x0c\xf4\xe5\
-\xb0\x7e\x6c\x0d\x8a\xc5\x32\x2e\x8e\x1b\xed\x76\xb3\x05\xce\x42\
-\x7c\x7b\x72\x63\x9b\xf3\xef\x66\xbb\xd5\x0a\x03\x2a\x2a\x25\x11\
-\x47\xfd\x00\x48\xec\x0a\xa8\x13\xb0\x98\x40\x15\xec\xb4\x0a\xb4\
-\x4c\xa2\x89\xa6\x01\x44\xca\x48\x22\xe2\x43\x6a\x20\xba\x3f\x98\
-\xd9\xdf\x4d\x27\x81\x42\x66\x26\x7a\xee\x44\xb4\x69\x24\x10\x20\
-\xf2\x44\xcd\xb0\xb6\x34\x03\xa0\x82\x9f\x20\xc1\x5c\xa1\x8a\x7c\
-\xa1\x82\x9e\xae\x76\x74\xb6\x67\x84\xf2\xd8\xde\x11\xf4\xe4\x3a\
-\x71\xc5\xfa\x51\x80\x02\x17\x2e\x4e\xa2\x5a\x0b\x5d\xdb\x2a\x0d\
-\x67\xa7\x9b\x9b\x00\xbc\x01\xe0\xe2\xbb\x15\xac\x56\x84\x0b\x8d\
-\x4c\xff\x05\x87\x05\xaa\xf8\xd2\x52\xb5\xab\x05\x97\xcc\x5b\x0f\
-\x89\x59\xb8\x4d\x74\xd6\xd1\xb9\x5a\x78\xee\x16\x61\xf6\x90\xe0\
-\x4f\xe3\x42\x22\xba\x8f\x28\xbe\xf4\xca\x68\x02\x0d\xf2\x42\xb0\
-\xee\xcb\xea\x1f\x55\x1a\xb1\x35\x0c\x88\x46\xfd\x51\x4d\x27\xd4\
-\x9d\xa1\x42\x30\x9f\x92\x67\x64\xdc\x87\x86\x8a\x39\xa0\xe8\x04\
-\x05\xeb\x6a\xe4\x97\x29\x7c\xb2\xc4\xd6\x89\xcf\x80\x78\xff\x82\
-\x7c\x34\x00\x53\x11\xa4\x94\xcf\x48\x50\x0e\xe0\xd8\x52\xf7\x1e\
-\x1d\xc7\xc5\xe9\x42\x68\xb7\x08\x80\x55\xfd\x3d\xf8\xc4\x4f\xbc\
-\x17\xf7\xdd\xfb\x3e\xf4\xf5\xe6\x4c\xdc\x6e\x3e\x09\xe0\xfb\x00\
-\x3e\x0a\xbc\x3b\xdd\x6e\x56\x04\xa3\xba\xfd\x96\x4d\x18\xec\x53\
-\xcd\x4c\x27\xc1\xcc\x74\x40\xc1\x7e\xd8\x30\x33\x75\xa8\x3e\x96\
-\x15\x9c\x99\x98\x97\xe4\x34\x66\xaa\x28\x53\x8b\xa6\x1d\x81\x0a\
-\xa6\x6d\x06\x31\x24\x54\xd1\xbd\x30\xfe\xd3\xd8\xc0\xf9\x20\x95\
-\x71\x9a\x49\x28\xb1\x1f\x01\x87\x59\xdb\x96\xa8\x82\xf9\x9d\x66\
-\xd3\x1b\x8c\xe2\x71\x6d\xd1\xa9\x8b\xdc\x47\x32\xdc\xa0\x5f\xae\
-\x5a\x98\xcc\x17\x91\x4e\xa7\xd0\xd3\xed\xae\x6d\xa5\x99\x67\x91\
-\x6d\xcf\x60\xcd\xe8\x08\x06\x06\x7a\x71\xf1\xd2\xa4\x89\xdb\xcd\
-\x1a\x00\x1f\x01\x30\x0e\xe0\x60\x6e\x6c\xb3\xfd\x6e\x62\x56\x2b\
-\x06\xa8\x24\x63\xba\x9b\x72\x32\x5f\xc2\x64\xbe\x08\x0e\x8a\x5a\
-\x00\x58\x52\x79\x61\x75\x19\xaa\x87\xe1\xed\x60\x20\x49\x65\x17\
-\x17\x3b\xab\x0e\x82\xce\x55\x27\xb4\x4f\x7e\x8c\xa1\xcd\x29\x4c\
-\xa8\x7a\x92\x82\xf4\x7e\x12\xf8\x8c\x88\x68\xd3\x32\xf5\x87\xcf\
-\x20\x65\xce\x34\xc6\x2d\xb9\x99\x42\x9d\xf5\x01\x94\x58\x16\x15\
-\x02\xab\x16\xc5\x54\xde\x71\xbb\xe9\xeb\xce\xf2\x6e\x37\x42\x39\
-\x6d\x99\x14\x56\x0f\x0f\x62\xf5\xc8\x10\xa6\xa6\x66\x31\x3d\x3b\
-\x17\x75\xb5\xfb\xe1\x80\x55\x0d\x8e\xdb\xcd\xbb\x66\x21\xbe\x15\
-\x04\x54\x39\x65\xfe\xa9\xb9\x62\xc0\xa8\xc4\x51\x37\x25\x88\x40\
-\x09\x5a\xe1\xf6\xa6\xc5\x05\x2d\x36\xbd\x0a\x68\x88\x22\x40\xdd\
-\x47\xd3\x41\x03\xc7\x28\x4e\xea\x01\x22\x00\x3a\xd4\xf0\x99\x94\
-\xa2\x58\x65\x0d\x94\x35\xd0\xeb\x8b\xa7\xde\x3c\x00\x29\x8d\x8c\
-\x10\x94\xb9\x46\x3a\xc3\xbb\x6e\xaa\x81\xb2\x09\x1a\x3b\x94\x5c\
-\x0e\x1f\xe8\x9d\x13\x00\xb6\x4d\x31\x3d\x57\x46\xa9\x6a\xa1\x2f\
-\x97\x45\x26\x93\x82\xce\xbf\x31\x4d\x08\x06\x07\x7a\x31\xb6\x76\
-\x14\xf3\xf3\x05\x8c\x4f\x4e\xc3\xb6\x43\x9f\xa5\x4e\x38\x73\xad\
-\x06\xe0\x18\xd9\x0b\xef\x06\xbb\xd5\xca\x07\xaa\xbc\x6a\x66\x7a\
-\xfd\x80\x05\x34\x81\x65\x09\x11\x61\x70\x11\x5e\x97\x00\x49\x4c\
-\x87\x88\xa2\x53\x41\xaf\x09\x10\xa3\xad\x04\x4a\x5c\x33\x10\xc2\
-\x95\x40\x25\x54\x52\x03\x0e\x35\x2d\x5e\x4a\xeb\x32\x2e\xe5\x8c\
-\x50\x80\xe1\x4f\x7c\xd5\x94\x68\x08\x55\x10\xde\x2c\x80\xf2\x63\
-\x55\x1b\x56\x30\x65\x50\x38\x6e\x37\x73\xc5\x0a\x7a\xbb\xda\xd1\
-\xd1\x9e\x56\x14\xe2\x8e\x08\x12\x82\xde\x9e\x6e\xac\x5f\x3f\x0a\
-\xab\x56\xc3\xc5\x4b\x93\xa8\x85\xbb\xdd\xb4\x01\xd8\x0c\xe0\x1a\
-\x00\xaf\x01\x98\x5e\xe9\x60\xb5\x22\x8c\xe9\x80\xd2\x3c\xcb\xc7\
-\x29\x2c\xe0\x7e\x1e\xc9\xd8\xc9\x17\xaa\x5b\xe3\x48\xaa\x47\x61\
-\x78\xd5\x9a\x8f\x99\x40\x7e\x8d\x26\x3e\x07\x6f\x74\x07\xd7\x06\
-\xc9\xf0\xcc\x74\x88\x8a\x4f\x3d\x53\x3e\x65\x2b\x15\x9a\x24\x89\
-\x67\x60\x27\x2a\x73\xb8\x0c\x3e\x94\xfb\xd3\x9a\xce\xf9\x0a\x84\
-\xca\xd5\x6c\x4a\x1c\x6a\x70\xd3\x52\xbe\x2c\x0a\xc2\xd9\xa7\xf8\
-\xeb\xe2\x75\x28\xb8\xdf\x8a\x42\xdc\xfc\x7c\x22\xc9\xd7\x50\xfb\
-\xec\xe8\x9f\x93\x20\x0f\x55\x3e\x0f\x62\x18\xa5\x14\x17\xa7\x0b\
-\xd8\x7b\x74\x1c\x13\xcc\xda\x56\xaa\xb4\x29\x02\x8c\x0c\xf6\xe1\
-\x53\xf7\xbe\x1f\xf7\xde\x73\x37\x72\xdd\x9d\x51\x46\xf6\x34\x80\
-\x2f\xc0\x59\xdb\xea\x6e\x00\x58\xc9\x46\xf6\x15\x03\x54\x9e\x48\
-\x37\x9b\x3d\x96\x00\xa6\x3e\xc0\x12\x77\x2d\x31\x05\x2d\xb6\x7d\
-\xaa\x41\xa9\x50\xe0\x22\xe2\xe6\x95\x54\x7a\xc1\x04\x92\xc5\xab\
-\x56\x6c\xba\xb0\x70\xf6\x44\x19\x20\xb3\xa1\x68\x30\x12\x53\x29\
-\x3a\x1b\x52\x0e\x37\xf2\xc7\xd4\x4d\x01\xcd\x64\x78\x22\x00\x91\
-\x57\x8e\x77\x2d\xc1\xa8\xc3\x54\x36\xe6\xbb\x05\x53\x2e\x2f\xfc\
-\x4c\xf2\xb3\xc2\xb7\x3c\x0c\xa0\x3c\x90\x12\x23\x45\x80\xf2\x9e\
-\x1b\x02\x60\x66\xae\x8c\xbd\x47\xc7\x71\x76\x7c\x5e\xf5\x7d\xe1\
-\xee\x7f\x5f\xae\x0b\x1f\xfe\xc0\x9d\xb8\xff\x93\x1f\xc2\xd0\x60\
-\x9f\xc9\x6e\x37\x1f\x82\x33\x22\xf8\x59\x00\xa9\x95\x0a\x56\x2b\
-\x46\xf5\x1b\xec\xcf\x39\x77\x50\x48\x31\x35\xeb\x1a\xd3\x15\x23\
-\x5d\xa1\x06\x6a\xe6\x20\xdc\xde\xa4\x50\xa1\x22\x54\x24\x1d\x25\
-\xd7\xd5\x43\x84\x42\x09\xf3\x1f\x51\xa6\x97\x51\x48\x5e\x62\x39\
-\xac\x73\xea\x81\x86\x88\x5e\xb9\xbf\x54\x93\xc9\x33\x72\xeb\x8d\
-\xef\x24\xaa\x78\x55\xa3\x42\x46\x03\xc3\xfa\x40\x19\x14\x23\xa2\
-\xf1\x5d\x37\x10\xc1\x82\x0c\x91\xeb\x53\xaa\x78\x4c\x84\x4e\xcd\
-\x0b\x92\x29\x8c\xf8\x6e\x5d\x95\x9a\x8d\xc9\xd9\xa2\x03\x46\xdd\
-\x59\xa4\x15\xcf\x50\xe0\x76\x93\xc2\xea\x91\x55\x18\x1e\x1a\xc0\
-\xf8\xc4\x14\x66\xf3\x91\x6e\x37\xc3\x70\x8c\xec\x79\x38\xbb\xdd\
-\xac\xb8\x85\xf8\x56\x16\x50\xb1\xc2\x8c\xfa\x05\xc6\x74\xc4\x02\
-\x2c\xee\x28\xc2\x8e\xe5\x1c\x36\x0f\xb4\xf8\xbc\xf2\xda\xed\x5a\
-\xdf\x45\xa2\x68\x07\xd7\x76\x12\x0b\x84\xf4\x20\xad\xb3\x35\x45\
-\x18\xdb\x15\x18\xe5\x60\x97\xe2\xc5\x93\x0e\x82\x13\x95\xad\xc9\
-\x07\x68\xaa\x06\x85\x40\x3d\x55\xd5\x23\xe8\x8b\xde\x01\x65\x6a\
-\xd4\xdc\xfc\x46\x01\xca\x49\xaa\x01\x29\xa6\x2d\x96\x4d\x31\x99\
-\x2f\xa1\x5a\xb3\xd1\xef\x1a\xd9\xf9\xaa\x82\x32\x32\xe9\x14\x56\
-\x0d\xf6\x61\xed\xe8\x08\x66\xf3\xf3\x98\x9c\x9e\x45\x84\xf4\xc0\
-\x01\xab\x36\x00\xaf\xe7\xc6\x36\x97\x57\x92\xdd\x6a\x65\x00\xd5\
-\xcd\x9b\x30\xd8\xa7\x36\xa6\x3b\xd3\x13\x82\xed\xc4\x59\xc0\x82\
-\xa2\xc0\xe6\xb0\x2c\x75\x0a\xb3\x39\x54\x61\xf5\x11\x65\xfd\xe1\
-\x9b\x54\xe8\x0c\xee\x41\xa8\xce\x50\x2e\x19\xf9\xe5\x85\xdf\xeb\
-\x10\xaa\x3c\x0c\xbf\x28\xe2\x09\x89\x28\x8a\x1d\xa1\x84\x30\xa2\
-\xa7\xa8\x97\x79\xc9\x25\xe3\x39\x82\x6b\x4f\x59\x1f\x43\x05\x52\
-\x86\x02\x94\x1b\x60\x0c\x50\x7e\x7a\x3e\xde\xb6\x1d\x55\xb0\x50\
-\xaa\xa1\x2f\x97\x45\x7b\x26\x2d\x81\x94\x27\xe9\x14\x41\x5f\x6f\
-\x0e\x63\xeb\x46\x51\x2e\x57\x70\x69\x7c\x1a\x56\xb8\xdb\x4d\x16\
-\xc0\xfb\xe0\x2c\x75\xbc\x07\xc0\xdc\x4a\x01\xab\x15\x63\xa3\x0a\
-\x6c\x05\xca\x08\xf9\x94\xb1\x17\xd4\x65\xc7\x0a\xb3\x65\x29\x0c\
-\xf0\x6c\xd9\x26\x4b\xe6\xca\xef\x92\x6c\xcc\x75\x44\x66\x08\xce\
-\x8b\x29\x1b\x6f\x28\x07\x5e\x81\xa1\x46\x3d\x1b\xdd\x35\x96\x13\
-\xef\x4f\x7f\xd5\xcd\x11\x27\x30\xc0\xfb\x65\x2b\x40\x8f\x2b\x51\
-\x51\x7c\x60\x2f\x22\x5a\x10\xf2\xaf\xa2\x50\x98\x38\x75\x41\xb2\
-\x43\x71\xba\x1d\x61\x8b\x54\x7e\x80\xf8\xba\xd5\xcf\x54\x94\x1d\
-\x4a\xea\x2a\x63\x13\x55\x5d\x14\x0a\xe0\xec\xc4\x3c\x5e\x3b\x7c\
-\x09\x53\xf9\x92\xf2\xfa\x7b\xc9\x53\x29\x82\xd1\xe1\x41\x7c\xfa\
-\x13\x1f\xc4\x3d\x1f\xb8\x03\x9d\x1d\xd9\x28\xbb\x55\x3b\x80\x5f\
-\x06\xf0\xd7\x70\x5c\x6f\x56\x84\x91\x7d\xc5\x00\x95\x27\x2a\x80\
-\x70\x23\x9a\x04\x58\x71\x41\x8b\x35\xc1\xcb\x23\x42\x72\x3d\xc4\
-\x3f\xa7\x6e\x3a\x0e\x25\xfc\x8a\x78\x66\x41\xb9\xb7\x49\x67\x03\
-\xd3\x4c\x09\xa0\xd2\x21\xb8\x82\xb9\xed\xd5\xd9\x2b\xa0\x99\x66\
-\xa0\xb8\x8e\x5a\x6f\x1a\xbf\xd1\xc1\x9f\x34\x37\x8c\xeb\xbe\x68\
-\x8c\x57\x3f\x05\x7e\x84\x00\xd0\x44\xe6\x89\x6e\x31\x2a\xaa\x2a\
-\xd4\x1d\x24\x96\xeb\x01\x00\x42\xd4\xcf\x00\x93\xca\x14\xa0\xc4\
-\x51\x5b\xbe\x0c\xe7\x77\x72\xb6\x88\xd7\x8f\x5c\xc2\x85\xa9\x05\
-\xa9\x3c\xf6\x24\x45\x80\xc1\xbe\x1c\x3e\xfa\xa1\xbb\x70\xdf\xbd\
-\xef\x43\x7f\xb4\xdb\x4d\x0a\xc0\xa7\xe1\x18\xd9\xef\x01\x96\xbf\
-\xdb\xcd\x8a\x03\x2a\x4f\x38\x78\xa0\xf2\xc3\x10\xa4\x33\x03\xac\
-\x30\x96\x65\x0a\x5a\xec\x43\x28\x01\x17\x00\xbd\x65\x5b\xe0\x8b\
-\x04\xf2\x39\x37\x1a\x15\x80\x2a\x5b\x01\x5f\x6f\x3c\x26\xc4\x19\
-\x94\xa8\xa3\x06\x89\x20\xa4\xc4\x21\x12\xf1\xa7\xb9\x67\xf2\x0d\
-\xe2\x3a\xaf\x8e\x82\xd7\x3c\xc1\x48\x2f\xaa\x88\x0c\x53\xf2\xda\
-\x28\x0e\xfa\xf9\xf7\x58\x7c\x18\x98\x26\x48\x93\x45\x19\x7a\x26\
-\x3e\x07\xcd\x02\x28\xca\x64\x20\x04\x98\x2b\x54\xb0\xf7\xe8\x38\
-\x4e\x9c\xcf\xc3\x56\x8d\x28\x32\x57\x2d\xd7\xdd\x81\xf7\x6e\xbe\
-\x05\x9f\xfb\xf4\x3d\x58\x33\xb2\xca\x64\x44\x70\x33\x80\xef\x02\
-\xf8\x19\x00\x99\xe5\x0c\x56\x2b\xc3\x46\xa5\x32\xa6\xbb\xe2\xb9\
-\xd0\x68\x7d\xf4\x42\x87\xe8\x4d\xed\x58\x7c\x2a\x9d\xb1\x5a\x3f\
-\xaa\xc7\xe4\xf5\xdf\x2f\xde\xe5\xc7\x37\x84\xab\x6c\x49\xda\x55\
-\x12\x74\xbb\x2b\x2b\x98\x8b\xe2\xc2\x68\x67\xa2\x1b\x80\x8e\x56\
-\x42\x8c\x45\x11\x97\x95\x53\x77\x41\xd5\xed\x17\x27\x7b\x52\xd5\
-\x19\x4b\x9e\x54\x2a\x16\x93\x88\x1f\xcb\xe4\x8d\xf1\x4e\x7e\x55\
-\xab\x83\xfb\x14\x65\x83\x72\x7e\xe4\x46\xcb\xb6\x2c\x45\x6f\xdc\
-\xd3\x9a\x45\x31\x91\x2f\xc1\xb2\xa9\x63\x64\x4f\xc9\xba\xbc\x77\
-\xda\x96\x49\x63\x68\x68\x00\xa3\xab\x57\x61\x7a\x66\x16\xd3\x33\
-\x91\x6e\x37\x03\x70\x8c\xec\x15\x00\x6f\xe4\xc6\x36\x57\x97\xa3\
-\xdd\x6a\x65\x01\x15\x6f\x4c\x00\xe0\x00\xd5\x04\x6b\x4c\x37\xd8\
-\xdc\x41\x3a\xd5\x6d\xb5\x85\x06\x41\x2b\x06\x20\x49\xed\x66\x46\
-\xde\xd4\x23\x82\x44\x0d\x92\xaa\xa5\x97\x25\xb0\x51\x4f\x7b\xf0\
-\xff\x54\x1f\x62\x53\xa0\x52\x18\xc6\x95\x33\xd6\x69\x38\xfa\x51\
-\x42\x35\xe1\x80\x6e\xf9\x16\x2a\x18\xb4\x02\x36\xc5\x1b\xde\xd9\
-\xc2\x7c\xd6\xa4\xb1\x26\x70\xc8\x48\x82\x84\xba\x75\xa5\xd8\x03\
-\xaa\x41\x13\x15\x89\x63\x43\x55\xae\x38\x36\x75\xf6\x11\x2c\x55\
-\x2c\xf4\x77\x67\xd1\xde\x96\x52\x34\xdb\x39\x4b\x13\x82\xfe\xbe\
-\x5e\xac\x5b\xbb\x1a\x85\x42\xd1\x71\xbb\xa1\xa1\xb7\xb0\x0b\xce\
-\x7c\xab\x5e\x38\x46\xf6\xe2\x72\x03\xab\x15\xa3\xfa\x51\x2a\xdb\
-\x8e\x00\xd5\x97\x29\x64\xe9\x96\x28\xb5\x30\xa6\x6a\x28\xda\xb4\
-\x58\x1b\x8d\xa4\xea\x09\xea\x04\xc7\x1e\x94\x43\xea\xc2\x68\x13\
-\xc3\x04\x74\xd7\xc1\xb7\xb1\x30\xaa\xab\x7c\x11\xc0\xb4\x9b\x6d\
-\xb0\x42\xa7\x8d\x02\x27\xaa\xf9\x33\xc9\xe4\xed\x00\x4d\xd4\xb6\
-\x33\xad\x29\xce\xed\xa8\xd2\xe6\x04\x28\x47\x2e\x79\xa6\x06\x29\
-\x3c\xd0\xe8\x44\xfb\x27\x4f\x7d\x94\x9a\x14\x61\xee\xa7\x4a\xc5\
-\xe3\xc2\xf5\x6a\x1e\x1f\xc6\xb6\x2f\xc8\x6c\xdb\x14\xa7\x2e\xe6\
-\xf1\xfa\xd1\x4b\x98\x99\xaf\x28\x2e\x4c\xf0\x93\x49\x13\xac\x1b\
-\x1d\xc2\xfd\x9f\xfa\x30\xde\x7f\xd7\x2d\xc8\xb6\x65\xa2\x54\xc1\
-\x2e\x00\xff\x12\xc0\x5f\x02\xb8\x2a\xea\x2e\x2e\xb6\xac\x18\x46\
-\x35\xa0\x98\x9e\x40\xe0\x6c\xaf\x3d\x31\x5b\x12\x09\x06\x9f\xce\
-\x50\x2d\xe4\xe3\x34\xac\x49\x8e\x96\x4a\x10\xb7\x8e\x77\x43\xb9\
-\xc2\x88\xc4\xaa\x54\x2c\x8b\x89\x13\x1a\x22\x4e\x67\x60\x23\x08\
-\x9f\x42\xd1\x39\xef\x44\x63\xe0\xae\x47\x58\xb2\x24\x45\xea\x5f\
-\x10\x35\x33\x61\x19\x97\x00\x38\x9a\xa9\x0c\xe2\x77\x44\x26\x2a\
-\xee\x6b\xcf\x12\x28\x69\xb5\x06\xc2\xa8\x8b\x41\xf9\xbc\xb6\x28\
-\x74\x90\xb2\x75\xd6\xc7\xa0\xc4\xeb\xc0\x59\x36\x15\x65\xcc\x17\
-\xab\x98\x9a\x2b\xa1\xbb\xb3\x0d\xdd\x1d\x19\x29\x81\xaf\x78\x10\
-\x82\xae\x8e\x2c\xc6\xd6\x8d\x22\x9b\x6d\xc3\x85\x0b\x13\x28\x47\
-\xef\x76\x73\x13\x80\xdb\xe1\x4c\x0c\x3d\xbf\x5c\x98\xd5\x8a\x61\
-\x54\x2a\x61\xbe\x45\xd2\x17\x8b\x4b\xa7\xf3\xcf\x53\xb0\x80\x20\
-\x2e\xa0\x52\x2a\xb2\xa0\x1f\xd5\x33\xd1\x9b\x78\x83\xac\x17\x24\
-\xda\x94\xd9\xd7\x88\x0a\x2f\xa8\xef\xf3\x26\x96\xcc\x3a\xee\x89\
-\xed\xf6\x3b\x12\x03\x94\xa2\x8c\xe5\x2c\x96\x78\x64\x29\xa2\x10\
-\x76\x0a\x83\xae\x4a\x48\xfd\xd5\x74\x86\x8a\x60\xc3\xdf\x2d\xa9\
-\xab\xdc\x4d\x14\xd8\x10\x5c\x90\x64\xf1\x9f\x6d\x8c\x12\x87\x02\
-\xbb\x18\x61\x23\xa8\xfa\x99\x11\x43\xd9\xe7\x87\x7b\x9e\x35\xcf\
-\xb4\x97\x76\x66\xae\x84\xd7\x0e\x5f\xc4\xe9\x8b\x73\xa0\xb6\xba\
-\x7b\x80\xf3\xb1\xeb\xcd\x75\xe2\x03\xef\xbd\x1d\xf7\x7f\xf2\x43\
-\x18\x5e\x15\xe9\x76\x43\xe0\xd8\xac\xbe\x0f\xe0\x3e\x2c\x13\xb7\
-\x9b\x15\xc1\xa8\x6e\xbb\x25\x6c\xc2\x67\xd1\xb7\x51\xc9\xac\x45\
-\x2f\x71\x6c\x59\x72\xbc\xce\x08\xcf\x8c\x44\xb1\x6c\x88\x6b\x0f\
-\xe1\xdb\xc7\xda\xb1\xc4\x76\x0b\xf5\x10\xbe\x60\x08\xc5\xf1\x61\
-\x1a\xda\x18\x3e\x9f\x53\x6f\xab\x0b\x93\x48\x6d\x4f\x55\x4b\xd8\
-\x46\xa5\x1a\xd6\xc1\xe3\x45\x70\xb1\x28\x0b\x94\x22\x00\x72\x2a\
-\xb3\xca\x48\xa9\xe8\x2d\xf3\x01\x91\x8d\xdc\x94\x07\x3f\xc2\xe6\
-\x51\xb0\x3b\xae\xab\x6a\x3b\x54\x10\xc3\xd3\x27\x35\x13\x73\x62\
-\x08\x01\xaa\x35\x1b\xe3\xb3\x45\x10\x00\x7d\xb9\x2c\x52\x29\xf5\
-\x9d\x23\xc4\x31\xb2\x0f\x0f\xaf\xc2\xc8\xf0\x20\x26\x27\xa7\x31\
-\x93\x9f\x8f\x72\xbb\x19\x81\x03\x58\xd3\x00\x0e\x2c\xb5\xdb\xcd\
-\x8a\x00\x2a\x4f\xf5\x53\x5d\xd6\xc9\xd9\x22\x26\x67\xf9\x65\x5e\
-\xf4\x4b\xa0\xc8\x12\xb9\x74\x4b\x1c\xd0\x62\x8e\x7d\x63\x38\x11\
-\x81\x86\x69\xa1\x46\xb5\x13\x31\x46\x0b\xc0\x44\x63\x14\x87\x01\
-\xe4\xf8\xed\x90\x55\x2c\x4d\x52\x50\xd6\xfc\xc3\xfc\x11\x4d\x38\
-\x2f\xdc\xab\x18\x59\x17\x7b\x40\xc3\x52\x53\xdd\x82\x89\x7a\x1b\
-\x96\x00\x3b\xca\xe3\xa0\x48\xb1\xdd\x44\x62\x65\xbc\x4a\xca\x8e\
-\x08\xf2\x7d\xe7\xc3\xa4\x18\x03\x80\x72\x5b\xc9\x84\x59\xb6\x33\
-\x22\x58\xa9\xda\xe8\xef\xe9\x40\x5b\x46\x56\x92\xbc\xf4\x99\x74\
-\x0a\x03\x03\x7d\x58\x3b\x3a\x8c\xb9\xf9\x79\x4c\x4e\xe5\x23\xee\
-\x06\x7a\xe1\x80\x55\x0a\xc0\xde\xdc\xd8\xe6\xf2\x52\x81\xd5\x8a\
-\x02\x2a\x9f\x65\x33\xa9\x26\x67\x9d\xed\xb2\x74\x1f\xc7\x46\x58\
-\x96\x94\x5e\x03\x5a\x84\x47\x49\x88\x7e\x7a\xec\xfe\x7a\x84\xff\
-\x4f\x00\x28\xa2\x68\xa7\xa0\x8a\x08\x75\x28\xd3\x33\x94\x4a\xab\
-\x5c\x85\xc6\x0b\xc9\x98\x3a\xa2\xa7\xe6\xe8\x0b\x93\x76\xac\x11\
-\x2a\xd7\x13\xa9\xc0\xf8\x45\xe5\x62\x79\xa6\x44\x04\xc0\xe1\x5e\
-\x7e\x2a\xa1\x80\x4f\x88\x98\x1b\xc1\x32\x34\xdd\xa8\x20\x7f\xca\
-\x77\x24\x36\x40\x29\x9a\x26\xe7\xa1\x52\x98\xcf\xfa\x6c\x60\x7a\
-\xae\x8c\xf9\x52\x15\xfd\xb9\xac\xbf\xa5\xbc\xaa\xce\x54\x0a\xe8\
-\xe9\xe9\xc6\xd8\xba\x35\xa8\x55\xca\xb8\x38\x3e\x0d\xcb\x0a\x75\
-\xbb\xe9\x00\xf0\x7e\x38\x8e\xcd\x7b\x72\x63\x9b\xe7\x97\x02\xac\
-\x56\x16\x50\x29\x86\xa4\x26\xf2\x45\xdf\x98\x0e\x70\x1f\x36\x4e\
-\xe2\xb0\x2c\xc0\x1c\xb4\x08\x0b\x24\x02\x5b\x52\xa9\x70\x22\xf3\
-\xe2\x1a\x2c\xb1\x2f\x05\x70\xb1\xea\x25\xd7\x8e\x90\x1e\x91\x90\
-\xbe\x9a\x32\x30\x36\x7d\x5c\xdd\x10\xb2\xb1\x9b\x2f\x4c\xa1\x92\
-\xa9\xf1\x41\x28\x94\x86\x06\xc9\x4f\x8b\x44\xaf\x14\x40\xc4\xe8\
-\x92\xc2\xbd\x51\x5c\x36\xbf\x14\x25\xca\x4a\xcc\x4a\x0d\x50\x62\
-\x5b\xa3\x00\xca\x0f\xf5\xf3\x3a\x07\xf9\x42\x05\x33\xf3\x65\xf4\
-\x74\x65\xd1\xc5\xec\x76\x23\xd6\x99\x22\x04\x5d\x9d\x1d\x18\x5b\
-\x37\x8a\x4c\x8a\xe0\xc2\xa5\x49\x54\xab\xa1\xbb\xdd\x64\xe0\xbc\
-\xa3\xd7\xc3\x71\x68\x9e\x58\x6c\x23\xfb\x0a\x03\x2a\x59\x26\x67\
-\x1d\xa7\x64\xa2\x7b\x90\x1a\x64\x59\x00\x42\x27\x5c\x7a\xc7\x7e\
-\x12\x46\x1d\x93\x56\xe9\x64\x99\x14\x91\xc3\xd8\x70\xa6\x95\x21\
-\x2a\x21\x7f\x22\xab\x81\x44\x45\x5c\x18\x7c\x90\x75\xb5\x3a\x30\
-\x48\x2c\x94\x0b\xa5\xda\xa4\xd4\x08\x8c\x58\xab\x8f\xcc\xa6\xc2\
-\xec\x4e\x1e\x73\x63\xea\x60\x75\x34\x0e\x3c\xf8\x8b\xc4\xaa\x6e\
-\xbe\x5b\x11\x05\x6c\x4a\x51\xb3\x6c\x54\x2d\x1b\x55\x8b\xa2\x56\
-\x73\x8e\xfd\xb0\x9a\x0d\xcb\x72\x56\x41\xb0\xd9\xc1\x16\x78\x7f\
-\x04\x84\x1d\x69\x14\x40\x2a\x4a\xcd\xe3\x9a\xad\x18\x65\x24\x00\
-\x16\x4a\x35\x4c\xce\x16\xd1\x99\x75\xb6\x94\xd7\x5d\x61\x02\x20\
-\xdb\xde\x8e\x35\x6b\x56\xa3\xa7\xbb\x03\x17\x2e\x4e\xa0\x58\xaa\
-\x44\x8d\x08\x6e\x82\xb3\x08\xdf\x21\x00\xa7\x16\x13\xac\x32\x8d\
-\x17\xb1\x48\x42\xf5\x11\xce\x8a\x96\x3c\x00\xf8\x43\xb4\xf2\x67\
-\xd5\xbf\xc1\x84\x1d\xf5\x09\x01\x2d\x76\x94\x84\x10\x45\x42\xd7\
-\x6c\x41\xfc\xd2\x1d\x90\xa1\xfe\x6b\xc4\xbe\x08\xd4\xb7\x93\x10\
-\x78\xf9\xfc\xd6\xfa\xe1\x7e\x58\x08\x02\x53\x45\xb4\xd8\x11\x2a\
-\x66\x13\x6d\x2c\x62\xf3\x42\x45\xa4\xa3\xc2\x38\x3d\x55\xe7\x50\
-\xde\x3a\xde\x02\xae\x88\x17\xec\x42\x80\x73\x33\xb5\xc8\xe7\xde\
-\x57\x91\xa1\x70\xf7\x9f\x79\xf1\x7d\x30\x72\x46\x84\x6b\x2e\xf0\
-\x58\x96\x8d\x9a\x6d\xa3\x5a\xa3\xa8\xd6\x6c\xd4\x2c\xcb\x01\x1e\
-\xef\xcf\x9f\xa7\xc7\x02\x0c\xaf\xbe\x11\xe2\x3d\x01\x81\xfd\x8e\
-\x10\x82\x4c\x2a\x85\x4c\x9a\x20\x9d\x4e\x21\x93\x22\x48\xa5\x53\
-\x48\xa7\x08\xd2\x29\x82\x14\x21\x0c\x48\xe8\xd5\x3c\x91\x45\x71\
-\x97\xcc\xc5\xfe\xb9\x42\x15\xaf\x1d\xb9\x84\x1b\x2a\x35\x5c\x39\
-\xda\xcb\x1b\xd9\x99\xeb\x43\x08\xd0\xdd\x95\xc5\x7b\xee\xb8\x09\
-\xb9\x5c\x37\x9e\xde\xbe\x1b\xe7\x2e\x4c\x46\x19\xd9\xef\x86\xe3\
-\x76\xf3\x5b\x00\x1e\x1c\xdd\xf2\x80\x75\x61\xf7\x77\xd0\x6a\x59\
-\x31\x40\x25\xbf\x70\x4c\x38\x85\x8f\x48\x54\x03\x58\x00\x03\x5a\
-\x02\x60\x39\x71\xe6\xa0\x45\x88\xe3\x07\x47\x98\x3a\x89\xf8\xde\
-\x11\x84\x34\x9a\x06\x0f\x43\x30\xe9\x85\x3b\xf7\x6c\x26\x6c\x9b\
-\xfd\x6e\x12\xf9\xc1\x63\xc1\x4f\x7f\xc1\xf4\x7a\x6f\xe4\xa4\x0a\
-\xd1\x40\x15\x42\x83\x8c\xcc\x58\x2c\x3d\x14\x55\x1d\x45\x01\xd4\
-\xbf\x31\x92\xf2\xc4\x37\xd1\x4f\x22\xb3\x0d\x9b\x3a\x93\x26\xab\
-\x35\x1b\x95\x9a\x8d\x4a\xcd\x42\xb9\x6a\xa1\x52\xb5\x1c\x36\xe4\
-\x03\x92\xad\x1c\xf5\x13\xfd\x02\x95\xec\xc6\x6f\xbe\xcd\x4d\x3b\
-\x10\xa9\x91\x07\x5e\x29\x42\x90\x4a\x11\x64\xd2\x29\xb4\x67\x52\
-\x68\xcb\xa4\x90\x49\x07\x7f\x84\xf0\xcf\x96\x0e\xa0\xc4\xce\x96\
-\x2a\x35\xbc\x79\x7c\x02\x85\x72\x0d\x1b\xd7\x0f\x20\xeb\xee\xd2\
-\xac\xba\x66\x1d\xd9\x36\xdc\x70\xfd\xd5\xe8\xee\xea\xc4\xd3\xdb\
-\x76\xe3\xe8\x89\xb3\x51\x77\xef\x5a\x00\xff\x1e\xc0\x5a\x00\x7f\
-\x33\xba\xe5\x81\x62\xab\xc1\x6a\xc5\xaa\x7e\x5e\xc2\x09\xc5\xa8\
-\x9f\x98\x4a\xb7\x57\x27\x7f\xc0\xc6\xc9\x2f\x34\x6f\xae\x60\xcb\
-\x8d\x32\x9c\xab\x5d\x68\xb4\x69\xc4\x3a\xa4\x36\x46\xfb\x03\x72\
-\xda\x8f\xaa\xdf\x3a\xf0\x62\x42\x54\x4c\xc8\x54\x2d\x34\x35\x63\
-\x51\x63\xb0\xa3\xfa\x42\x59\x77\x1a\xf1\xfa\xb9\xc0\x54\xae\xda\
-\x98\x2f\x56\x31\xb3\x50\xc1\x64\xbe\x88\xe9\xb9\x32\x66\x17\x2a\
-\x98\x2f\x54\x51\xac\x58\xa8\xd6\x2c\x58\x16\x33\xd7\x8e\x38\xa3\
-\xa1\xbe\xad\xd1\x3d\xe7\xc6\x00\x58\xb5\xda\x4f\x03\x3f\x8d\x77\
-\x9f\x02\x15\x5f\x6e\xbc\xa7\x4e\x5a\x2e\x78\x96\x2a\x16\x0a\xa5\
-\x1a\x16\x4a\x35\x2c\x94\xaa\x98\x2f\x56\x51\xac\xd4\x50\xa9\x3a\
-\x20\xea\x56\xcb\x95\xa5\xdb\xf9\xc6\x01\x66\x8a\xa9\x7c\x11\xc5\
-\x92\xe5\x8c\x08\xb6\xe9\xa7\x4d\xa6\x52\x29\xf4\xf6\xe6\x30\xb6\
-\x76\x35\x8a\xc5\x12\xc6\x27\x66\x60\xdb\x14\x21\xe4\xaa\x1b\xc0\
-\x87\xdd\xdf\xd7\x72\x63\x9b\x8b\xad\x54\x03\x57\x16\x50\x51\x39\
-\xc5\xe4\xac\x6b\x4c\x67\x44\xbb\x38\x5e\x18\x60\x49\x27\x5e\x90\
-\xc2\xc6\xc4\x1a\xbd\x19\x55\x90\x7d\xb8\xfd\x1f\x09\x84\x84\x99\
-\xeb\x42\x79\x41\x59\x5c\xcb\xd5\x64\x48\xb9\x7c\xb1\x1a\x68\xe5\
-\x5e\x11\x80\x44\xc3\x89\x64\x79\x52\x6d\xf1\x1e\x92\xd7\x4c\x68\
-\x68\x46\x7f\xb4\x50\xf9\x52\x12\x30\x57\x1e\x96\x4d\x51\xa9\xd8\
-\x98\x2f\xd5\x30\xbb\x50\x71\x56\x80\x9d\x2b\x61\x76\xa1\x82\x62\
-\xa5\x86\x5a\xcd\xb1\x1f\x79\xe0\xe7\xe7\x16\x07\x2e\x3c\xb0\xe1\
-\xee\x89\x68\x0f\x14\xee\x1d\x67\x9f\x64\xee\x5e\x08\x58\xe9\x84\
-\x07\xb0\x1a\x0a\xa5\x2a\x16\x4a\x35\x14\x4a\x01\x70\x39\xac\x9e\
-\x04\x20\x49\x15\x6c\x93\x02\x33\x0b\x0e\x30\xf7\x76\x67\xa5\x2d\
-\xe5\xd9\xb4\x29\x42\xd0\xd5\xd5\x89\xf5\xeb\x46\x01\xd8\xb8\x78\
-\x69\x0a\xb5\x5a\xe8\x6e\x37\xed\x70\x54\xc1\x2b\xe0\x8c\x08\xce\
-\xb6\xca\x6e\xb5\xb2\x80\x4a\x14\xe2\x30\xaa\x89\x59\x61\x03\x52\
-\x2f\xba\x5e\x96\x25\x9d\x78\x5f\x52\x1e\x94\xf8\x72\x88\xc4\xaa\
-\x42\x1f\x72\xc5\x4a\x9f\x22\xc0\x28\x5f\x06\x37\x6f\x98\x13\x33\
-\xd7\x05\x8e\x3a\x06\xf1\x91\x4b\x28\xab\x6e\x46\x0c\x09\x53\xff\
-\x64\x26\xc5\xb4\x8d\x86\xe4\xe5\xb6\x7c\xf7\x58\x9f\xf3\x32\xcf\
-\x17\x1d\x60\x9a\xca\x97\x30\x3d\x5f\x42\x7e\xa1\x8c\x42\xb9\x86\
-\xaa\x65\xbb\xc0\x04\x7e\xfc\xc0\x05\x37\x7e\xfa\x85\x02\xac\x48\
-\x93\xc0\xca\x0f\xab\xff\xaa\x7a\xc6\xfc\x72\xd5\x42\xa1\x54\x45\
-\xa1\x54\x45\xb1\x5c\x43\xb5\x66\x39\xec\xc7\xef\x4f\x60\x46\xf0\
-\xf8\xe6\x7c\xb1\x8a\xa9\x7c\x09\xdd\x1d\x6d\xc8\x75\xb6\xfb\x65\
-\x8a\x13\x6c\x53\x04\xe8\xe8\xc8\x62\xdd\x9a\x51\x74\x64\xdb\x70\
-\xe1\xe2\x64\x94\xdb\x4d\x1a\xc0\x2d\x00\x6e\x05\xf0\x26\x80\x0b\
-\xad\x00\xab\x15\x02\x54\x1b\x31\xd0\xd7\xad\xcc\xef\x01\x95\x34\
-\x7a\x26\xa4\x6b\x14\xb4\x38\x60\x62\xbf\xb6\x8a\x87\x97\x7d\xe0\
-\xb5\xf1\x42\x25\x44\x78\x21\x58\x96\xc0\x03\x95\xae\xcd\x72\xb8\
-\x8a\x79\x49\xb9\x0c\x00\x2b\xae\x18\x4d\xea\x0c\x6b\x10\xc3\xd4\
-\x54\x98\x66\x53\x8a\x4a\xcd\xc6\x5c\xb1\x8a\xe9\xb9\x32\x26\xf3\
-\x25\xcc\x16\x9c\xe5\x7b\x59\x60\x0a\xae\xb7\x0b\x10\xe2\x28\xad\
-\x70\x1f\xfd\x33\xa2\x07\x9f\xba\xc1\x4a\xc5\xc2\x1b\x14\x4a\x1d\
-\x06\x59\xae\x5a\x28\x96\x6b\x28\x94\x6b\x28\x55\x2c\x58\xb6\xcd\
-\xb0\xad\xe0\x9a\x17\xcb\x16\xc6\x67\x8b\x68\x6f\x4b\xa1\xb7\x3b\
-\xeb\x34\x4e\x65\xcf\x23\x40\x5b\x5b\x06\xa3\xab\x87\x31\xd0\x9f\
-\xc3\xa5\x4b\x93\x58\x28\x94\xc2\xda\x4d\x00\x5c\x0d\x67\x99\xe3\
-\x77\x00\x1c\x6f\x36\x58\xad\x18\xa0\xea\x67\x18\x15\x9b\xc8\x07\
-\x2a\x29\x92\x48\x69\x81\x70\xc0\xd2\xc5\xfb\xeb\x9c\x2b\xbf\xbc\
-\xa2\x13\xb2\x02\x70\x88\xa2\x2c\x26\x8d\x12\x90\x8c\x19\x17\x53\
-\x17\x91\x7b\x1d\x17\xa0\xd5\x42\xb8\x3f\x76\x36\xbb\x7a\xd3\x51\
-\xf9\x8f\xaa\x8a\x53\x88\xe8\x87\xe6\x33\x27\x9b\xa2\x52\xb5\x30\
-\x57\xa8\x60\x6a\xae\x8c\xa9\xb9\x12\xf2\x0b\x15\xf7\xc5\x64\xed\
-\x37\x41\x4e\x99\x31\xc9\x80\x25\x81\x95\xf0\xb1\x09\xf0\x8c\x59\
-\x2c\xc6\x10\xac\x84\xab\x2d\x80\x95\xe9\xb5\x37\x17\x8f\x71\x95\
-\x2a\x16\x8a\x95\x1a\x8a\x95\x1a\xaa\x35\x17\xb4\x52\x8e\xd1\xbe\
-\x6a\xd9\x18\x9f\x29\x82\x52\x60\x20\xd7\xc1\x6d\x29\x0f\xf0\x63\
-\x3b\x99\x74\x1a\x43\xab\x06\xb1\x7a\x78\x00\x53\xd3\xb3\x98\xcd\
-\x2f\x44\x35\x61\x35\x9c\x15\x43\xa7\x00\xbc\x95\x1b\xdb\x6c\x37\
-\x0b\xac\x56\x06\x50\xdd\xbc\x11\xfd\xbd\xde\x84\x4f\xfe\x01\x18\
-\x9f\x2d\x3a\x9b\x37\x8a\x24\x45\x3e\x30\x04\xad\x20\x65\xf0\x4c\
-\xb3\x2f\xb6\x38\xa1\x93\x79\x00\x35\x0f\x70\x30\xc7\x8a\xc9\x2f\
-\xd4\x4f\x84\x38\xf6\x40\x3d\x17\x4a\x06\x32\x81\xaf\xf1\xbd\x11\
-\x56\xc5\x94\xb2\x71\x21\xe2\x9f\xea\xea\x78\x62\x36\x55\x9d\x18\
-\x24\xa7\xac\xd1\xdc\x65\x4e\xe5\xaa\x8d\x7c\xa1\x8a\xc9\xb9\x12\
-\xa6\xe6\xca\x98\x2b\x54\x51\xae\x3a\xaa\x0e\x7b\x8f\x44\x3f\x4b\
-\x25\x60\x49\xd7\x83\x61\x57\x5e\x3a\xa6\xb1\xaa\x81\x11\xf6\x9a\
-\x45\x81\x15\x6f\xbf\xe4\x0e\x00\xa1\x4d\xcd\x16\x8f\x6d\x55\xaa\
-\x0e\x68\x95\x3c\xd0\x82\xf3\x31\x98\xca\x97\x50\xae\x5a\x18\xe8\
-\xc9\xfa\x6e\x37\xe2\xe0\x2b\x01\x90\x4e\xa7\xd0\xd7\xdf\x8b\xb1\
-\x35\x23\x98\x9f\x5f\xc0\xc4\xd4\xac\xca\x54\xcc\x4a\x1f\x80\x8f\
-\xb8\xc7\x7b\x73\x63\x9b\x2b\xcd\x00\xab\x95\x03\x54\x92\x8d\xca\
-\x49\x3a\x31\xc3\xaa\x7e\x62\xac\x78\x12\x0f\xb4\x88\xea\xcb\xab\
-\x79\x88\x45\xd6\xa5\x65\x52\xdc\x0b\xc4\x37\x44\xb6\x6d\xe9\x58\
-\x95\x82\x81\x89\x2f\x15\x53\x46\xa8\xaa\x41\x94\x87\x4d\x97\xa8\
-\xc9\xe8\x5e\xff\x29\x75\xf6\xb8\x73\x98\x93\x0b\x4e\xc5\x0a\x2a\
-\x55\x1b\xb6\xb7\x52\x02\x6b\x40\xe6\xbb\xca\x15\xce\xcf\xb7\xd5\
-\xb0\x2b\x36\xaf\xc8\xae\x20\xdf\xe7\x66\x80\x95\xee\x19\x69\xa5\
-\xd8\xb6\xa3\x2e\x97\x2a\x8e\x7a\x58\xa9\xda\x98\x9e\x2b\x61\xa1\
-\x54\xc5\x40\xae\x03\xd9\x2c\x03\x05\xc2\xc7\x24\x95\x22\xe8\xce\
-\x75\x63\xfd\xba\x51\x58\xb5\x2a\x2e\x8d\x4f\x99\xba\xdd\x0c\xc1\
-\x31\xb2\x2f\x34\x0a\x56\x2b\x0b\xa8\x14\x93\x37\x27\x66\x8b\x18\
-\x9f\x09\x1f\xf5\xab\x1b\xb4\x38\xba\x2f\xa8\x7f\x1a\x67\x64\xff\
-\xe1\xd5\x01\x8e\xee\xe1\xd6\x00\x1b\x5f\x84\x08\x9c\x5e\x31\x32\
-\x42\x11\x39\x73\x38\x10\x91\x88\x78\x43\x15\x4f\xf7\xc7\xfd\x13\
-\xd6\x5e\xb1\x29\x50\xb5\x6c\xcc\x15\x5d\xb5\x2e\x5f\xc2\x5c\xb1\
-\xea\x82\x13\xfc\x6b\x23\x31\x4b\x0f\xb0\x04\xc0\x61\x01\x2b\x60\
-\x4c\x08\xda\x21\x5e\xe7\x30\x55\x10\xc1\xfd\xe4\xef\x37\x09\xbf\
-\x9f\x1a\xb0\x12\x6e\x49\xd4\x5d\x69\x89\xd8\xcc\x68\xe2\xf8\x4c\
-\x11\xe3\x33\x05\xf4\x76\x67\xd1\xc3\x18\xd9\x3d\x61\x47\x04\x3b\
-\x3a\xb2\x58\xb7\x76\x14\x6d\x6d\x29\x5c\xb8\x34\x89\x4a\xb8\xdb\
-\x4d\x1b\x80\x3b\x01\x6c\x84\xe3\x76\x33\xd9\x88\xdd\x6a\xc5\x00\
-\x55\x9f\xcb\xa8\xc4\x04\xe3\x1a\x63\x3a\xa0\x61\x49\xd2\x01\x7f\
-\xc2\xaa\x02\x60\x8e\xb9\x07\x57\x63\xb3\xe2\x1e\x52\x0e\x84\xfc\
-\x60\x1e\x54\x84\x34\xa6\xee\x33\xa2\x1a\x21\xbd\xbc\x11\x9d\xe6\
-\x4e\x15\xec\x86\x5f\x51\x41\x43\x7f\x62\x09\x3f\x4d\xd1\xeb\x67\
-\xcd\xb2\x31\x5f\xae\x61\xda\x05\xa7\xbc\xa7\xd6\x51\x41\xad\xe3\
-\x2e\x98\x5a\x15\x16\x19\x96\x52\x6d\xd7\xb1\x5d\xa6\x51\xe1\x60\
-\xa5\x4f\xa3\x03\x2b\xf1\x8e\x36\x7b\x24\xb0\x51\xb1\x29\xc5\xcc\
-\x7c\x19\x67\xc6\xe7\x91\x6d\x4b\xa3\xb7\xdb\x5d\x2e\x46\xe5\x36\
-\x46\x80\xf6\xb6\x36\xac\x1d\x1d\x41\x6f\xae\x13\x17\x2e\x4d\xa2\
-\x58\x2a\x47\xb9\xdd\x5c\x0f\x67\x13\x89\xb7\x01\x9c\xae\x17\xac\
-\x56\x0c\x50\xf5\x6b\x56\xf8\x9c\x98\x29\x62\x7c\xb6\xe8\x5f\xc8\
-\x20\x46\x48\x1b\x07\xb4\x14\x0f\x5e\xf8\x7c\x29\x06\xa8\x22\xd9\
-\x13\xa4\x87\x99\x65\x5e\xe2\xcb\xc6\x81\xa8\x08\x64\xe2\x8b\x20\
-\x19\x70\xd9\x8c\x7a\x56\xe5\xcd\x23\x62\xac\x34\xf1\x45\xc2\x33\
-\x9e\xfe\x7a\x51\x96\x45\x51\x28\xd7\x30\x33\x5f\xc1\xe4\x5c\x19\
-\xb3\x0b\x65\x1e\x9c\x54\x6d\x90\xd8\x14\x03\x58\xc2\x05\x23\xda\
-\x6b\xa8\x60\x57\xd2\xdc\xa9\x28\xb0\x0a\x4f\x13\x65\x9f\x94\xc0\
-\x8a\x63\x5d\xf5\x5d\xf6\x66\x08\x21\x04\xa5\x8a\x85\x73\x93\xf3\
-\xa0\x00\x7a\xbb\xdb\x99\x38\xa6\x6d\x8e\xf7\x17\xd2\xde\xda\x56\
-\x43\xfd\x18\x9f\x9c\x46\x7e\xae\x10\x05\xb6\xeb\x01\x7c\x10\xc0\
-\x59\x00\x87\x73\x63\x9b\x69\x5c\xb0\x5a\xd1\x40\x05\x28\x46\xfd\
-\x20\xde\xf4\xb8\xa0\xa5\x7a\xa0\x21\x3d\x88\xba\x38\x15\x98\x98\
-\x01\x58\xf4\x86\x0f\xfe\xcb\xc5\x37\x81\xeb\x23\x11\xca\x54\xd1\
-\x2e\xe9\xf2\xe8\xe2\x22\x42\xc3\xc5\x29\x98\x82\xc0\xb2\x1d\x70\
-\x72\x26\x60\x3a\x93\x0f\x8b\xe5\x5a\x30\x5a\xa7\x68\x4f\x60\x87\
-\xe2\x1b\xa7\x62\x59\x3a\xc0\x62\x4e\x95\x13\x30\xbd\xbb\xc4\x6a\
-\x66\xec\xf5\x65\x8d\xec\xe1\x60\x15\x71\x5f\xd9\xf6\x73\x57\x94\
-\xff\x7a\x2d\x2d\x58\x01\xd5\x1a\xc5\xc5\xe9\x02\xaa\x35\x1b\x03\
-\xb9\x0e\x10\x42\x50\xb3\x1c\xdb\x20\x61\xae\x83\x33\x22\x98\x42\
-\x7f\x7f\x3f\xd6\x8e\x0e\x21\x9f\x9f\xc3\xd4\x74\xe4\xda\x56\x43\
-\x00\x3e\x02\xa0\x00\x67\x99\xe3\x5a\x1c\xb0\x5a\x11\x40\x75\x5b\
-\x08\x50\x8d\xcf\x16\x31\xee\x8e\xfa\x29\xd9\x42\x0c\xd0\xf2\x1e\
-\x42\xee\xa1\x53\x3c\xc4\x2a\x56\xe5\xbf\x30\x4c\xa1\x51\x6a\x81\
-\x8a\x49\x89\xac\xd0\xd4\x6e\xc5\xd6\x27\x9d\xab\xd2\xa9\x2f\x87\
-\x00\x70\x44\x9d\x28\x4c\xdc\xe4\x96\x4d\x51\xaa\x58\xc8\x2f\x94\
-\xfd\x99\xe1\x05\x17\x9c\xa8\xd7\x78\xe6\xcf\x63\x42\x52\x8d\x1e\
-\x68\x41\x03\x5a\x4c\x7b\x45\x95\x50\x65\xbf\x52\x83\x9b\xde\x3e\
-\xa8\x1b\x3c\xe1\xef\x71\xc4\xfd\xe6\xa6\xac\xc8\x0c\x7b\x29\xed\
-\x55\xdc\xa5\x26\x8e\x2a\x38\x3e\x53\xc0\x7c\xa9\x8a\xa1\xbe\x0e\
-\xb4\xb7\xa5\xdd\x15\x21\x6c\x58\x9c\x4a\xee\x38\x53\xe7\x72\x39\
-\xac\x5f\x37\x82\x72\xb9\x8c\x4b\x13\xd3\xb0\xc3\xb7\x94\xcf\xc1\
-\xd9\xed\xa6\x13\x8e\xdb\x4d\xc9\x14\xac\x56\x0e\x50\xf5\xea\x18\
-\x55\x01\x13\x33\x45\x89\xed\xc4\x05\x2d\x22\x3e\x60\x9a\x49\x7e\
-\xde\xcc\x5f\x29\x4e\xc3\x8c\x58\x1f\x30\x08\xf1\xec\x43\x1e\x9c\
-\x43\xdb\x17\xd5\x03\x2d\xf6\x49\x04\x2b\x3f\x34\x82\x45\x8a\xc0\
-\x44\xb4\x89\x85\x30\x06\x59\x3c\x70\x9a\x75\xe7\x3a\xcd\xb8\xb3\
-\xc3\x6b\x2e\x38\x71\xd8\x24\x67\xd7\x02\x17\x5b\x97\x96\x65\x31\
-\x27\x2a\xc0\x12\xab\x90\x3f\x04\x21\x46\xf6\x18\x60\x25\x3e\x2f\
-\x7c\x98\xd0\x1e\xb6\x1d\x8a\xb6\x2e\xa5\x4c\xbb\x73\xd5\xfa\x73\
-\x1d\xe8\xee\x6c\xf3\x97\xac\xf1\x96\xb1\xf1\x9c\xf3\x53\x29\x82\
-\xce\xae\x4e\x8c\xad\x5d\x8d\x14\xa1\xb8\x10\xed\x76\x93\x05\xf0\
-\x5e\x00\xfd\x00\x76\x98\x4e\x5f\x58\x31\x40\xd5\xd7\xab\x5e\xe1\
-\x93\x65\x54\x80\xfc\x92\x03\x9a\x77\x4c\x7c\xc1\x09\xfb\x2b\x80\
-\x0f\x09\x4a\x56\xdb\x17\xf8\xaf\xa4\xf6\x2b\xab\x7b\xc8\xd9\x34\
-\x4c\x39\x12\xf3\x82\xfc\x20\x2b\x87\xe4\xb9\x9e\x6b\x54\x0a\xaf\
-\x33\x2a\xe3\xbb\x26\xb9\x4a\x2c\x9b\xa2\x5c\xb1\x90\x77\x77\x46\
-\xf1\xd4\xba\x9a\x45\xdd\xb9\x38\xfc\xbf\x00\x71\xc0\xfd\x89\xe0\
-\xe5\x77\x46\x35\x15\x21\x04\xb0\xd8\x0b\xa8\xfc\x60\x48\xd7\x2d\
-\x04\xac\xd8\xfb\xa4\x05\x2b\x3e\x6d\xd8\x07\x8c\x57\xfd\x08\xdf\
-\x0e\xae\xad\x06\x37\x64\x11\x64\xae\x50\xc5\xa5\xe9\x02\x72\x9d\
-\xed\xe8\xeb\xce\xfa\xe1\xd4\x75\xf6\x0e\x66\xc0\x03\x1d\xd9\x2c\
-\xd6\xad\x1d\x41\x77\x67\x16\xe7\x2f\x4d\xa0\x5c\x8e\x74\xbb\xb9\
-\x09\xc0\x49\x38\x73\xad\x22\x0d\xec\x2b\x68\x17\x1a\x7e\x59\x57\
-\x9d\xe7\x7d\xb0\xcd\x7b\xb0\x62\x59\xb0\x70\x19\xa4\x32\xbc\x65\
-\x3c\x82\xa5\x6a\x29\x82\x10\x61\xbd\x25\xc2\xa4\xf3\x51\x13\x10\
-\x27\x9e\xb0\xa3\xef\xdc\xf6\x4c\x90\x8f\x83\x32\xe4\xb5\xb7\x21\
-\xe6\x55\xdc\x78\x71\xe1\x38\x67\x67\x1d\x5e\x81\x52\xaf\x07\x05\
-\x10\x4a\x41\xb8\xad\x78\xa8\x32\x35\x8b\x85\x36\xdc\xa9\x04\xa5\
-\x2a\xc6\xf3\x25\x9c\x9b\x5a\xc0\xb9\xe9\x82\xb3\x39\xa6\x67\x14\
-\xf7\x40\x42\x41\x9b\x82\xd3\x70\xf0\x52\x81\x96\x8a\x65\x89\x80\
-\x15\xaa\x0e\x6a\x55\x41\x11\xac\x34\x1f\x15\x25\x58\xc9\x69\x39\
-\x40\x54\x80\x95\xe2\xd0\x6f\x2b\x1b\xb2\xd4\x42\x88\xc3\xac\x76\
-\xed\x3f\x87\x43\xa7\xa7\xfd\x49\xb6\x9e\x50\xea\x8c\xdc\x96\xdd\
-\x15\x28\xda\xda\xdb\x71\xe7\x1d\x37\xe3\xfe\x4f\x7e\x10\xab\x87\
-\xfa\xa3\xa6\x02\x77\x01\xf8\x1c\x9c\xd5\x17\x22\x65\xc5\xac\x47\
-\x05\xc8\x4b\x2c\x51\xf5\x7b\xc5\xa4\x0f\x16\x04\xf2\x1e\x1f\x16\
-\x44\x38\xa5\x8b\x7a\x3f\xcc\x83\xe6\xae\xc7\x47\xbc\x38\xca\xaa\
-\x56\xc4\x5f\x1f\x8a\x7a\x0f\x9d\x9f\x9e\x79\x0a\x29\x40\xbd\x87\
-\x97\x06\x79\x79\x61\x91\xcd\x3d\x27\x6c\xfa\xa0\x8d\xd2\x62\x79\
-\x14\xa0\xec\x42\x6d\x70\x1b\x25\x94\xaf\x9c\x4d\x1c\xf5\x62\xb8\
-\x6d\xb0\x28\x45\xb5\xea\xb8\x66\x94\x2a\x35\x94\xab\x16\x6a\x16\
-\x65\x46\xea\x74\x25\x78\x9d\x80\x7f\xed\xf9\x10\x37\x15\x37\x1b\
-\xd4\xbb\x04\x54\x8a\xf7\x6d\x5b\x80\x0b\xb0\xec\xe5\xf2\xae\x4f\
-\xb0\x2a\x82\xbf\xe6\x39\x71\xe0\x3c\x58\xc5\x85\xf8\xae\x3a\x84\
-\xb0\x6b\x98\x51\xdf\xf5\x8d\x80\x38\xbb\x35\xbb\x33\xb4\xa9\x93\
-\xd0\x4d\x2f\xc6\x07\xc7\x5e\xa1\x84\x52\x66\x6d\x2c\xb7\x8d\xd4\
-\x7b\xbe\x18\x3b\x9d\xb7\xda\x1d\xa3\x2d\x78\x7e\x7a\x11\xdb\x5a\
-\x2d\x8a\x10\x02\x2c\x94\xaa\x38\x37\x31\x8f\x2b\x47\x7b\x91\x4d\
-\xa9\x95\x30\xcb\xa6\x80\x4d\x91\x4a\xa5\x30\xb6\x6e\x0d\x46\x86\
-\x07\x70\x71\x62\x26\x8a\x1e\x76\xc0\x50\xab\x5b\x51\x40\xc5\x2f\
-\x49\x1b\x3c\xd4\xe2\xfd\x54\x5d\x1b\x1d\x68\x11\x22\xae\xb6\xc9\
-\xe4\xe1\xbe\x8e\xc1\x67\x33\x58\xc0\x4e\x88\x13\xda\x25\x28\x77\
-\x6e\x98\x1b\xef\x52\x66\x6f\x1b\x72\xaf\xcd\x1e\x10\x49\xa0\x8c\
-\x60\xf7\x60\x1f\x96\x54\x6c\x4e\x6c\x51\xc8\x64\x4f\xaa\xd9\xc1\
-\x85\x82\x75\xbf\x70\xc0\xa9\x52\x63\x96\x16\x71\x13\x9a\xd9\x53\
-\x82\x8e\x11\x02\xff\xc5\xe7\xee\xa7\x50\x0c\x61\xa8\x25\x0b\x5a\
-\xf5\x02\x16\x07\x44\x0c\x58\x79\x8b\xdf\xf9\xd7\x9e\xba\x20\xe2\
-\xb7\x33\x0a\xac\x20\xa5\x0d\xf0\x2a\x28\x8b\x50\x12\xb4\xc7\xfb\
-\x70\x79\x75\xbb\xb0\x15\x00\x26\x03\xd0\x24\x7c\xcd\xae\x56\x0b\
-\x85\xb3\x3d\xfc\x35\xeb\xfa\x71\xe7\xc6\x11\x64\xdb\xc2\x31\x85\
-\x10\x82\xa9\xa9\x69\x6c\x7b\xfe\x65\xbc\x7d\xf8\x94\xc9\xf3\x71\
-\x1c\x40\xd1\xa4\x2d\x2b\x06\xa8\x54\xeb\x49\x47\xa5\xd5\x5d\x27\
-\xca\x3c\x4a\x5c\x62\x17\x81\x7c\x20\x70\xd1\xc4\x61\x02\xde\x0b\
-\x41\xdc\x97\xd9\xfb\x36\xc2\xff\x42\x06\x31\x0c\xab\x22\x54\x00\
-\x2c\xa6\x6e\xaf\x44\x56\x05\x11\xd3\x48\x7d\x61\x80\x90\x61\x5f\
-\x32\x63\xe2\xf5\x46\xca\xe4\x27\x8a\x24\xb6\xed\x38\xb4\x56\xaa\
-\x36\x4a\x55\x07\x9c\x58\xd6\xe4\x49\xca\x04\x9b\x54\xe2\xd5\x45\
-\xe4\xc0\x80\x3c\xc9\xc0\xe5\xf5\xd1\x04\xb0\x58\x62\xe6\x83\x03\
-\x02\x80\xf4\xd7\x2c\xa7\x41\x5e\x07\xc8\x78\x76\x65\x0e\x56\xea\
-\xb4\x1e\xcb\x06\x55\x80\x15\xdb\x75\x8a\x00\xbc\xfc\x20\xc2\x00\
-\xaa\x8a\x7f\x2e\x8e\x50\x0a\xb4\xb7\xa5\x70\xd3\x95\x43\xb8\xf9\
-\xea\x55\xc8\xb6\xa5\x43\x41\x93\x10\xe0\xdc\xb9\xf3\xd8\xba\xfd\
-\x25\xbc\x73\xea\xbc\x49\x15\x07\x01\x7c\x07\x40\xd5\x64\x75\xd0\
-\x25\x07\xaa\x54\xa6\x03\x76\xad\x64\x96\x58\xa5\xbf\x50\x6f\xcd\
-\x74\x70\xc8\xc4\x52\x7d\x20\x0c\xb4\x18\x8c\x52\xb0\x25\x0a\x1a\
-\xb8\x7c\xb0\x0f\x17\xdb\x1e\xb6\x5d\x5c\x5e\xe6\x21\xf4\xbf\xda\
-\x72\x3d\x5e\x18\x9b\x07\x0c\xd3\x93\x54\x52\xb6\x97\x92\x16\x29\
-\x30\x3a\x4e\xd5\xf5\xe2\x9c\x25\x77\x6b\x2e\x6b\x2a\x57\x6d\x67\
-\x39\x5e\xcb\x86\x6d\x0b\xb3\xc8\x75\xf7\xc2\xd8\x9e\x42\xb9\x1f\
-\x25\xb3\x13\xd4\x5b\x16\xac\xfd\x4b\xcf\xb2\x2c\x0d\x60\x79\x1f\
-\x17\x2d\xbb\x62\x55\x41\x4e\x53\x23\x4a\xb0\xf2\xef\x8d\x08\x56\
-\xcc\xa5\x8e\x06\x2b\xe6\x56\x51\x96\x75\x45\xa8\x80\xec\xb3\xb9\
-\xc8\x58\x45\x29\xd0\xd5\x91\xc1\x1d\xd7\x8d\x60\xe3\xd8\x00\xd2\
-\x29\x12\xbe\x1a\x2b\xa5\x38\x7a\xec\x04\xb6\x6e\x7f\x09\x17\xc7\
-\xa7\x4d\x98\xd4\x21\x00\xbf\x01\x67\xfd\x2a\x23\x59\x72\xa0\xea\
-\x18\xde\x88\xc2\xb9\x7d\x46\xb3\xdd\x02\x16\x01\x9e\x30\xf8\x80\
-\xc1\xda\x43\xc2\x41\xcb\x67\x2b\xac\x21\x94\x05\x19\x1f\x3c\xd8\
-\x17\x9f\x30\xf5\x32\x46\x52\xd6\x66\x25\x74\xc3\x09\xe3\x0d\x63\
-\xbc\xea\x16\xe4\x0d\x8a\x12\xd4\x45\x9f\x9d\x89\x65\x53\xc5\x1a\
-\xea\x2c\x22\x10\x7f\x27\x15\xdb\xa6\xa8\x5a\xce\x5a\xe1\xd5\x9a\
-\x03\x4c\x1e\x63\xa2\xc2\x75\x90\x49\x8f\xa4\x00\xc7\x10\xc2\xfd\
-\x30\x77\x48\x09\x5e\x32\x68\x09\x2c\x8b\x53\xdd\x35\x80\x25\xaa\
-\x83\xac\xea\x05\x57\xc5\x72\x59\x72\xb8\xdd\x4a\x63\x93\x62\xed\
-\x47\x02\x73\x0a\x46\x44\xa8\xcf\xc0\x38\xb6\xe7\xb7\x29\x42\x05\
-\xf4\x91\x74\x71\x59\x15\xa5\x40\x7f\x4f\x16\x77\x6d\x1a\xc5\x15\
-\xab\x7b\x84\x7b\x26\xdc\x59\x42\x50\xab\xd5\xf0\xe6\xfe\x83\xd8\
-\xbe\x73\x0f\x66\xe7\x16\x4c\x40\xea\x05\x00\xff\xca\xfd\x85\xe9\
-\x5a\xeb\x4b\x0d\x54\xa4\x73\x78\x23\x2d\x9c\xdb\x67\x9c\x81\xd5\
-\x12\x88\x18\x06\xe6\xa1\x0f\x01\x2d\x2f\x8f\x7f\x4c\x19\xd0\xe1\
-\x0c\xcf\x24\x30\x90\xb3\x15\xb1\x5f\x79\xef\xab\xca\x15\x2c\x1b\
-\x9c\x82\x32\x18\xb0\xa3\x0c\x88\x29\x41\x92\xef\x35\x6f\xcc\x87\
-\x74\x4c\x5d\xf6\x60\x51\x0a\xcb\x72\x1c\x4f\xbd\x8d\x0c\x6a\x96\
-\xed\xcf\x7f\x11\x41\x57\x9e\x00\xaf\xb7\x6b\xc9\x77\xd0\xe4\x66\
-\xa9\x92\x07\x2a\xab\x9f\x98\xaa\x40\x8b\x67\x59\x22\x60\x29\x55\
-\x42\x51\x1d\x74\x3f\x4c\x2c\x10\xb1\xaa\x60\x14\x58\x81\xb0\xf5\
-\x51\x2e\x6d\x60\xa7\x62\xd5\x3c\x91\x4d\x05\xc6\x75\x95\x0a\xe8\
-\x0f\xc8\x68\x54\xc0\xc5\x34\xac\x8f\xae\xea\xc6\xdd\xd7\x8f\x62\
-\xa4\xbf\x33\x14\x1e\x09\x21\x28\x97\x4a\x78\xe9\x95\x7d\x78\xf1\
-\xd5\x37\xa3\xb6\xda\x02\x00\x0b\xc0\x43\x00\x7e\x13\xc0\x61\xc0\
-\x1c\xa4\x80\xa5\x03\x2a\xbf\x47\xeb\x3f\xfe\x31\x4c\xee\xfb\xc7\
-\xba\x0a\xa1\x8a\x13\xe5\xa8\x9e\x08\x5a\x4a\x20\x10\x2d\xba\x2e\
-\x63\x61\xd9\x0d\xf1\x9f\x59\xef\xfb\xe7\x26\x0d\x10\x8c\xb3\x59\
-\x11\xc6\x66\xc5\xc4\x39\x35\xb2\xb6\x2e\xf0\xf5\xb3\xba\x27\x43\
-\xfc\xfc\xf7\x96\x06\xfb\xc6\x59\xae\x6d\xc9\xdb\x5b\xae\x66\x39\
-\xe7\xc1\x9e\x74\xec\xb5\x20\xbe\x8a\x24\x3d\x52\x51\xe0\x44\x94\
-\x87\xda\x90\xa0\x1f\x8a\x7b\xc5\x04\xa8\x81\x8b\x07\x2d\xce\xbe\
-\xe6\x52\x68\x51\x25\x14\x01\x8b\x65\x57\xac\x8a\xa7\x52\x05\xa3\
-\xc0\x8a\x53\xed\x18\x55\x4c\x05\x56\x9c\x29\x3d\xcc\xb8\xce\xa8\
-\x80\x9c\x7d\x60\x89\x54\x40\x42\x80\x0d\xa3\x7d\xd8\xbc\x69\x35\
-\xfa\xba\xdb\x23\xec\x51\x04\x73\x73\x73\x78\x6e\xe7\x2b\xd8\xbb\
-\xff\x48\xd4\x04\x4f\xc0\x31\x98\x7f\x17\xc0\x1f\x01\xb8\x58\xcf\
-\x8e\x35\x4b\x01\x54\x6c\x8f\xc8\xa3\x5f\x00\x5d\xf7\x0d\x76\x3c\
-\x5f\x16\xdb\xa6\x28\x96\x6b\xce\x0b\x46\x00\x6f\x89\x55\xc7\x17\
-\xc9\x79\x31\x53\xfe\x8c\x64\xf5\xec\xec\xa0\xf2\xe0\x9b\xc5\xa9\
-\x55\x94\xfa\x54\x9c\x63\x49\xec\xd6\x56\xf2\xb8\x60\x60\x39\x52\
-\xda\xcf\x00\x0d\x2a\x48\xaa\x9f\xaf\x96\x00\x80\x0d\xd8\xee\xcb\
-\x6a\x83\xfa\xb3\x81\x2d\x9b\xa2\x66\xdb\xb0\x2d\xef\xd8\xdb\x63\
-\x8e\xdb\xf8\x4b\x66\x5d\x2c\x7b\x92\xee\x84\x66\xc2\xa7\x94\x3e\
-\xbe\xd2\x17\x9a\x9b\x50\xe5\x87\xc6\x87\xfe\x80\xee\xf2\xcc\xd9\
-\x6b\xb3\x16\xb0\x02\x10\x02\xc0\x4c\x0d\x61\xd8\x95\x38\x0a\x67\
-\x0a\x56\xde\xf5\xe5\xf6\x07\x24\x7e\x1b\xfd\x27\x2b\xca\x5e\xc5\
-\xde\x76\xc1\x5e\xb5\xd8\x2a\x20\x05\x90\x49\x11\x5c\x7f\xc5\x20\
-\x6e\xbb\x76\x18\x9d\xd9\x4c\x24\x48\x8d\x8f\x4f\x60\xeb\xf6\xdd\
-\x38\x72\xec\xb4\x6c\xda\x90\x65\x1a\xc0\xd7\x01\xfc\x25\x80\xb9\
-\x7a\xb7\xd5\x5a\x6c\xa0\x22\xe2\x6f\x9a\x10\xac\x7e\xef\x3f\x0b\
-\x7d\x0d\x6c\xea\x18\x7d\xfd\x87\x87\xf9\x6f\x7a\xae\x84\xf1\x99\
-\x82\xb3\x89\x63\x8a\x20\x45\x52\xee\xaf\xb3\x86\x0e\x71\x37\x77\
-\x4c\x11\x67\x01\xb0\x54\x2a\x05\x42\x68\x00\x6c\xbe\xf9\x87\x80\
-\x53\xfa\x3c\xf5\x40\x7c\xe1\x85\xee\xb0\x54\xdd\x4b\x41\xd9\x97\
-\x86\x39\x0e\x58\x18\x05\xe0\x6d\x68\x09\x7f\x63\x4b\xdb\xa6\xb0\
-\xa8\xd3\x5f\xea\x87\x79\xa9\x85\xa1\x75\xee\x3a\x30\x70\x63\x04\
-\x50\x1a\xf6\x14\xda\x57\x3e\x28\x2e\x6c\xc9\xa0\x24\xce\x36\xe7\
-\xf7\xc9\x0b\x30\x9c\xe1\xa0\x9c\x2d\xca\x2d\x43\x02\x2c\x86\x5d\
-\xb1\xe4\x84\x65\x57\xf5\x82\x15\x33\x1a\xe7\xab\x65\x08\x1f\x09\
-\x54\xda\xab\x34\x2a\x20\x37\x38\xa3\x08\x6a\x36\xab\xa2\x14\xe8\
-\x68\x4f\xe3\xd6\x6b\x86\x71\xc3\x86\x41\xb4\xa5\x53\x91\xe5\x9f\
-\x3c\x79\x1a\x4f\x6f\xdf\x8d\x33\xe7\xc6\x4d\xec\x51\xa7\x00\xfc\
-\x6b\x00\x7f\x0f\xc3\xd1\x3d\x9d\x2c\x16\x50\x11\xc5\x31\xf3\x1b\
-\xef\xea\x53\xe6\x3f\x67\xbe\x8f\x0d\x85\xa9\xc7\x29\x9c\x61\x0d\
-\x9e\x9f\x9e\xb7\xe9\xa3\xf3\xeb\x31\xb4\x80\xa5\x11\x38\xc0\x06\
-\x17\xe0\xd8\x38\xf6\xf1\x51\x33\xb7\x80\x1a\x79\xe0\xe2\xb5\x97\
-\x05\x1b\x9d\xda\x2a\xae\xc2\xc0\xdb\x92\x04\x08\x61\x19\x51\xbd\
-\x00\x15\x06\x4e\xc4\x04\x90\xa2\x52\x50\x39\x15\x61\x63\x20\x03\
-\x97\x12\xb4\x3c\x96\xa5\x00\x2c\x96\xf1\xf8\x6c\x8a\x70\xc6\xf6\
-\x48\xb0\x82\x08\x46\xf5\x81\x15\xd7\x1e\x95\xbd\x2a\x44\x05\x64\
-\x4d\x06\x94\x9d\xa8\xd5\x02\x56\x45\x29\x45\x4f\x57\x3b\xde\xb3\
-\x69\x35\xae\x5e\xd3\xe7\xcf\x27\x54\xde\x61\x42\x60\x5b\x16\xde\
-\x3e\x74\x14\xcf\xee\x78\x05\x93\xd3\x79\x13\x90\xda\x07\xc7\x68\
-\xbe\x15\x00\x6d\x74\x83\xd2\xc5\x00\xaa\x08\x90\x82\x6e\xec\xbd\
-\xe1\xca\x00\xef\x0b\xc4\x18\x90\x29\x05\x25\x14\x96\xad\x59\x25\
-\x41\x62\x2b\x8c\xff\x9f\xe0\x84\xaa\x4c\xc3\xa8\x71\x7e\xd9\x60\
-\x00\x93\x65\x25\x0a\x7f\x40\x33\x07\x58\x26\x0d\x77\xee\x17\xc4\
-\x5f\x0b\x95\x8a\x47\x98\xf4\xc2\xc5\x0b\xb5\x41\xc5\x66\x55\x44\
-\x09\xca\x01\x07\x0d\x0a\x0a\x3e\x40\xcc\x2c\x33\x06\x95\xb4\x80\
-\x65\xc0\xae\xb4\x60\x85\x30\x30\x52\x81\x15\xcb\x6c\x02\x10\x91\
-\x55\x3f\x8d\xbd\x2a\x4c\x05\x64\x28\x93\x8e\x4d\x35\x83\x55\x51\
-\x0a\x0c\xf5\x75\xe1\xee\x1b\x46\xb1\x66\x55\xb8\x07\x0b\x21\x04\
-\xd5\x6a\x05\x7b\x5e\xdf\x8f\x9d\x2f\xee\xc5\x7c\xf8\x6e\x34\xde\
-\x1d\x7c\x06\x0e\x48\xed\x05\xe2\x19\xcd\x75\xd2\x6a\xa0\x12\x41\
-\x2a\x0c\xb4\x5a\xdb\x10\x22\xfc\xba\xff\x71\x2f\xbe\x94\x86\x05\
-\x1d\x01\xd8\xfc\x74\x8a\x34\x6c\x1c\x73\x1c\x06\x52\x2a\xb0\x0b\
-\xa2\xc2\x41\xaa\x19\x00\xa5\x04\x27\x2d\x70\xc5\xbc\xf6\xca\x13\
-\xc2\x00\x93\x73\xc0\xf6\xcf\x8b\x0b\xfa\xc9\xba\xb7\xb8\xf9\x5d\
-\x3d\x3b\x00\x35\x28\xd9\x15\x3b\x77\xca\x49\xe7\xaa\xf9\xbe\x0d\
-\xdb\x1c\xac\x7c\x55\xce\x27\x50\x8c\x0a\x17\x62\xaf\x32\x55\x01\
-\x7d\x20\x52\x4d\x7f\x67\xea\x6f\x44\xd6\x8f\xe4\x70\xd7\xf5\xa3\
-\x18\xec\xed\x88\xb4\x47\x15\x0a\x05\xec\x7a\xf1\x35\xbc\xb2\xf7\
-\x6d\x54\xc2\xf7\xf7\x03\x80\x0a\x80\xff\x0e\xe0\x77\xe1\xa8\x7d\
-\x4d\x01\x29\xa0\xb5\x40\xa5\x03\x29\xa2\x49\xd3\x62\x11\xaa\xe5\
-\x11\xc5\x7f\xf8\x83\x46\x6a\x00\x88\x47\x10\xbe\x28\xae\xaa\x56\
-\x81\x94\x5e\xd5\x13\xd5\xbc\x50\x80\xd2\x81\x53\x50\x65\xe4\xe5\
-\x54\xaa\x8b\x9c\xd0\xe0\x7f\xdd\x54\x05\x1f\x98\x78\x84\xf2\xe2\
-\x24\x96\x25\x02\x16\x09\x6c\x81\xfe\x3b\x2d\xb0\x2b\xb5\x2a\xe8\
-\x5e\x33\x4a\x65\xb0\x82\xde\x66\xa5\x9c\x63\xc5\x61\x0a\x51\xda\
-\xab\x54\x2a\xa0\xd7\x68\xad\x0a\x08\xd6\xaa\xd9\xd8\x74\x05\x8a\
-\xc0\x1d\xe6\x3d\x1b\x47\xfc\xa5\x5b\xb4\xb7\x97\x10\x4c\x4f\x4f\
-\x63\xdb\x8e\x97\x71\xe0\xd0\x3b\xb0\x2c\x1a\x05\x52\xf3\x00\xbe\
-\x0d\x6a\xff\x29\x08\x99\xba\xb0\xfb\xaf\x62\xb5\x2f\x4a\x5a\x05\
-\x54\x24\xe2\x57\x08\xa3\x26\xaf\x46\xfd\x8d\xe1\x98\x92\x0c\x3a\
-\x22\xbb\x92\x3c\xde\x15\x2d\x96\xc1\x89\x30\xc9\xf4\x2f\x7c\xd3\
-\x41\x4a\x61\xb7\x92\x96\x3f\x01\x9f\x89\x6f\x96\x02\xe4\x94\xd7\
-\xaf\x9e\x5b\x24\x33\x41\x4f\x82\x81\x06\xf1\x3a\xba\x20\x12\x0b\
-\xb0\x22\xd8\x15\x61\xd2\x71\x06\x74\x70\xaa\x20\x6b\x1b\x52\x1a\
-\xd8\xc1\xaa\x61\x3c\xcb\x09\xb3\x57\xe9\x54\x40\x42\x35\xdc\x48\
-\xd2\xfb\xd0\x10\x89\x0a\xdc\x61\x56\xe1\xe6\xab\x87\x0c\xdd\x61\
-\x2e\x60\xeb\xf6\xdd\xbe\x3b\x4c\xc4\xc7\xeb\x12\x40\xbf\x6a\xd7\
-\xca\xff\xf1\xbe\x1f\x7c\xaf\xf8\xb7\x1b\x9b\xff\x3a\xb7\x02\xa8\
-\x62\x82\xd4\x62\xb0\x2a\xa2\x3e\xe5\x7e\x89\x36\xab\xa4\xf2\x71\
-\x11\x50\xa8\x7c\xe0\xde\x3c\xd1\xc6\xc5\xd6\x59\x0f\x48\xe9\x55\
-\x3d\xfd\x9a\x4b\xb1\x00\x4a\x04\xbb\x88\x4b\xab\x4b\xa9\x63\x52\
-\x62\x7f\x01\x70\x0c\x81\xed\x73\x00\x12\x54\x01\x58\x2c\x08\x41\
-\xcd\xae\x58\xb0\x02\x22\xed\x56\x32\x98\x31\x60\xc5\xda\x90\x24\
-\x15\x31\x40\x1e\x25\xce\x08\x2a\x20\xd8\x7a\x5b\xc8\xaa\x44\x77\
-\x98\x54\x84\x3b\x0c\x40\x71\xf4\xe8\x09\x3c\x6d\xee\x0e\x73\x04\
-\xd4\xfe\xed\x4a\xfe\xfc\x8f\xa6\xde\x7e\xd8\xfa\xdb\x8d\xdf\xf7\
-\xbf\x15\x66\x0f\x90\x99\x34\x1b\xa8\xe2\x82\x54\xcb\xc5\x88\x4d\
-\x71\x20\xa0\x56\xf9\x04\x14\x51\xb2\x2a\xd9\xb9\x98\x05\x22\xb1\
-\x4d\xe6\x20\xa5\xb3\x47\x89\xaa\x26\xcf\xaa\xf8\x36\x73\xfd\x50\
-\x81\x4b\x04\x38\x85\x3f\xaf\xaa\x48\xde\xe6\xc4\xc7\x40\x7a\x8c\
-\xd9\xb9\x6a\x2a\x1f\x4d\x7f\x95\x09\x0e\xb0\xa2\xd9\x55\xa0\x0a\
-\xea\xed\x56\x1c\x58\x79\xa0\xa1\x01\xab\x30\xe3\xba\xd2\x5e\xa5\
-\x51\x01\x63\xb3\xa9\x3a\x58\x95\xca\x1d\x46\x7f\x7f\x09\xac\x5a\
-\x0d\x6f\xc4\x73\x87\x79\x89\x5a\xd5\xdf\x98\x7a\xeb\x47\x3b\xab\
-\x0b\x93\xec\xdd\x6e\x02\x0f\xe4\xa5\x99\x40\x55\x0f\x48\x11\xf7\
-\x8a\xb6\x10\xb4\x4c\xd8\x14\x00\x12\x5e\x04\xcf\x66\x14\x2a\x1f\
-\x0b\x52\x02\x10\xb1\xe9\x44\xc0\x64\x0b\xab\x0f\xa4\x1a\x03\x28\
-\x9d\x5a\x27\x3f\xa3\xe1\xb7\x48\x8c\xa5\x21\xe9\x89\x4f\x81\xbc\
-\xb4\x60\x1e\xe9\xe0\xba\xa9\x58\x96\x6f\x1f\xf2\xce\x01\x85\x8a\
-\xc7\xd8\x8a\xc0\x02\x11\x24\x00\xe2\xc1\x0a\xfe\x2b\xc6\x82\x15\
-\xc7\xe0\x20\xb2\x19\xb6\x52\x16\xb4\x22\x54\xc0\x10\xc3\xba\xcf\
-\x9e\x1a\x60\x55\x14\xc0\xe8\xaa\x2e\xdc\x7d\xfd\x1a\x0c\xf7\x77\
-\x86\xdf\x3b\x42\x50\x2e\x97\xf0\xd2\xcb\x71\xdc\x61\xe8\xa3\x76\
-\xb5\xfc\x5b\x97\xf6\x7c\xff\x20\x9c\x05\x38\x29\x53\x75\x93\x94\
-\xd6\x40\x9a\x05\x54\xf5\x83\x54\x0b\x99\x55\x2c\x36\xe5\x1d\x89\
-\x6c\x4a\x62\x1a\x1a\x95\x4f\xa8\x93\x6f\x87\x9a\xbd\x49\x6d\x69\
-\x22\x48\xf1\xed\x90\x7d\xbe\x55\x00\x15\x06\x4e\x3a\x76\xa4\xbd\
-\xf6\x21\x71\xe2\x77\x89\x05\x2e\x9e\x4d\xb9\xdf\x31\xc6\x9e\xe5\
-\x78\xc1\x04\x3a\x20\xaf\xe2\x81\x5b\xe5\xc0\x53\x05\xd9\x69\x0c\
-\x2a\xb6\x04\x56\xe5\xf2\xd5\x3c\x06\x38\x3c\x8d\x8f\x61\x42\xa2\
-\x71\x9d\x9d\xb9\x6e\xa4\x02\x72\xaf\x30\x0f\x76\x7e\x11\xcc\x6f\
-\x9c\xd7\x9e\x10\xe0\xca\x98\xee\x30\x3b\x76\xbe\x82\xd7\xf7\x1f\
-\x41\xad\x66\x47\x81\x54\x09\xd4\xfe\x5b\xab\x3c\xf7\xd5\xf1\xbd\
-\x7f\x7f\x1e\xc1\x2a\xc1\x4d\xe4\x82\xb2\x34\x03\xa8\x96\x25\x48\
-\x29\x8b\x8f\x6a\x85\x09\xab\x52\x65\x93\xde\x62\xdd\xdc\x2b\x3e\
-\xa3\x08\x8c\x7c\xba\xb8\x20\x65\xc6\xa2\xa2\x01\x8a\x68\xc2\xe3\
-\x5c\xef\xf0\xe7\x92\x2b\x97\xfa\xfc\xc8\x8d\x93\x47\x0a\xbd\xeb\
-\x24\x7a\x26\x38\x80\xc5\xb0\x2b\x6f\x3a\x43\x84\x2a\x48\xdc\x37\
-\x3f\x50\xc1\x04\xb0\xe2\xa6\x37\xf0\x6c\x46\xa5\xb3\x99\xa8\x80\
-\x5e\xe5\x1c\x4b\x52\x18\xd6\xb9\xbc\xcc\x3b\xae\x67\x55\x01\xb8\
-\x53\x0a\x64\xd2\xf1\xdd\x61\x9e\x79\x6e\x37\x0e\x1f\x3b\xad\x70\
-\x86\x97\x64\x96\xda\xd6\x37\x2b\xf9\x73\x7f\x39\x7d\xf0\xd1\x3c\
-\x02\x90\x12\x1b\xdc\x74\xb0\x6a\x14\xa8\x9a\x01\x52\xa4\x09\x80\
-\x2b\x37\x8c\x08\xbf\x7e\x65\x21\x6c\xca\x0b\x57\xcd\x99\xf2\x52\
-\x29\xa9\x53\x88\xca\xc7\x25\x51\xdb\xa5\x78\xd5\x8f\x69\x4d\x23\
-\x20\xa5\x9c\x9e\xa0\x03\x28\x33\x70\x12\x0d\xe0\x61\x29\x75\x42\
-\x59\x04\x12\xdb\xcc\x80\x96\x8a\x65\xf9\x0c\x8b\x9d\x46\x40\x18\
-\x76\x65\xaa\x0a\xb2\xd4\x46\xc0\x1e\x4e\x1d\xf3\x03\xc0\x31\x30\
-\xb5\xea\x45\x82\x36\x88\x2a\xa0\x5f\x2e\x04\x03\x15\xfb\xfe\xd6\
-\xcb\xaa\x5c\xd0\xa5\x2d\x77\x87\x39\x43\xad\xea\x1f\xce\x9f\x79\
-\xf5\xef\x17\xce\xef\xab\x82\x07\x29\x45\x47\x9a\x0b\x56\x8d\x00\
-\x55\x93\x40\x4a\xca\xd3\x24\xd1\xa9\x6b\x51\x2d\x50\x34\x9f\x08\
-\x65\xb0\xd9\x04\x40\xe4\x5a\xa0\xb1\x4b\x49\xc6\x73\x4e\x1d\x34\
-\x07\x29\x79\x52\xa9\x22\x3d\xd3\x0e\x70\xf9\xd8\xda\xd5\x77\xc0\
-\x1c\x98\x62\xdc\x15\xa1\x32\xce\xc6\xc2\x54\x17\xa8\x87\x2c\x00\
-\x05\xfd\x61\x47\xf7\x40\x78\xdb\x95\x4e\x15\x14\xc1\x8a\x57\x03\
-\x35\xeb\x9e\x83\x61\x39\xcc\xab\xe6\xbf\x7d\x8a\xf9\x55\x41\x67\
-\x7c\x3d\x91\xb3\x97\x89\xe0\x55\x1f\xab\xe2\xd9\x54\x4f\x57\x9b\
-\xb9\x3b\x8c\x6d\xe1\xed\x43\xc7\xf0\xec\x73\x2f\x1b\xba\xc3\xd0\
-\xfd\x76\xb5\xf4\xdb\xd3\x07\x1f\x79\xba\xba\x30\xe9\x35\xdd\xbb\
-\x23\x2a\x20\x6a\x3a\x58\xd5\x0b\x54\x44\x73\xbe\x2c\x40\x4a\x66\
-\x51\xaa\x5f\x93\xf9\x54\x9a\x86\x2a\x0c\xe8\x7e\x49\x3e\x70\x29\
-\x98\x9b\x92\x41\x35\x08\x52\x1c\x96\x10\x89\xe8\x71\xe3\x96\x46\
-\x00\x45\x22\x58\x95\x78\x60\x28\x94\xfb\x61\xda\xa4\x06\xad\xc0\
-\xa0\xce\x33\xac\x60\xba\x02\x71\xcf\x99\x11\x38\x88\xac\x29\x50\
-\xb1\xe2\x80\x15\x3b\x12\xe8\xd1\x22\xde\x5e\xc5\xd3\x30\x11\x38\
-\xd4\x6c\x8a\x0d\x8c\xcf\xaa\xb4\xc6\x2e\x0a\x0c\xf5\x75\xe2\xae\
-\xeb\xe3\xb8\xc3\x1c\xc0\xce\xdd\x7b\x31\xbf\x50\x8c\x76\x87\xa1\
-\xf4\x39\xab\x3c\xf7\x5b\xe3\x7b\x7f\xf0\xba\x5b\x73\x18\x48\x85\
-\x81\x15\x84\xf0\x58\x52\x0f\x50\x11\xcd\xb1\x2a\x8d\x0e\x8c\x5a\
-\xc8\xa4\x98\x62\x25\xc4\x89\x40\x30\x13\x36\xa5\x98\xa5\x2e\x4f\
-\x37\xd0\xf7\x54\x65\x3c\xe7\x92\x36\x09\xa4\x22\x59\x94\x70\xe5\
-\x75\x0f\x2c\x0f\x66\x0d\xdc\x2e\xbf\xff\x3c\x62\x71\x4f\xb0\xaf\
-\xda\x05\x31\x12\x60\x79\x36\x2c\x0d\xbb\xf2\xd7\x1b\x03\x8d\x01\
-\x56\xec\xdb\xc5\x83\x95\xff\x56\xb1\x60\x05\xd1\xf0\xce\x20\x28\
-\x07\x36\xc2\x44\x50\x08\xbf\x22\x9b\x0a\x61\x55\xe2\x08\xa0\x27\
-\x63\x23\x39\x6c\xbe\x7e\x14\x83\x3d\xd9\x66\xbb\xc3\x54\x41\xed\
-\xff\x59\x5d\x18\xff\x83\xc9\xfd\x0f\x9e\x84\xb3\x5b\x0c\x3b\xb2\
-\xc7\xde\x59\x13\xd6\xa4\x02\x31\x63\x69\xa5\xea\x17\xc6\xb2\xf8\
-\xe3\xe6\x9b\xa8\x22\x90\xd1\x90\x4d\x85\xb0\x2a\x42\x34\x15\x31\
-\x91\x61\x2a\x9f\x72\x84\x8f\x05\x84\x38\x20\x25\x4d\xf4\x0c\x61\
-\x51\x06\x00\x15\x05\x4e\x44\x7b\x22\x08\x55\x9d\xf2\x68\xce\x02\
-\x17\xa3\x75\x39\x31\x22\x60\xb1\x36\x2c\x6e\xc6\xb8\xf3\x86\xb3\
-\x3b\xe4\x44\xae\x7b\xce\x82\x0b\x33\x45\x80\x41\x25\x69\xb9\x60\
-\xd5\xab\x18\xb0\xa9\x90\x51\x40\x8d\x61\x5d\xfd\xde\xca\xac\x4a\
-\xf5\x9b\x4a\x11\x5c\xb3\xb6\x1f\x77\x5c\x37\x82\xee\xce\x68\xa3\
-\xf9\xf4\xf4\x0c\xb6\xed\x78\x09\x07\x0e\xbd\x03\xdb\x8e\x74\x87\
-\x29\x50\xbb\xf6\x57\xe5\xe9\x13\x7f\x36\x73\x64\xeb\x14\xe4\x91\
-\x3d\xdd\xb1\xe9\x6f\x6c\x89\x0b\x54\x26\x60\xa4\x0b\x0f\x49\xdb\
-\xbc\x79\x54\x3c\x80\xe8\x8c\xdf\x61\x5d\x53\x1c\x2b\xcb\x20\xdc\
-\xff\x3a\x95\x4f\xd5\x73\xa1\x89\x5c\x7d\xbc\xfb\x0e\x9a\x06\x52\
-\x42\x35\x6a\x80\xd2\x80\x93\x39\xa1\x62\xb5\x02\x39\xbd\x7f\xca\
-\xb1\xa9\xe0\xa2\xb0\x8e\xc2\x6c\x7f\x7d\xc0\x72\xfb\xcd\x2e\xb3\
-\x02\xee\x5c\x50\x05\xc3\xd6\x3d\x87\xc8\xa6\x84\x49\x99\xc2\x85\
-\x89\x5e\xdb\x9c\xbf\x8e\x9c\x0a\xc8\xe2\x13\xe2\xb3\x2a\x9f\xc1\
-\xc1\x59\xbf\xac\x2d\x93\xc6\x8d\x57\x0e\xe2\xa6\x2b\x9d\xdd\x61\
-\xec\x10\x94\x22\x84\xe0\xfc\xf9\x0b\x78\x7a\xdb\x6e\xd3\xdd\x61\
-\xc6\xa9\x55\xfe\xd3\xf9\x33\xaf\x7d\x7f\xe1\xfc\xbe\x02\xe4\x91\
-\x3d\xef\xa6\xc5\x55\xf5\x1a\x02\xad\x38\x40\x15\x07\x8c\x10\x91\
-\x96\xfb\xa5\x30\x78\x07\xea\x6e\xa6\x10\xc3\xb1\x25\x22\x9c\x33\
-\xbf\x61\x8d\x26\xea\x5f\x55\x33\xb8\x51\x3e\xbf\x0d\x21\x76\xa9\
-\x7a\x41\x8a\x04\x75\x70\xe9\xa5\xf6\x19\xce\xa9\x52\x5e\x4a\x0e\
-\x7e\x63\xdd\x03\xca\x1e\xb1\x80\x2d\x82\x56\x28\x60\xa9\xd8\x15\
-\x05\x4f\x8e\x62\x6c\xd2\x00\x7e\x8a\x80\xb4\xbd\x55\xc4\x64\x50\
-\x1f\x40\x42\x46\x01\x83\x9b\xc3\x1b\xd6\x8d\x58\x95\xe2\x1a\x76\
-\x75\x64\x70\xfb\xb5\xc3\xb8\x76\x5d\xbf\xef\x0e\xc3\x12\x41\x3e\
-\x9b\xe7\x0e\xb3\xdb\xd0\x1d\x86\x1e\xb3\xab\xc5\x3f\x98\x3e\xf4\
-\xe4\xc3\xd5\xf9\x8b\x16\xd4\x23\x7b\xa6\x80\x13\x07\xc4\x22\xc5\
-\x14\xa8\x1a\x06\x23\xc5\x2f\x9b\xaf\x29\x38\xa5\x37\x41\x99\x34\
-\x5f\x88\x97\x50\x2b\x84\x71\xf9\x49\x58\x60\x08\x57\xf9\xb8\xdc\
-\x3e\x48\x71\x94\x47\x60\x32\x06\x4c\x8b\x6b\xb2\x0c\x52\x6a\xbb\
-\x15\xcb\xe6\x54\x97\x88\x68\xc2\xe3\x49\xc0\xa6\x82\x42\x9c\x97\
-\x8b\xe1\x55\x34\x0a\xb0\x88\x7b\xce\xb2\x2b\xaf\x9f\x75\xee\x28\
-\xc3\xb2\x16\x15\x78\x68\xe6\x57\xe9\x5e\x51\x3f\xca\x84\x4d\x79\
-\xbf\x3a\x56\xc5\x00\x26\x6c\xa0\x3f\x97\xc5\x7b\x36\x8e\x60\xfd\
-\x48\xf4\xee\x30\x56\xad\x86\x37\x0e\xb8\xee\x30\x79\x03\x77\x18\
-\x6a\xbf\x5a\x2b\xe5\x7f\x67\xe2\x8d\x7f\x78\x11\xd4\x66\x6f\x59\
-\x18\x08\x99\xfe\xea\xf2\x23\x24\x0d\x27\xcd\x56\xfd\xc2\xc0\x48\
-\x0c\x6f\x1e\x89\x12\x8b\x0c\xa1\x46\x6a\x36\x45\xc2\xb2\xf0\xbf\
-\x1a\x36\xa5\xec\x8c\x90\x99\x3b\x15\x18\x10\x07\x2f\x1c\x20\x09\
-\x6c\x8c\x6d\xaf\x5f\xbf\x08\x4a\x24\x94\x45\x11\xfe\x3f\x05\x7b\
-\x8a\x06\xa7\x38\x37\x8f\x6a\x32\x3a\xe0\x44\x82\x34\xde\x66\xad\
-\x61\x80\xe5\x5e\x0f\xd1\xdf\x0e\x0c\xb3\x71\xc2\xa3\x76\x94\x61\
-\x47\xd3\x88\x6c\x5c\xf7\x49\x10\xf3\x1e\xa9\x54\x40\x18\x18\xd6\
-\xfd\xbe\xc4\x61\x55\xbc\xac\x1e\xec\xc2\x5d\x9b\x56\x63\xa8\x5f\
-\xbd\x86\x94\xdf\x95\x14\x41\xb9\x54\xc6\x4b\xaf\xec\xc5\x8b\xaf\
-\x18\xb9\xc3\xd8\xd4\xb6\x9e\xac\x2e\x5c\xfa\xbd\xa9\x03\x3f\x3e\
-\xc4\xdc\xa1\x56\xa9\x7a\x51\x20\xa6\x14\x13\xa0\x32\x01\x1d\xd3\
-\xbc\xaa\x32\x48\x2b\xac\xe9\x22\x9b\x32\x55\x5a\x82\x64\xf1\xd8\
-\x54\xa8\x01\xdd\x2f\x92\x57\xf9\xe0\x57\xc3\xb3\x25\x22\xc6\xb1\
-\x4d\x88\x09\x52\x61\x2c\x4a\x0b\x50\x8a\xcb\xc4\xf1\xae\x98\x9f\
-\x98\x80\x4d\xf9\xff\x05\x77\xdc\xeb\xaa\x0b\x36\xa1\x80\x25\xec\
-\x28\x53\x0f\x58\x05\xa3\x81\xec\x48\x9a\xde\xb8\x2e\x39\x11\x87\
-\xbc\x6e\x52\x54\x1c\x56\xe5\xb7\x03\xbe\x11\xdf\x73\x6a\xde\xb0\
-\xba\x17\x77\x5e\x37\x82\xde\xee\x76\xd9\xb7\x8f\x01\x3b\xdf\x1d\
-\xe6\xf9\x57\xf1\xfa\xfe\xc3\x26\xee\x30\x65\x6a\x57\x7f\x50\x9e\
-\x7a\xe7\x6b\x33\x47\x9f\x65\xdd\x61\x1a\x65\x49\x61\x8f\x42\x5d\
-\x2a\x60\x23\x36\x2a\x31\xbc\xde\xdf\xa6\x88\xe8\xd7\x67\x52\xbb\
-\xf7\xba\xaa\x41\x2d\x3e\x9b\x12\xde\xf9\xd0\xde\x72\xcd\xe4\x18\
-\x14\x0b\x52\x7c\x10\xd7\xd6\x98\x20\x15\xce\xa2\xd4\x00\xe5\xa7\
-\x6c\x90\x55\xf1\xa0\xc4\xd4\x2f\x6c\x14\x1a\x84\x6b\x00\x8b\xb8\
-\xe0\xc2\x00\x91\xa7\x0a\xb2\x76\xab\x38\x60\x85\x10\xe3\xba\x18\
-\x61\xbc\x63\x4c\x3d\xac\x4a\x34\xca\x53\x20\x93\x4a\xe1\xba\xf5\
-\xfd\xb8\xf5\xaa\x21\x74\x64\xd3\x01\x18\xb3\x00\xcb\xdc\x6b\x67\
-\x77\x98\x97\x70\xf8\xd8\x29\x13\x77\x98\xbc\x5d\x2b\xff\xc5\xc2\
-\xb9\xd7\xbf\xb3\x70\x6e\xef\x1c\xf8\xe9\x07\xaa\x5b\x1d\x87\x25\
-\x35\x13\xdc\x00\x44\x03\x95\x29\xc8\xc4\x0d\x47\x44\x78\x3c\xd1\
-\xd0\x00\xbe\x72\xc5\x2a\x9d\x26\x3d\x8c\xc1\xa6\xbc\x76\x28\x0d\
-\xe8\x60\xd5\x4b\x7d\x39\x62\x9b\x39\x30\xe1\x22\x63\x80\x54\x0c\
-\x80\x92\x00\x53\xd1\xf3\xf0\x40\x45\x32\xe1\x51\x0c\x80\x8b\x30\
-\xf1\x94\x03\x34\xd5\xf6\x57\xfe\xe8\x1c\xd1\xa8\x82\x7e\x3a\x3d\
-\x58\xc9\xf8\xa3\xb7\x57\x89\x1b\x82\xb2\x2a\xa0\x34\x11\x14\x02\
-\x88\x71\xd3\x15\xe2\xb0\x2a\x02\x1b\x14\xd9\xf6\x34\x6e\xbe\x6a\
-\x15\x36\xad\xef\x47\x5b\x3a\x05\x3b\x84\x7f\x10\x02\x9c\x3c\x79\
-\x06\x4f\x6f\xdb\x8d\xd3\xe7\x2e\x19\xd8\xa3\xe8\x39\xbb\x5a\xf8\
-\x93\x99\x63\xcf\xfe\x43\x65\xf6\x6c\x05\xc1\xea\x07\x61\x00\x13\
-\x05\x36\x3a\x96\x14\x15\x1e\x05\x66\x00\x9a\xe7\xeb\x17\x37\x9c\
-\x18\xa4\x8d\xdd\x08\xb9\xf0\x38\x45\xf3\x4d\xaa\x97\x4d\x71\x60\
-\x18\x06\x76\x24\x48\x23\xb3\xaa\x20\xc0\x07\x39\x0e\x4c\x1a\x07\
-\x29\xd1\x3d\x46\xc5\x9e\x94\x0c\x51\xb8\xa6\x51\x57\x98\x72\x89\
-\x5c\xa8\xa1\xaa\x78\xe2\xb3\x2c\x8e\x61\x29\xd9\x95\x7b\x6d\x54\
-\xaa\x60\x04\x58\x39\x20\x44\x02\x9b\x94\x5b\x33\x15\x98\x8e\x97\
-\x4e\xa7\x02\x4a\x6f\x55\xe8\xeb\xa6\x79\xdf\x15\xe8\x45\x6d\xa0\
-\xa7\xb3\x0d\xb7\x5f\x3b\x82\x2b\x47\x7b\x7c\xf7\x21\xbe\x58\x17\
-\x16\x09\x60\xdb\x36\xde\x3a\x78\x0c\xcf\x6c\x7f\xc9\xcc\x1d\x86\
-\xda\x6f\xd7\x4a\xb3\xbf\x3f\xf5\xd6\x43\xcf\xd8\xd5\x22\x05\xbf\
-\x44\x8b\x49\x8f\xea\x65\x49\xc6\xec\x49\x25\x61\x40\x55\x2f\x9b\
-\x8a\xcf\xbe\x68\xe4\xf3\x6e\x26\xe2\x1b\xcf\xfc\x72\x6c\xc6\x3f\
-\x0f\x99\x1a\xa0\xbd\x1c\xc2\xb1\xe8\x4e\x43\xd4\xb9\x94\xf5\x70\
-\xc9\x05\x00\x63\x6b\x51\x80\x50\x14\x48\x11\xfe\xbf\xf0\x39\x55\
-\x7c\x02\x45\xbd\x42\x7b\x74\x97\x45\x14\xaa\x86\xb5\x60\xe0\x8f\
-\x2a\x40\x4b\x06\x2c\xe2\x66\x52\x2e\x23\x0c\x05\x73\x32\x01\x2b\
-\x8e\x5a\x09\x6f\x5f\x4c\xd5\x2d\x36\xab\x52\xb2\x2b\x27\x70\x55\
-\x5f\x07\xde\xb3\x71\x04\xa3\x03\x5d\xee\x35\x51\xbf\xdb\x29\x42\
-\x50\xa9\x56\xb0\xe7\xb5\xfd\xd8\xf1\xc2\x5e\xcc\x17\xa2\xdd\x61\
-\x28\xb5\x76\x55\xe7\x2e\xfd\xde\xd4\x5b\x3f\xde\xeb\x56\x2b\x3e\
-\xd4\x51\xcc\xa6\x5e\x96\xd4\x30\xab\x6a\xc6\xcc\xf4\x26\xa4\xaf\
-\xdf\x98\x6e\x46\xdd\x62\x32\x2b\x81\x09\x99\xb1\xa9\x88\xe9\x08\
-\x22\x3a\x84\xaa\x7c\x0c\x6e\x70\xc6\x73\xa1\x62\x03\x90\x8a\x64\
-\x51\x5a\x80\x52\x5c\x39\xc5\x65\x0c\xc5\x29\x55\x24\x07\x5e\xc1\
-\xd6\x57\x40\xc0\xb4\x7c\x10\x62\x55\x42\x1f\x10\x9c\x84\xa2\x2a\
-\x68\x0a\x56\x3e\x30\x91\x08\x7b\x95\x97\x34\x84\x4d\x35\x87\x55\
-\x05\x87\xeb\x86\x72\xb8\x73\xe3\x08\x06\x7a\xb2\x4e\x1f\x58\xeb\
-\x3d\x47\xc4\x08\x0a\x0b\x0b\x78\xfe\x85\x3d\x78\xf9\x75\x23\x77\
-\x98\x1a\xb5\x6b\x0f\x95\xa6\xde\xf9\xea\xec\xd1\x67\x4e\x22\xb0\
-\x47\xe9\x46\xf0\x4c\x01\x24\x2e\x4b\xaa\x9b\x55\xe9\x80\xaa\xd9\
-\x6c\x2a\xaa\x9c\x06\x45\x7e\xd1\xe3\xcc\x44\x8f\x32\xa2\xeb\xf2\
-\x85\x5b\xd3\x35\xe5\x85\xb1\x2a\x45\x80\x04\x52\x7e\x79\xf5\x83\
-\x94\x9f\x52\xc6\x3d\xae\x4e\xa9\xbb\xaa\x40\xa3\x2b\xec\x09\x95\
-\xc0\x8b\x1f\xed\x73\xd2\xc8\xfb\xf5\x69\x96\x11\x46\xc4\x68\x9f\
-\xff\x5a\xb0\x3e\x77\x8c\x73\x8b\xc4\x6c\x64\x15\x30\xb8\x7a\x8a\
-\x89\xa0\x9c\x6a\xa8\x5b\x9d\x53\x33\x02\xe8\x15\x4f\x9d\xfb\x78\
-\xf5\xda\x5e\xdc\x7e\xcd\x30\xba\x3a\xf4\xee\x30\xde\x87\x65\x7a\
-\x7a\x06\xcf\x6c\xdf\x8d\xfd\x07\x8f\xc3\x8a\x76\x87\x29\xda\xb5\
-\xf2\x77\x0b\x17\xde\xf8\xd6\xfc\x99\x3d\xac\x3b\x0c\x98\xe6\x89\
-\xc7\xd0\xa4\x61\xcf\xeb\xfd\x35\x2d\x87\x93\x66\xad\x9e\xd0\x48\
-\x9a\xe6\x80\x96\x4e\x77\xe3\x00\x81\x28\x81\x02\xca\x5f\xa2\x2c\
-\x57\x9a\xd5\x2d\x55\x17\xce\xa6\x64\x9e\x12\xa4\xe1\xa7\x29\x88\
-\xc6\x73\xb6\xc8\x38\x20\x25\x02\x56\xd0\x2e\x13\x80\x92\xda\xab\
-\xb9\x5b\x62\xb0\xf2\x5d\xa3\x6c\x1d\xa2\x2d\xca\x0b\x95\x99\x8d\
-\xc7\xae\xd8\x89\x9e\x9e\x2a\x18\x35\x35\x41\x98\x75\x20\xcf\x20\
-\x67\xa6\x01\xa8\xd6\x8f\x62\x67\xad\x1b\x91\x01\xe9\xb5\xe3\x01\
-\x8f\xc5\x05\x0a\x8a\xb6\x4c\x0a\xd7\x5f\x31\x80\x1b\x37\x0c\xa2\
-\x3d\xc3\xae\x21\x25\x63\x08\x21\xc0\xd9\x73\x17\xf0\xd4\xb3\x2f\
-\xe2\xf8\xc9\x73\x61\xb7\xc3\xbb\xc6\x93\x76\xa5\xf0\xe7\xf9\x13\
-\x3b\xff\x73\x69\xea\x1d\xd1\x1d\xc6\x14\x40\x54\x0d\x8a\xea\x7d\
-\xa3\x69\x24\xc9\x68\x0a\x52\x9d\xc7\x65\x53\x71\xd3\xd5\x2d\x3a\
-\xf0\x50\x28\x2f\x11\xdd\x25\x11\x8d\x65\x38\x85\x66\xa4\x2f\xb4\
-\xd3\xcc\x89\x88\xab\x32\x23\x94\x5b\xa5\x74\x75\x69\x36\x48\xa9\
-\x00\x2a\x1a\xa7\x42\xaf\x2a\x1b\xe8\x3f\xa1\x22\x68\x71\x80\xa5\
-\xde\x0d\x99\x80\xf0\xb6\xab\x28\xb0\x82\x30\x7d\x80\x35\x47\x6b\
-\xed\x55\x01\x50\x82\x8d\x65\x40\xcb\x8c\x55\x29\xde\x74\xaf\x9d\
-\x04\xa0\x36\x45\x57\x36\x83\x5b\xae\x5a\x85\x6b\xd6\xf6\x23\x95\
-\x52\x6b\x8b\x81\x8a\x4b\x71\xe4\xe8\x09\x3c\xf9\xec\x6e\x5c\xb8\
-\x34\x65\x62\x34\x3f\x51\x2b\xe5\xff\x78\xe6\xd0\xe3\x8f\xd4\x4a\
-\xb3\x9e\x3b\x4c\x5c\xf6\x24\x86\x37\x9b\x2d\x19\x83\xa2\x89\x31\
-\xdd\x34\x7c\xc9\xc5\x5c\x35\xd1\xcf\x44\x6f\xb8\xbb\x51\x6c\x8a\
-\x73\x22\x56\xb3\x36\x0e\x30\x25\xe3\x39\x53\xb4\x62\xba\xb9\x1e\
-\xa4\x88\x54\x9d\x29\x40\xc9\x57\x80\xc4\x7f\x0a\x5c\x7b\x13\x5b\
-\x9f\x0c\x5a\x3c\x60\xe9\xd9\x95\x21\x58\x31\x4c\xc8\xb7\x49\x69\
-\xed\x55\x3a\x36\xa5\x67\x44\x5a\x62\x20\x00\x9e\xe4\x03\x48\x29\
-\xfa\x72\x59\xdc\x71\xed\x30\xc6\x86\x72\x5e\xcf\xd5\x45\xb9\xee\
-\x30\xfb\xde\x7c\x1b\xcf\xec\x78\xc5\xc8\x1d\x86\x52\xeb\xf5\xea\
-\xfc\xf8\x1f\x4e\xbd\xf5\xe3\xdd\xc1\x5e\x5e\x0d\x4d\x21\x68\xb6\
-\xc4\x05\x4a\x09\xa8\xe2\x82\x53\xbd\xec\x2b\xaa\x5c\xf3\xee\xb2\
-\x4f\xbe\x82\x9e\x04\x18\x40\xb8\x73\xb9\x15\x3a\x95\x8d\x05\x06\
-\xef\x97\x67\x38\xea\x79\x53\x2a\x36\xc5\xa3\x0d\xd7\x36\x3f\x56\
-\xad\xf2\x01\xea\xba\xb8\x76\x30\xf5\xa8\x40\x4a\xc9\xa2\x4c\x01\
-\x4a\x64\x62\xf5\xdc\x2b\x30\x2b\x4f\x8a\x9b\x85\xba\x07\x2c\x60\
-\xa9\xd8\x95\x31\x58\xf9\x23\x6f\x8c\xea\x07\xde\xb8\xce\xad\xed\
-\xa4\x71\x6b\x51\x83\x97\xf8\x1b\xe4\x15\xb7\x68\x57\xc9\xc8\x40\
-\x27\xee\xbc\x6e\x04\x43\xbd\x11\xee\x30\x24\x85\x72\xa9\x88\x17\
-\x5e\xda\x8b\x5d\x2f\xbd\x81\x62\xa9\x6c\xe0\x0e\x53\x7b\xa6\x3c\
-\x7d\xf2\x8f\x66\x8e\x3c\x7d\x08\xfa\xa9\x07\x6c\x35\xf5\x86\x37\
-\xcc\x92\xe2\x84\x9b\x1a\xd3\x4d\xc3\xd1\x60\x78\xc3\x52\xbf\xda\
-\x17\xa5\x9b\x1a\x34\x39\x92\x4d\x85\x30\x38\x45\x84\x6e\x61\x3e\
-\x36\x5d\x3d\x20\xc5\xba\xe8\xb0\xf5\xc8\x00\x25\xe4\x8d\x79\x39\
-\x7c\xa1\x8a\x6c\xc4\x05\x2d\x2d\x60\xa9\xd9\x55\x24\x58\x41\x8e\
-\x97\x8d\xeb\x60\xd8\x14\xaf\x02\x8a\x9b\x2f\x84\xdb\x99\xf8\x7e\
-\xc9\x6f\x25\xcb\xe0\x9c\xb2\xd7\xaf\xee\xc1\xed\xd7\x0c\xa1\xa7\
-\xab\x8d\x61\x7d\x6c\x83\x82\x76\xcd\xe5\xe7\xb0\x6d\xc7\x4b\x78\
-\xed\x8d\x43\xa8\xd6\xac\x28\x90\xaa\xd8\xb5\xf2\x3f\x14\x2e\x1d\
-\xf8\xb3\xf9\x53\x2f\x9f\x47\x30\xb2\xd7\xa8\xfa\xd5\x54\xc0\xa9\
-\xa3\x3e\x00\xad\xdd\x29\x39\x4e\x78\x63\x1f\x6a\xa3\x6a\x82\xf8\
-\x70\x40\x52\x97\x65\x34\x25\x41\x51\xa6\x9a\xc1\x05\x85\x29\x67\
-\xaf\x43\xad\xf2\x41\x8c\x63\x6b\x92\xb1\x51\x01\x52\xe2\xb2\x30\
-\xdc\x01\x07\x50\x52\xbd\x0a\x00\x35\x16\x37\xb9\xcf\x34\x18\x86\
-\x13\x00\x56\xc0\xb7\xb8\x35\xcf\x3d\x03\xba\x29\x58\xa9\x96\x66\
-\x41\xc0\x9e\xb8\x69\x09\xaa\x76\xea\x54\x41\xef\x97\x63\x53\x0a\
-\x30\xd3\xbc\x6e\x99\xb4\xb3\xd0\xdd\xcd\x57\xad\x42\x47\x7b\x5a\
-\xf2\xd9\xe3\x30\x94\x10\x5c\xba\x34\x8e\xa7\x9e\x7d\x11\x07\x8f\
-\x9c\xf4\xc1\x56\x2f\x74\xce\xae\x14\xff\x6a\xee\xd4\xee\xbf\x29\
-\x4e\x1c\x66\x77\x87\x69\xb5\xc4\x56\xe1\xea\x15\x16\xa8\x9a\xa5\
-\xf6\x89\xe7\xa6\xe1\xf1\x2f\x91\xea\x54\xa9\xfe\x29\xd4\x3e\x11\
-\x49\x04\x36\x24\xf9\x0e\x82\x8f\xd7\xa2\x9d\x48\x7b\x18\x40\x88\
-\xcc\xa2\xbd\x22\x9a\x85\xf9\xc4\xb6\x72\xa0\x63\x0e\x52\xa1\x0c\
-\x4a\xa1\x6a\x46\xdd\x0b\x5f\xa8\x98\x2c\xb8\x76\x2c\x68\x11\x3f\
-\x8c\xf8\x0c\x8b\xdd\x82\x9d\x55\x05\xa3\xc0\x4a\xf2\xcb\xe3\xec\
-\x55\x41\x73\x55\xeb\x48\x79\xe1\x4a\xc3\x7a\x08\xab\x92\x01\x2d\
-\x60\x77\x36\x05\xb2\x6d\x69\xdc\xb0\x61\x00\x1b\xc7\xfa\x91\x49\
-\x85\xed\x0e\xe3\x94\x70\xe2\xe4\x29\x3c\xb1\xf5\x05\x9c\x3a\x6b\
-\xe4\x0e\x73\xc1\x2a\xe7\xbf\x31\x73\x74\xeb\xff\xa8\xce\x8f\x8b\
-\xbb\xc3\xe8\x9a\xb8\xd8\xe1\xba\x73\xe3\xf0\x38\xc6\xf4\xb8\x6a\
-\xdf\xe2\x0a\x31\x0a\xd2\xc6\xd6\x83\x9e\xa1\x6c\x4a\xf3\xc2\xeb\
-\x67\xb2\xeb\xd8\x14\xcb\x6e\x88\x54\x1e\xd7\x06\x6d\xd1\x0a\x75\
-\x50\x97\x86\x29\x9f\x68\x2e\xaa\xf1\x35\x62\x12\x52\xe1\xc0\xb7\
-\x46\x11\x1e\xb0\xa8\xef\xff\x27\xb2\x2b\x33\xb0\xf2\xc1\x86\xa1\
-\x55\xd2\x0e\xc7\xaa\xd7\x42\x78\xd5\x74\xfa\x92\x88\x5f\x60\xeb\
-\x12\x58\x15\x05\x90\xeb\x6c\xc3\xad\x57\x0f\x61\xc3\xea\x1e\x1e\
-\xeb\x44\x10\x05\x40\x2d\x1b\x6f\xbd\x7d\x04\x4f\x6d\xdb\x8d\x89\
-\xa9\x59\x03\xa3\xb9\x7d\xa8\xb6\x30\xfe\x6f\xa6\xde\x7e\x74\x1b\
-\xb5\x2a\x36\xe4\x9e\x35\xaa\xa6\x45\x85\xc7\x79\x12\x1a\x9a\x02\
-\x61\x32\x3d\xa1\x19\xd2\x52\x30\x23\x82\xa1\x97\x3f\x53\x37\xa3\
-\x2e\xb5\x4f\x54\xb9\x42\x7b\x45\xd4\x65\xe9\x52\x19\x20\x25\x4f\
-\xe6\x84\x25\x63\x38\x90\x22\x32\x00\x29\x59\x97\x90\xc6\x2f\x4a\
-\xa6\xab\x6a\x58\x57\x74\x46\x3b\x10\x46\xb9\xac\x81\xba\xc7\x00\
-\x16\x0d\x4a\x56\xed\xc3\x17\x05\x56\x81\x41\x5b\x20\x41\x0c\x42\
-\x48\x2a\xa0\x60\x58\x37\x67\x55\xe0\xeb\x82\xfc\xe6\x0d\xf6\x64\
-\x71\xfb\xb5\xc3\x58\x3d\xd0\x85\xb0\xf7\x9c\x10\x82\x4a\xb9\x82\
-\x57\xf6\xbc\x89\xed\xbb\xf6\x18\xed\x0e\x43\xed\xda\xee\xca\xec\
-\x99\xaf\x4e\x1f\x7a\x62\x9f\x5b\x2d\xfb\x04\x2d\x25\x08\x35\x43\
-\xa4\x32\x9b\x6d\xa3\x32\x65\x5b\x42\x78\xa3\xd7\x29\xa2\x3a\x22\
-\xbc\xcf\x11\x3a\x98\x56\xed\x8b\xea\xa5\xce\x77\x50\x51\x2f\xef\
-\xce\xa2\xb0\x75\x09\x6c\x4a\x5c\xd7\x8a\xad\x97\x67\x72\x2c\xeb\
-\x8a\x9e\x9d\x2e\x6b\xaa\x44\x38\x17\x3a\x29\x82\x5c\xd4\xb5\x71\
-\x25\xd8\x86\xdd\x3f\x83\x1f\x44\x83\xb6\xc9\x3b\xca\x98\x83\x95\
-\xcf\x9d\x08\xe4\x39\x4d\x3e\x68\x41\xcb\xa6\x4c\x57\x3a\xe0\x32\
-\x49\xc7\x8e\xac\x59\xd5\x8d\xdb\xaf\x19\x42\x7f\x2e\x2b\x62\x9b\
-\x30\xb7\x8a\xa0\xb0\x50\xc0\x73\x3b\x5f\xc1\x4b\x7b\x0e\xa0\x6c\
-\xe2\x0e\x63\x55\x1e\x2b\x5e\x3a\xf4\x6f\xf3\x27\x77\x9d\x84\xbc\
-\xf2\x81\xae\xaa\xb8\xe1\x71\x59\x8f\x31\x3b\xaa\x47\x3c\xa0\x32\
-\x04\x14\x6d\x78\x9d\x00\xd5\x18\xd3\x22\xba\x00\x11\x10\x22\x4a\
-\x89\xa3\xf6\x11\x29\x0f\x89\xc8\x6b\x06\xa4\x91\x0d\x10\xd2\xa8\
-\x54\x3e\x6e\x0a\x01\x11\x6b\x0e\x63\x5d\x66\x00\xd5\xc8\xcd\x62\
-\x01\x93\x05\x2d\xd5\x7e\x7d\x61\x5b\x5b\x85\x82\x15\xaf\xf1\x49\
-\x01\x6a\x67\x61\xce\xa9\x06\xf2\xb0\xa0\x50\x8e\x77\xa8\xf8\x05\
-\x05\x48\x8a\xe0\xaa\xd5\x3d\xb8\xf9\xaa\x55\xe8\x56\xb9\xc3\x30\
-\x55\x10\x42\x30\x35\x39\x8d\xa7\xb7\xbd\x88\x37\xde\x3a\x06\xcb\
-\x32\x70\x87\xa9\x16\xff\x6e\xfe\xcc\x2b\x7f\x59\xb8\xf8\x96\xe8\
-\x0e\x13\x76\xe9\x5b\xa1\xfe\xd5\x9b\xae\xae\x7a\xa3\xa6\x27\x44\
-\x85\x37\x43\xa5\x8b\x5f\x86\x41\x0e\x62\x10\x5b\x8f\xda\xa7\x67\
-\x63\xec\xaf\x02\x30\x88\x2e\x8b\x01\x9b\x12\x54\x4e\xb5\xca\x47\
-\x84\xea\x59\x80\x31\x07\x29\xd1\x1e\xa6\x7b\x6f\x0c\xb6\x00\xf7\
-\xc5\x9b\x86\xc0\x95\xec\xb3\x29\x57\xd9\x12\xd8\x55\x6c\xb0\x62\
-\xe6\x43\xf1\xf6\xaa\x08\x36\xc5\x36\x8a\x9a\xa4\xd5\x30\x29\x0a\
-\xb4\xa5\x53\xd8\x38\xd6\x8f\x4d\xeb\xfb\xd1\xde\x96\x12\xe6\x6f\
-\x89\xd7\x0f\x38\x7b\xe6\x3c\x1e\xdf\xba\x0b\xc7\x4e\x9c\x0b\xbd\
-\xd6\x4e\xf9\x74\xca\xaa\xcc\x7d\x7b\xf6\xf8\x8e\xff\x5a\x99\x3d\
-\xa3\xdb\x1d\x66\x39\x4b\x43\x80\x55\xcf\xe6\x0e\xcb\x52\xc4\x97\
-\x3f\xac\x0b\x44\x99\x51\x50\x6d\x74\x6a\x9f\xb6\x64\x81\x99\xe9\
-\xe8\x5e\x38\x6a\xc5\xe9\xa4\x54\x1f\x0b\x52\x41\x98\xd0\x6f\x1d\
-\x48\x89\x2c\x4a\xc1\xa0\xe2\x80\x93\xd4\x6c\x26\xaf\xbf\xe2\xa6\
-\xfb\x9f\xc7\xb0\x4c\xf6\xe1\xd3\x82\x15\x37\xfa\x17\xe8\x6e\x66\
-\x4b\xb0\xc8\xac\x4a\x4a\x0f\xdd\x14\x05\xc0\x06\xd0\x91\xcd\xe0\
-\xa6\x0d\x83\xb8\x7a\x4d\xaf\xbb\x3b\x8c\xa8\xef\xb1\xef\x1f\xc5\
-\xa1\xc3\xef\xe0\x89\xad\x2f\xe0\xfc\xc5\x49\x13\x77\x98\x53\xd5\
-\xc2\xd4\xd7\x67\x0e\x3d\xf1\x98\x55\x99\xaf\x29\x9e\x96\x46\x59\
-\xcb\x52\x8a\x51\x9b\x4c\x67\xa6\x37\xda\x90\xd6\xf5\x52\x60\x00\
-\xaa\xda\xe5\x17\x19\x3a\x34\x31\xd0\xbe\x34\x2b\x85\x46\x74\xbd\
-\xa9\x6c\xca\x3b\x12\x41\x96\x4d\xc3\x02\x0d\x09\xc0\x22\x1c\xa4\
-\x14\x00\x45\xf4\xbd\x34\xc1\x2d\xe5\xcc\x6b\x37\xa3\x04\x58\x8a\
-\xdd\x62\x9c\x70\xc5\x82\x77\xec\xcb\x2f\xaa\x61\x60\x9e\x7e\x49\
-\x75\x23\xd0\xce\x0f\xe0\xd0\x48\xfc\x95\xf4\x4a\xbf\x7f\xbd\xdd\
-\x6d\xb8\xed\xaa\x21\xac\x1d\x8a\xde\x52\xbd\x56\xab\x61\xef\xbe\
-\xb7\xf0\xf4\xf6\x97\x31\x33\x3b\x1f\x3d\xb2\x67\x5b\x6f\x54\xf2\
-\xe7\xfe\x78\xfa\xd0\xe3\xbb\x0d\x76\x87\xd1\xf5\x28\x2a\xbc\x51\
-\x60\x6b\x05\x00\x72\x65\x36\xd3\x98\x6e\x0a\x48\x4d\x01\x2e\x1d\
-\x61\x61\x7f\x4d\x26\x26\x9a\x10\x9a\xe8\xba\x64\xb6\x14\x0a\x8e\
-\x71\x58\x94\xb2\x4e\xbd\xca\xc7\xe3\x2f\x0b\x3c\xf1\x41\x2a\xce\
-\x26\xa5\xda\x66\x13\x80\x7d\x86\x39\xa2\x21\x02\x16\xcb\xae\x4c\
-\x56\xe7\x64\x18\x53\xd0\xa6\x10\x15\x10\x3c\x56\xe9\x58\x95\x38\
-\x02\xa8\x64\x55\x6e\x8d\xc3\xfd\x9d\xb8\xed\x9a\x55\x18\xea\xed\
-\xe0\x96\x0b\x96\x90\x80\x10\x94\x4a\x45\xec\x7a\xf1\x35\x3c\xff\
-\xe2\x3e\x33\x77\x18\xab\xfa\x5c\x69\xf2\xe8\x9f\xcc\x1e\x7f\xee\
-\x30\x73\xc1\xc3\x00\x61\xb1\x00\x67\xd1\x01\xac\x15\x33\xd3\x17\
-\x51\xfc\xb9\xcc\x8c\xef\x25\xfb\x35\xf5\x3e\xb3\xd0\x1a\x42\xb9\
-\xb9\x33\xfe\x03\xcc\xff\xaa\x9e\x50\x3e\x0d\x75\x1f\x7a\x75\x1e\
-\xee\x2b\xaf\x68\x03\x57\xbc\xb6\x1d\x44\x1d\xce\x76\x93\x92\xc0\
-\x47\x4e\x8c\x0b\x9a\x1e\xa4\x73\xcf\x29\x03\x62\x94\xb9\x8a\xec\
-\xeb\xef\x1d\x50\x16\x18\xd9\x3b\xa1\x7a\xe7\xd8\xb9\x46\x7e\xba\
-\x80\x89\x04\x61\x84\x63\x57\xbe\x6a\x17\x01\x56\x4c\xb3\xd4\x2a\
-\xa0\x7f\x63\xd9\x04\xdc\x13\x12\xe7\x51\xf3\xcb\xf0\x40\x6e\x6c\
-\x55\x37\x6e\xb9\x7a\x95\xeb\x0e\x43\x15\xe9\x83\xb6\xcf\xce\xe6\
-\xf1\xcc\xf6\xdd\xd8\xb3\xf7\xa0\x99\x3b\x4c\xb5\xf4\xe0\xc2\xf9\
-\xbd\x7f\xbe\x70\x6e\xaf\xb7\x3b\x4c\x2b\x54\xb6\xa5\x64\x4c\xb1\
-\xa4\x1e\xa0\x5a\x54\xe6\x14\x55\x6a\x57\x36\x83\xc1\xde\x4e\x10\
-\xd1\xc9\xd7\x7d\x11\x59\x23\x38\x7b\xae\x9d\x54\xe9\x96\xa3\x5f\
-\xb2\x58\x15\xae\x8b\x07\x5f\x17\x5b\x8f\x4a\xbd\x0b\x53\xfb\x14\
-\x75\x48\x69\xb8\x7e\xe8\xc2\x88\x74\xac\x5a\xdb\x8a\xbb\xe4\xa1\
-\xcc\x0a\xa8\x59\x14\xc5\xb2\x05\xc9\x29\x45\x60\x68\xdc\xc7\xc4\
-\x65\x5a\xdc\x8e\x32\x08\xd4\x3c\x4f\x15\x54\xae\x76\x00\x06\x90\
-\x3c\x50\x03\xe5\x3e\x3c\x51\xab\x72\x06\xec\x4a\x60\x55\xe2\x6c\
-\x75\x51\x53\xa4\x40\x3a\x45\x70\xf5\x9a\x5e\xdc\x78\xc5\x00\xb2\
-\x8c\x3b\x0c\xff\x36\x3b\x6d\x02\x21\xb8\x78\x71\x1c\x4f\x6c\xdd\
-\x85\xb7\x0f\x9d\x80\xad\xb9\x9e\x4c\x05\x73\x56\x79\xfe\x7b\x73\
-\x27\x5f\xfc\x4f\xa5\xa9\xe3\x8b\xe9\x0e\xd3\x0c\x69\x19\xf0\xad\
-\x70\x46\x05\x5c\xbd\xb6\x1f\xeb\x47\x7a\x24\x10\x00\xa0\x7e\x41\
-\xdd\x08\x9d\x1a\x14\xe4\x53\xa8\x54\x41\x06\x46\xeb\xe3\x1f\x3a\
-\x0e\x88\x98\x32\xfd\x10\x22\xa6\x25\xe1\xe5\x33\x85\xb2\x2a\x1a\
-\xd7\x53\xa1\x7f\x92\xfa\x07\x1e\x58\x38\x75\x4f\x0a\x03\x84\xd2\
-\x35\x71\x41\x1f\x26\xf2\x65\xec\x3f\x39\x03\xcb\xe2\xe3\xa8\x70\
-\xe4\xb7\x81\x61\x5a\x22\xc3\x52\x6e\x6f\xc5\x4e\xca\xe4\x96\x7d\
-\x11\x96\x12\x16\x27\x6c\xfa\x7d\x50\x4f\x33\x30\x7f\x55\x9c\x7a\
-\x6c\x00\xed\x6d\x69\x6c\x5a\xdf\x8f\xeb\xd6\xf6\x21\x93\x26\xae\
-\xba\xa7\x2f\xec\x9d\x77\x4e\xe1\xb1\xa7\x76\xe2\xe4\x99\x8b\xc1\
-\xc7\x54\x27\xd4\xbe\x58\x2b\xce\x7c\x6b\xe6\xe8\xd6\x07\x6b\x85\
-\xa9\x32\x5a\xc7\xa4\xa2\x3b\xbc\xcc\x8c\xee\x2b\x1e\xa8\xda\x32\
-\x29\x64\xdb\x9c\x8f\x0e\xfb\x52\x07\xe7\xce\x7f\xe2\x4b\x1e\xbc\
-\xc7\x8a\x35\x99\x04\x84\x89\x05\x3e\x5e\x06\xca\x03\x25\xa8\x0e\
-\xd4\x54\xf5\x08\xcc\x8c\x0d\x15\x9e\xf4\xb0\x32\xe2\x80\x94\x10\
-\xa2\xbe\x56\x0a\x21\x84\xa0\x3d\x53\x73\xea\x10\xdb\xc6\x1e\xf9\
-\xe0\x44\x83\xa2\xfd\xa9\x05\x40\xf8\xf6\x56\x6a\xb0\xe2\x30\x08\
-\x02\x16\x45\xb2\x2a\xc5\x08\x20\x82\x79\x59\x62\x06\x6a\x03\xb9\
-\x8e\x0c\x6e\xba\x72\x10\xeb\x87\x73\x81\xda\x0d\xe6\x8d\x66\xee\
-\xb3\x65\x59\x38\xf0\xd6\x61\x3c\xbe\xf5\x05\x4c\x4c\x1a\xb8\xc3\
-\xd8\xd6\x91\xea\xfc\xc5\x3f\x9d\x3e\xf8\xf8\x36\x6a\x57\x03\x0d\
-\x3c\x11\x00\x2b\x14\xa8\xc4\x3b\xa8\xf2\x15\x65\x3e\xb2\x7c\x46\
-\xe9\x3c\xfc\x99\x90\xa8\x7f\x48\x1d\x52\x9d\xe2\xcb\xc4\x54\x15\
-\x7e\xee\xbe\xbc\x9e\x1d\x2d\xac\xf9\x21\xdd\x61\x08\x8c\x90\x47\
-\x82\x24\x21\x1d\xd1\xe6\x97\xc5\xe7\x46\x8c\x55\x4b\x91\x87\x01\
-\x48\x1a\x4c\x98\x0a\xda\x8c\x30\x9b\x14\x78\x1b\x22\xd8\xfd\xf7\
-\xfc\x40\xe1\xe2\xd7\xc1\xaa\x24\xe0\x23\xfe\x4c\xf9\x81\x9e\x2c\
-\x6e\xbd\x7a\x15\x46\xfa\x3a\x41\x43\xae\x08\x21\x04\x95\x4a\x05\
-\x2f\xbf\xb2\x0f\xcf\xee\x78\x15\x73\xd1\xee\x30\xa0\x56\xf5\xe5\
-\xf2\xcc\xc9\xaf\xcd\x1c\xd9\xba\xcf\x6d\xc5\x52\x33\x9a\x65\xc5\
-\xa6\x80\xfa\x80\xca\x14\xed\x5b\xfc\x55\x20\x75\x97\xae\x7c\x4d\
-\x89\x32\x32\x24\x9f\x41\x1d\x22\xbb\x21\xaa\x44\x92\x96\x26\x9d\
-\x87\x37\x40\x47\x63\x64\x3a\xa4\x9a\x1b\x16\xc9\xc0\xc2\x6a\x24\
-\x0e\xc3\xf3\xd9\x94\xc8\x66\x3d\xa1\xfc\xab\x4d\x5c\xc0\xf0\x18\
-\x16\xb7\xe0\x9d\xe1\xf6\x56\x9a\xd3\xba\x59\x55\x18\x36\x8c\x0e\
-\x76\xe2\x96\xab\x56\xa1\x3f\xd7\x0e\x6a\xeb\x52\x3a\xd7\x62\x61\
-\xbe\x80\x6d\x3b\x5e\xc6\x8b\xaf\xbc\x69\xe4\x0e\x63\xd7\xca\x4f\
-\x15\x2e\x1e\xf8\xb3\xf9\xd3\x2f\x9f\xc0\xd2\xa9\x7a\xcd\x12\xd3\
-\xb6\xc7\xee\xe3\xca\x62\x54\x91\x48\x11\x03\x4a\x48\x58\xb0\x61\
-\x39\x4a\x35\x33\x4e\xd5\xe6\xed\x25\x2a\x78\x95\xb5\x37\x7d\xc9\
-\x8a\xaa\xe2\x82\x14\x89\x4a\x10\x72\x9d\xfc\x5c\xc2\x7e\x7d\xe2\
-\xdc\x29\x2d\x58\x79\xf6\x2a\x76\x0a\x81\x6e\x7b\xf4\x30\x56\xa5\
-\xea\x94\x62\x84\xd5\x69\x13\xc1\x86\xd5\x39\xdc\x74\xc5\x00\x3a\
-\x3d\x77\x18\x05\x55\xf7\xae\xcb\xe4\xe4\x14\x9e\xdc\xfa\x02\xf6\
-\x1d\x38\x02\xcb\xb2\xa3\x8c\xe6\x45\xbb\x52\xf8\x6f\x73\xa7\x5f\
-\xfe\x4e\x71\xfc\xd0\x24\x96\xc6\x68\xde\x32\x60\x69\xb6\x34\x13\
-\xa8\x5a\xc8\xb4\x48\x64\x0c\x11\x5f\xda\x10\xbb\x92\x59\xc9\x8a\
-\x17\x99\x98\xe4\x23\x06\x21\xfa\x6c\x44\x09\x18\x3a\x36\x26\xc0\
-\xaa\x50\x06\xcb\x12\x45\x00\x26\x91\xc0\x25\x56\x15\xde\x0b\x42\
-\x02\xc3\x38\x27\x94\xfb\x01\xb7\x7e\x94\x57\x6c\xc4\x26\x0d\x5c\
-\x43\x42\x56\x3c\xe0\xe6\x3b\x29\x58\x95\x7a\xf2\xa6\x5a\xda\x32\
-\x29\x5c\xb3\xa6\x17\x1b\xc7\xfa\xd1\x9e\x21\x72\x5b\x84\x6b\x7e\
-\xe6\xcc\x39\x3c\xfa\xe4\xf3\x38\xfa\xce\x59\xff\x7a\x68\x85\xd2\
-\x99\x5a\x79\xf6\x3b\xf9\x63\xcf\xfd\x7d\x65\xee\xbc\xe7\x0e\x13\
-\x06\x06\x8d\x02\x4a\xb3\x01\x69\xd1\x01\x4e\x04\xaa\x56\xa8\x6b\
-\x0d\x97\x49\x6d\x0b\xd4\xb6\x61\x0b\xe3\x39\xec\x97\x9a\x30\xff\
-\x29\x5f\x5c\x8d\x01\x5c\x4a\xab\x53\x5f\xa4\xf5\x9a\xf8\xf3\x70\
-\x1f\x39\xa2\x01\x52\x22\x9c\x33\xed\xd7\xb4\x57\x9b\x5f\xec\x2f\
-\xd7\x27\xb9\x47\x52\xfb\xa4\x0e\x03\xa9\x54\x0a\xa9\x54\xd8\x87\
-\x9e\xb0\xb9\xa1\xbc\xcd\x84\x99\x49\xe5\x4f\x63\x72\x73\x18\x6e\
-\xd2\xc0\xab\x80\x4c\x55\xda\x79\x07\x6a\x26\xa5\xce\xc2\xab\x7f\
-\x94\x52\x74\xb4\xa7\x71\xc3\xfa\x7e\x6c\x18\xed\x41\x9a\x10\x79\
-\x8e\x14\x23\x94\x52\x1c\x3a\x74\x1c\x8f\x3d\xb5\x13\xe7\x0c\xdc\
-\x61\x28\xb5\x4f\xd7\x16\xc6\xff\xdd\xf4\xe1\x27\x1f\xb7\x2b\x05\
-\x4b\xb8\x68\xf5\x02\x40\x5c\x80\x5a\xb6\x80\xa4\x2b\x73\x59\xab\
-\x7e\x84\x10\x14\x0a\x45\xec\xd8\xf5\x2a\x3a\xb2\xed\xbe\x0a\xe0\
-\xc6\x46\x64\x56\x1e\xea\x13\x45\xc5\x9a\x42\x6d\xd4\x10\x74\x54\
-\x76\x6d\x60\x8c\xb6\xc6\x69\xaf\x9b\x58\x7c\x5b\x08\x21\xc8\x76\
-\x64\x31\xb2\x6e\x0c\xab\xd7\xae\xc5\xba\x55\xdd\xe8\xeb\x6a\x63\
-\x4c\xe7\x7c\xd3\x04\x13\x15\x87\x28\xc1\x21\x95\x01\x2b\x02\xac\
-\x82\xa9\x0d\x31\x66\x91\xeb\x08\x93\xa8\x22\x4a\x46\x75\x8a\xde\
-\xae\x36\xdc\x7c\xe5\x20\xd6\x0c\x76\xf1\xdd\x90\x8a\x72\xdc\x61\
-\x5e\x7b\xfd\x00\x9e\x7c\x76\xb7\xa1\x3b\x4c\x6d\x7f\x65\xf6\xcc\
-\x9f\xce\x1c\x7e\x6a\x37\x0d\xdc\x61\x28\xcc\x01\xa5\x55\xcc\x6a\
-\xc9\x55\xbb\x28\xf1\x80\x4a\x64\x3d\x51\xe7\x51\xe1\xa6\x12\x76\
-\x93\x00\x00\xa5\x72\x15\xfb\xde\x3a\xb6\xc8\x97\x72\xd9\xdf\xb7\
-\x45\x93\x8e\xce\xfd\xb8\xf1\x8e\x3b\xf0\x93\x9f\x78\x2f\xfa\xba\
-\xdb\xfd\x7d\xf6\x24\x12\x15\x62\x24\xf3\xc0\xc9\x07\xad\xa8\xa5\
-\x84\x19\xb0\x52\xba\xe6\x85\xb2\x29\x26\x91\x62\xf9\x17\x65\x52\
-\x57\x86\xfa\x3a\x71\xf3\x95\x03\x58\xd5\x93\xd5\x8e\xf4\x02\x00\
-\x49\x11\x14\x0b\x45\x3c\xff\xc2\x1e\xec\x78\xe1\x75\x14\x8a\x26\
-\xee\x30\x95\x9d\xc5\xf1\xc3\x5f\xcf\x9f\xd8\x79\x88\xb9\x3a\x8b\
-\xc5\x78\x9a\x21\x8d\xd6\x55\x2f\x18\x53\x20\x9a\x51\xd5\x0b\x58\
-\x4d\x05\xb6\x14\x21\x8d\xc1\x61\x6c\x59\xd4\xca\x96\xb5\x94\x4b\
-\x45\x1c\x3f\xf8\x36\xca\x1f\xbc\x15\xa9\xa1\x1c\x6c\xcd\xf3\x46\
-\xa0\x63\x92\xf2\x8e\xc8\xa1\x4b\x09\x33\xc6\x6c\xbf\x64\xcd\xda\
-\xe6\x6a\x56\xa5\x02\x23\xfd\x88\x9e\xd7\xf6\xb5\xab\xba\x70\xd3\
-\x95\x03\xc8\x75\x2a\xdc\x61\x98\x71\x47\xb8\xee\x30\x4f\x3f\xfb\
-\x22\x5e\x79\xed\x2d\x43\x77\x98\xe2\x43\xf3\x67\x5f\xfb\x8b\xc2\
-\x85\x37\xcf\x63\xf9\x3f\x5c\xcd\x56\x2b\x9b\xc2\x16\xeb\x55\xfd\
-\x9a\x0d\x58\x16\x12\x59\x96\x42\x08\x41\xa9\xb0\x80\xf9\xfc\x2c\
-\x40\x46\xa0\xb2\x2a\x13\xef\x43\xa2\xd1\x5b\x89\xab\x56\x05\x2a\
-\x1e\x03\x56\xf0\xe6\x7e\x89\x60\xa5\x61\x53\x41\xb1\x1a\x56\x25\
-\xab\x77\xbc\x31\x9d\x8d\x77\xdc\x61\xae\x5c\xdd\x83\xeb\xd7\xf7\
-\x21\xdb\x96\x0e\xd9\x78\xc1\xe9\xe7\xf9\x0b\x97\xf0\xd8\x53\x3b\
-\xf1\xd6\xc1\x77\x4c\xdc\x61\xe6\xad\xf2\xdc\x7f\xce\x9f\xd8\xf5\
-\xbd\xf2\xf4\xc9\x59\xa8\x8d\xe6\x54\xf8\xd5\x85\x9b\xa6\x6b\x34\
-\x3c\x4a\x9a\x0d\x50\x46\xa2\x02\xaa\x45\x37\xa8\xdb\xb5\xca\xe9\
-\x54\x5b\xd7\x02\x80\x9e\x26\xd7\x9b\x48\x13\x84\xda\x14\x95\x72\
-\x49\x0a\x67\xb1\x49\x87\x53\x01\x9b\x22\x2e\x40\x05\x13\x3d\xfd\
-\xd1\x3e\x04\xcc\x4a\x9c\xbd\xab\xf5\xc1\x83\x68\x08\x8f\x16\x16\
-\xd3\x6c\x0a\xb4\x67\xd2\xb8\x6e\x5d\x2f\xae\x59\xd3\x8b\x4c\x8a\
-\x70\xab\x1f\xa8\x48\xd8\xb1\xe3\x27\xf1\xf0\x13\xcf\xe3\xe4\xe9\
-\x0b\x26\xee\x30\x97\xaa\x85\xa9\x6f\xcf\x1e\x7d\xe6\xc1\x5a\x71\
-\xda\x73\x87\x91\x2e\x8d\xee\x92\x99\xdc\x96\x25\x0a\xaf\x37\x5d\
-\x1c\x91\xca\x8c\xc3\xa8\xe2\xaa\x73\xa6\x80\x47\xaa\x73\x17\x0e\
-\x65\x3a\x7a\xdf\x06\x49\xdd\xdd\x82\x4e\x27\xd2\x64\xe1\xc7\x33\
-\x18\x4b\xba\x72\xd0\xcf\x9b\xd6\x09\xdf\x60\xce\xa9\x83\xdc\xf6\
-\x56\x22\x31\x0a\x57\xd9\xf8\x36\xa9\xd5\x3f\xbe\xd5\x41\x5b\xba\
-\x3b\x32\xb8\x71\x7d\x3f\xd6\x0d\x75\x07\xab\x8b\xaa\xca\x75\xdd\
-\x61\xde\xdc\x7f\x08\x8f\x3d\xb5\x0b\xe3\x93\x33\x26\xee\x30\xc7\
-\x2a\x73\xe7\xfe\x6c\xe6\xf0\x53\xdb\xa9\x55\xf5\x76\x87\xf1\x2f\
-\x83\x2a\x8b\xe6\xbc\xa5\x2c\x25\x86\x2c\xb9\x11\x3f\x15\x92\xa9\
-\x59\xd4\x31\x2a\x3f\x99\x3d\xbe\x7d\xdc\x2a\xcf\x7d\x0d\xd4\xde\
-\x6f\xda\xf0\x44\x96\x46\xfc\x01\x48\x6f\x3a\x3a\x09\xec\x53\xaa\
-\x3f\x6f\xea\x3a\x11\xf2\xf2\x36\x78\x06\xe4\x88\x3c\xd9\x41\xb7\
-\xaa\x84\xd6\xa0\x2f\xac\x98\x21\x4e\x43\xeb\xef\xce\xe2\xce\x6b\
-\x87\x7c\x9f\x3d\x08\xd9\xfd\x73\x42\x50\xad\x54\xb0\xeb\x85\x3d\
-\xf8\xe1\xc3\xdb\xcc\x40\xca\xaa\xbe\x5a\x9a\x3c\xfa\xdb\xd3\x6f\
-\x3f\xf6\x2c\xb5\xaa\x61\x1f\x71\xf6\x17\x9a\x73\x44\xa4\x33\x55\
-\x17\xe3\xe6\xab\xb7\xde\x66\xb5\x5b\xca\xdf\x8a\xe9\x09\xf5\x30\
-\x2c\x3a\xbe\xf7\xef\x9f\x1d\xbc\xf1\x73\x17\x32\x5d\x83\xf7\x11\
-\x92\x5a\x0f\x42\xda\x22\x76\x6a\x54\xf5\x8d\x2f\xdf\x77\x6a\xe3\
-\xd4\x03\x45\x1b\xa8\x26\x9c\x49\xef\x17\x40\xc3\xd3\x29\x06\xc5\
-\x15\xd5\x11\xa9\x55\xda\xfa\x69\xd8\x9b\x21\xb4\x2d\x32\x9f\xae\
-\x0e\x90\x54\xa6\x2f\x95\xe9\xbc\x1b\x84\x64\xc3\x2a\xa3\x61\x2f\
-\x2a\x91\x8a\x0d\xa8\x04\x71\x95\x35\x7f\xda\x80\xbc\xee\xb9\xaf\
-\xc6\x69\x67\x9a\x2b\xda\x13\xa9\xfe\xf1\x0c\x6e\x75\x5f\x27\x6e\
-\xda\x30\x80\xbe\x6e\xf7\xf1\xa2\xea\x3c\x8e\x3b\xcc\x02\x9e\xd9\
-\xfe\x12\x76\xbd\xf4\x86\xa1\x3b\x4c\x69\x6b\xe1\xc2\xfe\x7f\x37\
-\x7f\xe6\xd5\x93\x90\x59\x54\xbd\xbf\xd0\x9c\xc7\x91\xc5\x56\xfb\
-\x9a\xce\xf0\x74\x40\x25\x9a\x29\xc5\x70\x5d\xfa\x46\xc2\xc9\xd4\
-\x5b\x3f\x3e\x00\xe0\x40\xba\xa3\xbf\x3d\x95\x6e\x4b\x79\x00\x42\
-\x29\x65\xbe\x99\xec\xf8\x33\x3c\xfd\x80\x0f\x77\xdf\x04\x7e\xbc\
-\x89\x7a\x2f\xb5\x58\x96\x62\x80\x9d\xad\x8f\x9d\x08\x14\xe4\xa1\
-\x7c\x1e\x22\xe5\xe3\xf2\x44\xa4\x45\x54\x5a\xa6\x6e\x1a\x9a\x3e\
-\x46\x79\x41\xdf\xa9\x5d\xb3\x73\x63\x77\xdd\xd0\xb5\xe6\x96\x1b\
-\x09\xd2\x5a\xa0\x52\xd9\x6d\x7c\xf6\xa4\xb0\xd9\x48\x9b\x8b\x0a\
-\x53\x06\x4c\x96\x12\xe6\xab\x8c\x1e\xbd\xe3\x6c\x5e\x8c\xa4\x08\
-\xc1\xd8\x50\x37\x6e\x58\xdf\x8f\xce\x2c\x6b\x34\x67\x52\xbb\x87\
-\x29\x42\x30\x31\x39\x85\xc7\x9f\xda\x89\xd7\xdf\x3c\x6c\xe2\x0e\
-\x53\xb2\x2a\x0b\xff\x30\x7f\xea\xe5\xbf\x2a\x4e\x1c\x9e\x84\x1e\
-\xa4\xa4\x8c\x88\x96\xb8\x46\xf6\xb8\xac\xc5\xb4\x9e\xa8\x36\x37\
-\x6b\x74\x50\x99\xde\x74\x66\xba\x0e\xb0\x9a\x15\xee\x49\x0a\x00\
-\xb1\x4a\x33\x96\xe5\x8c\x04\x6a\xc9\x7d\x93\x7f\xbd\x63\x93\x97\
-\xbc\xde\xb2\x4d\xea\x88\x53\x8e\x2e\x2e\x4e\xbc\x77\x6c\x83\xda\
-\x35\x68\x85\x06\xaa\x1e\x33\xe0\x2f\x89\x10\x48\xbc\x6f\x03\xf1\
-\xbf\x1c\x12\x58\x49\x4b\x09\x6b\x76\x1d\x96\x57\x37\x15\x76\x3d\
-\x96\x90\x2d\x58\x43\x2a\x93\x4e\xe1\xea\xd1\x1e\x5c\xbb\xa6\x17\
-\xed\x19\x12\xb1\x64\x30\x70\xfa\xf4\x59\x3c\xf4\xf8\x0e\x1c\x39\
-\x7e\xc6\x0d\x0b\x01\x29\x4a\x67\x6a\xa5\x99\xff\x98\x3f\xfe\xdc\
-\x0f\x2a\x73\x17\x54\xee\x30\xaa\xe3\x7a\xc1\x07\x9a\x7c\x61\x12\
-\x95\x77\xb1\xd5\xb8\xba\xea\x0b\x53\xfd\x5a\x31\xfa\x17\x56\xbe\
-\xf8\xb8\x49\x8c\x4b\xf8\x85\x26\xbe\x1e\x69\x65\x3f\xc3\xfa\xad\
-\x03\xf0\xb0\xeb\xa4\xcb\x17\x96\x2e\xea\x18\xfa\x71\xbb\x90\x8b\
-\x45\xf8\x6c\x32\xa3\x72\xc3\x19\xc0\x92\xb7\xb7\x0a\x5a\xa3\x77\
-\xbf\x8b\x56\xff\x54\x54\x8f\xda\x40\x47\x7b\x1a\x9b\xd6\xf5\xe2\
-\x8a\x91\x1c\x52\x06\xee\x30\x07\x0f\x1e\xc7\x43\x4f\xec\xc0\xb9\
-\x0b\x13\x26\xee\x30\x67\xaa\xf3\x97\xfe\xbf\x99\xc3\x4f\x3e\x6e\
-\x57\x8b\x35\xf0\x20\xd5\x2c\x26\x14\x56\x46\x54\xd9\x51\xf9\x10\
-\x33\xfd\x92\x19\xed\x4d\xa6\x27\xd4\xcb\x9a\xa2\x7e\x75\xe5\xc7\
-\xad\x37\xaa\x1c\x84\x94\x11\xd5\xb6\x46\xca\x08\x03\xa4\xa8\x38\
-\x56\x54\x71\x61\x61\xaa\xbc\xba\xf8\xa0\x4f\xc4\xec\x21\x24\x9a\
-\x03\xce\xc0\xed\x63\x90\x73\x10\x68\x78\x24\x00\x2b\x6e\xf3\x05\
-\x9e\x55\x85\x6d\xa6\xa0\xeb\x86\x14\x4a\x29\x7a\xba\xda\x70\xe3\
-\xfa\x7e\xac\x1e\xe8\x0c\xef\x93\xeb\x0e\xf3\xea\x9e\xfd\x78\x7c\
-\xeb\x8b\x98\x9e\x9d\x33\x71\x87\x39\x50\x9e\x39\xf5\x8d\xd9\x23\
-\xcf\xbc\x44\xa9\x25\x36\xb3\x11\x30\x42\x0b\xca\x88\x2a\xdb\x34\
-\x7d\xdc\xb6\xd5\x0b\x80\x52\x3b\x5a\x39\x3d\xa1\x9e\x32\x9b\x05\
-\x82\x26\xc0\xa0\x6b\x4b\x23\xc0\xd3\x2c\xb0\x8a\x93\x1e\x9a\xf8\
-\x30\x11\xdf\x6b\x6a\x90\x87\xd5\xaa\x98\x90\xe0\x97\xf0\xa7\x60\
-\xf7\xeb\xa3\x61\x30\xaa\xfd\x55\xab\x7f\xe1\x6d\x74\x60\x6e\x55\
-\x6f\x07\x6e\xbc\xa2\x1f\x03\xb9\x76\x80\x65\x6a\x42\x3b\x3c\x77\
-\x98\xe7\x76\xbe\x8a\x6d\x3b\xf7\x98\xba\xc3\xec\x2a\x8e\x1f\xfa\
-\xb3\xfc\x89\x5d\x07\xe1\x9a\x2b\x60\xfe\xd2\x86\xa9\x82\xf5\xa8\
-\x7c\x71\xeb\x6d\x16\x98\xc4\x91\x46\x54\x57\x00\xe6\x2e\x34\xcb\
-\x85\x55\x21\x46\x1a\xd3\x3a\xeb\x01\xa0\x7a\xfb\xda\x08\x58\xb1\
-\x62\xc2\xae\xa0\x48\x03\x7d\x3a\x02\x68\x1f\x1c\x79\x45\x0a\x2f\
-\xcc\xff\x23\xaa\x5c\xf0\x8d\xe6\xc1\x08\x1f\xe1\x54\x40\x9d\x1b\
-\x8c\xa6\x34\xe7\x48\x67\xa7\x72\x65\xcd\x60\x17\x6e\x5c\xdf\x8f\
-\xee\xce\x8c\x52\xd5\x0b\x70\xd0\x71\x87\x79\xe2\xe9\x5d\x78\x69\
-\xcf\x01\x43\x77\x98\xc2\x23\x8e\x3b\xcc\x7e\x6f\x77\x18\xf6\xba\
-\xb5\x0a\xa4\xea\x55\xf9\x10\x11\x6e\x92\x66\xb1\xd8\x54\x68\x1b\
-\xa3\x46\xfd\x1a\x0d\x8f\x93\xb7\x11\x96\x04\x98\xbf\xfc\x30\x28\
-\xcb\xa4\x7d\xf5\xb4\x5d\x97\x07\x11\x61\x26\xf1\x3a\x31\x49\x63\
-\xc4\xa8\x78\x43\xb5\x10\x0e\x7e\x29\x1b\x6f\x09\xdf\x00\xac\x22\
-\x4b\xe7\x0a\x14\xd5\xbf\x28\xa1\x70\xdc\x61\xae\x18\xe9\xc6\x75\
-\x6b\x7b\x5d\x77\x18\xaa\x2c\x1b\xa0\xbe\x3b\xcc\xc3\x8f\xef\xc0\
-\x81\x83\xc7\x61\x53\x44\x8d\xec\x2d\x58\xa5\xb9\xff\x92\x3f\xb1\
-\xeb\x7b\xe5\x19\xdf\x1d\xc6\xab\x3a\xce\x6f\x54\x9c\xaa\x6b\x61\
-\x69\x9b\x01\x6c\xcd\x60\x76\x51\xed\x6f\x28\xdc\x44\xf5\x6b\x15\
-\x7b\x32\x01\x87\xa8\xb6\x98\xd6\xa9\x2a\xb7\x55\x4c\x28\xea\xfd\
-\xaa\xc7\x0e\x05\xc3\x78\x20\x1c\xe8\x00\x75\xbb\xcc\x80\x4a\xd7\
-\x1b\xc8\x8c\xca\xb1\x47\x01\xa0\xaa\x25\x58\x58\x5b\x15\x94\x7b\
-\x2c\x4a\x2a\x5a\x58\x03\xa9\xe3\x0e\x73\xed\x9a\x1e\x5c\xb9\x3a\
-\x87\x4c\x8a\x48\xcb\xc4\x88\x6d\x3e\x7a\xec\x24\x7e\xfc\xd8\x76\
-\x9c\x38\x65\xe4\x0e\x33\x5e\x2d\x4c\xfd\xfb\xd9\xa3\x5b\x1f\xac\
-\x15\x67\xc4\xdd\x61\xe2\x02\x51\xb3\x59\x96\xe2\x6a\xc4\x2e\x4b\
-\x95\xdf\xa4\xec\x46\xeb\x34\x62\x53\x40\x7d\xa3\x7e\x8b\xc1\x9e\
-\x74\xe9\x11\x23\x6d\x33\xd5\x37\x2c\x51\x1c\x2b\x26\x4c\xca\x94\
-\x80\x88\x75\xd0\xe8\x5b\x1a\x64\x95\xd5\x40\xf7\x94\x65\x54\x3e\
-\x9b\xe2\xed\x4c\x61\x4d\x56\x26\x09\x5d\xe7\xc5\xf9\xbf\x2b\x9b\
-\xc6\xa6\xb1\x3e\xac\x5d\xd5\x15\xfe\x85\x70\xdd\x61\xf6\xbd\x71\
-\x10\x0f\x3f\xf9\x3c\xc6\x27\x66\x0c\xdd\x61\xce\x7f\x73\xe6\xf0\
-\x93\xac\x3b\xcc\x72\x01\xa9\x66\x00\x43\xa3\xe0\x03\x4d\xbe\xd0\
-\xcb\x1a\x37\xaf\xa9\x31\xbd\x95\xec\x29\x6e\x1d\xba\x7c\x30\x48\
-\xb3\x5c\xc1\x4a\x25\x51\x4c\x2a\xea\x18\x9a\x38\x5d\x6d\xf1\x18\
-\x15\x73\x95\x1d\x37\x3f\xfe\xb2\x07\xcb\x05\xb3\x1d\x90\x6d\x52\
-\x72\xa1\x1a\x3b\x95\x1b\x28\xa2\x44\x7f\x77\x3b\x6e\x58\xdf\x87\
-\xa1\xde\x0e\x00\x14\x3a\x6d\x2f\x05\x82\x72\xa5\x82\x5d\x2f\xbe\
-\x8e\xa7\xb6\xbd\x84\xb9\xf9\x82\x89\x3b\xcc\x9e\xd2\xd4\xf1\xaf\
-\xcf\x1e\xdb\xb6\x0f\x81\x39\x6e\xb9\x82\x94\xd4\x7c\xcd\x31\x0c\
-\xca\x32\x66\x3a\x21\x69\x1b\x65\x76\x9c\xc4\x59\x8f\xca\x14\x04\
-\x74\xe1\x71\x01\xa8\x91\x32\x9a\xa9\xbe\x35\x5a\x0e\x10\x0e\x14\
-\x71\xf2\xc6\xb5\x4f\x99\xa6\x33\x66\x54\x44\x79\x4e\xfc\xd7\xd8\
-\xd5\xf6\xe0\xd8\xac\xa8\xbf\x84\x0b\x54\x93\x33\xeb\x11\x26\xef\
-\x48\x5f\x07\x6e\x58\xdf\x87\xde\xce\xb6\xd0\xe2\x08\x21\x98\x9f\
-\x5b\xc0\xd3\xdb\x5e\xc4\xf3\x2f\xee\x33\x71\x87\xb1\x5c\x77\x98\
-\x6f\xba\xee\x30\xa6\xaa\x5e\x54\x7c\x2b\x41\xaa\x95\x80\xd1\x2a\
-\xd5\xce\x04\x4c\x01\xc4\xb3\x51\x89\xe7\x71\x18\x4e\xbd\x20\x16\
-\x27\x6d\xab\x18\x91\x4e\xef\x08\x8b\xd3\xa5\x47\x9d\x79\xa3\x8e\
-\xa1\x89\x83\xa2\x3c\x40\xfd\x40\xd5\x09\x1d\x44\x3a\x12\xb5\x35\
-\x03\xad\xcf\x58\xbc\xd9\xe9\x63\x43\xdd\xd8\xb8\xae\x17\x9d\xed\
-\xd1\x6b\x48\x4d\x4c\x4c\xe1\x91\x27\x9e\xc7\x6b\x6f\x1c\x82\x65\
-\x51\x13\x77\x98\x7f\x9c\x3f\xf5\xf2\x77\x18\x77\x18\xf1\xfa\x34\
-\x02\x1e\x4b\xc9\xc8\x9a\xa9\x56\x9a\xf4\x11\x06\x69\xc3\xd2\xfb\
-\x12\xd7\x29\xb9\x51\x96\xd4\x28\x8b\x69\x46\x7b\x5a\xc5\x96\xea\
-\x61\x57\xcd\xb4\x4f\xa9\xe2\xa2\xa0\x20\xa8\x4f\xb9\x85\x8c\xb9\
-\xc8\xab\xae\x9b\xe6\x33\x4f\x4d\x01\x64\xd2\x04\x57\xae\xce\xe1\
-\xea\xd1\x1c\xda\xd3\x29\x7e\x0d\x29\xb1\x6c\x02\x9c\x3a\x75\x16\
-\x3f\x7a\xf4\x39\x1c\x3e\x76\xda\x0f\xd3\x57\x40\x67\x6b\xa5\x99\
-\xbf\x99\x3d\xfe\xdc\x0f\xaa\x8e\x3b\x8c\xc2\x96\xa7\xec\x64\x33\
-\xd8\xcf\x62\x81\x94\xea\xb2\xc6\x2d\xcb\xa4\xbc\xa6\xa8\x7c\x9e\
-\xc4\xb5\x51\x99\xa4\x69\x44\xd5\xd3\x95\x15\x16\xbe\x94\x60\xa5\
-\x4b\x0f\xa8\xdf\xc1\x7a\xec\x53\xaa\xfc\xaa\x34\x71\x41\x4a\xbc\
-\xde\x0d\x01\x15\x10\x80\x40\xa8\xed\x3c\x4e\x79\x4c\x19\x94\x02\
-\x1d\x6d\x69\x5c\xb7\xb6\x07\x63\x43\xdd\x48\x91\xa8\xf2\x29\x0e\
-\xbc\x75\x14\x3f\x7e\xf4\x39\x9c\x35\x70\x87\x01\xb5\xcf\x56\xe7\
-\xc7\xbf\x35\x7d\xf8\xc9\xc7\xec\x6a\xa1\x26\x56\xaf\xb8\x5e\x40\
-\xf4\x0b\xbc\x1c\x41\xaa\x5e\x35\xcd\xa4\xff\xf5\x80\x91\xd1\x63\
-\x52\xcf\xcc\xf4\xa5\x66\x3e\xcb\x09\xac\x00\x73\x40\xd2\xa5\x0b\
-\xbb\x59\x51\xf1\x62\x7d\x61\xe7\x61\xe5\x34\x0c\x52\x00\x6f\xc8\
-\x6e\x42\x81\x5c\x19\xb9\xce\x0c\xae\x1f\xeb\xc3\x48\x7f\x87\x1b\
-\xa1\xae\x81\x10\x82\x5a\xb5\x86\x97\x5f\x7d\x13\x8f\x3e\xbd\x0b\
-\xd3\x33\x46\xee\x30\x6f\x55\x66\xcf\x7c\x7d\xe6\xf0\xd3\x2f\x52\
-\x6a\xb1\xd5\xc7\x55\x73\xe2\x02\x98\x69\x9e\x56\x81\xd4\x72\x61\
-\x6a\x91\xd2\xe8\x9a\xe9\x4b\xc5\x7c\x5a\x51\x3e\x2b\xa6\xea\x55\
-\x23\xea\x9e\x58\x66\xd4\x8d\x6b\xa6\xf1\x5c\x52\x69\x88\xef\x3a\
-\x5c\x9f\xd0\x90\xe6\xd3\xc8\x7c\xe1\x32\x98\x6b\xc7\xf5\xeb\xfb\
-\xd0\xdf\xdd\x1e\x9a\xc7\xd9\x5e\xad\x84\x6d\x3b\x5e\xc6\xb3\x3b\
-\x5e\x35\x75\x87\x79\xc1\xdd\x1d\xe6\x20\xf4\xf7\xa1\x11\xe0\x31\
-\x0d\x33\x4d\x1f\x96\x77\x29\x41\xaa\x1e\xf6\x69\x2c\xf5\xda\xa8\
-\xd8\xe3\x46\xc0\x04\x11\x65\xc5\xa9\x27\x2a\xad\x4a\xea\x55\xed\
-\xea\x61\x57\xba\xe3\x30\x75\x4e\xd7\x66\x20\xbc\x4e\xc4\x28\xcf\
-\x89\x37\xb4\x51\xc9\x94\x99\xca\x47\x2e\xe3\x51\xc4\x40\x93\x55\
-\xdb\xf8\xd5\x03\x9d\xd8\xb4\xae\x07\xdd\xd9\x4c\xf8\x45\x21\x04\
-\x33\x33\xb3\x78\xec\xc9\x9d\xd8\xfd\xea\x01\x54\x6b\xb5\x28\x90\
-\xaa\xda\xd5\xe2\x23\x0b\xe7\xf6\x7e\x6b\xe1\xfc\xbe\x73\x08\xdf\
-\x78\x81\x3d\xae\x07\xa0\xa2\xd2\xd6\x0b\x6a\xcd\x66\x5f\x51\x71\
-\x8d\x96\xaf\xbb\x1e\x91\x52\x0f\xa3\x6a\x44\xd5\x33\x29\xab\x55\
-\x60\x15\x55\x0e\x0c\xf3\xb1\x12\xc5\xae\x54\x69\x9b\x09\x46\xf5\
-\x1b\xcf\xe5\xfb\x40\x11\xf3\xe1\x09\x0a\xa2\x42\x6e\xca\xd7\xa2\
-\xf8\x0d\x5b\x93\x93\xc2\x59\xbc\x6e\xfd\x70\x97\xb3\x86\x54\x1b\
-\xb3\xa5\xba\x22\x1b\x21\x04\xe7\xcf\x5f\xc4\x8f\x1e\xdd\x8e\xfd\
-\x6f\x1f\xf7\xfd\x00\x43\x5a\xbd\x60\x95\xe7\xff\x73\xfe\xc4\xae\
-\xef\x96\xa7\x4f\xcc\x2a\xae\x9b\xc9\x8b\xd5\x8c\x17\x3a\x2a\xbe\
-\x95\x71\xf5\x96\x23\x5d\xcc\x88\xeb\x80\x18\x65\x69\xa5\x59\xdb\
-\x65\xb5\x5a\xd5\x33\x2d\x0f\x4d\xac\x83\x95\x7a\x47\xea\xa2\xca\
-\x84\xa2\x5c\x28\xd2\x35\x4b\xe5\xd3\xe5\x8b\x2f\x4c\xcf\xa9\x0b\
-\x3c\x1c\xf8\xf8\x58\xc5\x2a\x85\x51\x3b\xc6\x38\x76\xae\xb6\x74\
-\x0a\x57\x8f\x76\x63\xc3\x48\x0e\xe9\x14\xbf\x86\x94\x74\x11\x09\
-\x70\xe4\xc8\x09\x3c\xf8\xc8\x36\xbc\x73\xea\xbc\x89\xd1\x7c\xbc\
-\x56\x9c\xfe\xf6\xcc\x91\xad\xff\xd3\xdd\x1d\x46\x75\xff\xe2\x00\
-\x94\xee\x38\x0e\xb0\xb5\x02\xc0\x96\x82\x91\xc5\xb9\x0e\xb1\xa4\
-\x91\x35\xd3\x1b\x55\xc5\x9a\x05\x56\xac\x98\xa8\x7d\x26\x20\x07\
-\xc3\x36\x88\xe5\xc2\xb0\x4c\x28\xf2\x46\xa5\x37\x55\xe3\xe2\xa6\
-\x75\xd3\x99\x4e\x4f\x70\xd6\x38\x20\x62\xe9\x0a\x3e\x46\xd9\x34\
-\x54\x5f\x9e\x7f\x44\x1d\x77\x98\xeb\xd6\xf6\x62\xcd\x40\xa7\x33\
-\x8a\xa8\x9c\x24\x45\x7d\x77\x98\xbd\xfb\x0e\xe2\xc7\x8f\xed\xc0\
-\xa5\x89\x69\x83\x85\xee\xac\xe3\xd5\xb9\x8b\xdf\x98\x3e\xfc\xe4\
-\xb3\xb4\x56\x16\xdd\x61\xd0\xe2\xe3\x46\x40\x28\x2c\x5d\xa3\x69\
-\x1a\x2d\xb3\xde\x76\xc4\x92\x46\x37\x77\x58\x0e\x60\x15\x55\x07\
-\x10\x1f\xc0\x60\x90\x0e\x30\x07\xbb\x7a\x8e\xc3\x24\x2e\x10\x45\
-\x95\x4d\x89\x89\x8d\x4a\x20\x4c\x22\xa5\xe6\x2e\x84\xc4\x82\xa8\
-\x0f\x5c\xde\xca\x0a\xc1\x39\x40\x29\x45\x6f\x77\x1b\xae\x5f\xd7\
-\x87\xc1\x9e\xf6\xf0\x8e\x10\x82\x4a\xb9\x82\xe7\x5f\x78\x0d\x4f\
-\x3c\xb3\xdb\xcc\x1d\xc6\xae\xee\x29\x4f\x9f\xfc\xb7\x33\x47\xb6\
-\xbe\x2e\x5c\x3f\x13\xf6\xd4\xac\xe3\xe5\xa6\x06\xd6\x5b\xd6\xa2\
-\x82\x14\xd0\xdc\x5d\x68\x96\x2b\x58\xc5\x89\x63\x25\x0e\x20\x85\
-\xe5\x81\x41\x3e\x55\x1a\xc0\xec\xe6\xea\x54\x97\x28\x95\x4e\xf7\
-\xb2\x2a\x44\x54\xd9\x9c\xe2\xfd\x4a\x7c\xc4\x91\x55\x3b\x8e\x55\
-\x85\xc8\x70\x6f\x07\x36\x8d\xf5\xa2\xa7\xa3\x0d\x61\x66\x78\x42\
-\x08\xe6\xe7\xe7\xf1\xe4\xd6\x17\xb0\xe3\xc5\xbd\x28\x97\x4d\xdc\
-\x61\xca\x5b\x8b\x97\xde\xfa\xc6\xdc\xa9\x97\xde\x41\xf8\x9a\xe6\
-\xaa\x30\x13\x15\xa6\x59\x6c\xaa\x9e\x3c\x2b\x01\xa4\x1a\x96\x66\
-\x00\x55\xa3\x60\xd1\x88\x8a\xb6\x98\xf6\xa7\x7a\x0c\xe7\x51\xc7\
-\xaa\xbc\x50\x94\x65\x92\x2e\x2c\x7d\x14\x53\x33\x57\xfd\x38\x74\
-\x22\x3e\xca\x51\xaa\xb8\x20\x0c\x4a\xa9\xd9\x14\x05\x08\xb0\x6e\
-\xb0\x0b\xd7\xad\xe9\x41\x67\x7b\x3a\x62\xa6\x39\xc1\xf8\xf8\x14\
-\x1e\x7a\xec\x39\xec\xd9\x77\xd0\xc0\x1d\x06\x65\xbb\x5a\xf8\xef\
-\x73\xa7\x5f\xf9\xf7\xc5\x4b\x6f\x8f\x23\x00\x29\x53\x70\x52\x5d\
-\xf7\x7a\x01\x4a\x17\xde\x0c\xa0\x89\x9b\x37\x2e\x03\x6a\x14\xa4\
-\x1a\x06\xac\x66\x31\xaa\x66\x80\x15\x50\x1f\x80\xc5\x8d\xd3\xd5\
-\x03\x44\xb7\x0b\x21\x65\xc3\xb0\x4e\x95\x2c\x85\xca\xc7\xf7\xdb\
-\x60\xf5\x04\x2a\xe5\x14\x9e\x49\xca\x56\x44\xa5\x3c\x94\x49\x40\
-\x29\x45\x26\x45\xb0\x61\x24\x87\xab\x56\x77\xa3\x2d\x9d\x92\xcd\
-\x51\x4c\x00\x21\x04\x27\x4e\x9e\xc5\x83\x0f\x3f\x8b\x43\x47\xcd\
-\xdc\x61\xac\x72\xfe\xaf\x67\x8f\x3f\xf7\x5f\x2a\xf9\x73\x0b\x9a\
-\xeb\xd0\x28\x38\xe9\xe2\xea\x05\xa8\xa8\xb4\xad\x64\x4a\xad\x8e\
-\x6b\x48\x5a\xa1\xfa\xb1\xc7\xad\x52\xd1\xe2\x02\x4c\x3d\xec\x4a\
-\x15\xd6\x2c\xc0\x42\x48\x99\x88\xa8\x23\xaa\x2e\x13\x11\xf3\x1a\
-\x33\x2a\x81\x50\x05\xe1\xd4\x19\xf5\x93\x1a\xe5\x63\x58\x50\xbc\
-\x4d\x29\x3a\xda\x52\xb8\x66\x4d\x0f\xd6\xad\xea\x72\x76\x87\xf1\
-\x93\xaa\xd4\x3e\x8a\xfd\x07\x8e\xe0\x87\x0f\x6f\xc3\xd9\xf3\x86\
-\xee\x30\x85\xc9\x6f\xce\x1c\x7e\xea\x11\xab\x3c\xe7\xb9\xc3\xc8\
-\xc5\x86\x83\x4e\x9c\xb4\x8b\x05\x50\x51\xf1\xcb\x15\xc0\x1a\x96\
-\x66\xef\x94\xbc\x9c\xc0\x4a\x97\x1e\x30\x07\x33\x56\x74\xf1\x71\
-\x00\x0b\x9a\x32\xe3\xc6\xe9\xd2\x9b\xd4\xa9\x92\x58\x79\xfc\x8e\
-\x2b\x1e\x4d\x0a\x55\x58\xc0\xa4\x6c\x0a\xe4\x3a\x32\xd8\xb8\xae\
-\x17\x23\x7d\x1d\xa1\x2d\xf0\x76\x87\x79\xe9\x95\x37\xf0\xf0\x13\
-\x3b\x0d\xdd\x61\xac\xb7\x2a\x73\xe7\xbe\x36\x73\xe8\x89\x5d\xd4\
-\xb6\x54\xa5\x47\xbd\x48\x8d\xaa\x7d\xec\x79\x9c\x34\x71\xe2\x1b\
-\x01\xb8\x15\x07\x52\x40\xeb\xb6\x74\x07\x9a\x3f\x0d\xa1\x51\x36\
-\x24\x86\xd5\x3b\xdd\x40\x15\xaf\xab\x4b\x0c\xaf\xd7\x5e\x55\xaf\
-\xca\x67\x9a\x27\x82\x51\x11\xa8\xf6\x3f\x67\x9f\x4e\x0a\xf8\xce\
-\xc8\x41\x3c\xe5\x12\x52\x00\x83\xb9\x36\x6c\x5a\xd7\x8b\xbe\xee\
-\x76\x45\x59\x94\xad\x11\x85\x62\x09\xcf\x6e\x7f\x09\x5b\x9f\x7b\
-\x15\x85\x62\x29\x0a\xa4\x28\xb5\xaa\x3b\x4b\x53\xc7\xbe\x36\x7b\
-\x6c\xfb\xdb\x21\xfd\x8f\x0b\x4e\x61\xf1\x71\x8f\xc5\xcb\x16\x96\
-\xbe\x55\x2c\xaa\x91\xf2\x4c\xe2\x9a\x0a\x50\x9e\xb4\x02\xa8\xd8\
-\x8e\xc4\xb1\x47\xb1\xd2\x6c\x5b\x13\x62\x96\x17\x37\x1e\x9a\x34\
-\xad\x98\x7a\xd0\x4c\x95\x0f\xfe\xb9\xf1\xf4\x04\x41\xe7\xf3\xe3\
-\x1c\xb8\xa2\x52\xfa\xa0\xb2\xd5\x7d\x1d\xd8\xa8\x72\x87\xa1\x6c\
-\x2a\xf8\xee\x30\x8f\x3c\xf1\x3c\x5e\x7c\x79\xbf\x99\x3b\x4c\xad\
-\xf4\x50\xe1\xc2\x9b\xdf\x9c\x3f\xb3\xe7\x2c\xc2\x37\x02\x85\x22\
-\xbc\x5e\x70\xaa\x27\x5d\xb3\x00\x2a\x4e\x7c\x2b\x58\x57\x54\xfa\
-\xa6\x4a\x2b\x81\xca\x6b\xb8\x29\x10\x35\x6b\x94\x0f\x88\x0f\x70\
-\xf5\xc6\xc3\xa0\x0e\xd5\x31\x60\x76\x53\x4d\xd2\x36\x02\x5c\x88\
-\x93\x97\xb2\xff\x09\xc0\xa1\x66\x54\x8e\xa4\x08\xb0\x7e\x55\x17\
-\xae\x5e\xd3\x83\x6c\x26\x25\x81\x14\x7b\x4e\x08\xc1\xb9\x73\x17\
-\xf1\xe0\x23\xdb\xf0\xe6\x5b\xc7\x4c\xdc\x61\x0a\x76\xa5\xf0\xfd\
-\xb9\x53\xbb\xff\xaa\x38\x71\x64\x16\xfa\x7b\xd3\x08\xb3\x6a\x25\
-\xcb\x6a\x36\x18\xd5\x93\x67\xd9\xa9\x7a\xa2\xb4\x1a\xa8\xbc\x0e\
-\xb4\xda\x58\xce\x8a\xe9\xd4\x82\xa8\x3c\xaa\xf8\x7a\x8e\xc3\xa4\
-\x9e\xa9\x07\x51\x69\xeb\x01\x2e\x77\xc2\x67\x34\xab\xf2\x3b\x48\
-\x83\xae\xea\x5c\x5c\x28\xa5\x68\xcf\xa4\x70\xd5\xea\x1c\xae\x18\
-\xee\x76\x76\x87\x11\x0a\x63\x55\x3e\x02\xe0\xf0\x91\x77\xf0\xc3\
-\x87\x9e\xc5\xf1\x93\x26\xee\x30\x74\xc2\x2a\xcf\x7e\x6b\xe6\xc8\
-\x33\xff\x50\x5d\x18\x67\xdd\x61\x54\xfd\x8f\x0b\x5e\xad\x66\x59\
-\x51\x60\xa2\x0a\xaf\xa7\xac\xc5\x04\xb0\x96\xc9\x62\x00\x95\xd7\
-\x91\xc5\x06\x24\x28\xf2\x46\x01\x12\x9b\x07\x86\x65\x21\x22\x0d\
-\x0c\xf2\x84\xd5\x09\x4d\xde\x66\x82\x9c\x11\x48\x09\x19\xdc\x42\
-\x3d\xfd\x8e\x82\x9b\x8d\x4e\x81\x4e\xc1\x1d\x46\x07\x52\x81\x3b\
-\xcc\xdb\x78\xf0\x91\xe7\x0c\xdd\x61\xec\xe3\xb5\x85\x89\xaf\x4d\
-\x1f\x7a\xfc\x69\xbb\x5a\x8c\xf3\xf2\x34\x0b\x9c\x4c\xcb\x6a\x24\
-\x8d\x69\x7c\x54\x58\x54\x99\xcd\x00\xb0\x96\xca\x62\x01\x15\xdb\
-\x21\x53\xfb\x13\x14\xe9\x21\xe4\xad\x57\x75\x63\xcb\x06\xe2\x83\
-\x47\x3d\xaa\x9c\x0a\x68\xea\x05\x2d\xd3\x3a\xe2\xe4\xa9\xeb\x81\
-\xa3\xc2\x9f\x27\x3d\x5d\x6d\xb8\x7e\xac\x17\xab\x7a\xb2\xca\x4c\
-\x2c\x48\x39\xee\x30\x7b\xf0\xf8\xd6\x17\x91\x9f\x33\x71\x87\xb1\
-\xf6\x54\x66\xcf\x7c\x75\xfa\xd0\xe3\x7b\xc0\xb3\x28\x55\xf3\xa2\
-\xc2\x5a\x01\x4e\xa6\xe9\x9a\x09\x50\x8d\xc6\xc7\x05\xbf\x45\x01\
-\x28\x4f\x16\x13\xa8\xd8\x8e\xb6\xca\xfe\x14\x77\x6a\x01\x1b\xaf\
-\x0a\x37\x8d\x17\xeb\xd1\xb5\x13\x9a\xb8\x28\x80\xa9\x07\x80\xe2\
-\xb4\x3d\xc2\x98\x4e\xc3\xa1\xcc\x9d\x96\xee\xd9\xa8\x86\x7a\xb3\
-\xd8\x34\xd6\x2b\xef\x0e\x43\xd9\x1f\xea\xba\xc3\x2c\xe0\xc9\xa7\
-\x77\x61\xfb\x0b\xaf\x1b\xb9\xc3\x50\xab\xf2\x74\x71\xe2\xe8\x9f\
-\xe4\xdf\xd9\x71\x1c\xc1\x6e\xc5\xba\xfe\xd5\x1b\x56\x2f\x38\x85\
-\xc5\x99\xe4\x89\x03\x50\xf5\xe4\x5b\x51\x2c\x8a\x95\xa5\x00\x2a\
-\xaf\xa3\xad\x56\xf7\x4c\xe3\x4d\xc2\x4d\xe2\xc3\xda\x6e\x1a\xa7\
-\xeb\x77\x58\x5d\xf5\x4a\x2c\xd6\xe6\xe0\x14\xe5\x0d\xe6\xc2\x84\
-\x4f\x02\x8a\x75\xab\xba\x70\xdd\x5a\x77\x77\x18\xf0\x35\x70\xf6\
-\x28\x77\x77\x98\x1f\x3f\xba\x1d\xaf\xee\x35\x74\x87\xa9\x95\xfe\
-\xdb\xc2\xb9\xbd\x7f\xbe\x70\x6e\x2f\xeb\x0e\x23\xd4\x22\x35\x1b\
-\x06\xe1\x8d\x82\x57\x3d\xec\x49\x15\x57\x2f\x40\x99\xd4\xd9\x6c\
-\x35\x70\x51\x65\xa9\x80\x8a\xed\xf0\x62\xa9\x7b\xcd\x04\x2c\xd3\
-\x34\xba\x7a\x75\x71\x26\xea\x70\x23\x13\x4c\x75\x62\x60\xa3\x0a\
-\x9e\x59\x6f\xfe\x39\x3b\xe1\x33\xed\xb9\xc3\xb8\xbb\xc3\xc8\xeb\
-\xa7\x07\x01\x84\x10\x9c\x3c\x79\x16\x3f\x7c\xe8\x59\x1c\x3c\x7a\
-\xca\x0d\x0b\xad\x7b\xd6\xaa\x2c\xfc\x87\xfc\x3b\x3b\xbf\x57\x9e\
-\x3e\x61\xe2\x0e\x03\x83\xb8\x46\xc1\x6a\x31\x55\xc0\xb0\xf0\xc5\
-\x56\x03\x97\x44\x96\x12\xa8\xd8\x0b\xd0\x4a\x75\x4f\x77\x6c\x62\
-\x67\xaa\x07\xb0\xe2\xb0\x27\xc4\x28\x37\xae\xc4\xc9\x6f\x1b\x2d\
-\xf3\xe2\x0b\x03\x3d\x94\xa0\x2d\x93\xc2\xc6\x75\x7d\x58\x33\xd8\
-\x89\x34\x21\x8c\x63\xb1\xfa\xdd\xdf\x7f\xe0\x08\x7e\xf8\xd0\x36\
-\x9c\x39\x3f\x6e\x32\xb2\x77\xb6\x56\x9a\xfd\xfa\xcc\xe1\x27\x7f\
-\x54\x2b\x4e\xd7\x0c\xfa\xd4\x88\x0a\x28\x86\xb7\x42\x25\x8c\x9b\
-\x46\x97\x27\x0e\x00\xa9\xc2\x97\x3d\x8b\x62\x65\x39\x00\x15\xd0\
-\x5a\x75\xcf\x74\xa4\x0f\xa8\x5f\xb5\x43\x44\xb8\x2a\xae\x1e\x3b\
-\x95\xaa\x6d\x71\xd5\x40\x4d\x39\x26\x40\x45\x15\x21\x14\xbd\x5d\
-\x6d\xe8\xeb\x6e\xf3\xcf\x95\x95\xb2\xee\x30\x8f\xef\xc4\xd4\x4c\
-\xde\x64\x64\xef\xad\xda\xc2\xf8\x1f\x4d\xbd\xf5\xf0\x0e\x6a\xd7\
-\xd8\xb6\xab\x1b\xd3\x9c\xf0\xa5\xb4\x57\x35\x0b\xdc\x5a\xa1\x06\
-\x2e\xa9\x2c\x17\xa0\xf2\xc4\x14\x90\x4c\x80\x2d\x2c\x1e\x0d\xa4\
-\x89\x33\x47\xaa\x11\x95\xcf\x44\x9a\x61\xab\x72\xfa\x19\xc5\x6c\
-\x00\x77\xf2\x39\x95\xf4\xb4\xa8\xac\x84\x10\x14\x5d\x77\x98\xa7\
-\xb7\xbf\x62\xe6\x0e\x63\xd7\x9e\xaf\xcc\x9e\xf9\xa3\xe9\x43\x4f\
-\xec\x47\x60\x34\x37\x79\x89\x56\xb2\x0a\x28\x9e\x2f\x26\x40\x45\
-\xd5\xb7\xa4\xb2\xdc\x80\x0a\x68\xcc\xfe\xd4\xac\x99\xe4\x26\x69\
-\xe2\xce\x91\x8a\xcb\x7a\x16\x43\xe5\x03\x93\xd6\x28\xbd\xa3\xee\
-\x05\xab\x24\x44\xa1\x14\x21\xc0\xcc\x4c\x1e\x8f\x3e\xf1\x3c\x5e\
-\x78\xf9\x4d\x13\x77\x98\x1a\xb5\x2a\x3f\x2a\x8e\x1f\xfe\x5a\xfe\
-\xc4\xce\x33\x50\xef\x0e\x63\xd2\xbf\x46\x54\xc0\x56\xb1\xaa\xb0\
-\xb4\xad\x3c\x5e\x51\x6a\x9e\x4a\x96\x23\x50\x79\x62\x62\x7f\x6a\
-\xc5\x4c\xf2\x7a\x66\x9b\x37\x73\x94\xaf\xd1\x89\x9d\x3a\x09\x2b\
-\xc7\x33\xa6\x1b\xd7\x11\x98\xa1\x18\x23\xb9\x10\x97\x22\x04\xe7\
-\xce\x5d\xc2\x8f\x1e\xd9\x8e\x37\xde\x3a\x0a\x9b\x46\xb9\xc3\x60\
-\xc1\xae\x95\xbe\x3b\x7f\x66\xcf\xb7\x0b\x17\xde\x9c\x86\x1e\xa4\
-\x94\x4d\x31\x08\x8f\xc3\xb6\x16\x43\x05\x0c\x8b\x6b\x36\x40\xa9\
-\xc2\x4d\xd8\xe4\xb2\x90\xe5\x0c\x54\x80\x9a\xbd\xc4\x1d\xbd\x6b\
-\x16\x18\xe9\xca\x6d\x24\xae\x11\x95\x0f\x75\xe6\x55\x89\x91\xea\
-\x17\x5d\x08\x2f\x87\x8f\x9e\xc0\x0f\x1f\xda\x86\xe3\x27\xcf\x81\
-\x10\x82\xf0\x1a\xe8\x84\x55\x59\xf8\x66\xfe\xf8\x8e\xff\x5a\x9e\
-\x39\x55\x82\x5a\xdd\x33\xa9\x36\x2a\x5c\x17\xb7\x58\x2a\x60\x58\
-\x5c\xb3\x40\xac\x5e\x35\x71\xd9\xca\x72\x07\x2a\x4f\x4c\x41\x65\
-\x31\x5c\x5f\xe2\xa8\x7f\xcb\x5d\xe5\xf3\x84\x92\x08\x63\xba\x69\
-\xa1\x84\x00\x96\x65\x63\xdf\x1b\x07\xf1\xa3\x47\x9f\xc3\xc5\xf1\
-\x68\x77\x18\x50\xfb\x78\xad\x34\xfb\xd5\xe9\x83\x8f\x3e\x6e\x95\
-\xe7\xc5\xdd\x61\xea\x05\xaa\xb0\xf8\xc5\x50\x01\xa3\xce\xe3\x02\
-\x54\x23\x69\x56\x2c\x40\x79\xb2\x52\x80\xca\x93\x66\x03\x96\x2a\
-\x0d\x42\xf2\x34\x92\x6e\x39\x4f\xec\x8c\x5e\xe6\x85\xc2\x77\xe7\
-\xd3\xe1\x0e\x21\x04\x95\x4a\x05\x3b\x5f\x78\x1d\x8f\x6f\x7d\xc1\
-\xcc\x1d\x86\xda\xaf\xd6\x16\xc6\xff\x60\xf2\xc0\x8f\x5e\x02\xa5\
-\x04\xf1\x40\x4a\x68\xa1\x71\xb8\x69\xda\x46\x59\x55\x58\xfc\x62\
-\x80\xd8\x8a\x07\x28\x4f\x56\x1a\x50\x79\xd2\x28\x60\x85\xa5\x69\
-\x96\xf1\x1c\x11\xf1\xd4\x20\x2c\x6e\xb9\xf5\x48\xe0\xeb\x17\xa9\
-\xfd\x39\xd5\x8a\x6b\x9b\x13\x00\x24\x45\x30\x3f\x5f\xc0\x53\xcf\
-\xbc\x80\xed\xbb\x5e\x47\xb9\x5c\x89\x02\x29\x9b\xda\xb5\x27\x2b\
-\xb3\x67\xfe\xdf\xe9\x43\x4f\x1c\x41\xb4\xaa\xb7\x18\x2a\x60\x3d\
-\x4c\x2b\x6e\x7c\xa3\x00\xd5\x48\x9a\x15\x07\x50\x9e\xac\x54\xa0\
-\xf2\xa4\x5e\xc0\xaa\x67\x1e\x54\x58\xba\x46\x1d\x8c\xeb\x05\x2e\
-\xd3\xf2\xa3\x84\x82\xa4\xa8\x3e\x52\x77\xe6\x56\x4d\x08\x26\x26\
-\xa6\xf1\xf0\xe3\xcf\xe1\x95\xd7\xdf\x86\x65\xd9\x91\xee\x30\xd4\
-\xaa\xfe\xd7\xc2\xa5\x83\xdf\x98\x3b\xb9\xeb\x22\x1a\x33\x9a\x37\
-\x12\xdf\x2c\x15\x50\x0c\x6b\xa5\x0a\x18\x96\xee\x5d\x07\x50\x9e\
-\xac\x74\xa0\xf2\x24\x8e\x61\xbc\x51\x1b\x55\x54\x79\xcd\x70\x30\
-\x5e\x4c\x5f\x3e\x0a\x80\xd6\x67\x4a\x77\xfc\xf3\x4e\x9d\x3a\x8b\
-\x07\x1f\xd9\x86\x83\x47\x3c\x77\x98\xd0\xd2\x66\xed\x5a\xe9\x2f\
-\x17\xce\xec\xf9\xeb\x85\x0b\x6f\xce\xa1\x39\x20\x65\x92\x76\x31\
-\x55\xc0\xa8\xf3\x7a\xd2\x36\x6a\x68\x5f\xd1\xf2\x6e\x01\x2a\x4f\
-\xe2\x8e\xf0\xb1\x79\x74\x12\x97\x3d\xc5\xb5\x53\x99\xb4\xc1\xa4\
-\xec\xb8\xc2\xcf\xf2\x26\xd1\xc6\x74\xd5\x76\x56\x07\xde\x3e\x86\
-\x07\x1f\xd9\x86\x33\xe7\xcc\xdc\x61\xec\x6a\xe1\x8f\x67\x8e\x3e\
-\xf3\x3f\x2a\xf9\x73\xd5\x3a\xfb\xd4\x6c\x15\xb0\x59\x00\xb6\x9c\
-\x58\xd6\xbb\x06\xa0\x3c\x79\xb7\x01\x95\x27\xcd\x9c\x6e\x10\x96\
-\xae\x51\x95\xaf\xd1\x3c\xcd\x9b\x99\x6e\xba\x5d\x16\x0d\xdc\x61\
-\x5e\xdd\xb3\x1f\x0f\x3f\xb9\x13\x93\xd3\x79\xa4\xa2\x47\xf6\x0e\
-\xd4\x4a\xf9\xdf\x9f\xdc\xff\xc3\x67\xa9\x55\xa9\xf7\xfa\x98\xa4\
-\x6f\x74\x5a\x42\x58\xdc\x4a\x51\x01\xdf\x75\xf2\x6e\x05\x2a\x4f\
-\x9a\x39\xdd\xa0\x19\xbe\x7a\xf5\x3c\x48\xf5\xf8\xf8\x99\xd4\x45\
-\xb9\xb2\x0d\x9d\x92\x09\x21\x28\x95\x4a\xd8\xbe\xe3\x15\x6c\x7d\
-\xee\x15\x2c\x14\x4a\x51\x20\x45\x41\xed\x1d\xd5\x85\x89\xdf\x9b\
-\xdc\xff\xc3\x7d\x6e\x9d\x81\x01\x3f\x9e\x98\xa6\x8f\x0b\x56\xba\
-\xf0\x56\xab\x80\xe2\x79\x02\x50\x1a\x79\xb7\x03\x95\x27\x71\xa7\
-\x05\x44\xa5\x6b\xc6\xc4\xcd\x46\xe7\x4c\x35\x92\x57\x71\x5d\x22\
-\x66\xa6\x53\xea\xbb\xc3\x3c\xfe\xd4\x2e\xbc\xf0\xca\x9b\xa8\x56\
-\xa3\x77\x87\xa1\xb6\xf5\xa0\xe3\xb3\xf7\xf8\x49\x00\x69\xa6\xde\
-\x46\x5f\xae\x7a\xc0\x28\x2c\xbe\x59\x86\xf5\x46\xa7\x34\x24\xe0\
-\xa4\x90\xcb\x05\xa8\x58\x69\x06\x7b\x0a\x13\x15\x03\xaa\x67\xdd\
-\xa9\x7a\xa4\x7e\x75\x2a\x14\x70\x08\x08\x21\x38\x7f\x61\x1c\x3f\
-\x7a\x78\x9b\xe3\x0e\x63\x47\xbb\xc3\x50\xab\xfa\x37\xc5\x89\xc3\
-\x7f\x9e\x7f\xe7\xf9\x49\x38\x20\xd5\x08\xb8\xd4\x93\xbe\x15\x76\
-\x29\x55\x58\x33\x55\xc0\xb8\x79\x2f\x0b\xb9\x1c\x81\xca\x93\x7a\
-\x0d\xe4\x8b\x35\xca\xd7\xec\x39\x53\xa1\xbe\x7e\x61\xeb\x51\x11\
-\x00\xc7\xde\x39\x8d\xed\xcf\xbf\x8a\xa3\xef\x9c\x71\xdc\x61\xc2\
-\x4d\x52\xe3\xb4\x56\xfe\xfa\xfc\xd9\x3d\xdf\x5f\x38\xff\x46\x11\
-\xcd\x1f\xd9\x33\xcd\xd7\x8c\xb9\x55\xaa\xb0\xa5\x54\x01\x2f\x4b\
-\xb9\x9c\x81\x8a\x95\x66\x81\x96\x89\x2c\x99\x9b\x0c\x78\xb5\x4f\
-\x88\xd3\x03\x55\xcd\xb2\xb0\x6b\xf7\x3e\x54\xa2\x55\x3d\x00\xf4\
-\x98\x5d\x2d\xfe\xc1\xf4\xc1\xc7\x1f\xaa\x2e\x8c\x8b\xee\x30\x71\
-\xda\xda\x8c\x74\xef\x16\x15\xf0\xb2\x97\x04\xa8\x64\x79\xb7\xaa\
-\x7c\x61\xf5\x50\x42\x52\xd0\xe1\x18\xa5\x14\xd5\x9a\x65\x32\xfd\
-\xe0\x15\xab\x32\xff\x3b\x13\x6f\xfc\xe3\x0b\xd4\xaa\x34\x0a\xaa\
-\xcd\x4c\xbb\x52\x55\xc0\x44\x5c\x49\x80\x2a\x5c\x96\xd3\x28\x5f\
-\xbd\x62\xe6\xeb\x17\x73\x5f\x3f\x41\x2c\x50\xfb\x89\x5a\x71\xfa\
-\x5f\x4f\xbc\xf1\x8f\x07\x61\xa6\xea\x85\x49\xb3\xc1\xad\x19\x2a\
-\x60\xab\x98\x56\x02\x4e\x06\x92\x00\x95\xb9\xbc\x1b\x55\xbe\x20\
-\x0d\xa9\xbb\x6d\x25\x4a\xad\xbf\xab\xe6\xcf\xff\xf1\xd4\xdb\x8f\
-\x9c\x47\xe3\x20\xa5\x6a\x7f\xa3\x69\x9a\xa1\x02\xd6\x33\x09\xd4\
-\xb4\xec\x44\x22\x24\x01\xaa\xfa\x24\x6a\x76\xf9\x62\x39\x18\x37\
-\x8b\x7d\x85\xfa\xfa\x85\xc8\x2c\xb5\x6b\x7f\x5e\x9e\x3e\xf9\xed\
-\x99\x23\x4f\xe7\xb1\x34\x20\xd5\x8c\x74\xcd\x9a\x9d\x5e\x4f\x79\
-\x89\x18\x48\x02\x54\x8d\x8b\x89\xcd\xa9\xd1\xb9\x5b\x26\xac\x48\
-\x55\x96\xae\x8d\x8a\xf2\x63\xab\x7e\x67\xa8\x55\xfd\xa3\xf9\xb3\
-\xaf\xfd\x60\xe1\xdc\xeb\xf5\xba\xc3\x44\xc9\x62\xa8\x80\xcd\x48\
-\x9f\x00\x53\x8b\x25\x01\xaa\xe6\x4b\xb3\x41\x2a\x62\x09\xe1\xb0\
-\x91\x3c\x23\x70\x23\x70\xa6\x27\xc4\xe9\xe2\x9b\xb4\x56\xf9\x9d\
-\xa9\x83\x8f\x3e\x55\x9d\xbf\xe4\xd5\xd3\xea\x17\xb3\x51\x15\xb0\
-\x5e\xf5\xb0\x5e\x15\x30\x91\x26\x4a\x02\x54\xad\x97\x56\xcd\x8f\
-\x6a\xa6\xd1\x9d\x02\xc4\x32\x28\x8b\x02\x74\xbb\x5d\x2d\xfd\xe6\
-\xa5\x3d\x7f\xfb\x1a\xcc\x97\x0b\x6e\x86\x34\xc3\x56\x15\x96\xa6\
-\x59\xe1\x89\xb4\x40\x12\xa0\x5a\x7c\xd1\xb1\xa6\x66\x3e\xf8\x71\
-\x40\x8c\x02\x80\x6d\x95\xcf\xa7\xda\x3a\x2f\x01\x58\xa3\x49\x57\
-\x05\xa5\xff\xc3\xaa\x2e\xfc\xde\xf8\x6b\x7f\x77\x1c\xd1\x33\xcd\
-\x5b\x7d\xcd\xea\x4d\xdf\xac\x49\xa0\x89\x2c\xa2\xa4\x1b\x2f\x22\
-\x91\x16\x49\xe3\xbb\x2d\xc4\x28\x3f\xdd\xd6\x5d\x6c\xef\x19\xbd\
-\x1e\x84\xdc\xad\x48\xbb\x00\x4a\xbf\x6d\x55\x16\x7e\x77\xfc\xf5\
-\xbf\x3b\x87\x80\x49\x2d\x85\x2c\x95\x0a\x98\xc8\x12\x4a\x02\x54\
-\x2b\x4f\x5a\x02\x60\x95\xfc\x59\xab\x7b\xed\x6d\x47\x49\x2a\xbd\
-\x1e\xc0\x35\x70\x9e\x0d\x1b\xc0\x09\x50\xfb\xdf\xd4\xca\x73\xdf\
-\x9c\xd8\xfb\x83\x59\xa8\x41\x2a\x7a\xfa\x43\xf3\xa4\xd5\x2a\x60\
-\x22\xcb\x50\x5a\xfd\xd5\x4e\x64\x71\xa5\xd1\x91\x41\xba\xfa\xae\
-\x5f\x5d\x4d\x52\x99\xcf\x80\x60\x03\x80\x12\xb5\xed\x47\xcb\xd3\
-\x27\xde\x9a\x39\xf2\xb4\x55\x47\xf9\xcd\x96\x56\xb9\xe2\x24\xb2\
-\xcc\x65\xa9\x1f\xbc\x44\x16\x5f\x74\xab\x8c\x7a\x12\x36\xf2\xb8\
-\x94\xd2\xe8\x84\xdb\x44\x56\xb0\x2c\x87\x07\x30\x91\x95\x21\xad\
-\x7a\x56\x12\xc0\x49\x24\x52\xfe\x7f\x90\xbe\xf8\xd8\xd4\xeb\x70\
-\x25\x00\x00\x00\x14\x74\x45\x58\x74\x41\x75\x74\x68\x6f\x72\x00\
-\x4a\x61\x6b\x75\x62\x20\x53\x74\x65\x69\x6e\x65\x72\xe6\xfb\xf7\
-\x2f\x00\x00\x00\x49\x74\x45\x58\x74\x43\x6f\x70\x79\x72\x69\x67\
-\x68\x74\x00\x50\x75\x62\x6c\x69\x63\x20\x44\x6f\x6d\x61\x69\x6e\
-\x20\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\x65\
-\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6c\x69\x63\x65\
-\x6e\x73\x65\x73\x2f\x70\x75\x62\x6c\x69\x63\x64\x6f\x6d\x61\x69\
-\x6e\x2f\x59\xc3\xfe\xca\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\
-\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x30\x2d\x30\
-\x36\x2d\x32\x30\x54\x32\x33\x3a\x32\x34\x3a\x32\x35\x2d\x30\x34\
-\x3a\x30\x30\x77\x9c\x29\x53\x00\x00\x00\x25\x74\x45\x58\x74\x64\
-\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\
-\x30\x36\x2d\x32\x30\x54\x32\x33\x3a\x32\x34\x3a\x32\x35\x2d\x30\
-\x34\x3a\x30\x30\x06\xc1\x91\xef\x00\x00\x00\x19\x74\x45\x58\x74\
-\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\
-\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\
-\x21\x74\x45\x58\x74\x53\x6f\x75\x72\x63\x65\x00\x68\x74\x74\x70\
-\x3a\x2f\x2f\x6a\x69\x6d\x6d\x61\x63\x2e\x6d\x75\x73\x69\x63\x68\
-\x61\x6c\x6c\x2e\x63\x7a\x69\x66\xe3\x5e\x00\x00\x00\x0d\x74\x45\
-\x58\x74\x54\x69\x74\x6c\x65\x00\x47\x6f\x20\x44\x6f\x77\x6e\xf3\
-\xfd\x14\x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x0e\x35\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
-\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
-\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
-\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\
-\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\
-\x00\x07\x74\x49\x4d\x45\x07\xe1\x0a\x0d\x0f\x2b\x18\xc7\x56\x80\
-\xf9\x00\x00\x0d\x39\x49\x44\x41\x54\x68\xde\xc5\x5a\x7b\x78\x54\
-\xd5\xb5\xff\xad\xbd\xcf\xcc\x99\xcc\xe4\x01\x12\x20\x0f\x0a\x21\
-\x10\x5a\x79\xa3\x20\x05\x4b\x79\x84\x14\x10\x3e\xe4\xa5\x55\xf4\
-\x16\xea\x15\x42\x91\x54\x7c\xf5\xbb\xe5\xbb\xdc\xeb\x47\x51\x1e\
-\x1f\xca\x45\x81\xe2\xb5\x80\x82\xa0\x48\xa1\x48\x23\x85\x0b\x0a\
-\x52\xaa\x28\x04\x81\x12\x08\x31\x10\x9e\x81\xbc\x33\x79\xcd\x9c\
-\x39\xe7\xec\x75\xff\x98\x09\x86\x90\x4c\x48\xe4\xfb\xba\xfe\x59\
-\xf3\x9d\xb3\x67\xad\xdf\x7a\xec\xbd\xd7\xda\xfb\xd0\xe8\xd1\x23\
-\x04\x6e\x27\x02\xc0\x21\xae\x00\x88\x46\x38\x03\xa0\x03\x07\x0e\
-\xd9\x42\x88\x87\x99\xf9\x1d\x66\xee\x45\x44\x60\x66\x84\xe1\xd5\
-\x00\xde\x88\x8f\x8f\x5b\x32\x74\xe8\x43\x66\x45\x85\xb7\x55\x7a\
-\x43\x1c\x00\x58\xd4\xfb\xb3\x08\xf1\xfa\xbf\x65\xe8\xfd\x1d\xdc\
-\xe1\x70\xa0\x57\xaf\xfb\x75\x66\x9e\x0d\xa0\x17\x11\x05\x05\x85\
-\xe7\x91\x00\xd2\x8b\x8a\x8a\x7f\x32\x7d\xfa\x63\xad\xd2\x1b\xe2\
-\x75\xe3\x44\x7d\x03\xea\xf3\xa6\x3c\xc3\x75\x1e\x89\x8c\xf4\xd0\
-\x95\x2b\x57\x3d\x44\xb8\x1f\x2d\xa3\x58\x80\xbb\x4f\x99\xf2\xb4\
-\x6a\x8d\xde\x86\xcf\xeb\x0c\xe0\x30\x0a\x1b\x15\xf2\xe4\x93\xd3\
-\x6c\xd3\xb4\xee\x63\x46\x87\x16\x1a\xa0\x29\xc5\x9d\x99\xb9\xb9\
-\x71\xcd\x82\x07\x40\xf5\xc3\xd7\x22\x21\x93\x27\x4f\x83\x65\x59\
-\xb1\x00\xda\xb6\xd0\x00\x00\xe8\xb2\x6a\xd5\x32\x11\xe6\x7d\x73\
-\xe0\x6f\x45\xa8\x6e\x62\xdc\x46\x9d\x3b\x77\xe2\xf4\xf4\x7f\xb7\
-\x9e\x7f\xfe\x37\x2a\x25\xa5\x9b\x6a\x4c\x08\x91\x8b\x99\xb9\x13\
-\x00\x77\x4b\xd1\x33\x73\x97\x35\x6b\xde\x75\x3a\x1c\xda\x1d\xef\
-\x22\x22\x5c\x9c\x9a\x3a\x82\xd7\xaf\x7f\xc7\x4a\x4b\x1b\xc5\xba\
-\xee\x6c\x38\x81\xeb\x13\xd1\xe8\xd1\x23\x64\xdd\x0b\x66\x46\xd7\
-\xae\x5d\xf8\x83\x0f\x3e\x8e\xb3\x2c\xf3\x61\x66\x54\x46\x46\x7a\
-\xb2\x7e\xf9\xcb\xa9\x25\x1d\x3b\xb6\xa7\xac\xac\x93\x64\x18\x06\
-\x0d\x1a\xf4\x80\x5a\xba\x74\xa5\x12\x42\xfc\x8e\x99\x97\xb5\x22\
-\x02\x59\x1e\x8f\x67\x5c\x55\x55\x55\xf1\x98\x31\xa9\x9a\x52\x8a\
-\x3b\x76\xec\x80\x19\x33\x9e\x52\xb3\x66\xcd\x73\x15\x14\xdc\xe8\
-\xa1\x14\xf7\x21\xa2\x8b\xbd\x7b\xdf\x7f\x3c\x31\x31\xde\x36\x8c\
-\x40\x63\x59\xa2\x68\xf4\xe8\x11\xb7\x66\x7d\x4a\x4a\x37\xde\xb0\
-\xe1\x83\x0e\xa6\x69\x6e\x64\xe6\x5f\x00\xf0\x03\x38\x29\x04\xed\
-\x12\x42\x66\x26\x25\x75\xbe\x90\x9b\x9b\x67\x78\x3c\x9e\x04\xbf\
-\xdf\x3f\x9d\x99\x9f\x03\x90\xd4\x0a\x03\x0c\x22\xfc\x45\x4a\x6d\
-\x75\xa7\x4e\x89\x5f\x4f\x98\x30\x46\x6d\xd8\xb0\xb9\x9d\x61\x18\
-\x3f\xb7\x6d\x35\x15\xc0\x48\x00\x1d\x01\x94\x08\x41\xcf\x9d\x39\
-\xf3\xf5\x9f\x33\x32\x5e\x91\x8d\xc8\xe1\xba\x08\x40\x08\x41\xb1\
-\xb1\xed\xd4\x47\x1f\xed\xf8\x3d\x33\xff\xa1\x41\xb8\x18\x40\x01\
-\x11\xf6\x11\xd1\x09\xa5\xf8\x09\x00\x43\x43\xa1\xfd\x21\x54\x48\
-\x44\x1b\x00\xd4\x00\x3c\x91\x19\xfd\x00\xe8\xb7\xe7\x08\x8e\x3b\
-\x1c\xce\xc9\x19\x19\xb3\x0b\x4e\x9e\xfc\x67\x7d\x7d\x5c\x67\x00\
-\x01\x90\xfb\xf7\x1f\xb4\x75\xdd\xd9\xcf\x34\xad\x4f\x00\x74\x0e\
-\xa3\xb4\x2e\x27\xef\x15\xd5\xcd\xc1\x26\x17\x12\x22\xfa\xaf\x89\
-\x13\xc7\x2d\xf1\xf9\x7c\x64\xdb\xea\x36\x2c\x02\x80\xf0\x78\xdc\
-\x9c\x92\xd2\x4d\x37\x4d\xeb\xb9\x66\xc0\xe3\x1e\x83\xaf\x03\x4e\
-\xe1\xde\x33\xf3\xb3\x9f\x7e\xba\xaf\xcf\x6f\x7f\x3b\xc7\x6e\x60\
-\x38\x09\x66\xe6\x5d\xbb\x3e\x52\xf9\xf9\x97\x86\x03\x98\x76\x8f\
-\xc1\xdd\x2b\xea\x62\xdb\x6a\xde\xac\x59\xcf\x3b\x5d\x2e\xfd\x16\
-\x78\x00\x2c\xfa\xf5\xeb\x03\x8f\x27\x2e\x86\x19\xf3\x01\xb4\xf9\
-\x57\x23\x6d\x8a\x98\x79\x5a\x51\x51\xf1\xa8\xcc\xcc\x7d\x16\xea\
-\x2d\xab\xf2\xab\xaf\xbe\x61\xa5\xd4\xaf\x98\x79\x1e\xbe\xaf\x35\
-\x7e\x08\x59\x00\xbc\x00\xca\x01\xf8\x42\x9e\x72\xdc\x03\xb9\x2e\
-\x66\x8e\x6d\xdb\xb6\xcd\x9e\x61\xc3\x86\xf8\xca\xcb\x2b\x24\x00\
-\xa5\x69\x9a\x96\x62\xdb\xf6\xdc\x7b\xa0\xe4\x26\x11\x7d\x4a\x44\
-\x9f\x09\x21\xbe\x13\x82\xaa\x98\xa1\x29\xa5\x12\x94\x52\x83\x00\
-\x7e\x94\x19\x03\x7e\xa0\x9e\x51\x5e\x6f\xe5\xb4\x3e\x7d\x7a\xfd\
-\xe9\xe2\xc5\x4b\x8a\x99\x89\x88\x68\x39\x80\x97\xd0\xfa\xc9\x69\
-\x02\xf8\xc4\xe1\xd0\x96\xf7\xed\xdb\xfb\xe4\xb1\x63\x27\xcc\x25\
-\x4b\x5e\x25\x22\xa2\xc8\x48\x0f\x12\x12\xe2\x39\x27\x27\x97\x5e\
-\x7b\x6d\x45\xac\x61\x18\x4f\x29\xa5\x5e\x02\x90\xd8\x5a\x0b\x88\
-\x70\x42\xd7\xf5\xf1\x4f\x3e\x39\xad\xf8\xca\x95\x6b\x4c\x44\xb4\
-\x07\xc0\xb8\x56\xca\x0b\x10\xd1\xaa\xa8\xa8\xc8\xd7\xd7\xac\x79\
-\xc3\xbb\x65\xcb\x36\x69\x9a\x56\x63\xe3\xb8\x63\xc7\x0e\xa8\xac\
-\xac\xe2\xbf\xfd\x6d\x7f\xaa\x6d\xdb\x6b\x00\xa4\xb4\x52\x67\xa1\
-\xd3\xe9\x1c\xed\xf7\xfb\xb3\xd3\xd2\x46\x0a\x41\x84\x9d\x00\x2a\
-\x5a\x29\x6c\x53\x4c\x4c\xf4\x1f\x1e\x7f\x7c\x72\xe5\x7b\xef\x6d\
-\x69\x12\x3c\x00\x2a\x2c\x2c\x82\x61\x18\xc2\x34\xcd\xfd\x52\xca\
-\x97\x00\x94\xb4\x2e\x02\xf4\x45\x44\x84\xeb\xca\xd4\xa9\x13\x25\
-\x00\x16\x51\x51\xd1\x9b\x84\xa0\x0c\x00\x97\x5b\x28\x2b\xdb\xe9\
-\x74\x2c\xdb\xbd\xfb\xa3\xea\xfc\xfc\xcb\x4d\xa5\xdf\x6d\x55\xa5\
-\x52\x8a\x1f\x79\x24\x4d\xeb\xd9\xf3\xc7\x7b\x88\xe8\x4f\x2d\xd4\
-\x67\x10\xd1\xbb\x4e\xa7\xe3\xc5\x69\xd3\x1e\xad\xa9\xac\xac\x0a\
-\xee\x03\x63\xc7\xa6\x5a\xf3\xe6\xa5\x6f\x95\x52\x4e\x07\x70\xa4\
-\x05\x9e\x78\xdf\xef\x37\x2e\x2c\x5a\xb4\xac\xa9\x95\xab\xd1\x92\
-\xd8\x34\x2d\x4e\x4f\xff\x35\x4b\x29\x37\xb5\xc0\x69\x25\x42\x88\
-\x05\x51\x51\x91\x2f\x64\x64\xa4\xdf\xc8\xcf\xbf\x5c\xb7\xf9\xb1\
-\x28\x2d\x2d\xc3\xb9\x73\xe7\xc5\xda\xb5\x6f\x7c\xa5\xeb\xfa\xd3\
-\x44\xd8\x08\x20\xd0\x8c\xc0\x22\x21\xc4\xfe\x9c\x9c\xe3\x68\xa2\
-\x31\x09\x5b\xcf\x67\x66\xee\xa3\xe4\xe4\xa4\x0b\x44\x77\xe5\xb0\
-\x6c\x29\xe5\x33\xbd\x7a\xfd\x64\x55\x6a\xea\x70\xff\x89\x13\xa7\
-\x45\x5d\x9b\x0a\x80\x64\x72\x72\x92\x60\x66\xca\xce\xce\x11\x93\
-\x26\x8d\xf7\x9e\x3a\x75\xe6\x70\x20\x60\x0e\x45\xf8\x2a\xf3\x6c\
-\x54\x54\xe4\x9a\x82\x82\x9b\x81\xda\xda\xda\x86\x65\x40\xb3\xcd\
-\x88\x52\x8a\x8e\x1d\x3b\x61\x12\x89\x2e\x00\xc6\x84\xd1\xe3\x93\
-\x52\xce\xb1\x2c\xeb\xaf\x03\x06\xf4\x93\x3e\x9f\xbf\x1e\xf6\xa0\
-\xae\x3a\x05\x41\x53\xb3\x73\x44\x44\x84\xcb\x4f\x44\x66\x38\x97\
-\x10\xa1\x30\x3a\x3a\xda\xe7\xf5\x56\xb6\xc8\xf3\x77\xca\xa1\xeb\
-\x00\xec\x30\xaa\x98\x99\xab\x99\x99\x2c\xab\xd1\x05\x82\x34\xd4\
-\xdf\x96\xa5\x60\x87\xc3\x41\xcc\x1c\xae\xb8\x02\x33\x20\xa5\xe0\
-\x06\xe3\x5a\x04\x3e\x44\x06\xbe\xaf\x6e\x6b\x01\x54\x85\x9e\x69\
-\x00\xa2\x00\x94\x4a\x29\xcb\x9a\x68\xd9\xb9\x7e\x04\x08\x00\xf7\
-\xe9\xd3\x8b\xcb\xcb\x2b\x1c\x44\xa4\x21\x3c\xb5\xab\xa8\xf0\x46\
-\xc4\xc4\x44\x73\x3d\x61\x2d\x02\x3f\x77\xee\xb3\xc2\xe5\x72\x1d\
-\x23\xa2\x45\x42\x88\xf9\x52\x8a\x47\x74\xdd\x39\xca\xe9\x74\x0e\
-\xd7\x75\x7d\xa4\x94\xf2\x17\x0e\x87\x63\x6a\xb7\x6e\x49\xe7\xc6\
-\x8e\x4d\x6b\x6c\xa1\x20\x84\x94\x09\x21\x04\xaf\x5a\xb5\x5c\xad\
-\x58\xf1\x76\xa2\xdf\x6f\xbc\xc9\xcc\x43\x9b\x31\xa0\x6b\x4d\x4d\
-\x6d\xc2\x84\x09\x63\xb9\x95\x9e\x47\x6e\x6e\x9e\xf8\xd9\xcf\x7e\
-\x7a\x53\x29\xb5\x78\xc1\x82\x97\xdf\x4a\x4c\x4c\x38\x2e\x84\x28\
-\x15\x42\x10\x11\x6a\xdb\xb6\x8d\x39\x37\x73\xe6\xd3\x27\xcf\x9e\
-\x3d\x6f\x4a\x29\x1b\x0b\x41\xb0\x37\x7f\xf1\xc5\xe7\xa8\x7d\xfb\
-\xf6\xb4\x70\xe1\xe2\xc1\x4a\xa9\x65\xcc\x3c\x0c\xcd\x13\x0b\x21\
-\xe6\xdb\xb6\xfd\xd6\xe8\xd1\x23\xb4\x96\x82\x17\x42\xa0\x77\xef\
-\x9e\xf6\x96\x2d\x1f\x7b\x4a\x4b\x4b\x07\x28\xc5\x8f\x30\xf3\x20\
-\x22\x74\x62\x46\x04\x82\x05\x61\x11\x11\x9d\x24\xa2\x3d\x1e\x8f\
-\xfb\xef\x19\x19\xe9\x95\x59\x59\xdf\x92\x65\xd9\x24\x84\xe0\xf8\
-\xf8\x38\xd8\xb6\xcd\x14\x1b\xdb\x4e\x2f\x2b\x2b\x7f\x2c\xd4\x46\
-\x26\xdd\x05\xf8\x3a\xca\x72\xbb\x23\x26\x67\x66\x7e\x7c\xed\xb5\
-\xd7\x56\x68\x77\x0b\xde\xe9\x74\xc2\xe7\xf3\xa9\x23\x47\x8e\x0e\
-\xb2\x2c\xeb\x05\x04\xcb\x98\x68\x04\x27\x73\x25\x82\x73\xc1\x01\
-\x20\x06\xc1\xf6\xd2\x4f\x84\xcf\x85\x90\x4b\x1f\x7d\x74\xc2\x97\
-\x4a\x59\xb8\x76\xad\x40\x9e\x39\x73\xae\xad\xae\x3b\xab\xa5\xcf\
-\xe7\xff\x35\x80\x95\x00\xe2\x5a\x00\x1e\x00\xe2\x2d\xcb\xc2\x91\
-\x23\x47\x0f\x0f\x1e\x3c\xd0\x2c\x2d\x2d\x93\xcd\x81\x77\xb9\x74\
-\x9c\x3b\x97\x4b\xa7\x4f\x67\xff\x9b\x6d\xdb\xeb\x10\xec\xab\x8b\
-\x89\x68\xb3\x10\x62\xb9\xa6\x69\x2b\x35\x4d\xfe\xaf\x94\x72\x33\
-\x80\x3d\x00\xae\x02\xe8\x04\xe0\xa7\xcc\x3c\x26\x27\x27\xb7\x78\
-\xc6\x8c\xe9\xa7\xb6\x6e\xdd\x3e\xc0\xb2\xcc\x0f\xfd\x7e\x23\x5e\
-\x12\xd1\x22\x00\x7d\x5b\x08\x1e\x21\xa0\xfd\x2b\x2a\xbc\x81\xcb\
-\x97\xaf\x9e\x78\xec\xb1\x49\xc6\xd5\xab\xd7\x45\x53\x27\x6e\x52\
-\x4a\x94\x97\x57\xf0\xd9\xb3\xe7\x9f\x51\x4a\xbd\x19\xf2\xf0\x16\
-\xa7\xd3\x91\xf1\xe0\x83\x03\x36\x5d\xb9\x72\xf5\xac\x65\xd5\x14\
-\x0d\x1e\x3c\xb0\xe2\xf1\xc7\xa7\x94\xcc\x99\xf3\xec\x45\xaf\xd7\
-\x7b\xe8\xd2\xa5\x2b\x7b\x99\xd9\x03\x60\x08\x80\x51\x9f\x7f\xfe\
-\x45\x3e\x80\xfb\x98\x39\x03\x80\x4d\x44\xb4\x0c\xc0\xcb\x68\x7d\
-\x39\xed\x27\xc2\x26\x87\xc3\xb9\x72\xfc\xf8\xb1\xb9\x3b\x76\xec\
-\xe2\xf9\xf3\xe7\x12\x33\xa3\xb4\xb4\x8c\x8a\x8b\x4b\xa0\x94\xa2\
-\xfd\xfb\x0f\x5a\x0e\x87\x63\x8c\x6d\xdb\x9b\x01\x44\x13\xd1\x92\
-\xb6\x6d\xdb\xbc\xf9\xfa\xeb\xff\x5d\xbd\x73\xe7\x6e\x69\xdb\x77\
-\x6e\x07\x44\xc4\x4f\x3c\x31\x95\xe7\xcf\xff\x0f\x77\x4d\x4d\xed\
-\x7f\x32\xf3\xcb\x00\x2e\x11\x61\x17\x33\x5e\x00\xf0\x77\xd2\x34\
-\xd9\xdd\xb6\xd5\x76\x00\xfd\x5b\x69\x00\x42\xa9\x73\x81\x88\x76\
-\x09\x41\x07\xa4\x94\xf9\x52\x4a\x1f\x80\x40\xdf\xbe\xbd\xcb\x86\
-\x0c\x19\x64\xaf\x5f\xbf\x39\xb6\xaa\xaa\x7a\x3b\x80\x9f\x13\xe1\
-\xad\xb8\xb8\xb8\xdf\x4f\x9a\x34\xde\x9f\x9b\x9b\xd7\x9c\xe3\xb8\
-\x53\xa7\x04\x6c\xdf\xfe\x89\xc7\xe7\xf3\xad\x65\xe6\xa7\x00\x94\
-\x01\xb8\x0f\xc0\x17\x14\x0a\xef\x2c\xa5\xd4\x6a\x00\xce\x1f\x60\
-\x44\x1d\xf9\x42\x0a\xfc\x44\x28\x91\x52\x9b\x6d\x9a\xe6\x69\x21\
-\xc4\x4c\x66\x5e\x0f\xe0\x94\xcb\xa5\x4f\xda\xbd\x7b\xdb\xd5\x65\
-\xcb\x56\x86\x6d\x61\x85\x10\xfc\xa3\x1f\x25\x22\x39\x39\x59\x2d\
-\x58\xf0\x2a\x3b\x1c\x5a\x2f\xdb\x56\x7f\x05\xd0\x35\x34\xe4\x0b\
-\xb1\x7d\xfb\xfb\xe4\x72\xe9\x7f\x26\xc2\xc1\x7b\x00\x1e\x00\x22\
-\x10\xec\xb8\xba\x31\xa3\x27\x80\x98\xae\x5d\xbb\x38\x01\x4c\x09\
-\x62\xa2\x8d\x3e\x9f\xff\xca\xdd\x80\xaf\xa8\xf0\xca\xad\x5b\xb7\
-\x77\x58\xbc\x78\x59\x37\x97\x4b\xef\xea\x70\x38\xfc\x00\x0e\xdf\
-\x36\xee\x9d\x77\x36\x8a\xea\xea\x9a\x0a\x22\xf1\x3f\x08\x36\xe3\
-\xf7\x92\xae\x69\x9a\xfc\xee\xc6\x8d\xc2\x24\x66\x7e\x00\xc0\x0d\
-\x21\xc4\x67\xeb\xd7\xaf\x6e\x36\x6d\xe6\xcf\x9f\xcb\x27\x4e\x9c\
-\xea\x6f\x18\xc6\x5e\xbf\xdf\x38\x14\x08\x98\x87\xfd\x7e\xe3\x20\
-\x80\x89\xf5\xc7\x09\x00\x3c\x71\xe2\x38\x11\x1f\xdf\xf1\x10\x11\
-\x7d\x7c\x8f\x0d\x28\x88\x8f\x8f\xf3\x9a\xa6\xd9\x09\x40\x7b\x00\
-\xf9\xd1\xd1\xd1\x05\x7b\xf7\x1e\x08\x57\x6b\x31\x00\x1a\x37\x6e\
-\xaa\x12\x82\x88\xf9\xb6\x2b\x25\x00\xa8\x06\x70\x05\xc1\xc9\x7c\
-\x44\x00\x20\x9f\xcf\x4f\x3b\x76\x7c\x60\x08\x21\xd6\xa0\xf9\x26\
-\x43\xe1\x2e\x89\x88\xbc\x73\xe6\x3c\x63\x10\x21\x16\x80\x93\x88\
-\x0a\xdb\xb4\x89\xf1\x55\x55\x55\x37\x7b\x1f\x31\x66\xcc\x28\xad\
-\x47\x8f\x94\x2c\xb7\xdb\x3d\xd6\xe9\x74\x0c\x77\xb9\xf4\xe1\x4e\
-\xa7\x73\x84\xae\xeb\x23\x74\xdd\x39\x52\xd7\xf5\x11\x11\x11\xee\
-\x25\x75\x3b\xa8\x5c\xb8\x70\xb1\x48\x4f\x9f\x79\xe6\x8f\x7f\xdc\
-\xf0\x6e\xd3\x87\xbb\xb4\x17\xc0\x09\x66\x9e\x8e\xe0\xba\x1c\x36\
-\x15\x98\x19\xdf\x7d\x77\x81\x98\x83\x46\x33\x33\x49\xd9\x64\xea\
-\x37\x68\x3f\x59\xc5\xc7\x77\xa4\xd4\xd4\xe1\x37\x1d\x0e\x0d\xba\
-\xee\x42\x20\x10\x80\x10\x02\x42\x10\xaa\xab\x6b\x70\xf3\x66\x21\
-\x6e\x95\xd3\x4a\x29\x4a\x48\x88\x57\x6e\x77\xc4\xc6\x9a\x9a\xda\
-\xe1\x00\x46\x03\xf0\x13\xd1\xb7\x00\x76\x39\x1c\xda\x9e\x1e\x3d\
-\xba\xe7\x9e\x3e\x9d\x6d\xba\xdd\x11\xbb\x0c\x23\xf0\x34\x33\xff\
-\x06\x61\xca\x0f\x22\x8a\xd9\xb7\xef\x33\x8d\x88\x2a\x10\xec\xf2\
-\xda\x17\x15\x15\xbb\xfa\xf6\xed\x55\x5d\x51\xe1\x6d\xb6\x14\x67\
-\x66\xce\xce\x3e\x17\xae\xdf\xe6\xfa\xf7\x03\x0c\x40\xa4\xa4\x74\
-\xb7\xdf\x7f\x7f\x4b\x27\xc3\x30\x86\x10\x09\xaf\xcb\xa5\x1f\x9b\
-\x3d\xfb\x99\xf2\xb2\xb2\x52\x14\x16\x16\x0b\xd3\x34\x11\x19\xe9\
-\xe1\x5d\xbb\x3e\xb5\xef\xe2\x82\xe3\x9c\xc7\xe3\x1e\x65\x9a\x66\
-\x64\x20\x60\x1e\x02\x20\x35\x4d\x4b\xfd\xf0\xc3\xf5\x39\xeb\xd6\
-\x6d\x10\xe1\xc0\xa3\x99\xb2\x24\x44\x4a\x26\x27\x27\xd5\xc5\x94\
-\x00\x70\x59\x59\x99\x4c\x4b\x4b\xf5\x1e\x3d\x7a\x2c\xdb\xb6\x6b\
-\x2f\xb4\x6b\x77\x9f\x91\x9f\x7f\x89\x2a\x2b\xab\x84\x52\xc1\xf4\
-\x0f\x04\x4c\xba\x78\xf1\x92\x92\x52\xc4\x31\xf3\x94\x30\xa9\xe4\
-\xb2\x6d\x7b\x5f\x97\x2e\x9d\xcf\x96\x97\x57\x0c\x03\xf0\x20\xc0\
-\xb9\xdb\xb6\xed\x3c\x9a\x9c\x9c\xd4\xf0\xde\xb7\xa5\xe0\x6f\x5d\
-\xf2\xa9\x86\x42\x72\x72\xce\x8b\xb4\xb4\x91\xe2\xcb\x2f\xbf\x96\
-\x25\x25\xa5\x8d\x1e\x7f\x33\x2b\x02\xe8\x3a\x80\x9a\x30\x4a\xa2\
-\x98\x79\x54\x5e\xde\x45\x43\x08\xb1\x13\x80\x52\x8a\x67\xb8\xdd\
-\x11\x9d\x17\x2e\xfc\x9d\x8d\xef\xbb\xc1\x56\x81\x47\x68\x19\x6d\
-\x95\x90\x6d\xdb\xde\x83\xc3\xa1\x15\xa3\x99\x43\x31\x66\x9e\xe4\
-\x72\xe9\x89\x6e\xb7\x3b\x13\xc1\x4d\xe8\x01\xbf\xdf\xff\xd2\x8c\
-\x19\x73\x22\xfa\xf7\xef\x63\x33\x73\xab\xc1\x23\x74\x2a\x51\x37\
-\x07\x5a\x24\x24\x3f\xff\xb2\xb8\x70\xe1\x92\xb2\x2c\x73\x0a\xc2\
-\x9f\x75\x76\x50\x4a\x15\x19\x86\xb1\x5f\xd3\xb4\x02\x66\x1e\x03\
-\xe0\xe1\xca\xca\x2a\x75\xfe\x7c\x5e\xd6\xd2\xa5\xaf\xfa\x8f\x1f\
-\xff\x56\x70\xb0\x8c\x6d\x09\x78\x81\xd0\x1c\x68\x98\x8b\x77\x25\
-\xc4\xb6\x2d\x96\x52\xda\x45\x45\xc5\x43\x01\xf4\x0b\x33\x9e\x00\
-\x74\xd7\x75\xfd\xff\xd6\xad\x5b\xf9\x4d\x66\xe6\x3e\x2f\x33\x8f\
-\x04\x90\xea\xf3\xf9\x3a\xef\xd8\xf1\xc9\x05\xb7\xdb\x53\xf4\x8f\
-\x7f\x1c\x55\x97\x2f\xe7\x71\x5c\x5c\x1c\x4a\x4a\x4a\x60\xdb\xf6\
-\x5d\x1d\xd7\xd4\x6f\x07\x5b\xe4\x01\xd3\xb4\xc4\xea\xd5\xcb\x03\
-\x69\x69\x93\xde\x36\x4d\x2b\x1e\xc1\xc3\xda\x3b\x6e\xd2\x11\xfc\
-\x4c\xe2\x06\x33\xdb\x9a\xa6\x51\x62\x62\xc2\xc6\xeb\xd7\x0b\x0c\
-\xa5\xd4\x22\x00\xbf\x0a\x04\xcc\x91\xa7\x4e\xfd\x33\x53\xd3\xb4\
-\x03\x52\x8a\x8b\x42\x08\x6f\x54\x54\x54\xd1\x43\x0f\x3d\x68\x18\
-\x86\x11\x0e\xbc\x00\x60\x53\xe8\x6b\x15\x42\xd3\x11\xe0\x46\x80\
-\xdd\x12\x12\x1b\xdb\xce\xde\xb7\xef\xb3\xe8\xda\x5a\x5f\x5b\x22\
-\xa2\xe0\x57\x29\xa1\x3f\x32\x98\x88\x84\x10\x54\x35\x70\xe0\x80\
-\x72\x5d\xd7\x95\x94\x92\xbc\xde\x4a\x95\x95\xf5\xed\x40\xd3\xb4\
-\xe6\x23\xd8\x52\xb6\xc1\xf7\x17\x23\x3e\x22\x7a\x3b\x3d\x7d\xe6\
-\x8a\xbc\xbc\xfc\xfa\xa9\xd5\x10\xbc\x02\x82\xe7\x2f\xf5\x3f\x71\
-\xa9\xcf\xeb\xff\xb1\xe1\x18\xbb\x8e\x97\x94\x94\xd2\xa4\x49\x13\
-\xbc\x7d\xfa\xf4\xf4\xba\xdd\x6e\xd4\xd6\xd6\xc2\xe9\x74\xc2\x34\
-\x2d\x08\x21\xe0\x70\x68\x38\x78\xf0\x30\x55\x56\x56\xc1\xb6\x6d\
-\xb2\x2c\x4b\x45\x46\x7a\x68\xed\xda\x37\xbf\x79\xe5\x95\x85\xb3\
-\xbc\xde\xca\x21\xcc\x3c\x15\xc0\x30\x00\x49\x00\xb7\x63\x46\x4c\
-\xff\xfe\x7d\x39\x2f\x2f\x5f\x35\xa5\xb7\xee\xf9\xff\x03\x78\x8c\
-\x5f\x99\x77\x2f\x9e\x77\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\
-\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x37\x2d\x31\
-\x30\x2d\x31\x33\x54\x32\x33\x3a\x34\x33\x3a\x30\x33\x2b\x30\x38\
-\x3a\x30\x30\x27\xbf\x77\xe8\x00\x00\x00\x25\x74\x45\x58\x74\x64\
-\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x37\x2d\
-\x31\x30\x2d\x31\x33\x54\x32\x33\x3a\x34\x32\x3a\x35\x30\x2b\x30\
-\x38\x3a\x30\x30\xc0\x28\xb0\x93\x00\x00\x00\x00\x49\x45\x4e\x44\
-\xae\x42\x60\x82\
-\x00\x00\x09\x4d\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x09\x02\x49\x44\x41\x54\x68\x81\xed\x9a\x7b\x54\
-\x93\xf7\x19\xc7\x3f\x6f\x02\x04\x84\x70\xf1\x08\x82\x17\x44\x10\
-\xc1\x8a\xab\xb4\x38\xb1\xd5\xf5\x88\x99\x52\x56\x95\x7a\xc6\x2c\
-\x9d\xb5\x30\xd6\x33\xa7\xa7\xdd\xe9\x6d\x2d\x3b\x6e\x6d\x57\xb7\
-\xb5\xb5\xad\xae\xb6\xdb\xa9\xb6\xd4\x56\x5d\xab\x5d\x77\x4a\x71\
-\x30\x10\x5b\x6a\x5b\xea\x44\x04\x05\xa3\xf5\x16\xa1\x48\x02\x28\
-\x97\x24\xe4\x9e\xbc\xfb\x83\x06\xd3\x98\x40\x02\xa8\xff\xec\x39\
-\x27\xe7\x79\x79\xf3\xfb\x3d\xf9\x7c\x7f\xcf\xf3\xbb\xbc\x09\xf0\
-\x7f\xbb\xb9\x26\x78\xba\xa9\x50\x28\x12\x81\x6d\x52\xa9\xf4\x4e\
-\x41\x10\x22\x6e\x30\x93\xbb\xd9\xec\x76\xfb\x29\x51\x14\x37\x55\
-\x57\x57\xef\x1b\xb6\xb5\x42\xa1\x88\xc8\xcb\xcb\xeb\xac\xab\xab\
-\x13\x4d\x26\x93\x38\x52\x73\x38\x1c\x63\xf2\x32\x1a\x8d\x62\x5d\
-\x5d\x9d\x98\x97\x97\x27\x2e\x5c\xb8\xf0\x01\x77\xde\x00\xf7\x1b\
-\xfd\xfd\xfd\x6b\x36\x6c\xd8\x10\x9d\x91\x91\x81\x28\x8a\x38\x1c\
-\x0e\x00\x44\x51\xfc\x9e\xf7\x74\x6f\x24\xde\x97\x78\xb3\x67\xcf\
-\x26\x3f\x3f\x9f\x2d\x5b\xb6\x3c\x01\xfc\x03\xb0\x3b\xfb\x48\xdc\
-\x05\x88\xa2\x78\x4b\x42\x42\xc2\xf7\x82\x7b\x83\x77\x58\xad\xf4\
-\x2a\x95\x58\xf5\xfa\xeb\x06\x2f\x8a\x22\x16\x8b\x85\xe9\xd3\xa7\
-\x23\x08\xc2\x14\x20\xdc\x95\xd7\x93\x00\xe9\x50\x01\x9d\xd7\xa7\
-\xb7\x6f\xe7\xc3\x19\x33\xa8\x5c\xba\x98\x0a\x85\x82\x2b\x97\x2e\
-\x5d\x17\x78\x37\x36\x80\x60\xd7\x7b\xd7\x94\xd0\x50\x81\x01\x1c\
-\x76\x3b\x5f\xad\x5b\x87\x55\xd5\xc8\xfd\x7f\x9e\x87\xc4\x78\x86\
-\xb6\xb4\x55\x1c\x2e\x28\x20\x63\xe7\x4e\xa2\xe3\xe2\xc6\x14\xde\
-\x53\x5b\x57\xbb\x26\x03\xce\x9a\xf7\x26\xa8\xae\xb8\x98\x10\x73\
-\x2b\x4b\x57\x9a\x90\x98\xcf\x72\x79\xee\x1a\xda\x02\x57\xb0\xf8\
-\xd5\x1f\xd1\xf8\xd8\x63\xf4\xf6\xf4\x8c\x39\xbc\xd3\xbb\xb3\x79\
-\x15\xe0\x4d\x7d\xf7\x89\x13\xa8\x76\x95\x90\xb9\x48\x0f\x61\x12\
-\xfa\xa6\xcc\x42\x1f\xbb\x86\x84\xf8\xf1\x84\x4b\x0e\x90\xf5\xdb\
-\x78\xea\x37\x6e\x44\xef\x65\x4e\x8c\x76\x01\xf0\x49\x80\xfb\x07\
-\xb8\x5e\xb7\x56\x56\x92\x56\xa0\xa0\x3f\xc4\x41\x73\xf4\x22\xbe\
-\x74\x6c\xa0\x5d\x7d\x85\x28\xe1\x6b\xa4\x53\x1e\x22\x2c\xa4\x9a\
-\xdb\x73\x64\x1c\xdb\xbc\x19\xa3\xd1\x38\xa6\xf0\xde\xcc\xd3\x24\
-\xf6\xfa\x61\x53\x72\x73\xf9\x66\x7f\x23\xff\x11\x57\x52\xdf\x97\
-\x4b\x88\xb4\x83\x59\x92\x42\x64\xda\xd7\x41\x10\x61\xf2\x23\xc4\
-\x25\x1f\x62\xf2\xf8\x16\x1a\x76\xec\xc0\x62\xb1\x8c\x19\xbc\xcf\
-\x19\x70\x6d\xe4\x1e\x64\x7c\x52\x12\xb7\xfe\x6d\x07\x92\xb7\x3f\
-\x64\x55\xda\x46\xb2\x26\xdd\x4f\x94\xec\x04\xf4\x1f\x82\xde\x8f\
-\x40\x12\x0c\xb1\x45\xcc\x59\x7e\x86\x30\xf5\x67\x34\xec\xd9\x83\
-\xd5\x6a\x1d\x13\x78\x77\xb6\x61\x05\x78\x0b\x92\xb0\x60\x01\xd3\
-\x1f\x7f\x96\x23\x2f\x06\x22\x4a\x62\x41\xca\xc0\xab\xbf\x0a\xb4\
-\xa5\x10\x18\x0d\x13\x56\xb3\x60\xbd\x16\x73\xd5\x4e\x4e\x94\x96\
-\x62\xb7\xdb\x47\x0d\xef\x7e\xed\x55\xc0\x50\x1b\x98\xd3\xa7\x64\
-\x67\x33\x4e\x51\xc8\xb1\x0f\xe7\xe3\x10\xc6\x0f\x08\x90\x88\xd0\
-\x5f\x06\xba\x2a\x08\x8a\x87\xf0\x65\xe4\xbc\x22\xa7\x6b\xc7\xcb\
-\x28\x6b\x6a\x7c\x8a\x3b\xdc\xea\x65\xb7\x0f\x6e\xc0\xde\x05\x0c\
-\x97\x01\xa7\xbf\x75\xcd\x1a\x74\xf2\x3b\xb8\xd8\x90\x8b\x28\x91\
-\x0f\x88\x10\xec\xa0\xdb\x0b\x86\x1a\x18\x37\x0b\x42\x6f\x27\x6f\
-\xd7\x74\x2e\x3c\x53\xcc\xd9\xfa\xfa\x11\xc3\xbb\x0e\xee\xb0\x02\
-\xfc\x09\x9a\xb1\x7e\x3d\xe7\x1a\x23\x38\x7f\x64\x05\xa2\x24\xe2\
-\xbb\x4c\x58\x41\xbb\x1b\x8c\x5f\x42\xd8\x7c\x08\x9e\xca\x9a\x4f\
-\x32\x38\xf1\xf0\xc3\xb4\x7e\xf3\xcd\xa8\xe0\xfd\xda\xc8\x7c\x09\
-\x2e\x08\x02\x99\xcf\x3e\xcb\xa9\xcf\x03\xd1\xb4\xfc\x1c\xd1\x18\
-\x04\x36\x40\x30\x41\xdf\x7b\x60\xaa\x87\xb0\xc5\x08\x52\x28\xd8\
-\x7f\x17\x8d\x8f\x3e\x8a\xa6\xad\x6d\xc4\x22\x7c\x9a\xc4\xfe\xd6\
-\xaa\x44\x22\x61\xc1\x4b\x2f\x51\xfb\x7a\x0b\x5a\xd3\x3a\xd0\x49\
-\x41\x07\x98\x74\xd0\xf3\x16\x58\x9a\x20\x62\x05\xd2\x40\x35\xab\
-\xdf\xce\xa0\xa1\xb8\x98\xcb\x5d\x5d\x7e\x8b\x18\xd1\x32\xea\x6b\
-\xf0\x20\x99\x8c\x3b\xdf\x7c\x93\xf2\xe2\x46\x8c\x21\xeb\x07\x04\
-\x68\x81\xde\x6e\x50\x97\x80\xf1\x0c\x44\xe4\x23\x1b\xa7\xe4\xee\
-\xdf\x25\xd3\xf0\xdc\x73\x68\xb5\x5a\xbf\x44\xb8\x5f\xfb\x24\xc0\
-\xd7\x91\x01\x18\x27\x97\x73\xc7\xf6\xed\xec\x2b\xa8\xc1\x1a\xfe\
-\xcb\xab\x22\xba\xdb\xa1\xad\x04\xfa\x5b\x21\xbc\x88\xa8\xb8\x7a\
-\xee\xfc\x59\x14\x0d\xaf\xbd\x86\xc1\x60\xf0\x4b\x84\x5f\xcb\xa8\
-\x3f\xf0\xce\xbf\x23\x63\x63\x59\x50\x52\xc2\xae\xb5\x87\xb0\x44\
-\xe4\x5f\x15\xd1\xa9\x82\x96\x12\x30\x74\x80\xfc\x21\xa6\xa4\xd6\
-\x33\x73\x5a\x0f\x8d\x25\x25\x98\xcd\x66\x9f\xe1\xfd\x3a\x0b\xf9\
-\x0b\xef\xf4\x31\x33\x66\x90\xbe\xe5\xaf\x7c\xb0\xa1\x0e\x7b\x48\
-\xd6\x80\x08\x1d\xa0\x39\x0d\xaa\x3d\x60\xd4\x43\xc4\x43\xa4\x2d\
-\xb9\x80\xd0\xfc\x29\xcd\x07\x0f\x62\xb1\x58\x7c\x16\x31\xac\x00\
-\xe7\x69\x74\x24\xf0\x4e\x9f\x30\x7f\x3e\x33\x7f\xff\x17\xca\xb6\
-\x6a\xb1\xc9\x32\xaf\x66\xa2\xed\x28\xa8\xf6\x82\x55\x80\x88\x7c\
-\x32\x73\x17\xd2\x59\x56\x46\x5b\x5b\x9b\x4f\xf0\x7e\x6d\x64\x23\
-\x85\x77\xfa\x99\x59\x59\x44\xe6\x16\xf2\xd9\x47\x21\x38\x82\x52\
-\xae\x8a\x38\x7f\x08\x2e\x7c\x0c\xd6\x60\x82\xa6\xdf\x4e\x47\x4d\
-\x0d\xad\x2a\x95\x5f\xc7\x8d\x21\x05\x8c\x66\xe4\xdd\xfd\x9c\xd5\
-\xab\xb1\xcf\x5d\xc6\xd1\xa6\x74\xec\x21\xf1\x60\x06\xf4\x22\xf4\
-\x3b\xb0\x7d\xeb\x20\x78\xce\x5c\xa2\x6f\x49\xc6\x72\xfa\x34\x7d\
-\x7d\x7d\xc3\x42\xfb\x55\x42\xa3\x85\x77\xfa\x8c\xa2\x22\xd4\x8e\
-\xc9\x5c\xd0\xe5\xc0\xd4\x1c\xc4\x99\x4f\xa3\x0f\xcd\xc1\x38\x73\
-\x16\x0e\xbb\x85\x5b\xf2\x96\x63\x6d\x6a\x42\xa3\xd1\x8c\xed\x3e\
-\x30\x16\xf0\x4e\x9f\xf9\xe4\x93\x34\x36\xdb\x78\xf1\xfe\x83\xec\
-\xd9\x5c\x41\xbb\x4e\x8b\xcd\x70\x19\x9b\xb1\x9b\xbe\x94\x44\xba\
-\x8e\xd5\xa3\x51\xab\xbd\x0e\x9e\x3b\x9b\xab\x5d\xf3\x50\x3f\xd6\
-\xf0\x00\x82\x20\xb0\xe8\xf9\xe7\x09\x5b\xb6\x8c\xcb\xe5\xe5\x7c\
-\x5c\xb8\x99\x98\xb4\x78\xc8\xfd\x31\x8f\xfc\xab\x96\x5f\xa4\x26\
-\x31\xf1\xdc\x39\x74\xb7\xdd\x46\x78\x78\xb8\xd7\xf2\xf1\x54\x42\
-\xd7\x08\x70\xcd\xc0\x58\xc0\xbb\x8a\xb8\x6d\xd1\x22\xf4\xe9\xe9\
-\x9c\xbb\xf7\x5e\x3a\x2b\x2b\x51\x6f\xd9\x4b\x7e\xca\x54\x34\x61\
-\x21\xd8\x95\x4a\x3a\x3a\x3a\x90\xcb\xe5\x1e\xfb\xbb\x5f\x7b\x15\
-\xe0\x49\xe9\x68\xe1\x5d\x7d\x68\x68\x28\x3f\xc8\xc8\xc0\x94\x96\
-\xc6\xc5\x95\x2b\x99\x54\x51\x41\x47\x69\x29\x97\xcd\x66\x64\x2b\
-\x56\x90\x98\x98\x88\x20\x08\xd7\xf4\xf3\x36\x07\x9c\x02\x96\x00\
-\x49\x00\x3a\x9d\x6e\x56\x69\x69\x29\xf5\xf5\xf5\x1e\xf7\x03\x6f\
-\xa3\xe1\x6f\xbb\x79\xf3\xe6\x91\x32\x7b\x36\xf1\x89\x89\xa8\x72\
-\x72\xb8\x74\xe4\x08\x66\xbd\x1e\xbd\x5e\x8f\x5c\x2e\xf7\x2f\x03\
-\xf1\xf1\xf1\xc5\x45\x45\x45\x77\xc5\xc4\xc4\x88\x0e\x87\x43\x2a\
-\x95\x4a\x07\x47\xc1\x5b\xc7\xd1\x58\x6d\x6d\x2d\x36\x9b\x8d\xe4\
-\xe4\x64\x82\x83\x83\x49\x4d\x4d\x25\x29\x29\x89\xde\xde\x5e\x82\
-\x83\x83\xbd\x66\xd0\xd3\x46\x16\x00\x20\x08\x82\x90\x9f\x9f\x1f\
-\x90\x9c\x9c\x3c\xf8\x46\xc7\xc9\x46\x9a\x5b\xd5\x04\x8d\x8f\x25\
-\x29\xfd\x56\x26\x05\x0d\x79\xea\xf0\xcb\x02\x03\x03\xd1\x68\x34\
-\xdf\x83\x0b\x08\x08\x60\xc2\x84\x09\x43\x96\x9f\x5f\x67\x21\x73\
-\xe7\xbf\x51\xe4\xe4\x50\x7a\xbe\x13\xb9\xf4\xbb\x9a\xb4\xf7\x71\
-\xf8\x9c\x76\xb0\xcd\xc5\xa3\x27\xe9\xeb\xfd\x96\x4f\x2b\x3f\xe5\
-\x4c\xef\xc0\x79\xc6\x66\xd0\xf0\x79\x79\x19\x15\x07\x6a\x38\xda\
-\xd8\x44\xf3\x89\xa3\x54\x57\x7e\x81\x5a\x6f\x1b\x88\xdb\xd3\xca\
-\xa9\xe3\x8d\x28\x95\x4a\xaa\x3f\x3f\xeb\x15\xd6\x93\xf7\x64\x5e\
-\x05\xc8\x42\x1b\x91\x04\x44\xf2\xc7\xfb\x96\x0e\x0a\xd8\xff\xf0\
-\x3d\xfc\x64\xf9\x07\x83\x6d\xfa\x9a\x7e\xcd\xf8\xe8\x39\x68\x8e\
-\x3c\xc1\xdc\xe4\xd5\x00\x34\xec\xfe\x29\x59\x2b\xee\xe3\x6c\xc3\
-\xd7\x3c\x7d\x77\x36\xbd\xb5\xbf\x61\xd9\xf2\x5c\x8e\x2b\x3b\xd1\
-\xb5\x6c\x67\x72\x6c\x2a\x5a\x6c\x5c\xfc\xba\x8c\x5f\xad\xff\x83\
-\x5f\x0b\x80\x5f\x19\x50\xbd\xab\x24\x74\x62\x21\xe3\x24\x03\xf0\
-\xbd\xa7\xdf\xa0\xe8\x58\x02\x01\x5d\xef\x0f\xb6\x31\x1f\xef\x41\
-\x1a\x18\xc3\x3f\xf7\x99\x79\x6a\xdb\x0b\x00\xd8\x9b\x7a\x70\xd8\
-\x0d\x6c\xdc\x76\x85\x2a\xd5\x45\x02\x9a\x7b\x09\x9d\x58\x48\xf6\
-\x0f\x27\x61\xed\x57\xa3\xb7\x99\xf8\xef\x29\x2d\x77\x3d\xb0\x8e\
-\xea\x8a\xad\x3e\xc3\x83\x8f\x8f\x94\x4e\xab\xa9\xb8\x44\x74\xe6\
-\xf2\x81\x8e\xb6\x4e\xa2\x67\x9d\xa5\xf3\xf0\x2e\x9e\x8a\x38\x4e\
-\x8b\x79\x60\x32\x7d\xb9\xbf\x8d\xa9\x39\x6f\x32\xb9\xbb\x95\xd2\
-\xd3\x03\x0f\x27\x5f\x94\xb7\x33\x6e\xc2\x2a\x9e\x2a\x2e\xa4\xba\
-\xa2\x8c\x67\xde\x50\x12\xb3\xe0\x1e\x40\x64\xfb\xbe\xf9\xa8\xbe\
-\xda\x4d\x5b\xcd\xfb\xbc\x57\x67\x62\xda\x94\x68\xbf\xca\xc7\xa7\
-\x7d\x00\xe0\xe8\x2b\x8f\xf2\x6a\x9b\x1e\x71\xc2\x56\x0a\x0a\x76\
-\xf2\xee\xbb\xef\x41\xd2\x3b\x98\xba\x3f\xa1\xbc\xdb\xc8\xe1\xb7\
-\xce\xb0\x25\xa9\x9c\x17\x5a\x75\x48\xa7\xbe\xc6\x91\x99\x4b\xf8\
-\xd3\xba\x14\x2e\x55\xbe\xcc\x4b\xdf\xea\x08\x9b\x67\xe5\xb3\x9d\
-\xcb\xd8\x58\x77\x09\x80\xb8\x2b\x6f\xb1\x76\xf9\xe3\xec\xda\x7f\
-\x0c\x75\xdf\x23\x84\x4f\x4d\x25\x33\x2d\xd2\x6f\x78\x4f\x19\x10\
-\x00\xa6\x4d\x9b\x76\xf0\xc0\x81\x03\x59\xae\xab\xd0\xf5\xb4\x92\
-\x92\x12\xda\xdb\xdb\x59\xbb\x76\xad\x4f\x22\x64\x32\x19\x2a\x95\
-\x8a\xec\xec\xec\x6e\x83\xc1\x90\x06\xa8\x9d\xb1\x06\x33\x50\x5b\
-\x5b\x4b\x4b\x4b\xcb\x0d\x11\xa0\x54\x2a\x89\x8c\xf4\x3d\x03\xce\
-\x0d\xd5\x6b\x09\x19\x0c\x86\xdd\x9b\x36\x6d\x6a\x01\x30\x99\x4c\
-\x77\x28\x14\x8a\x94\xa8\xa8\xa8\x21\xeb\xcf\xdb\xd2\xe6\x6b\xbb\
-\xb4\xb4\x34\x9f\xe1\x9d\xe6\x75\x23\xeb\xea\xea\x7a\xa7\xab\xab\
-\xeb\x1d\x00\xa9\x54\xfa\xf7\x07\x1f\x7c\x30\x25\x3d\x3d\x7d\xf0\
-\x9b\xe5\xb1\x3c\x0b\x8d\xd4\x3b\x1c\x0e\x9f\xbf\xd8\x3a\x7f\xf2\
-\xe4\x49\x02\x03\x03\x6f\x3a\xb4\xd3\x87\x85\x85\xd1\xd4\xd4\x04\
-\xd0\x81\xcb\x4f\xac\xde\x6c\x62\x5c\x5c\x5c\x67\x55\x55\x95\x68\
-\xb5\x5a\xc5\x9b\x6d\x56\xab\x55\xac\xac\xac\x14\x63\x62\x62\x1c\
-\x12\x89\xe4\x79\x20\xcc\x15\xd6\xe3\xbf\x1a\x00\x39\xc0\x8b\xc0\
-\x34\xbc\x2c\xb5\x37\xd8\xae\x00\xfb\x81\x6d\x80\xd2\xf5\x0d\x6f\
-\x02\x00\x22\x81\x14\x40\x76\xfd\xb8\x7c\x36\x3d\xd0\xce\x40\x09\
-\x8d\xed\xd1\xf8\x66\xdb\xff\x00\x0b\x62\x0d\xcf\xef\xd6\x72\x27\
-\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x07\xe2\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
-\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
-\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
-\x79\x71\xc9\x65\x3c\x00\x00\x07\x74\x49\x44\x41\x54\x78\xda\xd5\
-\x59\x69\x4c\x54\x57\x18\x35\x21\xe2\x8a\xfc\x20\x10\x11\xca\xa8\
-\xd8\x61\x70\x60\x06\x4a\x91\xaa\x58\x94\x68\x54\xa4\x2e\x35\x26\
-\x60\x63\xa8\x68\x30\x06\xe2\xb8\x47\x62\x0d\xee\x8a\x8e\xe2\x86\
-\xbb\x8e\xbb\xb8\xa2\xe3\x2e\x28\x6e\xe3\x8a\x8e\xbb\xb8\x27\x28\
-\x7f\xc4\xa4\x09\x86\x5f\xfe\x38\xbd\xe7\xbe\xe2\x65\x22\x10\x41\
-\x68\x99\x97\x7c\x2c\x61\xde\x7b\xe7\x7c\xdf\xf9\xce\xfd\xee\xa5\
-\x05\x80\x16\x8d\x75\xf5\x8a\x8a\xf2\x16\x61\x13\x51\x24\x22\xa5\
-\x45\x13\x5f\x00\xe4\x97\xc6\x02\x6f\xee\x63\x36\xbf\x1d\xd3\xa6\
-\x0d\x2c\x9e\x9e\x18\xa0\xd7\xe3\x07\x7f\x7f\x9d\x3b\x10\x20\x78\
-\x0b\x01\x67\xb4\x6d\x0b\xc7\xd0\xa1\xb0\xf7\xe8\x81\xe1\xfe\xfe\
-\xe8\xa6\xd3\xa5\x35\x5f\x02\x4a\x32\xf9\x04\x9b\xd9\xa1\x03\x4a\
-\x4f\x9e\x04\x4e\x9f\x76\x03\x02\x4a\x32\xce\x3f\xda\xb7\x47\x6e\
-\x74\x34\x2a\x5f\xbf\x06\x00\xf7\x20\xc0\x06\x8d\x37\x18\xfe\xfe\
-\x53\x68\xbd\x30\x3d\x1d\xa8\xa8\x00\x3e\x7f\xd6\x42\x54\xa1\x99\
-\x12\x50\x2e\xf3\x5b\x60\x20\x2c\xad\x5a\xa1\x74\xff\x7e\xe0\xd3\
-\x27\xd7\x38\x76\xac\x59\x12\x20\x78\x1d\x25\x93\xe4\xed\x0d\xab\
-\x68\xd8\xca\x9b\x37\x81\x8f\x1f\x81\xf2\x72\x15\x1f\x3e\x00\x87\
-\x0f\x7f\x21\x10\xd1\xbd\xfb\x26\xde\xf7\x7f\x13\x20\xf8\x61\x94\
-\x0c\x2d\xd2\x9e\x9c\x0c\xbc\x79\x03\x94\x95\x01\xef\xdf\x6b\xf1\
-\xee\x9d\x16\xa5\xa5\x40\x5e\x9e\x24\x40\x79\xfd\xee\xe7\x87\x04\
-\x9d\x0e\x24\x2e\x9e\x91\x45\x32\xff\x35\x01\x82\xcf\x21\x88\x8c\
-\x76\xed\x50\xb2\x6a\x95\x06\x9e\x0d\xcb\x78\xf5\x4a\x8b\x97\x2f\
-\x81\x17\x2f\xb4\x78\xfe\x1c\x28\x29\x41\x69\x7e\x3e\x1c\x8b\x16\
-\xc1\x36\x68\x10\x2c\x5e\x5e\x60\xe5\x06\x06\x07\x83\xae\x25\x22\
-\xae\x89\x09\x28\xc9\x8c\xf2\xf1\xc1\xfc\xa0\x20\x94\x9f\x38\x21\
-\x81\xe1\xd9\x33\xe0\xe9\x53\x2d\x9e\x3c\x01\x1e\x3f\x06\x1e\x3d\
-\x02\x1e\x3e\xd4\xe2\xc1\x03\xe0\xfe\x7d\xc0\xe9\x04\xee\xdd\xd3\
-\xe2\xee\x5d\x38\x17\x2e\x84\xd5\x68\x64\x65\x64\x55\xd8\x4b\x7c\
-\x47\x93\x10\x60\x86\xe2\xc2\xc2\xa4\x64\xf2\x12\x12\x80\x5b\xb7\
-\x6a\x04\x47\x60\x28\x2e\x06\xee\xdc\x01\x6e\xdf\xd6\x3e\xc7\xde\
-\xb8\x71\x03\xb8\x7e\x5d\x0b\x87\x03\xb8\x76\x0d\xb8\x7a\x15\xb8\
-\x72\x45\x56\xd1\xda\xb5\x2b\x68\xbf\x94\x25\x1d\xad\x51\x09\x50\
-\xab\x2c\x75\x86\x78\x81\x73\xce\x9c\xda\x40\xd6\x08\x0e\x97\x2f\
-\x03\x97\x2e\x01\x45\x45\xc0\xc5\x8b\xc0\x85\x0b\x40\x61\x21\x70\
-\xfe\xbc\x16\x67\xcf\x02\x67\xce\xc8\xb5\xc2\x39\x71\x22\x2c\x2d\
-\x5b\x82\x8e\xc6\x6a\x7c\x1f\x01\x65\x91\x45\x6c\x3c\x4a\xa6\x74\
-\xeb\xd6\x9a\x80\xd6\x0c\xb2\xa0\x40\x03\x78\xee\x9c\x02\x79\xea\
-\x94\x5c\x13\x40\xe9\xd9\xed\xd2\x5e\x21\xfa\x02\x47\x8f\x02\x47\
-\x8e\x00\x87\x0e\xa1\x72\xdd\x3a\x58\x85\x5b\x51\xa6\x94\x2b\x31\
-\x34\x88\x00\xb5\x18\x6b\x36\x4b\xc9\xd8\xfa\xf4\x41\xe5\xf1\xe3\
-\x35\x81\x65\x36\x6b\x07\x4a\x90\xbc\x8f\x40\x35\x90\xd2\x52\x71\
-\xf0\x20\x70\xe0\x80\x74\x27\xec\xdb\x07\xec\xdd\x0b\xec\xde\x0d\
-\xec\xda\x05\xec\xdc\x09\x6c\xde\x0c\x9b\xe8\x0d\xbe\x5b\x91\xa8\
-\x3f\x01\x0b\x5d\xa2\xd0\x62\xd1\x40\xec\xd9\x43\x70\x5a\x66\x5d\
-\xc1\x32\xa3\x0a\xac\x96\x51\x02\x65\x46\xab\x03\xe5\x33\x14\xd0\
-\x1d\x3b\x80\xed\xdb\x81\x6d\xdb\x80\x2d\x5b\x24\x68\x6c\xdc\x08\
-\x6c\xd8\x00\xac\x5f\x0f\xe4\xe4\xc0\x11\x1b\xeb\x42\xa2\xbe\x04\
-\xe2\xe8\x0c\x16\xa1\xfb\x92\x4d\x9b\x98\x79\xbe\x80\x2f\xd4\xc0\
-\xa9\xcc\xba\x66\x95\x2b\xb1\x06\x56\x65\xd4\x66\xd3\xee\xa3\x04\
-\xab\x03\xcd\xcd\x05\xd6\xae\x05\xd6\xac\x01\x68\xc7\x2b\x57\x02\
-\x2b\x56\x00\xcb\x97\x03\xd9\xd9\x80\x70\xa9\x3c\xa3\x51\x36\x77\
-\x4c\x64\xe4\x29\x81\xcf\xa3\xbe\x3d\x90\xd2\xcf\x60\xa8\x90\xf3\
-\xcd\xd4\xa9\xd4\xbf\x06\xc8\x6a\xd5\x5e\x46\x62\xfc\x5d\x49\x40\
-\x65\x56\x03\xcb\xcf\xb8\x82\x5d\xbd\x5a\x81\xe5\x73\x96\x2d\x03\
-\x96\x2e\x05\x16\x2f\x06\xc4\x1a\x81\x05\x0b\x80\x79\xf3\x80\xac\
-\x2c\x80\x86\x21\xde\x6b\xeb\xd4\x09\xec\xc3\x68\xb3\x39\xbb\xde\
-\x2e\x24\x96\xfe\x9e\xbd\xc3\xc3\x9f\xc8\x09\x33\x2e\x0e\x95\xd4\
-\x3e\x25\x43\x00\x4b\x96\xf0\xa5\xcc\x14\x7f\x66\xf6\x08\x4e\x03\
-\x29\x9a\x51\x65\x56\x81\x65\x66\xf9\x59\xde\xf3\x15\xd8\xd9\xb3\
-\x81\x19\x33\x80\x49\x93\x80\x71\xe3\x00\xae\xf0\x62\x2f\x51\x19\
-\x1f\x8f\xf9\xe2\xfd\x74\x42\x81\x27\xb1\xde\x36\x1a\xda\xad\x9b\
-\x1f\x4b\x28\x67\x7c\x11\xa5\xcc\x38\x1b\x9a\x20\x49\x60\xfe\x7c\
-\x60\xee\x5c\x05\x62\xd6\x2c\x60\xe6\x4c\x60\xda\x34\xfe\xac\x81\
-\x62\x05\x27\x4f\xd6\xc0\x65\x64\x00\xc2\x32\x31\x61\x02\x30\x7e\
-\x3c\x90\x9a\xaa\x81\x1d\x35\x0a\x18\x39\x12\x18\x3e\x5c\x02\xc7\
-\x90\x21\xc0\xe0\xc1\xc0\xc0\x81\x28\x8d\x89\xc1\x38\x0f\x0f\xf4\
-\x36\x99\xca\x04\xa4\x36\x0d\x59\x89\x3d\xa2\x4d\xa6\x4c\xee\xb2\
-\xf8\x20\x07\xb3\x56\x5c\xcc\x06\xad\x9b\xc0\x94\x29\xb5\x83\x4e\
-\x49\x01\xc6\x8c\x01\x46\x8f\x06\x92\x92\xea\x24\x80\xfe\xfd\x61\
-\xef\xd2\x45\xda\x6b\x54\x78\x78\x4e\x83\x67\xa1\x70\x83\x21\x96\
-\x59\xa0\xa4\x6c\x89\x89\x94\x14\x5d\x89\xd2\xa8\x8b\x00\x6d\x95\
-\x84\x55\xd0\x04\xd8\x27\xd4\xfe\xd8\xb1\xdf\x44\xa0\x52\xd8\x79\
-\x66\xeb\xd6\x60\x5f\x76\xf4\xf5\xd5\x37\x80\x80\x92\xd4\x2f\x91\
-\x91\x0e\xb9\xc0\xe9\xf5\x94\x14\x47\x05\xda\x5f\xad\x04\x4a\x84\
-\x8c\xec\x69\x69\x55\x41\x67\x23\x79\x45\x88\xee\xc5\xcf\xd7\x41\
-\x00\xfd\xfa\xc1\x11\x12\x22\x5d\x29\xd2\x68\xcc\xa5\x2a\xbe\x67\
-\x3f\xe0\x41\x57\x90\x23\x86\xb7\xb7\xab\xa4\x58\x09\x57\x02\x1c\
-\xa7\x59\x7e\x39\x26\xb0\x97\xb8\xc6\x08\x77\x63\x02\xe8\x70\x8a\
-\x0c\x17\x3b\xca\xac\x16\x02\x10\x46\x92\xd9\xaa\x95\xaa\xc2\xf7\
-\xee\xc8\x7e\x0a\x0b\x1b\x1c\x67\x34\x56\xc8\x21\x8f\x8d\x48\x10\
-\x85\x85\x94\xc6\x57\x04\x08\xdc\x64\x30\x58\xb9\x2b\xe3\x77\xd1\
-\x53\x45\x04\x22\x2a\xc9\xbe\xa2\x24\x15\x11\x1a\x44\x2d\x04\x1c\
-\x82\x34\x93\x61\x0e\x0d\xcd\x66\x22\xbf\x7b\x4f\x2c\x00\xf9\xc7\
-\x44\x44\xdc\xe4\x43\x99\xd1\x72\xbb\x9d\x20\xb8\x0e\x28\x02\x5f\
-\x6f\x29\xdb\x8b\xf0\x11\xa1\x0b\x0b\x09\xf9\xab\xa7\xd1\x58\xcc\
-\xbf\xb3\x9a\xac\x08\xef\x97\x76\x3d\x62\xc4\x57\x04\x2a\x7b\xf6\
-\x84\x45\x39\x92\x4f\x63\x9d\x4a\x78\xf4\x30\x9b\x37\x71\xf5\x26\
-\x08\x27\x7d\x9f\x20\x38\x6a\x4c\x9f\xfe\x2d\x7b\x62\xef\xf0\x90\
-\x90\xb4\x5f\xbb\x77\x2f\x73\x59\x73\x0a\x0a\xe8\x56\x2e\x04\x20\
-\x9a\xd9\xa6\xed\xec\xd0\x35\x28\x68\x58\xa3\x9e\x0b\x09\x8b\x4b\
-\xa6\x2c\x28\x29\x36\x2b\x49\x70\x7a\xb5\x8b\x5d\x98\x22\x50\x77\
-\x35\x45\x6f\x1d\x66\xaf\xb0\x9a\x24\x21\xd7\x9c\xc4\x44\x17\x02\
-\x4e\x83\x41\xf6\x91\x90\xf0\x5e\x71\x9b\x67\xa3\x9e\xcc\x09\x49\
-\x84\x72\xf5\xa6\xa4\xac\x51\x51\x04\x41\x32\xb5\x11\xa8\x75\xcd\
-\x11\x19\x56\x24\x28\xcb\x84\x84\x2f\x04\xd0\xab\x57\x75\x19\xf9\
-\x35\xc5\xd9\xa8\x67\x8f\x88\x88\x3c\x66\x92\x03\x21\x89\x10\x90\
-\x2e\x20\x20\xf9\x5b\x1f\x20\xac\x3a\xd5\x85\x04\x67\x2a\x45\x00\
-\x36\x5f\x5f\xf9\xcc\x80\x8e\x1d\xe3\x1b\x99\x80\xba\x7e\x36\x99\
-\x26\x52\x52\x72\x97\x15\x1e\x5e\x42\x95\xd5\xf7\x8c\x95\x95\x63\
-\x4f\x48\x39\xa6\xa7\x7f\x21\xe0\x10\x16\xce\x2a\x1b\xf5\xfa\x2c\
-\x56\xad\x49\x08\xf0\xe2\x89\xf4\x8f\x9d\x3b\xa7\xfe\x0b\x5e\xd7\
-\x80\x53\x3f\x5b\x52\x95\x3b\xb1\x1f\x06\x0c\x90\x04\xca\x23\x22\
-\xb8\x5f\xe0\x68\x61\xa7\x09\x34\x11\x01\xa5\x6b\x0e\x61\x0d\x3d\
-\x30\xe6\x31\x3d\xdd\x8d\x16\xcd\xa9\x97\x04\x10\x13\xc3\x3e\xa8\
-\xaa\x6c\xa0\x0b\x81\x66\x76\x55\x6d\xb0\x94\x94\x84\x2b\x91\x80\
-\xd5\xcb\x8b\xff\x77\x20\x60\x7d\xf3\x25\xa0\x48\xe4\x53\x32\x9c\
-\xa3\xb8\x41\x22\x01\x7b\x40\x00\xd8\x5f\x34\x07\x77\x20\xa0\x63\
-\xb6\xe9\x68\xf2\xc8\xa6\x6f\x5f\x38\xc4\x88\xcd\x26\x37\x04\x07\
-\x4f\xa5\xf3\x35\x63\x02\xaa\xa1\x59\x05\x4e\xc0\x9c\x7a\x4b\x0c\
-\x06\x4e\xa7\xf2\xd0\x98\xe3\x89\x3b\x10\x30\xb3\x17\x38\xf8\xf1\
-\x50\xa1\xdc\x64\xaa\x4e\xc0\xaf\x79\x13\x50\x24\x9c\x9c\x5e\xe5\
-\xe2\x26\x46\x94\x34\x01\x59\xcc\x61\xc5\xe2\x4f\xfe\xee\x42\x20\
-\x85\x0b\x18\xf7\x20\xdc\x77\x54\x23\x10\xe8\x2e\x04\xbc\xb9\x91\
-\xa2\xa5\xf2\x0c\x2a\xd3\xd3\xb3\x8a\x80\xde\x0d\x08\x28\x4b\xad\
-\x92\x11\xd7\x02\x8e\xe1\xee\x46\xc0\x42\x19\x71\xdf\x41\x5b\xa5\
-\xbd\xba\x1b\x01\x1d\xdd\x88\xdb\x58\xb7\x24\xc0\xab\xaf\xd1\xf8\
-\x96\xa3\x76\x35\x02\x61\x6e\x45\x80\x7d\xc0\x93\x0d\xee\x37\x38\
-\xb2\x73\xda\x75\x37\x02\x66\xfe\xdb\x2b\x3e\x34\x54\xee\x09\xdc\
-\xab\x02\xea\x6a\x43\xe0\x22\xcc\x22\x7c\x88\xfd\x1f\xf9\x92\x41\
-\x48\x3f\x71\x1a\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
-\x82\
-\x00\x00\x04\x4e\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
-\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd2\x01\x07\x0b\x01\x15\x4b\x06\x3c\xc6\x00\x00\x03\xcb\x49\x44\
-\x41\x54\x78\xda\xb5\x96\xcf\x4b\x1c\x49\x14\xc7\x3f\x5d\xd3\x3d\
-\x62\xa2\xf8\x63\x8c\x60\x12\x33\x92\xbb\xae\x88\x17\x5b\x50\xc1\
-\x40\x18\x08\xe3\x06\x57\x84\xe0\x68\xbc\xcd\x25\x07\x73\x8a\xf9\
-\x07\x3c\xe9\x7f\x21\xa8\x43\x2e\xc1\x04\x8c\x27\x41\x4d\x34\xd9\
-\x55\x83\x10\x44\x44\x57\x34\x1e\x46\x3c\x98\x66\x7a\xba\xbb\xaa\
-\x7b\x0f\x71\x1a\x25\x8e\x2e\x8b\x5b\xf0\xa0\xba\xaa\x78\x9f\xf7\
-\xbe\xf5\xba\xaa\xe0\x7f\x6e\x5a\xb1\x89\x44\x22\x91\xcc\x66\xb3\
-\x7d\x8e\xe3\x98\x52\xca\x07\x4a\x29\x80\x7d\x60\xb9\xa2\xa2\x22\
-\xf3\xf9\xf3\xe7\xb7\xff\x09\x90\x4a\xa5\x5a\x36\x36\x36\x26\x84\
-\x10\x9d\xdd\xdd\xdd\x34\x35\x35\x11\x8b\xc5\xf0\x7d\x9f\x6c\x36\
-\xcb\xea\xea\x2a\x73\x73\x73\x48\x29\x17\xee\xdd\xbb\xf7\x72\x65\
-\x65\xe5\xaf\x7f\x0d\xe8\xea\xea\x4a\x1e\x1d\x1d\xbd\x31\x4d\x53\
-\xef\xed\xed\xa5\xb6\xb6\x16\xc3\x30\xd0\x34\x0d\xdf\xf7\xf1\x3c\
-\x8f\x7c\x3e\xcf\xf7\xef\xdf\x99\x9c\x9c\xe4\xe3\xc7\x8f\xb2\xb2\
-\xb2\xb2\x77\x67\x67\xa7\x68\x36\x91\x42\xa7\xa7\xa7\xa7\x65\x7b\
-\x7b\x7b\xfe\xe9\xd3\xa7\xfa\xd0\xd0\x10\x35\x35\x35\x94\x97\x97\
-\x53\x5d\x5d\x4d\x4d\x4d\x0d\x77\xee\xdc\x21\x16\x8b\x51\x56\x56\
-\x46\x59\x59\x19\x8d\x8d\x8d\xd8\xb6\x2d\xd6\xd7\xd7\xfb\xee\xdf\
-\xbf\xff\xee\xe4\xe4\xe4\xe8\x32\x80\x5e\xe8\x7c\xfd\xfa\x75\xc2\
-\x34\x4d\xbd\xbf\xbf\x9f\xd7\xaf\x5f\x63\x18\x06\x86\x61\x20\x84\
-\x60\x7a\x7a\x9a\x20\x08\xe8\xef\xef\x27\x08\x02\x82\x20\xc0\xf3\
-\x3c\x5e\xbd\x7a\xc5\xe1\xe1\xa1\xfe\xe5\xcb\x97\x09\xa0\xeb\x32\
-\x80\x00\x68\x6e\x6e\x4e\xfa\xbe\xdf\x39\x38\x38\xc8\xad\x5b\xb7\
-\x88\x46\xa3\x94\x94\x94\x20\x84\x40\xd3\x34\x84\x10\x61\x5f\xd3\
-\x7e\xaa\x1a\x89\x44\x78\xf8\xf0\x21\xe9\x74\x9a\x20\x08\x3a\xab\
-\xab\xab\x93\x45\x01\xd9\x6c\xb6\x2f\x99\x4c\x52\x57\x57\xc7\xed\
-\xdb\xb7\xd1\xf5\x9f\x89\x65\x32\x19\x32\x99\x4c\xe8\x78\x66\x66\
-\x86\xa9\xa9\xa9\xf0\x5b\x08\x41\x73\x73\x33\x89\x44\x02\xdb\xb6\
-\xfb\x8a\x02\x1c\xc7\x31\xdb\xdb\xdb\x89\x46\xa3\x94\x97\x97\x87\
-\x51\x06\x41\x70\x61\x71\x41\x9e\x0b\x55\xa2\x69\x3c\x7a\xf4\x08\
-\xa5\x94\x59\xb4\x8a\xaa\xaa\xaa\xbc\xd9\xd9\x59\xfd\xee\xdd\xbb\
-\x54\x56\x56\x12\x8d\x46\x89\x44\x22\x44\x22\x11\x84\x10\xa1\x73\
-\xdf\xf7\x51\x4a\xe1\x79\x5e\x58\x51\xb9\x5c\x8e\x83\x83\x03\x1e\
-\x3f\x7e\x2c\x5d\xd7\x35\x2e\xdd\x64\xa5\x14\x9a\xa6\xa1\xeb\x3a\
-\x4a\x29\xce\x7e\xaa\x5f\xb2\x28\xcc\x9d\x07\x49\x29\xf1\x3c\xef\
-\x97\xcc\x2e\x48\xa4\x94\xda\xdf\xdd\xdd\x0d\x6b\x7d\x60\x60\x80\
-\x67\xcf\x9e\x21\xa5\x0c\xed\xbc\xb3\x54\x2a\xc5\xf0\xf0\x30\x9e\
-\xe7\xe1\xba\x2e\x5b\x5b\x5b\x28\xa5\xf6\x8b\x02\x82\x20\x58\xfe\
-\xf0\xe1\x03\xf9\x7c\x1e\xd7\x75\xc3\x28\x5d\xd7\xc5\x71\x9c\xd0\
-\x5c\xd7\xc5\x75\xdd\x30\x83\xc2\xf8\xdc\xdc\x1c\xbe\xef\x2f\x17\
-\x05\x08\x21\x32\x99\x4c\x86\xed\xed\x6d\x6c\xdb\x0e\xa5\x48\xa5\
-\x52\x0c\x0c\x0c\x60\xdb\x36\x8e\xe3\x90\x4a\xa5\x78\xfe\xfc\x39\
-\x52\x4a\x94\x52\xd8\xb6\xcd\xb7\x6f\xdf\x78\xff\xfe\x3d\x40\xa6\
-\x28\xc0\xb2\xac\x0d\x29\xe5\xc2\xd8\xd8\x18\x96\x65\x5d\xd0\x57\
-\x29\x85\x65\x59\xe1\x78\xc1\xa4\x94\x9c\x9e\x9e\x32\x3e\x3e\x8e\
-\xef\xfb\x0b\xc0\xdb\x2b\xcf\x22\xc3\x30\x5a\x80\x95\x27\x4f\x9e\
-\xe8\x23\x23\x23\x18\x86\x81\xae\xeb\x61\xcd\xfb\xbe\x1f\x6e\xb4\
-\xeb\xba\xe4\x72\x39\xc6\xc7\xc7\x99\x9f\x9f\x97\xc0\xef\xc0\xbb\
-\x2b\xcf\x22\xdf\xf7\xa3\x9a\xa6\x2d\x6c\x6d\x6d\xf5\xad\xad\xad\
-\x89\xfa\xfa\x7a\x4a\x4b\x4b\x71\x5d\x37\x94\xc8\x71\x1c\x2c\xcb\
-\x62\x73\x73\x93\xb1\xb1\x31\x3e\x7d\xfa\x24\x81\x1c\xf0\x07\x70\
-\x02\xfc\x79\xdd\x71\x1d\x07\x62\x9a\xa6\x4d\x08\x21\x3a\x3b\x3a\
-\x3a\x68\x6b\x6b\xa3\xa1\xa1\x01\x80\x9d\x9d\x1d\x96\x96\x96\x58\
-\x5c\x5c\x04\x58\x00\x5e\x02\x6f\x80\xaa\xb3\x60\x8f\x81\x17\xc0\
-\xec\x75\x17\x4e\x1c\xf8\x0d\xe8\x03\x4c\xe0\xc1\xd9\xf8\x3e\xb0\
-\x7c\xb6\xa1\xc7\xc0\x21\x40\x43\x43\xc3\x26\xa0\xed\xed\xed\x09\
-\xc0\x03\x12\x67\xeb\xae\x6d\xf1\x2b\xec\xfc\x9a\xe3\x74\x3a\xed\
-\xb5\xb6\xb6\xda\xc0\xe9\x99\x6c\xf1\x9b\xbc\x7a\xe3\xc0\x8f\xd1\
-\xd1\x51\x65\x9a\xa6\x04\x7e\x00\xd6\x4d\x42\x0a\x59\xe5\xd3\xe9\
-\xb4\x17\x8f\xc7\xbd\x9b\x06\x9c\x87\x1c\x01\x0a\xe8\x04\xe2\xda\
-\x0d\xbf\x52\xce\x47\xfc\x37\xc0\x3f\x72\x9e\x0b\x66\xc1\xc5\x97\
-\x96\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x04\x32\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
-\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd2\x01\x07\x0b\x05\x06\xab\xd4\xb8\x1c\x00\x00\x03\xaf\x49\x44\
-\x41\x54\x78\xda\xb5\x96\xcd\x4b\x63\x57\x14\xc0\x7f\xf7\x46\x13\
-\x34\x89\x93\x9a\x28\x88\x1f\x09\x8e\x8b\x6e\x9c\xea\xe0\xc6\x27\
-\xe8\x80\x6e\x82\x10\x19\xac\x4b\x75\xd1\x59\x64\xd3\x2e\x66\xe7\
-\x6a\x96\xb3\x18\x98\xbf\xa1\x9b\xa1\x8b\x30\x2e\x4a\x2b\x68\x57\
-\x82\xdf\xd2\x8e\x16\x41\x34\x7e\x4c\x05\xbf\x88\x08\xad\x21\xef\
-\xf3\xbe\xd7\x8d\x79\x38\x1d\xa3\xa5\xd8\x0b\x07\x0e\xe7\x1d\xce\
-\xef\x9e\x73\x38\xe7\x3e\xf8\x9f\x8f\xa8\xf4\x21\x9d\x4e\x67\x0a\
-\x85\xc2\x98\x69\x9a\x9a\xe3\x38\x6d\x4a\x29\x80\x23\x60\xe9\xd1\
-\xa3\x47\xb9\xf5\xf5\xf5\x1f\xff\x13\x60\x7c\x7c\xfc\xe9\xe6\xe6\
-\xe6\x5b\x29\xe5\xc0\xe0\xe0\x20\x4f\x9e\x3c\x21\x1e\x8f\xe3\xba\
-\x2e\x85\x42\x81\xb5\xb5\x35\x66\x67\x67\x71\x1c\x67\xbe\xb9\xb9\
-\xf9\xe5\xea\xea\xea\x6f\xff\x1a\xf0\xec\xd9\xb3\xcc\xe9\xe9\xe9\
-\x7b\x4d\xd3\xaa\x46\x47\x47\x69\x6c\x6c\xa4\xba\xba\x1a\x21\x04\
-\xae\xeb\x62\xdb\x36\x86\x61\x70\x72\x72\xc2\xbb\x77\xef\x58\x5e\
-\x5e\x76\x62\xb1\xd8\xe8\xfe\xfe\x7e\xc5\x6c\x02\x65\x65\x64\x64\
-\xe4\x69\x3e\x9f\xff\xe5\xf9\xf3\xe7\x55\x93\x93\x93\x24\x12\x09\
-\xa2\xd1\x28\xf5\xf5\xf5\x24\x12\x09\x1a\x1a\x1a\x88\xc7\xe3\x44\
-\x22\x11\x22\x91\x08\x9d\x9d\x9d\xe8\xba\x2e\x37\x36\x36\xc6\x5a\
-\x5a\x5a\x7e\xbe\xbc\xbc\x3c\xbd\x13\x60\x59\xd6\x0f\x9a\xa6\xb5\
-\xbf\x78\xf1\x82\x48\x24\x42\x2c\x16\xa3\xa1\xa1\x81\x48\x24\x42\
-\x28\x14\x22\x10\x08\x10\x08\x04\x08\x85\x42\x44\xa3\x51\xc2\xe1\
-\x30\x8f\x1f\x3f\x66\x77\x77\x57\xee\xed\xed\x7d\x69\x9a\xe6\xf7\
-\xb7\x01\x24\x40\x57\x57\x57\xc6\x75\xdd\x81\x89\x89\x09\x6a\x6b\
-\x6b\x89\xc5\x62\x24\x12\x09\x82\xc1\x20\x81\x40\x00\x29\x25\x52\
-\x4a\x1f\x22\xa5\x24\x1c\x0e\xd3\xde\xde\x4e\x36\x9b\xc5\xf3\xbc\
-\x81\xfa\xfa\xfa\x4c\x45\x40\xa1\x50\x18\xcb\x64\x32\x34\x35\x35\
-\x11\x0e\x87\xa9\xab\xab\x43\x08\x81\x94\x12\x21\xc4\x67\x72\x13\
-\xda\xd5\xd5\x45\x3a\x9d\x46\xd7\xf5\xb1\x8a\x00\xd3\x34\xb5\xbe\
-\xbe\x3e\x82\xc1\x20\xd1\x68\x14\x21\x04\x9e\xe7\xe1\x79\xde\x27\
-\xce\x65\xdb\x4d\xbb\x10\x82\xa1\xa1\x21\x94\x52\xda\x6d\x80\x2a\
-\x00\xa5\x54\x5b\x6b\x6b\x2b\xa1\x50\xc8\x0f\x3e\x3c\x3c\xec\x07\
-\xb8\x0d\x90\xcb\xe5\x7c\xbd\xa3\xa3\x03\xa0\xed\x2e\x00\x42\x08\
-\xaa\xaa\xaa\x50\x4a\xa1\x94\xc2\xf3\x3c\x1f\x76\x1b\x40\x29\x85\
-\x6d\xdb\x38\x8e\x83\x6d\xdb\x9f\x65\xfb\x4f\xc0\xd1\xe1\xe1\x61\
-\x7b\x73\x73\x33\xb6\x6d\x23\x84\x60\x7a\x7a\xda\xaf\x75\x39\xb8\
-\xeb\xba\x38\x8e\x83\x52\x0a\xc3\x30\xb0\x6d\x1b\xcb\xb2\xd8\xd9\
-\xd9\x41\x29\x75\x54\xb1\x07\x9e\xe7\x2d\xcd\xcd\xcd\x61\x18\x06\
-\x96\x65\x61\x9a\x26\x96\x65\xf9\x7a\x59\xca\x36\xc3\x30\xd0\x75\
-\xdd\xb7\xcf\xce\xce\xe2\xba\xee\x52\x45\x80\x94\x32\x97\xcb\xe5\
-\xc8\xe7\xf3\xe8\xba\x4e\xa9\x54\x42\xd7\xf5\x4f\xc4\x34\x4d\x4a\
-\xa5\x92\x2f\xa6\x69\xa2\xeb\x3a\xdb\xdb\xdb\xcc\xcc\xcc\x00\xe4\
-\x2a\x0e\x9a\x65\x59\x86\x10\xa2\xfb\xe0\xe0\x20\x35\x38\x38\x88\
-\xeb\xba\x58\x96\xe5\xaf\x07\xcb\xb2\xb0\x6d\xdb\xcf\xa2\x0c\x2b\
-\x16\x8b\xbc\x7a\xf5\x8a\xb3\xb3\xb3\x79\x60\xea\xae\x49\xfe\x53\
-\x4a\xf9\xfb\xf1\xf1\xf1\x37\xe7\xe7\xe7\xb2\xbb\xbb\xdb\x6f\x5e\
-\x39\xa8\xae\xeb\x7e\x79\x4a\xa5\x12\x57\x57\x57\xbc\x79\xf3\x86\
-\xe5\xe5\x65\x07\xf8\x0e\xc8\xdf\xb9\x2a\x5c\xd7\x0d\x0a\x21\xe6\
-\x77\x76\x76\xc6\x3e\x7c\xf8\x20\x5b\x5b\x5b\xa9\xa9\xa9\xf1\x83\
-\x97\xeb\x5d\x2c\x16\xd9\xda\xda\xe2\xf5\xeb\xd7\xac\xac\xac\x38\
-\x40\x09\xf8\x1a\xb8\x04\x7e\xbd\x6f\x5d\x27\x81\xb8\x10\xe2\xad\
-\x94\x72\xa0\xbf\xbf\x9f\xde\xde\x5e\x52\xa9\x14\x00\xfb\xfb\xfb\
-\x2c\x2e\x2e\xb2\xb0\xb0\x00\x30\x0f\xbc\x04\xde\x03\x5f\x5c\x5f\
-\xf6\x02\xf8\x16\xf8\xe9\xbe\x07\x27\x09\x7c\x05\x8c\x01\xda\x8d\
-\x21\x3a\x02\x96\xae\x1b\x7a\x01\x1c\x03\xa4\x52\xa9\x2d\x40\x7c\
-\xfc\xf8\x51\x02\x36\x90\xbe\xf6\xbb\xf7\x24\xef\x90\x9b\x3e\x17\
-\xd9\x6c\xd6\xee\xe9\xe9\xd1\x81\xbf\xae\xcb\x96\x7c\xc8\xa7\x37\
-\x09\x5c\x4d\x4d\x4d\x29\x4d\xd3\x1c\xe0\x0a\x28\x3e\x24\xa4\x9c\
-\x95\x91\xcd\x66\xed\x64\x32\x69\x3f\x34\xe0\x26\xe4\x14\x50\xc0\
-\x00\x90\x14\x0f\xfc\x97\x72\xf3\xc6\x7f\x00\xfc\x0d\x91\xe4\x07\
-\x58\x63\x81\xe3\x00\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
-\x82\
-\x00\x00\x0c\x27\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
-\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
-\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
-\x79\x71\xc9\x65\x3c\x00\x00\x0b\xb9\x49\x44\x41\x54\x78\xda\xed\
-\x9a\x69\x6c\x55\x75\x1a\xc6\xdf\xee\xfb\x42\xb9\x2d\x16\x68\xb1\
-\x55\xa9\xa5\x55\x06\x64\x71\xc0\x01\x15\x41\x59\x15\x70\x45\x27\
-\x63\x70\xe2\x18\xcd\x64\xf8\x30\x93\x99\x2f\x66\x26\x99\x0f\x33\
-\xc9\x4c\x32\x93\xcc\x17\x27\x31\x66\x12\x0c\x6a\x94\x2d\x58\xf6\
-\x22\x4b\x51\xd9\x97\x0e\xa5\x28\xfb\xda\xd2\x52\x0a\x5d\x6e\xdb\
-\xbb\x74\x7e\xcf\x7f\xee\xb9\xb9\x69\x30\xd3\x6b\xd0\xc4\x0c\x37\
-\x79\x73\xee\x39\xf7\x9c\xff\xff\x79\xde\xf7\x79\x97\x53\x48\xe8\
-\xef\xef\xb7\x1f\xf2\x27\x11\xbb\x43\xe0\x0e\x81\xff\x67\x02\xc9\
-\xb7\xba\x38\x67\xce\x9c\x41\x2f\x40\x11\xf0\x6c\x08\x36\x2e\x1c\
-\x0e\x57\x61\x95\x7c\x2f\x0f\x87\x43\x39\xe1\x70\xbf\x0a\x85\x1f\
-\x3b\x8b\x1d\x8f\xd8\x01\xee\x69\xc2\x2c\x14\x0a\xe9\x59\x77\xf4\
-\xce\xbd\xef\x03\x0b\xcc\xe9\xd3\xa7\x07\x41\x20\xfe\xcf\x78\x68\
-\x3c\x17\x0a\x05\x97\x04\x02\x81\xd2\x84\x84\x44\x36\x4e\xb0\x84\
-\x84\x04\x4b\x4e\x4e\x37\x7d\xfa\xfa\x7a\x8d\xdf\x1d\xb0\x60\xb0\
-\xcf\x12\x13\x13\x5b\xb9\x6f\x15\x3f\x7d\xc4\x7d\x3b\x00\x1a\xba\
-\x0d\x11\x88\xfb\x33\x81\x8d\xdf\x06\xdc\x93\xa1\x50\x38\x2d\x3b\
-\x3b\xdf\xaa\xab\xab\xec\xee\xbb\xcb\xb0\x51\x36\x74\x68\x81\xa5\
-\xa4\xa4\x38\x4f\xf6\xf6\xf6\xd9\xb5\x6b\xd7\xec\xec\xd9\x73\x78\
-\xf1\x94\x9d\x3c\xd9\xe0\x6b\x6e\xbe\xf4\x7a\x28\x14\x78\x3d\x39\
-\x39\xa5\x8e\xb5\xfe\x84\xad\xff\xbe\x08\xc8\xad\xbf\x0b\x06\x03\
-\xbf\x0a\x85\xfa\xf3\x4b\x4a\x2a\x6c\xca\x94\xa9\x36\x69\xd2\x44\
-\x80\x97\x58\x76\x76\x06\x1e\x4e\x20\x0a\x61\xbc\x2d\x39\x84\x3d\
-\x23\x12\x41\xeb\xec\xf4\xdb\x85\x0b\x97\xed\xf0\xe1\x43\xf6\xc5\
-\x17\x75\xd6\xd8\x78\xf8\x91\xde\x5e\xff\x5a\x88\xfc\x8b\x75\xdf\
-\xc6\x9a\xe2\x01\x23\x7d\xc6\x93\x03\x23\xb9\xff\x9d\x40\xa0\x6f\
-\x6e\x6e\xae\xcf\x66\xcc\x98\x6b\x0b\x16\xcc\xb1\x92\x12\x9f\xe9\
-\x83\xde\x23\xa0\x43\x3a\x0e\xf8\x1e\x56\x34\x94\x35\x10\x94\xcc\
-\x12\xad\xb5\xb5\xdd\x3e\xfb\x6c\xbb\xd5\xd4\xac\x84\xd4\x49\x4b\
-\x4a\x4a\xae\xe7\x86\x9f\x05\x83\xc1\x43\x83\xc8\x81\xb8\x09\xdc\
-\xc3\xbd\xab\x91\xcc\x03\x15\x15\xe3\x6d\xe9\xd2\xa5\x36\x61\xc2\
-\x18\xef\xb7\x48\x02\x3a\xaf\x7f\x23\x89\x40\xc0\xfb\x2e\x70\x61\
-\x01\x96\x01\xec\xbc\x7d\xf4\xd1\x0a\xab\xab\xdb\x28\x82\x4d\xc0\
-\xfa\x29\xeb\x6d\xbd\x9d\x49\x5c\xcc\x86\x6b\xd8\xb8\x7a\xf2\xe4\
-\x19\xf6\xe6\x9b\xbf\xb0\x91\x23\x7d\xb1\xbf\x0b\xe0\xff\x20\xe0\
-\x11\xf4\xaa\x8c\x29\xa1\xf9\xde\x63\x23\x46\x0c\xb3\xd7\x5e\x7b\
-\xdd\x72\x73\xf3\x6c\xe3\xc6\x95\x77\x05\x02\x3d\x1f\x90\xe4\x4f\
-\xb1\xec\x81\xdb\xd1\x07\xb2\xf0\xc4\x7b\x7d\x7d\x81\xea\x89\x13\
-\xa7\xd9\xb2\x65\xbf\x8c\x82\xe7\x1a\xe1\xaf\xb5\x86\x86\xaf\x5d\
-\xc2\x12\xfa\x6f\x00\xef\x59\xd0\x9d\x03\xce\x9a\x9b\x5b\x6c\xd7\
-\xae\x2f\xec\xea\xd5\x56\xbb\x79\xb3\xcb\xd2\xd2\x92\xed\xc5\x17\
-\x97\xd8\xac\x59\x8b\x24\x45\x1f\xf7\x7d\x48\x14\x4a\x30\xf3\xec\
-\xdb\x12\xf8\x0d\x9a\x7f\x4a\xb2\x79\xeb\xad\x37\xac\xa8\x28\xd7\
-\x5d\xf4\xfb\x7b\xec\xdd\x77\x57\x38\x60\xb5\xb5\x75\xb6\x7b\xf7\
-\x7e\x91\x18\x00\x58\x16\x8e\x78\x5f\xe4\x1c\x78\x97\xc4\x87\x0e\
-\x1d\xb1\xd1\xa3\x4b\x6d\xef\xde\x7d\x76\xe5\x4a\x33\x24\xba\xdd\
-\xb3\x4f\x3f\xbd\xd0\xa6\x4d\x9b\x63\x94\xe4\x7b\x89\xfa\x5f\x06\
-\x10\x88\x5b\x42\xe3\x58\x68\x59\x6e\xee\x50\x69\x9e\x50\xfb\xa2\
-\xe0\x57\xac\x58\x6b\xe5\xe5\xa3\x48\xe4\x29\xd6\xd4\xd4\x6a\x9f\
-\x7c\xe2\xaa\xa0\x55\x55\x55\x58\x4f\x4f\xdf\xc0\x08\xe8\xe8\x92\
-\xf7\xe2\xc5\x26\xc0\x1f\xb5\x85\x0b\x67\xda\x7d\xf7\xdd\x6d\xc3\
-\x86\xf9\xec\xd3\x4f\xb7\xb3\xd6\x3d\x96\x9f\x9f\x67\x59\x59\x99\
-\x36\x7f\xfe\x22\x3b\x75\xea\x38\xd6\xf0\x3c\xd5\x69\x2d\x0a\xf8\
-\xe0\x5b\x49\x88\x07\xff\x88\xe5\x51\x6d\x48\xd8\xca\x28\xf8\xe5\
-\xcb\x57\x21\xa3\x62\x7b\xfc\xf1\x1f\xe3\xbd\x26\x36\x4d\xb3\x57\
-\x5e\x59\x68\x9f\x7f\xbe\x8f\xf2\xd8\x40\x03\x4b\x1e\x08\xde\x79\
-\xfe\xd2\xa5\x26\x3b\x70\xe0\x20\x52\x99\x6b\xa5\xa5\xc5\x9c\x5f\
-\xb6\xfb\xef\x2f\xa7\x92\xcd\xa0\x9c\x36\xd2\x2b\xda\xad\xbd\xbd\
-\xc3\x7c\x3e\x9f\xcd\x9e\xbd\xd8\x32\x32\xb2\x12\x90\xdd\x1f\xc0\
-\x90\x89\x0d\x9a\x80\x80\xcb\xc6\xaa\x49\x95\x96\xde\x67\xcf\x3c\
-\x33\x2f\xfa\xdb\xce\x9d\x7b\x1d\xf8\x99\x33\xa7\xa2\xe3\xab\xce\
-\xab\x5d\x5d\xdd\x54\x13\x23\x11\x5f\xb0\xfa\xfa\xe3\x80\xac\xe7\
-\x3c\x29\x1a\x05\x33\x07\x1e\x72\xf5\xf6\xd2\x4b\x0b\xac\xb0\xb0\
-\xc0\xae\x5f\x6f\x17\x51\xe5\x00\x24\xca\xb8\x3e\x4f\x4d\x8e\x3e\
-\xd1\x85\x9c\x3a\x6c\xec\xd8\x71\x34\xc6\x09\x06\x86\xd1\xc8\x67\
-\x0e\x16\x2f\x81\xf0\x12\x1e\x4a\x1e\x3f\x7e\x32\xd2\x19\x1a\xfd\
-\x6d\xd4\xa8\x11\xc8\xe0\x0a\xb2\x69\xb1\x9c\x9c\x6c\x5d\x72\x60\
-\xbb\xbb\xfd\x00\x4a\xb4\xe7\x9e\x9b\x0d\x90\xb3\x24\xf6\x57\xf2\
-\xba\xb3\xcb\x97\x9b\xed\xe8\xd1\x63\xb6\x68\xd1\x4c\x2b\x2e\xf6\
-\x01\xf0\xa6\x9e\x71\xe3\x46\x66\x66\x06\x51\xed\x85\xf4\x31\xd6\
-\xcb\x73\xf9\x72\xe3\x46\x87\x2b\xaf\x0f\x3e\x38\xd1\x52\x53\xd3\
-\x95\x3f\x6f\x80\x25\x29\x1e\x02\x79\x84\x6e\x49\x5e\x9e\x8f\xea\
-\x90\x8f\x4c\xda\x74\x99\xc4\x0a\x92\x78\xe5\x2c\x3c\xc6\xd6\xac\
-\xa9\x65\x61\xa3\xf3\x3a\x12\xf2\xa6\x22\x81\x9c\xd2\xed\xe5\x97\
-\x17\xd8\x89\x13\x27\x19\x19\xce\x38\xa2\x47\x8e\xd4\x8b\x18\x0d\
-\xaf\x18\x89\xdc\xd0\xbd\x02\xcf\xda\xa9\x3c\x9f\x63\x6b\xd7\xd6\
-\xda\xb9\x73\xcd\x44\xa6\x48\x95\x8a\xd1\x23\x80\x9c\xda\x34\x4b\
-\x21\xb5\x7b\x94\xd0\x8f\x69\x48\x8c\x87\xc0\x43\x2c\x34\xb2\xb4\
-\x74\x34\x67\x29\x94\xbb\x83\x9a\x67\x54\xde\x00\xe9\x27\xbc\x63\
-\x6c\xdc\xb8\x2a\x7b\xff\xfd\x35\x5c\x33\x3c\x17\x25\x11\x8d\xc4\
-\xab\xaf\x2e\xa6\xda\x5c\xc2\xb3\x87\xed\x85\x17\xe6\x92\xac\x05\
-\x78\xd6\x79\xde\xf4\x49\x4f\x4f\xe3\xb9\x5c\xd6\x58\x0b\xc9\x76\
-\x22\x3b\x4a\x40\x23\xbd\x22\x48\x4e\x34\x10\x19\x3f\x72\x2d\x17\
-\xd9\x44\x08\x4c\x89\x83\x40\xb8\x3a\x31\x31\xc9\x86\x0c\x29\x34\
-\x24\x2e\xc9\x50\x26\x0f\x45\xbb\xad\x3c\x5d\x51\x51\x0e\x89\x07\
-\xec\xe3\x8f\x37\x00\xba\x17\x4f\x66\x79\x72\xa2\x0a\xf5\x12\xfa\
-\x24\x24\x33\x8b\x68\xcc\xb7\xbb\xee\x1a\x2a\x6d\x7b\xb2\x01\x7c\
-\x3a\x25\x37\x8d\xca\xb5\x89\x5c\xe8\x46\x56\xc5\xf2\x3a\xc0\x5d\
-\x83\x23\xb7\x2e\x42\xea\x34\x7b\x05\xa8\x4c\x3e\x1c\xa2\xa1\x30\
-\x54\x3d\x68\x02\x80\xac\x44\x83\xc8\x21\x57\xfa\x13\x25\xea\xf5\
-\x51\xe9\x54\x00\xf4\x3b\xa0\x7b\x28\x83\x9a\x3c\x4b\x25\x01\xbc\
-\x17\x76\x7a\xd6\x47\x89\xad\x6a\x25\x39\x15\x14\xe4\x5a\x47\x47\
-\xa7\xbb\xc6\x47\xb2\xa1\xba\x64\xda\xba\x75\xdb\x88\x50\x0b\xe4\
-\x8a\x35\xe4\x45\xde\x0b\x12\x90\x4e\x93\x9d\x3f\x7f\x1c\x32\x22\
-\xd4\xa7\x4a\x04\xd9\x54\xed\x59\x16\x4f\x04\xca\xfe\xab\xd1\x0c\
-\x11\x70\x9e\xe7\x94\x59\x65\xbf\xed\xdb\x77\x94\x3b\x34\x6d\x3a\
-\x39\x29\x27\xd0\x69\x09\x7d\xe1\x53\x36\xec\x57\x1d\xd7\xef\xf2\
-\xb6\x24\x21\xe9\x79\x9e\x67\xbd\x34\x07\xfe\xc3\x0f\x6b\x48\xec\
-\x36\x8a\xc3\x70\xdd\x13\x05\xdf\xd2\x72\xc9\xce\x9c\xa9\x97\x84\
-\x34\x5d\x89\x84\x88\xf3\x5c\xa6\xee\x29\x1c\x34\x01\x00\xe7\x78\
-\x15\x44\xe0\x79\xdf\xf0\xae\x33\x02\x1f\x20\x27\xf6\x20\x89\x6e\
-\xcf\xd3\x10\x18\x8e\x86\x4b\x24\x09\xbc\xed\x07\x64\x9a\x00\x0b\
-\xb8\x4c\xf7\x29\x3f\xdc\x7a\x2b\x57\x6e\xc6\xcb\x9d\x74\xf4\x22\
-\x15\x05\xe5\x95\x00\x23\xd3\x53\x54\xaf\x7a\xae\xf5\x6a\x2b\x01\
-\x96\x6c\x3c\x59\xca\xa9\x19\x83\xee\xc4\xfd\xb8\x23\xa6\x9c\xea\
-\xe8\x45\x41\x46\x55\x69\x50\x5d\x57\x35\xa2\x72\x38\xc7\x00\x3a\
-\x5d\xb3\x3e\x00\xd4\x71\xe5\xf1\x20\xe6\x96\xf1\x40\x08\x2c\x89\
-\xdc\x29\x32\x00\xd4\x9a\xc6\xf9\x75\xc0\x9f\xb4\xb6\xb6\x26\x6f\
-\x40\x96\xc3\xb4\xaf\xf7\x5a\xe9\xed\x9f\x30\x68\x02\x6c\xe4\x27\
-\xb4\x92\x0f\x60\x52\xe5\x89\x98\xc5\x0c\x00\x49\x84\xbb\xd5\xb6\
-\x6d\xdb\x89\xf7\x47\xa0\x73\x1f\x0d\xa9\xcd\x9e\x7d\x76\x16\x9a\
-\x2e\x50\x92\x0b\xb0\xee\x8f\x8d\xaa\xf4\xaf\xa4\x46\x6e\x35\x94\
-\xe6\xcb\x10\xbe\xc6\x73\x17\x20\xdd\x27\xb2\x1e\x50\x6f\xaf\x68\
-\x24\xf4\x3b\xa7\xbd\x71\x8c\x12\xfd\xe7\xd0\x1f\xd5\xa4\x5b\x1e\
-\x89\x89\x84\x16\xf7\x66\xf9\x44\x47\xec\xf8\xf1\xaf\xd1\xed\x79\
-\xc6\x81\xc7\xd4\xa4\x54\x81\x3c\xcd\x93\x7c\xc9\x58\x8a\x24\x24\
-\xd3\xf4\x0a\x89\x14\x48\xcc\xe3\x95\x33\x87\x3c\xb8\xa0\x4e\xab\
-\xa8\x0e\x00\xaf\x63\x3f\xd7\x93\x24\x2f\x0a\x46\x97\x40\xb5\xc6\
-\xd3\x07\x1a\x61\x8d\x9e\xdb\xbd\x6e\xea\x85\x35\x72\x74\xba\x55\
-\x65\xa0\x39\x8d\x62\xb6\x99\x67\xc3\x87\x17\x0a\xbc\x80\x0a\xbc\
-\x80\x2b\x31\x25\x15\x40\x2b\x27\xa2\x89\x4d\x19\x4d\x75\xbd\xe1\
-\x91\x47\x1e\x25\x9a\x19\xba\x26\x67\xc4\x38\x29\x24\xc7\x49\x8a\
-\x80\xef\x24\xcf\xba\x85\xea\x7c\x1c\x49\xdc\x7f\x0c\xcf\xa0\xcb\
-\x66\x6d\xec\x25\x33\xe6\xbd\xe3\x3a\xf0\x34\xa7\xe1\xb6\x64\xc9\
-\x3c\x9a\x4d\x11\xe0\x7b\x62\xc1\x3b\x9d\x6f\xd8\x50\xc7\x9b\xd6\
-\x46\x2a\x51\xd0\x23\x11\x89\x44\x1f\x4d\x2c\x83\xf9\x67\xbe\x4d\
-\x9e\xfc\x13\xee\xcf\x54\xc5\xf1\x0a\x86\xf6\xe1\x5a\x3a\x84\x53\
-\xc0\x70\x55\x51\x92\x84\x1a\xe2\x89\xc0\x7e\x36\x6b\x3f\x77\xee\
-\x2b\xc9\x88\x4d\x93\xb5\x80\xb7\x81\x12\x95\x12\x38\x12\xf0\xf3\
-\xd5\x61\xe5\x79\x81\x8b\x01\x9f\xc2\xa8\xb1\x9d\xc1\x6f\x27\xbd\
-\x63\x0f\x65\x73\x03\x20\x42\x78\x3e\x96\x84\x22\x91\xcc\x14\x3b\
-\xdf\xa6\x4f\x7f\x82\xe7\xb2\x54\x81\x3c\xfd\x73\x9e\x21\x47\x52\
-\x2c\xce\x46\xca\xaa\xed\x89\x87\x40\x33\x5e\x5f\xd9\xd2\x72\x85\
-\x24\xbb\xe8\x00\x71\x2e\xcf\x3b\x59\x94\x95\x95\xdb\xe2\xc5\x4f\
-\x0a\xbc\x80\x78\xa5\x92\xee\x9b\xe2\x36\x5d\xbf\x7e\x27\x3d\x63\
-\x17\x9e\xef\x60\xf3\x6e\x48\x7c\xa9\x12\x4b\xd2\xf6\x28\x91\x75\
-\xaf\x37\xad\xd2\xfc\xd2\xb4\x16\x6f\x62\x73\x89\x4a\x81\x22\xc1\
-\x5e\x29\xac\x95\x49\x97\x6e\xa1\xb4\x36\x8a\xb4\x5e\xf2\x0f\xc6\
-\xd1\x89\x9d\xce\x97\xe3\x91\xfe\x33\x67\x1a\x05\x5e\xad\x5f\xde\
-\xd1\x11\x8f\x4d\x96\xe6\xe5\x99\xa8\x6c\x24\x19\x91\xdb\xb2\x65\
-\x0f\x6f\x68\x9f\xa1\xdd\x76\x6f\x0b\x48\x76\x40\x68\x07\x1d\x7b\
-\x1b\x7a\x0e\x8a\xa8\x17\x09\x91\x00\x78\x26\xf3\xff\xa3\xac\x59\
-\xce\xb9\x22\x95\xc3\x7a\xa9\x14\x87\x13\x54\xb4\x4e\xdd\xfb\x4f\
-\x16\xea\x89\xa7\x91\xc9\xea\x48\xa2\xbd\xa7\x4e\x1d\x63\x2e\x39\
-\xcf\xa6\x19\xd2\x25\x72\xe9\xb0\xad\x5b\x77\x33\x06\x5c\x15\x68\
-\x40\x38\xf0\x0e\x50\x4d\xcd\x6e\x4a\xeb\x36\xc0\x5f\xe7\x3c\xda\
-\x47\x94\x90\x44\xe3\x26\x92\xaa\x55\x24\x58\x23\xe0\x3d\xa3\x23\
-\xbd\xa0\x1b\xc9\x6d\xc1\xdb\xff\x56\xd7\xa5\xa7\x0c\x21\x5a\x37\
-\x18\xe8\x8e\x08\x4e\x33\xeb\x7c\x8c\x59\xbc\x04\x42\x6c\xfc\x7b\
-\xbf\xbf\xab\x6f\xff\xfe\x1d\xaa\xc5\x2c\x9e\xa5\x47\xf0\xcc\x57\
-\x6c\xb8\x95\x06\xd4\x62\x90\x74\x1d\x75\xd3\xa6\x2f\x01\xb8\xdd\
-\xd5\x76\xb3\x68\x4d\xf7\x1a\xa1\xc0\xe2\xcd\xeb\xdc\xb3\xd5\x56\
-\xad\xaa\x55\xd3\x93\x8c\x04\x9e\xee\xbc\x91\xa8\xad\x23\x3a\x9d\
-\x44\xa3\x50\x4e\x61\x64\xd9\xc5\xe8\xad\xb5\xec\xaf\x3c\xdf\x16\
-\x0f\x81\xd8\x3f\xb0\x6e\x62\xa8\x5b\xae\x36\xdf\xd0\x70\x40\xb9\
-\x80\x77\x72\x05\x46\xef\xab\xb6\x7a\xf5\x16\xa2\x23\x50\x87\x90\
-\xce\x56\xca\x6e\xab\x7e\x8b\x05\xcf\x3a\x72\x86\xac\x5f\x92\x11\
-\x41\x22\x58\xe3\x2a\x54\x6b\x6b\x87\x1c\xc1\xf9\x3a\xae\x5f\xb7\
-\xbc\xbc\xe1\xc8\x27\x9b\x48\x9c\xa0\xbf\x1c\x16\x94\x3a\xec\xef\
-\x71\xff\x65\xae\xaa\x2a\xfa\xee\x20\x40\xc3\x20\xb3\x8d\xfb\xc6\
-\x4c\x9d\x3a\x9b\x09\xf4\x41\x24\x72\x53\x40\x94\xd4\xe8\xb6\x0c\
-\x4f\xb5\x6a\x14\xb8\x45\x37\xbd\xd5\xd1\x75\x56\xc0\x16\x32\x3f\
-\x8d\xe6\xc5\xe7\x20\x91\xe9\x10\x78\x06\xc1\x7c\xa2\x7a\xda\x36\
-\x6f\x5e\x85\xcc\xfc\x1d\x6c\x3f\x0d\x3b\x1c\x53\x5c\x06\x47\xa0\
-\xb2\xb2\x72\xe0\xa5\xb1\x54\x87\xcd\x24\x70\xd1\xc3\x0f\xcf\xb4\
-\xf2\xf2\x4a\x12\xd3\x0f\x89\x76\x91\x51\x69\xd5\x52\x58\x2c\x78\
-\x67\x03\xc8\x78\xe6\xfe\x4a\xad\xef\xaa\x36\xbc\x4b\x14\xca\xf3\
-\xae\x64\xee\xd8\xb1\x1e\x59\xb5\x05\x58\xec\x79\x6c\x0d\x66\xb7\
-\x83\x80\x36\x9b\x81\xe7\x56\xe0\xe5\xa2\x49\x93\x1e\x67\x8c\x1e\
-\xab\xde\x20\x02\x68\xf7\x06\x5e\xed\x11\xb0\x58\xf9\xdc\xf2\x28\
-\x69\x9a\xb9\x31\x01\xd0\xb9\x48\x32\x5f\xd2\x52\xc5\x01\xfc\x06\
-\xf5\x1d\xcd\x3c\xcb\xb0\x77\x30\xbb\x9d\x04\xb4\xf9\x44\x4a\xe7\
-\x72\x8e\x15\xa5\xa5\xf7\xda\x43\x0f\x4d\xe7\xad\xcd\xa7\x06\xc4\
-\xc6\x5d\x54\x9a\x6e\xac\x33\xd2\x55\x43\xb1\xe0\x23\x9b\xab\xea\
-\xa4\xab\xf3\xca\xf3\xca\x29\x8d\x2b\xf4\x89\x3a\x69\x5e\xf7\xaa\
-\xf6\x2e\xc5\x56\x63\xf6\x5d\x10\x90\x95\x62\x7f\xa6\xbd\xbf\xc4\
-\x1b\x1b\x39\x51\x2d\x2d\xeb\xf5\x53\x39\x20\x32\xb2\x58\x12\x98\
-\xa9\x97\xa8\xa3\x6b\x3c\x10\x10\x35\x29\x79\x5d\xa5\x92\xef\xae\
-\xda\x6c\xc7\x7e\xed\xfd\x3d\xf4\xbb\x24\xe0\x35\xba\x57\x18\xc2\
-\x7e\x0b\xd0\x6a\xde\xdc\x18\x2d\xca\x98\x89\xca\x78\x87\x1d\x8a\
-\x2c\xb2\x25\x0b\x6f\xd3\xc8\x33\x41\x25\x2b\xc9\xde\x42\xa2\x9e\
-\x35\x35\x48\x35\x29\x3e\x17\xb0\x7f\x60\x7f\xc3\x82\x98\x7d\x5f\
-\x04\x74\xcc\xe2\xfa\x5c\x8e\x3f\x27\x3f\xa6\x13\x81\x54\x3c\xac\
-\x77\x58\xf4\x9d\x19\x7d\x27\x80\xa8\x46\xe2\x88\xcc\x7a\xd4\x6d\
-\x43\x1a\x0f\x58\xf6\x3d\xec\x13\xee\x69\xf1\xf6\xf9\xbe\x09\xe8\
-\xba\x67\x3f\xc2\x1e\xe6\x5a\x15\xc7\x32\x8e\x45\x7a\x0d\x8c\xfc\
-\x23\x5f\x1f\x4b\x5c\xd5\x7b\x06\x8f\x35\x6a\x30\x8b\xfc\x43\x5f\
-\xaf\x07\xec\xdb\x12\xb8\xf3\x5f\x0d\xee\x10\xb8\x43\xe0\x07\xfe\
-\xf9\x0f\x4e\x33\x44\x96\xd0\x41\x78\x46\x00\x00\x00\x00\x49\x45\
-\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x0b\x9a\
-\x73\
-\x61\x76\x65\x41\x73\x44\x65\x74\x61\x69\x6c\x3d\xe5\xb0\x87\xe6\
-\xa0\x87\xe7\xad\xbe\xe4\xbf\x9d\xe5\xad\x98\xe5\x88\xb0\xe5\x85\
-\xb6\xe4\xbb\x96\xe6\x96\x87\xe4\xbb\xb6\x0a\x63\x68\x61\x6e\x67\
-\x65\x53\x61\x76\x65\x44\x69\x72\x3d\xe6\x94\xb9\xe5\x8f\x98\xe5\
-\xad\x98\xe6\x94\xbe\xe7\x9b\xae\xe5\xbd\x95\x0a\x6f\x70\x65\x6e\
-\x46\x69\x6c\x65\x3d\xe6\x89\x93\xe5\xbc\x80\xe6\x96\x87\xe4\xbb\
-\xb6\x0a\x73\x68\x61\x70\x65\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\
-\x44\x65\x74\x61\x69\x6c\x3d\xe6\x9b\xb4\xe6\x94\xb9\xe7\xba\xbf\
-\xe6\x9d\xa1\xe9\xa2\x9c\xe8\x89\xb2\x0a\x72\x65\x73\x65\x74\x41\
-\x6c\x6c\x3d\xe9\x87\x8d\xe7\xbd\xae\xe7\x95\x8c\xe9\x9d\xa2\xe4\
-\xb8\x8e\xe4\xbf\x9d\xe5\xad\x98\xe5\x9c\xb0\xe5\x9d\x80\x0a\x63\
-\x72\x74\x42\x6f\x78\x3d\xe7\x9f\xa9\xe5\xbd\xa2\xe6\xa0\x87\xe6\
-\xb3\xa8\x0a\x63\x72\x74\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\
-\xe5\x88\x9b\xe5\xbb\xba\xe4\xb8\x80\xe4\xb8\xaa\xe6\x96\xb0\xe7\
-\x9a\x84\xe5\x8c\xba\xe5\x9d\x97\x0a\x64\x75\x70\x42\x6f\x78\x44\
-\x65\x74\x61\x69\x6c\x3d\xe5\xa4\x8d\xe5\x88\xb6\xe5\x8c\xba\xe5\
-\x9d\x97\x0a\x76\x65\x72\x69\x66\x79\x49\x6d\x67\x3d\xe9\xaa\x8c\
-\xe8\xaf\x81\xe5\x9b\xbe\xe5\x83\x8f\x0a\x7a\x6f\x6f\x6d\x69\x6e\
-\x44\x65\x74\x61\x69\x6c\x3d\xe6\x94\xbe\xe5\xa4\xa7\x0a\x76\x65\
-\x72\x69\x66\x79\x49\x6d\x67\x44\x65\x74\x61\x69\x6c\x3d\xe9\xaa\
-\x8c\xe8\xaf\x81\xe5\x9b\xbe\xe5\x83\x8f\x0a\x73\x61\x76\x65\x44\
-\x65\x74\x61\x69\x6c\x3d\xe4\xbf\x9d\xe5\xad\x98\xe6\xa0\x87\xe7\
-\xad\xbe\xe6\x96\x87\xe4\xbb\xb6\x0a\x6f\x70\x65\x6e\x46\x69\x6c\
-\x65\x44\x65\x74\x61\x69\x6c\x3d\xe6\x89\x93\xe5\xbc\x80\xe5\x9b\
-\xbe\xe5\x83\x8f\xe6\x96\x87\xe4\xbb\xb6\x0a\x66\x69\x74\x57\x69\
-\x64\x74\x68\x44\x65\x74\x61\x69\x6c\x3d\xe8\xb0\x83\xe6\x95\xb4\
-\xe5\xae\xbd\xe5\xba\xa6\xe9\x80\x82\xe5\xba\x94\xe5\x88\xb0\xe7\
-\xaa\x97\xe5\x8f\xa3\xe5\xae\xbd\xe5\xba\xa6\x0a\x74\x75\x74\x6f\
-\x72\x69\x61\x6c\x3d\x50\x61\x64\x64\x6c\x65\x4f\x43\x52\xe5\x9c\
-\xb0\xe5\x9d\x80\x0a\x65\x64\x69\x74\x4c\x61\x62\x65\x6c\x3d\xe7\
-\xbc\x96\xe8\xbe\x91\xe6\xa0\x87\xe7\xad\xbe\x0a\x6f\x70\x65\x6e\
-\x41\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x44\x65\x74\x61\x69\x6c\
-\x3d\xe6\x89\x93\xe5\xbc\x80\xe6\xa0\x87\xe7\xad\xbe\xe6\x96\x87\
-\xe4\xbb\xb6\x0a\x71\x75\x69\x74\x3d\xe9\x80\x80\xe5\x87\xba\x0a\
-\x73\x68\x61\x70\x65\x46\x69\x6c\x6c\x43\x6f\x6c\x6f\x72\x44\x65\
-\x74\x61\x69\x6c\x3d\xe6\x9b\xb4\xe6\x94\xb9\xe5\xa1\xab\xe5\x85\
-\x85\xe9\xa2\x9c\xe8\x89\xb2\x0a\x63\x6c\x6f\x73\x65\x43\x75\x72\
-\x44\x65\x74\x61\x69\x6c\x3d\xe5\x85\xb3\xe9\x97\xad\xe5\xbd\x93\
-\xe5\x89\x8d\xe6\x96\x87\xe4\xbb\xb6\x0a\x63\x6c\x6f\x73\x65\x43\
-\x75\x72\x3d\xe5\x85\xb3\xe9\x97\xad\xe6\x96\x87\xe4\xbb\xb6\x0a\
-\x64\x65\x6c\x65\x74\x65\x49\x6d\x67\x3d\xe5\x88\xa0\xe9\x99\xa4\
-\xe5\x9b\xbe\xe5\x83\x8f\x0a\x64\x65\x6c\x65\x74\x65\x49\x6d\x67\
-\x44\x65\x74\x61\x69\x6c\x3d\xe5\x88\xa0\xe9\x99\xa4\xe5\xbd\x93\
-\xe5\x89\x8d\xe5\x9b\xbe\xe5\x83\x8f\x0a\x66\x69\x74\x57\x69\x6e\
-\x3d\xe8\xb0\x83\xe6\x95\xb4\xe5\x88\xb0\xe7\xaa\x97\xe5\x8f\xa3\
-\xe5\xa4\xa7\xe5\xb0\x8f\x0a\x64\x65\x6c\x42\x6f\x78\x3d\xe5\x88\
-\xa0\xe9\x99\xa4\xe9\x80\x89\xe6\x8b\xa9\xe7\x9a\x84\xe5\x8c\xba\
-\xe5\x9d\x97\x0a\x62\x6f\x78\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\
-\x44\x65\x74\x61\x69\x6c\x3d\xe9\x80\x89\xe6\x8b\xa9\xe7\xba\xbf\
-\xe6\xa1\x86\xe9\xa2\x9c\xe8\x89\xb2\x0a\x6f\x72\x69\x67\x69\x6e\
-\x61\x6c\x73\x69\x7a\x65\x3d\xe5\x8e\x9f\xe5\xa7\x8b\xe5\xa4\xa7\
-\xe5\xb0\x8f\x0a\x72\x65\x73\x65\x74\x41\x6c\x6c\x44\x65\x74\x61\
-\x69\x6c\x3d\xe9\x87\x8d\xe7\xbd\xae\xe6\x89\x80\xe6\x9c\x89\xe8\
-\xae\xbe\xe5\xae\x9a\x0a\x7a\x6f\x6f\x6d\x6f\x75\x74\x44\x65\x74\
-\x61\x69\x6c\x3d\xe6\x94\xbe\xe5\xa4\xa7\xe7\x94\xbb\xe9\x9d\xa2\
-\x0a\x73\x61\x76\x65\x3d\xe7\xa1\xae\xe8\xae\xa4\x0a\x73\x61\x76\
-\x65\x41\x73\x3d\xe5\x8f\xa6\xe5\xad\x98\xe4\xb8\xba\x0a\x66\x69\
-\x74\x57\x69\x6e\x44\x65\x74\x61\x69\x6c\x3d\xe7\xbc\xa9\xe6\x94\
-\xbe\xe5\x88\xb0\xe5\xbd\x93\xe5\x89\x8d\xe7\xaa\x97\xe5\x8f\xa3\
-\xe5\xa4\xa7\xe5\xb0\x8f\x0a\x6f\x70\x65\x6e\x44\x69\x72\x3d\xe6\
-\x89\x93\xe5\xbc\x80\xe7\x9b\xae\xe5\xbd\x95\x0a\x6f\x70\x65\x6e\
-\x44\x61\x74\x61\x73\x65\x74\x44\x69\x72\x3d\xe6\x89\x93\xe5\xbc\
-\x80\xe6\x95\xb0\xe6\x8d\xae\xe9\x9b\x86\xe8\xb7\xaf\xe5\xbe\x84\
-\x0a\x63\x6f\x70\x79\x50\x72\x65\x76\x42\x6f\x75\x6e\x64\x69\x6e\
-\x67\x3d\xe5\xa4\x8d\xe5\x88\xb6\xe5\xbd\x93\xe5\x89\x8d\xe5\x9b\
-\xbe\xe5\x83\x8f\xe4\xb8\xad\xe7\x9a\x84\xe4\xb8\x8a\xe4\xb8\x80\
-\xe4\xb8\xaa\xe8\xbe\xb9\xe7\x95\x8c\xe6\xa1\x86\x0a\x73\x68\x6f\
-\x77\x48\x69\x64\x65\x3d\xe6\x98\xbe\xe7\xa4\xba\x2f\xe9\x9a\x90\
-\xe8\x97\x8f\xe6\xa0\x87\xe7\xad\xbe\x0a\x63\x68\x61\x6e\x67\x65\
-\x53\x61\x76\x65\x46\x6f\x72\x6d\x61\x74\x3d\xe6\x9b\xb4\xe6\x94\
-\xb9\xe5\xad\x98\xe5\x82\xa8\xe6\xa0\xbc\xe5\xbc\x8f\x0a\x73\x68\
-\x61\x70\x65\x46\x69\x6c\x6c\x43\x6f\x6c\x6f\x72\x3d\xe5\xa1\xab\
-\xe5\x85\x85\xe9\xa2\x9c\xe8\x89\xb2\x0a\x71\x75\x69\x74\x41\x70\
-\x70\x3d\xe9\x80\x80\xe5\x87\xba\xe7\xa8\x8b\xe5\xba\x8f\x0a\x64\
-\x75\x70\x42\x6f\x78\x3d\xe5\xa4\x8d\xe5\x88\xb6\xe5\x8c\xba\xe5\
-\x9d\x97\x0a\x64\x65\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\
-\xe5\x88\xa0\xe9\x99\xa4\xe5\x8c\xba\xe5\x9d\x97\x0a\x7a\x6f\x6f\
-\x6d\x69\x6e\x3d\xe6\x94\xbe\xe5\xa4\xa7\xe7\x94\xbb\xe9\x9d\xa2\
-\x0a\x69\x6e\x66\x6f\x3d\xe4\xbf\xa1\xe6\x81\xaf\x0a\x6f\x70\x65\
-\x6e\x41\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x3d\xe5\xbc\x80\xe5\
-\x90\xaf\xe6\xa0\x87\xe7\xad\xbe\x0a\x70\x72\x65\x76\x49\x6d\x67\
-\x44\x65\x74\x61\x69\x6c\x3d\xe4\xb8\x8a\xe4\xb8\x80\xe4\xb8\xaa\
-\xe5\x9b\xbe\xe5\x83\x8f\x0a\x66\x69\x74\x57\x69\x64\x74\x68\x3d\
-\xe7\xbc\xa9\xe6\x94\xbe\xe5\x88\xb0\xe5\xbd\x93\xe5\x89\x8d\xe7\
-\x94\xbb\xe9\x9d\xa2\xe5\xae\xbd\xe5\xba\xa6\x0a\x7a\x6f\x6f\x6d\
-\x6f\x75\x74\x3d\xe7\xbc\xa9\xe5\xb0\x8f\xe7\x94\xbb\xe9\x9d\xa2\
-\x0a\x63\x68\x61\x6e\x67\x65\x53\x61\x76\x65\x64\x41\x6e\x6e\x6f\
-\x74\x61\x74\x69\x6f\x6e\x44\x69\x72\x3d\xe6\x9b\xb4\xe6\x94\xb9\
-\xe4\xbf\x9d\xe5\xad\x98\xe6\xa0\x87\xe7\xad\xbe\xe6\x96\x87\xe4\
-\xbb\xb6\xe7\x9a\x84\xe9\xa2\x84\xe8\xae\xbe\xe7\x9b\xae\xe5\xbd\
-\x95\x0a\x6e\x65\x78\x74\x49\x6d\x67\x44\x65\x74\x61\x69\x6c\x3d\
-\xe4\xb8\x8b\xe4\xb8\x80\xe4\xb8\xaa\xe5\x9b\xbe\xe5\x83\x8f\x0a\
-\x6f\x72\x69\x67\x69\x6e\x61\x6c\x73\x69\x7a\x65\x44\x65\x74\x61\
-\x69\x6c\x3d\xe6\x94\xbe\xe5\xa4\xa7\xe5\x88\xb0\xe5\x8e\x9f\xe5\
-\xa7\x8b\xe5\xa4\xa7\xe5\xb0\x8f\x0a\x70\x72\x65\x76\x49\x6d\x67\
-\x3d\xe4\xb8\x8a\xe4\xb8\x80\xe5\xbc\xa0\x0a\x74\x75\x74\x6f\x72\
-\x69\x61\x6c\x44\x65\x74\x61\x69\x6c\x3d\xe6\x98\xbe\xe7\xa4\xba\
-\xe7\xa4\xba\xe8\x8c\x83\xe5\x86\x85\xe5\xae\xb9\x0a\x73\x68\x61\
-\x70\x65\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x3d\xe5\xbd\xa2\xe7\
-\x8a\xb6\xe7\xba\xbf\xe6\x9d\xa1\xe9\xa2\x9c\xe8\x89\xb2\x0a\x62\
-\x6f\x78\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x3d\xe5\x8c\xba\xe5\
-\x9d\x97\xe7\xba\xbf\xe6\x9d\xa1\xe9\xa2\x9c\xe8\x89\xb2\x0a\x65\
-\x64\x69\x74\x4c\x61\x62\x65\x6c\x44\x65\x74\x61\x69\x6c\x3d\xe4\
-\xbf\xae\xe6\x94\xb9\xe5\xbd\x93\xe5\x89\x8d\xe6\x89\x80\xe9\x80\
-\x89\xe7\x9a\x84\xe5\x8c\xba\xe5\x9d\x97\xe9\xa2\x9c\xe8\x89\xb2\
-\x0a\x6e\x65\x78\x74\x49\x6d\x67\x3d\xe4\xb8\x8b\xe4\xb8\x80\xe5\
-\xbc\xa0\x0a\x75\x73\x65\x44\x65\x66\x61\x75\x6c\x74\x4c\x61\x62\
-\x65\x6c\x3d\xe4\xbd\xbf\xe7\x94\xa8\xe9\xa2\x84\xe8\xae\xbe\xe6\
-\xa0\x87\xe7\xad\xbe\x0a\x75\x73\x65\x44\x69\x66\x66\x69\x63\x75\
-\x6c\x74\x3d\xe6\x9c\x89\xe9\x9a\xbe\xe5\xba\xa6\xe7\x9a\x84\x0a\
-\x62\x6f\x78\x4c\x61\x62\x65\x6c\x54\x65\x78\x74\x3d\xe5\x8c\xba\
-\xe5\x9d\x97\xe7\x9a\x84\xe6\xa0\x87\xe7\xad\xbe\x0a\x6c\x61\x62\
-\x65\x6c\x73\x3d\xe6\xa0\x87\xe7\xad\xbe\x0a\x61\x75\x74\x6f\x53\
-\x61\x76\x65\x4d\x6f\x64\x65\x3d\xe8\x87\xaa\xe5\x8a\xa8\xe4\xbf\
-\x9d\xe5\xad\x98\xe6\xa8\xa1\xe5\xbc\x8f\x0a\x73\x69\x6e\x67\x6c\
-\x65\x43\x6c\x73\x4d\x6f\x64\x65\x3d\xe5\x8d\x95\xe4\xb8\x80\xe7\
-\xb1\xbb\xe5\x88\xab\xe6\xa8\xa1\xe5\xbc\x8f\x0a\x64\x69\x73\x70\
-\x6c\x61\x79\x4c\x61\x62\x65\x6c\x3d\xe6\x98\xbe\xe7\xa4\xba\xe7\
-\xb1\xbb\xe5\x88\xab\x0a\x66\x69\x6c\x65\x4c\x69\x73\x74\x3d\xe6\
-\x96\x87\xe4\xbb\xb6\xe5\x88\x97\xe8\xa1\xa8\x0a\x66\x69\x6c\x65\
-\x73\x3d\xe6\x96\x87\xe4\xbb\xb6\x0a\x61\x64\x76\x61\x6e\x63\x65\
-\x64\x4d\x6f\x64\x65\x3d\xe4\xb8\x93\xe5\xae\xb6\xe6\xa8\xa1\xe5\
-\xbc\x8f\x0a\x61\x64\x76\x61\x6e\x63\x65\x64\x4d\x6f\x64\x65\x44\
-\x65\x74\x61\x69\x6c\x3d\xe5\x88\x87\xe6\x8d\xa2\xe5\x88\xb0\xe4\
-\xb8\x93\xe5\xae\xb6\xe6\xa8\xa1\xe5\xbc\x8f\x0a\x73\x68\x6f\x77\
-\x41\x6c\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\xe6\x98\xbe\
-\xe7\xa4\xba\xe6\x89\x80\xe6\x9c\x89\xe5\x8c\xba\xe5\x9d\x97\x0a\
-\x68\x69\x64\x65\x41\x6c\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\
-\x3d\xe9\x9a\x90\xe8\x97\x8f\xe6\x89\x80\xe6\x9c\x89\xe5\x8c\xba\
-\xe5\x9d\x97\x0a\x61\x6e\x6e\x6f\x50\x61\x6e\x65\x6c\x3d\xe6\xa0\
-\x87\xe6\xb3\xa8\xe9\x9d\xa2\xe6\x9d\xbf\x0a\x61\x6e\x6e\x6f\x3d\
-\xe6\xa0\x87\xe6\xb3\xa8\x0a\x61\x64\x64\x4e\x65\x77\x42\x62\x6f\
-\x78\x3d\xe6\x96\xb0\xe6\xa1\x86\x0a\x72\x65\x4c\x61\x62\x65\x6c\
-\x3d\xe9\x87\x8d\xe6\xa0\x87\xe6\xb3\xa8\x0a\x63\x68\x6f\x6f\x73\
-\x65\x6d\x6f\x64\x65\x6c\x3d\xe9\x80\x89\xe6\x8b\xa9\xe6\xa8\xa1\
-\xe5\x9e\x8b\x0a\x74\x69\x70\x63\x68\x6f\x6f\x73\x65\x6d\x6f\x64\
-\x65\x6c\x3d\xe9\x80\x89\xe6\x8b\xa9\x4f\x43\x52\xe6\xa8\xa1\xe5\
-\x9e\x8b\x0a\x49\x6d\x61\x67\x65\x52\x65\x73\x69\x7a\x65\x3d\xe5\
-\x9b\xbe\xe7\x89\x87\xe7\xbc\xa9\xe6\x94\xbe\x0a\x49\x52\x3d\xe5\
-\x9b\xbe\xe7\x89\x87\xe7\xbc\xa9\xe6\x94\xbe\x0a\x61\x75\x74\x6f\
-\x52\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x3d\xe8\x87\xaa\xe5\
-\x8a\xa8\xe6\xa0\x87\xe6\xb3\xa8\x0a\x72\x65\x52\x65\x63\x6f\x67\
-\x6e\x69\x74\x69\x6f\x6e\x3d\xe9\x87\x8d\xe6\x96\xb0\xe8\xaf\x86\
-\xe5\x88\xab\x0a\x6d\x66\x69\x6c\x65\x3d\xe6\x96\x87\xe4\xbb\xb6\
-\x0a\x6d\x65\x64\x69\x74\x3d\xe7\xbc\x96\xe8\xbe\x91\x0a\x6d\x76\
-\x69\x65\x77\x3d\xe8\xa7\x86\xe5\x9b\xbe\x0a\x6d\x68\x65\x6c\x70\
-\x3d\xe5\xb8\xae\xe5\x8a\xa9\x0a\x69\x63\x6f\x6e\x4c\x69\x73\x74\
-\x3d\xe7\xbc\xa9\xe7\x95\xa5\xe5\x9b\xbe\x0a\x64\x65\x74\x65\x63\
-\x74\x69\x6f\x6e\x42\x6f\x78\x70\x6f\x73\x69\x74\x69\x6f\x6e\x3d\
-\xe6\xa3\x80\xe6\xb5\x8b\xe6\xa1\x86\xe4\xbd\x8d\xe7\xbd\xae\x0a\
-\x72\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x52\x65\x73\x75\x6c\
-\x74\x3d\xe8\xaf\x86\xe5\x88\xab\xe7\xbb\x93\xe6\x9e\x9c\x0a\x63\
-\x72\x65\x61\x74\x50\x6f\x6c\x79\x67\x6f\x6e\x3d\xe5\x9b\x9b\xe7\
-\x82\xb9\xe6\xa0\x87\xe6\xb3\xa8\x0a\x64\x72\x61\x77\x53\x71\x75\
-\x61\x72\x65\x73\x3d\xe6\xad\xa3\xe6\x96\xb9\xe5\xbd\xa2\xe6\xa0\
-\x87\xe6\xb3\xa8\x0a\x72\x6f\x74\x61\x74\x65\x4c\x65\x66\x74\x3d\
-\xe5\x9b\xbe\xe7\x89\x87\xe5\xb7\xa6\xe6\x97\x8b\xe8\xbd\xac\x39\
-\x30\xe5\xba\xa6\x0a\x72\x6f\x74\x61\x74\x65\x52\x69\x67\x68\x74\
-\x3d\xe5\x9b\xbe\xe7\x89\x87\xe5\x8f\xb3\xe6\x97\x8b\xe8\xbd\xac\
-\x39\x30\xe5\xba\xa6\x0a\x73\x61\x76\x65\x52\x65\x63\x3d\xe5\xaf\
-\xbc\xe5\x87\xba\xe8\xaf\x86\xe5\x88\xab\xe7\xbb\x93\xe6\x9e\x9c\
-\x0a\x74\x65\x6d\x70\x4c\x61\x62\x65\x6c\x3d\xe5\xbe\x85\xe8\xaf\
-\x86\xe5\x88\xab\x0a\x6e\x75\x6c\x6c\x4c\x61\x62\x65\x6c\x3d\xe6\
-\x97\xa0\xe6\xb3\x95\xe8\xaf\x86\xe5\x88\xab\x0a\x73\x74\x65\x70\
-\x73\x3d\xe6\x93\x8d\xe4\xbd\x9c\xe6\xad\xa5\xe9\xaa\xa4\x0a\x6b\
-\x65\x79\x73\x3d\xe5\xbf\xab\xe6\x8d\xb7\xe9\x94\xae\x0a\x63\x68\
-\x6f\x73\x65\x4d\x6f\x64\x65\x6c\x4c\x67\x3d\xe9\x80\x89\xe6\x8b\
-\xa9\xe6\xa8\xa1\xe5\x9e\x8b\xe8\xaf\xad\xe8\xa8\x80\x0a\x63\x61\
-\x6e\x63\x65\x6c\x3d\xe5\x8f\x96\xe6\xb6\x88\x0a\x6f\x6b\x3d\xe7\
-\xa1\xae\xe8\xae\xa4\x0a\x61\x75\x74\x6f\x6c\x61\x62\x65\x6c\x69\
-\x6e\x67\x3d\xe8\x87\xaa\xe5\x8a\xa8\xe6\xa0\x87\xe6\xb3\xa8\xe4\
-\xb8\xad\x0a\x68\x69\x64\x65\x42\x6f\x78\x3d\xe9\x9a\x90\xe8\x97\
-\x8f\xe6\x89\x80\xe6\x9c\x89\xe6\xa0\x87\xe6\xb3\xa8\x0a\x73\x68\
-\x6f\x77\x42\x6f\x78\x3d\xe6\x98\xbe\xe7\xa4\xba\xe6\x89\x80\xe6\
-\x9c\x89\xe6\xa0\x87\xe6\xb3\xa8\x0a\x73\x61\x76\x65\x4c\x61\x62\
-\x65\x6c\x3d\xe5\xaf\xbc\xe5\x87\xba\xe6\xa0\x87\xe8\xae\xb0\xe7\
-\xbb\x93\xe6\x9e\x9c\x0a\x73\x69\x6e\x67\x6c\x65\x52\x65\x3d\xe9\
-\x87\x8d\xe8\xaf\x86\xe5\x88\xab\xe6\xad\xa4\xe5\x8c\xba\xe5\x9d\
-\x97\x0a\x6c\x61\x62\x65\x6c\x44\x69\x61\x6c\x6f\x67\x4f\x70\x74\
-\x69\x6f\x6e\x3d\xe5\xbc\xb9\xe5\x87\xba\xe6\xa0\x87\xe8\xae\xb0\
-\xe8\xbe\x93\xe5\x85\xa5\xe6\xa1\x86\x0a\x75\x6e\x64\x6f\x3d\xe6\
-\x92\xa4\xe9\x94\x80\x0a\x75\x6e\x64\x6f\x4c\x61\x73\x74\x50\x6f\
-\x69\x6e\x74\x3d\xe6\x92\xa4\xe9\x94\x80\xe4\xb8\x8a\xe4\xb8\xaa\
-\xe7\x82\xb9\x0a\x61\x75\x74\x6f\x53\x61\x76\x65\x4d\x6f\x64\x65\
-\x3d\xe8\x87\xaa\xe5\x8a\xa8\xe5\xaf\xbc\xe5\x87\xba\xe6\xa0\x87\
-\xe8\xae\xb0\xe7\xbb\x93\xe6\x9e\x9c\
-\x00\x00\x04\x44\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
-\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd3\x0a\x17\x0a\x12\x16\x5e\xb7\xf3\xf2\x00\x00\x00\x1d\x74\x45\
-\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\
-\x64\x20\x77\x69\x74\x68\x20\x54\x68\x65\x20\x47\x49\x4d\x50\xef\
-\x64\x25\x6e\x00\x00\x03\xa8\x49\x44\x41\x54\x78\xda\xad\x96\x5f\
-\x68\x1c\x55\x18\xc5\x7f\x77\x76\x36\x9b\x34\xe9\xda\x6e\xda\xb2\
-\x2a\x98\x27\x31\x55\xfa\x66\xdb\x6d\x82\x42\x5e\x35\x45\xf0\x29\
-\x46\x10\x82\xe0\x83\xa2\x82\xb5\x11\x04\x8b\xcf\xea\x8b\x0f\xe2\
-\x9f\x60\x7c\x08\x41\x6a\x71\x5b\xcd\xa3\x88\x6d\xd3\xc4\x9a\x36\
-\x69\x35\x14\x2a\xad\x94\xe2\x96\x4d\x28\x49\x48\xc8\xee\xce\xec\
-\xcc\xbd\x9f\x0f\x33\x3b\xfb\x67\x92\xda\xa2\x1f\x5c\x66\x19\x66\
-\xce\x39\xdf\xf9\xee\x3d\xb3\xf0\x3f\xd4\xd0\xd0\x90\x75\x3f\xcf\
-\xbd\x04\xc8\x03\xac\x32\xb0\x91\x4e\xa7\xa5\xb7\xb7\x57\x46\x46\
-\x46\x6e\x00\xed\x80\xda\x8e\x40\x16\x17\x17\xa5\x5c\x2e\xcb\xbf\
-\x95\xeb\xba\xe2\xba\x8e\xb8\xae\x23\xc5\x62\x51\x0a\x85\x82\xcc\
-\xcf\xcf\x4b\x4f\x4f\x4f\x01\xd8\x03\x6c\xd9\xd1\x7d\x81\xd7\x49\
-\x1c\x59\x5b\x5b\x95\xd3\xa7\xf3\xb2\xbc\xbc\x2c\x22\x22\x53\x53\
-\x53\x92\xcb\xe5\x34\x90\xae\x91\xd8\x8d\x0c\x1d\x1d\x1d\x00\x4c\
-\x4f\x4f\xc7\xd9\x45\x50\x4a\x21\x22\x88\x08\x5a\xfb\x38\x8e\x4b\
-\xa9\x54\x22\x95\x4a\x01\x30\x30\x30\x80\xe3\x38\xd6\xf0\xf0\xf0\
-\xc7\x9e\xe7\xbd\x13\xda\xd8\x88\x11\x2f\x63\x8c\x68\xad\xc5\xf7\
-\xbd\xe8\xea\x79\x9e\xb8\xae\x23\x1b\x1b\x1b\x32\x3e\x3e\xbe\xdd\
-\x8c\x46\x80\xa4\x6a\x21\x88\x3a\xa8\x29\x15\x31\x04\xb7\x25\x9c\
-\x5f\x70\x1f\xc0\xf7\x35\x4b\x4b\x45\xb2\xfb\xf6\xf1\xdb\xa5\x39\
-\x4e\x9c\xf8\x10\xaf\xd8\x4f\xe5\x4a\x86\xf4\x73\x53\x00\x9d\x31\
-\x82\x56\xe0\xe0\x2a\x4d\x16\x21\x82\xb2\x2c\xaa\xae\xcb\xca\xea\
-\x2a\x9e\xeb\xf0\xf8\x13\xfb\xf1\xef\x3e\x83\x37\x97\xe2\xb5\xb1\
-\xa2\x4c\x9c\xb9\xa6\x80\xbd\x76\xab\xd7\xc6\x68\xce\x9f\x9f\x8e\
-\x94\x06\x80\x20\x08\x0a\x85\x84\x0e\x18\x2d\x18\xa3\x31\xc6\xf0\
-\xfc\xe0\x51\xfc\xe5\x7e\xbc\xb9\x76\x8e\x7f\xb7\x46\x08\xfe\x3e\
-\xd0\x1e\xeb\xc0\xf3\xaa\x0d\xc0\x21\x09\x82\x18\x41\x59\x0a\x31\
-\x75\x8b\x44\x84\x9d\xe9\x87\xa8\x16\xfa\xa8\x2e\xec\xe0\xcd\xc9\
-\x4d\xbe\x39\x79\xb1\x86\xf7\x32\x70\x6e\x8b\x0e\x0c\x17\xa6\x2f\
-\x44\x4a\x03\xc0\x78\x07\xbe\xaf\x19\x1c\x3c\x8a\x7b\xeb\x08\xee\
-\xa5\x76\x5e\x9f\x58\x65\x22\xbf\xc0\xdb\x6f\xbc\xca\xa7\x9f\x7d\
-\x0d\xb0\x0e\x38\x71\x02\xad\x39\xd2\x97\x43\x4c\xa8\xb2\xc1\xaa\
-\x68\x9b\x1a\xc3\xae\xdd\xdd\xb8\x37\x73\x94\xaf\xed\xe1\xbd\x53\
-\x77\x98\xc8\x2f\x30\xf6\xe5\xe7\xdc\xbe\x75\xbd\x06\xb5\x06\xb8\
-\x5b\x77\x30\x33\x13\xf8\x1c\xda\x61\x85\xc0\x4a\xa9\xc8\x73\xe7\
-\xfa\x61\x2a\xf3\x29\x46\xcf\xfc\xcd\xd8\xb7\x57\x19\x1d\x3d\x46\
-\xa6\x3b\x43\x69\x3d\x53\x83\xaa\x00\xda\xde\xea\x48\xf7\xf7\xf5\
-\x21\x08\xc6\x98\x26\x02\x80\x5d\xbb\xbb\x29\xff\x71\x88\xd2\xe5\
-\x14\x6f\xe5\xd7\x99\xcc\x5f\x65\xec\xab\x2f\xc8\x64\x32\x3c\x9c\
-\xcd\xb2\xbe\x72\x27\xd2\x1a\x3b\xc9\x00\xbe\xf6\x99\x99\x99\xad\
-\xcd\x3d\x1c\x74\x30\x50\xcf\xf3\x00\xb8\x7d\xf3\x59\x3e\xfa\xf1\
-\x27\x26\xf3\xbf\x73\xfc\xdd\x63\x14\x97\x96\x10\x84\x03\x07\x9e\
-\x42\xb5\x44\x5d\x8c\x40\x6b\x4d\xee\xf0\xa1\x48\x71\x6d\xb7\x78\
-\x5e\x95\x47\x1e\x7d\x8c\x17\x06\xf6\xb2\xff\xc5\x4f\x00\xf8\xfe\
-\xd4\x49\xba\x76\x76\x91\xcd\x66\x49\xa5\xda\x50\x4a\x61\x29\xeb\
-\xde\x04\x46\x6b\x66\x67\x67\x43\x60\xa2\xf3\xe0\xba\x2e\x00\x3f\
-\xfc\x72\x97\x73\x67\x7f\x46\x59\x8a\xae\xce\x4e\x6c\x3b\x49\x5b\
-\x5b\x92\x44\x22\x81\x52\xf1\xa4\x8e\x5b\xe4\x7b\x1c\x3c\xf8\x74\
-\x93\x7a\x31\x06\x5f\xfb\xfc\x75\xe3\x4f\x94\x05\x95\x8a\x43\x32\
-\x69\x07\xf3\xb1\xac\xe8\xcc\x68\xad\x31\x46\x6f\x4f\x50\xad\x56\
-\xd1\x5a\x87\xf6\x04\xfb\x1e\x15\xcc\xc5\x18\x83\x36\x3e\xc6\x37\
-\x24\x93\x36\x89\x44\xa2\x1e\x1b\x4a\x45\xef\x35\x38\x1b\x27\xd8\
-\xdc\xdc\x44\x6b\x1d\x78\xa3\x68\x52\xa8\x94\x42\x29\x85\x6d\xdb\
-\xc1\xef\xb0\xbb\xda\xdc\x1a\xb3\xab\xb1\x9a\x26\x52\x28\x14\x40\
-\x0c\x22\x06\x63\xea\xab\x51\xa9\xa5\x14\xad\x32\x83\x38\x21\xcc\
-\x26\xd9\xbe\x83\x8b\xbf\x9e\x65\x47\x9b\x0a\x22\x41\x24\x8a\x68\
-\x23\x26\x0c\x6a\x1a\x94\xab\xc8\xef\x1a\xa8\x11\xc3\xe5\x85\x2b\
-\xd4\xf7\x78\x73\xbd\xf2\x80\x1f\xfd\x7b\xad\x0f\x80\x27\x5b\xd3\
-\xd4\x06\xba\xc3\x95\xfc\x8f\xff\x64\x3c\x60\x05\x58\xf9\x07\xbb\
-\x78\x04\xf0\x58\x0d\x4c\x09\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
-\x42\x60\x82\
-\x00\x00\x04\x4b\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
-\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
-\xd2\x01\x07\x0b\x04\x27\xfe\xa6\x99\x03\x00\x00\x03\xc8\x49\x44\
-\x41\x54\x78\xda\xb5\x96\xc1\x4b\x1c\x67\x14\xc0\x7f\xdf\xb7\x3a\
-\x8b\xee\xae\x6e\xdd\x55\x10\xa3\x2b\x9a\x43\x2f\x5a\x0d\x7a\x70\
-\x84\x28\xe8\x65\x23\xae\x04\xeb\x51\x3d\xd4\xc3\x5e\x52\x30\x37\
-\xff\x02\x0f\x42\xc0\xff\xa0\x3d\x84\x1e\x96\x88\x94\x56\xd0\x9e\
-\x84\x44\xa3\xd2\x9a\x88\x20\xba\x4a\x52\xc1\x48\x58\x11\x5a\x75\
-\x67\x66\x67\xbe\x99\x5e\xdc\xa9\x6d\xa3\x96\x62\x3f\x78\xf0\x78\
-\xf3\x78\xbf\xef\xbd\xc7\x7b\xdf\xc0\xff\x7c\xc4\x75\x1f\x92\xc9\
-\x64\x2a\x97\xcb\x8d\x58\x96\xa5\x3b\x8e\xd3\xa0\x94\x02\x38\x04\
-\x56\x2a\x2b\x2b\x33\x1b\x1b\x1b\xdf\xff\x27\xc0\xe8\xe8\xe8\x83\
-\xb7\x6f\xdf\x3e\x93\x52\xf6\xf4\xf5\xf5\xd1\xda\xda\x4a\x2c\x16\
-\xc3\x75\x5d\x72\xb9\x1c\xeb\xeb\xeb\x2c\x2e\x2e\xe2\x38\xce\x72\
-\x5d\x5d\xdd\xd3\xb5\xb5\xb5\x5f\xfe\x35\xa0\xb7\xb7\x37\x75\x7c\
-\x7c\xfc\x42\xd7\xf5\x92\xe1\xe1\x61\x6a\x6a\x6a\x28\x2d\x2d\x45\
-\x08\x81\xeb\xba\xd8\xb6\x8d\x69\x9a\x7c\xf8\xf0\x81\xe7\xcf\x9f\
-\xb3\xba\xba\xea\x44\xa3\xd1\xe1\x83\x83\x83\x6b\xb3\x09\x14\x95\
-\xa1\xa1\xa1\x07\xd9\x6c\xf6\xa7\xc7\x8f\x1f\x97\x8c\x8f\x8f\x13\
-\x8f\xc7\x89\x44\x22\x54\x55\x55\x11\x8f\xc7\xa9\xae\xae\x26\x16\
-\x8b\x11\x0e\x87\x09\x87\xc3\xb4\xb4\xb4\x60\x18\x86\x7c\xf3\xe6\
-\xcd\xc8\xbd\x7b\xf7\x7e\x3c\x3d\x3d\x3d\xbe\x11\x50\x28\x14\xbe\
-\xd3\x75\xbd\x69\x62\x62\x82\x70\x38\x4c\x34\x1a\xa5\xba\xba\x9a\
-\x70\x38\x4c\x30\x18\x24\x10\x08\x10\x08\x04\x08\x06\x83\x44\x22\
-\x11\x42\xa1\x10\xcd\xcd\xcd\xec\xed\xed\xc9\xfd\xfd\xfd\xcf\x2d\
-\xcb\xfa\xe6\x53\x00\x09\xd0\xd6\xd6\x96\x72\x5d\xb7\x67\x6c\x6c\
-\x8c\xf2\xf2\x72\xa2\xd1\x28\xf1\x78\x1c\x4d\xd3\x08\x04\x02\x3c\
-\x7a\xf4\x88\x81\x81\x01\x1f\x22\xa5\x24\x14\x0a\xd1\xd4\xd4\x44\
-\x3a\x9d\xc6\xf3\xbc\x9e\xaa\xaa\xaa\xd4\xb5\x80\x5c\x2e\x37\x92\
-\x4a\xa5\xa8\xad\xad\x25\x14\x0a\x51\x51\x51\x81\x10\x02\x29\x25\
-\x42\xfc\xd9\x26\x21\x04\x42\x08\x1f\x22\xa5\xa4\xad\xad\x8d\x64\
-\x32\x89\x61\x18\x23\xd7\x02\x2c\xcb\xd2\xbb\xbb\xbb\xd1\x34\x8d\
-\x48\x24\x82\x10\x02\xcf\xf3\xf0\x3c\xef\x2f\xce\x45\xdb\x55\xbb\
-\x10\x82\xfe\xfe\x7e\x94\x52\xfa\xa7\x00\x25\x00\x4a\xa9\x86\xfa\
-\xfa\x7a\x82\xc1\xa0\x1f\x7c\x60\x60\xc0\x0f\x70\x65\x36\x7c\x40\
-\x26\x93\xf1\xf5\xfb\xf7\xef\x03\x34\xdc\x04\x40\x08\x41\x49\x49\
-\x09\x4a\x29\x94\x52\x78\x9e\xe7\xc3\x3e\x95\x81\x52\x0a\xdb\xb6\
-\x71\x1c\x07\xdb\xb6\xff\x91\xed\xdf\x01\x87\xef\xde\xbd\x6b\xaa\
-\xab\xab\xc3\xb6\x6d\x84\x10\xcc\xcd\xcd\xf9\xb5\x1e\x1c\x1c\x04\
-\x60\x7e\x7e\x1e\xc7\x71\x50\x4a\x61\x9a\x26\xb6\x6d\x53\x28\x14\
-\xd8\xdd\xdd\x45\x29\x75\x78\x6d\x0f\x3c\xcf\x5b\x59\x5a\x5a\xc2\
-\x34\x4d\x0a\x85\x02\x96\x65\x51\x28\x14\x7c\xdd\x75\x5d\x5c\xd7\
-\xf5\x6d\xa6\x69\x62\x18\x06\x96\x65\x61\x59\x16\x8b\x8b\x8b\xb8\
-\xae\xbb\x72\x2d\x40\x4a\x99\xc9\x64\x32\x64\xb3\x59\x0c\xc3\x20\
-\x9f\xcf\x63\x18\x86\x2f\x45\x40\x3e\x9f\xf7\xc5\xb2\x2c\x0c\xc3\
-\x60\x67\x67\x87\x85\x85\x05\x80\xcc\x4d\xab\x22\xa1\x69\xda\xb7\
-\x9d\x9d\x9d\x3d\xb3\xb3\xb3\x68\x9a\x86\x94\x12\x4d\xd3\xfc\x3e\
-\x08\x21\xfc\xfe\x14\x57\xc6\xc5\xc5\x05\x93\x93\x93\x6c\x6d\x6d\
-\x2d\x03\xbd\x37\x4d\xf2\x6f\x52\xca\xad\xa3\xa3\xa3\xaf\x3e\x7e\
-\xfc\x28\xdb\xdb\xdb\xfd\xe6\x15\xcb\x65\x18\x86\x5f\x9e\x7c\x3e\
-\xcf\xd9\xd9\x19\x33\x33\x33\xac\xae\xae\x3a\xc0\xd7\x40\xf6\xc6\
-\x55\xe1\xba\xae\x26\x84\x58\xde\xdd\xdd\x1d\xd9\xdc\xdc\x94\xf5\
-\xf5\xf5\x94\x95\x95\xf9\xc1\x8b\xf5\x3e\x3f\x3f\x67\x7b\x7b\x9b\
-\xe9\xe9\x69\x5e\xbf\x7e\xed\x00\x79\xe0\x4b\xe0\x14\xf8\xf9\xb6\
-\x75\x9d\x00\x62\x42\x88\x67\x52\xca\x9e\x87\x0f\x1f\xd2\xd5\xd5\
-\x45\x63\x63\x23\x00\x07\x07\x07\xbc\x7a\xf5\x8a\x97\x2f\x5f\x02\
-\x2c\x03\x4f\x81\x17\xc0\x67\x97\x97\x3d\x01\x9e\x00\x3f\xdc\xf6\
-\xe0\x24\x80\x2f\x80\x11\x40\xbf\x32\x44\x87\xc0\xca\x65\x43\x4f\
-\x80\x23\x80\xc6\xc6\xc6\x6d\x40\xbc\x7f\xff\x5e\x02\x36\x90\xbc\
-\xf4\xbb\xf5\x24\x6e\x90\xab\x3e\x27\xe9\x74\xda\xee\xe8\xe8\x30\
-\x80\xdf\x2f\xcb\x96\xb8\xcb\xa7\x37\x01\x9c\x4d\x4d\x4d\x29\x5d\
-\xd7\x1d\xe0\x0c\x38\xbf\x4b\x48\x31\x2b\x33\x9d\x4e\xdb\x89\x44\
-\xc2\xbe\x6b\xc0\x55\xc8\x31\xa0\x80\x1e\x20\x21\xee\xf8\x2f\xe5\
-\xea\x8d\x7f\x05\xf8\x03\xd8\xcb\xf0\xd4\x8e\x80\x5e\x37\x00\x00\
-\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x08\x96\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
-\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
-\xa7\x93\x00\x00\x08\x4b\x49\x44\x41\x54\x68\x81\xed\x99\x59\x6c\
-\x5c\xd5\x1d\x87\xbf\xbb\xcc\xea\x59\x3c\xbb\x97\xc4\x4b\xbc\x11\
-\x27\x26\x09\x01\x15\x2a\x14\xd4\x96\x50\xa9\x0b\x11\x09\xa8\x55\
-\x91\x20\x2f\x54\x95\xda\xbe\x54\x7d\xaa\x5a\x35\x20\x2a\xf1\x90\
-\x87\x2a\x40\xa1\x2a\x05\x4a\x68\x1a\x22\x91\x92\x86\xe0\x42\xd2\
-\x34\x24\x61\xb1\xe3\x38\xb6\x63\x3b\xc1\x8e\x67\xbc\x3b\x33\xe3\
-\x75\x3c\xcb\x9d\x99\xbb\xf4\xc1\xa4\x35\x59\x88\x1d\x4c\xcd\x83\
-\x3f\xe9\x3c\xcd\x3d\x67\xbe\xdf\x3d\x77\xce\xcc\xff\x3f\xb0\xc2\
-\x0a\x2b\xac\xb0\xc2\x17\x40\x58\x6e\x81\x9b\xb2\x0b\x91\x20\x15\
-\x38\x88\xf2\x18\xa9\xab\x5f\x16\x97\xc3\x69\xc1\xbc\x48\x0d\x21\
-\x3e\x10\x4c\x42\x1f\x09\x22\x3c\xce\xba\xab\x2f\x91\x96\xc3\xeb\
-\xa6\x18\x08\x04\xf9\x19\x08\x07\x03\x45\xc1\xca\xfa\xda\x3a\xd2\
-\x8a\x52\xa0\x8c\x2a\xe5\xb4\x70\x04\xc8\x5e\xb9\x54\x5e\x46\xcd\
-\xeb\xf3\xbc\x6d\xb5\xf0\xac\xfa\x8a\xc5\x6a\xfa\x56\x79\xd5\x2a\
-\xbe\x53\xbd\x86\x98\xa2\x70\x49\x17\x11\xf2\x92\xd5\x40\x0b\x01\
-\x33\x57\x2e\xff\x4a\x05\x90\xf6\x58\x1f\x13\x54\xfd\x59\x7f\x49\
-\xd0\xb5\xb1\xae\x8c\x9d\x95\x95\x1c\x8b\x46\x79\xbf\x3b\xcc\xec\
-\xe5\x64\xc6\x38\x66\x9c\x02\x94\xf9\x73\xbe\x12\x01\x6c\x7b\x6c\
-\xab\x54\x55\x7c\xc5\x24\x99\xee\x5f\x5d\x5b\xc4\xb6\xba\x4a\xb6\
-\x95\x96\xb2\x6f\x70\x90\xf7\x3a\xc3\x44\x7b\xc7\x33\xfa\x5f\xb5\
-\x17\xe9\xd7\x4f\x00\xa3\xf3\xe7\x2e\x7b\x00\xeb\x6e\xf7\x8f\xf5\
-\x1c\xbb\x7d\xa5\x2e\xe7\xda\xba\x12\x76\x56\x95\x53\xe3\x32\x73\
-\x70\x70\x84\x77\x3a\xc3\x44\x7b\x26\xb2\xfa\x81\xfc\xcb\x7a\xbb\
-\x7a\x18\xf8\x08\x50\xe7\xcf\x5f\xb6\x00\xce\xdd\x4e\xbf\xaa\x99\
-\xfe\x28\x49\xd2\xf6\xe2\x3a\x1f\x5b\xd7\xae\xe6\xc1\x32\x1b\x79\
-\x71\x98\xc6\x51\x0f\x6f\x75\x86\xb9\xdc\x3d\xa1\xaa\x87\x73\xaf\
-\x69\x2d\xf9\x43\xc0\x87\x40\xee\xea\x75\x96\x25\x80\xfd\x99\xd0\
-\x36\x2d\xaf\xbf\xe4\x0a\xd8\xfc\x55\xeb\x82\x3c\x5a\x53\x46\xd0\
-\xdb\xc7\x34\x59\x7a\x46\x6b\x38\xd0\xd6\xc7\x58\xc7\xa4\xaa\x1e\
-\xc9\xbe\xa6\x9d\x56\xfe\x0e\x9c\x66\xde\xc9\x33\x9f\xeb\x07\xd8\
-\x55\x61\xb5\xca\xd9\x90\xf2\xeb\xb1\x81\x25\x35\xdf\x55\x62\x77\
-\x48\xfa\x6e\x51\x10\x7f\x52\xb4\xd6\x2f\xdc\x53\x5b\xc4\xf6\x4a\
-\x3b\x31\xf3\x09\x14\xdc\x0c\x8c\xae\x67\x5f\x7b\x3f\xa3\x1d\x93\
-\x46\xfe\xb4\xf2\x56\xfe\x74\xfa\x2d\xe0\x24\x90\xb9\xd1\x92\xd7\
-\x7c\x13\x17\x3e\x5d\x5c\xae\x6b\xe2\x49\x41\x14\xca\xf4\xa4\xfe\
-\xb1\x31\xaa\x6d\x4b\xee\x8d\xc6\xbe\xa8\xbb\xf3\xa9\xd2\x7b\x04\
-\x43\xd8\x6b\x2d\x34\x57\x95\x37\x78\xf9\xc1\x6d\xa5\x54\x06\xe2\
-\x8c\xc9\x2d\x14\xe8\x41\x62\x97\x37\xf1\xfa\xf9\x61\x86\x5a\xc7\
-\xc9\x36\x25\x0f\x67\x0e\x4d\xfd\x05\x38\xc6\xbc\x23\xf3\x7a\x5c\
-\xb3\x03\x86\x6a\x7e\xc2\x19\xb4\x96\x15\xd7\xbb\x18\x39\x3f\x73\
-\x77\x4a\x4d\x35\x59\xb7\xb8\xbf\xa9\x9c\x9c\x89\xdc\x92\xf9\x9e\
-\x6a\x8b\x7b\x32\xf7\xa4\x80\xf0\x4b\xef\x1a\xa7\xd4\x50\xef\xe5\
-\xe1\x2a\x0f\x82\xf3\x13\xe2\xe2\x28\x36\xdd\x47\x32\xbe\x99\xbf\
-\x75\x8e\x30\x72\x76\x9a\x5c\xab\xf2\x5e\xe6\xd0\xd4\x3e\xe0\xf8\
-\xcd\xe4\xaf\x1b\x40\xcc\x4a\x26\x51\x17\x59\xef\x75\xe1\xdd\x6c\
-\xa5\x4b\x8b\x57\x24\x75\xf9\x38\xb0\xe8\x10\x85\xbf\xa9\xdc\x20\
-\x44\xf5\xd7\xcd\x2e\xeb\xfa\xe2\xf5\x6e\xb6\xd6\xf8\xb9\xbb\x4c\
-\x27\x65\xb9\x40\x96\x04\x66\xdd\x4d\x26\xb6\x91\x57\xce\x8f\x31\
-\x7c\x66\x86\x5c\x47\xe6\xfd\xf4\x9b\xf1\xd7\x80\x7f\x01\x53\x0b\
-\x79\x8f\x6b\x7e\x4a\x38\xbe\x5e\x38\x94\x4f\xf3\x53\xd5\x2b\x0b\
-\x8f\xd7\x17\x33\x61\x17\x99\x49\xa9\x85\x86\xcd\xb4\xc3\x70\xcb\
-\x87\xb5\xbe\xf4\xe4\x4d\x57\xdd\xb5\xce\xec\xbb\xd7\xf3\x3b\x11\
-\xf1\x55\x4f\x95\xa3\xe8\xf6\x3b\x03\xec\x6c\x08\xb1\xa6\x78\x96\
-\xac\x39\x8a\x86\x82\xa0\x59\x98\x8d\x35\xf0\x6a\x7b\x9c\xa1\xe6\
-\x69\xb2\x9d\xc9\x53\xc9\x03\x63\x7f\x66\xee\xb1\x59\xf0\x23\x7b\
-\x4d\x80\xf4\x07\xd3\x13\xf6\x3b\xfc\x5b\x74\x49\xaa\xf4\x15\x59\
-\xf8\xf6\x6a\x3f\x63\x26\x83\x44\x52\x77\x21\xcb\x3b\x64\x93\xf0\
-\x76\x6e\x30\x3d\x71\xa3\x05\x03\xbf\x5a\xb7\xd1\x96\xd3\xdf\xb5\
-\x14\x98\x1e\x2a\xd9\xe4\x11\xbf\xbb\x21\xc8\x83\x35\x2e\xac\xee\
-\x69\x54\x29\x85\x4e\x0e\x43\x17\x48\xc6\x6b\x78\xbd\x7d\x9a\xe1\
-\x33\x09\xb2\x17\x53\xcd\x89\xfd\xc3\x7f\x02\xde\x03\x2e\x2f\x54\
-\xfe\xba\x01\x00\x0a\xee\x0a\x0c\x6a\x0a\x3b\x33\x1e\x91\xfb\xcb\
-\xaa\xd9\xe8\xf7\x32\x20\x27\x99\x4d\xea\x2e\xdd\x6e\x79\x44\x74\
-\xca\x8d\xb9\x48\x32\xfe\x99\x49\x8f\x3c\x22\x05\xbf\x27\xfe\x56\
-\x34\x84\xbd\xee\x32\x5b\x51\xcd\xe6\x42\x7e\xb8\xce\x47\xc3\x6a\
-\x13\xa2\x2d\x8d\x26\x28\xe8\x64\xd1\x75\x9d\xd9\x68\x25\xfb\xce\
-\x27\x19\x6a\x4e\x90\xb9\x98\x6e\x9d\xd9\xd7\xff\x02\x73\x77\x7e\
-\x64\x31\xf2\x37\x0c\x90\x6e\x1e\xef\xb7\x6f\x0c\xee\xd0\x4c\x52\
-\xc8\xe1\xcb\x70\x5f\xc9\x03\xac\x72\xa6\x19\x92\x52\x24\x53\x38\
-\x0c\x93\x69\x87\xe8\x92\xfe\x1b\xc2\xff\x8b\x0d\xb5\x4e\xf7\xc4\
-\x11\x93\x55\x7e\x34\xb0\xc1\x29\x6e\xd9\x58\xc8\xf6\xb5\x5e\x8a\
-\xfd\x32\x82\x9c\x43\x63\x4e\x5e\xd3\x35\x66\x62\x25\xbc\xd1\x91\
-\x66\xe0\xa3\x24\xe9\x4b\xe9\xce\xa9\xfd\xfd\x7f\xc0\x30\x8e\x02\
-\x83\x8b\x95\xbf\x61\x00\x80\x82\x0d\xa1\x84\x96\x93\xb6\xe7\xfc\
-\x02\xf5\x01\x99\x3a\xcf\xd7\x08\x16\x4c\x31\x24\x65\x48\xa5\x05\
-\x07\xa2\xf5\x61\xc1\x69\x69\xf4\x3d\x54\xfd\x23\x49\x10\xdf\x74\
-\xac\xb2\x94\x97\xdf\xe1\x60\x5b\x83\x9b\x7b\xd7\xf8\x71\x3a\x44\
-\x34\x21\x8b\x86\x82\x46\x16\x55\xcf\x33\x19\xf5\x71\xa0\x5d\xa1\
-\xbf\x49\x41\x89\x64\x7a\xa6\x0e\xf4\x3e\x67\xe4\xf5\x63\xc0\xad\
-\x9d\x70\x9f\x17\x20\x55\x75\x5f\xb7\x53\x9a\x7a\x22\x6f\x11\x9d\
-\x85\x81\x24\xb5\xde\x0a\x8a\xec\xab\xf0\x17\x4c\x33\x2c\x2a\x64\
-\x52\x82\x43\xb4\xda\x76\x9a\xac\xf2\xf7\x3d\xeb\xac\xf2\x9d\x9b\
-\xec\x6c\xaf\xf7\x71\x5b\x89\x0f\xd9\xac\xa3\x31\x4f\xde\xc8\x31\
-\x11\x73\x71\xb0\x3d\xcf\x60\x53\x0e\x65\x40\x19\x1e\x3f\xd8\xfb\
-\xbc\x9e\x56\x8f\x01\x3d\xb7\x2a\xff\xb9\x01\xe8\xee\x36\x9c\xeb\
-\x8b\x44\x43\x95\xb6\xaa\x7e\x81\xea\x80\x80\xcb\xea\xc2\x6f\xf7\
-\xe3\xb3\x27\x18\x11\x73\x64\x55\xd1\x14\x6c\xb0\xf0\xc0\xed\x76\
-\xb6\xd6\x95\x12\xf2\x38\xd0\xc5\xdc\x55\xf2\x59\x62\x51\x3b\x87\
-\xda\x35\x06\x5a\x54\xd2\x61\x65\x64\xfc\xcd\x0b\xbf\xd7\x66\xb3\
-\x8d\xc0\x05\xc0\xf8\x72\x02\x00\xee\x6f\x54\x9c\x23\x21\xfc\x5c\
-\xb1\x89\x96\x50\x28\x45\xb9\x27\x00\xa2\x86\xb7\xc0\x85\xcb\x96\
-\x44\x76\xeb\xdc\x5f\xe7\x60\x73\x45\x09\x76\xab\x34\x4f\xfc\x53\
-\x79\x14\xe2\x71\x99\x77\x3a\x04\x22\x4d\x2a\xa9\x4b\xd9\xcb\xf1\
-\x43\x5d\x7b\xd4\x84\xf2\x4f\xa0\xfb\x8b\xca\xdf\x34\x40\xe2\xe3\
-\x61\xd5\x75\xdb\xaa\x10\xba\xe9\x6e\xd5\xab\xb3\x26\x20\x61\xb3\
-\xc8\x20\x68\xf8\x9d\x4e\x6a\x43\x05\x94\x7a\x5c\x88\x92\x3a\xf7\
-\x21\x9d\x27\xae\x91\x25\x1a\x13\x38\xd2\x2a\x13\x3e\xa3\x93\xee\
-\x55\xc7\xe3\xef\x74\x3e\x9b\x9f\x4a\x1f\x05\x3a\x96\x42\x1e\x16\
-\x50\xd4\xeb\x92\xfd\x69\x35\x2e\x64\x23\xfd\x70\x21\x3a\x4c\x8e\
-\x14\x79\x52\x18\x42\x1a\xb3\x59\x43\x15\x32\xa8\xa4\xc9\x93\x46\
-\x25\x83\x4a\x06\x8d\x2c\xc3\x51\x9d\xc6\x73\x12\x91\x56\x83\x4c\
-\x8f\x3e\x1d\x7f\xb7\xeb\x85\xdc\x44\xf2\x28\x70\x0e\xd0\x97\x42\
-\x1e\x16\x50\xd4\xcf\xb6\x47\x32\x85\x75\x65\xf5\x82\x61\x6a\xd0\
-\xbd\x79\x2a\x82\x60\x31\x1b\xe8\x7c\xf6\x59\xff\xdf\x50\x18\x89\
-\xea\x1c\x6f\x33\x13\x39\x2b\xa2\x5c\xd0\x67\xa3\xc7\xcf\xbf\xa8\
-\x5c\x9e\x6a\x04\xce\x00\xda\x52\xc9\xc3\x02\xdb\x2a\x82\x6c\x7b\
-\x52\x1d\x95\x8c\xc8\x80\x44\x5f\x2c\x4e\xfe\xd3\x5d\x98\x1b\x57\
-\xee\xfe\xdc\x18\x89\xab\xfc\xbb\xcd\x42\xf8\xac\x89\x4c\x97\x94\
-\x89\x9f\xea\x7a\x29\x33\x3a\xd1\x08\x34\x71\x55\x35\xb5\x14\x2c\
-\xa8\xad\x32\xdd\x71\x69\xc2\x53\x5b\xbd\x45\x10\xe5\x4a\xbd\x30\
-\x4f\x59\x71\x1e\xd9\x94\x9f\xb7\x0b\x73\x63\x6c\x5c\xe7\x44\xab\
-\x83\x70\xab\x05\xa5\x4b\xcc\xc6\x3e\x3a\xff\xd2\x6c\xff\xd8\x95\
-\x6a\x2a\xbf\xd4\xf2\xb0\x88\xc6\x96\xa0\x0a\x4f\x69\x03\x26\x06\
-\x86\x4d\xf4\x47\x53\x9f\xd9\x05\x95\x34\x23\xe3\x79\x4e\xb5\x16\
-\x10\x3e\x67\x25\xd7\x61\xca\xc5\x9a\xbb\x5e\x4e\x44\x86\xdf\x66\
-\xae\x8e\xbd\xa6\x14\x5c\x2a\x16\xdc\xd8\x9a\xbc\x78\x69\xc0\x57\
-\x55\xb7\x03\x59\x0a\x19\x85\x39\xca\x4a\x52\x88\x72\x16\x8d\x1c\
-\xd1\x49\xf8\xb0\xc5\xc3\xa5\x36\x27\xf9\x76\x8b\x1a\x3d\xd7\xb9\
-\x77\xba\x37\xfc\x0f\xe0\x04\x57\xb5\x41\x96\x9a\x45\xb5\x16\x05\
-\x95\x67\xb4\x88\x95\xa1\x21\x1b\x03\x51\x8d\x3c\x29\xa2\x53\x2a\
-\x1f\x9e\x75\xd1\xd7\xee\x24\xdf\x6a\xd7\xc7\x3b\x3e\x79\x63\xf2\
-\x93\xde\x2b\xf2\x37\x2c\x05\x97\x8a\x45\x05\xb8\xb8\x79\xd3\x7e\
-\x63\x96\xc1\x74\xd8\x4e\x4f\xd8\x4a\x74\x4a\xa3\xe9\xac\x8f\x70\
-\x9b\x17\xad\xa5\xc0\x98\xbc\xd0\x73\x30\xd6\xdd\x79\x90\x39\xf9\
-\x6b\x1a\xb1\x5f\x06\x8b\xeb\x8d\x9e\x38\x61\x04\xca\xd7\xca\x62\
-\xd6\xfa\x40\xce\xaf\x33\x99\x30\x13\x69\x0b\xa1\x35\x3b\x99\xe8\
-\x0d\xbf\x3d\xda\xd1\xf2\x06\x73\xd5\xd4\xf4\x97\x62\x7b\x1d\x16\
-\xdd\x9d\x0e\xe6\x1c\xcf\x19\x53\xf2\x54\xb2\xcf\xc5\x40\x47\x08\
-\xbd\xd9\xcd\x4c\xdf\xd0\xd1\x91\xf6\x8f\xf7\xb3\x88\x52\x70\xa9\
-\x58\x74\x77\xba\xbf\xbf\x4d\xf5\x97\x54\xe7\xa4\x89\xc2\xad\x44\
-\xec\x24\x86\x86\x4f\x46\xce\x1d\xdf\xcb\x9c\x7c\x74\xe9\x15\x3f\
-\x9f\x5b\xfe\x83\xc3\x13\x28\xbb\x37\x97\xcf\xde\x95\x9a\x8e\x0e\
-\x30\x77\x54\x8e\x2d\x9d\xd6\x0a\x2b\xac\xb0\xc2\x0a\xff\x27\xfe\
-\x03\x72\x48\xe3\xb0\x1d\x11\x42\x9d\x00\x00\x00\x00\x49\x45\x4e\
-\x44\xae\x42\x60\x82\
-\x00\x00\x09\x40\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
-\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
-\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
-\x79\x71\xc9\x65\x3c\x00\x00\x08\xd2\x49\x44\x41\x54\x78\xda\xed\
-\x99\x79\x70\x95\xd5\x19\x87\x9f\xf3\x6d\x77\xc9\xbe\x6f\x04\xb3\
-\x10\x43\x88\x44\xc4\x20\x8a\x20\xc5\x36\x18\x0a\x62\x15\xaa\x23\
-\xa8\x6d\xc5\x76\xb4\x5a\xa7\xa3\x4e\x3b\xb6\xce\xb4\x9d\xb1\x8e\
-\xfd\xc3\xa9\x8e\xb5\x55\x2b\x6e\x80\x20\x19\xb1\x08\x26\xb2\x88\
-\xa0\x20\xa2\x48\x58\x22\xa1\x2c\x22\x89\x82\x59\x09\x49\xee\xfe\
-\x7d\xdf\xe9\x31\x89\x93\xb1\xf8\x67\xb9\x89\x53\xde\x99\xdf\xdc\
-\x33\x73\xef\x9d\x79\x7e\xef\xf7\x9e\xf9\xde\xf3\x1e\x43\x4a\xc9\
-\x77\x39\x0c\xe0\xbc\x81\xf3\x06\xfe\x57\x06\xc4\xcd\x29\x7c\x6b\
-\x48\x94\x84\x92\x0e\xae\x18\x5c\xbb\xda\x80\x86\xd7\x02\xa4\x36\
-\x28\x47\xfc\xd7\xef\x07\xbf\x1f\x5a\x9f\xfd\xdf\xe1\xc8\x43\xf2\
-\x07\xe0\x72\x04\xcb\x60\x40\xed\x67\xe1\xec\xde\x3d\x2a\x9f\xc0\
-\x58\x5c\xb1\x1c\x87\x19\xe8\x12\x6c\xed\x62\x0c\xf7\x0e\x04\x3f\
-\x07\xb6\x8f\xf6\x12\xaa\xc4\x16\xaf\x5b\x1e\xb7\x6c\xec\xf5\xdd\
-\xb4\xf9\x63\x84\xf7\xfb\x88\x1d\x48\x1d\x8f\x64\x23\x9a\xbc\x17\
-\x78\x6e\xb4\x1a\x98\x4a\x4c\x5b\xa5\x99\x6e\xd1\xec\x25\x9f\xa3\
-\x55\x47\x38\xdd\xe6\xc5\x28\xe9\x20\x58\x14\x20\xd2\x90\xa7\x9c\
-\x68\x7f\x43\x97\x67\x80\xba\xd1\x66\x60\x0e\x51\xf1\x8c\x37\x25\
-\x56\x38\xfb\x17\xad\x8c\x9f\xd2\xcb\xc9\x3e\x3f\x09\xc2\x43\x58\
-\x97\xf8\x2e\xe9\x07\xb3\x95\x48\x7d\x81\x87\x90\xf1\x0c\xba\x6c\
-\x06\x9a\x46\x89\x01\x39\x9f\x88\xbe\x32\x31\x3b\xe2\x9f\x73\x57\
-\x2b\x45\x13\xfb\x09\x07\x0d\xd2\x4d\x9b\x7c\xbf\xe4\x84\xeb\xc3\
-\x13\x05\xaa\x02\xc8\x40\x1b\xd1\xfa\x31\x69\xe8\xf2\x69\xe0\x1a\
-\x20\x30\xd2\x06\x16\x13\xd5\x96\x26\xe7\x85\x3d\x73\xee\x6a\x61\
-\x6c\x45\x88\x88\x82\x97\x52\x43\x13\x50\x99\xd0\x47\x77\x2c\x91\
-\x5e\x69\x62\xc5\xfc\xb8\xea\x49\x38\xc7\x7b\x70\x9a\x53\xaf\xc4\
-\x74\x6f\x04\x5e\x18\x21\x03\x02\xe0\x37\x84\xb5\x87\xb3\x4a\x02\
-\xe6\xbc\x7b\x5a\x49\xcf\x8b\x0e\xc1\x0b\x40\xe0\x48\x48\xd4\xa3\
-\xcc\xcf\x29\xa1\xbe\xa3\x93\xce\x40\x17\x96\x6e\xe1\x4c\xeb\x21\
-\x70\x2c\x09\x5c\x6d\xf1\x08\x1a\xe0\x41\x82\xfa\x23\xf9\x13\xfa\
-\x98\x7b\x67\x2b\xc9\x99\x36\xb1\xb0\xf1\xb5\x31\x24\x2e\xae\x94\
-\x94\x25\x5e\x4d\x55\x4a\x0d\x53\xd2\x74\x1e\x3f\xb6\x82\x23\x7d\
-\x2d\x58\xf9\x31\x42\xc9\x36\x6e\xb7\x35\x69\x24\xf6\x80\x8e\xe4\
-\x51\xa2\xe2\x81\xe2\xcb\x7a\xa8\xb9\xf5\x24\x49\xe9\x0a\x3e\x32\
-\x0c\xaf\xd0\xd1\x30\xa9\x48\xbe\x9a\xf2\xa4\xef\x91\xee\x29\xe3\
-\x82\x84\x14\xee\x2e\x6e\xa3\xae\x73\x05\xcd\x07\x34\xce\x84\x74\
-\x10\xf4\xc5\xdb\x80\x89\x94\x4b\x89\xea\xb7\x96\x28\xf8\x79\x4b\
-\xbe\xc0\xb4\x24\xb1\xa8\x01\x00\x08\x5c\xe9\x20\x30\xa8\x4c\xa9\
-\x65\x5c\xe2\x55\xe4\x7a\xcb\xd1\x30\xf8\xa4\x77\x1b\x27\xec\xf5\
-\xf8\x5a\x22\x74\x2c\xcb\xc1\x0d\xea\x41\x0c\xf9\x60\x1c\x0d\xc8\
-\x64\xa4\x78\x8a\xa8\x76\xcb\xb8\xe9\x5d\xd4\x2c\xfe\x12\xc3\x00\
-\x3b\xa6\x33\x0c\x6f\x23\xb0\xa8\x4a\x9d\x4f\x49\xe2\x15\x64\x7b\
-\xc6\x21\xd0\x39\x12\xd8\xce\xde\x40\x1d\x7b\x1a\xdb\x79\xfb\xe9\
-\x7c\xfa\xdb\x8d\x5e\x3c\xf2\x36\x60\x6d\x9c\x0c\x88\x4c\x5c\x56\
-\x61\x8b\xef\x57\xd6\xb6\x33\xf5\x87\x5d\x58\x06\x38\x8e\x40\x22\
-\x00\x0d\x47\x3a\x58\x22\x91\x8b\x53\xaf\x67\x6c\xc2\x64\x72\x3d\
-\x15\x38\xd2\xa6\xb9\x7f\x33\xfb\x82\x75\xec\xda\xde\xcf\xd6\x67\
-\xc7\x10\x0d\x68\x2d\x0a\x7e\x11\xb0\x23\x3e\x2f\x32\x41\x2e\x0e\
-\x6b\x71\xc5\x65\xe5\xb3\x3b\x98\x54\xdb\x8d\xa9\x03\x2e\x80\x18\
-\xca\x7c\x0c\x4b\x4b\x64\xd2\x57\xf0\xfe\x29\xaa\x6c\x2a\xb0\xdd\
-\x10\xff\xee\xdf\xc6\xde\xd0\x4a\xde\xdf\x12\xe3\xdd\xa5\x05\xd8\
-\x11\xed\x04\x96\x5c\x08\xec\x8e\x53\x2b\x21\x27\xe2\x68\xcf\x0b\
-\x5d\x56\x97\x5f\xd3\xce\x45\x33\xce\xa0\x4b\x94\x86\xe1\x1d\x05\
-\xef\xd7\x33\x54\xe6\x6f\xa0\xd0\x7f\xe9\x40\xd9\x44\x9c\x3e\x95\
-\xf9\x4d\xec\xeb\xff\x17\xef\xd5\x3b\xec\xaa\xcb\xc5\xb6\x69\x54\
-\xf0\x8b\x91\x34\xc7\xab\x99\xab\xc6\x16\xab\x84\xe1\x96\x8e\x9f\
-\xdb\x41\xe9\xe4\x00\xba\x0b\xa6\x01\x86\x0e\x20\x88\x49\x87\x24\
-\x23\x9b\xc9\xa9\x37\x92\xef\x9b\xa8\xe0\x2f\x24\xe0\x9c\xe6\x60\
-\x5f\x03\x7b\x7b\xd7\xf2\xee\x3a\x9d\x0f\x57\x67\x83\xc6\x76\x0c\
-\x95\x79\x57\xb4\xc5\xe7\x40\x23\x98\x8a\xea\x28\x75\xaf\x93\x57\
-\x5c\xd3\x45\xfe\xc4\x20\x9a\x0d\xba\x05\xa6\x0e\x02\xb0\xa5\x4b\
-\xb2\x99\xc3\xe4\x94\x85\x83\xf0\xde\x72\x7a\x63\x1d\x34\x07\x36\
-\xd0\x78\x66\x0d\xef\xbc\xe6\xa5\xf1\x8d\x2c\x30\xe5\x66\x04\xb7\
-\x7c\x0d\x1f\x0f\x03\x0b\x14\xfc\x73\x7a\x82\x9d\x7a\x41\x6d\x27\
-\x39\x25\x11\x74\x07\xcc\x21\x78\x53\x80\x23\x21\xdd\x1a\xc3\x25\
-\xa9\x37\x91\xe7\xad\x24\x53\x95\x4d\x77\xb4\x85\xa6\xc0\x3a\xf6\
-\x76\x35\xf0\xd6\x4b\x29\x1c\xd9\x91\x0a\x96\xb3\x12\x21\x96\x28\
-\xf8\x50\xbc\x8e\x94\x8b\x15\xfc\x3f\xf4\x64\x3b\x29\xbf\xa6\x93\
-\xd4\xc2\x18\x9a\x03\x86\x05\xa6\x06\x96\x92\x03\xaa\x54\x8a\x54\
-\xcd\xff\x98\x3c\xcf\x04\x32\x3c\xc5\x74\x45\x4f\x28\xf8\xd7\x69\
-\x6c\xdf\xc4\x86\x97\x53\x38\xba\x33\x19\x2c\xf7\x59\xa4\xb8\x07\
-\x49\x2c\x5e\x67\xe2\xbb\x88\x89\x27\x8c\xac\x88\x99\x31\xfd\x34\
-\x49\xb9\x36\x86\x03\x96\xa5\xa4\x83\xa1\xa4\x09\x28\xf0\x8d\xa7\
-\x32\x65\xbe\xca\xfc\x45\xa4\x99\x85\xb4\x47\x8e\x29\xf8\x35\x7c\
-\xd4\xba\x8d\x4d\xcb\x53\x39\xf1\x71\x32\x78\xdd\x47\x90\xe2\x8f\
-\x4a\xb1\x38\x1c\xea\x05\x4a\xbf\xc7\xe6\x61\x2d\x27\x42\xd2\x95\
-\x3d\xf8\x33\x9c\x01\x78\xd3\x1c\x2a\x1b\x0d\x34\xa5\xc2\x84\xf1\
-\x4c\x4a\x5d\x48\xb6\xa7\x82\x54\xab\x90\xb6\x70\x33\xfb\x02\xaf\
-\xb2\xbb\x65\x07\x6f\xfe\x33\x87\xf6\xc3\x7e\x07\xbf\xf3\x10\x52\
-\x3c\xaa\x14\xaf\xa9\x84\xfc\x33\x8e\xfc\x1d\x39\x51\xbc\x57\x9c\
-\xc1\x93\xec\x62\xb8\xc3\x65\x63\x28\x21\xa0\x34\xb1\x8a\x4b\xd3\
-\xae\x57\xf5\x5e\x46\x8a\x91\xcf\xa9\x70\x13\xfb\x83\xab\xd8\x75\
-\xec\x43\xde\x7a\x31\x9b\x8e\x63\x5e\x1b\x9f\x7b\x1f\x52\x3c\x19\
-\xaf\xb1\x8a\x07\xf8\x3b\xb6\xb8\x9d\xc2\x10\xfa\xc5\xfd\x58\x3e\
-\x89\x29\x87\xb2\xae\x0f\xc2\x6b\x02\x26\xa6\x4d\xa3\x3a\x7d\xf6\
-\xc0\x0b\xca\xaf\x67\xf2\x79\x68\x0f\xfb\x82\xaf\xb0\xa3\xa9\x89\
-\x8d\x2f\x67\xd3\x7b\xca\x13\xc4\xeb\x2e\x42\x6a\x6b\x91\x10\x0f\
-\x03\xd6\x40\x53\xe6\x68\x8b\x29\x0a\xc1\x84\x00\xa6\x22\xb7\x00\
-\x4b\x53\x1a\x82\xd7\x05\x54\x29\xf8\xc9\x69\xb5\xe4\xf9\x2a\x48\
-\x30\x32\x68\x0d\xee\x61\x7f\x68\x39\xdb\x0f\x34\xd1\xf0\x7c\x1e\
-\xc1\xd3\x66\x97\x82\xbf\x15\x57\x34\xc4\x67\xb0\x25\xc8\xc2\xe5\
-\x79\x60\x1e\xa5\x41\x28\x0f\x22\x04\x98\x62\x38\xf3\xba\x18\x2c\
-\x9f\xea\xac\x59\x4c\xc9\xac\xa1\xc0\x3f\x1e\x9f\x9e\xc0\x67\xc1\
-\x9d\x2a\xf3\xcb\x78\x67\xe7\x71\xde\x59\x9d\x4b\xa8\x57\x3f\x8e\
-\x47\xde\x8e\x23\xb6\xc6\x6b\x32\x67\x02\x2f\x83\xa8\xa5\x2c\x08\
-\xe3\x22\xe0\x80\xc1\x37\x37\xab\xa9\x0b\x66\xe4\xcc\xe1\xd2\x8c\
-\x99\x14\xfa\xcb\xf1\xea\x7e\x8e\x07\xb7\xd3\xd8\xbf\x9c\x2d\x3b\
-\x5a\xd9\xba\x3a\x07\x3b\xac\x1f\xc5\x94\xf3\x91\xa2\xf9\xdc\x8c\
-\x16\x85\xcb\x59\x21\xc4\x4c\x6c\x6a\xc9\x0d\x43\xc9\x20\x3c\xf2\
-\x9b\xf0\x3e\xc3\x54\xf0\x3f\x60\x92\x82\x1f\xa3\x32\xef\xd1\x7d\
-\x0a\x7e\x1b\x8d\xbd\x2b\xd8\xfc\xde\xe7\x6c\x7d\x2d\x07\x69\x8b\
-\xbd\x58\xf2\x26\x5c\x71\xf8\xdc\xcd\x46\x35\xc9\x59\x21\xb9\x03\
-\x03\xac\x62\x97\xa8\x00\xdc\xc1\x72\xb1\xf4\x41\x78\xbf\x61\x31\
-\xbb\xe0\x3a\x95\xf9\xcb\x29\x4e\xac\x44\x10\xe5\x70\xa0\x81\x7d\
-\x7d\xcb\x78\xb3\xbe\x8f\x8f\x36\x64\x83\x60\x23\x86\xfc\xa9\x82\
-\x3f\x75\x6e\x87\xbb\xe2\x2c\x03\x13\x88\x45\xe7\xce\x2a\xbd\x88\
-\x84\x42\xc9\xfa\xce\xbd\xa0\x0d\x35\x66\x02\x12\x15\xfc\xbc\xb1\
-\x0b\x54\xe6\x2f\xa3\x28\xa9\x62\xa0\x45\xfe\x34\xb4\x99\x03\x7d\
-\xcb\x59\xbf\x2e\x40\xe3\xd6\x74\xd0\xe5\x06\x04\x5f\x65\xfe\x0c\
-\x40\x7c\x0d\x48\xf9\x80\x61\xea\x89\xbf\xbe\x7c\x36\x49\xf9\x89\
-\xbc\x7d\xfa\x20\x21\x37\x0a\x40\xa6\x37\x85\x1f\x15\x5d\xcb\xa4\
-\x74\x05\x9f\x58\x46\xcc\x0d\x71\x28\x50\xcf\xfe\xae\xd7\xd8\xf4\
-\x56\x3f\x4d\xef\x0f\xc0\xbf\x08\xe2\x57\x48\xfa\x61\x38\xe2\x55\
-\x42\x05\x44\x22\x0b\x66\x5e\x38\x99\x59\x65\x55\xf8\xbd\xe9\xdc\
-\x3e\x76\x1e\x4f\x1d\x5d\xc3\x98\xb4\x2c\x16\x14\x5f\xc7\xa4\xcc\
-\x4b\x28\x4d\x1e\x4f\xc8\xe9\xe6\x60\x7f\x3d\xbb\x3b\x57\xb2\xe5\
-\x0d\xf8\x74\x4f\x2a\x58\xee\x13\x20\xee\xc3\xfd\xb6\x8d\x05\xe7\
-\x7e\x13\x4b\x16\xa1\x91\xbc\xa8\x6a\x3a\x1e\x6f\x32\x61\xcd\xe0\
-\xa1\x8a\x3b\x39\x10\x38\x81\xe1\xf5\x52\x9d\xa5\x6a\x3e\xa9\x94\
-\xde\x58\x3b\xfb\xfb\xd6\xb3\xeb\xcb\x3a\xd5\xcb\x0b\xbe\x68\x4e\
-\x00\x9f\xfb\x18\x52\x3c\xa0\xe0\xf9\x46\xc4\xb1\x84\xf2\xb0\xed\
-\xfb\xa7\x97\x4d\xe4\xda\xca\x69\x84\x85\x01\x86\x45\x96\x37\x83\
-\x35\x33\x97\x72\xdb\xce\xfb\x79\xe5\xe8\x5a\x6e\x2e\x9b\xcb\x91\
-\xd0\x46\x76\x1c\x5f\xcf\x07\x0d\x3a\xdd\x2d\x7e\xf0\xca\x7b\x71\
-\x87\x5b\x83\x91\x32\x70\x03\x8e\xcc\xb9\x2a\x77\x0a\x59\x69\xb9\
-\xf4\xc5\x24\x9a\x95\x40\x4c\x37\xc8\xf0\xa4\xf3\x66\xcd\x4b\x3c\
-\x79\x68\x29\x7f\xd9\xf5\x24\x9d\x27\x0f\xd3\x79\xc8\x20\xd0\xe6\
-\x75\xb1\xdc\x25\x48\xed\x45\x80\x91\x34\x60\xa8\xcf\x9f\xe0\xf8\
-\x79\xfa\x95\x83\xcc\x28\x3e\x46\xed\xf4\xa9\x80\x1f\x2c\x1f\x5d\
-\x3d\xed\xbc\x7f\x74\x0f\x2d\xcd\x1d\x9c\xfa\x38\xc0\xc9\x2f\x0d\
-\x94\xbb\x56\x3c\xee\x6f\x91\x62\x25\x12\x46\xda\xc0\x42\x34\x77\
-\x0a\x3d\x39\x74\x77\x84\xf9\xe5\x5f\xeb\x78\x35\xb3\x00\x33\x05\
-\xd6\x36\x6e\x62\xc5\x07\xeb\x38\x72\xf2\x18\xc4\x6c\x1b\xd3\xf7\
-\x31\x1e\xbd\x1e\x29\x5f\x40\x8a\x56\x00\x18\x59\x03\x3a\x9a\xbc\
-\x9b\xde\x24\xe8\xcc\x80\x94\x18\xc7\xc3\x9f\x30\xeb\xf1\x9f\xe1\
-\xf8\x7b\x09\xf7\xf6\xc7\x10\xda\x61\x0c\x6b\xb3\xd2\x6a\xa4\xf8\
-\x50\xc9\x1e\xce\xfa\xc8\x1b\xa8\x06\xa6\xe1\xe8\x50\xf4\x19\x24\
-\xf7\x82\x61\x3b\x01\xc7\x3d\x40\x58\x5b\x85\xc7\xb3\x19\x29\x9a\
-\x94\x22\x48\x40\x8e\xbe\x6b\xd6\xb9\x48\x34\xd2\x7a\x24\x82\x43\
-\x38\xda\x4a\x5c\xb1\x19\x61\xee\x41\x43\x41\x8f\xfe\x7b\xe2\x04\
-\xe0\x4f\x48\xb6\x28\xf0\xdd\x48\x82\xdf\xa9\x7b\x62\xf9\x8c\xbc\
-\xff\xfc\x4d\xfd\x79\x03\xff\x67\x06\xfe\x03\x1b\x85\x94\x1a\x1f\
-\xbe\x73\xb2\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x08\x58\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
-\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
-\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
-\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
-\x79\x71\xc9\x65\x3c\x00\x00\x07\xea\x49\x44\x41\x54\x78\xda\xed\
-\x57\x6b\x6c\x14\xd7\x15\x3e\xf7\xce\xec\x7a\xd7\x76\x36\x7e\xcb\
-\x4e\x00\x97\x85\x04\x27\x04\x28\xe0\xda\x78\xcd\x8a\x26\x31\x76\
-\x6c\x13\x27\x8e\xb0\x1b\xa2\x18\xc5\xb4\x34\x22\x52\x15\x4a\xca\
-\x8f\xa8\xf4\x47\x9b\x56\xaa\xd2\x87\xaa\x3a\xa1\x52\x10\xa2\x55\
-\xdd\x28\x8a\xa5\x22\x12\x22\xa7\x34\xb1\x1d\xdb\x3c\x6d\x8c\xa1\
-\xf1\x0f\xc0\x8f\xf8\x0d\xc6\x6b\xf0\xae\x3d\xbb\x3b\x3b\x8f\x7e\
-\x33\xf6\x76\x65\x66\x41\xfc\xcb\x9f\x5e\xe9\x6a\x76\x66\xee\x9c\
-\xef\x3b\xdf\x39\xe7\x9e\xbb\x4c\xd7\x75\xfa\x36\x07\xa7\x6f\x79\
-\x88\xd1\x1f\xbf\xcc\xcd\x25\x55\x51\x88\x18\x23\xa8\x92\xc8\x38\
-\x3f\xe4\x4a\x49\x79\x31\x18\x08\x9c\x51\x65\xf9\x67\x58\x78\x87\
-\x43\x2d\xae\x69\x26\x6b\x86\xdf\xc2\xe2\x6f\xba\x5b\x45\xdc\xc3\
-\x46\x12\x63\xec\x37\xc9\xc9\xc9\x2f\x48\x81\x40\x1b\xbe\x3b\x20\
-\x32\x76\xdb\xfc\x1e\xf3\x47\x73\x73\x51\x02\x4b\x87\xa6\x69\x5c\
-\x13\x84\xdf\x7d\x7f\xed\xda\x37\xf2\x67\x67\xe9\x9a\xcb\xf5\xc4\
-\xbf\xc6\xc6\xb2\x35\x59\xde\x0d\xb0\x19\x7a\x80\xa1\xe9\x7a\x02\
-\x28\x35\x14\xaf\x5b\x57\x9f\xb7\x6c\x19\x0d\x4a\xd2\x6b\xa7\x5b\
-\x5b\x5d\x6a\x24\xb2\x9b\x0b\xc2\xfc\x3d\x43\xa0\xa9\x2a\x8f\x30\
-\xf6\x7b\xef\x86\x0d\x6f\x94\x80\xa1\x0b\xaa\xe4\x87\x42\x54\x9a\
-\x99\x59\xc9\x44\xf1\x98\xaa\xeb\xae\x07\x00\xb7\xa9\x9a\xd6\x50\
-\xe8\x76\xd7\x6f\xca\xc9\xa1\xa4\xf5\xeb\x69\xa3\xdb\x4d\x9e\xed\
-\xdb\x5f\xc2\xf3\x0f\x40\xc2\x01\x95\x2d\x04\x4c\xc9\x34\x51\x7c\
-\x6f\x5b\x51\xd1\x4f\xb7\xdf\xbe\x4d\x7a\x59\x19\x89\x1f\x7d\x44\
-\xda\x81\x03\xf4\x5d\x9f\x8f\x9e\x4b\x4d\xad\x12\x6d\xb6\x26\x8d\
-\x28\xe7\x3e\xe0\x2e\x78\x7e\xd4\x93\x9b\xbb\x77\x63\x7a\x3a\xe9\
-\xd5\xd5\x64\x3b\x78\x90\xb4\x92\x12\xda\xb8\x72\x25\x6d\xdd\xb9\
-\xf3\x15\xe2\xfc\x43\x4d\x51\xb2\x2c\x04\x60\xf8\xe7\xdb\xbc\xde\
-\x7d\x15\xf0\x5c\x7c\xfa\x69\x12\xf6\xef\x27\x1a\x1b\x23\x7b\x55\
-\x15\xb1\x43\x87\x68\xed\xcc\x0c\x95\x3b\x1c\xa5\x82\x28\x1e\x85\
-\x12\x29\x77\x83\xc3\x01\x51\x67\xac\x61\x6b\x56\x56\xdd\x06\xa7\
-\x93\x58\x6d\x2d\x25\x94\x96\x12\x8d\x8f\x93\x50\x58\x48\xac\xb8\
-\x98\x36\xe5\xe5\x51\x71\x5d\x5d\x35\x13\x84\xdf\x5a\x08\x3c\x94\
-\x99\x59\xe3\x31\xa4\xe1\x78\xf4\xe6\x9b\x44\x13\x13\x44\x7e\xbf\
-\x69\xc0\x51\x51\x41\xec\xed\xb7\x69\x15\xee\x9f\x15\x84\x72\xc4\
-\xb1\x11\xde\xa6\x51\x8c\xbc\x43\x65\xec\xf0\x16\x97\x6b\xf7\x13\
-\xa2\x48\x6c\xd7\x2e\x4a\x34\xc0\x6f\xde\x24\x0a\x04\xcc\x2b\xcb\
-\xcf\x27\x4a\x4b\xa3\x75\x20\x91\x91\x97\x57\x66\x21\x10\x9a\x99\
-\x69\xef\x33\xc0\x51\x09\xfa\xb1\x63\x64\xc6\x29\x18\x5c\x30\x00\
-\x25\x9c\x30\xc8\x41\xc2\x1d\x0e\xd3\x33\x8a\x52\x29\x72\xde\xa8\
-\xc1\x24\xa6\x91\x70\x87\x0b\x45\x71\x6f\x1e\xc0\xa9\xae\x8e\x92\
-\x10\x3e\xba\x75\x6b\xe1\x5b\x49\x22\x52\x55\xd2\xbb\xba\x4c\x87\
-\x86\xe0\x90\x7f\x68\xa8\xdb\x52\x86\x5a\x28\x74\xf0\xf3\x8e\x8e\
-\x2c\xf2\x78\x76\x14\x7e\xfc\x31\x29\x00\x17\x77\xec\x20\x9a\x5f\
-\x4c\x5a\x18\x4a\x42\x68\x28\x12\x21\xf7\x3b\xef\x90\x9d\xa8\xbc\
-\x35\x21\xe1\x84\xa2\xeb\x92\x57\xd3\x4a\x57\xa3\xb4\x6c\x00\x77\
-\x81\xa8\x09\x8e\x7b\x73\x38\x1c\xa4\x5e\xbe\x4c\xbc\xb7\x97\xfa\
-\x61\xa3\xbd\xb1\xf1\x82\x2a\x49\xfb\xa3\xb8\xff\xdb\x09\x7f\xf5\
-\xe8\xa3\xa4\x45\x22\xe9\xdc\x6e\xff\x5b\x45\x41\x41\x65\x7e\x7f\
-\x3f\x29\x95\x95\x24\x96\x97\x9b\x24\x60\x70\x41\x95\xe4\x64\xf2\
-\xb7\xb6\x52\xf0\xdd\x77\x69\x14\x9e\xc9\x82\x40\x6e\x82\x0c\xfb\
-\xf6\x51\xea\xf3\xcf\x2f\xac\x85\x4d\x73\x6d\x42\x02\x29\x43\x43\
-\xc4\x2f\x5d\xa2\x61\x54\x53\x6b\x53\xd3\x05\x45\x92\x6a\xc4\x84\
-\x84\x91\x3d\x58\x67\x29\x43\xce\xb9\x8f\x42\xa1\x57\xff\xdd\xdd\
-\xdd\x7c\x65\xc5\x0a\x62\x27\x4e\x90\xfc\xe9\xa7\xa6\x31\x53\x4a\
-\x24\xa8\x11\x4f\x57\x51\x11\x39\x90\xa4\xd9\x00\x5a\x01\xa5\x6c\
-\xf5\xf5\x94\x8a\x4c\xa7\xe9\x69\x73\x4d\x54\xf6\x48\x5f\x1f\xe9\
-\x9d\x9d\x34\x8a\x50\x7c\x75\xfc\x78\x8f\x32\x3f\x5f\x2b\xda\xed\
-\x23\x06\xc1\xb8\x0a\xe0\xa3\x05\x46\x8a\x92\x63\x73\x3a\xff\x5a\
-\xf2\xf8\xe3\xa5\x4f\x21\x19\x19\x64\xb5\x7b\x3c\x04\x72\x31\xef\
-\x12\x13\xe9\x4e\x7b\x3b\xc1\x28\x65\x20\xe6\xd1\x77\x98\xa6\xe7\
-\xf2\xe8\x28\xa9\xdd\xdd\x34\x81\x9c\xea\x68\x6b\xbb\x24\x07\x02\
-\x3f\x80\xe7\xd7\xa3\xe0\x7b\x24\xe9\xde\x04\x04\x3c\xd3\x15\xc5\
-\xc5\x6d\xb6\xbf\x97\xb8\xdd\x55\x4f\x4d\x4e\x92\x0e\x0f\x9d\x20\
-\x01\xef\x62\x24\xec\x76\x43\xb6\x18\xf8\x62\xcc\xc3\x23\x23\xa4\
-\xf4\xf4\xd0\xa4\x2c\x53\xfb\xd9\xb3\xe7\x91\x4f\xb5\x00\x5f\xe2\
-\x39\x08\x2c\x4d\x42\x3d\x76\x35\xa7\xc0\xb9\x1f\xdb\x6f\x7d\xdb\
-\xe0\xe0\x3f\xec\xcb\x97\x3f\xe7\x6e\x6e\x26\x09\x06\x13\x37\x6f\
-\x36\x01\xa3\x89\x89\x11\x03\x07\xa1\xd0\xd5\xab\x24\x23\xe3\xa7\
-\x91\x33\x1d\xbd\xbd\x5d\x6a\x38\xbc\x2b\x2a\xfb\x7d\x9b\x51\x32\
-\xa4\x8a\x2e\x62\xb8\x32\xc2\x10\x84\x19\x34\xa2\x5d\x5f\x0e\x0f\
-\x7f\xa2\x64\x66\x7a\xbf\x73\xea\x14\x31\xa8\xe4\xc4\xf6\x4a\xb2\
-\x1c\x03\x66\xcc\x58\x4b\xe1\xc1\x41\x92\xce\x9d\xa3\x69\xd8\x3a\
-\xd3\xdf\x7f\x45\x09\x85\x5e\xc0\xc6\x35\xf9\x40\xdd\x50\x84\x41\
-\xdd\x00\x66\x6c\xc1\x29\x5c\x99\x71\x45\x99\x29\x91\x88\x24\xdb\
-\x6c\xa4\xa3\x04\x6f\xb7\xb4\x98\x57\x8e\x1c\x40\x7f\x30\xc0\xcd\
-\x7b\x10\xa5\x59\x78\x6f\x83\x2a\x6a\x52\x12\x45\x64\x39\xcc\x34\
-\xcd\xcf\xf1\xdc\xec\x80\xb0\x6d\x76\x51\x4c\x81\xc8\x9a\x84\x7f\
-\x4a\x4d\x5d\x42\x00\x3f\x16\xba\x1a\xe7\x7f\xf1\xae\x5a\x55\xff\
-\xe4\xd4\x14\xf9\x86\x87\x29\x62\xe4\x28\xa6\x8e\x44\x43\xef\x30\
-\x89\x72\x63\x72\x4e\x22\xb6\x60\x01\x33\xed\x91\x47\xc8\x70\xfb\
-\x74\x57\xd7\x67\x0c\x1d\x10\x34\x67\xee\x26\x50\x8b\xfb\xa5\x65\
-\x68\x6d\xcb\x36\x6c\x32\x0d\x85\x6b\xd6\xd4\xaf\x43\x5b\xf6\x03\
-\x5c\x37\x0c\x44\xdf\x63\x47\x94\x51\x01\x11\x94\x9d\x06\x05\x18\
-\x08\x80\x85\x79\xf5\xa3\x79\x2d\xc3\x7e\x51\x54\x5c\x5c\x89\xfb\
-\x63\xda\x7d\xba\x28\xbf\x07\xb8\x0b\x9e\x1f\x2d\xde\xb4\x69\xef\
-\x66\xd4\xb0\xff\xda\xb5\x25\xe0\x2c\x36\xcd\xd8\x33\x4c\x28\x16\
-\x7b\x07\x12\x81\x1b\x37\x68\x25\x54\x2d\x2a\x2b\xab\x12\xec\x76\
-\xb3\x8b\x3e\x10\x01\x5d\xd3\x44\x8d\xf3\x06\x6f\x51\x51\x5d\x21\
-\xf6\x6e\xe9\xeb\xaf\x01\x1e\x1b\x51\x10\x15\x33\x05\x33\x1d\x53\
-\xb3\xda\x35\x49\xcc\xa1\x87\xb8\xd1\x96\x3d\xd5\xd5\xa5\x28\xe9\
-\xa3\x1a\x3e\xb9\x2f\x01\x80\x3b\x20\xfb\x61\x8f\xd7\xbb\x3b\x1f\
-\xed\x57\xba\x78\x31\xea\x79\x6c\x44\xc1\x11\xff\x08\x6a\x7e\x1e\
-\xa5\x97\x0e\x05\x20\xf3\x92\x75\xa6\x22\x58\x33\x8f\xd0\xe5\x42\
-\x89\x82\x9a\x9a\x72\x24\x6d\x23\xec\xa5\xc5\x25\x80\x04\x4c\xc6\
-\x51\xec\xfd\x2d\xa5\xa5\x7b\xb7\x20\xe6\x41\x94\x93\x1a\x2f\x3c\
-\x06\x38\x80\x65\xc4\xf8\x0c\xe7\xff\x39\x4d\x74\x61\x16\xde\xa6\
-\xe3\x59\x3c\x25\x08\xe4\xa4\x81\x01\x5a\x9d\x9d\x4d\xf9\x75\x75\
-\x95\xe8\x35\x06\x89\x6c\x0b\x01\x48\xf6\xeb\xe2\xb2\xb2\x3d\x5e\
-\x80\x2b\xed\xed\xa6\x31\x16\x07\xfc\x61\x00\xcf\xc1\xa3\x8e\x48\
-\xa4\x2b\xac\xeb\x15\x78\xb6\xfd\x6c\x30\x78\xf2\x16\x14\x48\x45\
-\x69\xaa\x66\x17\xb4\x2a\x11\xbe\x7e\x9d\xd6\xe0\x88\xf7\xbd\xd7\
-\x5f\x2f\xe7\x4e\xe7\x1f\x2d\x04\x92\xb2\xb2\x76\xac\x77\x21\x59\
-\xbf\xf8\x22\xae\xe7\xba\x01\x8e\xf7\x81\xcc\x4c\xea\xf4\xfb\x2f\
-\xc8\xaa\xba\x53\x24\x1a\x83\x01\x3f\xd4\x7b\xad\xcb\xe7\xfb\xec\
-\x96\xaa\x52\x2a\xd6\x20\x94\x96\xbc\xd1\xa1\x84\x8a\xe6\xb4\x0a\
-\x07\x92\x94\xd5\xab\xb7\x59\x08\x04\xa7\xa6\xbe\xbc\x66\xb4\x48\
-\xaf\x37\xae\xe7\x0f\x21\x99\x02\x38\xe1\x76\xfa\x7c\x3d\xb2\xa2\
-\xd4\x8a\x8c\x8d\xc4\x9c\x64\x3e\x54\xce\xab\x17\xc7\xc6\x9a\x7d\
-\x8a\x42\x0f\xe3\xe4\xa3\xdf\xad\x04\x9e\x0b\x8f\x3d\x46\x23\xd8\
-\x2d\x67\x87\x86\xba\x2c\x04\xb8\xaa\xfe\xa2\xb3\xb9\xf9\x78\x0f\
-\x36\x11\x7b\x41\x41\xec\x85\x01\x8e\xf8\xf9\x96\x2f\xa7\xb6\xf1\
-\xf1\x4b\xe1\x70\xf8\x65\x1b\xe7\xc3\x96\x6c\xe6\xfc\x8e\xaa\x28\
-\x3f\x3c\x7f\xf5\xea\xa9\x1b\x92\x44\x2e\x10\x26\x90\x40\x72\x99\
-\x87\x98\x04\x9c\x8c\xbf\x41\x78\xcf\x1f\x39\x72\x46\x99\x9b\x7b\
-\xcb\x42\x00\xb5\x3c\xc5\x64\xf9\x95\xce\x93\x27\x3f\xbc\x0c\x12\
-\x4e\x34\x1d\xe3\x65\x32\xbc\xbe\x81\x8f\xbf\x1a\x18\x38\x1f\x0e\
-\x06\x5f\x14\x39\xbf\x1e\x83\xb5\x90\x98\x04\x89\x9a\xee\x2b\x57\
-\x3e\x19\x87\x9a\x06\x71\x06\x12\x49\x38\x11\x8f\xa0\xa4\xcf\x1d\
-\x39\xd2\xa2\xfa\xfd\x2f\x09\x44\x03\x71\xcb\x50\xb0\xd9\x42\xa2\
-\xae\xff\xf8\x5c\x4b\xcb\x3f\xfb\x32\x32\xc8\xb1\x75\x2b\x4d\x20\
-\x71\xda\xfb\xfa\xba\x14\xa3\xab\x09\xc2\x88\x25\x37\x18\x33\xe3\
-\x1d\x9d\x9c\x31\x3f\xc2\x51\xdf\xdb\xdd\xfd\xf9\x04\x40\x9d\x90\
-\x7d\x1c\xbb\xe5\xc5\xa6\xa6\xd3\x68\x60\x75\x00\xbf\x49\xf1\x7a\
-\xc1\xfb\x88\x5b\xb4\x69\x20\x5e\xa9\x30\xf4\x87\x8c\x9c\x9c\x67\
-\x66\xa7\xa7\x7b\x71\x8c\xfa\x09\x17\x84\x51\x8a\x33\x9c\x0b\x5d\
-\x31\xd6\x41\x17\xaf\xb0\x92\xc1\x45\xf1\xcf\x29\x39\x39\xc5\xfe\
-\xa9\xa9\x6e\x38\xf0\x16\xbc\xfd\x26\xfa\x5d\xcd\x22\xee\xff\xff\
-\x1d\xff\x17\xef\xd2\xfe\x9f\xb7\x3d\x84\x48\x00\x00\x00\x00\x49\
-\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x10\x78\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\
-\x00\x00\x10\x3f\x49\x44\x41\x54\x78\x5e\xed\x9d\x0b\xac\x1e\x45\
-\x15\xc7\xcf\xd9\x7b\xdb\x42\x20\x42\x89\x06\x15\x09\x04\x08\x12\
-\xde\xa2\x3c\x0c\x82\x10\x04\xc4\x08\x04\x63\x45\xe5\x91\x02\x16\
-\xa9\xb6\x77\x67\xbf\xde\x46\x5e\x89\x25\x18\x21\xb5\x37\x3b\x7b\
-\xfb\x00\x0a\x3e\x80\x04\x4c\x4d\x90\x48\x22\x0a\x28\x68\x10\x91\
-\x00\x51\x8b\x12\x83\x84\x87\x8f\x08\x11\x83\x3c\xe5\xb6\x77\xc7\
-\x0c\x7e\x90\x4b\xbd\x8f\xdd\xb3\x33\xfb\xed\xec\xfe\x27\x21\x97\
-\xa4\x73\xce\xcc\xfc\xce\xfe\xf2\xed\xf7\xd8\x19\x26\x34\x10\x00\
-\x81\x19\x09\x30\xd8\x80\x00\x08\xcc\x4c\x00\x82\xe0\xea\x00\x81\
-\x59\x08\x40\x10\x5c\x1e\x20\x00\x41\x70\x0d\x80\x80\x8c\x00\x5e\
-\x41\x64\xdc\x10\xd5\x11\x02\x10\xa4\x23\x85\xc6\x32\x65\x04\x20\
-\x88\x8c\x1b\xa2\x3a\x42\x00\x82\x74\xa4\xd0\x58\xa6\x8c\x00\x04\
-\x91\x71\x43\x54\x47\x08\x40\x90\x8e\x14\x1a\xcb\x94\x11\x80\x20\
-\x32\x6e\x88\xea\x08\x01\x08\xd2\x91\x42\x63\x99\x32\x02\x10\x44\
-\xc6\x0d\x51\x1d\x21\x00\x41\x3a\x52\x68\x2c\x53\x46\x00\x82\xc8\
-\xb8\x21\xaa\x23\x04\x20\x48\x47\x0a\x8d\x65\xca\x08\x40\x10\x19\
-\x37\x44\x75\x84\x00\x04\xe9\x48\xa1\xb1\x4c\x19\x01\x08\x22\xe3\
-\x86\xa8\x8e\x10\x80\x20\x03\x2c\x74\x1c\xc7\x4b\x98\x79\x15\x33\
-\x3f\x1d\x45\xd1\x92\xb1\xb1\xb1\x3f\x0e\x70\x3a\x18\x7a\x1a\x02\
-\x10\x64\x40\x97\x85\x52\xea\x5b\x44\x34\x3a\x65\xf8\x2b\xb4\xd6\
-\xab\x06\x34\x1d\x0c\x3b\x03\x01\x08\x52\xf3\xa5\xa1\x94\xda\x93\
-\x88\x32\x22\x3a\x6d\x9b\xa1\x21\x48\xcd\xb5\x28\x32\x1c\x04\x29\
-\x42\xc9\x51\x9f\x24\x49\x4e\xca\xf3\x3c\x63\xe6\xfd\xa6\x49\x09\
-\x41\x1c\x71\x76\x99\x06\x82\xb8\xa4\x39\x4b\xae\x38\x8e\x97\x31\
-\xf3\xda\x59\xba\x40\x90\x9a\x6a\x51\x66\x18\x08\x52\x86\x96\xa0\
-\xaf\x31\x86\x93\x24\xb1\xb7\x54\xcb\xe7\x08\x87\x20\x02\xbe\xbe\
-\x43\x20\x88\x47\xc2\x71\x1c\x7f\x90\x99\xad\x1c\x27\x17\x18\x06\
-\x82\x14\x80\x54\x77\x17\x08\xe2\x89\x78\x92\x24\xa7\x1a\x63\xd6\
-\x13\xd1\xee\x05\x87\x80\x20\x05\x41\xd5\xd9\x0d\x82\x78\xa0\x9d\
-\x24\xc9\x0a\x63\xcc\x9a\x92\xa9\x21\x48\x49\x60\x75\x74\x87\x20\
-\x0e\x29\x27\x49\xb2\xbd\xfd\x08\xd7\x18\xb3\x44\x90\x16\x82\x08\
-\xa0\xf9\x0e\x81\x20\x8e\x08\x2f\x5f\xbe\xfc\x90\xa1\xa1\x21\x7b\
-\x4b\x75\xb4\x30\x25\x04\x11\x82\xf3\x19\x06\x41\x1c\xd0\x8d\xe3\
-\x78\x51\x14\x45\xd7\x19\x63\x16\x56\x48\x07\x41\x2a\xc0\xf3\x15\
-\x0a\x41\x2a\x92\x4d\x92\xe4\x72\x63\xcc\x95\x15\xd3\xd8\x70\x08\
-\xe2\x00\xa2\xeb\x14\x10\x44\x48\x54\x29\xb5\x33\x11\x6d\x20\xa2\
-\x2f\x08\x53\x6c\x1b\x06\x41\x1c\x81\x74\x99\x06\x82\x08\x68\x26\
-\x49\x72\x04\x11\x6d\x34\xc6\x1c\x22\x08\x9f\x29\xe4\x0d\x22\x7a\
-\x99\x99\x5f\x36\xc6\xbc\x6c\xff\xdf\xfe\x8d\xa2\xc8\xfe\xfd\x37\
-\x11\xbd\x48\x44\xcf\x19\x63\x36\x2f\x58\xb0\x60\xf3\xea\xd5\xab\
-\xff\xee\x70\x6c\xa4\x9a\x81\x00\x04\x29\x79\x69\xc4\x71\x7c\x2e\
-\x33\xdf\x40\x44\xf3\x4a\x86\xba\xee\xfe\x02\x11\x6d\xb6\xff\x59\
-\x69\x86\x86\x86\x36\x47\x51\xb4\x79\xcd\x9a\x35\xaf\xba\x1e\xa8\
-\xcb\xf9\x20\x48\x89\xea\x27\x49\x72\xb5\x31\xe6\x6b\x25\x42\x6a\
-\xef\xca\xcc\x0f\x10\xd1\x1d\xc6\x98\x9f\x68\xad\x7f\x5b\xfb\x04\
-\x5a\x36\x20\x04\x29\x50\xd0\x38\x8e\x77\x65\xe6\xeb\x89\xe8\xd4\
-\x02\xdd\x9b\xd4\xe5\x49\x2b\x0b\x11\xfd\x82\x88\xee\xd3\x5a\xdb\
-\xdb\x34\xb4\x12\x04\x20\xc8\x1c\xb0\x94\x52\xc7\x11\x91\xbd\xa5\
-\xda\xbb\x04\xd7\x26\x76\x7d\x85\x88\xee\x61\xe6\xbb\xa3\x28\xda\
-\x34\x36\x36\xf6\xcf\x26\x4e\xb2\x69\x73\x82\x20\xb3\x54\x24\x49\
-\x92\xaf\xf4\x7f\x4f\xd5\xb4\xba\x55\x9d\xcf\x73\x44\xb4\xc9\x18\
-\xb3\x29\xcb\xb2\xfb\xab\x26\x6b\x73\x3c\x04\x99\xa1\xba\x71\x1c\
-\x1f\xc9\xcc\x0f\xb6\xb9\xf8\xfd\xb5\xdd\xc5\xcc\x9b\xe6\xcd\x9b\
-\xb7\x69\xf5\xea\xd5\xf6\xd3\x33\xb4\x29\x04\x20\xc8\x0c\x97\x83\
-\x52\x6a\x31\x11\x7d\xb7\x43\x57\xcb\xb3\xf6\x55\x85\x88\x6e\xd5\
-\x5a\x3f\xda\xa1\x75\xcf\xba\x54\x08\x32\x03\x9e\x24\x49\x76\x31\
-\xc6\xdc\x4d\x44\x87\x75\xec\x62\xd9\xc2\xcc\xe3\x13\x13\x13\x6b\
-\xd7\xaf\x5f\xff\x4c\xc7\xd6\xfe\x7f\xcb\x85\x20\xb3\x5c\x01\x8b\
-\x17\x2f\xde\x6e\xe1\xc2\x85\xd7\x1b\x63\xce\xee\xda\x85\x62\x8c\
-\xf9\x87\x15\x65\x78\x78\x78\xbc\xcb\xdf\xad\x40\x90\x02\x57\xbe\
-\x52\xea\x12\x22\xfa\x66\x81\xae\x6d\xec\xf2\x18\x11\xad\xd5\x5a\
-\x6f\x6c\xe3\xe2\xe6\x5a\x13\x04\x99\x8b\x50\xff\xdf\x93\x24\x39\
-\xdd\x18\x63\x3f\xee\x7d\x77\xc1\x90\xb6\x75\xb3\xdf\xa5\x8c\x6b\
-\xad\x6f\x6b\xdb\xc2\x66\x5b\x0f\x04\x29\x51\xed\x5e\xaf\xb7\x6f\
-\x9e\xe7\xf6\x0b\xc3\x63\x4b\x84\xb5\xad\xeb\x46\x66\xbe\x24\x4d\
-\xd3\x7f\xb5\x6d\x61\xd3\xad\x07\x82\x08\xaa\x1c\xc7\xf1\x35\xcc\
-\x7c\x91\x20\xb4\x2d\x21\x8f\x1a\x63\x2e\xce\xb2\xcc\x7e\x88\xd1\
-\xea\x06\x41\x84\xe5\x55\x4a\xd9\x6d\x7c\xc6\x85\xe1\xd3\x85\x5d\
-\x41\x44\xf6\x27\xf4\xf6\x3f\xfb\xe0\xd5\xb6\x7f\x77\x74\x38\x96\
-\xab\x54\x97\x6a\xad\xaf\x72\x95\xac\x89\x79\x20\x48\x85\xaa\xc4\
-\x71\x7c\x22\x33\xdb\x37\xaf\x76\x3b\xd1\xaa\x6d\xd6\xe7\x41\x46\
-\x47\x47\x77\xd8\xb2\x65\xcb\xfe\xcc\x7c\x00\x33\xef\x9f\xe7\xf9\
-\x9b\x7f\x1d\x8d\x5d\x65\xee\xb7\xe5\x79\x7e\xf1\xf8\xf8\xf8\x13\
-\x55\x92\x34\x35\x16\x82\x54\xac\xcc\x8a\x15\x2b\xf6\xc8\xf3\x7c\
-\x83\x31\xe6\x53\x15\x53\x89\x1e\x98\xea\x7f\x5f\x63\xf7\xdd\xfa\
-\x64\x7f\xff\xad\x5d\x2b\xce\x43\x12\x6e\xbf\x2f\xb9\x44\x6b\x7d\
-\xab\x24\xb8\xc9\x31\x10\xc4\x51\x75\xa6\xd9\xad\xbd\x6c\x66\x91\
-\x20\xdb\x0e\xd2\xeb\xf5\x8e\xcf\xf3\xfc\x04\x22\x3a\x91\x88\xec\
-\x83\x5d\x75\xb6\xab\xb4\xd6\x97\xd6\x39\xa0\xef\xb1\x20\x88\x43\
-\xc2\x4a\xa9\x2f\x11\xd1\x75\x44\x14\x09\xd2\x3a\x11\x64\xea\xb8\
-\xf6\x97\xc8\xc6\x98\xd3\x98\xf9\x74\x22\xda\x4b\x30\xa7\xd2\x21\
-\xcc\x7c\x63\x9a\xa6\xf6\x67\x3a\xad\x68\x10\xc4\x71\x19\xe3\x38\
-\x3e\x96\x99\xed\xf6\x3f\x07\x96\x4c\xed\x5c\x90\xb7\xc6\xbf\xf0\
-\xc2\x0b\xe7\xed\xb8\xe3\x8e\xa7\xe5\x79\x6e\x45\x39\x4b\x28\x70\
-\x99\xe5\xdc\xa3\xb5\xb6\xaf\x60\xc1\x37\x08\xe2\xa1\x84\x2b\x57\
-\xae\x7c\xef\x96\x2d\x5b\xec\x9e\xbc\x9f\x2b\x91\xde\x9b\x20\x53\
-\xe7\xd0\xeb\xf5\x0e\x31\xc6\x9c\x6f\x8c\xb9\x80\x88\x76\x28\x31\
-\xbf\xb2\x5d\x1f\x9f\x98\x98\x38\x62\xc3\x86\x0d\xf6\x39\x94\x60\
-\x1b\x04\xf1\x58\xba\x38\x8e\xaf\x64\xe6\xcb\x0b\x0e\x51\x8b\x20\
-\x6f\xcd\xc5\x7e\xe9\x39\x45\x14\x5f\xbf\x0e\xb0\x9b\x4d\x1c\xaa\
-\xb5\x7e\xba\x20\x83\xc6\x75\x83\x20\x9e\x4b\xa2\x94\x3a\x87\x88\
-\xd6\x11\xd1\xbb\xe6\x18\xaa\x56\x41\xa6\x88\xb2\x7b\x9e\xe7\xf6\
-\xd5\xe4\xeb\xbe\x50\x0c\x0d\x0d\x7d\x64\x6c\x6c\xec\x11\x5f\xf9\
-\x7d\xe6\x85\x20\x3e\xe9\xf6\x73\xdb\x87\xaf\xa2\x28\xd2\xc6\x98\
-\xa3\x66\x19\x6e\x20\x82\xbc\x35\x9f\xfe\xa3\xc5\x56\x12\xfb\x88\
-\xb1\xf3\xc6\xcc\x07\xa7\x69\x6a\x77\x61\x09\xaa\x41\x90\x9a\xca\
-\xb5\x74\xe9\xd2\x85\x0b\x16\x2c\xd0\x44\x74\xee\x0c\x43\x0e\x54\
-\x90\x29\xa2\xd8\x83\x44\x7d\xbd\x9a\x2c\x0c\x6d\xe3\x08\x08\x52\
-\x93\x20\x53\x2e\xc0\xcb\x88\xe8\x1b\xd3\x0c\xdb\x08\x41\xec\xbc\
-\x3c\xbe\x9a\x3c\xab\xb5\xde\xa3\x66\xe4\x95\x86\x83\x20\x95\xf0\
-\xc9\x82\x7b\xbd\xde\x22\x7b\x98\x27\x11\xbd\x6f\x4a\x86\xc6\x08\
-\x32\x45\xe6\x6d\x8f\xaa\x96\x2d\xf8\x9d\x51\xb7\x6b\xad\xcf\x70\
-\x91\xa8\x8e\x1c\x10\xa4\x0e\xca\xd3\x8c\x61\x3f\x6e\xed\x4b\xf2\
-\xf1\xfe\x3f\x9f\xa7\xb5\xfe\xde\x80\xa6\x33\xe3\xb0\xfd\x0f\x19\
-\xac\x28\xce\x7e\xc2\x62\x8c\xb9\x3a\xcb\x32\xfb\x10\x5a\xe3\x1b\
-\x04\x19\x60\x89\xec\x81\x3b\xc6\x18\xfb\x29\xd7\xfb\xb5\xd6\xf6\
-\xde\xbf\x91\x2d\x8e\xe3\x83\x99\xd9\x4a\x72\x92\xc3\x09\xae\xd4\
-\x5a\x97\x3d\x85\xcb\xe1\xf0\xc5\x52\x41\x90\x62\x9c\xd0\xeb\x7f\
-\xef\x4d\x5c\xdf\x72\x5d\xa0\xb5\xfe\x4e\x93\xe1\x42\x90\x26\x57\
-\xa7\x81\x73\x53\x4a\xd9\x4f\xb8\x9c\xbd\xda\x31\xf3\x89\x69\x9a\
-\xde\xd3\xc0\xa5\xbe\x39\x25\x08\xd2\xd4\xca\x34\x78\x5e\x8e\x25\
-\x79\xb4\x2f\x49\x23\x1f\xe1\x85\x20\x0d\xbe\x10\x9b\x3c\xb5\x38\
-\x8e\x57\x32\xf3\x6a\x17\x73\xb4\x1b\x83\xa7\x69\x7a\xa1\x8b\x5c\
-\xae\x73\x40\x10\xd7\x44\x3b\x94\x4f\x29\x65\x4f\xd7\xba\xc5\xc5\
-\x92\x99\x79\x69\x9a\xa6\xd7\xba\xc8\xe5\x32\x07\x04\x71\x49\xb3\
-\x83\xb9\x7a\xbd\xde\x09\x79\x9e\xbb\x78\x0f\xf1\x52\xff\x56\xeb\
-\xa1\x26\x61\x84\x20\x4d\xaa\x46\xa0\x73\x71\xb5\x8f\x31\x33\xdf\
-\xbb\xd3\x4e\x3b\x9d\xb4\x6a\xd5\xaa\xad\x4d\x41\x01\x41\x9a\x52\
-\x89\xc0\xe7\x11\xc7\xf1\xe5\xcc\x5c\xf9\xb4\x5f\x66\x1e\x4b\xd3\
-\x74\xb4\x29\x38\x20\x48\x53\x2a\xd1\x82\x79\x28\xa5\x6e\x9c\xe5\
-\xc7\x98\x85\x57\x68\x8c\x39\xa6\x29\xe7\x96\x40\x90\xc2\x65\x43\
-\xc7\xb9\x08\xf4\x7f\xb1\x7c\x27\x11\x1d\x39\x57\xdf\xd9\xfe\x9d\
-\x99\x7f\x90\xa6\x69\x99\xa7\x31\xab\x0c\x37\x6b\x2c\x04\xf1\x86\
-\xb6\x9b\x89\x57\xac\x58\xf1\xb1\xc9\xc9\x49\xfb\xa6\x7d\x41\x15\
-\x02\xcc\xfc\x99\x34\x4d\x7f\x58\x25\x87\x8b\x58\x08\xe2\x82\x22\
-\x72\xbc\x83\x80\x52\xaa\x47\x44\x63\x15\xb1\xd8\x43\x47\x8f\xaf\
-\x98\xa3\x72\x38\x04\xa9\x8c\x10\x09\xa6\x23\xa0\x94\xfa\x3e\x11\
-\x9d\x59\x91\xce\x97\x07\x7d\xec\x02\x04\xa9\x58\x41\x84\x4f\x4f\
-\x20\x49\x92\xbd\xfa\x27\x74\x55\xd9\x8f\xeb\x0f\x13\x13\x13\x47\
-\x0d\x72\x67\x14\x08\x82\x2b\xdc\x1b\x81\x38\x8e\xcf\x64\x66\xfb\
-\x4a\x22\x6e\xcc\x7c\x59\x9a\xa6\x03\x3b\xbc\x08\x82\x88\x4b\x87\
-\xc0\x22\x04\x94\x52\x76\x47\x97\xaf\x16\xe9\x3b\x43\x9f\x67\xe6\
-\xcf\x9f\x7f\xd0\xa0\x4e\xe0\x85\x20\x15\x2a\x87\xd0\xb9\x09\xd8\
-\xcd\xbd\x27\x27\x27\x7f\x45\x44\xbb\xcd\xdd\x7b\xc6\x1e\x4b\xb4\
-\xd6\xf6\x74\xaf\xda\x1b\x04\xa9\x1d\x79\xf7\x06\x54\x4a\x29\x22\
-\x4a\xa5\x2b\x37\xc6\xfc\x2c\xcb\xb2\x4f\x48\xe3\xab\xc4\xd5\x2a\
-\x48\xaf\xd7\xb3\x9b\x94\xed\x5d\x65\xc2\x88\xf5\x4a\xe0\xa5\xd7\
-\x5e\x7b\x6d\xf3\xc6\x8d\x1b\xb7\xb8\x1e\x45\x29\x75\x1f\x11\xbd\
-\xf5\xfc\xbd\x24\xfd\xf1\x5a\x6b\x9b\xa3\xd6\x56\x8b\x20\xfd\x47\
-\x35\x3f\xdb\x80\xc3\x5e\x6a\x85\x1b\xe8\x60\x6f\x10\xd1\xc3\x44\
-\x74\x93\xcb\x8f\x58\xe3\x38\xfe\x34\x33\xdf\x21\x65\x62\x8c\xb9\
-\x36\xcb\xb2\xa5\xd2\x78\x69\x9c\x57\x41\x94\x52\x47\x13\xd1\xfd\
-\xd2\xc9\x21\x6e\xe0\x04\xee\xd4\x5a\x57\x3d\x18\xe8\xed\x45\x28\
-\xa5\xbe\x4d\x44\xe7\x0b\x57\xf5\x22\x33\x1f\x98\xa6\xe9\xdf\x84\
-\xf1\xa2\x30\x6f\x82\x28\xa5\xec\x9e\x4f\x76\xd3\xe2\xf9\xa2\x99\
-\x21\xa8\x11\x04\x5c\xfe\xe4\xa3\x7f\x34\x84\x3d\x4e\x5a\xd4\x8c\
-\x31\xa3\x59\x96\x55\xfd\x86\xbe\xd4\xd8\x3e\x05\xb9\x9d\x88\xec\
-\x79\x14\x68\x61\x13\x78\x72\x62\x62\xe2\x50\x57\x5f\xd6\x29\xa5\
-\x7e\x2a\xdd\x3e\x88\x99\x1f\x4c\xd3\xf4\xa3\x75\xe2\xf4\x29\xc8\
-\x63\x44\x74\x40\x9d\x8b\xc1\x58\x7e\x08\xe4\x79\x7e\xf4\xf8\xf8\
-\xf8\x03\x2e\xb2\x8f\x8c\x8c\x9c\x17\x45\x91\x78\xab\x9f\x3c\xcf\
-\x0f\x1a\x1f\x1f\xb7\xd7\x56\x2d\xcd\xa7\x20\xf6\x6c\x88\xb9\xb6\
-\xfc\xaf\x65\x91\x18\xa4\x1a\x01\x97\xcf\x8b\xdb\xcd\xf2\xf2\x3c\
-\xdf\xcc\xcc\xa2\x4f\x33\x99\x59\xa5\x69\x6a\xb7\x6d\xad\xa5\xf9\
-\x14\xc4\xd4\xb2\x02\x0c\x52\x07\x01\xa7\xfb\x06\x2b\xa5\xec\xe6\
-\xdd\x76\x13\x6f\x49\xfb\x91\xd6\xba\xb6\x5b\x77\x08\x22\x29\x51\
-\xf7\x62\x9c\x0a\x32\x32\x32\x72\x60\x14\x45\xd2\xb3\x42\x5e\x1d\
-\x1e\x1e\xde\x6b\xcd\x9a\x35\xcf\xd7\x51\x06\x08\x52\x07\xe5\xf0\
-\xc7\x70\x2a\x88\xc5\xa1\x94\xfa\x31\x11\x9d\x22\x44\xf3\xc5\xba\
-\xce\x64\x87\x20\xc2\x0a\x75\x2c\xcc\x87\x20\xcb\x89\x68\x5c\xc8\
-\xf1\x06\xad\xf5\x12\x61\x6c\xa9\x30\x08\x52\x0a\x57\x67\x3b\x3b\
-\x17\x24\x49\x92\x7d\x8c\x31\x4f\x48\x88\x1a\x63\x9e\xca\xb2\xac\
-\xca\x73\x26\x85\x87\x85\x20\x85\x51\x75\xba\xa3\x73\x41\xaa\xde\
-\x66\xd9\xf3\x1e\xb3\x2c\xfb\x8d\xef\xaa\x40\x10\xdf\x84\xdb\x91\
-\xdf\x97\x20\xe2\xdb\x2c\x63\x4c\x9c\x65\x99\xf4\x16\xad\x70\x55\
-\x20\x48\x61\x54\x9d\xee\xe8\x45\x90\x8a\xb7\x59\xb7\x64\x59\x76\
-\x96\xef\xaa\x34\x51\x10\xfb\x93\x66\xf1\xef\x75\x7c\x03\x0b\x3c\
-\xbf\xf4\xf4\x5a\x2f\x82\xf4\x6f\xb3\x7e\x47\x44\x07\x97\xe5\x6a\
-\x8c\x79\x32\xcb\xb2\x7d\xca\xc6\x95\xed\xdf\x48\x41\x9a\xb0\xdd\
-\x4b\x59\x90\x4d\xef\xdf\x3f\xb9\xf6\x5e\xe1\x3c\x7d\x0a\x72\x13\
-\x11\xd9\x63\xe8\x4a\xb7\xad\x5b\xb7\xee\xb5\x6e\xdd\xba\xa7\x4a\
-\x07\x96\x08\x80\x20\x25\x60\x85\xdc\xb5\xc1\x82\xd8\x7d\x78\xed\
-\xd1\x6e\xa5\x1b\x33\x9f\x95\xa6\xa9\x93\xe3\x17\x66\x1a\x1c\x82\
-\x94\x2e\x4b\x98\x01\x4d\x15\x24\x49\x92\x63\x8c\x31\xbf\x14\x52\
-\x5d\xaf\xb5\x5e\x26\x8c\x2d\x14\x06\x41\x0a\x61\x0a\xbf\x53\x53\
-\x05\x59\xb4\x68\xd1\xfc\xdd\x76\xdb\xcd\x3e\xc5\x58\xba\x31\xf3\
-\x03\x69\x9a\xda\x87\xf2\xbc\x35\x08\xe2\x0d\x6d\xb3\x12\x37\x55\
-\x10\x4b\x49\x29\xf5\x08\x11\x1d\x56\x96\x58\x1d\x5f\x18\x42\x90\
-\xb2\x55\x09\xb4\x7f\x93\x05\x89\xe3\xf8\x56\x66\xfe\x7c\x59\xb4\
-\xc6\x98\xff\x64\x59\xb6\x7d\xd9\xb8\x32\xfd\x21\x48\x19\x5a\x01\
-\xf7\x6d\xb8\x20\x57\x31\xf3\xc5\x42\xbc\x0b\xb5\xd6\x2f\x0a\x63\
-\xe7\x0c\x83\x20\x73\x22\x6a\x47\x87\x26\x0b\x32\x32\x32\x72\x51\
-\x14\x45\xd7\x08\x49\xef\xaf\xb5\x7e\x5c\x18\x3b\x67\x18\x04\x99\
-\x13\x51\x3b\x3a\x34\x5c\x90\x4f\x46\x51\x64\x0f\xde\x91\xb4\x13\
-\xb4\xd6\x3f\x97\x04\x16\x89\x81\x20\x45\x28\xb5\xa0\x4f\x93\x05\
-\x59\xb6\x6c\xd9\x7e\xc3\xc3\xc3\xa2\x57\x01\xdf\xdf\x85\x40\x90\
-\x16\x5c\xfc\x45\x96\xd0\x64\x41\x16\x2f\x5e\xbc\xdd\xce\x3b\xef\
-\xfc\x7a\x91\x75\x6c\xdb\x87\x99\x47\xd3\x34\xf5\xb6\x15\x10\x04\
-\x91\x54\x25\xc0\x98\x26\x0b\x62\x71\x26\x49\xf2\xba\x31\x66\x3b\
-\x01\x5a\x6f\x3f\x83\xb1\x73\x81\x20\x82\x8a\x84\x18\xd2\x74\x41\
-\x94\x52\x2f\x10\xd1\x2e\x02\xb6\x10\x44\x00\x0d\x21\xdb\x10\x08\
-\x40\x90\xbf\x10\xd1\x07\x04\x85\x83\x20\x02\x68\x08\x09\x4f\x90\
-\x3f\x11\xd1\xbe\x82\xc2\x41\x10\x01\x34\x84\x04\x26\x48\x92\x24\
-\x8f\x1a\x63\x3e\x24\x28\x1c\x04\x11\x40\x43\x48\x60\x82\x28\xa5\
-\xec\x29\x00\x92\x1f\x1e\x42\x10\x5c\xed\xd5\x09\x04\xf0\x1e\xe4\
-\x21\x22\x3a\x5c\xb0\x52\x08\x22\x80\x86\x90\xf0\x5e\x41\xec\x93\
-\x81\x7b\x0a\x0a\x07\x41\x04\xd0\x10\x12\x9e\x20\xaf\x10\xd1\x0e\
-\x65\x0b\xe7\x72\x63\xed\xe9\xc6\xc6\xf7\x20\x65\x2b\x12\x68\xff\
-\x26\xdf\x62\x8d\x8e\x8e\xee\xb0\x75\xeb\x56\x2b\x48\xe9\xe6\xf2\
-\x80\x1f\x08\x52\x1a\x7f\x7b\x02\x9a\x2c\x88\x52\xca\xde\x5a\x89\
-\x36\x5f\x70\x79\x76\x09\x04\x69\xcf\xf5\x5e\x7a\x25\x4d\x16\x24\
-\x8e\xe3\xc3\x99\xd9\xbe\x49\x2f\xdd\x26\x27\x27\xf7\x59\xbb\x76\
-\xed\x93\xa5\x03\x0b\x06\xe0\x16\xab\x20\xa8\xd0\xbb\x35\x59\x90\
-\x91\x91\x91\x33\xa2\x28\xba\x4d\xc0\x78\xeb\xc4\xc4\xc4\x42\x57\
-\xc7\xc3\xe1\x15\x44\x50\x81\xb6\x84\x34\x59\x90\x38\x8e\x57\x30\
-\xf3\x1a\x01\xeb\xbf\x6a\xad\x77\x17\xc4\x15\x0e\xc1\x2b\x48\x61\
-\x54\x61\x77\x6c\xb2\x20\x49\x92\xdc\x6c\x8c\x39\x5b\x40\xf8\x61\
-\xad\xb5\xe4\xbb\x93\xc2\x43\x41\x90\xc2\xa8\xc2\xee\xd8\x64\x41\
-\xfa\x73\x13\x01\xd6\x5a\xdb\xad\x6a\xbd\x35\x08\xe2\x0d\x6d\xb3\
-\x12\x37\x59\x90\x66\x91\x7a\xe7\x6c\x20\x48\x93\xab\xe3\x70\x6e\
-\x10\x44\x06\x13\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\x83\x20\x32\
-\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\x56\
-\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\x17\
-\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\
-\x8c\x5b\x70\x51\x10\x44\x56\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\
-\x95\x0c\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\
-\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\x56\x32\x08\
-\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\x17\x05\x41\
-\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\
-\x70\x51\x10\x44\x56\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\
-\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\
-\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\x56\x32\x08\x22\xe3\
-\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\
-\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\
-\x10\x44\x56\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\
-\xb8\x05\x17\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\
-\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\x56\x32\x08\x22\xe3\x16\x5c\
-\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\x83\x20\
-\x32\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\
-\x56\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\
-\x17\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\xc9\x1a\
-\x29\x88\x6c\x29\x88\x2a\x40\xe0\xb8\x02\x7d\xa6\xeb\x72\x85\xd6\
-\x7a\x95\x30\x36\xe8\xb0\x26\x0a\x12\x34\xd0\x96\x4e\x1e\x82\xb8\
-\x2e\xac\x52\xca\xb8\xce\x89\x7c\x03\x23\x00\x41\x5c\xa3\x87\x20\
-\xae\x89\x0e\x34\x1f\x04\x71\x8d\x1f\x82\xb8\x26\x3a\xd0\x7c\x10\
-\xc4\x35\x7e\x08\xe2\x9a\xe8\x40\xf3\x41\x10\xd7\xf8\x21\x88\x6b\
-\xa2\x03\xcd\x07\x41\x5c\xe3\x87\x20\xae\x89\x0e\x34\x1f\x04\x71\
-\x8d\x1f\x82\xb8\x26\x3a\xd0\x7c\x10\xc4\x35\x7e\xa5\xd4\xf3\x44\
-\xf4\x1e\xd7\x79\x91\x6f\x20\x04\xce\xd5\x5a\xdf\x3c\x90\x91\x07\
-\x3c\xa8\xcf\x2f\x0a\x1f\x21\xa2\xc3\x06\xbc\x3e\x0c\xef\x80\x80\
-\x31\xe6\x90\x2c\xcb\x7e\xef\x20\x55\x70\x29\x7c\x0a\x32\x4e\x44\
-\xcb\x83\x23\x82\x09\x6f\x4b\xe0\x2e\xad\xf5\xc9\x5d\xc5\xe2\x4d\
-\x10\x0b\x54\x29\xf5\x04\x11\xed\xd3\x55\xb8\x6d\x58\x77\x97\x5f\
-\x3d\x6c\xfd\xbc\x0a\x62\x07\x48\x92\x64\x93\x31\x66\x51\x1b\x2e\
-\x96\x0e\xae\x61\x44\x6b\xbd\xb6\x83\xeb\x7e\x7b\xc9\xde\x05\xe9\
-\xbf\x92\x9c\x43\x44\xa7\x10\xd1\x87\x89\x68\xdf\x2e\x03\x6f\xf8\
-\xda\x5f\x22\xa2\x5f\x33\xb3\x7d\xbf\xb1\x31\x4d\xd3\x3f\x37\x7c\
-\xbe\xde\xa7\x57\x8b\x20\xde\x57\x81\x01\x40\xc0\x13\x01\x08\xe2\
-\x09\x2c\xd2\xb6\x83\x00\x04\x69\x47\x1d\xb1\x0a\x4f\x04\x20\x88\
-\x27\xb0\x48\xdb\x0e\x02\x10\xa4\x1d\x75\xc4\x2a\x3c\x11\x80\x20\
-\x9e\xc0\x22\x6d\x3b\x08\x40\x90\x76\xd4\x11\xab\xf0\x44\x00\x82\
-\x78\x02\x8b\xb4\xed\x20\x00\x41\xda\x51\x47\xac\xc2\x13\x01\x08\
-\xe2\x09\x2c\xd2\xb6\x83\x00\x04\x69\x47\x1d\xb1\x0a\x4f\x04\x20\
-\x88\x27\xb0\x48\xdb\x0e\x02\x10\xa4\x1d\x75\xc4\x2a\x3c\x11\x80\
-\x20\x9e\xc0\x22\x6d\x3b\x08\x40\x90\x76\xd4\x11\xab\xf0\x44\x00\
-\x82\x78\x02\x8b\xb4\xed\x20\x00\x41\xda\x51\x47\xac\xc2\x13\x01\
-\x08\xe2\x09\x2c\xd2\xb6\x83\x00\x04\x69\x47\x1d\xb1\x0a\x4f\x04\
-\x20\x88\x27\xb0\x48\xdb\x0e\x02\x10\xa4\x1d\x75\xc4\x2a\x3c\x11\
-\x80\x20\x9e\xc0\x22\x6d\x3b\x08\x40\x90\x76\xd4\x11\xab\xf0\x44\
-\x00\x82\x78\x02\x8b\xb4\xed\x20\x00\x41\xda\x51\x47\xac\xc2\x13\
-\x81\xff\x02\x47\xb6\x8f\x23\x5e\xd2\x05\xf5\x00\x00\x00\x00\x49\
-\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x05\xb5\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\
-\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
-\x01\x00\x9a\x9c\x18\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\
-\x8e\x7c\xfb\x51\x93\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\
-\x25\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\
-\x30\x00\x00\xea\x60\x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\
-\x46\x00\x00\x05\x2b\x49\x44\x41\x54\x78\xda\x62\xf8\xff\xff\x3f\
-\x03\x2d\x30\x40\x00\x96\xc4\x20\x05\x80\x18\x84\x81\x01\xad\x2c\
-\x78\x2e\xd5\x47\x2c\x1e\xbc\x95\xfe\xc2\xff\xff\x65\xdb\xb2\x03\
-\x09\x64\x72\xcb\xdd\x61\x66\xe8\xbd\x23\x33\x31\xe7\xc4\xa1\xaa\
-\xf0\x23\xcc\xfc\xaa\xea\x22\xa2\xd8\xfb\x39\x32\x22\xee\x39\xc6\
-\xc0\xf6\x68\xad\x41\x44\x6e\x3e\x01\x84\x62\xb0\x88\x88\x08\x83\
-\x81\x81\x01\x83\x91\x91\x11\x48\x3d\x9f\xb5\xb5\x75\x47\x67\x67\
-\xe7\xcb\x0d\x1b\x36\xfc\x3f\x70\xe0\xc0\xff\x43\x87\x0e\xfd\x5f\
-\xb3\x66\xcd\x7f\xa0\xd8\xff\x98\x98\x98\x67\xf2\xf2\xf2\x25\x20\
-\x85\xc2\xc2\xc2\x0c\x4c\x4c\x4c\x28\x06\x03\x04\x10\xdc\x60\x90\
-\xad\x42\x42\x42\x0c\x1a\x1a\x1a\x0c\x40\x0d\xd1\xdb\xb6\x6d\xfb\
-\xff\xfb\xf7\xef\xff\xd8\xc0\xfb\xf7\xef\xff\xef\xde\xbd\xfb\x7f\
-\x73\x73\xf3\xff\xc8\xc8\xc8\xff\x9c\x9c\x9c\x66\x20\x0b\x80\xbe\
-\x82\x1b\x0c\x10\x40\x60\x83\xc1\xc1\x20\x26\xc6\x00\xf4\x2a\x88\
-\x1d\x7c\xea\xd4\xa9\xff\xb8\xc0\xaf\x5f\xbf\xfe\x7f\xfb\xf6\xed\
-\xff\x9b\x37\x6f\xfe\xaf\x5c\xb9\xf2\x7f\x4d\x4d\xcd\xff\xb0\xb0\
-\xb0\xff\x40\x73\x79\x41\xae\x86\x19\x0c\x10\x40\x70\x83\x05\x05\
-\x05\x41\x96\x2a\xce\x99\x33\xe7\xff\x9f\x3f\x7f\x70\x1a\x0c\x33\
-\xf4\xd5\xab\x57\xff\x2f\x5c\xb8\xf0\xbf\xad\xad\xed\x7f\x49\x49\
-\xc9\x7f\x19\x19\x99\x4e\x58\x84\x30\x32\x32\x32\x00\x04\x10\xd8\
-\x60\x11\x60\x10\x70\x00\x6d\x89\x8d\x8b\x3b\x7a\xfb\xce\x9d\xff\
-\xf8\xc0\xe7\x2f\x5f\xfe\xbf\x78\xf1\xe2\xff\xd3\xa7\x4f\xff\x1f\
-\x3f\x7e\xfc\xff\xa4\x49\x93\xc0\x61\xee\xe3\xe3\xf3\x0d\x68\xa6\
-\x00\xcc\x60\x80\x00\x02\x1b\x2c\x0c\x72\x2d\x23\xa3\xec\xcc\x25\
-\x4b\xfe\xff\x05\x0a\xfc\xc1\x63\xf0\xc7\x9f\x3f\xff\x3f\x7b\xfe\
-\xfc\xff\xdd\xbb\x77\xff\xcf\x9a\x35\xeb\xff\xbc\x79\xf3\xfe\x4f\
-\x9f\x3e\xfd\x7f\x5e\x5e\xde\x7f\x31\x31\xb1\x6a\x98\xab\x01\x02\
-\x08\x92\xe6\x80\x40\xcd\xca\xaa\xfc\xc4\xb5\x6b\xff\x3f\x00\x23\
-\xe5\x4c\x61\xe1\xff\xf3\xd9\xd9\xff\xaf\xe6\xe6\xfe\xbf\x03\xd4\
-\x70\x0f\x88\xef\x26\x25\xfd\x3f\xe6\xef\xff\xff\xdc\x9e\x3d\xff\
-\x5f\x00\x23\x6f\xe9\xd2\xa5\xff\x67\xcc\x98\xf1\x7f\xc1\x82\x05\
-\xff\x67\xcf\x9e\xfd\xbf\xae\xae\xee\xbf\xa5\xa5\xe5\x35\x98\xb9\
-\x00\x01\x04\x37\x38\x3b\x21\xe1\xe6\x2b\x1b\x9b\xff\x1f\x95\x94\
-\xfe\xbf\x96\x93\xfb\xff\x16\x88\x5f\x88\x89\xfd\xbf\xc2\xc0\xf0\
-\x7f\x13\x10\xf7\x03\x71\x85\xac\xec\xff\xc5\xcb\x97\xff\x5f\xb6\
-\x7a\x35\xd8\xa5\x0b\x81\x86\x82\xe2\x04\xe4\xf2\xd6\xd6\xd6\xff\
-\xe1\xe1\xe1\x20\xc3\x64\x40\x91\x08\x10\x40\x10\x83\xb9\xb9\x59\
-\x4f\x02\x0d\x3a\xc3\xc4\xf4\xff\x84\xa0\xe0\xff\xeb\xca\xca\xff\
-\x8f\x00\x0d\x59\xa6\xa0\xf0\xbf\xc7\xd8\xf8\x7f\x63\x5c\xdc\xff\
-\xce\x89\x13\xff\xcf\x06\xa6\xe7\xc5\xab\x56\xfd\x5f\x01\x4c\x0d\
-\xcb\x81\x16\xcc\x9f\x3f\x1f\xec\xea\xa9\x53\xa7\xfe\xef\xea\xea\
-\xfa\x9f\x0b\xf4\x21\x2f\x2f\x6f\x06\x28\xf9\x02\x04\x10\xd8\x60\
-\x71\x06\x06\x8d\x7b\xbc\xbc\xff\x73\x81\x36\xe6\x66\x64\xfc\xcf\
-\x0c\x09\xf9\x9f\x01\x0c\x8a\xd2\xf6\xf6\xff\x5d\xc0\x70\x9f\xb7\
-\x75\xeb\xff\x95\x5b\xb6\xfc\x5f\xbf\x69\xd3\xff\xf5\x40\xc3\x57\
-\xac\x58\xf1\x7f\xf1\xe2\xc5\xe0\x20\x98\x32\x65\xca\xff\x09\x13\
-\x26\x80\x23\xb0\xb2\xb2\xf2\xbf\x8a\x8a\xca\x4a\x50\x08\x00\x04\
-\x10\xd8\x60\x59\x06\x06\xed\xf3\xdc\xdc\xff\x73\x81\x12\xb3\x81\
-\x19\x63\xf9\xce\x9d\xff\x37\x00\xc3\x7a\x1d\x90\xbd\x6e\xe3\xc6\
-\xff\x1b\x81\x06\xae\x5b\xbf\x1e\x9c\xeb\x40\x2e\x5d\x02\xb4\x0c\
-\xe4\x5a\x50\xa4\x81\x0c\xed\xee\xee\xfe\xdf\x0e\x74\x44\x6d\x6d\
-\xed\x7f\x60\x71\x70\x15\x64\x2e\x40\x00\x81\x0d\x66\x03\x66\x9a\
-\xbd\xc0\x30\x14\xe3\xe3\x9b\x27\xac\xa4\xd4\xea\xed\xeb\xfb\xb0\
-\xa7\xa7\xe7\xff\xda\xb5\x6b\xff\x83\xb2\x33\x28\x23\x2c\x5b\xb6\
-\x0c\x6c\xe0\xc2\x85\x0b\xc1\xe1\x0a\x32\x74\x22\x30\x78\x40\x86\
-\x82\xc2\xb7\xa1\xa1\x01\x6c\xb0\xaf\xaf\xef\x2f\x50\x71\x00\x10\
-\x40\x60\x83\xb9\x81\xac\x76\x06\x86\x63\xf6\x0c\x0c\x1d\xca\x90\
-\x72\x02\x04\x02\xec\xec\xec\xae\x80\x32\x00\x28\x05\x2c\x5a\xb4\
-\xe8\xff\xdc\xb9\x73\xc1\x11\x05\x0a\x53\x98\x4b\x41\xf2\xf5\xf5\
-\xf5\xff\xab\xab\xab\xff\x57\x55\x55\xfd\x0f\x08\x08\x00\x45\xa0\
-\x24\x40\x00\x81\x0d\x36\x07\xb2\x8c\x81\x06\x05\x30\x30\x6c\x86\
-\x99\xca\x0b\xc9\x89\x0c\xc2\x22\x22\x4d\xb9\xc0\xe4\x36\x79\xf2\
-\x64\xb0\x2b\x61\x86\x82\x22\x0b\xe6\x52\x98\xa1\x15\x15\x15\xff\
-\x6d\x6c\x6c\x1e\x00\xb5\x71\x02\x04\x10\x3c\xb9\x21\x03\x61\x20\
-\x36\x80\xb2\x15\x95\x95\x41\x45\xa2\x7b\x54\x54\x14\x38\x82\xfa\
-\xfb\xfb\xe1\xde\x07\xb9\x14\x54\x56\x80\x0c\x2d\x2b\x2b\xfb\x9f\
-\x04\x4c\xeb\xc0\xf2\xa6\x16\xa4\x0f\x20\x80\xc0\x06\xfb\x00\x19\
-\x7e\x0c\x0c\xbe\xbd\x40\x17\x27\x32\x30\x4c\x04\x72\x45\x34\xa0\
-\x06\x6b\x6a\x6b\x33\x08\x08\x80\x73\xaa\xaa\xb7\xb7\xf7\x27\x90\
-\xeb\x1a\x1b\x1b\xe1\x86\x82\x5c\x59\x54\x54\xf4\x3f\x28\x28\xe8\
-\x3f\x3f\x3f\x7f\x1f\x50\x1d\x3b\x48\x31\x40\x00\x81\x0d\xb6\x64\
-\x60\x70\xff\x9f\x93\xf3\x1f\xa8\xf2\xff\x7f\x5d\xdd\xff\xa7\x80\
-\x11\x09\x4c\x29\xbe\x30\x1f\x88\x03\x0b\x29\x0e\x0e\x70\xd9\xce\
-\x20\x2b\x2b\x3b\x21\x30\x30\xf0\x7f\x5a\x5a\xda\xff\xac\xac\xac\
-\xff\xa9\xa9\xa9\xff\x4d\x4d\x4d\x9f\x00\xa5\xfc\x91\x7d\x0d\x10\
-\x40\x60\x83\xe7\x30\x30\xf4\x01\xa3\xf4\x3f\x30\xba\xff\x03\x53\
-\xfc\x7f\x60\x0c\xfc\xcf\x67\x60\x78\x88\xac\x8e\x8f\x8f\x0f\x25\
-\xb4\x80\x65\x70\x34\xb0\xfc\x6e\x66\x67\x67\xcf\x06\xf2\xe5\xd1\
-\x83\x13\x20\x80\xc0\x06\xcb\x31\x30\xd8\xce\x05\xba\xf2\x88\xb0\
-\xf0\xff\x43\xc0\x5c\xd7\x28\x24\xf4\x93\x87\x81\x21\x1d\x59\x1d\
-\x28\x38\xc0\xa5\x16\x14\x80\x2a\x05\x69\x69\x69\x58\x30\x61\x00\
-\x80\x00\x02\x1b\x6c\x80\xe0\x6a\x03\xb1\x1e\x3c\x9c\xd0\x0c\x06\
-\x97\x01\x50\x00\xaa\xc6\x80\xc1\x02\xb6\x00\x1b\x00\x08\x30\x00\
-\x69\x36\x5f\x67\xcd\x5c\xcb\xcb\x00\x00\x00\x00\x49\x45\x4e\x44\
-\xae\x42\x60\x82\
-\x00\x00\x0b\xe5\
-\x6f\
-\x70\x65\x6e\x46\x69\x6c\x65\x3d\x4f\x70\x65\x6e\x0a\x6f\x70\x65\
-\x6e\x46\x69\x6c\x65\x44\x65\x74\x61\x69\x6c\x3d\x4f\x70\x65\x6e\
-\x20\x69\x6d\x61\x67\x65\x20\x6f\x72\x20\x6c\x61\x62\x65\x6c\x20\
-\x66\x69\x6c\x65\x0a\x71\x75\x69\x74\x3d\x51\x75\x69\x74\x0a\x71\
-\x75\x69\x74\x41\x70\x70\x3d\x51\x75\x69\x74\x20\x61\x70\x70\x6c\
-\x69\x63\x61\x74\x69\x6f\x6e\x0a\x6f\x70\x65\x6e\x44\x69\x72\x3d\
-\x4f\x70\x65\x6e\x20\x44\x69\x72\x0a\x6f\x70\x65\x6e\x44\x61\x74\
-\x61\x73\x65\x74\x44\x69\x72\x3d\x4f\x70\x65\x6e\x20\x44\x61\x74\
-\x61\x73\x65\x74\x44\x69\x72\x0a\x63\x6f\x70\x79\x50\x72\x65\x76\
-\x42\x6f\x75\x6e\x64\x69\x6e\x67\x3d\x43\x6f\x70\x79\x20\x70\x72\
-\x65\x76\x69\x6f\x75\x73\x20\x42\x6f\x75\x6e\x64\x69\x6e\x67\x20\
-\x42\x6f\x78\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x20\x63\x75\x72\
-\x72\x65\x6e\x74\x20\x69\x6d\x61\x67\x65\x20\x0a\x63\x68\x61\x6e\
-\x67\x65\x53\x61\x76\x65\x64\x41\x6e\x6e\x6f\x74\x61\x74\x69\x6f\
-\x6e\x44\x69\x72\x3d\x43\x68\x61\x6e\x67\x65\x20\x64\x65\x66\x61\
-\x75\x6c\x74\x20\x73\x61\x76\x65\x64\x20\x41\x6e\x6e\x6f\x74\x61\
-\x74\x69\x6f\x6e\x20\x64\x69\x72\x0a\x6f\x70\x65\x6e\x41\x6e\x6e\
-\x6f\x74\x61\x74\x69\x6f\x6e\x3d\x4f\x70\x65\x6e\x20\x41\x6e\x6e\
-\x6f\x74\x61\x74\x69\x6f\x6e\x0a\x6f\x70\x65\x6e\x41\x6e\x6e\x6f\
-\x74\x61\x74\x69\x6f\x6e\x44\x65\x74\x61\x69\x6c\x3d\x4f\x70\x65\
-\x6e\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x20\
-\x66\x69\x6c\x65\x0a\x63\x68\x61\x6e\x67\x65\x53\x61\x76\x65\x44\
-\x69\x72\x3d\x43\x68\x61\x6e\x67\x65\x20\x53\x61\x76\x65\x20\x44\
-\x69\x72\x0a\x6e\x65\x78\x74\x49\x6d\x67\x3d\x4e\x65\x78\x74\x20\
-\x49\x6d\x61\x67\x65\x0a\x6e\x65\x78\x74\x49\x6d\x67\x44\x65\x74\
-\x61\x69\x6c\x3d\x4f\x70\x65\x6e\x20\x74\x68\x65\x20\x6e\x65\x78\
-\x74\x20\x49\x6d\x61\x67\x65\x0a\x70\x72\x65\x76\x49\x6d\x67\x3d\
-\x50\x72\x65\x76\x20\x49\x6d\x61\x67\x65\x0a\x70\x72\x65\x76\x49\
-\x6d\x67\x44\x65\x74\x61\x69\x6c\x3d\x4f\x70\x65\x6e\x20\x74\x68\
-\x65\x20\x70\x72\x65\x76\x69\x6f\x75\x73\x20\x49\x6d\x61\x67\x65\
-\x0a\x76\x65\x72\x69\x66\x79\x49\x6d\x67\x3d\x56\x65\x72\x69\x66\
-\x79\x20\x49\x6d\x61\x67\x65\x0a\x76\x65\x72\x69\x66\x79\x49\x6d\
-\x67\x44\x65\x74\x61\x69\x6c\x3d\x56\x65\x72\x69\x66\x79\x20\x49\
-\x6d\x61\x67\x65\x0a\x73\x61\x76\x65\x3d\x43\x68\x65\x63\x6b\x0a\
-\x73\x61\x76\x65\x44\x65\x74\x61\x69\x6c\x3d\x53\x61\x76\x65\x20\
-\x74\x68\x65\x20\x6c\x61\x62\x65\x6c\x73\x20\x74\x6f\x20\x61\x20\
-\x66\x69\x6c\x65\x0a\x63\x68\x61\x6e\x67\x65\x53\x61\x76\x65\x46\
-\x6f\x72\x6d\x61\x74\x3d\x43\x68\x61\x6e\x67\x65\x20\x73\x61\x76\
-\x65\x20\x66\x6f\x72\x6d\x61\x74\x0a\x73\x61\x76\x65\x41\x73\x3d\
-\x53\x61\x76\x65\x20\x41\x73\x0a\x73\x61\x76\x65\x41\x73\x44\x65\
-\x74\x61\x69\x6c\x3d\x53\x61\x76\x65\x20\x74\x68\x65\x20\x6c\x61\
-\x62\x65\x6c\x73\x20\x74\x6f\x20\x61\x20\x64\x69\x66\x66\x65\x72\
-\x65\x6e\x74\x20\x66\x69\x6c\x65\x0a\x63\x6c\x6f\x73\x65\x43\x75\
-\x72\x3d\x43\x6c\x6f\x73\x65\x0a\x63\x6c\x6f\x73\x65\x43\x75\x72\
-\x44\x65\x74\x61\x69\x6c\x3d\x43\x6c\x6f\x73\x65\x20\x74\x68\x65\
-\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x66\x69\x6c\x65\x0a\x64\x65\
-\x6c\x65\x74\x65\x49\x6d\x67\x3d\x44\x65\x6c\x65\x74\x65\x20\x63\
-\x75\x72\x72\x65\x6e\x74\x20\x69\x6d\x61\x67\x65\x0a\x64\x65\x6c\
-\x65\x74\x65\x49\x6d\x67\x44\x65\x74\x61\x69\x6c\x3d\x44\x65\x6c\
-\x65\x74\x65\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\
-\x69\x6d\x61\x67\x65\x0a\x72\x65\x73\x65\x74\x41\x6c\x6c\x3d\x52\
-\x65\x73\x65\x74\x20\x49\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x61\
-\x6e\x64\x20\x53\x61\x76\x65\x20\x44\x69\x72\x0a\x72\x65\x73\x65\
-\x74\x41\x6c\x6c\x44\x65\x74\x61\x69\x6c\x3d\x52\x65\x73\x65\x74\
-\x20\x41\x6c\x6c\x0a\x62\x6f\x78\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\
-\x72\x3d\x42\x6f\x78\x20\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\
-\x0a\x62\x6f\x78\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x44\x65\x74\
-\x61\x69\x6c\x3d\x43\x68\x6f\x6f\x73\x65\x20\x42\x6f\x78\x20\x6c\
-\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x0a\x63\x72\x74\x42\x6f\x78\
-\x3d\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x42\x6f\x78\x0a\
-\x63\x72\x74\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\x44\x72\x61\
-\x77\x20\x61\x20\x6e\x65\x77\x20\x62\x6f\x78\x0a\x64\x65\x6c\x42\
-\x6f\x78\x3d\x44\x65\x6c\x65\x74\x65\x20\x52\x65\x63\x74\x42\x6f\
-\x78\x0a\x64\x65\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\x52\
-\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x62\x6f\x78\x0a\x64\x75\
-\x70\x42\x6f\x78\x3d\x44\x75\x70\x6c\x69\x63\x61\x74\x65\x20\x52\
-\x65\x63\x74\x42\x6f\x78\x0a\x64\x75\x70\x42\x6f\x78\x44\x65\x74\
-\x61\x69\x6c\x3d\x43\x72\x65\x61\x74\x65\x20\x61\x20\x64\x75\x70\
-\x6c\x69\x63\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x65\
-\x6c\x65\x63\x74\x65\x64\x20\x62\x6f\x78\x0a\x74\x75\x74\x6f\x72\
-\x69\x61\x6c\x3d\x50\x61\x64\x64\x6c\x65\x4f\x43\x52\x20\x75\x72\
-\x6c\x0a\x74\x75\x74\x6f\x72\x69\x61\x6c\x44\x65\x74\x61\x69\x6c\
-\x3d\x53\x68\x6f\x77\x20\x64\x65\x6d\x6f\x0a\x69\x6e\x66\x6f\x3d\
-\x49\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x0a\x7a\x6f\x6f\x6d\
-\x69\x6e\x3d\x5a\x6f\x6f\x6d\x20\x49\x6e\x0a\x7a\x6f\x6f\x6d\x69\
-\x6e\x44\x65\x74\x61\x69\x6c\x3d\x49\x6e\x63\x72\x65\x61\x73\x65\
-\x20\x7a\x6f\x6f\x6d\x20\x6c\x65\x76\x65\x6c\x0a\x7a\x6f\x6f\x6d\
-\x6f\x75\x74\x3d\x5a\x6f\x6f\x6d\x20\x4f\x75\x74\x0a\x7a\x6f\x6f\
-\x6d\x6f\x75\x74\x44\x65\x74\x61\x69\x6c\x3d\x44\x65\x63\x72\x65\
-\x61\x73\x65\x20\x7a\x6f\x6f\x6d\x20\x6c\x65\x76\x65\x6c\x0a\x6f\
-\x72\x69\x67\x69\x6e\x61\x6c\x73\x69\x7a\x65\x3d\x4f\x72\x69\x67\
-\x69\x6e\x61\x6c\x20\x73\x69\x7a\x65\x0a\x6f\x72\x69\x67\x69\x6e\
-\x61\x6c\x73\x69\x7a\x65\x44\x65\x74\x61\x69\x6c\x3d\x5a\x6f\x6f\
-\x6d\x20\x74\x6f\x20\x6f\x72\x69\x67\x69\x6e\x61\x6c\x20\x73\x69\
-\x7a\x65\x0a\x66\x69\x74\x57\x69\x6e\x3d\x46\x69\x74\x20\x57\x69\
-\x6e\x64\x6f\x77\x0a\x66\x69\x74\x57\x69\x6e\x44\x65\x74\x61\x69\
-\x6c\x3d\x5a\x6f\x6f\x6d\x20\x66\x6f\x6c\x6c\x6f\x77\x73\x20\x77\
-\x69\x6e\x64\x6f\x77\x20\x73\x69\x7a\x65\x0a\x66\x69\x74\x57\x69\
-\x64\x74\x68\x3d\x46\x69\x74\x20\x57\x69\x64\x74\x68\x0a\x66\x69\
-\x74\x57\x69\x64\x74\x68\x44\x65\x74\x61\x69\x6c\x3d\x5a\x6f\x6f\
-\x6d\x20\x66\x6f\x6c\x6c\x6f\x77\x73\x20\x77\x69\x6e\x64\x6f\x77\
-\x20\x77\x69\x64\x74\x68\x0a\x65\x64\x69\x74\x4c\x61\x62\x65\x6c\
-\x3d\x45\x64\x69\x74\x20\x4c\x61\x62\x65\x6c\x0a\x65\x64\x69\x74\
-\x4c\x61\x62\x65\x6c\x44\x65\x74\x61\x69\x6c\x3d\x4d\x6f\x64\x69\
-\x66\x79\x20\x74\x68\x65\x20\x6c\x61\x62\x65\x6c\x20\x6f\x66\x20\
-\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x42\x6f\x78\
-\x0a\x73\x68\x61\x70\x65\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x3d\
-\x53\x68\x61\x70\x65\x20\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\
-\x0a\x73\x68\x61\x70\x65\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x44\
-\x65\x74\x61\x69\x6c\x3d\x43\x68\x61\x6e\x67\x65\x20\x74\x68\x65\
-\x20\x6c\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\
-\x74\x68\x69\x73\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x73\x68\
-\x61\x70\x65\x0a\x73\x68\x61\x70\x65\x46\x69\x6c\x6c\x43\x6f\x6c\
-\x6f\x72\x3d\x53\x68\x61\x70\x65\x20\x46\x69\x6c\x6c\x20\x43\x6f\
-\x6c\x6f\x72\x0a\x73\x68\x61\x70\x65\x46\x69\x6c\x6c\x43\x6f\x6c\
-\x6f\x72\x44\x65\x74\x61\x69\x6c\x3d\x43\x68\x61\x6e\x67\x65\x20\
-\x74\x68\x65\x20\x66\x69\x6c\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x66\
-\x6f\x72\x20\x74\x68\x69\x73\x20\x73\x70\x65\x63\x69\x66\x69\x63\
-\x20\x73\x68\x61\x70\x65\x0a\x73\x68\x6f\x77\x48\x69\x64\x65\x3d\
-\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x4c\x61\x62\x65\x6c\x20\
-\x50\x61\x6e\x65\x6c\x0a\x75\x73\x65\x44\x65\x66\x61\x75\x6c\x74\
-\x4c\x61\x62\x65\x6c\x3d\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\
-\x74\x20\x6c\x61\x62\x65\x6c\x0a\x75\x73\x65\x44\x69\x66\x66\x69\
-\x63\x75\x6c\x74\x3d\x44\x69\x66\x66\x69\x63\x75\x6c\x74\x0a\x62\
-\x6f\x78\x4c\x61\x62\x65\x6c\x54\x65\x78\x74\x3d\x42\x6f\x78\x20\
-\x4c\x61\x62\x65\x6c\x73\x0a\x6c\x61\x62\x65\x6c\x73\x3d\x4c\x61\
-\x62\x65\x6c\x73\x0a\x61\x75\x74\x6f\x53\x61\x76\x65\x4d\x6f\x64\
-\x65\x3d\x41\x75\x74\x6f\x20\x53\x61\x76\x65\x20\x6d\x6f\x64\x65\
-\x0a\x73\x69\x6e\x67\x6c\x65\x43\x6c\x73\x4d\x6f\x64\x65\x3d\x53\
-\x69\x6e\x67\x6c\x65\x20\x43\x6c\x61\x73\x73\x20\x4d\x6f\x64\x65\
-\x0a\x64\x69\x73\x70\x6c\x61\x79\x4c\x61\x62\x65\x6c\x3d\x44\x69\
-\x73\x70\x6c\x61\x79\x20\x4c\x61\x62\x65\x6c\x73\x0a\x66\x69\x6c\
-\x65\x4c\x69\x73\x74\x3d\x46\x69\x6c\x65\x20\x4c\x69\x73\x74\x0a\
-\x66\x69\x6c\x65\x73\x3d\x46\x69\x6c\x65\x73\x0a\x61\x64\x76\x61\
-\x6e\x63\x65\x64\x4d\x6f\x64\x65\x3d\x41\x64\x76\x61\x6e\x63\x65\
-\x64\x20\x4d\x6f\x64\x65\x0a\x61\x64\x76\x61\x6e\x63\x65\x64\x4d\
-\x6f\x64\x65\x44\x65\x74\x61\x69\x6c\x3d\x53\x77\x74\x69\x63\x68\
-\x20\x74\x6f\x20\x61\x64\x76\x61\x6e\x63\x65\x64\x20\x6d\x6f\x64\
-\x65\x0a\x73\x68\x6f\x77\x41\x6c\x6c\x42\x6f\x78\x44\x65\x74\x61\
-\x69\x6c\x3d\x53\x68\x6f\x77\x20\x61\x6c\x6c\x20\x62\x6f\x75\x6e\
-\x64\x69\x6e\x67\x20\x62\x6f\x78\x65\x73\x0a\x68\x69\x64\x65\x41\
-\x6c\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\x48\x69\x64\x65\
-\x20\x61\x6c\x6c\x20\x62\x6f\x75\x6e\x64\x69\x6e\x67\x20\x62\x6f\
-\x78\x65\x73\x0a\x61\x6e\x6e\x6f\x50\x61\x6e\x65\x6c\x3d\x61\x6e\
-\x6e\x6f\x20\x50\x61\x6e\x65\x6c\x0a\x61\x6e\x6e\x6f\x3d\x61\x6e\
-\x6e\x6f\x0a\x61\x64\x64\x4e\x65\x77\x42\x62\x6f\x78\x3d\x6e\x65\
-\x77\x20\x62\x62\x6f\x78\x0a\x72\x65\x4c\x61\x62\x65\x6c\x3d\x72\
-\x65\x4c\x61\x62\x65\x6c\x0a\x63\x68\x6f\x6f\x73\x65\x6d\x6f\x64\
-\x65\x6c\x3d\x43\x68\x6f\x6f\x73\x65\x20\x4f\x43\x52\x20\x6d\x6f\
-\x64\x65\x6c\x0a\x74\x69\x70\x63\x68\x6f\x6f\x73\x65\x6d\x6f\x64\
-\x65\x6c\x3d\x43\x68\x6f\x6f\x73\x65\x20\x4f\x43\x52\x20\x6d\x6f\
-\x64\x65\x6c\x20\x66\x72\x6f\x6d\x20\x64\x69\x72\x0a\x49\x6d\x61\
-\x67\x65\x52\x65\x73\x69\x7a\x65\x3d\x49\x6d\x61\x67\x65\x20\x52\
-\x65\x73\x69\x7a\x65\x0a\x49\x52\x3d\x49\x6d\x61\x67\x65\x20\x52\
-\x65\x73\x69\x7a\x65\x0a\x61\x75\x74\x6f\x52\x65\x63\x6f\x67\x6e\
-\x69\x74\x69\x6f\x6e\x3d\x41\x75\x74\x6f\x20\x52\x65\x63\x6f\x67\
-\x6e\x69\x74\x69\x6f\x6e\x0a\x72\x65\x52\x65\x63\x6f\x67\x6e\x69\
-\x74\x69\x6f\x6e\x3d\x52\x65\x2d\x72\x65\x63\x6f\x67\x6e\x69\x74\
-\x69\x6f\x6e\x0a\x6d\x66\x69\x6c\x65\x3d\x46\x69\x6c\x65\x0a\x6d\
-\x65\x64\x69\x74\x3d\x45\x64\x69\x74\x0a\x6d\x76\x69\x65\x77\x3d\
-\x56\x69\x65\x77\x0a\x6d\x68\x65\x6c\x70\x3d\x48\x65\x6c\x70\x0a\
-\x69\x63\x6f\x6e\x4c\x69\x73\x74\x3d\x49\x63\x6f\x6e\x20\x4c\x69\
-\x73\x74\x0a\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x42\x6f\x78\x70\
-\x6f\x73\x69\x74\x69\x6f\x6e\x3d\x44\x65\x74\x65\x63\x74\x69\x6f\
-\x6e\x20\x62\x6f\x78\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x0a\x72\
-\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x52\x65\x73\x75\x6c\x74\
-\x3d\x52\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x20\x72\x65\x73\
-\x75\x6c\x74\x0a\x63\x72\x65\x61\x74\x50\x6f\x6c\x79\x67\x6f\x6e\
-\x3d\x43\x72\x65\x61\x74\x65\x20\x51\x75\x61\x64\x72\x69\x6c\x61\
-\x74\x65\x72\x61\x6c\x0a\x72\x6f\x74\x61\x74\x65\x4c\x65\x66\x74\
-\x3d\x4c\x65\x66\x74\x20\x74\x75\x72\x6e\x20\x39\x30\x20\x64\x65\
-\x67\x72\x65\x65\x73\x0a\x72\x6f\x74\x61\x74\x65\x52\x69\x67\x68\
-\x74\x3d\x52\x69\x67\x68\x74\x20\x74\x75\x72\x6e\x20\x39\x30\x20\
-\x64\x65\x67\x72\x65\x65\x73\x0a\x64\x72\x61\x77\x53\x71\x75\x61\
-\x72\x65\x73\x3d\x44\x72\x61\x77\x20\x53\x71\x75\x61\x72\x65\x73\
-\x0a\x73\x61\x76\x65\x52\x65\x63\x3d\x45\x78\x70\x6f\x72\x74\x20\
-\x52\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x20\x52\x65\x73\x75\
-\x6c\x74\x0a\x74\x65\x6d\x70\x4c\x61\x62\x65\x6c\x3d\x54\x45\x4d\
-\x50\x4f\x52\x41\x52\x59\x0a\x6e\x75\x6c\x6c\x4c\x61\x62\x65\x6c\
-\x3d\x4e\x55\x4c\x4c\x0a\x73\x74\x65\x70\x73\x3d\x53\x74\x65\x70\
-\x73\x0a\x6b\x65\x79\x73\x3d\x53\x68\x6f\x72\x74\x63\x75\x74\x20\
-\x4b\x65\x79\x73\x0a\x63\x68\x6f\x73\x65\x4d\x6f\x64\x65\x6c\x4c\
-\x67\x3d\x43\x68\x6f\x6f\x73\x65\x20\x4d\x6f\x64\x65\x6c\x20\x4c\
-\x61\x6e\x67\x75\x61\x67\x65\x0a\x63\x61\x6e\x63\x65\x6c\x3d\x43\
-\x61\x6e\x63\x65\x6c\x0a\x6f\x6b\x3d\x4f\x4b\x0a\x61\x75\x74\x6f\
-\x6c\x61\x62\x65\x6c\x69\x6e\x67\x3d\x41\x75\x74\x6f\x6d\x61\x74\
-\x69\x63\x20\x4c\x61\x62\x65\x6c\x69\x6e\x67\x0a\x68\x69\x64\x65\
-\x42\x6f\x78\x3d\x48\x69\x64\x65\x20\x41\x6c\x6c\x20\x42\x6f\x78\
-\x0a\x73\x68\x6f\x77\x42\x6f\x78\x3d\x53\x68\x6f\x77\x20\x41\x6c\
-\x6c\x20\x42\x6f\x78\x0a\x73\x61\x76\x65\x4c\x61\x62\x65\x6c\x3d\
-\x45\x78\x70\x6f\x72\x74\x20\x4c\x61\x62\x65\x6c\x0a\x73\x69\x6e\
-\x67\x6c\x65\x52\x65\x3d\x52\x65\x2d\x72\x65\x63\x6f\x67\x6e\x69\
-\x74\x69\x6f\x6e\x20\x52\x65\x63\x74\x42\x6f\x78\x0a\x6c\x61\x62\
-\x65\x6c\x44\x69\x61\x6c\x6f\x67\x4f\x70\x74\x69\x6f\x6e\x3d\x50\
-\x6f\x70\x2d\x75\x70\x20\x4c\x61\x62\x65\x6c\x20\x49\x6e\x70\x75\
-\x74\x20\x44\x69\x61\x6c\x6f\x67\x0a\x75\x6e\x64\x6f\x3d\x55\x6e\
-\x64\x6f\x0a\x75\x6e\x64\x6f\x4c\x61\x73\x74\x50\x6f\x69\x6e\x74\
-\x3d\x55\x6e\x64\x6f\x20\x4c\x61\x73\x74\x20\x50\x6f\x69\x6e\x74\
-\x0a\x61\x75\x74\x6f\x53\x61\x76\x65\x4d\x6f\x64\x65\x3d\x41\x75\
-\x74\x6f\x20\x45\x78\x70\x6f\x72\x74\x20\x4c\x61\x62\x65\x6c\x20\
-\x4d\x6f\x64\x65\
-\x00\x00\x04\xf0\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x14\x00\x00\x00\x14\x08\x03\x00\x00\x00\xba\x57\xed\x3f\
-\x00\x00\x03\x00\x50\x4c\x54\x45\x09\x16\x28\x09\x16\x28\x09\x14\
-\x25\x09\x15\x27\x09\x14\x25\x08\x13\x23\x07\x11\x20\x07\x0f\x1c\
-\x06\x0d\x18\x04\x0a\x13\x03\x07\x0d\x02\x04\x07\x00\x00\x00\x00\
-\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
-\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
-\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
-\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
-\x00\x01\x01\x01\x02\x02\x02\x03\x03\x03\x06\x06\x06\x0a\x0a\x0a\
-\x10\x10\x10\x17\x17\x17\x21\x21\x21\x28\x28\x28\x2c\x2c\x2c\x2d\
-\x2d\x2d\x2e\x2e\x2e\x2f\x2f\x2f\x30\x30\x30\x31\x31\x31\x32\x32\
-\x32\x33\x33\x33\x34\x34\x34\x35\x35\x35\x36\x36\x36\x37\x37\x37\
-\x38\x38\x38\x39\x39\x39\x3a\x3a\x3a\x3b\x3b\x3b\x3c\x3c\x3c\x3d\
-\x3d\x3d\x3e\x3e\x3e\x3f\x3f\x3f\x40\x40\x40\x41\x41\x41\x42\x42\
-\x42\x43\x43\x43\x44\x44\x44\x45\x45\x45\x46\x46\x46\x47\x47\x47\
-\x48\x48\x48\x49\x49\x49\x4a\x4a\x4a\x4b\x4b\x4b\x4c\x4c\x4c\x4d\
-\x4d\x4d\x4e\x4e\x4e\x4f\x4f\x4f\x50\x50\x50\x51\x51\x51\x52\x52\
-\x52\x53\x53\x53\x54\x54\x54\x55\x55\x55\x56\x56\x56\x57\x57\x57\
-\x58\x58\x58\x59\x59\x59\x5a\x5a\x5a\x5b\x5b\x5b\x5c\x5c\x5c\x5d\
-\x5d\x5d\x5e\x5e\x5e\x5f\x5f\x5f\x60\x60\x60\x61\x61\x61\x62\x62\
-\x62\x63\x63\x63\x64\x64\x64\x65\x65\x65\x66\x66\x66\x67\x67\x67\
-\x68\x68\x68\x69\x69\x69\x6a\x6a\x6a\x6b\x6b\x6b\x6c\x6c\x6c\x6d\
-\x6d\x6d\x6e\x6e\x6e\x6f\x6f\x6f\x70\x70\x70\x71\x71\x71\x72\x72\
-\x72\x73\x73\x73\x75\x75\x75\x77\x77\x77\x79\x79\x78\x7a\x7b\x7a\
-\x7c\x7d\x7c\x7f\x7f\x7e\x81\x82\x7f\x84\x85\x81\x84\x85\x82\x85\
-\x86\x83\x86\x87\x83\x86\x88\x84\x87\x88\x84\x87\x89\x84\x87\x89\
-\x85\x87\x89\x85\x88\x89\x85\x83\x86\x85\x7f\x84\x85\x7c\x82\x85\
-\x7a\x81\x85\x76\x81\x8b\x76\x82\x8e\x77\x84\x90\x79\x85\x90\x7d\
-\x87\x8e\x83\x89\x8c\x85\x8b\x8c\x89\x8c\x8c\x8a\x8d\x8b\x8c\x8d\
-\x8a\x8e\x8f\x8d\x90\x91\x8f\x92\x92\x91\x94\x94\x93\x95\x95\x95\
-\x97\x97\x97\x99\x99\x99\x9a\x9a\x9a\x9b\x9b\x9b\x9c\x9c\x9c\x9d\
-\x9d\x9d\x9e\x9e\x9e\x9f\x9f\x9f\xa0\xa0\xa0\xa1\xa1\xa1\xa2\xa2\
-\xa2\xa3\xa3\xa3\xa4\xa4\xa4\xa5\xa5\xa5\xa7\xa7\xa6\xa8\xa8\xa8\
-\xa9\xaa\xa9\xaa\xab\xaa\xab\xac\xab\xac\xad\xac\xad\xad\xad\xae\
-\xae\xad\xae\xaf\xae\xaf\xb0\xaf\xb0\xb0\xaf\xb1\xb1\xb0\xb1\xb2\
-\xb1\xb2\xb3\xb2\xb3\xb4\xb3\xb4\xb5\xb4\xb6\xb6\xb6\xb7\xb7\xb7\
-\xb8\xb8\xb8\xb9\xb9\xb9\xba\xba\xba\xbb\xbb\xbb\xbc\xbc\xbc\xbd\
-\xbe\xbd\xbe\xbf\xbe\xbf\xc0\xbf\xc0\xc0\xc0\xc1\xc1\xc1\xc2\xc2\
-\xc1\xc3\xc3\xc2\xc4\xc4\xc3\xc6\xc6\xc6\xc9\xc9\xc9\xcd\xcd\xcd\
-\xcf\xcf\xcf\xd1\xd1\xd1\xd3\xd3\xd3\xd5\xd5\xd4\xd6\xd6\xd5\xd8\
-\xd8\xd8\xda\xda\xda\xdc\xdc\xdc\xde\xde\xdd\xdf\xdf\xdf\xe0\xe0\
-\xe0\xe2\xe2\xe2\xe3\xe3\xe3\xe5\xe5\xe4\xe6\xe6\xe6\xe8\xe8\xe7\
-\xe9\xe9\xe9\xeb\xeb\xea\xeb\xeb\xeb\xec\xec\xec\xec\xec\xec\xee\
-\xee\xed\xef\xef\xef\xf1\xf1\xf1\xef\xef\xef\xef\xef\xee\xef\xef\
-\xee\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\xf2\xf2\xf2\
-\xf3\xf3\xf3\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf7\xf7\xf6\xf7\
-\xf7\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\
-\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\
-\xfe\xfe\xfe\xfe\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
-\xff\xff\xff\xff\xff\xff\xff\xff\x7e\xee\x29\x02\x00\x00\x01\x00\
-\x74\x52\x4e\x53\xd1\xd2\xd3\xc8\xb9\xa9\x93\x78\x5d\x43\x2c\x17\
-\x03\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
-\x00\x00\x00\x00\x00\x00\x00\x01\x02\x03\x06\x0a\x10\x17\x21\x28\
-\x2c\x2d\x2e\x2f\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\
-\x3c\x3d\x3e\x3f\x40\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\x5b\
-\x5c\x5d\x5e\x5f\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\
-\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x71\x6f\x6e\x6d\x6d\x68\x68\x62\
-\x6f\x7c\x8a\x95\x9e\xa6\xae\xb6\xbf\xcd\xd2\xd7\xdb\xe1\xe7\xea\
-\xeb\xeb\xe8\xe6\xdc\xd1\xbe\xac\xa1\x9c\x96\x97\x98\x99\x9a\x9b\
-\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa2\xa2\xa1\xa1\xa1\xa3\xa2\xa2\
-\xa2\xa3\xa3\xa4\xa5\xa6\xa8\xaa\xad\xb0\xb3\xb7\xb8\xb9\xba\xbb\
-\xc0\xc5\xc8\xcb\xcd\xce\xcf\xce\xce\xcf\xd3\xd6\xdc\xe0\xe4\xe8\
-\xea\xee\xf1\xf3\xf5\xf6\xf7\xf8\xf9\xfa\xfa\xfb\xfb\xfb\xfc\xfc\
-\xfc\xfd\xfd\xfd\xfd\xfa\xf6\xf3\xef\xeb\xe7\xe0\xd8\xd0\xc8\xbf\
-\xb6\xae\xa5\x9c\x92\x88\x7d\x72\x68\x66\x64\x63\x62\x5b\x55\x51\
-\x4d\x4a\x46\x48\xa6\xfd\x00\x6d\x00\x00\x00\x9f\x49\x44\x41\x54\
-\x18\xd3\xb5\xd0\x31\x0e\x82\x40\x10\x85\x61\xe0\x12\x1e\x76\x54\
-\x54\xa0\xd9\x1d\xf3\xe2\x11\xd4\xc4\xd6\x58\xd3\x10\x0b\x3b\x02\
-\xd1\x42\xa9\xc6\x53\x50\x8e\xee\x02\x31\x9a\xd8\xf2\x17\x53\x7c\
-\xc9\x6e\x26\x13\x4c\xfe\x14\x8c\x87\x34\xf4\x85\x44\xb3\x0c\x40\
-\x1a\x0f\xea\x91\xa6\x40\xc1\xc6\xf0\x1e\x2b\xea\xd1\x3d\xc2\xae\
-\x62\x91\xd0\xf2\x15\xa9\xd7\x80\x28\xc6\xf6\x26\x46\x24\xb2\xa6\
-\xa9\xb1\xa4\x0e\x53\x3c\x45\x4c\x18\x39\x7c\x48\x83\x39\xf9\x3f\
-\x4f\x09\x44\xd8\xba\x58\x4a\xe0\xa0\x1e\x35\xcf\x50\x56\x58\x73\
-\x71\x3f\x63\x91\xab\xf6\x2b\xe9\x71\x83\xae\xe4\xe2\xe8\xb3\xbc\
-\xaa\xb6\xed\xcb\x4d\x1d\xf9\x4a\xbf\xbd\x01\x0c\x0e\x70\x72\x00\
-\x75\x19\xc2\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
-\x00\x00\x77\xc9\
-\x89\
-\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x01\x2a\x00\x00\x01\x08\x08\x06\x00\x00\x00\xe8\x5e\xb9\x12\
+\x00\x01\x2a\x00\x00\x01\x08\x08\x06\x00\x00\x00\xe8\x5e\xb9\x12\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\x00\x00\xfa\
@@ -11149,56 +2352,8665 @@ qt_resource_data = b"\
\x66\xe3\x5e\x00\x00\x00\x0d\x74\x45\x58\x74\x54\x69\x74\x6c\x65\
\x00\x47\x6f\x20\x44\x6f\x77\x6e\xf3\xfd\x14\x79\x00\x00\x00\x00\
\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x09\x4d\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x09\x02\x49\x44\x41\x54\x68\x81\xed\x9a\x7b\x54\
+\x93\xf7\x19\xc7\x3f\x6f\x02\x04\x84\x70\xf1\x08\x82\x17\x44\x10\
+\xc1\x8a\xab\xb4\x38\xb1\xd5\xf5\x88\x99\x52\x56\x95\x7a\xc6\x2c\
+\x9d\xb5\x30\xd6\x33\xa7\xa7\xdd\xe9\x6d\x2d\x3b\x6e\x6d\x57\xb7\
+\xb5\xb5\xad\xae\xb6\xdb\xa9\xb6\xd4\x56\x5d\xab\x5d\x77\x4a\x71\
+\x30\x10\x5b\x6a\x5b\xea\x44\x04\x05\xa3\xf5\x16\xa1\x48\x02\x28\
+\x97\x24\xe4\x9e\xbc\xfb\x83\x06\xd3\x98\x40\x02\xa8\xff\xec\x39\
+\x27\xe7\x79\x79\xf3\xfb\x3d\xf9\x7c\x7f\xcf\xf3\xbb\xbc\x09\xf0\
+\x7f\xbb\xb9\x26\x78\xba\xa9\x50\x28\x12\x81\x6d\x52\xa9\xf4\x4e\
+\x41\x10\x22\x6e\x30\x93\xbb\xd9\xec\x76\xfb\x29\x51\x14\x37\x55\
+\x57\x57\xef\x1b\xb6\xb5\x42\xa1\x88\xc8\xcb\xcb\xeb\xac\xab\xab\
+\x13\x4d\x26\x93\x38\x52\x73\x38\x1c\x63\xf2\x32\x1a\x8d\x62\x5d\
+\x5d\x9d\x98\x97\x97\x27\x2e\x5c\xb8\xf0\x01\x77\xde\x00\xf7\x1b\
+\xfd\xfd\xfd\x6b\x36\x6c\xd8\x10\x9d\x91\x91\x81\x28\x8a\x38\x1c\
+\x0e\x00\x44\x51\xfc\x9e\xf7\x74\x6f\x24\xde\x97\x78\xb3\x67\xcf\
+\x26\x3f\x3f\x9f\x2d\x5b\xb6\x3c\x01\xfc\x03\xb0\x3b\xfb\x48\xdc\
+\x05\x88\xa2\x78\x4b\x42\x42\xc2\xf7\x82\x7b\x83\x77\x58\xad\xf4\
+\x2a\x95\x58\xf5\xfa\xeb\x06\x2f\x8a\x22\x16\x8b\x85\xe9\xd3\xa7\
+\x23\x08\xc2\x14\x20\xdc\x95\xd7\x93\x00\xe9\x50\x01\x9d\xd7\xa7\
+\xb7\x6f\xe7\xc3\x19\x33\xa8\x5c\xba\x98\x0a\x85\x82\x2b\x97\x2e\
+\x5d\x17\x78\x37\x36\x80\x60\xd7\x7b\xd7\x94\xd0\x50\x81\x01\x1c\
+\x76\x3b\x5f\xad\x5b\x87\x55\xd5\xc8\xfd\x7f\x9e\x87\xc4\x78\x86\
+\xb6\xb4\x55\x1c\x2e\x28\x20\x63\xe7\x4e\xa2\xe3\xe2\xc6\x14\xde\
+\x53\x5b\x57\xbb\x26\x03\xce\x9a\xf7\x26\xa8\xae\xb8\x98\x10\x73\
+\x2b\x4b\x57\x9a\x90\x98\xcf\x72\x79\xee\x1a\xda\x02\x57\xb0\xf8\
+\xd5\x1f\xd1\xf8\xd8\x63\xf4\xf6\xf4\x8c\x39\xbc\xd3\xbb\xb3\x79\
+\x15\xe0\x4d\x7d\xf7\x89\x13\xa8\x76\x95\x90\xb9\x48\x0f\x61\x12\
+\xfa\xa6\xcc\x42\x1f\xbb\x86\x84\xf8\xf1\x84\x4b\x0e\x90\xf5\xdb\
+\x78\xea\x37\x6e\x44\xef\x65\x4e\x8c\x76\x01\xf0\x49\x80\xfb\x07\
+\xb8\x5e\xb7\x56\x56\x92\x56\xa0\xa0\x3f\xc4\x41\x73\xf4\x22\xbe\
+\x74\x6c\xa0\x5d\x7d\x85\x28\xe1\x6b\xa4\x53\x1e\x22\x2c\xa4\x9a\
+\xdb\x73\x64\x1c\xdb\xbc\x19\xa3\xd1\x38\xa6\xf0\xde\xcc\xd3\x24\
+\xf6\xfa\x61\x53\x72\x73\xf9\x66\x7f\x23\xff\x11\x57\x52\xdf\x97\
+\x4b\x88\xb4\x83\x59\x92\x42\x64\xda\xd7\x41\x10\x61\xf2\x23\xc4\
+\x25\x1f\x62\xf2\xf8\x16\x1a\x76\xec\xc0\x62\xb1\x8c\x19\xbc\xcf\
+\x19\x70\x6d\xe4\x1e\x64\x7c\x52\x12\xb7\xfe\x6d\x07\x92\xb7\x3f\
+\x64\x55\xda\x46\xb2\x26\xdd\x4f\x94\xec\x04\xf4\x1f\x82\xde\x8f\
+\x40\x12\x0c\xb1\x45\xcc\x59\x7e\x86\x30\xf5\x67\x34\xec\xd9\x83\
+\xd5\x6a\x1d\x13\x78\x77\xb6\x61\x05\x78\x0b\x92\xb0\x60\x01\xd3\
+\x1f\x7f\x96\x23\x2f\x06\x22\x4a\x62\x41\xca\xc0\xab\xbf\x0a\xb4\
+\xa5\x10\x18\x0d\x13\x56\xb3\x60\xbd\x16\x73\xd5\x4e\x4e\x94\x96\
+\x62\xb7\xdb\x47\x0d\xef\x7e\xed\x55\xc0\x50\x1b\x98\xd3\xa7\x64\
+\x67\x33\x4e\x51\xc8\xb1\x0f\xe7\xe3\x10\xc6\x0f\x08\x90\x88\xd0\
+\x5f\x06\xba\x2a\x08\x8a\x87\xf0\x65\xe4\xbc\x22\xa7\x6b\xc7\xcb\
+\x28\x6b\x6a\x7c\x8a\x3b\xdc\xea\x65\xb7\x0f\x6e\xc0\xde\x05\x0c\
+\x97\x01\xa7\xbf\x75\xcd\x1a\x74\xf2\x3b\xb8\xd8\x90\x8b\x28\x91\
+\x0f\x88\x10\xec\xa0\xdb\x0b\x86\x1a\x18\x37\x0b\x42\x6f\x27\x6f\
+\xd7\x74\x2e\x3c\x53\xcc\xd9\xfa\xfa\x11\xc3\xbb\x0e\xee\xb0\x02\
+\xfc\x09\x9a\xb1\x7e\x3d\xe7\x1a\x23\x38\x7f\x64\x05\xa2\x24\xe2\
+\xbb\x4c\x58\x41\xbb\x1b\x8c\x5f\x42\xd8\x7c\x08\x9e\xca\x9a\x4f\
+\x32\x38\xf1\xf0\xc3\xb4\x7e\xf3\xcd\xa8\xe0\xfd\xda\xc8\x7c\x09\
+\x2e\x08\x02\x99\xcf\x3e\xcb\xa9\xcf\x03\xd1\xb4\xfc\x1c\xd1\x18\
+\x04\x36\x40\x30\x41\xdf\x7b\x60\xaa\x87\xb0\xc5\x08\x52\x28\xd8\
+\x7f\x17\x8d\x8f\x3e\x8a\xa6\xad\x6d\xc4\x22\x7c\x9a\xc4\xfe\xd6\
+\xaa\x44\x22\x61\xc1\x4b\x2f\x51\xfb\x7a\x0b\x5a\xd3\x3a\xd0\x49\
+\x41\x07\x98\x74\xd0\xf3\x16\x58\x9a\x20\x62\x05\xd2\x40\x35\xab\
+\xdf\xce\xa0\xa1\xb8\x98\xcb\x5d\x5d\x7e\x8b\x18\xd1\x32\xea\x6b\
+\xf0\x20\x99\x8c\x3b\xdf\x7c\x93\xf2\xe2\x46\x8c\x21\xeb\x07\x04\
+\x68\x81\xde\x6e\x50\x97\x80\xf1\x0c\x44\xe4\x23\x1b\xa7\xe4\xee\
+\xdf\x25\xd3\xf0\xdc\x73\x68\xb5\x5a\xbf\x44\xb8\x5f\xfb\x24\xc0\
+\xd7\x91\x01\x18\x27\x97\x73\xc7\xf6\xed\xec\x2b\xa8\xc1\x1a\xfe\
+\xcb\xab\x22\xba\xdb\xa1\xad\x04\xfa\x5b\x21\xbc\x88\xa8\xb8\x7a\
+\xee\xfc\x59\x14\x0d\xaf\xbd\x86\xc1\x60\xf0\x4b\x84\x5f\xcb\xa8\
+\x3f\xf0\xce\xbf\x23\x63\x63\x59\x50\x52\xc2\xae\xb5\x87\xb0\x44\
+\xe4\x5f\x15\xd1\xa9\x82\x96\x12\x30\x74\x80\xfc\x21\xa6\xa4\xd6\
+\x33\x73\x5a\x0f\x8d\x25\x25\x98\xcd\x66\x9f\xe1\xfd\x3a\x0b\xf9\
+\x0b\xef\xf4\x31\x33\x66\x90\xbe\xe5\xaf\x7c\xb0\xa1\x0e\x7b\x48\
+\xd6\x80\x08\x1d\xa0\x39\x0d\xaa\x3d\x60\xd4\x43\xc4\x43\xa4\x2d\
+\xb9\x80\xd0\xfc\x29\xcd\x07\x0f\x62\xb1\x58\x7c\x16\x31\xac\x00\
+\xe7\x69\x74\x24\xf0\x4e\x9f\x30\x7f\x3e\x33\x7f\xff\x17\xca\xb6\
+\x6a\xb1\xc9\x32\xaf\x66\xa2\xed\x28\xa8\xf6\x82\x55\x80\x88\x7c\
+\x32\x73\x17\xd2\x59\x56\x46\x5b\x5b\x9b\x4f\xf0\x7e\x6d\x64\x23\
+\x85\x77\xfa\x99\x59\x59\x44\xe6\x16\xf2\xd9\x47\x21\x38\x82\x52\
+\xae\x8a\x38\x7f\x08\x2e\x7c\x0c\xd6\x60\x82\xa6\xdf\x4e\x47\x4d\
+\x0d\xad\x2a\x95\x5f\xc7\x8d\x21\x05\x8c\x66\xe4\xdd\xfd\x9c\xd5\
+\xab\xb1\xcf\x5d\xc6\xd1\xa6\x74\xec\x21\xf1\x60\x06\xf4\x22\xf4\
+\x3b\xb0\x7d\xeb\x20\x78\xce\x5c\xa2\x6f\x49\xc6\x72\xfa\x34\x7d\
+\x7d\x7d\xc3\x42\xfb\x55\x42\xa3\x85\x77\xfa\x8c\xa2\x22\xd4\x8e\
+\xc9\x5c\xd0\xe5\xc0\xd4\x1c\xc4\x99\x4f\xa3\x0f\xcd\xc1\x38\x73\
+\x16\x0e\xbb\x85\x5b\xf2\x96\x63\x6d\x6a\x42\xa3\xd1\x8c\xed\x3e\
+\x30\x16\xf0\x4e\x9f\xf9\xe4\x93\x34\x36\xdb\x78\xf1\xfe\x83\xec\
+\xd9\x5c\x41\xbb\x4e\x8b\xcd\x70\x19\x9b\xb1\x9b\xbe\x94\x44\xba\
+\x8e\xd5\xa3\x51\xab\xbd\x0e\x9e\x3b\x9b\xab\x5d\xf3\x50\x3f\xd6\
+\xf0\x00\x82\x20\xb0\xe8\xf9\xe7\x09\x5b\xb6\x8c\xcb\xe5\xe5\x7c\
+\x5c\xb8\x99\x98\xb4\x78\xc8\xfd\x31\x8f\xfc\xab\x96\x5f\xa4\x26\
+\x31\xf1\xdc\x39\x74\xb7\xdd\x46\x78\x78\xb8\xd7\xf2\xf1\x54\x42\
+\xd7\x08\x70\xcd\xc0\x58\xc0\xbb\x8a\xb8\x6d\xd1\x22\xf4\xe9\xe9\
+\x9c\xbb\xf7\x5e\x3a\x2b\x2b\x51\x6f\xd9\x4b\x7e\xca\x54\x34\x61\
+\x21\xd8\x95\x4a\x3a\x3a\x3a\x90\xcb\xe5\x1e\xfb\xbb\x5f\x7b\x15\
+\xe0\x49\xe9\x68\xe1\x5d\x7d\x68\x68\x28\x3f\xc8\xc8\xc0\x94\x96\
+\xc6\xc5\x95\x2b\x99\x54\x51\x41\x47\x69\x29\x97\xcd\x66\x64\x2b\
+\x56\x90\x98\x98\x88\x20\x08\xd7\xf4\xf3\x36\x07\x9c\x02\x96\x00\
+\x49\x00\x3a\x9d\x6e\x56\x69\x69\x29\xf5\xf5\xf5\x1e\xf7\x03\x6f\
+\xa3\xe1\x6f\xbb\x79\xf3\xe6\x91\x32\x7b\x36\xf1\x89\x89\xa8\x72\
+\x72\xb8\x74\xe4\x08\x66\xbd\x1e\xbd\x5e\x8f\x5c\x2e\xf7\x2f\x03\
+\xf1\xf1\xf1\xc5\x45\x45\x45\x77\xc5\xc4\xc4\x88\x0e\x87\x43\x2a\
+\x95\x4a\x07\x47\xc1\x5b\xc7\xd1\x58\x6d\x6d\x2d\x36\x9b\x8d\xe4\
+\xe4\x64\x82\x83\x83\x49\x4d\x4d\x25\x29\x29\x89\xde\xde\x5e\x82\
+\x83\x83\xbd\x66\xd0\xd3\x46\x16\x00\x20\x08\x82\x90\x9f\x9f\x1f\
+\x90\x9c\x9c\x3c\xf8\x46\xc7\xc9\x46\x9a\x5b\xd5\x04\x8d\x8f\x25\
+\x29\xfd\x56\x26\x05\x0d\x79\xea\xf0\xcb\x02\x03\x03\xd1\x68\x34\
+\xdf\x83\x0b\x08\x08\x60\xc2\x84\x09\x43\x96\x9f\x5f\x67\x21\x73\
+\xe7\xbf\x51\xe4\xe4\x50\x7a\xbe\x13\xb9\xf4\xbb\x9a\xb4\xf7\x71\
+\xf8\x9c\x76\xb0\xcd\xc5\xa3\x27\xe9\xeb\xfd\x96\x4f\x2b\x3f\xe5\
+\x4c\xef\xc0\x79\xc6\x66\xd0\xf0\x79\x79\x19\x15\x07\x6a\x38\xda\
+\xd8\x44\xf3\x89\xa3\x54\x57\x7e\x81\x5a\x6f\x1b\x88\xdb\xd3\xca\
+\xa9\xe3\x8d\x28\x95\x4a\xaa\x3f\x3f\xeb\x15\xd6\x93\xf7\x64\x5e\
+\x05\xc8\x42\x1b\x91\x04\x44\xf2\xc7\xfb\x96\x0e\x0a\xd8\xff\xf0\
+\x3d\xfc\x64\xf9\x07\x83\x6d\xfa\x9a\x7e\xcd\xf8\xe8\x39\x68\x8e\
+\x3c\xc1\xdc\xe4\xd5\x00\x34\xec\xfe\x29\x59\x2b\xee\xe3\x6c\xc3\
+\xd7\x3c\x7d\x77\x36\xbd\xb5\xbf\x61\xd9\xf2\x5c\x8e\x2b\x3b\xd1\
+\xb5\x6c\x67\x72\x6c\x2a\x5a\x6c\x5c\xfc\xba\x8c\x5f\xad\xff\x83\
+\x5f\x0b\x80\x5f\x19\x50\xbd\xab\x24\x74\x62\x21\xe3\x24\x03\xf0\
+\xbd\xa7\xdf\xa0\xe8\x58\x02\x01\x5d\xef\x0f\xb6\x31\x1f\xef\x41\
+\x1a\x18\xc3\x3f\xf7\x99\x79\x6a\xdb\x0b\x00\xd8\x9b\x7a\x70\xd8\
+\x0d\x6c\xdc\x76\x85\x2a\xd5\x45\x02\x9a\x7b\x09\x9d\x58\x48\xf6\
+\x0f\x27\x61\xed\x57\xa3\xb7\x99\xf8\xef\x29\x2d\x77\x3d\xb0\x8e\
+\xea\x8a\xad\x3e\xc3\x83\x8f\x8f\x94\x4e\xab\xa9\xb8\x44\x74\xe6\
+\xf2\x81\x8e\xb6\x4e\xa2\x67\x9d\xa5\xf3\xf0\x2e\x9e\x8a\x38\x4e\
+\x8b\x79\x60\x32\x7d\xb9\xbf\x8d\xa9\x39\x6f\x32\xb9\xbb\x95\xd2\
+\xd3\x03\x0f\x27\x5f\x94\xb7\x33\x6e\xc2\x2a\x9e\x2a\x2e\xa4\xba\
+\xa2\x8c\x67\xde\x50\x12\xb3\xe0\x1e\x40\x64\xfb\xbe\xf9\xa8\xbe\
+\xda\x4d\x5b\xcd\xfb\xbc\x57\x67\x62\xda\x94\x68\xbf\xca\xc7\xa7\
+\x7d\x00\xe0\xe8\x2b\x8f\xf2\x6a\x9b\x1e\x71\xc2\x56\x0a\x0a\x76\
+\xf2\xee\xbb\xef\x41\xd2\x3b\x98\xba\x3f\xa1\xbc\xdb\xc8\xe1\xb7\
+\xce\xb0\x25\xa9\x9c\x17\x5a\x75\x48\xa7\xbe\xc6\x91\x99\x4b\xf8\
+\xd3\xba\x14\x2e\x55\xbe\xcc\x4b\xdf\xea\x08\x9b\x67\xe5\xb3\x9d\
+\xcb\xd8\x58\x77\x09\x80\xb8\x2b\x6f\xb1\x76\xf9\xe3\xec\xda\x7f\
+\x0c\x75\xdf\x23\x84\x4f\x4d\x25\x33\x2d\xd2\x6f\x78\x4f\x19\x10\
+\x00\xa6\x4d\x9b\x76\xf0\xc0\x81\x03\x59\xae\xab\xd0\xf5\xb4\x92\
+\x92\x12\xda\xdb\xdb\x59\xbb\x76\xad\x4f\x22\x64\x32\x19\x2a\x95\
+\x8a\xec\xec\xec\x6e\x83\xc1\x90\x06\xa8\x9d\xb1\x06\x33\x50\x5b\
+\x5b\x4b\x4b\x4b\xcb\x0d\x11\xa0\x54\x2a\x89\x8c\xf4\x3d\x03\xce\
+\x0d\xd5\x6b\x09\x19\x0c\x86\xdd\x9b\x36\x6d\x6a\x01\x30\x99\x4c\
+\x77\x28\x14\x8a\x94\xa8\xa8\xa8\x21\xeb\xcf\xdb\xd2\xe6\x6b\xbb\
+\xb4\xb4\x34\x9f\xe1\x9d\xe6\x75\x23\xeb\xea\xea\x7a\xa7\xab\xab\
+\xeb\x1d\x00\xa9\x54\xfa\xf7\x07\x1f\x7c\x30\x25\x3d\x3d\x7d\xf0\
+\x9b\xe5\xb1\x3c\x0b\x8d\xd4\x3b\x1c\x0e\x9f\xbf\xd8\x3a\x7f\xf2\
+\xe4\x49\x02\x03\x03\x6f\x3a\xb4\xd3\x87\x85\x85\xd1\xd4\xd4\x04\
+\xd0\x81\xcb\x4f\xac\xde\x6c\x62\x5c\x5c\x5c\x67\x55\x55\x95\x68\
+\xb5\x5a\xc5\x9b\x6d\x56\xab\x55\xac\xac\xac\x14\x63\x62\x62\x1c\
+\x12\x89\xe4\x79\x20\xcc\x15\xd6\xe3\xbf\x1a\x00\x39\xc0\x8b\xc0\
+\x34\xbc\x2c\xb5\x37\xd8\xae\x00\xfb\x81\x6d\x80\xd2\xf5\x0d\x6f\
+\x02\x00\x22\x81\x14\x40\x76\xfd\xb8\x7c\x36\x3d\xd0\xce\x40\x09\
+\x8d\xed\xd1\xf8\x66\xdb\xff\x00\x0b\x62\x0d\xcf\xef\xd6\x72\x27\
+\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\xe7\x64\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x01\x90\x00\x00\x01\x90\x08\x06\x00\x00\x00\x80\xbf\x36\xcc\
+\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x40\
+\x00\x49\x44\x41\x54\x78\x01\xec\xbd\xdb\xb3\x3d\xdb\x55\xdf\xd7\
+\xe7\xe8\x48\x02\x49\x08\x02\xba\xa0\x3b\x17\x1b\x8c\x09\xe1\x26\
+\xc0\x14\x4e\x61\x3b\x05\x0e\x2e\xc7\x24\x0f\x50\x8e\x9d\x9b\x53\
+\xae\x4a\x52\x79\xf3\x1f\x92\x97\x3c\xc4\x49\x25\x05\x0f\x09\xa9\
+\x4a\xfc\x90\x72\xc5\x71\x2a\xc4\x0e\xbe\x94\x63\x73\xb7\x01\x43\
+\xb0\x65\x21\x71\x8b\x84\x14\x30\xba\x71\x74\x39\x27\xe3\x3b\x7a\
+\x7c\xe6\x1a\x3d\x7a\xf6\xea\xee\xbd\xd7\x5e\x6b\xfd\xce\xe9\x59\
+\xbf\x9e\xdf\x31\xc7\x7d\x8c\x39\xbb\xd7\x5e\x7b\xfd\xf6\xde\xcf\
+\x0d\x65\xfc\xd8\x5f\x7f\xf9\x1b\x5f\x7a\x71\xf8\xcb\xc6\xfe\xfe\
+\xe7\x9f\x1b\xde\xfb\xd2\xcb\xc3\x9b\x9e\x7b\x6e\x54\x7a\xd9\x40\
+\xa4\x50\x03\x3a\xc4\x23\xf3\xcc\xbc\x66\xff\xb2\x29\x28\x96\x50\
+\x03\x9a\xf8\x23\xf7\x34\x57\xfd\x9a\xd0\xee\xfc\x56\xe2\xaf\xe5\
+\x7f\xca\xac\x4f\xad\xd9\xd7\x7a\x8e\xfa\xc7\xb3\x70\xec\xff\xc2\
+\x79\x2a\xe7\xf5\x38\xff\xd6\x27\x6e\x32\x23\x8f\xfb\x7f\xd2\x8e\
+\xfe\x21\x4a\xdc\xde\xf3\xc7\xfa\xf9\x49\x6b\xe4\x87\xed\x1e\xfc\
+\x3f\x86\xd7\x0e\xff\xed\x5f\xf8\x73\xcf\xfd\x52\x32\xf1\x1e\xfb\
+\xfa\x7f\xfa\xa5\x97\x5f\xf7\xb9\x5f\x1e\xfe\x0b\x73\xf2\x9f\x19\
+\xe3\x79\x31\x77\x3f\xc0\xdc\xd3\xc3\xa7\x1a\xaf\x16\x34\xf3\x5c\
+\x4f\x08\x87\x47\xd8\x1b\x3b\xf5\x6b\x3e\xd5\xe5\x6a\x7e\xd5\x60\
+\x65\x5d\xe3\xad\xfa\xdf\x59\xcf\xec\x8e\x5a\xe9\x57\xcd\xa7\xa6\
+\xbf\x9a\x5f\x35\x58\x59\xd7\x78\xab\xfe\x8f\xfa\xa7\x4f\x88\x95\
+\xfd\x3c\xf6\xdf\x0e\x20\x3d\xd2\x59\x84\x16\x76\x46\x3d\x8f\x55\
+\x65\xf5\x7c\x56\x83\x95\x75\x8d\xb7\xea\xff\xfa\xe7\xff\x25\x2b\
+\xe1\xbf\x7a\xed\x37\x0c\x7f\xe5\x87\xbf\xf1\xb9\xcf\xaa\x1c\xa5\
+\x30\xf8\x8b\xc7\xaf\x0c\x7f\xf3\xe5\x97\x86\x3f\xd5\x0e\x99\x04\
+\x8f\x1d\xb5\xc0\xea\x6f\x65\x03\x5b\x2e\x9e\xa5\x19\x17\xfd\x59\
+\xc3\x4d\x85\x90\x1e\xaa\xe8\xd7\xf0\x4d\x79\xc1\xff\x4c\x7f\x2f\
+\x83\x64\xf0\x5f\xed\x1f\x99\xdf\x51\xbf\x1d\x09\xeb\xa1\xfa\xa0\
+\x31\x6b\xe7\x8c\x31\xea\xb5\xb9\xee\xcf\x9a\x7e\x33\xdc\x48\x54\
+\xff\xd5\x6c\x2d\x5e\xb5\x2f\xfa\xc7\xfe\x1f\xfb\x7f\x8b\xf3\x6f\
+\xc7\xf2\x6f\xbf\xf6\x8f\x0e\x3f\xa0\x17\x11\x7f\xa7\xe1\xef\x3c\
+\xf4\xe2\xa1\xa1\x43\x7a\xa9\x81\x2f\xa1\x5d\x2a\x16\x74\x5a\x4b\
+\x74\x3a\x31\x91\x09\x33\x8d\x6a\xe6\x39\x8d\x5e\xc4\x71\xbd\x33\
+\xfe\x5b\xad\x5b\xf5\x09\xbc\x15\x89\x1d\xfe\x73\x8e\x39\xf7\x25\
+\x77\x59\x27\xd3\xe8\x67\x9e\xd3\x16\x07\x9c\xd4\x86\x41\xc5\x92\
+\x9f\x8b\xe1\x55\xdd\x87\xac\xf1\x25\xb4\x8b\xdc\x84\x4e\x8b\x8d\
+\x4e\xc7\x3f\xb2\x25\xfd\x99\x1c\xbf\xf2\x89\x5f\xb0\xe3\x7f\xa2\
+\x83\x1e\xd8\xd3\xdf\xcb\xc3\x97\xd0\x2e\xcf\x37\x30\xe7\xbe\xe4\
+\x36\xeb\x64\x1a\xfd\xcc\x73\x3a\xc5\x98\xd4\x86\x41\x45\xe5\xa5\
+\x21\xcc\xb4\x33\x2f\x30\x65\x9f\x46\xe7\x1c\x73\xee\x4b\x91\xb2\
+\x4e\xa6\xd1\xcf\x3c\xa7\x53\x8c\x4d\xf5\x94\xfc\xdc\x2f\x3c\x82\
+\x3c\x06\xf1\x25\xb4\x2b\xe7\x98\x73\x5f\x0a\x91\x75\x32\x8d\x7e\
+\xe6\x39\x9d\x62\x3c\x65\xfd\x16\xe6\x4f\xe9\x35\x43\x79\x3c\xf7\
+\x63\x7f\xed\xe5\x6f\xfc\xc2\x4b\xc3\x3f\x31\xfa\xf9\xfa\x15\x0d\
+\x89\x82\x4a\x12\x1d\xf1\xa0\x85\x5b\x86\x99\xb7\x2f\xfa\xa5\x5f\
+\xbf\xc0\xda\xe2\xe3\x9c\x4e\xcd\xaf\x06\xa8\xf1\xaa\xfe\x5a\x3d\
+\x7b\xf5\x6b\xae\x47\xfd\xa7\x3d\x57\x6f\xea\x7e\xd4\x7e\xed\x5d\
+\xd7\xfd\xa9\x01\x6a\xbc\xaa\x7f\xec\xff\xf8\x90\x5b\xba\x9f\xf7\
+\xf6\xab\xee\xdf\x71\xfe\x4f\x67\x5e\xbd\xa9\xe7\xb1\xf6\x6b\xef\
+\xba\xee\x4f\x0d\x50\xe3\x55\xfd\x9d\xe7\xff\xa5\xd7\x3c\x3f\xfc\
+\x6b\x2f\xd8\x87\xe4\x7f\xd9\x0c\xfd\x9d\xc8\x9a\x43\x0e\x16\xb8\
+\xa6\xbf\x2a\x4f\x4d\xf4\x66\xd5\x13\x56\x3a\x58\x0b\x5c\xf3\xef\
+\xe6\xea\x5a\x8c\x35\xfd\x35\x39\x75\x83\x6b\xfa\xab\x72\xcb\x8b\
+\x4d\xf5\x14\x8f\xfa\x4b\x43\xd8\xb9\x11\x8f\xfd\x9f\x3e\xe0\xd7\
+\xce\x97\x77\xed\x38\xff\xed\x10\xad\xf5\x6b\x4d\xce\x7d\x0f\xae\
+\xe9\xaf\xca\x2d\xb3\x67\xf8\xfe\x7f\x5e\xaf\x1d\x2f\x58\x0d\xdf\
+\xaf\xe7\x96\x86\xdf\xa0\x81\x5a\xd7\x06\x88\x37\x19\x56\xbd\x74\
+\xbc\x0b\x06\xd0\x8e\x52\xdc\x29\xdf\x1d\x5f\x31\xd2\xa0\x0e\xd0\
+\xdf\xc6\xa5\x1d\x72\xff\x26\x6c\x07\xc0\x6c\x89\x29\x37\xd0\x4d\
+\x1e\xba\xad\x9e\x14\xcb\xc9\x9d\xf5\xad\xf5\x67\x77\xfc\x92\x0f\
+\x75\x83\x47\xfd\xda\x54\xbb\xa2\x21\xde\xdf\xd8\x53\xb5\x4e\x6c\
+\x7a\xae\x35\xb4\x50\x43\xfb\x85\xcd\xc8\x29\xf3\xb1\xff\xed\x9e\
+\xa7\x5f\xed\x9e\x17\x63\x67\x7f\x76\xf7\xbf\x6c\x47\x6c\x33\xdb\
+\x1d\x1b\x6c\x4a\x21\x60\x2f\xdb\xfe\x2a\x45\xe5\x18\x7e\xa0\x9b\
+\xfc\xd8\xff\xb3\xe7\xdf\xfa\xf4\xfd\x2f\x58\xf7\xde\xcb\x3e\xd0\
+\x48\x50\xfc\xc5\x87\x27\x46\xe7\x10\x47\xa0\x3b\x5c\x36\x98\x3d\
+\x60\x4d\x35\xc7\x87\x06\xdd\x5d\xf2\xad\xfb\x5e\x4b\xa1\x06\x34\
+\x2a\xd8\x81\xe8\xb8\x72\xe8\xcf\x78\x18\xa3\xb4\x07\xb1\x05\xab\
+\xf3\xe2\xcb\xf3\xe2\xa6\x0b\xd9\x24\xd7\xf0\xd3\xe3\x49\xfd\xa8\
+\xff\xb4\xe7\xea\x87\xda\x45\x4f\x7c\xdd\xeb\x9f\x04\x31\xd8\x26\
+\x50\xec\xdc\x6b\xf4\x36\x23\x8e\x40\x77\xb8\x6c\x7d\xec\xbf\xf5\
+\xe6\x38\xff\x93\x33\x97\xcf\x1f\x34\xe8\xc7\x29\x9d\x2d\xce\xba\
+\xd0\x65\x36\xc1\xf3\x75\xe8\x4e\xec\x5d\x73\x9c\x70\x05\x66\x9b\
+\xa4\x96\xc9\xf7\x3e\x6f\xca\x6f\xca\x9c\x3d\x34\x89\x08\x33\xbd\
+\xe4\x83\xc4\x84\x4e\xcb\x4e\xca\x8d\x81\x40\xcc\xfd\x23\xe7\x90\
+\xe9\xfd\x9e\xb6\x59\xe4\x18\x99\x5e\xb2\xf6\x5a\x4d\xd8\xca\x35\
+\xc2\x79\x8d\x11\xc2\x25\x07\x2b\xfc\x9c\x43\xa6\x57\xcc\x1e\x2c\
+\xce\x31\x32\xbd\xe4\xd0\x6b\x35\x61\x2b\xd7\x08\xe7\x35\x46\x08\
+\x97\x1c\xac\xf0\x73\x0e\x99\x5e\x31\x7b\xb0\x38\xc7\xc8\xf4\x92\
+\x43\xaf\xd5\x84\xad\x5c\x23\x9c\xd7\x18\x21\x5c\x72\xb0\xc2\xcf\
+\x39\x64\x7a\xc5\xec\xc1\xe2\x1c\x23\xd3\x4b\x0e\xbd\x56\x13\xb6\
+\x72\x8d\x70\x5e\x63\x84\x70\xc9\xc1\x0a\x3f\xe7\x90\xe9\x15\xb3\
+\x07\x8b\x73\x8c\x4c\x2f\x39\xf4\x5a\x4d\xd8\xca\x35\xc2\x79\x8d\
+\x11\xc2\x25\x07\x2b\xfc\x9c\x43\xa6\x57\xcc\x1e\x2c\xd6\xcf\x08\
+\x3e\x4f\x20\x79\xf1\x62\x02\xa9\x29\x63\xd6\x11\xcd\x2b\x9d\x90\
+\x57\x3a\x30\xfb\x92\xae\x8f\xcc\xcc\xf4\x82\x58\xb9\x49\xcd\x31\
+\xf4\xcf\xe5\x2b\x37\xb8\x0d\x97\x13\xc0\x76\xab\x3f\x8f\x1d\x3e\
+\xf1\x0b\xca\xf1\x51\xff\xd8\xde\x63\xff\x8f\xf3\xcf\x7d\x0f\x72\
+\x9f\x80\x7e\x52\x58\x08\x33\x3d\x1e\xa3\x09\xcb\x55\x6c\x6a\x18\
+\xfa\xdc\xc3\x32\x09\xd6\xa8\x53\x7c\xc4\x72\x02\xd8\x1e\xf7\xbf\
+\xf5\x6e\x43\x3f\xbd\xf7\xd1\xe7\xdc\x6b\x9a\xaa\xbd\xd6\x67\x20\
+\x8b\x83\xc3\x20\xd4\x50\x50\xff\x3e\x21\xde\x8a\x42\x59\xfa\xc6\
+\xc2\x93\xfd\xec\x7b\x8c\x89\x27\xb9\x0c\x5e\x4e\x06\xc4\x12\x32\
+\x32\x3d\x0f\x30\xfa\xe0\xc9\x3e\xcb\x57\x62\x72\xc7\xe1\x19\x24\
+\x15\xc2\xcf\xfc\x15\x85\xb2\x9c\xa7\x67\x0a\x0a\x4f\x0d\xd0\x2d\
+\x25\x23\x8e\xfa\xb5\x49\xe3\xa6\x1c\xfb\x3f\x9e\x57\xce\x8b\xba\
+\x92\xe9\xf9\x01\x8b\xde\xc5\x81\x9d\x9d\x57\x89\xdb\x61\x93\xb7\
+\xf3\x63\x76\x9e\xcd\x96\x3d\x71\xcb\xa2\x50\x96\xf3\xf4\x4c\x41\
+\xe1\xa9\x01\xba\xa5\x64\xc4\x71\xfe\xad\x41\xd1\x10\x7a\x4d\xbf\
+\xd4\xf3\x4c\xcf\x1b\x1c\xb6\xda\x08\x91\xe6\x07\x1f\x23\x67\xe4\
+\x41\xaf\xe1\x6c\x3f\xab\x3f\x53\x78\x21\x07\x80\x26\xc9\x59\x02\
+\x3a\x00\x2a\x2e\x12\xac\x05\x44\xdd\xd4\xef\xf9\xc1\xf3\xc5\x2c\
+\xa3\xf0\x85\x52\x91\x13\xcb\xd1\x1d\xcc\xa7\x2c\x83\x06\x95\xa7\
+\xd3\x91\x6f\x71\x3f\x6b\xf0\x51\xff\xe9\xd0\xa9\xd3\xea\x1d\x3d\
+\xf1\xce\x97\x7e\x1e\xfb\x6f\x5d\xe1\x50\xa9\x5f\xde\xa4\x13\x6a\
+\x09\xcf\x45\xe8\x0a\x35\x24\x84\xa7\x35\x74\xc8\x39\xbb\xed\x3c\
+\x4b\xa7\x8c\x2c\x83\x06\x8f\xf3\x6f\x2d\xa6\xc7\xd6\xb7\xd2\xde\
+\xd9\xf9\xe6\xac\x1f\xcf\xbf\xf1\x90\xa9\x77\xf4\xc4\x39\xd6\xc0\
+\xdc\x4f\x9d\xdf\x17\xda\x61\x33\x0d\x68\x50\x46\x99\x9e\x6d\x80\
+\xc9\xe1\x49\xb7\x2d\xc4\xd4\x60\xf3\x84\x5a\x16\xcc\x3c\x57\xa8\
+\x13\x7e\xc0\xe2\xaf\xaa\xd7\x35\xb9\x35\x73\xb3\x9f\x34\xc4\x0c\
+\xc8\x49\xb6\xd0\x60\xe6\x89\x9e\xf9\x4b\x3c\xc9\xd7\x14\xf0\x0b\
+\xca\x24\xd3\x5a\x4f\x06\x89\x83\x47\xfd\xa7\x1e\x4f\x1a\xd5\x5f\
+\xcc\xf6\xeb\xd8\xff\xe3\xfc\xdb\xa1\xc8\xf7\x5c\x8f\xee\xf1\x74\
+\xc2\x66\xe7\x29\xf1\xfc\x04\xae\x28\xe0\x17\x94\x4d\xa6\xdd\x47\
+\x9e\xe4\x4f\x03\xbc\xc3\xfb\xff\x05\x72\x1a\x33\x3d\x3f\x53\x6c\
+\x43\xa9\x9b\x03\xf9\xd0\x78\x2e\x68\xa1\x86\x00\x9e\xd6\xb5\xbf\
+\x33\x86\x1b\x84\x61\x00\x36\xcd\xde\x74\x96\xfa\x89\x6e\x93\x93\
+\x07\x28\x27\x46\xc7\x72\x16\x5e\xe2\x73\xa3\xd5\xbd\xe4\x2f\x7c\
+\x1f\xf5\x8f\x5d\x54\x9b\x8e\xfd\x3f\x73\xde\x66\x07\x56\x0d\xb3\
+\x2b\x9d\xaf\xb4\x1c\x45\x26\x6b\xe7\x7b\xaa\xde\x4c\x9b\x1c\x3f\
+\xa0\xe9\x1f\xe7\xbf\xb5\x77\xd6\x2f\xb5\xe7\xdc\x38\xee\xff\xb1\
+\x3b\xad\x0f\xb6\x9c\x7c\x06\x22\xc1\xe4\x2b\x74\x4e\x6f\x9c\xc8\
+\xb2\x6c\x07\x99\x03\x2b\xf7\x3d\xba\xc7\x93\xae\xc7\x0b\xd4\xda\
+\xfd\xa7\x1b\x04\x3b\x10\x1d\xa1\x06\x7c\x30\xf3\x5c\x61\xe7\x74\
+\xd4\x7f\xec\xff\x71\xfe\xc7\xfb\xd2\x6f\x1d\xdd\x58\x7a\xf1\x89\
+\x1b\xac\x2c\x61\x37\x94\x4d\xef\x5e\xec\xf1\xa4\x7b\xdc\xff\x63\
+\xbf\xd4\x07\x0d\xef\xef\x33\xf6\xfc\xf3\x17\x90\xc8\x7f\x7c\xf1\
+\x50\x21\xb1\xe3\x6b\x0f\xd4\x35\x79\x3b\x7c\x04\xf0\x36\x9d\x26\
+\x6e\xd6\xad\xf1\xaa\xbf\x55\xfb\x53\xa8\x91\xb2\xba\x7c\xb3\xa8\
+\x2f\xe4\xa4\xe7\xfe\x8c\xb7\x35\x9f\xa3\xfe\xb1\x57\xde\x53\xf5\
+\xd2\xef\x80\x40\xad\xd5\x58\x78\x5a\x97\xb1\xba\x7f\xd8\xc6\x7e\
+\x55\x7f\xab\xf6\x25\x9e\x72\x39\xf6\xdf\x9a\x12\xfd\xe4\xdc\x83\
+\xc7\xf9\x8f\x23\x4b\x7f\xac\x31\x9c\x31\x3f\x4a\xe2\x73\xa6\x45\
+\xae\xc8\x9b\x2e\x0d\x76\x27\xa7\x09\xdf\x42\x8d\xbd\xfe\x56\xed\
+\x47\xb7\xa7\xd9\xe2\x5c\xfa\xfc\xbf\x40\x4f\x28\xa0\xdd\x64\x62\
+\xd4\x80\xd1\x3c\x4f\x42\xe2\x90\xb7\x06\xc0\x93\xad\x0d\x97\x07\
+\x6a\x5d\x1b\x44\x5f\x41\xd7\xd1\xb4\x30\xd6\xfc\xc9\x8c\xdc\x44\
+\xd7\xfc\xc4\xe3\xe6\x11\x19\xe5\x38\xfa\xba\xd4\x77\xd4\x5f\x0e\
+\x5c\xe9\x4f\xed\xaf\x8b\x75\x26\xd4\x4c\x1b\x6b\xfb\x85\x1e\x28\
+\x9b\x4c\x6b\x9d\xc7\x9a\x3f\xe9\x1e\xfb\x7f\xea\x58\xdd\x1f\x97\
+\xe8\x86\x8f\xa1\x5e\x6b\x49\xcf\xbd\x77\x71\x4f\xbb\x0a\x74\xd8\
+\x54\x79\xf5\xef\xfe\x64\x13\xfe\xd7\xf6\x0b\x3d\x50\x66\x99\x0e\
+\x37\x0d\xd6\xfc\xb9\x7d\x72\x50\xf3\x73\x47\x51\x8b\xeb\xda\xa4\
+\x25\x26\xb5\xbe\xe3\xfe\xb7\xde\xa8\x39\x67\xf6\x7f\xf2\x21\xba\
+\x9a\xda\xba\x19\x76\xc9\xde\xff\x8b\x9d\x37\x7c\xc1\x61\x31\x6f\
+\xae\xd8\x20\x97\x4f\x16\xe2\xd8\x80\xc7\x6e\x86\x7f\xe7\xc3\x4b\
+\x6a\xa8\xbb\x69\x5e\x88\x91\x86\x17\x6f\x6b\x30\x89\x1a\x39\x33\
+\x4f\x0c\x42\xb7\x74\x8c\x70\x5e\x30\x68\x6e\xf6\x9f\xcc\x5b\x59\
+\x13\xde\x64\x11\x69\xc0\x73\xe7\xc6\x0b\xff\x47\xfd\xd1\x8b\xe8\
+\x0f\x6d\x02\xd5\xbd\xdc\x7b\xad\xf3\x40\x06\x66\x19\x74\xf6\xe5\
+\xbc\xc4\x98\x6d\x87\x31\x9c\x17\xfb\xe3\x7e\x8d\xce\xfe\x93\xf9\
+\xb1\xff\xd1\xe4\x49\x4f\x26\x8b\xa2\xe0\xcd\x35\x5e\xf4\xf7\x38\
+\xff\xd1\x8b\xe8\x19\xad\x03\xd5\xbd\x7c\xf6\xb4\xce\x03\x19\x98\
+\x65\xd0\xd9\x97\xf3\x12\x63\xb6\x1d\xc6\x70\x5e\xec\x8f\xfc\x4e\
+\x3e\x03\xc1\x29\x48\xe0\x86\x21\x20\x86\x3b\xb3\x45\xf8\xc3\xec\
+\xe1\x88\x63\x50\x9e\x32\x5d\x3d\x7b\x02\xc6\x24\x01\xe9\xc2\x0b\
+\xd3\xb4\x6c\x22\xd4\xab\xbb\xba\x6e\x75\x47\x0e\xa4\x02\xba\x6f\
+\x5b\x6c\xf5\x57\xfd\xcf\xd6\x38\x06\xa5\x90\xe9\x6a\x40\x71\x24\
+\x20\x5d\x78\x61\x9a\x96\x4d\x84\x7a\x75\x57\xd7\x47\xfd\x63\x47\
+\x5a\x1f\xa2\x41\x6c\x89\xf7\xd6\x16\x5b\xfb\x59\xfb\x3b\x5b\xe3\
+\x18\x94\x42\xa6\xab\x01\x9b\x4b\x02\xd2\x85\x17\xa6\x69\xd9\x44\
+\xa8\x57\x77\x75\xdd\xea\x8e\x1c\x48\x05\x74\xdf\xb6\xd8\xea\xaf\
+\xfa\x9f\xad\x71\x0c\x4a\x21\xd3\xd5\x80\xe2\x48\x40\xba\xf0\xc2\
+\x34\x2d\x9b\x08\xf5\xea\xae\xae\x8f\xfa\xc7\x8e\xb4\x3e\x44\x83\
+\xd8\x12\xf5\xf1\xec\x0b\x48\x6d\x28\x8d\x07\xcb\x7e\x55\xf5\xd9\
+\x86\x29\x11\xde\x56\x4a\x19\x5a\xa8\x31\xf3\x57\x18\x33\x7d\xf9\
+\x93\x9d\xf4\x6c\x40\x93\x5f\x45\x74\x5c\xf9\x01\x53\xf5\x57\xd2\
+\x9b\x79\xf4\x7c\x8c\x8b\xdd\x51\xff\x69\xcf\xd5\xac\xd9\x7e\x46\
+\xaf\x62\x3b\x67\x07\x62\xa6\x7f\xec\x7f\x3b\xf3\xde\x4f\x9b\xfc\
+\x8c\x69\x61\x83\x73\x07\x66\x9e\x2b\xec\x9c\xf0\x03\x1e\xe7\x7f\
+\xec\x71\x3b\xaf\xa5\x9f\xea\x13\x3d\x92\xe8\x95\x78\xff\xfb\x7f\
+\xe3\x6d\xaf\xf2\xa5\xe2\xb2\x5c\x6d\x40\xe9\x5f\x6b\x5e\x6b\xb0\
+\x39\x74\x5a\x8e\x19\x89\x86\x04\xf5\x53\xa9\xa2\xfd\xa7\x53\x3b\
+\xfa\xb0\x40\x7f\x21\x31\x03\x47\x31\xdd\x38\x10\xa5\x8c\xec\x2e\
+\x09\x16\xfd\xb2\x3c\xea\xb7\x3e\xf1\x10\x57\x1b\xa1\x85\xbd\x51\
+\xdb\xab\xfd\xf0\x56\x67\xfd\x44\x43\x82\xc7\xfe\x1f\xe7\x5f\x67\
+\xe1\xb8\xff\xd3\xdd\xc5\xcd\x91\x58\x90\xb7\x78\xfe\xe9\xb7\xf1\
+\xfa\x83\x40\x49\xd4\x57\x48\xdf\x38\x93\xb3\x81\xfe\xc0\x30\x3d\
+\x1e\x18\x55\x7f\xf6\x40\x29\x4f\x90\x2a\xaf\xf6\x34\x22\xa3\x3f\
+\x70\x82\x51\xf3\x51\xee\xf0\xa4\x32\xf3\x0f\x2f\xec\xfd\xe9\xe5\
+\x27\x72\x64\xcc\xf4\xcd\x1f\x3c\x69\xe0\xfb\xa8\x3f\xf5\xcb\x48\
+\xf5\x48\xa3\xee\x1f\xbd\x43\xbe\xb7\xdf\xa3\xd7\xe9\x7c\xec\xff\
+\xa9\x1f\xf5\x3c\x1e\xe7\xff\x74\x8f\xaa\x4b\xf5\xfc\xe9\xec\x38\
+\x8f\x16\x3a\xc3\x16\x71\xa8\x66\xfa\xc6\x87\x27\x93\xda\x6f\x7c\
+\x09\x5d\x5e\xf4\xb1\x45\xfe\x6a\x38\xff\x2f\xf8\x57\x85\xd1\xd0\
+\x46\xf3\x2a\x27\x7e\x7a\xe0\xa2\x06\xd2\x44\xef\xa6\x4d\x7a\xa0\
+\x68\x80\xd5\x9f\xf3\xcd\x5f\x93\x67\x5d\x19\x12\xcb\xf0\x2d\x5f\
+\x31\x0c\xef\x7e\xc7\x30\x7c\x89\xfd\xae\xe0\x37\x7c\xd1\x30\x7c\
+\xf1\x17\x1b\xda\xa5\xf1\xe9\x3f\x18\x86\xcf\x7c\xc6\xf0\xd3\xc3\
+\xf0\x89\x4f\x0d\xc3\x6f\xfc\xd6\x30\x7c\xec\xe3\x27\xbf\x13\xff\
+\xa3\xc9\x38\x27\xff\x62\xcc\xf2\x21\x37\xe9\x69\xdc\xb0\xfe\x5e\
+\x7c\xe7\x9d\x99\xa8\x1b\x94\x6a\xde\xab\xdc\x5f\x97\x45\x7d\x4d\
+\xff\xa8\xbf\x9d\x09\x6f\xf3\xb1\xff\xa7\x7b\x32\x9d\xa5\x7c\xa6\
+\xda\xd9\x91\x3c\x04\xe0\x63\xee\xff\x5e\xff\x9d\x77\x66\x22\x2e\
+\x28\xd5\x9c\xeb\x3d\x9d\x7f\x7f\xbe\xbd\xd3\x9e\x6f\x6f\x1c\x9f\
+\x6b\x5b\x9e\x6f\x67\x4a\x77\x11\x75\x83\xd7\xa8\xff\xb9\x1f\xf9\
+\x1f\x5f\xe6\x0b\xec\x59\x7e\xe5\xfe\xa9\xfd\x9f\xe9\x3f\x96\xf1\
+\x8e\xb7\x0f\xc3\x57\xbd\x67\x18\xde\xf3\xae\xf1\x05\x63\x8f\x3f\
+\xbd\xa0\xfc\xba\xbd\x90\xfc\xda\x87\x87\xe1\xb7\x3f\x1a\x96\xa5\
+\x80\xb2\x5c\xad\x67\xaf\xfe\x9e\x7c\x1f\xa2\xbb\x9a\x4f\x79\x81\
+\xec\xbd\x00\xa2\xa2\xf8\xd0\xc2\xde\x58\x8d\xd7\x33\x7a\x42\xde\
+\x6a\x3e\xb5\xa0\x62\x50\x96\x47\xfd\xb6\x57\xf4\xa4\xb7\x6d\xc8\
+\x84\x1a\xb5\xbd\x23\xf7\x7a\xf3\x6a\x3e\x35\xc1\x62\x50\x96\xab\
+\xf5\xec\xd5\x5f\xeb\xc4\x63\x9f\x6f\x1f\xfe\xcd\x61\xf8\xd0\xaf\
+\x0f\xc3\x6f\x7d\x64\x8c\x54\xcb\x9d\x15\x54\x0a\x28\xcb\x99\x7a\
+\xcd\x7f\x8b\xfe\x73\x3f\x6a\x2f\x20\xd5\x70\xeb\x5a\x96\xbc\x6d\
+\x93\x0d\x74\x7b\x0b\x57\x1c\x2d\xe9\xbf\xf5\x2d\xc3\xf0\xfe\x6f\
+\x1e\x86\xb7\xbf\xad\x18\x3c\x70\xf9\x11\x7b\x01\xf9\xe9\x7f\x1c\
+\xef\x4a\x94\xd7\x03\xfd\xac\x99\x2d\xd5\xb3\xb7\xfe\x25\xfd\xb5\
+\xf8\x55\xbe\x65\xc3\xab\xcd\x63\xd6\x47\xfd\xa7\x33\xaf\x3e\x3e\
+\xf4\xfc\x1f\xfb\xff\x98\x53\x78\xb2\xbd\xd7\xf3\xaf\x77\x1b\x4f\
+\xf5\x7c\x3b\x55\x7f\xfa\x62\x80\x07\xfa\xec\x05\x26\x2b\x5f\x80\
+\xf6\xfb\xff\x47\x7e\xcc\xde\x81\xc4\x13\xb6\x3e\x10\x6a\x8c\xc7\
+\xde\x20\xd5\xbf\xbe\x3d\xf5\xfe\x6f\x19\x86\xf7\xd9\xbb\x8e\xa7\
+\x18\x7a\xb5\xfe\xa9\x9f\x1f\x86\x4f\xd9\xb7\xb9\x34\x6a\xfc\x5a\
+\x4f\x95\x8f\x56\xa7\xb9\xea\x9f\x24\x23\x55\xed\xab\xfe\x5e\x79\
+\xf5\xbf\xe6\xaf\x7e\x49\x51\x0f\xd0\xa5\xe3\xd7\xfc\xf6\xfa\x5f\
+\xad\xa7\x04\x58\xd5\x2f\x05\x97\xe5\xb1\xff\x2b\x5f\xf0\xd5\xfd\
+\x2b\xed\x7f\xf4\x0b\x64\xf5\xbf\xba\x9f\x25\x81\x55\xfd\xb2\xe1\
+\x65\x79\xf5\xfd\xbf\xc6\xf3\xed\xa7\xed\xf9\xf6\x89\x4f\x46\xa3\
+\x4a\xc1\x65\xf9\x24\xf5\x9f\xff\x6f\xbc\x25\x03\x1d\x00\x3d\xa4\
+\x1c\xcb\xe6\x6a\xb9\xb6\xc1\x59\xae\xb7\x73\xdf\xfb\x3d\xc3\xf0\
+\xfa\xd7\x75\x1c\x5d\x88\xa5\x17\xa6\xaf\xb4\x38\x3f\xf1\xf7\xed\
+\xdb\x5a\xf1\xb6\x6f\x29\xf7\x6e\xc8\x27\xac\x5f\xf1\xbc\x9d\xea\
+\x67\x0a\x9e\xe9\xdc\xaf\x4d\xfa\xf8\x0c\x7f\xf5\x86\x75\x1f\x39\
+\x40\xe8\x2d\xc2\x51\x7f\x6c\xd2\xd8\xa1\x4b\x9e\x7f\xdf\x0b\x9b\
+\x7c\x8f\xd3\x06\xe4\xed\x39\xf6\x7f\x7c\xd6\xa8\x0f\x1a\xea\xcd\
+\xd9\x7e\xa1\x23\x65\x1b\xb7\x3c\xff\xb7\x78\xbe\x95\xdb\xf5\x2a\
+\xf5\xfb\x67\x20\xed\x09\x36\xcb\xc0\x76\x01\x9e\x76\x04\x5a\xa8\
+\xe1\x3b\x1a\xe8\x8c\x95\x29\xec\xbf\xe1\xeb\x86\xe1\x3b\xbe\x75\
+\x18\x9e\x7f\x7e\x45\xff\x42\xe2\x97\x5e\xb2\x77\x22\x3f\x37\x0c\
+\xbf\xfc\xcf\xcc\x21\x39\xcb\x37\xb4\x50\x63\xad\xbe\x35\xf9\xe8\
+\x65\x79\x7e\xac\xfd\xb2\xe7\x6d\x92\xb5\xf8\x8f\x95\xaf\x65\xb1\
+\xe6\x7f\xcd\xfe\xb1\xf2\xb5\xf8\x8f\x95\xaf\xe5\xb7\xe6\x7f\xcd\
+\xfe\xb1\xf2\xb5\xf8\x8f\x95\xaf\xe5\xb7\xe6\x7f\xcd\xfe\xb1\xf2\
+\xb5\xf8\x8f\x95\x47\x7e\x37\x7b\xbe\xfd\xea\x4a\x83\x1e\x5b\x5f\
+\xc7\xde\xff\x1b\x6f\x0b\xcb\x83\x14\x94\x20\xd3\x4d\xf1\x81\x84\
+\xf9\xfa\xce\x6f\x1b\x86\x3f\xfa\xf5\x0f\xb4\x7f\xa0\x99\x5e\xa8\
+\xbe\xeb\xdb\xc7\xff\xd1\xf5\x93\xf6\x42\x32\xa9\x29\xd7\x07\x0d\
+\x2a\x5e\xa6\x1f\x18\xbf\x99\xe1\x0b\xbc\xb4\xff\x16\x28\x88\xce\
+\x86\xb7\x17\x49\x74\x7b\xb9\xf4\x78\xe8\x3f\x06\xf1\x0b\xca\x57\
+\xa6\x1f\xe3\xbb\x67\x7b\xd4\x3f\xf6\x57\x7d\xd0\x50\xaf\xe9\x89\
+\x33\x82\x57\xe9\xbc\x27\x99\x46\xef\xa1\x88\x2f\x50\x7e\x32\xfd\
+\x50\xbf\x4b\x76\xd4\x7a\xc5\xfa\x6f\xfe\x7c\xfb\xd9\xd4\x8c\x2b\
+\xd4\x3f\xf9\x9b\xe8\x29\x74\x97\xe4\xdb\x3f\xc2\xde\x25\x23\x74\
+\x32\x8d\xae\x5e\x99\xaf\xfd\xe2\x91\x0b\x51\xec\x3f\xf2\x87\x4f\
+\xb9\xe7\x1c\xb3\xde\x12\x4d\x6d\xd4\x53\xb1\xfa\xab\xfa\x55\xbe\
+\x14\x07\xfe\x9a\x3d\xf7\x9e\x30\xd3\x4b\xf6\x6b\xf9\x62\xb7\x84\
+\x35\x9f\x35\x7f\x55\x5f\x7e\xe1\x2d\xc5\xc8\x7c\x74\x89\x53\xed\
+\x73\xcd\x99\xc6\x47\xb5\xc7\x0f\x58\xfd\x61\xb7\x84\x7b\xfd\x55\
+\xfd\xc7\xc6\xab\xf6\xb9\xe6\x4c\x93\x7f\x8d\x4f\xdd\x60\xf5\x87\
+\xdd\x12\xee\xf5\x57\xf5\x1f\x1b\xaf\xda\xe7\x9a\x33\x4d\xfe\x35\
+\x3e\x75\x83\xd5\x1f\x76\x4b\xb8\xe6\xef\x2e\x9e\x6f\xf6\x8c\x65\
+\xac\xe5\x2b\x3d\x74\xb0\x39\x87\xe8\x0a\xb9\x26\xdf\x44\x9a\x29\
+\x44\x00\x6d\x8e\xae\xfc\x82\xe6\x2f\xea\x36\x81\x23\x11\x4a\x06\
+\x1a\x7c\xef\x52\xf8\xce\xaf\x1c\xbf\x6d\x35\x4a\x6e\x37\x7f\xa7\
+\x7d\xeb\xec\x1d\x96\x4b\x6f\x3c\x65\xfd\xb9\x17\xc4\xae\xf1\xc4\
+\x87\xe7\x3a\xde\x5c\xa3\x84\x99\x76\xe1\xfa\x94\x4d\x32\xbd\x64\
+\x49\x6c\xa1\x5f\xa6\xd8\xd0\x68\xf9\xe0\x1c\xb8\x3f\x9b\xc0\x5e\
+\x7e\xb9\xe6\x4c\x13\xbf\xc6\x13\x1f\x9e\xeb\xb8\x73\xa3\x84\x99\
+\x76\xe1\xfa\x94\x4d\x32\xbd\x64\x49\x6c\xaf\x59\x3d\x30\x45\xa7\
+\x85\x76\xc9\x07\xe8\xfe\x6c\x02\x7b\xf9\xe5\x9a\x33\x6d\x6e\x7c\
+\xd4\x78\x62\xc2\x73\x05\x77\x6e\x94\x30\xd3\x2e\x5c\x9f\xb2\x49\
+\xa6\x97\x2c\x89\xed\x35\x1f\xf5\xef\xda\x7f\x3d\x53\xf4\x6d\xf9\
+\x5b\x0f\x7f\xbe\xd9\xe7\xbe\x1a\x79\xcf\x33\x3d\x4a\xe7\xf3\x43\
+\xf6\xdf\x5f\x40\x38\x30\x8a\xe8\x4e\x14\x4d\x17\x77\x8b\x50\x97\
+\x06\x98\xe9\x90\xbb\xad\xd1\xf8\x03\xdf\x68\x3f\x2c\xf3\x27\xfe\
+\xf8\xf5\x3e\xf3\xf0\x3c\x17\x26\x7d\x3b\xeb\x4f\x5a\x2e\x6f\xb2\
+\xff\x01\xe6\xf9\xaa\xa4\xc8\xf9\xa9\xea\xc7\x7f\x45\x3d\x54\xc4\
+\x13\x66\x1a\x3d\xf5\x5a\xb4\xf7\x3c\xd1\xc8\x7d\x8b\x64\x6f\x2a\
+\x99\x46\x5e\x51\x2d\x71\x7f\x22\x6c\x40\xa3\x77\xd4\x1f\x3d\x69\
+\x0d\xb5\x26\x79\x63\xd5\x2c\x75\xcc\x06\x98\x69\xf1\xec\xf2\x7e\
+\x06\xd2\xd3\x73\x98\xf7\x3c\xd3\xd8\x64\x9f\x99\x46\x9e\xf7\x3c\
+\xd3\xc8\x2b\x7a\xca\x29\x7f\xc9\xe1\x39\x6d\x4e\xc0\x56\xf7\x51\
+\xff\xb8\xe7\xf4\x0d\xf4\xc6\x8d\xfd\x7b\x93\x3d\xdf\xf4\x4c\xb9\
+\xd6\x67\xba\x63\xd4\xfe\xac\x1c\xf4\xac\xd5\x33\xf7\x1a\xfb\xff\
+\xbc\x1f\x14\x1d\x12\x0e\x0a\x48\xa3\x40\x53\x59\x3d\x70\xaa\x49\
+\xf6\x8c\xa0\xf5\xca\xfc\x94\xff\xdb\x8a\x70\x5b\x51\xb9\xf8\x57\
+\x0b\xca\x2f\x5f\xaa\x55\x6b\x21\x75\x83\x62\x05\xcd\xc6\x48\xd7\
+\x79\xf8\x30\x9d\x5e\xfd\x2d\x46\x91\xcf\xfc\xa5\x18\x52\x9d\x0d\
+\xc5\xd1\x88\x78\xc4\x6e\xf9\x98\x08\x9f\x4d\x2f\xe9\x63\xb7\x88\
+\xaa\x4f\xbe\x85\xd4\x0d\x8a\x15\x74\x8b\x67\xba\xce\x8b\x7c\x4c\
+\xe5\xa8\x5f\xbd\x60\x40\x2f\xf4\x67\xd6\x4f\xb3\x83\x87\x8b\x09\
+\x16\x7f\xf4\x5e\x88\x1d\xe8\x76\x45\x7f\x71\xdf\xc9\x4f\xfb\x2b\
+\x5a\x18\x7b\xdd\x50\xac\xe0\xb5\x78\xa6\xeb\x3c\xec\x4d\xc7\xed\
+\x85\x1a\xe2\x6b\x2c\xc8\x67\xfe\x4c\x15\x9e\xdb\xd5\xa9\xf8\x23\
+\xb6\x10\x3b\xd0\x4d\x8b\x7e\xcb\x83\x7c\x2a\xaa\x3e\xf1\x84\x51\
+\x6b\x43\xb1\x82\xd7\xe2\x99\xae\xe8\xbb\x7e\xbe\x59\xde\xab\x75\
+\xd3\x07\xd5\xb7\xb3\xfe\xe7\x5b\xb3\x3a\x0d\x73\x67\x39\x01\x68\
+\xa1\x46\xb6\x31\xda\x97\x81\xd0\xfa\x21\x1a\xfd\x74\xf9\xbd\x0d\
+\xe5\xf4\xd6\x2f\x8f\x1a\x94\xac\x27\x9c\x50\x09\xab\x99\x1a\x34\
+\x18\xda\x99\x36\x65\x1b\xa3\x7d\x19\x98\x69\x17\xf4\xe4\xc9\x85\
+\xbb\x5c\x89\x37\x3b\xc0\xb2\xf7\x40\x6e\x3d\x9f\x90\x09\xb7\x5c\
+\xf2\x80\x8d\xe8\x95\x7c\x9a\x6e\xf8\x76\x53\x9b\x62\xe9\x04\x3c\
+\x31\xa1\x9b\xbc\x84\x5b\x8b\x47\xad\xc2\x4c\x2b\xd5\xee\xf0\x80\
+\x26\x21\xe0\x1a\xca\x09\x36\xa2\x8f\xfa\xd5\x85\xe3\xfc\x9f\xb9\
+\xff\xdf\x7a\xef\xcf\x37\xed\xdf\xda\xb9\x47\x8e\xae\x50\x63\xc3\
+\xf9\x7f\x3e\xdf\x2f\xa3\xd5\x69\xce\x37\x29\x37\x6d\x46\x69\xa2\
+\x23\xba\x17\x4f\xdf\x93\xbb\xd7\xa1\xaf\x1c\x9e\xba\x7e\x7a\xa2\
+\x1e\x40\x0b\x75\x29\x36\xe8\x79\xd8\x04\xb6\xc4\x9c\x61\x8a\x0f\
+\x18\x98\x0a\x7b\x97\x5c\xa2\xd3\x73\xcf\xde\xe6\x3d\xcf\xb4\xdb\
+\x27\x07\xb5\x3e\xc9\xe1\x65\x5a\x3c\xea\x06\xdd\x8d\x4d\x60\x4b\
+\x2c\xf9\x97\x8f\x3d\x03\x53\x61\xef\x92\x2f\x74\x7a\x7e\x8f\xfa\
+\xc7\xae\xe4\x3d\xcf\xb4\xf7\x2f\x35\x90\xbd\x66\x7f\x25\x87\x97\
+\x69\xe4\x32\x15\xcd\xde\x88\x70\x77\x8d\x11\x42\x19\x3f\x60\xb8\
+\x2f\xb3\xc3\x5d\x45\xb9\x44\xa7\xe7\x7e\xcb\xfe\xbf\xff\x8e\x9f\
+\x6f\xe4\x56\xeb\x66\x7d\x89\xfa\x27\x1f\xa2\xf7\x9a\x98\x79\xfa\
+\x3e\xad\x86\xb0\xf7\x3d\xdb\x7c\xb8\x44\xeb\x83\xa5\x4b\xfd\x7a\
+\x92\x31\xf2\x65\x67\xe5\xa6\x0f\xf7\xb7\x8e\xbd\xf5\xcb\x2f\x87\
+\x30\xd3\xf4\xc9\x6f\x1e\xeb\x93\x30\xd3\xc8\x2b\x66\x9d\x4c\x37\
+\xbd\x88\xc7\x01\x71\x9d\xf0\x2d\x5a\x03\x1c\x57\xfb\xe6\xa3\xfe\
+\xb1\x5f\x5b\xcf\xbf\xb4\xb5\x37\x0c\x68\xf6\x2b\xef\x61\xa6\x91\
+\x57\xcc\x3a\x99\x6e\x7a\x11\xef\xd8\xff\xf1\x85\xc1\x7b\x64\x3d\
+\x11\xea\xd2\x00\xc7\xd5\xbe\xb9\x9e\x7f\xfd\xb0\xe0\x57\x5e\xe8\
+\xd7\x2f\xed\xcb\x64\x9b\xb6\x72\xd3\x33\xf8\xa9\xea\xd7\xb9\xf3\
+\x9f\x44\x17\xd1\x1d\x16\xd9\x65\xd1\x75\xe8\xa6\x5f\xe4\x52\x93\
+\xab\x50\x1f\xbe\xfa\x0e\xbf\x75\x55\xeb\xfc\xaa\xf7\xda\x2f\x27\
+\xfb\xed\xca\x8d\x75\xa9\x6f\x6f\xfd\xd2\xd7\xa1\x6b\xfd\x32\xb7\
+\x13\x3a\xc2\xd0\x7e\xd7\x35\x1e\x07\xb5\x67\x1f\x26\x7d\xc0\x51\
+\x60\x59\xfa\xc6\x78\xfc\xd8\x20\xe8\x9c\xd3\xc4\x31\xb9\x2f\xe9\
+\x17\xb9\xd4\x14\x33\xd4\xbd\xd6\xa3\xfe\xb2\xe7\x6c\x4a\xf4\x4a\
+\xfd\x86\x75\xec\x7f\x9c\x9f\x74\xde\xea\xf9\x51\xbf\x16\x07\x8d\
+\x0c\x2c\xcb\x8b\x9f\xff\xaf\x7e\xdf\x62\x26\x77\x23\xd0\xb7\xea\
+\xdb\xf3\xad\xdc\xaf\x97\xb8\xff\xc7\xcf\x40\xb4\x61\xdc\xf5\xa0\
+\x5a\x90\x77\x40\xb4\x64\x60\xa6\xc5\xb3\x4b\x00\x8a\x7e\xcf\xbb\
+\xc5\xb8\xef\xf1\x5e\xfb\xcd\xbf\x5e\x17\x75\x83\x4a\xdb\x0b\x0a\
+\x14\x9d\x6b\xce\xb4\x64\x76\xb9\x7a\xa0\xd3\xc9\x85\x91\xd3\x1e\
+\xf7\xec\x65\x24\xfb\xb8\x64\x92\x1f\xee\xd0\x4b\xf2\xc9\x1e\xca\
+\x7f\xbd\xe4\x9f\xb8\x99\x46\x4f\x01\x45\x33\xa4\xa3\x21\xec\xe9\
+\x67\x9e\xd1\x5a\x7a\xfe\xa1\x1e\x4b\xc1\x38\xf0\x4d\xbc\x6a\xaf\
+\xb5\xfc\xc4\x25\x23\x6a\xce\xf4\x92\xbc\xe5\x8e\xff\x8a\x25\x5e\
+\xeb\x05\x7a\x0a\x22\x9a\x21\x7d\x0d\x61\xb6\x45\x3f\xf3\x8c\xd6\
+\xd2\xf3\x0f\xf5\x58\x0a\xc6\x81\xef\x25\x7b\x39\x90\x9f\xb8\x64\
+\x74\xd4\x3f\xb6\x2e\xf7\x62\xa9\x3f\x6d\xef\xe8\x6f\x45\xf5\x57\
+\xbc\xe8\x73\xa3\xd1\x53\x10\xd1\x0c\xe9\x69\x2c\xe8\xeb\xb7\x86\
+\xdf\xfb\x78\xaf\x9e\xc1\xd4\x77\xe1\xfa\xd5\x97\xf1\x77\x61\xd1\
+\x28\x75\x23\xd3\xb5\x3b\xc8\xc0\xaa\x0f\xdf\x50\x1f\x2e\xf1\xf7\
+\x3b\xaa\x9b\x7b\x5a\x2b\xc7\xff\xf8\x2f\xdc\x53\x46\x47\x2e\x47\
+\x07\x8e\x0e\x1c\x1d\xb8\x4c\x07\xf4\x7c\xd3\x7f\x16\xfa\x1d\xfb\
+\x7b\x49\x3e\x78\x46\x6b\x01\x0d\x66\x9e\x2b\x97\x09\x3d\xd0\xc4\
+\xfe\x93\xe8\x5a\xc3\x03\x65\xca\x57\x3f\x8b\xaf\xf8\x52\x4a\x03\
+\x5b\xe1\xbb\x9f\x81\x57\xe7\x94\xfa\x41\x1e\x1d\x38\x3a\x70\x74\
+\xe0\x15\xd9\x01\xde\x29\xd5\xe7\xb9\x9e\xd3\xfe\x6c\x17\x46\xe5\
+\xa0\x96\x55\x3f\xf3\x42\xdd\xde\x81\xd8\xdb\x9b\xfc\xae\x6d\x42\
+\xc7\xa2\x7d\x4f\xde\xac\xf8\x3e\xad\x3b\x50\x34\xe9\x44\x54\xbe\
+\x5f\x29\x7c\xb3\xfd\xa0\xde\x31\x8e\x0e\x1c\x1d\x38\x3a\x70\x74\
+\xe0\xb6\x1d\xd0\xaf\x95\xf7\xc1\xc3\x9d\xe7\xba\x31\xf5\xd7\x04\
+\x61\x4b\x67\x42\xa3\x17\xe8\x8f\x7b\xa3\xdb\x8b\x8c\x11\xfe\xcb\
+\x14\xdb\x9f\x24\x74\x0d\x79\x95\xab\xf9\xc8\x2f\x10\x2e\x25\x1a\
+\x01\xcc\x0e\x9d\x67\xe1\xdb\x57\xf3\x0a\x0f\xce\xd1\x81\xa3\x03\
+\x47\x07\x5e\x59\x1d\x78\xc3\x1b\xe2\x91\x6e\xcf\x67\xfe\xce\xbb\
+\x2a\x84\x7e\xcc\xf3\xff\xfc\xdf\x03\x29\x7d\xcc\x6f\x69\x8a\x68\
+\x5c\xea\xd5\x29\x5e\x84\x94\xf4\x31\x8e\x0e\x1c\x1d\x38\x3a\x70\
+\x74\xe0\xb6\x1d\xf0\x2f\xe6\x79\x53\x00\x3e\x20\xa5\xde\xf3\x7f\
+\xfa\xbb\xb0\xcc\x29\x4a\xf2\x4f\x2c\x61\xa6\x25\xd3\xc8\x3c\xa7\
+\x6d\x02\x8f\x77\x20\x63\x8f\x8e\xf9\xe8\xc0\xd1\x81\xa3\x03\xb7\
+\xec\xc0\xd2\xb3\x98\x67\xbd\x30\xd3\xe4\xea\xcf\x72\x5b\x08\x33\
+\x9d\xe5\xfe\x0e\x84\xef\x44\x49\x49\x34\xca\xd0\xc8\x65\xd8\xa3\
+\x7b\x3c\x7c\xc8\xe6\x18\x47\x07\x8e\x0e\x1c\x1d\x38\x3a\x70\x9b\
+\x0e\x2c\x3d\x8b\x79\x6e\x83\x0f\x79\xfe\x5f\xf4\xef\x81\x28\x01\
+\x7f\x35\x33\xfc\xcc\x67\x6e\xd3\xac\x23\xea\xd1\x81\xa3\x03\x47\
+\x07\x8e\x0e\x9c\x3a\xa0\x67\x71\x7e\x36\x2f\xbd\xe3\x38\x59\xf4\
+\xa9\xfc\x2e\x05\x1f\xd3\x5f\x65\xc2\x4b\x95\x47\x1b\x5f\x0c\x14\
+\x19\x65\xbd\xfd\x70\x27\x7a\xc9\xea\x5d\x8a\x1b\x2f\x67\x9f\xfa\
+\x74\x3f\x89\x83\x7b\x74\xe0\xe8\xc0\xd1\x81\xa3\x03\xd7\xeb\xc0\
+\xe6\x67\xf1\x03\x9e\xff\xd3\x5f\x65\x92\x5f\x20\x54\x9f\x1c\xea\
+\x05\x01\xc7\xe2\xe5\x71\x46\xfe\xe9\xe3\x1d\x48\xee\xd4\x41\x1f\
+\x1d\x38\x3a\x70\x74\xe0\x26\x1d\xf0\x67\x31\xcf\x70\xd0\x32\xc9\
+\xef\x28\x3c\xb1\x07\x3c\xff\xc7\xbf\x07\x12\x65\x65\x87\x99\x6e\
+\x55\x13\x5c\x98\xe9\xa6\x70\x22\x3e\xf1\x89\x13\x7d\x50\x47\x07\
+\x8e\x0e\x1c\x1d\x38\x3a\x70\x9b\x0e\xb4\x67\x71\x7c\x77\xa8\x7d\
+\xf7\x48\xe9\xc0\x33\x32\x3f\xf3\x33\xdd\xb2\xce\xcf\xfc\xa0\xfd\
+\x77\x61\xf1\x7a\xc0\x9b\x0d\x21\x7e\xc1\xe6\x24\x11\xd5\x1f\x7e\
+\x84\x1f\xfe\xcd\xa4\x78\x90\x47\x07\x8e\x0e\x1c\x1d\x38\x3a\x70\
+\x93\x0e\xe8\x59\xec\xcf\x6a\x9b\x40\x11\xd0\x42\x5d\x0f\x79\xfe\
+\xbf\xa0\x57\x1a\xfd\xf0\x9f\x46\x76\xd2\x67\x38\xb7\x4d\xfc\xd0\
+\x60\xcf\xfe\xa3\x1f\x1b\x06\xbd\x75\x5a\xfa\x2f\x64\xcd\xc9\x8d\
+\x09\xe5\xf8\x63\x7f\x6d\x4c\xe2\x92\xf5\xcb\x63\xde\x90\x5e\x99\
+\xf4\x9e\x57\xfb\x6a\x50\xed\x6b\x7e\x55\x5e\x63\xcc\xfc\x17\x85\
+\x73\xfb\xe7\xaa\x35\xe0\x4e\xfb\xdd\xf9\x15\x83\xb2\x9c\x9d\xcf\
+\x2a\x2f\xe9\xf9\x57\x54\xd4\x58\x65\x5a\x23\xeb\x9d\x5f\xd7\x3f\
+\xea\x3f\x1d\xe2\x4e\x03\xd7\xfa\xb7\x7b\x7f\x8a\x41\x59\xde\xdd\
+\xfe\xff\xc5\x1f\x7a\x36\x9e\x6f\x1f\xfd\x9d\x71\xf3\x74\x9c\x35\
+\xc0\xb5\xfd\x9b\x35\x7c\x34\x6f\xb3\xec\xc7\x9f\x03\x09\xa7\x79\
+\xc3\x44\xeb\x81\x06\x3a\xa1\x45\xba\xfc\xc1\x67\x6b\xa1\xd3\x09\
+\x15\xfc\x43\xbf\x2e\x27\xf7\x3d\x94\xa3\x1a\xaa\x4b\xa5\x81\xa2\
+\xc5\x00\x73\xdd\xd0\x6b\xf5\xcb\x97\x1c\x0a\xfd\x82\x16\x8a\x61\
+\xce\x41\xf7\x19\x3c\x0c\x72\x4f\x9d\x96\x1f\xe9\xc4\x80\x16\xfa\
+\x65\xfc\x86\x46\xfb\x01\x09\x14\xad\x01\x8a\xc6\x95\x50\x97\x54\
+\x40\xea\x06\xa9\x39\xa3\xc7\x37\x05\xe2\xcb\xd8\x79\xe1\x50\xe0\
+\xbc\xf0\xdb\x72\x43\x2f\x6c\x9b\x4f\x19\x28\x20\xf6\x09\xdd\xaf\
+\x44\xe2\xc5\x80\x76\xbf\xc6\x77\x75\xd0\x74\x8e\xfa\xc7\x9e\xa8\
+\x0f\xec\x3b\xa8\x16\xd2\x4a\xef\x9b\xfa\x15\x3c\xa1\x2e\x4d\xa0\
+\x13\x08\x02\xbd\xff\x46\xd3\x7f\xdf\x6b\x9c\xc5\x3e\x38\x2f\xfc\
+\xba\x9e\x68\xc9\xa4\x17\xb6\xcd\x77\xf0\xc6\x8d\x0c\x9d\xd0\x75\
+\xfd\xb0\x35\xf0\x91\x79\xee\xd3\xb8\x0d\x8d\x7e\xea\xfd\x7f\x56\
+\x9e\x6f\x4f\xb9\xff\xe3\xff\xc2\xd2\xc6\xc5\x46\x81\x79\x73\x7c\
+\xb7\x34\x49\x4f\x23\xf4\x1b\xed\xc4\xb8\x61\x22\x49\xf8\x5f\x7c\
+\x28\x04\x77\x0c\x9e\xe3\x13\xd5\xaf\x3e\xf9\x0d\xbb\xd0\xaf\xda\
+\x4f\x74\xe9\x1f\xbd\xdc\xdc\x3e\xc5\xd1\x78\x60\x3d\xbe\xe7\x66\
+\xeb\x37\x61\xf8\xe2\x1c\x34\xbf\xc9\xff\x84\x67\x0b\xcf\x3f\x30\
+\xd7\x42\x3e\x55\xff\xa8\xdf\x3b\xd2\xf6\x2b\xf7\x2c\xf7\x32\xb4\
+\xd6\xe1\xd8\xff\xb1\x47\x57\x3a\xff\xcf\xca\xf3\x6d\xeb\xfd\xfc\
+\x90\xfb\x7f\x7c\x01\xe1\x2b\x0a\xb5\x5f\x5f\x15\x18\xf8\x59\xb4\
+\x09\x74\x42\x7a\x62\x84\xbe\x51\x23\xed\x84\x89\x5c\x79\x44\xd1\
+\xbf\x69\x7f\xa8\xe9\xb7\x3f\x12\xc2\x3b\x04\xe5\xe6\x7f\x6c\xe5\
+\x89\xea\x57\x3b\x7c\xf3\x84\xaa\x3f\x7a\xbb\xd4\xbf\x97\xa2\x7f\
+\xc2\x4c\xcb\xd4\x47\xc8\xdd\x99\xd1\xbe\x0c\x74\x7a\xc5\x3f\x6e\
+\x1a\xaa\x6e\x8d\xa3\xfe\xc9\xde\xa8\x97\xb9\xb7\xf4\xdb\xfb\x24\
+\x41\xf4\x4b\xad\x73\xda\x89\x71\xaf\x45\xfa\x9e\x9b\x9e\xfb\x01\
+\x25\x58\xd9\x9f\xbc\xe7\x99\x96\xa9\x0f\x39\xd4\x70\xc7\x23\x88\
+\x8e\xe5\xaa\xff\xd1\x38\xcd\xc7\xfe\x8f\xcd\x78\xe0\xf9\xd7\xb3\
+\xe3\xee\x9f\x6f\xff\x6f\xda\xef\x4a\x5e\x60\xff\x27\xef\x40\xdc\
+\x9f\x9d\xc6\xe8\xa7\x1f\x4c\xd1\x1c\xd0\xf6\x30\xd4\xa1\x15\x53\
+\xb2\xc0\x71\x35\x9d\x65\xfb\x93\x3f\x33\xe5\xdd\xd3\xaa\xe5\x16\
+\x05\x3e\x45\xfd\xaa\xb7\xf5\xd3\xe2\x78\x3f\x0d\xe9\x1b\x88\x1e\
+\xe8\xb9\x84\xad\x78\xbd\x91\x75\x9c\x0e\xff\x6c\x98\xca\x12\x2d\
+\x74\x3a\xa1\x44\x13\xa6\x29\x64\x1f\xa2\x65\x03\xba\x0f\x9b\x1a\
+\x8a\xb0\x91\xf3\x1f\x39\xa7\xd9\xfd\xd9\x52\xe8\x7e\xcc\x06\xc4\
+\x0e\x94\x55\xd5\xcf\x3c\xd1\x75\xcc\xf4\xc3\xff\x98\x64\x94\x67\
+\x3c\xa5\xaa\x4b\x03\x9c\x2c\x42\xc1\xfd\x19\x2d\xd4\x25\x36\xe8\
+\x2a\x36\x35\x14\x61\x23\xe7\x3f\x72\x4e\xb3\xfb\xb3\x65\xf3\x67\
+\x36\xee\x4f\x7e\x3a\xf6\x55\x5f\x9e\xe0\x9d\xbc\x9e\x28\x64\x42\
+\xa7\xc3\xff\x98\xe4\x98\xab\x68\x85\x8a\x70\x0d\xdd\x4b\x66\x1a\
+\x9d\x7d\x88\x96\x18\x14\xad\x9c\x1b\x8a\x08\xde\x48\xcd\x67\xf7\
+\x67\x6c\xa1\xfb\x31\x1b\xf0\x95\x52\xff\x3f\xba\xe3\xe7\x9b\xe7\
+\xc6\x9e\xc5\xf6\xc4\xb6\x8d\x2b\x16\x42\xbb\x7c\xbf\x02\x7d\x9f\
+\xd8\xb7\x51\xdc\xdd\xff\xc9\xdf\x03\x09\x3f\xe3\x21\x51\x08\x63\
+\x88\x77\x62\x04\x2d\x5e\x67\xe4\x43\xc1\x61\xfb\x88\x7d\x80\xf3\
+\xc1\x0f\x75\x94\x6f\xcc\x52\x4e\x1f\xb1\x0f\xfa\xc9\xb3\xd6\x4e\
+\xdd\xe0\xd8\x08\x4b\xda\x19\xfd\xe4\x7b\xf5\x67\xff\xb2\x3a\x63\
+\x3e\x79\xa8\x64\x5f\x44\xcb\xbc\xe6\xd7\x1c\xca\x27\x7e\x41\x6c\
+\x32\xae\xd9\xe3\x07\x94\x53\xf7\xd7\x18\x29\x50\x76\x1c\xf4\x9a\
+\x7f\xa9\xb9\xbf\x8e\xad\xcb\x42\xe8\xb5\x25\x1a\xf5\x4b\xfb\xf7\
+\xb2\x6c\x72\x8c\xdc\x32\x7d\xd4\x7f\xec\xbf\xce\x43\x3b\x20\xd0\
+\xc2\x18\xfa\xcf\x42\xf7\xfa\x7c\x53\x6e\x79\xac\xdd\x3f\xf9\xec\
+\x53\x37\xd8\x6e\x5c\x67\x9c\xbc\x8e\xef\x40\x62\xed\xaf\x40\x46\
+\x0b\x9d\xb6\x09\x74\x42\xc6\x62\x08\xed\xf2\x84\x02\x9d\x36\x19\
+\x28\x3d\x6c\xf5\x4a\xf8\xe2\x8b\x66\x73\x27\x43\xb9\xfc\xc3\x9f\
+\x9e\x27\xe3\xf9\x1a\x5b\x48\xee\xa0\x33\x1e\x58\x7f\xf3\x67\xf6\
+\xee\x4f\x7e\xd4\x37\xa5\x10\x28\x5a\xdf\xf7\x06\x9d\xb6\x05\x48\
+\x5f\xc1\xd1\x91\x8c\xe4\x64\x1c\x2e\x33\x52\xa8\x4b\x22\x10\x35\
+\x30\x4c\x26\x80\x4c\xe8\xb4\x4d\xe0\xe8\x2c\x04\x4a\x32\x62\x80\
+\x1e\xdb\x94\x41\xe9\x63\x2b\x74\x3a\x72\xf2\x22\x65\x6f\x7c\xb7\
+\x1f\xe1\xa8\xdf\x9a\xa4\x9e\x68\xcf\xd9\x77\x90\xbe\x82\x63\x43\
+\xa5\x6c\x57\x0c\x97\x19\x2d\xd4\x25\x11\x88\x1a\x88\x4d\x46\x64\
+\x42\xa7\x6d\x02\x47\x67\x21\x50\x92\x11\x03\xf4\xd8\xa6\x0c\x4a\
+\x1f\x5b\xa1\xd3\x91\x93\x17\x29\x7b\xe3\xbb\xfd\x08\xcf\xec\xfe\
+\xeb\x59\x72\x8f\xcf\x37\xf5\xfc\xa9\xf7\x7f\xf2\x2d\x2c\xdf\xfc\
+\x38\x18\x99\x66\xc3\x27\x87\xc8\xb2\xd3\xe1\xf6\x83\x02\xad\x03\
+\xe2\x59\xc7\xc1\xd0\x09\xb1\xeb\xf7\xed\x87\x0a\xff\xcf\xbf\x63\
+\xdf\xd7\x7f\xc9\xd6\x37\x1e\xca\x41\xb9\x7c\xe2\x93\x96\x88\xf2\
+\xd3\x88\x3c\x73\xcd\x99\x46\xfe\xd0\xfa\xe5\xcb\xfd\x29\x14\x31\
+\x3d\xf0\x74\x42\xb6\x55\xbf\xe6\xef\xde\x92\x7f\x48\x61\xa6\x5b\
+\xd4\xcc\x34\xda\xe3\x07\x66\xfa\xa8\x3f\x1a\xc8\xd9\x16\xda\xb5\
+\xf5\xfc\x6f\xdd\x4f\xef\xb9\x42\xb1\x17\x41\x1b\xf4\x47\xd9\x3f\
+\x57\x82\x67\x0b\x48\x61\xa6\x9b\xb3\xcc\x34\x3a\xef\x79\xa6\x8f\
+\xfd\x8f\x06\x2e\xec\xff\x27\x3f\x65\xcf\x94\xbf\x7b\x7f\xcf\xb7\
+\xb2\xbd\xbe\xed\xf0\x26\x0b\x31\x1f\xb8\xff\xe3\x0b\x48\xdc\x10\
+\xee\x54\xf4\xd2\x20\xfa\x52\x40\xb3\xe3\x26\xa8\x2e\xf4\x81\xfa\
+\xff\xfd\x53\x95\x7b\xfd\xb5\x72\x50\x2e\x3e\xa8\xf5\x0a\xf5\x77\
+\x2b\x2d\xfd\x74\x1d\x78\x5a\xd4\xfc\x24\x13\x2f\xfa\x2f\x95\xf6\
+\x64\x10\x5d\xf4\x7d\x2f\x8c\x27\x64\x5f\x40\xa9\x57\xfd\x09\xcf\
+\x17\x65\x22\xb7\x88\xef\xbe\xc2\x37\x7e\xc1\x62\xd9\x5f\x16\x7f\
+\xae\x04\x4f\x8b\x52\x8f\xd7\x7a\xd4\x7f\xec\x7f\x9c\xbf\xb5\xf3\
+\xe2\x67\xf1\x4a\xe7\xff\x37\x7f\xeb\x8e\x9e\x6f\xfa\xe0\x3c\xea\
+\x06\xb9\x2f\x41\xef\x5d\xbd\xbf\xc4\x84\xe7\x0a\x65\xe2\xde\x8c\
+\xfe\xcb\x97\xbf\x80\x88\xc0\x31\x28\xd3\xa2\xef\xde\xe0\xf5\xe4\
+\x92\xe5\x2b\xeb\x88\xfe\xa5\x5f\x19\x86\x5f\xf8\xa7\xa2\x6e\x33\
+\x14\x5b\x39\x30\xa8\xf5\x5a\xf5\x13\x17\x5c\x8b\x5f\x37\xc0\x7b\
+\x6f\x13\x3d\x96\x1f\xe7\x35\x87\x41\x84\x82\x9f\x05\xa3\x85\x9c\
+\x0b\x50\x9a\x6b\xf1\xf1\x1d\xee\xdc\x39\x3c\xb7\x77\xce\x29\x1f\
+\xf4\xc0\xac\x13\xaa\x13\x58\x8b\xdf\x8a\x0b\x87\x1e\xdb\xa6\x45\
+\xff\xae\x60\x21\x42\xe1\xa8\x7f\xec\xc5\xb1\xff\xd7\x39\xff\xbf\
+\x78\x2f\xcf\xb7\x2b\x9e\xff\xc9\x5f\x24\xcc\xf7\x1f\x77\x3a\x3c\
+\xd6\x19\x79\x18\x81\x59\x06\x9d\x65\x7a\x60\xe8\x1d\x80\xbe\xa5\
+\xf5\xdd\xdf\x61\xaf\x5e\xe3\xfb\x1f\x54\x9f\x0c\xf5\x6d\x2b\xc5\
+\xcd\x2f\x1e\xbd\x60\xd4\x0a\x4a\x27\xd3\xd5\x86\xda\xc0\x2a\xd7\
+\x3a\xcb\x54\x3f\xdf\xd3\x76\x5d\x13\xfa\x43\x34\x2b\x65\xba\xe7\
+\xf0\x0c\xaf\xfa\x27\x96\x7f\xab\xe5\x8c\x1d\x22\x6a\x05\xc5\xcf\
+\x34\x7a\x20\xa9\x82\xf0\x33\x66\x59\xcd\x4f\xcd\x39\xea\xb7\x6e\
+\xe5\x26\x65\x3a\x37\x72\x03\x5d\xfb\x7b\xec\xff\x78\xbe\xae\x79\
+\xfe\x6f\xf9\x7c\xfb\xc5\x5f\x9e\x3e\x5f\xae\xb1\xff\xfe\xab\x4c\
+\x26\x07\x38\x1d\x54\x9d\x65\x3d\x40\x38\xd3\xf5\x80\x26\xd5\x6d\
+\xa4\x39\x92\x0f\xbd\x52\xff\xee\xbf\x1c\x86\xef\xfb\xde\x61\x78\
+\xfd\xeb\xb7\x99\x3e\x54\x4b\x1f\x6e\xfd\xf8\x4f\xa4\x6f\x5b\x65\
+\x47\x91\x4f\x2b\x30\xcb\x8c\x7e\xaa\xfa\x89\xe7\xfe\x6d\x12\x6a\
+\xd0\x6b\xa1\x8f\xca\x30\xc5\xfc\xc0\x85\x76\x34\x83\x7a\x60\xc4\
+\x87\x17\x1e\xa7\x50\xfc\x4d\x85\x47\xfd\xda\x17\xb6\x40\xbd\x59\
+\xed\x67\x6d\x60\x5d\x97\x7e\xbb\x7f\x9b\x84\x1a\xc4\x12\xfa\xa8\
+\x8c\x62\x7f\xec\xbf\x75\x89\x9e\x88\x0c\x5a\xa8\xb1\xba\x5f\xd8\
+\x86\xfe\x68\x75\x9a\xc5\x66\x0b\xc4\x5d\xf5\x17\xa6\x7a\x90\xff\
+\xee\xef\xd9\xf3\xed\x4f\x5c\xf7\xf9\x76\x8b\xfa\x9f\xfb\xab\x3f\
+\x62\x6d\xa1\x81\x74\xab\x9d\xe0\xe8\x08\x30\xeb\xa8\x09\xe0\x49\
+\x07\x1a\x7f\xd8\x81\xc5\xff\x97\xbc\x69\x18\xfe\x98\xbd\x13\xf9\
+\x9a\xf7\xa1\x70\x59\xd4\x4f\x8a\xea\x7f\x48\xb4\xdf\x46\x59\xdd\
+\xd7\x7c\x4b\x7e\x55\x7d\x56\x5f\xd5\xaf\xfe\xaa\x83\xaa\x5f\xe5\
+\xd5\xbe\xea\x3f\x56\xbe\x37\xde\x5e\xfd\x9a\x5f\xb5\xaf\xf5\x54\
+\x79\xb5\xaf\xfa\x8f\x95\xef\x8d\xb7\x57\xbf\xe6\x57\xed\x6b\x3d\
+\x55\x5e\xed\xab\xfe\x63\xe5\x7b\xe3\xed\xd5\xaf\xf9\x55\xfb\x5a\
+\x4f\x95\x57\xfb\xaa\xff\x58\xf9\xde\x78\x7b\xf5\x4b\x7e\xfe\x7c\
+\x7b\xff\x15\x9f\x6f\x25\x7e\x7b\xf5\x53\x1f\x7b\xe3\x02\xfa\xe3\
+\x0b\x48\xcf\xb9\xf1\x66\xfb\x67\x01\x79\x15\x76\x93\xaa\x50\xfc\
+\x54\x71\xcd\x17\xf5\xb7\xbd\xd5\x5e\x48\xac\xd1\xef\x78\x3b\x9c\
+\xc7\xa1\x7e\x3a\x54\x2f\x1c\xfa\x19\x14\x62\xca\x23\xb4\x70\xcb\
+\x98\xe5\x6f\x86\x4f\x51\x3f\xb9\xcc\xe2\x99\x00\x1e\x3a\x13\xac\
+\x05\xa1\x2c\xb4\x51\x96\x47\xfd\xa9\x27\xde\xa0\x95\x69\xd6\xbf\
+\x63\xff\x8f\xf3\x6f\x87\x82\x77\x38\xb3\x1b\xac\x9c\x27\xce\xcf\
+\x5b\xed\xf9\xf6\xdd\x4f\xf0\x7c\xf3\x9f\xf3\x20\x88\x62\x43\x0b\
+\xe7\xcb\x27\xb9\xff\x27\x2f\x20\x25\xfe\xee\x80\x63\xda\x0f\x9f\
+\xdf\xf9\x8e\x61\xf8\x43\x5f\x35\x0c\xef\x7b\x8f\xfd\x96\xcb\x37\
+\xec\xf3\xf3\x69\xfb\x0b\x88\xfa\xe5\x66\xff\xfc\x83\xf6\xeb\x49\
+\xce\xfd\xf8\xfe\x19\xb7\xb7\xae\x7f\x6f\x7c\x5e\xcc\x84\x1a\xf5\
+\x2d\xec\xc8\xdd\x3e\xef\x8d\xbf\xdd\xf3\x36\xcd\xbd\xf1\x8f\xfa\
+\x4f\x7b\xae\x0e\x1f\xfb\x5f\xbe\xc0\xdb\x76\xec\x9a\xd6\xde\xf3\
+\xd7\x0c\x37\x12\xef\xb2\xe7\xdb\xd7\x7e\xd5\xe3\x9e\x6f\x1f\xf8\
+\xb5\xd3\xb7\xe3\xef\xe1\xfc\xfb\x0b\x48\x3c\x7f\x66\x6d\xa8\x5f\
+\xe0\x56\x85\xda\xf0\xfa\x0a\x38\x7b\x05\xaa\x06\x25\x40\x5e\xfe\
+\x27\xff\x51\x8d\x76\x7e\xfd\x5f\xff\xe8\xec\x05\x78\x66\x90\xfd\
+\x4b\x58\xd3\xa9\x06\x55\xbf\xca\x67\xf6\x95\x51\x1d\xac\xc8\xd7\
+\xd4\x6b\xc2\xf5\x81\x51\xdd\xd7\x7c\x57\xfd\x17\x83\xaa\x5f\xc4\
+\x35\x9d\x79\x43\xab\x83\x9a\x60\x91\x97\xe5\xaa\xff\xa3\xfe\xe9\
+\x03\xb3\xb6\xb7\xee\xd7\x6a\x7f\x8b\x41\xd5\x2f\xe2\xd5\xfd\x79\
+\xcc\xfd\xaf\x58\xb3\x7a\x0a\xe3\x59\xde\xff\xff\xf4\x2f\xd5\x6e\
+\x9e\x5f\xff\xd5\x1f\x9d\x37\xe4\x1e\xea\x9f\xfe\x3d\x10\xdb\x20\
+\x92\x52\x39\xda\x2f\x0d\x70\x5c\xa5\xd9\x4e\x98\x7f\xf5\xab\x93\
+\xa6\x51\x50\xcb\x97\x6d\x82\xdd\x88\x60\xd4\x57\x50\xe9\x2a\x98\
+\xa3\xfc\x3d\x76\x28\xf1\xf0\x29\x57\xd4\x01\x52\xab\xd0\xe5\x26\
+\x80\xe7\xeb\x91\xdd\xec\x62\x79\x02\xb3\x7b\xca\xfa\x49\x3d\xd2\
+\xf3\x3c\xe0\x9d\x92\x38\x43\x1d\xf5\x1f\xfb\x9f\x0e\x0c\xe7\x1e\
+\xe4\xac\x1f\xe7\x7f\xbc\x87\x66\xcf\xa3\xb8\xb5\xe8\xd7\xec\x4e\
+\xb3\xde\x3e\xe6\xfe\x9f\xf9\x3b\xc3\x60\x1b\xc1\x33\xaa\x27\xd1\
+\x15\xee\xff\xf1\x6f\xa2\x13\x52\x0d\x11\xad\x2c\x35\x4a\x02\xed\
+\x61\xbc\x24\x1f\xad\xda\x3c\x7b\x41\xe8\xf8\x9b\x6c\x40\x95\x37\
+\x4f\xeb\x84\xfb\x31\x35\xcf\x1f\x75\xba\xbd\x90\x2f\xba\xa0\xea\
+\x73\x7a\x41\xff\xda\xf5\x93\x17\xe8\xf9\x69\x11\xf9\xd1\x3b\x6a\
+\x57\xd9\x4d\x57\x0b\xe9\x25\xfd\x46\x87\x12\xba\xa0\xfb\xc7\x4e\
+\x88\x2d\x0a\x2b\xfe\x64\x92\xc7\x63\xf7\x9f\xb0\xe0\x51\xbf\x6d\
+\x09\x7b\x62\x8d\x86\x3e\xf6\xff\x74\xea\xda\x59\x11\x6b\xe5\xbc\
+\xa2\x0b\x5e\xfd\xfc\x9f\xd2\x5e\xa5\x26\x7b\x7d\x47\xf7\xff\xf8\
+\x02\x12\x1d\xac\xfd\xf6\xaa\x5a\x77\xc7\x03\xeb\x3a\x59\xdf\xe8\
+\xa8\x67\x75\xc3\xaa\xbf\xf6\xb4\x23\x46\x37\x81\xd5\xde\x36\x05\
+\xb9\xc1\x85\x98\xcf\x19\xc3\x79\xf8\x17\x33\xd1\xda\x94\x59\x3d\
+\xb2\x93\x1e\x63\x4d\x3f\x7c\xb8\x3a\xc1\x71\x20\x5b\x78\x1d\x7f\
+\x2d\x17\x62\xa0\xbb\x64\x8f\x1e\x28\x9f\x89\x16\x89\x0b\x89\x8e\
+\xfa\x8f\xfd\xf7\x33\x91\xce\xc8\xe4\xbc\x18\xdf\xcf\x4b\xc8\x39\
+\x3b\x1c\x3f\x9d\xa1\x55\xfd\xf0\xe1\xba\xd5\x81\xfc\xc2\x73\x85\
+\xa9\xbf\xe6\x3b\xe2\x37\x5d\x12\xa8\xf6\xe8\x81\xf2\x99\xe8\xaa\
+\x7e\xf7\xe7\x9f\x9e\x6c\x45\x6a\x05\xef\xa0\xfe\x17\x68\x3a\xb9\
+\xe4\xfd\x86\x66\x3f\x2b\x62\x4b\x3d\x75\xc3\x5c\x6e\x53\x93\x5b\
+\x10\xe7\x2d\x34\xac\x3e\xd0\x17\xd4\xba\x6c\xfc\x82\x28\x91\xb3\
+\xd6\xc8\x84\x1a\xb5\xbe\x35\x39\xbe\xc0\x99\xbe\x31\x9c\xa7\xc9\
+\x06\x74\x2c\x67\xf1\x46\xad\xd3\xdc\xad\x1f\x63\x53\xdb\x9b\xaf\
+\x3c\x93\xab\x68\xcf\x27\x50\xeb\xbd\xfe\xf0\x05\xce\xfc\x19\xc3\
+\x79\x9a\x6c\x40\xc7\x72\x16\x6f\xd4\x3a\xcd\x47\xfd\xb1\x27\x34\
+\x8c\x26\x46\x8b\xf6\xee\x97\xcc\xd8\x2b\x5c\xe1\x03\x99\xef\x91\
+\x16\x36\xa0\x09\x8f\x2e\x3e\x2a\xce\xf4\x8d\xe1\xbc\x70\x00\x1d\
+\xcb\x63\xff\x53\x8f\xbd\xe1\x3b\x26\xef\x65\xb1\xcf\x3c\xb9\xaa\
+\xfb\x05\x4f\xa8\xb1\xa6\xbf\x26\xef\xed\xff\x0b\x30\x15\x00\x1a\
+\xac\x0e\xa5\x93\x87\xf4\xd0\x11\x1f\x5a\xa8\x31\x93\x9b\x80\xef\
+\xbb\xf6\x14\xaa\xbe\xeb\x3c\x62\xf2\x07\x92\x39\x15\x6a\x10\x9b\
+\xef\xf9\x3a\xcf\x25\xe3\xa4\xf8\x1a\x60\xad\x67\x94\x9e\xe6\x9a\
+\x6f\xd5\x9f\xc9\x77\xd6\x5f\xfd\x9d\x22\x6f\xa3\x8e\xfa\x4f\x7b\
+\xae\x8e\x1d\xfb\x3f\xde\x0b\xc7\xf9\x3f\xdd\x3f\xdc\xeb\x7e\x3e\
+\x82\x0d\x6f\xed\xfe\x9b\xdd\xdf\x3a\x63\x76\xc9\x4e\x03\xba\xf9\
+\xab\xf7\xff\xa8\xf6\x64\xf3\x35\xee\xff\xf1\x27\xd1\x29\x61\x56\
+\xb1\x35\x03\x9e\x74\xa0\xe9\x08\x76\x60\xe9\x38\xb6\x8e\xa1\x43\
+\x73\xb5\xac\xee\x6a\xc1\xb8\xdd\x84\x39\x36\xf9\x15\xf4\x17\x12\
+\xe3\x39\xf6\x9c\xce\x12\xba\x71\xfd\xe4\x1a\x75\xf4\xf2\xcf\xfd\
+\x9c\x35\x34\xec\x9c\x6f\xf5\xf6\xec\x27\x6d\x38\xea\xb7\x26\x59\
+\x47\xe8\x9b\xd1\x9c\x61\xef\x53\xed\xcf\xa4\x79\xb6\xc0\x36\x36\
+\x05\xdb\x07\x9f\x7f\x8b\xc7\x9e\x29\x14\xb4\x63\xc4\x8e\x50\xe3\
+\xaa\xe6\x47\x1d\x81\x3d\xfb\x70\xd3\xb7\x3f\xea\x7f\xd2\xfd\x9f\
+\xf4\x7e\xc3\xa2\xb7\x7f\xb7\xde\xff\xf1\x77\x61\x71\xd0\x54\x44\
+\x8f\x86\xa7\x6c\x45\x47\xd6\x24\x0f\x4a\x46\x91\x72\xe5\x03\x5b\
+\xd6\x09\xb9\x11\xc0\xae\x7d\xd2\x3f\x4b\xa6\xd8\x9b\xfd\x51\x4b\
+\xce\xb1\x47\xc3\xbb\x76\xfd\x25\x9e\xd7\xdf\x9a\x6d\xab\x92\x3f\
+\xbd\x3f\xea\x8f\x93\x62\xfd\xa1\x27\xdd\xb3\x53\xfa\xe7\x3a\xec\
+\xb5\x16\xd0\x60\xd9\x0f\xb6\x02\xec\x9e\x5f\x6c\x3b\x09\xb0\x4f\
+\xe0\xcc\xbe\xc4\x73\x17\x2d\x58\xe4\x87\x8e\x2d\xa9\x75\xd1\x5f\
+\xcd\x41\xb9\x25\x7b\x17\xe7\x7c\xa1\x41\x74\x23\x87\x00\x1e\x07\
+\xde\x2f\x72\x68\xa1\xb0\x6d\x8c\x13\x41\x9e\xe0\xab\xad\xfe\x53\
+\x27\x36\x50\xb3\x66\x9b\x8d\x7a\xcb\x9e\x88\x0c\x7a\xb1\x9f\x35\
+\x4c\xb1\x77\x71\xde\x2f\x68\x90\x58\x91\x8b\x60\xfc\x0c\x24\x18\
+\xd5\x7f\xd1\x1f\xf3\x35\x26\xfe\x6a\x01\xad\x98\x73\xfe\x4c\x86\
+\x58\x7e\x44\x37\x7f\x08\xc0\x9a\xd0\x99\xb5\x9a\xe6\xfe\x02\x5d\
+\x15\x3f\x81\x02\x3e\xa7\x91\x1c\x5a\xd8\x1b\xae\x6f\x02\xc4\x33\
+\xff\xb5\x80\x6a\x50\x9c\xba\xd8\xa6\x89\x3f\xd3\x59\xaa\x7f\xa6\
+\x6f\x8a\x5e\x67\x18\x40\x73\x60\x3c\x1d\x33\xda\xec\x2f\x72\x39\
+\xea\x2f\x1b\x15\x4b\xef\xbf\xd1\x42\x8d\x59\x7f\x9d\x11\x02\x29\
+\x54\x03\xf1\xd2\x70\xb1\x4d\x13\x7f\x26\xdf\xbc\x5f\xa6\xc8\x9e\
+\xcb\x2d\xf4\xb1\xff\x63\x93\x67\xfb\x43\xa3\x03\x05\xdc\xf3\xb2\
+\x80\xbe\xd5\xf9\x1f\xb3\xde\x36\x7b\xee\x77\xb8\xff\xe3\x3b\x90\
+\x85\x1a\x38\xd8\xa0\x17\x61\xba\xb1\x1f\xfd\x0d\x40\x18\x7a\xbe\
+\xa9\xe1\x1f\x1a\x7f\x62\x67\xba\xfa\x0f\xb3\x07\x43\xcf\x5f\x4a\
+\x6f\xd5\x2f\xb9\x81\xd5\x5f\xf7\x00\xa6\x00\x33\x7d\x8b\x08\x8f\
+\xe0\xf8\xd6\x1a\x19\x2e\x24\x83\xe7\xfa\xb6\x70\x7d\x14\x30\x72\
+\xe1\x7c\xc2\x76\xa3\xfa\xcc\x01\xb9\x81\xd5\xdf\x51\x7f\xec\xcf\
+\x42\x83\x67\xfd\xb2\x0e\xc3\xa3\xd9\xf4\x56\x6b\x64\xb8\x93\x0c\
+\x9e\xeb\xdb\xc2\xf5\x51\xc0\xc8\x85\xf3\x09\xdb\x8d\xea\x33\x07\
+\xe4\x06\x56\x7f\xc7\xfe\x3f\x7e\xff\x67\x4d\x5f\x60\xb0\xef\x60\
+\x53\xcb\x9b\xdb\x98\x23\x51\xf7\x4b\xdc\x33\xea\xc5\xfa\xf4\x6c\
+\x3e\xb7\xff\xfe\x21\x7a\xfb\x0a\xc6\x34\xf9\xaa\xc6\x83\x59\x34\
+\x3e\x78\xd4\x1a\x9a\x0f\xe1\xd0\xc5\xde\x4f\x37\x59\x47\x3a\xe7\
+\x12\xae\xf6\xd5\x7f\xb8\xd8\x0c\xc4\x02\x65\x98\x69\x35\x42\xeb\
+\xd6\x10\x5b\x10\x53\xba\xd0\x4b\xf5\xad\xc9\x2f\x5d\x3f\xb9\xb6\
+\x1a\x2a\x23\xf6\x8b\x82\xd0\x03\x55\x53\xa6\x8f\xfa\x8f\xfd\xe7\
+\x08\xf9\xd9\xb0\x05\x67\x5a\x6b\xe8\xe3\xfc\xab\x1b\x76\x56\x76\
+\xf6\x67\xef\xfd\x3f\x46\xd9\x36\xfb\x7d\xcc\xe6\xf9\xc2\xec\xee\
+\xe0\xfe\xf7\x6f\x61\x51\x02\x2f\x04\x60\x4d\xd0\xf5\x78\xfa\x6a\
+\x01\x1d\x28\xd0\x07\x86\xb0\x6b\xbd\xee\xd7\x84\xcd\xbf\xf4\x69\
+\x86\x68\xbb\x34\xc0\x71\xb5\x63\x2e\x01\x67\x37\x84\xb9\xf2\x1c\
+\x93\xcb\x1c\x8b\x5c\xc0\x5b\xd7\x4f\xae\x4b\xfd\x4c\x65\x8c\xe4\
+\x51\xff\x64\x83\x8f\xfd\x1f\xef\xaf\xf6\x82\x70\x9c\xff\xbb\xbb\
+\xff\x67\xf7\xf0\x02\x23\x3f\x0b\xf2\x33\x6b\xa2\x7e\x83\xfb\xff\
+\x85\xe9\x97\xe4\x9d\x13\x96\x32\xf4\x07\xab\x55\xd2\x1e\xb0\x26\
+\xcb\xc5\x40\x83\x32\xcd\xb4\xbb\xca\x8c\xdc\x15\x94\xe1\xb9\xf2\
+\x8e\x49\x7e\xb1\x15\xda\x58\xcb\xb7\xea\xb7\x5e\xe4\x1c\x47\x57\
+\x9b\xfc\x61\x06\x7a\x0e\xc9\x7e\x74\x92\x18\x25\xdf\x1a\x1f\x3f\
+\xe0\xec\x05\x4d\x02\x7c\xc8\x2d\xf4\x51\xbf\x37\xf9\xd8\xff\xf1\
+\x4c\x2c\xdd\xaf\xf5\xbc\xd4\xf3\xe7\x4d\x4c\xd3\x5a\x3f\x39\xa7\
+\xa0\x4c\x33\xed\xae\x32\xa3\x9c\xd7\x1a\x1f\x55\xf0\x15\x77\xfe\
+\x53\x6f\xd7\xc8\x49\xef\xe3\xfe\xae\xfd\xaa\xfb\x39\xb1\x89\x00\
+\xad\x97\x5a\xaf\xf4\xbf\xe6\xd4\xf3\x37\xf9\x9b\x80\x38\x17\x3a\
+\x6d\x13\x38\x12\x08\xaa\xeb\x85\x35\x85\x0a\x33\x8d\xba\x3b\xb7\
+\x85\x30\xd3\xc8\xf7\x62\xf6\x91\xe9\x8d\x7e\xb2\x89\xd3\x36\x81\
+\x0f\xca\x2f\xd7\x9c\x69\xf2\x99\x05\x34\x01\x3c\x74\xf6\x20\xb6\
+\xc2\x4c\x6f\xf4\x91\x4d\x9c\xb6\x09\x7c\x88\xbf\xc9\x9e\x1f\xf5\
+\x8f\xbb\x40\x1f\xb4\x9a\x35\x3c\xf1\x46\xed\x7d\xf3\x23\xfd\xcd\
+\xcc\x8d\xe1\x3c\x4d\x59\xb8\x35\x2b\x6a\x15\x66\x1a\xfb\xec\x33\
+\xd3\xc8\xf7\x62\xf6\x91\xe9\x8d\x7e\xb2\x89\xd3\x36\x81\x4f\x52\
+\xff\xc6\xbc\x36\xab\xcd\x0a\x30\x4b\x78\x1b\x9c\xa0\x2a\x74\xda\
+\x26\xb0\xf9\x71\xc6\xc9\xd9\xfc\x57\x99\x98\x02\x7b\x2d\x5d\xd1\
+\xd8\x40\x2f\xc9\x4f\x6e\x83\xc2\x10\x14\x3b\xd1\xbb\xfd\xcd\x02\
+\x4c\x19\x72\x8d\xcf\xa9\x64\x5c\x21\x6b\xf9\x9b\x81\xf3\x22\x27\
+\xe8\x26\x2f\xfe\x5c\x1e\x3c\x79\x5c\x8b\xd7\x6a\x0d\xff\xb2\x69\
+\x3c\x23\xd7\xfc\xcd\xe4\x3b\xf3\xf5\x78\x69\x7a\xac\xbf\x99\x7d\
+\xaa\x21\x85\x39\x91\xd4\x0d\x4a\x92\xe8\x35\x7f\x33\xf9\x51\xff\
+\xae\xf3\x7a\xda\x88\x91\x7a\x6c\x3f\x67\xf6\xe6\x16\x5e\x8d\xe5\
+\x6b\xf6\x1a\x14\x33\xd1\xd8\x0a\x35\x24\x82\xa7\x35\x74\x93\x9b\
+\x82\xf3\xc2\x07\x74\x93\x27\x1b\xd9\xd7\xe1\xfa\xc6\x6c\xfa\x3b\
+\xfd\xcd\xec\xc3\x57\xa4\x53\xc3\x9d\x6a\xcd\x0a\x99\x9e\x5b\x9c\
+\xe5\xe8\x1d\x80\xe7\x10\x3e\xa0\x5b\x3d\x2b\xf9\xcc\xf2\xdf\xe9\
+\x6f\x66\x6f\xf1\xfc\x05\xa4\x25\x20\x87\xb6\xf0\xb7\x2a\x4a\x26\
+\xe8\xa5\xef\xa1\x56\x87\x67\xab\x37\xa1\xea\xc6\x66\x4d\x77\xaf\
+\x7c\xf2\xf6\x4a\x41\x6c\x10\x2b\x96\x8d\xe7\x44\xc8\x45\x23\xf7\
+\x0d\xb2\xc5\xbd\xd6\x4f\x9e\x60\xcd\x57\x85\xd0\x07\xea\xa2\xe7\
+\x5a\x6b\x60\x9b\x69\x78\xd5\xdf\xbd\xed\x3f\x79\x82\x35\xdf\xa3\
+\xfe\x63\xff\x8f\xf3\x7f\xba\xc9\x75\x9f\x3c\xf5\xfd\x3f\x7e\x88\
+\xae\x28\x1a\x16\x31\x6f\x00\x3c\xc7\x51\x3c\x61\xcd\x6e\x60\x14\
+\xc1\x5a\x81\xc5\xe1\xa7\x73\xa5\x42\x58\xb0\x3e\xb0\x70\xb3\x09\
+\x79\xaa\x80\xf2\x2f\xc7\xd4\x24\x27\x9d\x7c\x1a\x2f\xe4\xd8\x68\
+\xe9\x23\xf9\x83\x04\x9f\xba\xfe\x48\xbf\xf5\xa9\x9d\x86\xd6\xb0\
+\x53\x8d\xa4\xeb\xf5\xc4\x82\x5a\x1c\xc5\x3b\xea\x1f\x0f\x5d\xdb\
+\xc0\xd4\x93\xe8\x0f\x3d\xd3\xd2\x07\xba\xb6\x80\x04\x8f\xfd\xb7\
+\x9e\x58\x33\xda\xf9\x8a\x96\x35\x50\xa3\x38\xc4\x62\x1a\xbd\xe7\
+\xfe\xc7\x94\xe3\xde\x7c\xc1\x20\x36\x1b\xa2\x18\x89\x66\x2f\x5b\
+\x7e\x9d\x7c\xda\x3d\x11\xb6\xd8\x68\xe9\x23\xf9\x83\x04\xa5\xfb\
+\x98\xfa\x09\xb1\x05\xbd\x64\x4d\xd4\x20\x23\xa3\xcf\xe5\x8b\xcc\
+\x31\xf4\x5b\x0f\xb5\xde\xe9\x8f\xba\x41\xf9\x3d\xfb\x21\xba\x27\
+\x1d\x71\x14\x6f\x36\x6a\x01\x35\xa1\x6a\x40\x64\xb0\xe8\x53\x28\
+\x58\xcd\x1f\xbd\xae\x05\x29\x0f\x72\x90\x73\xe8\xd0\xab\xea\xb3\
+\xf8\x4f\x5d\x7f\xf5\x3f\x4b\x60\x27\xa3\x16\x74\xd4\x7f\xda\x73\
+\xb5\xf2\xd8\xff\xc9\x03\xaa\x1e\x97\xd9\x69\xab\xe7\xb3\xf4\xaf\
+\xa7\xef\x3c\x9d\x3b\x8d\xa2\xcf\x7d\x0f\x76\x1f\x90\xa3\xe5\xc3\
+\xe6\x5a\xd0\xad\xcf\xff\xc3\xaa\x78\xb8\xd5\x13\xd4\x3f\xfe\x20\
+\x21\x8e\x57\x1a\x3a\xcb\x1c\x3b\x50\x0a\x3d\x3a\x78\x02\x42\x48\
+\xd5\x69\x63\x0a\x1f\x3d\x72\x5c\x9c\x11\x8c\x00\x35\x01\x6c\xc0\
+\x35\x7d\xfc\x82\xd8\x81\xe2\xf7\xe8\xe0\x09\x08\x21\x55\xa7\x8d\
+\x49\x7a\xe2\xe5\xa1\x1b\x09\x1d\xf1\xa1\x9b\x7e\xf8\x9d\xc4\xcc\
+\x0e\xdc\x20\x0c\xc5\xaf\x09\x54\xfb\x35\xfd\xec\x1b\x7f\x19\x97\
+\xe8\x88\x53\xc3\xcf\xea\x29\xfe\x8f\xfa\x4f\x7b\xae\xd6\xcc\xfa\
+\x55\xf7\xaf\xf4\x6f\x34\x08\x43\xc9\xea\x06\x54\xfb\x63\xff\x4f\
+\x3d\xea\xf5\x4b\xbc\x3c\x6a\xff\x24\x83\x97\xe9\xe0\x09\x68\xb1\
+\xc4\x7b\x46\xbe\x17\xe4\xc3\x07\xb1\x40\xf8\x20\xc1\x30\xa8\x09\
+\x60\x07\xae\xe9\xe3\x17\x34\xbb\xf1\x43\xf4\xc4\x70\x32\x1c\xba\
+\x3f\xa3\x97\xe2\xd7\x78\xad\x3b\x4b\x06\xc4\x79\x22\x54\xda\xe4\
+\x94\xeb\x60\x53\x5d\x76\xa6\x1e\xf4\xc0\x35\x7d\x62\x09\x7d\x54\
+\xc6\x2c\x21\x14\xb7\x21\x7e\x41\x59\x65\xba\x7a\x99\x85\x13\x43\
+\x23\xd0\xd3\x33\x1a\x1f\x8f\xd5\x77\x7f\xe6\x1e\x7f\xad\xf9\x30\
+\x66\x01\x3c\x9b\xcd\x13\x6e\x40\x19\x66\xba\x3a\x9a\x85\x13\x43\
+\x23\x50\xb6\xdc\x88\xb0\x9d\xa7\x85\xc6\x4e\x7d\x6c\x5b\x4e\x95\
+\x31\x4b\x68\x0c\xb3\x75\xc6\x2f\x28\xbb\x4c\x57\x3f\xb3\x70\x3b\
+\xeb\x39\xea\x8f\x8e\x46\xdf\x7c\x3b\x8d\xa6\xe7\xb5\xbf\x2e\xcf\
+\x7b\x52\x19\xd5\xa0\x6e\xd8\x8e\x35\x39\x80\x3d\xd3\x59\x38\x31\
+\x34\x02\x3d\x3d\xa3\xf1\xf1\x58\x7d\xf9\x99\xfe\x3d\x10\x39\x37\
+\xae\x6e\x32\x1f\x1e\xd1\xa8\x88\x18\xc0\xd2\xf3\x42\x45\xfa\xf5\
+\x57\x1b\x70\xb3\xe2\x0f\xdf\x42\x8d\x6e\x01\xd9\xe1\xa8\xb6\x69\
+\xf6\x58\x66\x0b\xf6\x8c\x6a\x3c\x42\x45\x3a\xcd\x96\x7c\xbd\x50\
+\x8c\xcc\x21\x7a\x20\x22\xa1\xc6\xc5\xeb\x2f\x09\x96\xe5\x2c\xdf\
+\xda\xdf\x31\xab\xd3\x3c\xcb\xd7\x44\xf0\xa4\x45\xef\x8e\xfa\xa3\
+\x67\xa5\xe1\xec\x3b\x48\xef\x8e\xfd\x1f\xfb\x75\x9c\xff\xb8\x9f\
+\xe2\x40\xf8\xfd\x14\xf7\x95\x3a\xb4\x76\x7f\x8e\x5d\xec\xcf\xf9\
+\xac\xb5\xf3\x67\x4c\x7c\x6e\xf1\x9f\x7d\xb8\xbe\x4d\xf0\xb4\x7e\
+\xc8\xfd\x3f\xfe\x2a\x13\x59\xdb\xf0\x64\x02\xb5\x9e\x39\x14\x33\
+\x0f\xab\xc4\x1f\x36\x51\x91\x92\xd1\x00\xf5\xc4\x75\x1a\x79\x64\
+\xeb\x36\x52\x2c\xf6\xb3\x27\xb4\x74\xb6\x8e\x14\xab\xc5\x8f\x78\
+\x24\x44\xb3\x85\x1a\x45\x7c\x7f\xf5\xcf\x12\x4c\x49\xab\x80\xa8\
+\x03\xf4\xba\xe9\x83\xe4\xc5\xfe\xa8\xdf\x5a\x62\x3d\x39\xf6\x5f\
+\x87\x63\x76\x3c\x8e\xf3\x1f\xf7\x4e\x3b\x1f\x71\x56\xda\xf3\x6a\
+\x6c\xdb\x69\x96\x3e\xf7\x58\xf4\x53\x42\xb1\x7c\x70\x2f\x1a\x6a\
+\xa0\xbb\xe8\x6f\x54\xeb\xcf\xc4\x01\xa5\x15\x7e\x41\x8f\x4b\x4c\
+\xc9\xd1\x75\xc1\x78\xee\x15\xbb\xd5\x17\x2e\x42\xfc\xa0\xfd\x9f\
+\xfc\x3d\x10\x1c\x4d\xd0\x16\xac\x95\xaf\x68\xf2\x36\x72\x3a\x10\
+\x62\x30\x95\x8e\xab\x35\x19\x41\x7a\xb6\xe7\x78\x39\xf6\x42\x82\
+\x6c\x1c\x28\x77\x39\x1d\xe8\x09\xda\x82\x35\xa9\x2d\xb8\x3f\x35\
+\x07\x83\x5e\xbe\x6b\x32\x82\xc8\x16\x3a\x02\x7a\xde\x46\x2f\xe5\
+\x5f\xf5\x6b\x78\xec\x40\xc9\x73\x3a\xd0\x13\xb4\x05\xeb\x92\x4e\
+\x75\x7f\xd4\xaf\x46\xd1\xa4\x79\x77\x46\x0e\xcd\xec\xc9\xab\x3d\
+\xbe\x84\x36\x8e\xfd\xb7\x26\x58\x2f\x96\xce\x6f\xeb\x7d\xf4\xcb\
+\x9b\x96\x26\xec\x40\x89\xf2\x76\x40\x4f\xd0\x16\xac\xcb\x76\x24\
+\xcf\x41\x4a\x11\xa5\xb9\x74\xe4\xe0\x6c\x49\xbe\xc4\xa7\x6e\x30\
+\xf4\x26\xee\x88\x2d\xec\x0c\xea\x06\xa5\x92\xed\xa1\x27\x68\x0b\
+\xd6\x3d\xf7\x93\x9f\x44\xf7\xe2\xe5\x55\x9a\x76\x79\x1e\x81\x4e\
+\x87\x48\x2a\x1a\x24\x22\xcc\xf4\x28\xb5\x39\x1b\x19\xed\x89\x04\
+\x3a\x2d\x3b\x77\x24\x67\xa1\x0f\x8a\xbf\x77\xb8\x33\x33\x12\xe2\
+\x07\xcc\xb9\x2c\xf9\xcd\x3a\x46\xfb\x32\x30\x8b\x30\xcf\x35\x67\
+\x1a\xf9\xa3\xea\x57\x40\x72\xa7\x1e\x39\x16\xbd\x34\x90\xa1\x9f\
+\x7d\xf4\x0a\xa8\x7e\xb2\x8e\xd1\xbe\x0c\xcc\x22\xcc\x72\xcd\x99\
+\x46\x7e\xd4\x1f\x9d\x50\xf3\xec\xf2\xed\x09\x74\xda\x26\x70\xb2\
+\xd7\xa1\x3f\xe1\xb9\xa2\xf9\x01\x5b\x93\x13\x81\x4c\xa8\x4b\x7e\
+\x40\xd1\x1a\xe0\xb8\x9a\xce\xc8\x84\x76\xf9\x32\xd0\xe9\x62\x9e\
+\xf7\x3c\xd3\xcd\x69\x36\x32\xda\xd3\x0b\x74\xda\x26\xb0\xe5\x29\
+\x86\xec\x74\x41\x0b\x5d\x31\xa1\x91\xb3\x91\x75\xb2\x2d\xfe\x64\
+\x20\x7a\x69\x20\x0b\x7d\x5f\xda\x14\x4b\xb7\x72\x5e\xd8\xe7\x9a\
+\x33\xdd\xdc\xa3\x1c\x0e\x3c\x3d\xa3\x49\xb3\xe9\x6d\x21\x30\x02\
+\x7b\x36\xc8\x84\xba\x14\x17\xcc\xb9\xf4\x6c\xc5\xcb\x3a\x46\xfb\
+\x32\x30\x8b\x30\x57\xcd\xf3\xcf\x40\x4c\x4a\x33\x5c\x51\x09\xc4\
+\x90\x13\xf2\x11\xcb\xdf\x0a\x19\xa3\xbd\x25\x0a\x1a\xfb\xfa\x3d\
+\x51\x77\x93\xfc\xf9\x3a\x4d\xb2\xf3\x18\x67\x74\x92\xfa\x84\x94\
+\x49\xcd\xaf\xed\x54\xf8\x73\x1d\x9b\x62\x39\xd3\xef\xc6\x47\xb9\
+\xe3\xff\x2a\xf5\x9f\x89\x2f\x11\x35\xab\x19\xd0\x42\x1f\xd8\x06\
+\xba\xbe\x4d\xb0\xab\xfe\x51\x7f\xe7\xfc\xd1\x2c\x6b\x68\xed\xd7\
+\xb1\xff\xd6\x14\xeb\xcf\x93\xde\xff\x67\xfa\x2f\x11\x7b\xa2\xf3\
+\x0e\x2d\xf4\x81\x6d\xa0\xeb\xdb\x04\xbb\xea\xdf\xfa\xfc\x93\x76\
+\x0f\x3d\x77\x13\x80\xd2\x81\x5e\xaa\xa7\x15\x1a\x0a\xae\x6f\xd3\
+\x92\xfe\x43\xea\x1f\xff\x1b\x6f\x2f\x63\xe3\xcd\x1a\x9c\x78\x6e\
+\x42\x26\x81\xae\x6f\x34\x1b\x28\x36\x3e\xa4\x0f\xbd\x24\x97\x0e\
+\x2e\x45\x3f\x76\x78\x43\x2c\x98\xd0\x07\x34\x09\xac\x04\x90\x1a\
+\x35\x48\x15\x1a\x77\x2d\xd9\x60\xb8\xbe\xd1\xb8\xaf\xfa\xab\xfe\
+\x22\x86\x62\x69\x54\x7d\x78\x2e\xdc\x30\x1d\xf5\x5b\x0f\xad\x89\
+\xc7\xfe\xc7\x61\xa1\x17\x3a\x58\x1b\x46\x3d\x7f\xf5\x3c\x1f\xe7\
+\x3f\x9a\xf8\xc0\xfb\x7f\xc3\x16\x34\x15\xb6\x0c\x6c\x82\x33\xc4\
+\x35\xee\xff\x5d\x7f\x0f\x44\x4f\x34\xbf\x19\xa9\xa2\x9c\xa8\xe8\
+\x63\x3b\x57\x33\xfd\x5a\x6c\xb1\xef\x3e\x31\xab\xcd\x99\x75\x37\
+\xbe\xf4\x23\x5f\xc1\xe4\xd7\xcd\x9b\x41\x7e\xc0\x40\x2f\x7d\x45\
+\x35\xab\xa7\xe4\xdf\x8d\x8f\x4e\x2f\x6f\x64\x18\x7a\x82\xa7\x7c\
+\x61\x83\xb3\x57\x30\xd3\xcf\xfb\x81\x1e\xe8\xf9\x2a\xee\x51\xbf\
+\x77\xff\xd8\xff\xe3\xfc\xdf\xd5\xfd\xef\xa7\x72\xdb\xe4\xf7\xb4\
+\x26\x9e\x11\x32\xbb\x83\xfb\xff\xfc\xdf\x03\xb1\x1c\xdb\x57\x6f\
+\x4a\xb8\x8e\x78\x30\xf1\x80\xaa\x62\x5f\xa3\x63\x0b\x1e\x76\xd9\
+\x67\xa6\xbb\xf6\x7b\x98\x9d\x06\xb7\x87\xae\xe2\x87\x2f\x50\xcb\
+\x09\x1d\x8b\x9c\x53\xa6\xc3\xfc\x04\xd4\x06\x9e\x24\x27\x2a\xc9\
+\xdc\x97\xad\xb3\xcf\x4c\x9f\x8c\x1e\x48\x29\x7f\xc5\xa3\x28\xe8\
+\xc8\x01\x36\xa8\x28\x13\x3a\x16\x39\xa7\x4c\x4b\x7f\x32\xc2\xef\
+\xb1\xff\x93\xae\x4c\x17\xf4\xc8\xb8\xde\x4b\x5b\xe7\x9e\x66\x7a\
+\x6a\xf8\x80\x95\xf6\x4f\xf1\xd8\x54\xe8\xc8\x01\x36\xa8\x08\x13\
+\x3a\x16\x39\xa7\x4c\x4b\x7f\x32\xc2\xef\xb1\xff\x93\xae\x4c\x17\
+\xf4\xc8\xb8\xde\x4b\x5b\x9f\xed\xe9\xd4\x7a\xdf\x4a\xfb\xa7\x78\
+\x6c\x2a\x74\xe4\x00\x1b\x94\xf3\x09\x1d\x8b\x9c\x5f\xa6\xa5\x3f\
+\x19\xe6\xd7\xff\x17\x16\x5f\x71\xbb\x37\x82\x4a\x13\x3a\x12\xa8\
+\x72\xc5\x43\x65\x83\xfa\xa8\x6b\x46\xb8\x6b\xc6\x30\xaa\x43\x39\
+\xdd\x38\x54\x68\x7d\x07\xb1\x9a\xaf\xc5\xc5\xce\xc3\xd4\xf8\x14\
+\xb7\x90\xdf\x4e\xf5\xdd\xf5\x77\xfd\xab\xce\xe8\x89\xe7\x6e\x34\
+\x9b\x7c\xd4\x7f\x7e\x3f\x67\xfd\x3c\xf6\xff\x38\xff\xba\x9f\xda\
+\x0d\x65\x37\x93\x68\x1d\x14\x0d\xe8\x05\xf9\xec\x3c\x99\x09\x3c\
+\x99\x43\x4f\xdc\xd9\x02\x77\xd2\xd9\x3a\xf2\xbd\x8e\x7d\xe6\xc9\
+\xcf\x2d\xee\xff\xc9\xaf\x32\xf1\x82\x6d\xa2\xe0\x46\x04\xc3\xfb\
+\x69\x34\x05\x54\xf4\x22\x52\x47\xd6\xe4\xb3\x06\x98\x2d\xbc\xe4\
+\x66\x13\xe9\xb1\xc8\xad\x15\x20\x87\x67\xcc\x91\x05\x0a\xf8\xe0\
+\xdf\xad\x8a\x5c\x31\x72\x7e\x6b\xf5\xad\xc9\xf1\x25\xd4\xa8\xfe\
+\x47\xee\xf2\x3c\xf3\x6f\x7e\x9c\x47\xde\x32\xcd\x74\x75\x85\x2c\
+\x50\x70\xd4\x9f\x5a\x56\xfa\x53\xf7\x67\xd6\x7f\xf5\x2f\xf5\x18\
+\x1a\x94\x28\xd3\xc7\xfe\x8f\xfd\x78\xb5\x9e\xff\x74\x54\x1e\x44\
+\x72\x96\x40\xdd\xeb\x4e\x73\x6e\xe5\x35\xd3\x35\x0a\xb2\x40\xc1\
+\xde\xfb\x7f\xf2\xab\x4c\x14\xdc\x9d\x44\x20\x3f\xe0\xc6\x64\x83\
+\x3d\xbb\xa4\x00\x29\xec\x8e\xaa\x50\x02\x94\x65\xfb\x6a\xa8\xc5\
+\xeb\x3a\x5d\x66\xd6\x70\xad\x18\x12\xa4\x16\x05\xb6\x01\x1b\x5c\
+\xcd\xa7\x28\xcc\xe2\x8d\x6e\x4f\x73\x55\x28\xf6\x65\x39\xaf\xdf\
+\x14\xbc\x17\x52\xb4\x41\x9e\xe0\xcc\xde\x74\xe0\x35\x83\xcc\x30\
+\x7a\x97\x3f\x0b\xc4\x57\x35\xee\x0f\x5f\x42\x1b\xb5\xbc\x91\x9b\
+\xe6\xaa\x50\xec\xcb\xf2\xa8\xbf\xd3\xef\x5d\xfb\x65\xad\xa7\xa7\
+\xbe\x0b\x9d\xfe\xef\xf2\xd7\xc9\xa7\x6d\xba\x05\xa8\xee\xd3\xce\
+\x8f\x64\x55\x20\x39\xa1\x8d\xb2\x7c\xd5\xed\xff\xd8\x85\xed\xb3\
+\xda\xa9\x01\xce\xfa\x67\x32\x78\x4d\x31\x33\x8c\xbe\xf4\xfe\x4f\
+\x7e\x12\x1d\xe7\x8e\xca\xa0\x17\x50\x3c\xcf\x6e\x9c\x32\x9d\xd8\
+\x4e\xfa\xc3\xc7\x28\xde\x22\x4a\x17\x9e\x14\xb0\x05\x33\x4f\xf4\
+\x9e\x31\xc9\x5d\x4d\xb3\x41\x2c\xe2\x8f\x4c\x9f\x7d\xf2\x7c\x8c\
+\x22\xfe\xc4\x87\x34\xee\xbc\xfe\xb5\x7c\x8f\xfa\xc7\xbd\x3d\xf6\
+\xdf\x8f\xfb\x38\xc5\xbd\xa1\xc5\x71\xfe\xfd\x16\xbf\xd9\xfd\x9f\
+\x76\xe5\x41\xe4\x3d\xdc\xff\xd3\xbf\x07\xc2\xa9\xda\x5a\x4e\x3d\
+\x81\xc5\xae\x3d\x98\x13\x1f\x5e\x62\x9d\x48\x1d\x6e\x7c\x9e\xb8\
+\xdb\xa8\x6c\x1b\x41\x88\x05\xb6\x97\x67\x6e\x22\x13\xe4\xbf\x4f\
+\xe0\x81\x9a\xf2\x86\xb0\xd2\x25\x6e\x47\x1d\x57\xa0\x54\x32\x3d\
+\x33\xc1\x57\xca\xef\x9c\xff\x26\x5b\xd0\x27\x16\xd8\xd3\x3f\xea\
+\x2f\x9b\xd2\x9a\x35\xdb\x9d\x39\x43\xba\xec\xd9\x5c\xda\xf6\x3a\
+\xbb\xcc\xf4\xcc\x04\x5f\x0b\xfb\xb9\x57\x9f\x58\x60\xcb\x35\xf9\
+\x3f\xf6\xdf\xba\xda\x1a\x54\xe8\x59\xc3\x0b\x43\x76\xec\x59\x11\
+\x69\x89\x5b\x30\xf3\x3a\xea\xe7\x59\xd9\x09\x9a\xc4\x4e\xfb\x99\
+\xf3\xc1\x04\x6c\xb2\xa4\xff\xd8\xfd\x3f\xff\x21\x3a\x91\x03\x05\
+\xe4\xac\x1a\x9c\x36\x26\xf9\x50\x57\x43\x94\x97\x14\xaa\xc3\x88\
+\xd3\x3a\xdf\x1c\x6d\x24\x88\x13\xa8\x57\x68\xff\x2a\xbc\xfa\x8d\
+\x35\xb2\xf6\x15\xaa\xf8\xe4\xac\x90\xc5\xae\x8a\x5d\xd5\x98\x84\
+\x9d\x65\x89\xaf\x25\x85\xea\xb0\xc4\x6b\xb9\x60\x5f\xf5\x6b\x40\
+\xf4\x02\x8f\xfa\x8f\xfd\xe7\x8c\xfb\x51\x29\xe7\x0b\xd9\x71\xfe\
+\xe3\x46\xaa\xf7\x57\xe9\x57\x15\xeb\x36\xf3\x7b\xac\xde\x87\xac\
+\x5d\xc1\x16\xdc\x97\xf0\x1f\x82\xd9\x17\x79\x55\x3f\xc4\x09\xbc\
+\xc6\xfd\xef\xdf\xc2\x6a\x0f\x4a\x25\xb4\x94\x9c\x89\x4a\x7e\xae\
+\x4a\x5d\xb5\x16\xad\xf9\x40\x46\xa8\xb1\xb6\x01\x55\x3e\x5a\x6d\
+\x9b\xd9\x48\x7c\xc8\xca\xf3\x35\x06\x79\xcf\x3c\x21\x93\x11\x23\
+\xd3\xf0\x02\xf1\x03\x4a\x55\xf4\x92\xc9\xa3\xeb\xc7\x71\xa0\xc7\
+\x32\xba\xc5\x0f\x5a\xb5\x6b\x90\x0b\x72\xc7\xa4\x3f\x6a\xa5\x19\
+\x59\xd8\xbb\x24\xd3\x49\x55\xe4\xc4\xaf\xad\xa5\x4a\x4c\xc9\xeb\
+\x38\xea\x8f\x1e\x45\x4f\x6b\xbf\xbc\x77\xc6\xa4\xaf\x55\xde\x0e\
+\x56\xd8\xcf\xf4\xc3\xf6\xd8\xff\xf1\xe4\x71\x16\xe9\xa7\x63\xea\
+\x6f\x3d\x9f\xea\x2f\x3a\x4d\x16\xbd\x6e\xeb\x44\x4c\xfc\x1a\x5f\
+\xaa\xe2\x2d\x99\xac\x9d\xff\xe4\x7a\x95\x6c\xcf\x37\x72\x56\xdc\
+\xa0\x6f\xb9\xff\xd3\x6f\x61\xd1\x8d\xe8\x54\x59\xae\x7e\xc8\x35\
+\xd3\xb7\x22\xe1\xd1\xa1\xdc\x6c\x68\x10\x5d\xe1\x43\x86\x37\xd2\
+\x8c\x69\x68\x0b\xbe\xe4\x50\x81\x09\xaa\x80\xd0\xa1\x5f\x96\x57\
+\xaf\xbf\xa6\xb7\xd6\x93\xa3\xfe\x71\x0f\x8f\xfd\x8f\x93\x52\x0f\
+\x70\x3d\x40\xf5\x80\x15\xfd\xb2\x3c\xce\xbf\xf5\x8b\x77\x6d\xde\
+\x4a\x6b\x10\xf7\x9c\xd6\xb3\x7e\x25\x9e\xeb\xdb\xa4\x96\x3f\xd5\
+\x20\x97\x6b\x9e\xff\xe7\xfd\x55\xd8\x2a\xf7\xb7\xb1\xd1\x20\xaf\
+\xd2\x68\x2f\x36\x50\xb4\x37\x2f\xb0\xa7\xef\x8d\x71\xa3\x68\x11\
+\xb4\xd0\x2e\x35\x18\x74\xda\x96\xa0\x8b\x42\xbf\x35\x40\xcc\xad\
+\x43\xfe\xe5\x2c\xd0\x69\x5b\x82\xee\x26\xfc\x7b\x61\x3d\xfd\xc4\
+\x93\x8e\xab\x07\x8a\x96\x2f\x30\xc7\xc2\xdf\x24\x86\x16\xee\x20\
+\xd0\x68\xaf\x35\x90\xba\x41\x57\x0f\x7d\xd5\xef\x3d\x48\x28\x5f\
+\x2e\x0e\xcc\x34\xf1\x73\x4e\xd4\x0d\xca\xff\x2c\x1f\x05\x37\x47\
+\xd2\xc9\xb6\xf8\xcb\x31\x44\x4b\x07\xec\xe9\x2b\x44\x8b\x91\x69\
+\x19\xd9\xe5\xb5\x06\x3a\x6d\x6c\xd0\xd5\xa5\x67\xe3\xa8\x7f\xec\
+\x81\x7a\xc6\x39\x70\xda\x9b\xe3\xad\x1c\xdb\x2c\x79\xf0\x44\xe4\
+\x3d\x71\xda\x64\xa0\xd4\x46\xe5\xc0\x9e\x7e\xe2\x49\xd7\xfe\xf9\
+\x24\xd4\x25\x5f\x60\x8e\xe5\x4c\x57\x0e\x45\x03\x1f\x99\x67\xf4\
+\xb1\xff\xd6\x15\xfa\x10\x2d\xda\x0c\x66\xe7\xed\x0c\xcc\x34\xfd\
+\xcf\x7b\xc2\xbe\x83\xdd\xfd\xd0\x86\x98\x23\xe9\x64\x5b\xfc\xe5\
+\x18\xa2\xa5\x03\xa2\xff\x82\x76\xd5\x15\x15\x01\xda\xd0\x87\x6b\
+\x1b\x15\x0a\xe8\x81\xae\x8f\x8e\xd4\x82\x76\x94\x03\xf9\xdb\x21\
+\x97\xbe\x0f\x30\x96\x5b\x81\xbc\x40\xe5\x3d\xf9\x90\x48\x7e\x73\
+\x3e\x72\xac\x1c\x09\x00\x4d\x7c\x74\x43\x01\x3d\x70\x6f\x7d\xf4\
+\x62\xa9\x3f\xb3\xfa\x4b\x7c\xd2\x5c\x42\xf2\x02\x8f\xfa\x8f\xfd\
+\x3f\xce\xbf\xdd\x2d\xdc\x10\xf7\x76\xff\x2f\xdd\xc8\x0f\xe4\x53\
+\x26\x78\x8d\xfb\x7f\xfc\x10\x7d\x21\x61\x25\xc2\xf7\xf1\xa4\x52\
+\xfa\xbf\x60\x95\xd8\x54\x02\x4a\x94\xe9\xa4\xea\x22\x93\xf9\xab\
+\xdc\x19\x9d\x62\xb2\x6b\xa9\x07\xb7\xd7\x10\xfe\xd7\xea\x91\xda\
+\x2d\xeb\x27\x57\xa1\x46\x37\xff\xa8\x69\xd4\x38\x3f\x77\xed\xcd\
+\x04\xff\xd5\xfa\xa8\xff\xd8\xff\xe3\xfc\x9f\x1e\x59\x6b\xcf\x8b\
+\x7a\xff\xb4\x67\x5d\x3c\x6f\x5c\x9e\xe9\x99\xc1\x79\x46\xf7\xfe\
+\xbd\xf1\xfd\x3f\xfd\x7b\x20\x25\x7f\x1e\x2c\xc2\x4c\xa3\xa6\x82\
+\x34\x84\x99\x1e\xb9\x36\x67\x23\xa3\x5d\x3d\xd0\x69\xd9\xb9\x03\
+\x39\x09\x75\xb0\x39\xd9\x4e\xe4\x1c\x32\xbd\xdd\xc3\x54\xb3\xa4\
+\xef\x42\x78\x5a\xe4\x18\x99\x6e\x5e\x50\x16\xda\xe5\xb5\x06\x52\
+\x37\x58\xeb\xcf\xa6\xf8\xcb\xbc\x4c\x23\xcf\x39\x64\x1a\xf9\x5e\
+\xcc\x31\x32\x8d\x9f\x1c\x23\xd3\xc8\x1f\xb3\xff\xbd\x78\x99\x97\
+\x69\xe2\xe5\x1c\x32\x8d\x7c\x2f\xe6\x18\x99\xc6\x4f\x8e\x91\x69\
+\xe4\x47\xfd\xd1\x09\x35\xcf\xae\xe3\xfc\xa7\x3e\xb4\x43\xb2\x9d\
+\xc8\x67\x30\xd3\x78\xc8\x67\x30\xd3\xc8\xf7\x62\x8e\x91\x69\xfc\
+\x28\xc6\x0b\xda\x55\x7f\x9b\x0b\xf7\x0c\xca\x89\x0e\x41\x75\xc6\
+\x1a\x99\x50\x83\xaf\x5e\x84\x6d\x64\xba\x31\x47\xa2\xda\x17\xf1\
+\xd9\x25\x6e\xc1\xae\x72\x09\xc0\xdb\xfb\xbb\xad\xbf\xe4\xcb\xbb\
+\x33\xff\xfe\xa3\x15\x58\xc4\x5e\xf2\x51\x7f\x77\xe7\x47\x66\x69\
+\xd8\xb1\xff\xe3\x21\x3a\xce\xff\x99\x33\x93\x44\x4f\xfd\xfc\x4b\
+\xa1\x66\xa4\x1e\xd6\xf7\x78\xff\xfb\xaf\x32\x59\x7a\x01\xa8\x55\
+\xf8\xab\x9a\x29\xf3\xea\xe6\xaf\x24\xdc\x94\xa1\x9c\x1f\x60\xd0\
+\xa0\x54\x7a\x74\xe3\x19\xc1\x4d\x5d\x63\xaf\xae\xcd\x76\xd6\xe0\
+\xc4\xc3\xbe\xe5\x6e\x8c\x7a\x20\x94\x07\x3c\xf4\x33\x5e\xbb\xfe\
+\x59\x3d\xca\x4f\xfd\x27\x29\x23\x72\xbf\x66\xfa\x47\xfd\xed\x4c\
+\xb4\x96\xb5\xe6\x9d\xf6\x5a\x7b\xae\x21\xd1\xb1\xff\xe9\x7c\x79\
+\x57\x4e\xd3\x71\xfe\xc7\x03\xd2\x9e\x21\x1c\x16\x0e\x90\x89\xd3\
+\xf1\x6a\x74\x8f\x77\xea\xea\x36\x8a\xfb\x1e\x74\x2b\x73\x7c\xeb\
+\xfb\x7f\xfc\x10\x9d\x0a\xad\x11\x1c\x12\x12\x9c\xdc\x51\xb5\x61\
+\xb2\x83\xb7\xa5\x0f\xe8\x0a\x6d\x28\x16\x0f\x3d\xad\xa1\x85\x0f\
+\x19\x6c\x2c\xa8\xdc\x26\xf5\x14\xa7\xc8\x16\xf5\x6b\x7d\x25\xff\
+\xd5\x27\x4e\x89\xd7\x7a\xb5\xb1\xfe\x59\x7e\xe6\x8f\xad\x6a\xae\
+\x13\x83\x3a\xc0\xa3\xfe\x63\xff\x39\x43\xed\xbc\x24\x02\xd9\xe2\
+\x79\x39\xce\xff\xf4\xf9\x76\xe1\xfb\x3f\x6d\xc5\x2a\xc9\x1e\xa5\
+\xdb\x7d\xb4\x49\x8c\xa6\x03\xef\x0a\xcf\x3f\xff\x6f\xbc\x2d\x7b\
+\x02\x0b\x33\xdd\x14\x56\x88\x78\x30\xfa\x83\x32\xd3\x61\x96\x0b\
+\x14\xed\xfb\x11\xd8\x51\x5f\x09\x56\xc4\xe6\xc0\x53\x0e\xec\xa6\
+\x9f\x99\x99\xc6\x55\xe6\x65\x1a\xf9\x1a\xe6\x22\x32\x1d\x76\xbb\
+\xeb\xcf\x3e\x32\x4d\x1e\x99\x67\xb4\xa7\x1c\xd8\x4d\x3f\x33\x33\
+\x8d\xbf\xcc\xcb\x34\xf2\x35\x2c\xf9\xb8\x3a\x3c\x5b\x1c\xf5\x8f\
+\x0d\x54\x1f\x36\x9d\x7f\x7a\x27\xcc\xf4\xe8\x66\xca\x33\xb9\x6f\
+\x59\x60\x77\xfb\x32\x33\xd3\xf8\xcb\xbc\x4c\x23\x5f\xc3\x9c\x63\
+\xa6\xc3\xee\xd8\xff\xb1\x11\xf4\x61\xad\x9d\x13\x79\xa7\x9f\x93\
+\x33\x11\xfb\x2e\x9e\xb6\xae\xbb\x7d\x99\x99\x69\x02\x65\x5e\xa6\
+\x91\x77\x70\xf2\x37\xd1\x3b\xf2\x09\x2b\x1f\xfa\x26\x20\x90\x18\
+\xd0\x60\xe6\x19\xad\x1e\x48\x44\x2f\x44\xf8\xe7\x23\x30\x10\x66\
+\x7b\xf9\xd8\x30\x72\x6e\xcd\x9d\xf9\x11\x3d\xd9\xb0\xe4\xdb\x65\
+\x26\x47\x7f\x2d\x4c\x8e\xd1\x74\x93\xbf\x4b\xd7\x2f\xd7\xe4\xa8\
+\x78\xd4\x42\xbe\x35\x9f\x35\xb9\xe7\x9c\xf2\xc5\x37\xfe\x5c\x7e\
+\x66\xaa\xf1\xaa\xbf\xa3\xfe\x68\x5e\xea\x71\xeb\x89\x89\x66\xfd\
+\x36\xc6\xb9\xf3\x7f\xec\xff\xa9\x67\xea\xac\xf7\xcf\x9a\xc2\x79\
+\xad\xe7\x71\x4d\xee\xbb\x93\xf6\xc6\xf5\xc3\xaf\xcb\x56\xa6\x1a\
+\xaf\xfa\x6b\x7b\x9d\x62\x34\x5e\xc4\x61\x4f\x57\x42\xcd\xc4\x39\
+\xf6\x3d\xd5\x3f\xf9\x9b\xe8\x9e\xa4\x65\x27\xf4\x51\x3a\x5c\x96\
+\xde\x1b\x78\xd2\x87\x16\x2e\x8d\x2c\xcb\x4d\x91\xbe\xdb\x5b\xec\
+\xac\xb3\xe4\xe7\x29\xf8\x47\xfd\xd6\x7b\x6b\xfe\xb1\xff\x71\xba\
+\xfc\x40\xc6\xc1\x0c\xc8\x0f\x00\xe8\x85\xdb\xa5\x7b\x44\xf3\xd9\
+\x3e\xce\xff\xe9\x9e\x57\xb3\xbc\xdd\xaf\xa2\xfb\xbf\x7b\x40\x6e\
+\xc8\x7c\xc8\xf3\x6f\xf2\xf7\x40\xb4\x83\x7e\x33\x70\xca\xd7\xee\
+\x90\x22\xe7\x03\x1d\x47\x35\xa2\xc8\x6b\x6f\x78\x58\xf1\x99\xc7\
+\xac\x80\x6a\x70\x66\xdd\x0e\x9f\x6a\xf0\x22\x46\xe5\x44\xc6\x09\
+\x35\x7e\xd4\x87\x0c\xbc\xbb\xfa\xa9\x85\x7c\x95\x28\x3c\x91\x41\
+\x9f\xeb\x5f\xab\x4d\xed\x90\x9f\xf0\xa1\x25\x32\xf0\xa8\x3f\x7a\
+\x12\xfd\x6e\xbd\xa2\x41\xa5\x7f\x55\x7e\xf1\xf3\x1f\xfb\xeb\xfb\
+\xa6\xfd\x8a\xbd\xe3\x7c\x1f\xfb\x3f\xf6\xe4\x59\x3d\xff\xba\x07\
+\xf7\x8c\x7b\xdc\xff\xc9\x3b\x90\x7a\x43\xcc\x1e\x38\xe5\x00\xfb\
+\x03\x27\x78\xad\x11\xdc\x7c\x62\x40\x83\xe8\x0a\x6d\x04\x34\xcc\
+\x3c\x57\xd8\x31\x4d\x9a\x4b\xbc\x9e\xfd\x39\x59\xc9\xef\xee\xea\
+\x27\xf7\xc0\x49\xcd\xaa\xd5\xf8\xf0\x7a\xa5\x3b\x0f\x1f\x3d\x85\
+\xa3\xfe\xd3\x8b\xac\xfa\xa3\x5e\xd1\x13\x91\x41\x3b\x86\x1c\x9e\
+\x96\x3e\x72\x7f\xa1\x41\x7c\x09\x6d\x04\x34\xcc\x3c\x57\xa8\x13\
+\x7e\x02\x89\x7d\x36\x9f\x25\x1f\x95\xaf\x75\xc9\xef\xa8\x3f\xf5\
+\x44\x64\xf4\xe7\x6c\xbf\xd9\x23\xf5\x13\x1a\xac\xfd\x95\xce\x9e\
+\x81\x9f\xc0\x4d\xf9\x54\xff\xf8\xa8\x7c\xad\x6b\x7e\xd2\x85\x27\
+\xb2\x53\xbf\xff\x1c\x88\x6c\xdb\x90\xd2\xd2\x20\x38\x88\xf3\xb0\
+\x29\xcb\x7a\xfe\xc6\x5c\x4c\x29\xd4\xe7\x3f\x27\x52\x12\x5e\x4a\
+\x63\x91\x8f\x63\x70\x51\xf1\x8c\xe0\x9c\x2d\x75\x83\xd2\x25\x67\
+\x23\xcb\xb2\x89\x26\xea\xa6\x44\x88\xd9\xcf\xc9\xe0\x6b\x62\x10\
+\x8e\x97\xfc\x9b\x33\xd4\x9b\x63\x02\x98\xcd\xee\x71\xce\x96\x40\
+\xa0\x74\x45\x87\x4d\x59\x36\xd1\x44\xdd\x94\x42\x7d\x7d\xff\x8b\
+\xc3\xb2\x1c\xfd\x1b\x13\xff\xcd\x31\x01\x76\x17\x7f\xaa\xa5\x6b\
+\x4a\x20\xb0\x24\x54\x96\x47\xfd\xd1\xce\x49\xbb\xac\x49\x6c\xcf\
+\xab\xfd\xfc\x77\xcf\xd8\x12\x33\xfa\xa6\x5e\xb6\xfe\x89\xb6\x05\
+\xfd\x6d\x02\x14\x96\x7c\x9d\xe3\x9f\xb3\x25\x10\x68\xba\x93\x0f\
+\xd1\x65\x9b\x13\x5c\x4b\xc8\x75\xcd\x08\x7f\x15\x95\x27\xbc\x4c\
+\xc3\xab\xf1\x66\x07\x4a\x46\x5b\x87\x9c\x16\x87\x65\x39\xf3\x94\
+\x4d\x24\x9c\xe9\x8b\xa1\x01\x8e\xab\x36\xbb\xbd\xc9\xa8\xa7\xa2\
+\x14\xe1\x65\x1a\x5e\x8d\xd7\xad\x7f\x21\xb6\x27\x21\x47\x38\x11\
+\x03\x3a\x6c\xca\xd2\x4d\xf2\xb4\x62\x7e\xaa\x3b\xfc\x65\x5b\xd1\
+\x6e\x6f\x32\xea\xa9\x88\x0e\x76\x55\x5e\xf3\x3b\xea\x8f\x2d\xcc\
+\xfd\xce\x34\x8d\x04\x7d\x03\x6c\x41\x63\x4b\x43\xcb\x12\xab\x86\
+\x2b\xe6\xc7\xfe\xd3\x7b\xb0\x75\x6e\x24\xbc\x7f\x26\xa3\xfd\x15\
+\xa5\x05\x2f\xd3\x99\x37\x7a\x7a\xe0\x2c\x47\x6c\xb2\x5c\x40\x47\
+\xbe\x65\x39\x0b\xb2\x62\xbe\x69\xff\x27\xdf\xc2\xa2\x30\xb0\x26\
+\xb0\x1a\xb0\xa4\xb8\xa6\xbf\x26\x2f\xee\xce\x2e\xdb\xdb\xca\x68\
+\x9e\x94\xf7\xfa\x97\xbe\x06\x78\xf3\xfa\x4b\x02\xdd\xef\x79\x5b\
+\xbe\xad\x76\x25\x7f\xd4\xaf\x2e\xf8\x38\xf6\xff\xf4\x4c\x51\x43\
+\xca\x71\x1a\x9b\x94\x66\xce\x3d\x58\xf5\x1f\xd2\x4f\x7c\xf4\xe2\
+\xaf\xfa\xc3\x58\x68\xe3\x95\x76\xfe\xc7\xaa\xb6\xcd\xfe\x4e\xc3\
+\x1a\x06\xca\xca\xe9\xc0\xe6\x25\x7a\xa5\xf5\x6a\x7f\x9b\xd1\x48\
+\x48\x5f\x03\x2c\xed\xef\xfa\x1b\x3f\x44\x27\x68\x8d\x68\xce\x10\
+\xc9\xb1\x3f\xa8\x4c\xc7\x51\x0c\xe8\x88\x58\xcd\x6b\x02\xee\x43\
+\x53\x0c\x7c\x83\xd5\x1e\xbd\xcd\x58\x02\xce\x3e\xd4\x34\x47\xc4\
+\x92\xcf\x5e\x3d\xed\x2e\x8b\xa0\x6b\xfa\xf8\x90\x7a\xcd\xbf\xa4\
+\xe3\x1e\x27\xfe\x4a\x8c\x99\xbd\x31\x9c\xa7\x89\x91\x69\x78\x60\
+\x09\x78\xd4\x6f\x8d\xb1\x9e\xb4\xff\xd4\x31\x2e\xe9\xd6\xb1\xff\
+\x71\x5e\xf2\xfd\x7c\x9c\x7f\x3b\x1e\xe9\x1e\x9b\xdc\xaf\x9d\x7e\
+\x3d\xe6\xfe\x6f\x07\x71\x0b\x41\x4e\x60\xcf\x26\xf2\xe3\x21\x77\
+\x8d\xfb\x7f\xfc\x0c\x84\xa4\x4a\x02\xb3\x27\x22\x7a\x60\xd1\x9f\
+\x25\x6c\x72\x78\x5e\xaf\xec\xb0\x11\x03\x5a\x18\xcb\x8c\xce\xdc\
+\x3a\x65\x5f\xe4\x27\xdb\x4c\x67\x1d\x64\xf0\xb4\x86\x16\x6a\xd4\
+\x7c\xf1\x05\x16\x7d\x6a\x75\x94\xbd\xc9\xe1\x69\x39\xf3\x57\xed\
+\x5d\x69\x4c\x23\x48\x4f\xa9\xd1\x91\xcf\x66\xff\x32\x24\x57\xd1\
+\x25\xde\x5a\x3e\x33\x39\xbe\xc0\xe2\x8f\x5a\x37\xe7\x57\xed\x95\
+\xa3\x0d\xb1\x19\x13\xfa\xa8\xdf\x9b\xb3\xb9\xbf\x6a\x22\x7b\x25\
+\xba\xf4\x7b\xb6\xbf\x6b\x72\x7c\x81\x45\xff\xd8\xff\xb1\xc7\xbb\
+\xf6\x47\xfb\xb2\x65\x58\xaf\x77\xf7\x57\x7e\xd9\x2b\xd1\x65\xbf\
+\x2e\xb1\xff\xfe\xab\x4c\xda\x1d\xab\x60\x04\xe9\x05\x14\x2f\x8f\
+\x35\xfd\x22\xd7\xab\x35\x6f\x43\xe5\xc6\xc5\xe2\xe1\xb3\xe8\xc3\
+\xde\x8c\xca\x5d\x23\x50\x80\x4b\xb1\x89\x2d\xf4\x31\x53\x30\x2e\
+\x3c\x29\x40\x0b\x7b\x03\xe7\x1b\xfd\xed\xae\x7f\x2d\x7e\xcd\x89\
+\x3c\x03\xab\xf9\x51\xbf\x6d\xa9\x35\xe5\xd8\xff\x38\x38\xb3\x03\
+\x62\x7c\x78\x52\x81\x16\xf6\xc6\x71\xfe\x4f\x3d\x52\x7f\x6a\xbf\
+\x4a\x7f\x38\x7b\xc2\x27\x19\xf8\x0d\x9c\xa5\x63\xf9\x90\x83\xc7\
+\x9f\x29\x18\x17\x9e\x14\xa0\x85\xbd\x61\xfe\xfc\xef\x81\x20\xab\
+\x1f\x62\xba\xbd\x4d\xd8\x97\x7e\x9c\x04\xa1\x30\xd3\x0f\x5b\xf9\
+\x6d\x23\xd3\x8d\x39\x12\x5e\x9c\x91\x0f\x69\xb0\xc7\x2e\x0d\xf2\
+\xb8\xc6\x23\x7e\xd7\x7f\xca\xe7\xde\xea\xf7\x7e\x5b\x7e\x42\x8d\
+\xd5\xfc\x8f\xfa\x27\x37\xc8\xb1\xff\x76\x68\x8e\xf3\xff\xcc\xdc\
+\xff\x7e\x93\x9f\x99\xee\xf1\xfe\xf7\xcf\x40\x78\x40\x29\xf7\x1e\
+\x0d\xcf\x1f\xd2\xa6\xd3\x9e\xb9\x85\x31\xfb\x0a\xb7\xf8\xab\xaf\
+\x68\xf5\x2d\x99\xe2\xe0\xd2\xc8\x5d\xc3\x6d\xcd\x18\x94\x31\xb4\
+\xb0\x37\x5c\x6e\x82\x2c\xef\xd1\xf0\xc8\x4d\xe8\xa3\x30\x2e\x5d\
+\x7f\x71\xdf\x42\x46\xf4\xb1\x3e\x5b\xb4\xfc\xcc\x40\x34\x2f\xc0\
+\xd0\xc8\xb1\x03\x5d\x9e\xec\xc5\xcf\xba\xd0\xc2\xbf\xf2\x9f\x4b\
+\xfa\xca\x1d\xea\x59\xbb\xac\x4c\xef\x61\xf0\x5e\x7a\x69\x18\x74\
+\x7d\x21\xe3\x17\x6c\x6d\xd7\xe7\xed\xfa\xdc\xe7\x0c\x3f\x3f\xae\
+\x3f\x67\xa8\xf5\x67\x3f\x3b\x5e\x2f\x06\xfd\xe2\x8b\xc3\xf0\xe9\
+\x4f\x0f\xc3\x1f\x08\x3f\x33\xca\xd6\xce\xff\x3d\xed\xbf\x76\x7e\
+\x96\x4f\x61\xbc\x92\xcf\xff\x53\xd4\x2f\x9f\x5b\x87\x5a\xad\x01\
+\x8a\xae\xf7\xaf\xce\xac\xf3\x42\x09\x5a\xd8\x1b\xd5\x5e\x3a\x59\
+\x17\x1a\x94\x5b\x6c\xdc\x9f\x31\xa6\x7f\x0f\x64\xa6\xe1\x6a\xa7\
+\xc9\xac\xfd\xc6\x0a\x8f\x7e\x60\xe4\x34\xd6\x5e\x00\x3a\xb2\x12\
+\x1f\x9f\x5a\xdb\xd0\x72\x69\xe0\xdb\x71\x49\x69\x81\x3f\xb1\x25\
+\x9f\xd0\x6d\x31\x8d\xe0\xa6\x95\x08\xda\xd1\x19\x36\x91\xb3\xd6\
+\x75\x50\x5b\xf8\xbf\x46\xfd\x2d\x77\xe5\x42\x6e\x11\x7f\x52\x73\
+\xc8\xe1\x69\x89\x2d\x28\x06\x35\xbb\x3c\xfc\x6d\xae\x5f\x46\xaf\
+\xd0\xa1\xbd\xe4\x1c\x5f\xa3\x44\xbd\xf8\x7c\xf2\x53\x71\x7d\x72\
+\x18\x7e\xff\x13\xc3\xf0\xbb\xbf\x67\xd7\xbf\x1c\x86\x8f\x7f\x7c\
+\x18\x3e\xf3\x07\x63\x16\x6d\xef\xb4\xbc\xf5\xfe\x5b\xfc\x7c\xbe\
+\x5e\x75\xe7\xff\x89\xeb\x3f\x7b\xee\x74\x10\xee\x70\xff\x27\xff\
+\x8d\x77\x56\x40\x49\xb8\xbd\x18\xc4\xa9\xe6\x61\xd4\x1e\x40\x6a\
+\xb0\x9c\xc8\x4e\x23\x17\xad\x75\xf5\x07\x4f\xf8\x14\xa3\xc6\x57\
+\x8c\xc8\x7d\x53\xb8\x9a\x6f\xf1\xf7\xe4\xf5\xd7\xf8\x4a\x9a\xde\
+\x6e\x29\xa0\xe4\xeb\x26\x8f\xa9\x7f\x4b\xcc\x43\x67\x53\x07\x5e\
+\xf3\x9a\x61\xf8\xd2\x37\x8f\x57\xcf\xe0\xf7\x7f\x7f\x18\x7e\xfb\
+\xa3\xc3\xf0\x6b\x1f\x1a\x86\x7f\xf1\xe1\xf1\xdd\x8b\xeb\xdd\x72\
+\xff\xcb\x79\x7a\xd5\x9d\xff\xa7\xa8\xbf\xb7\xf9\x3d\x1e\xfb\x0e\
+\xf6\x74\x2a\xaf\xe4\xeb\xe2\xc7\xdc\xff\xc5\x9f\xf6\x7f\xf2\xf7\
+\x40\xfc\x2b\x0a\x53\xe2\x2b\x31\x7d\xb5\x01\x4f\xc1\xa1\x17\xe5\
+\xa6\x43\x0c\x4f\x56\x93\x18\x0b\x63\xe6\xdf\xf4\x9c\xb7\xa0\xbf\
+\xca\x26\x16\x28\x83\x4c\xab\xf9\x5a\xc7\x26\xcc\xe2\x1b\x1f\x9e\
+\x9b\x9a\x2e\x35\x6b\x0d\x7d\xb5\xfa\xc9\x3d\x90\xd4\x61\x7b\x39\
+\xb6\x88\x72\x4e\xb5\xa2\xe0\x45\x68\x8a\xe1\x06\x46\x87\x01\xb5\
+\x0a\x35\xd6\xea\x1b\xb5\x8e\xf9\x1a\x1d\x78\xb3\xbd\xb8\xe8\xfa\
+\xfa\x3f\x34\x9e\xc9\x8f\xfe\xce\x30\xfc\xf2\x3f\x1b\x86\x7f\xfa\
+\x2b\xe3\xb7\xc0\x94\xc3\xb5\xf7\x7f\xed\x7c\x94\xe3\x35\xb6\x29\
+\x9f\xc5\xd2\xb8\xd9\xf9\x33\xb9\xf3\xd0\xc3\x36\x50\x40\x0c\xa9\
+\x3c\xeb\xf5\x53\xe6\x26\xb4\xe2\xef\xb1\xfe\xc9\xaf\x32\xe1\x41\
+\x02\xce\x36\x28\x36\x8d\x82\x25\xd7\x00\x2b\xed\xc2\x34\x71\x38\
+\xf0\x2f\x51\xa6\x93\xea\x83\xc8\x59\x83\x2d\x31\x8f\x49\x82\x55\
+\xc1\x13\x38\x85\x22\x17\x50\x66\x6e\x7f\x52\xe9\xd6\x8a\x7b\xa9\
+\x65\x3a\x99\x39\x89\x2f\xfc\x8b\x99\xe9\xaa\xbf\x77\x5d\xcb\xab\
+\x37\xfc\xec\x04\x7a\x02\xa7\x28\xe4\x02\xf6\xea\x3f\x69\x1f\xd4\
+\xb5\x3a\xa0\x7d\x7c\xfb\xdb\xc6\xeb\x5f\xff\x63\xc3\xf0\x81\x0f\
+\x0e\xc3\xcf\xfd\xc2\x30\xfc\xc6\x6f\x4e\x33\xb8\xc6\xfe\xe7\xf3\
+\x0d\x0d\x2a\x9b\x4c\x4f\xb3\x3b\xdd\x4b\x9c\x2f\xc9\x33\x5d\xf5\
+\xf7\xae\x9f\xc5\xfa\xf7\xd6\x78\x4e\xff\x16\xf5\xfb\xff\xc2\xd2\
+\x01\xd5\xa8\x09\x8c\xdc\xd3\xac\xcd\x96\x6a\xdb\x74\x19\x68\x80\
+\x2e\xb4\x35\xa7\xa8\x3a\x34\xbe\xdb\x86\x7c\x4d\xdd\x7d\x6f\x9c\
+\x72\xa8\x16\xde\x98\x6f\x7c\xf3\xd6\x00\x00\x40\x00\x49\x44\x41\
+\x54\x1e\x83\xfc\x0a\xd6\x07\x6c\xf6\xd1\x0b\x7b\xeb\xfa\xd7\xfa\
+\x35\x93\x5f\xb8\xfe\x5e\x4f\x0e\xde\x75\x3b\xa0\x6f\x7d\x7d\x9d\
+\xbd\x2b\xd1\xf5\x1b\xbf\x35\x0c\xff\xe0\x1f\x0d\xc3\x87\xe3\x85\
+\xe4\xa9\xf7\xff\xd5\x7e\xfe\x2f\x5d\xff\x9e\x93\x93\x9f\x4d\xda\
+\x67\x8d\xcc\xd3\xfa\x16\xfb\xff\xbc\x02\xb7\xa1\x8c\x34\x84\x76\
+\xf9\x32\xd0\xe9\x10\x49\xc5\x07\x95\x08\x33\x8d\x38\x78\x7a\x50\
+\xf3\x22\x05\x4a\x25\xfb\xcc\x74\x98\xef\x86\xec\x23\xd3\x9b\x1d\
+\x65\x23\xa3\x7d\x19\x98\x45\xcd\x5f\xae\x39\xd3\xa1\x40\xad\xaf\
+\x84\xfa\x5b\xcd\x07\x71\x37\x1d\x78\xf7\x3b\x87\xe1\x87\xff\x9d\
+\x61\xf8\xa1\x1f\x1c\x86\x7f\xe5\xcb\x2e\x70\x3f\xe5\x43\x1e\xe7\
+\x9e\xe7\x40\x16\xb5\x06\xe4\x33\x9f\xe9\x50\x78\x25\x9d\xff\xa7\
+\xa8\xbf\xf5\xf1\x42\x44\xce\x31\xd3\x9b\xdd\x67\x23\xa3\x7d\x19\
+\x98\x45\xcd\x9f\xed\xb9\xbf\x80\xe8\x95\x55\x97\x5e\x04\xc0\xc9\
+\xcb\x99\x64\x3d\x0f\x99\x87\x4e\x42\xf7\x65\xeb\xe6\x3f\x68\xf7\
+\x25\x3d\x0d\x30\xd3\x99\xe7\x4a\x1b\x27\xec\x84\xbd\x2b\xc7\x90\
+\x4a\xe8\xb7\xfc\xee\xa9\xfe\x5c\x4b\x94\x3f\xcb\x37\xd5\xe0\x2a\
+\xd9\xe6\xd2\xf5\x47\x0e\x07\xdc\x5f\x07\xde\xf7\x9e\x61\xf8\x0f\
+\xff\xdd\x61\xf8\xee\xef\x18\x86\xd7\xe8\x8e\xee\xed\x7d\x3e\x1b\
+\x51\xc2\xec\x3c\x1d\xe7\xff\x7a\xcf\xbf\x07\x1c\xa3\xd9\x7e\x69\
+\xab\xd9\x57\xf9\x83\xbe\xe2\xfe\x3f\xef\x2f\x14\x76\x70\xf2\x8b\
+\x87\x92\x22\x31\x50\xf9\xcd\x12\x94\x9d\x92\x0d\x7b\xa9\x38\xed\
+\x44\xa2\x97\xe4\xe8\x05\xe6\xfa\x8b\x68\x75\x49\x9e\xa0\x1b\x28\
+\xae\x06\xf1\x57\xd0\x6d\x4d\x47\x88\x1f\xd0\xfd\xe4\x04\xa9\x1b\
+\xcc\xb1\x5c\x39\xe2\x8a\x26\x2e\xb4\xb0\x33\xaa\x7b\xf5\xd6\x79\
+\x9a\x74\xc9\x0f\x18\x79\x8a\xb7\x98\xaf\xf4\x35\x84\x1b\x2e\xaf\
+\xf5\x9c\x3f\x77\x76\x4c\xf7\xd8\x81\x17\xec\x5b\x5b\xdf\xf3\x5d\
+\xc3\xf0\x17\x7f\x68\x18\xbe\xec\x4b\x23\xc3\x4b\xef\xbf\x1f\x46\
+\xf3\xbd\x70\x1e\x3d\x2a\x31\xb5\x80\x16\x66\xda\x15\xe7\x53\x75\
+\xaf\x38\xce\x5b\x88\xb7\x7a\x5e\x73\x4c\x72\x38\x83\xab\xfe\x6a\
+\x82\xf2\x25\x1e\x3e\x55\x92\x68\x06\xf4\x92\x1c\xbd\x2d\x48\x1c\
+\xd0\x7c\xae\xe6\x5b\xe3\x93\xc7\x02\xae\xfa\xeb\xd4\xff\xbc\x6f\
+\x92\x09\x64\x2c\xbf\xa0\xc7\xb6\x09\x6c\x8d\x71\xc6\x58\xb1\x07\
+\x0c\x1b\xd1\xf2\xdf\x50\x2a\xc1\x1b\x05\xa3\x1c\xde\x44\x57\x7a\
+\x76\xe9\x2d\x2f\x28\xf3\x3d\x43\x69\xc9\x27\xd8\xf3\xef\xb1\x5d\
+\x30\x2a\x2b\x16\x3c\x8f\xab\xa5\xf1\xe4\x43\x97\x26\x70\x24\x10\
+\x48\x38\xea\x82\xb2\x73\x77\xa0\x0b\x46\xde\x28\x38\xd1\xae\x17\
+\xf6\xcd\xc6\x88\x5c\x7f\x7e\xfb\x2f\x57\x1a\x9e\x6f\x20\x79\x82\
+\xca\x53\xbe\xc0\xe6\x37\xe9\x53\x6b\xcb\xc7\x95\x46\xbf\xf8\x01\
+\xa9\x1b\x34\x37\xc7\x78\x06\x3a\xf0\xb6\xb7\x0e\xc3\x7f\xf0\xe7\
+\xc7\xcf\x48\xb4\x97\xed\x1c\xa4\xbd\x7e\xd0\xfe\xfb\x41\xb0\x06\
+\x80\x46\xca\xbf\x86\xc7\xc9\xb1\xc4\x73\xc1\x09\xc5\xc8\x3c\xd1\
+\x35\xbf\xbb\x3e\xff\xd4\x0d\x46\xfe\x5e\xa6\x6a\x8b\xfa\x1a\xae\
+\xd4\x2f\xf1\xde\x21\xdf\x1a\x1e\xc3\x68\xa5\x22\x5a\xe8\x74\x42\
+\xa9\xb6\x5c\x6c\xe1\xb6\x09\x7d\x3f\x5c\x69\xd9\x9f\x9c\xca\x6f\
+\x0b\x00\x2d\xb4\x21\x9f\xcf\xcb\xc7\xd6\x04\x3c\xa1\x48\x42\xb4\
+\x27\x1d\xe8\x81\xc2\x97\x9c\xf7\x46\xd6\xc9\x34\xba\x5e\xa4\x2d\
+\x40\xf8\x5b\x31\xfb\xcc\x34\xf6\xaa\x55\x43\xa8\x4b\x3a\x60\xa6\
+\x91\x7b\xbd\xd2\x31\x46\xef\x72\x1b\x93\x09\x75\x69\x80\xe3\x6a\
+\x3a\x23\x5b\xd2\xa7\x6e\x62\xc9\x1a\xde\xd4\x53\x7f\xb5\xea\x3f\
+\xcc\xa8\x4f\xfa\xa2\xc9\x07\x1a\xb9\xe7\x21\x1d\x31\x8e\xf1\xcc\
+\x74\xe0\x75\xaf\x1b\x86\x3f\xf7\x03\xc3\xf0\xc7\xed\x1d\x09\x67\
+\x42\xc9\xb3\x8d\xec\xef\x9e\xfd\xe7\x4c\x66\x74\x7b\x73\xc6\xf9\
+\x51\x8c\x1c\x4f\xeb\x3c\x90\x2d\xe9\x73\xce\x88\x21\x5b\x78\xd9\
+\xcf\x12\xbd\xea\x3f\x0c\xef\xa1\xfe\xa5\x1a\x1e\xc3\xbf\x45\xfd\
+\xe3\x67\x20\x96\xb5\x9a\xaa\x04\xc0\x9c\x4c\x2b\x2a\x33\x8d\x96\
+\xae\x8c\xd8\x10\x11\xce\x0b\x06\x74\x2c\xc7\x87\xb0\x62\x18\x83\
+\x83\x01\xb6\x18\x0f\x24\xdc\x27\xbe\x85\x76\x29\x5d\x30\xa7\x6e\
+\x6c\x1f\x92\x69\x08\xd1\x03\x7b\xfa\xed\xee\x90\xd0\x2e\xb7\x0f\
+\x74\xda\x26\x50\x04\xb4\xd0\xaf\xe0\x6d\xad\x9f\xde\x2c\xe9\x57\
+\xf9\x24\xc6\x98\xa2\xc7\x8d\x74\x8d\x33\xf6\xc4\x09\x9b\xa4\xaf\
+\xe1\x76\x86\xd2\x13\xbd\xa4\x6f\xa2\x63\x3c\x43\x1d\xf8\xee\xef\
+\x1c\x86\xef\xfb\x93\xf6\x55\xa2\x6d\xa8\xf6\x54\x03\x14\xbd\x7b\
+\xff\x31\x16\xda\xe5\xf6\x81\x4e\xdb\x04\x8a\x80\x16\xfa\x15\xbc\
+\xa5\xf3\xac\x9c\xf2\xa8\xe7\x5b\x32\x78\x99\xc6\xdf\x24\x86\x29\
+\x28\x4d\xf1\x22\x5d\x99\xdc\x4d\xfd\x9e\xcc\x8e\x89\xba\x41\x99\
+\x42\xdf\xb2\xfe\xf1\x27\xd1\xd5\x65\x25\x34\x42\x43\x3f\x24\xec\
+\x00\x0a\xec\x8a\xd6\xd0\x42\x8d\x8a\xd8\xe2\x58\x3a\x99\xd6\xfa\
+\x82\x43\x8d\xf4\x94\x52\x8c\x44\xba\xd0\x9b\x4e\x9e\x12\xba\xc1\
+\x98\x04\xba\xa0\x64\xe7\xf4\x9b\x2d\xfe\x2a\x16\xff\x1e\xa5\x39\
+\xdf\x50\x78\xf5\x27\x13\x78\x1d\xf3\x27\xaf\xbf\x13\xf3\x60\xdd\
+\x77\x07\xbe\xf9\x5f\x1d\x86\x2f\xfe\xa2\x61\xf8\xeb\x7f\x73\xcc\
+\xf3\xdc\x79\xe6\x68\x82\xc7\xf9\xbf\xf1\xfd\x9f\x8f\x16\xf7\x3d\
+\x98\x65\x41\x3f\xf9\xfd\x5f\x9f\x67\x96\x8b\x7f\x06\xe2\x0f\x25\
+\x5b\xf8\xc1\x09\x74\xda\x26\xd0\x09\x25\x2f\x86\x50\x7a\x41\x0b\
+\x9d\x96\xd8\x0d\x8c\x10\x3d\x82\xa3\xd3\xe1\x1b\xfb\xe6\x4b\x42\
+\xbb\xdc\x16\x0c\xdb\xad\x20\x17\xfe\x3d\xd4\x40\xff\x0c\xc1\xe2\
+\x81\x1e\xd3\x95\x4c\x41\x98\x69\xea\x31\xb6\xd7\x15\x62\xcf\x49\
+\xbc\x25\xfd\xf0\xf1\x14\xf5\x4f\x7a\x41\x7c\x72\x11\xda\x10\x5b\
+\x03\xf1\x93\xd6\x3f\x86\x3a\xe6\x67\xb0\x03\xfa\x99\x91\x1f\xf8\
+\xbe\x38\x28\x3a\xeb\xed\xc0\x24\x5e\xba\x37\x11\x4b\x4f\xf4\xa2\
+\xbe\x84\xb2\x93\x9e\x2b\x9e\x10\x33\xd0\xc5\x29\x46\xef\x7e\xcc\
+\x67\x3e\xd3\x2d\x3e\xce\x84\x36\x22\x64\x13\x3f\xe9\xf9\x57\x30\
+\x7a\x27\x8c\xba\xc1\xdd\xf5\xab\x80\x3d\x23\x17\x1b\x76\x99\xe5\
+\xe9\x45\x7f\xd5\x07\x9e\x7b\xe0\x24\x77\x29\xbb\x41\xc2\xb0\xf5\
+\x7a\x82\x2d\x1d\xa9\x9d\x1a\x5c\xf4\x4d\x38\x79\x07\x62\x3e\x5c\
+\xd9\x31\xe9\xba\x93\x90\x09\x46\xaf\xd1\x4f\x13\x36\xfd\xa0\x69\
+\xa6\xf8\xa2\xb7\xca\xd1\x03\x3d\xd6\x9e\x89\x44\x03\x05\x9e\x43\
+\xf8\x70\x3a\xe5\x43\x1d\xa0\xc7\x4d\xf2\x6a\x8f\x1e\x58\xfd\x51\
+\xeb\xa5\xea\xaf\xf1\xa9\xc5\xf3\xec\xf5\x45\x06\x1a\x81\x5d\x7b\
+\x63\x36\xfb\xa2\xef\xfc\x24\xaf\xf6\xa3\xf3\x63\x7e\x16\x3b\xf0\
+\x8d\x7f\xc4\x7e\x13\xb0\xfd\x82\xc6\xbf\xf5\x77\x1f\xb1\xff\x9d\
+\xf3\xc2\x99\x57\x4f\xa0\x5f\xb1\xe7\xff\xc2\xf5\xef\x39\x47\xf9\
+\x5e\x6c\xf7\x6f\x75\x50\xf2\xcb\x36\x52\x95\x1d\x7b\xe4\xa6\x45\
+\x7f\xf5\xfe\xef\xe8\xbf\x00\xcf\x1d\xd6\xc9\x84\xfc\xc2\x34\x17\
+\x79\x06\x46\x2d\x56\x30\x75\x80\x6f\x50\xd2\x4c\x4f\xb5\x47\x19\
+\x21\xaa\xec\x12\x6b\x62\x83\xab\x3e\x4d\xf1\x96\xf5\xd3\x0b\xda\
+\xfd\xb2\xfd\x3a\x71\xff\x2a\xcb\xd0\x87\x09\xc4\x7b\xcc\x7e\x84\
+\xa7\x3e\xd4\xfa\xfb\x5a\x07\xf7\x19\xe9\xc0\xb7\x7f\xcb\xf8\x5b\
+\x7f\x7f\xea\xe7\x36\x26\x5c\xf7\xbf\x1e\xc8\x15\x37\xdc\x67\xa0\
+\xd4\x33\x5d\xcd\x25\x23\x84\x64\xd0\x42\x8d\x9b\x9f\xff\x9a\xd0\
+\x98\xd6\xe2\x4c\xad\xa0\xd7\xb0\xa8\x7d\x5e\xe0\xa1\x6f\x7d\xff\
+\x77\xea\xf7\x0f\xd1\x49\x9d\x8d\x12\x3a\x6d\x13\x38\x12\x08\x46\
+\x0b\xbe\xd2\x10\x66\x7a\xd1\x9f\xe9\xb9\x3f\x75\x54\x36\x52\x0c\
+\x14\x2d\x19\x28\xd1\xde\x91\x73\x10\xed\xfe\x02\x3d\xae\x39\x04\
+\x7b\xbe\x91\x09\x9d\xb6\x09\x6c\x86\xce\x18\xad\x6b\x3c\x71\xe1\
+\x89\x46\x55\xe8\x74\xe4\xe2\x45\x1a\x6d\xff\x16\xeb\x97\xbe\xe4\
+\xa0\xeb\xda\x02\x9c\x38\x97\x1f\x1b\xc4\x16\xea\x72\xdb\x40\xd1\
+\x1a\xe0\xb8\x9a\xce\xc8\x84\x4e\xdb\x04\x4e\x35\x8f\xd5\xb3\xda\
+\x81\xef\xfd\x9e\x61\x78\xef\xbb\xfb\xd9\xfb\x5e\x9b\x48\xc8\xbe\
+\x83\x23\x03\xc1\x68\x5f\xcf\x9b\xb8\xf0\x44\xcf\xfc\xc5\x59\x7c\
+\x26\xcf\x7f\x2e\x46\xc5\xd9\xa0\x56\x61\xa6\x47\xe9\x4a\xfd\x28\
+\x6d\x44\x0b\xe1\x0e\xc1\x49\x73\xc3\x47\xce\x41\xb4\x52\x06\x3b\
+\xe9\x87\xd5\x09\xb2\x8e\xd3\x36\x81\x4b\xf1\xc6\xcf\x40\x16\x12\
+\xd0\x46\x7b\x52\xca\xda\x33\x4f\x28\x9b\x1a\x51\x3a\xe2\x85\xbe\
+\x9b\xd8\x14\x4b\x59\x34\x37\xbe\x28\x53\x6e\x40\x11\xad\x2f\x15\
+\x84\xd8\x42\xbb\x3c\x7e\xa0\xd3\x36\x81\x2d\x11\x67\x8c\xee\x73\
+\x7c\xea\x06\x7b\xfa\x4f\x59\x3f\x71\xc1\x6e\x7c\x72\x17\xea\x7a\
+\xca\xfa\xc7\x16\x1d\xf3\x33\xde\x81\xe7\xed\x4b\xc6\x7f\xeb\xdf\
+\x1c\x86\x37\xbd\x31\x0a\xe1\x0c\xd9\xd2\xcf\x5a\x20\xe7\x0e\xec\
+\x9e\x3f\x9d\x37\x0d\x61\x3e\x7b\x71\x1e\xdd\xb5\x4d\xb1\x74\x55\
+\xe7\x39\x35\x9f\x76\xc7\xc7\x19\x01\x72\x0e\x46\xbb\x38\xd0\x69\
+\x9b\xc0\x5e\x3d\xbb\xe3\x2b\x9e\x86\x50\x97\x9c\x83\x29\x96\xd8\
+\x1e\x37\xa1\x91\xfb\x46\xcf\x41\xe6\x89\x26\x76\xe4\xe3\x62\xa3\
+\x85\x4e\xdb\x04\xf6\x12\x7a\x48\xfd\x93\x77\x20\xab\x15\x79\xf4\
+\xc8\x46\x74\xbd\x4a\x01\x2e\x87\x27\x5d\x68\x61\xa6\xf1\x63\xec\
+\x56\x98\xe8\x47\x8e\x59\x43\xcc\x1f\xbc\x07\xb9\x56\x9e\x1a\xe4\
+\x5b\x31\xd7\x94\x69\xf4\x32\x2f\xd3\xc8\xf1\xed\x41\x6c\x92\x8e\
+\x86\x30\xd3\xce\x5c\x9f\xa8\x55\x98\xe9\x75\xcb\x43\xe3\x95\xdc\
+\x81\x37\xbe\x61\x18\x7e\xd0\x7e\x4e\xc4\x3f\x60\xdd\x53\xa8\xce\
+\xa9\x06\xe7\xb5\x62\x3e\xd3\x99\x46\x2f\xf3\x32\x8d\x1c\xdf\x1e\
+\xc4\x26\xe9\x68\x08\x33\xed\xcc\xf5\x29\x9f\xf9\x4c\xaf\x5b\x2e\
+\x68\x28\x4f\x0d\xf2\xad\x98\x6b\xca\x34\x7a\x99\x37\x7a\xda\x3e\
+\xdf\x69\xfd\xfe\x02\xb2\xf4\x80\xa9\xfd\xa2\x77\x54\x5d\xe5\xee\
+\xc7\x84\xf8\xf3\xbe\xd9\xe4\x18\x46\xd8\x64\x5f\x4b\x72\xe2\x6c\
+\xc5\x7c\x48\x44\xfb\x7e\x05\xf6\xfa\x5f\xf5\x3d\xa7\x94\x20\xa4\
+\x30\xd3\xe4\x93\x79\xae\x63\x53\xc3\x4c\x6f\xb4\xf7\xf8\x38\x97\
+\x8d\x9c\x05\x8a\xae\x17\x32\x57\x0a\x3d\x78\xd2\xbd\x64\xfd\xc4\
+\x38\xf0\x95\xd1\x81\x77\xd9\x2f\x62\xfc\xae\x6f\x1f\x6b\xe1\x5c\
+\x69\x25\x9a\x01\x29\xcc\xf4\x92\xdc\xfd\x48\xd7\x94\x27\xf4\x46\
+\x7b\xf9\x25\x8e\xd3\xb1\x68\xfe\xf0\x1b\x98\x75\x32\x8d\xfe\x25\
+\xcf\x3f\x79\x81\x1e\x4f\x93\x0d\xf1\xfc\xb2\xa9\x61\xa6\x43\x8e\
+\xae\x70\xef\xa0\xa6\x8c\xf2\xa1\x35\x03\x1a\x9d\x6b\xd4\x3f\x79\
+\x07\x42\x2e\xde\x84\xc8\x0a\x1e\x49\x9e\xc3\xfc\x90\x16\x5d\x2f\
+\x15\x46\x51\xb9\xd8\x73\x3e\xaf\x29\xa3\xd6\x7b\xa9\xbf\xf6\x53\
+\xbd\x80\xf7\x14\x7d\x79\x6c\xfd\x4f\x91\xd3\xe1\xf3\xe9\x3a\xa0\
+\xdf\x9d\xf5\x76\xfb\xd5\x27\x8c\xc7\xee\x3f\x67\x53\xd8\xbb\xf6\
+\xde\xff\xd5\x9f\xf2\x84\x47\xce\x97\xc4\x6b\xd6\xbf\x37\x6f\xea\
+\x06\xf7\xda\x6f\xd1\x7f\x48\xfd\xcf\xf3\x20\xdf\x14\x20\x22\xc8\
+\xc6\xed\x12\xea\xa5\xd7\xc5\x81\xa2\x5d\x0f\x74\xe1\xf4\x15\x93\
+\x66\x08\x75\x49\x05\x34\x72\xd7\x50\x2c\xb7\x0d\xc4\x0f\x28\xdf\
+\x6b\xf9\xac\x05\xf4\x9a\xf1\xe3\x0e\xa3\x1e\x68\x39\x30\x3a\x96\
+\xab\xf1\x94\x9b\x86\x90\x3c\x41\xf7\x81\x2f\xa1\x18\x36\xc0\x4c\
+\x7b\x5d\x26\x77\xdb\x40\xfc\x80\x32\x77\x3d\xb0\xe3\x4f\x3e\x8f\
+\xf1\xea\xe9\x80\xfe\xb6\xc8\x9f\xf9\x7e\x3b\x37\x3a\x24\x1b\x06\
+\x67\x8f\xf3\xe6\x67\xdd\x0f\x96\x19\x1b\xfa\x91\x0a\x74\x36\xb4\
+\x50\x0c\xa9\x05\x8a\x26\xac\x90\x73\x0a\x4a\xcd\xe3\x80\x1d\x7b\
+\x7c\xb9\x9e\xc9\xdd\x36\x10\x3f\xe0\x16\x7f\x16\xea\xec\xa8\xf1\
+\x1e\x5b\xff\xd9\x60\x45\x98\x63\x23\xca\x3c\xd1\xb7\xa8\x7f\xf2\
+\x0e\x64\x3c\x01\x96\x9e\x77\xbb\x83\xec\x86\xb0\x77\xa9\x32\xf1\
+\x19\xd0\xe8\x8a\x0f\xcf\xc8\xda\x00\x89\xe1\x89\xde\x35\xcc\xaf\
+\xd2\x96\x7f\xd2\xd7\xd2\x79\x22\xb6\x0c\x94\x71\x50\x51\xb9\x8b\
+\x27\xec\x5d\x8a\x21\x3e\x03\x1a\x5d\xf1\xe1\x19\x49\xad\xc2\x4c\
+\x63\xbe\x8a\xf8\x0a\xff\x4a\x4d\xfe\x49\x5b\x4b\xe7\x89\xd8\x32\
+\x50\xc6\x41\xc6\x2d\xf6\x87\xce\x33\xd7\x81\xb7\xbe\x65\x18\xf4\
+\xd3\xea\x3e\xce\xed\xbf\x64\x3a\x67\x60\x9c\x39\xe7\x41\xcb\x89\
+\x68\x06\xf4\x82\x3c\x9f\xf9\x4c\x63\xbe\x8a\xc5\xbf\xa7\x6f\x3c\
+\xa1\xd3\x09\x57\x7d\x49\x21\x1b\xe1\x24\xa3\xe2\x69\x4d\x3d\x15\
+\xe5\x43\x3c\x06\x34\x7a\xe2\xc3\x43\xe7\x31\x88\xaf\xf0\xef\xe9\
+\x1b\x4d\xca\x72\xed\xbc\xad\x31\x50\xc6\x41\x45\xc5\x11\x2f\xe2\
+\x09\xc7\x17\x10\x14\x8b\x82\xd8\x52\x42\xac\xa5\xf3\x44\xd8\xc8\
+\x9b\xee\xb4\x09\x41\x29\x42\x0b\x33\xdd\x1c\xd6\x78\x72\xae\x78\
+\xc2\x87\x0c\xec\x84\x76\xe5\x98\xf8\x04\xdd\x7d\xd1\xf7\xc6\x88\
+\xa7\xbc\xa2\x6e\x30\xab\xba\xad\x4d\xf8\x12\x3a\x9d\xb0\x1b\xbf\
+\xc8\x67\xf1\x14\x24\xea\xcf\xbe\x17\xe3\xa5\x1c\x5c\x47\xf6\x1a\
+\xc2\x14\xab\xe5\x27\x36\x3a\xe8\x81\xe2\xab\x6e\xb0\xd4\x2f\xb5\
+\x63\xbc\x32\x3b\xa0\x3f\x93\xfb\xba\xd7\x5a\x6d\x67\xf6\x9f\x63\
+\x03\xaa\x13\x9c\xa5\x76\xbe\x4c\xe8\x3c\x29\x25\x7a\x49\x3e\x8b\
+\x27\xbb\x3b\x3d\xff\x4a\x4d\x03\x74\x3a\x16\x4b\xf5\xd1\x8b\xae\
+\xdc\xbd\xed\x9b\xdc\x9f\x72\xb0\xb8\x99\x6e\x5e\x48\x4e\x88\x4e\
+\xe0\x16\xfd\xd9\x7e\xc8\x71\x3c\x07\xb2\x6b\xe2\xc9\xe7\xf8\xf7\
+\x40\x82\x93\x83\x88\xf6\xf3\x14\x98\x69\xc9\x7a\xf2\x88\x87\xff\
+\xf6\xd6\x58\x6f\x91\x79\x9b\x0c\xba\x92\xf9\x69\x98\xe9\x60\xef\
+\x81\x9c\x3b\x76\xc4\x6a\xf1\xc9\x43\xc5\xe8\xd2\x00\x8d\xcc\x3e\
+\x7a\xf5\x65\x5e\xa6\x17\xdc\x4d\x6a\xce\xb9\x78\x5c\x4d\xb9\xe6\
+\x4c\x37\x85\x29\x41\xaa\xc4\xcb\x39\x88\xd6\x00\x45\xe7\x98\x4e\
+\x9b\x21\xd8\xea\xc6\x69\xb2\x95\x8f\xec\x3b\xa9\xc8\xed\x31\x5e\
+\x61\x1d\x78\x83\xfd\xaf\x2c\xfd\x31\x2a\xce\x4e\x6f\xff\x75\x06\
+\xf2\x99\xc8\xb4\x64\x9c\x11\x50\x2d\x9a\x9d\xbf\xc4\x93\xfc\x59\
+\x3a\xff\x4f\x52\xbf\x37\x61\xfb\x44\x6f\x85\xbd\x7c\xe4\x89\x3d\
+\x14\x3d\xeb\xbf\x19\x3d\xf4\xfe\xef\xc5\x13\xcf\xff\x26\xba\x82\
+\x31\x78\x8e\xb1\xce\x28\x03\x0d\x50\xba\xee\xd8\xb9\x9d\x09\x67\
+\x4b\x88\x71\x38\x2c\xcb\x8e\xc3\x65\x56\xb6\x25\xdc\xe4\x80\x2e\
+\x99\x36\xe5\x51\xa1\x2c\x27\x56\x91\xe6\xd5\xea\x57\x2e\xd4\x35\
+\x49\x24\x16\xc8\xc8\x6b\xa6\x4f\x31\x60\xcf\x49\x91\x95\x65\xcf\
+\xe2\xe0\xbd\x02\x3b\xf0\xad\xdf\x6c\x7f\x5f\xfd\xa7\x86\xe1\xb3\
+\x9f\x5d\x2e\x8e\x73\x06\xea\xac\x70\x06\xbb\x56\x1c\xa6\x25\xc4\
+\x38\x1c\x96\xa5\xdf\xbe\xf0\x7a\xfe\x91\x85\xf9\x5c\xbf\xc6\xed\
+\x39\x41\x27\x64\x65\x39\xb1\x20\x0e\x28\x5d\x72\x98\x28\xb2\xc0\
+\xd9\x12\xa2\xb7\x01\x71\x91\x55\x89\xbd\x98\x0f\x46\x60\x36\x86\
+\x2e\xb2\xb2\x44\xcb\x91\x38\xa0\x74\x27\x3f\x48\x38\xd1\xb6\x05\
+\xaf\x66\xc2\xde\x25\x7d\x74\xaa\xad\xd6\x04\x12\x3a\x6d\x13\xd8\
+\x3a\x2f\x86\x32\x51\x0c\x83\x86\xa2\x1f\x3b\xdc\xa1\x39\x09\xff\
+\x33\x94\x7f\x74\x3a\xb1\xa8\xad\x57\x7b\x96\x75\x4c\x9d\xe5\xb5\
+\x1a\x25\xa4\x6e\x70\xad\x7e\xa5\x25\x5d\xd0\xed\xf0\x63\xb8\x69\
+\x50\x9b\xb0\x77\xc9\x09\x3a\x1d\x87\x5b\x6a\xec\x98\x1d\xac\x67\
+\xb0\x03\xaf\xb7\xbf\x21\xf2\x2d\x7c\x16\x12\xf9\xe7\xfd\xef\xdd\
+\x03\x52\x43\xa7\x57\x72\x3e\xb3\x9c\x7b\x70\x72\xb8\xe3\x6c\xfa\
+\x51\xb4\x29\x96\x13\x95\xec\xab\x17\xab\xcb\x73\x87\x4a\x72\xe1\
+\x92\x11\x3a\xa2\xcb\xa0\xb6\x5e\xed\x59\x56\xcc\xda\x32\xe7\x4c\
+\xdd\x60\x53\xda\x48\x64\x5f\x1b\x4d\x4e\xb5\x3d\x61\xfd\x93\x6f\
+\x61\xcd\x12\xcb\x59\x8b\xae\x97\x12\x13\x6f\x21\x41\xdf\x1b\x9b\
+\x10\x8b\x80\xe7\x04\xb6\xf8\x95\x10\x9e\x91\x7b\x46\x77\x43\xe5\
+\x4b\x03\xff\x15\x91\xb9\x52\x67\x5a\xb3\xcf\xf9\x8a\x2e\x97\x96\
+\xd4\x9c\xe9\xa6\x27\xff\x12\x90\x17\xb4\xd0\x2e\xaf\x29\xb0\x57\
+\x5f\xe6\x65\xda\xac\xc7\xb1\x96\xbf\xb4\xd0\x09\x93\x09\x20\x03\
+\x27\xc2\x63\xf1\x4a\xeb\xc0\xfb\xbf\xd5\x8e\x43\xde\x6b\x68\x61\
+\xef\x2a\xe7\xb5\x9d\x6b\xce\xaf\x1a\xa4\xf3\x3b\x42\xa3\x1b\x43\
+\x3e\xf1\x91\x69\xec\x13\xf6\xce\x77\xe6\x65\x5a\x61\x7d\xc8\xa7\
+\x46\x2f\xf7\x2c\x1b\xb5\xe6\x73\xd6\xe9\xf9\x20\xf7\xc8\xb3\xd5\
+\x45\xde\xf2\x68\x34\x62\x68\x67\xcc\xa3\x9d\xe5\xf4\xea\xcb\xbc\
+\x4c\x37\x47\x6b\xf9\x4b\x11\x9d\x66\x94\x08\x64\xbd\xda\xc5\xb3\
+\xc2\x5e\x68\x45\x85\x2f\x15\x8b\x9d\x13\x89\xa1\x24\x75\xc0\x48\
+\xd6\x7d\x88\x47\x4c\x67\x24\x07\xd8\x0a\x19\x3d\x1a\x5e\xb5\xc7\
+\x66\x23\x7a\x7e\xa6\x3b\xc9\xcf\xd6\x2d\xbf\xe2\xa7\xa6\x37\x0b\
+\x5f\x18\x57\xaf\xbf\x26\x58\xf2\xaf\xcb\xa7\xae\xbf\xc6\xbb\xf6\
+\xfa\xc5\x17\x87\xe1\xc7\xff\x2f\x8b\xca\x86\x96\xfe\xb0\x6c\xf2\
+\x9d\x09\xe2\x56\x67\xdc\x2f\xfb\x2f\x26\xe2\x3d\x6f\xff\xdd\x55\
+\xbf\x02\x44\x97\xfe\xf6\xf8\x0b\xf6\x3b\xac\x5f\x6b\x1f\x3a\xbf\
+\x5e\x97\xfd\xad\x8d\x37\x7e\xb1\xfd\x6a\x90\x37\x0d\xc3\x97\xd8\
+\x25\x9d\x67\x75\xbc\xf9\x4b\x86\xe1\x0f\x7f\xcd\x30\xfc\xea\x3f\
+\x8f\x0a\x54\x7c\x6b\xea\x78\x5f\x5d\xf5\xfe\x27\xb6\x70\xc3\x78\
+\xea\xf3\x7f\xf1\xfb\x7f\x43\x4d\x7b\x54\x6e\x51\xbf\xff\x36\x5e\
+\x1d\x0a\x8d\x59\x83\x6c\xe3\x7c\x0f\x63\x03\x5d\xcf\xe8\xad\xfa\
+\xd8\x86\x79\x7b\xf1\x59\xb2\xf7\x60\x9e\x88\xa7\xb3\x6b\xf2\x58\
+\x56\x07\x35\xb8\x31\xb9\x46\x02\xae\x63\x82\x58\xae\xe6\xf3\x9c\
+\x29\xba\x4d\x18\xdc\xa4\x7e\x92\xb5\xbc\x6b\x3e\xe4\x86\x8a\xf2\
+\x7b\xca\xfa\x77\x6d\xc8\x13\x28\x7f\xfa\x33\xc3\xf0\x0b\xbf\x3c\
+\x3e\xd4\xe5\xde\xeb\x0f\xd4\xba\x57\xbf\xbf\x02\x44\x83\xd6\xf4\
+\xe9\x9d\xd0\xfd\xd9\x84\x4d\x8f\x51\xf5\x5f\x63\x2f\x1e\x6f\xf9\
+\x8a\x61\x78\xd7\x3b\x86\xe1\x7d\xef\xb1\x5f\x5a\x68\xd7\x1b\xec\
+\xc5\xe5\x59\x1a\xfa\xb5\xef\xff\x4f\xbc\x80\xd4\xf3\xf6\x6a\x3f\
+\xff\x97\xae\x7f\xcf\xb9\xf0\x73\x68\x13\x28\x5b\x68\xa1\x46\xef\
+\xfc\x93\xb3\xe4\xae\x1f\xa8\x75\xd5\xaf\xe7\x79\xcb\xfe\xbf\xe0\
+\xaf\x1d\x91\x01\xb4\x63\x27\xa0\x67\xa0\xc8\x49\xdf\x83\x8a\x67\
+\x63\x96\x60\xe2\xb9\xdc\x14\xe4\x9b\x1b\x14\x9e\x50\xc3\x65\x81\
+\xce\xd8\x39\xe1\x17\x74\xf3\xc8\x55\xf4\xcc\x7f\xe4\x93\xeb\x11\
+\x7d\x2f\xf5\x2b\x75\x72\xf6\x5a\x56\x26\xea\x06\x5d\xfd\x92\xf5\
+\xaf\xc4\xbf\xb5\x98\xba\xc1\x8b\xd7\x4f\x2f\x03\x7d\x6f\x8c\xe6\
+\xbc\x7c\xc1\x7e\xdd\xf6\x47\x7f\x67\x18\x3e\x62\xd7\xcf\xfe\x93\
+\x91\xff\x16\xfb\x39\x8b\x6f\xfa\x86\xf1\x67\x2d\xbe\xc8\xde\xad\
+\xdc\xfb\xf8\xda\xaf\xb6\x77\x55\xf6\x79\x88\x3e\x4c\x57\x99\x93\
+\xf3\xb7\x52\x7f\xd5\xc7\x96\xfe\x68\x5f\x9c\x87\x1f\xf3\x9f\xf7\
+\x6a\xa6\x5f\xe3\xaf\x34\x0f\x5f\xa0\xab\xa7\x58\xd5\x7f\xbb\xd7\
+\x43\xc7\xf3\x8c\x1c\x65\x2b\x36\x36\x13\x5f\x49\x9f\x9a\x7a\xfa\
+\xd8\xba\x5f\xf9\x0b\xdf\x93\xfc\xdc\xf1\x65\x26\xfc\x82\xee\x35\
+\x72\x15\x5d\xf3\xb9\x44\xfd\xfe\x93\xe8\x8a\xd1\xbb\xc4\xf4\xf8\
+\x08\x95\x85\x33\x44\xac\x0f\x54\x97\xcc\x69\xac\xd0\x8b\x33\x45\
+\x70\xdd\xfb\x5c\xa3\xfa\x93\x06\x3c\xd1\x34\x56\xe8\x57\xf0\xc8\
+\xaf\xe2\x2d\xeb\xcf\xb9\x2a\x77\x8d\xcc\xcb\xf4\x28\x3d\xd5\xaa\
+\x9a\xa9\x1b\xec\xd9\x7b\xbd\xea\x85\x7c\x77\xae\x49\xfd\x72\x70\
+\xe3\x91\x6b\xce\x34\x69\x51\xeb\x93\xd4\xaf\x06\x69\x80\xe3\xea\
+\xec\x2c\xd5\xdf\xf9\xd8\x30\xfc\xed\xbf\x37\x0c\xff\xe5\x7f\x33\
+\x0c\xff\xdb\x8f\x0f\xc3\xc7\x3e\x7e\xd6\xe4\xe6\x42\x7d\x7b\x4e\
+\x7f\xc1\xd0\xcb\xb4\x09\x6c\x75\x3b\x63\x5b\x9a\xa8\x0a\x33\x8d\
+\x75\xdd\x2f\xed\xa9\x78\xc2\xde\xfe\x66\x5e\xa6\x97\xfc\x89\x4f\
+\x0c\xd1\xd9\x46\xb4\x72\x6a\x28\xba\x5c\x62\x88\xd7\x04\xd0\xc2\
+\x0d\xc3\x6d\x4d\x0f\xbf\x32\x81\xb7\xc1\x7c\xa6\x52\xf3\x77\x7f\
+\xc9\x21\xb5\x0a\x33\x8d\xa3\x6a\xef\x79\xd9\xe4\x68\x4a\x15\xc5\
+\x10\xaf\x09\xa0\x85\x31\xce\x7f\xc7\x36\x67\x21\x5a\xde\x40\x39\
+\xd7\x3a\x30\x27\x17\xbe\x67\x90\x75\x44\xbb\x39\x28\x6d\xf3\x2d\
+\x5e\xab\x5e\xf4\x8e\x51\xfd\xcb\x14\xde\x0e\x37\x27\xd5\x5b\xd6\
+\x9f\x63\x93\x51\xe6\x65\x3a\xe4\xd4\xea\xbd\xf5\x46\x5e\xb0\x7e\
+\x72\xb8\x25\xe6\x9a\x33\x7d\x8d\xfa\x15\x4f\x3d\x05\x75\x6e\xb5\
+\x0e\xcc\xbd\x8f\x74\x26\xf0\xf9\x2f\x0c\xc3\xcf\xff\xc2\x30\xfc\
+\x77\xff\xfd\x30\xfc\xc4\xdf\x1f\x86\xcf\x7f\x7e\x22\xbe\xab\xc5\
+\xd7\x7d\x6d\xa4\x93\x7b\x4c\xdd\xe0\xce\xfa\xe5\x31\xf7\xc8\xcf\
+\x68\xf0\xa2\x8d\xd3\xfb\x3f\xc7\x8e\x74\xda\x73\x41\xb2\x8e\xbc\
+\xfa\x97\x19\x3c\x5c\xec\xc2\x1c\x43\xb4\x12\x05\x1f\x59\xff\xae\
+\x3c\x50\xae\xf9\x88\x0f\xcf\x48\x6a\xf5\xde\x2a\xd7\xc4\x1b\x57\
+\x3b\x67\x7c\x0b\x75\x75\xea\x1f\x3f\x03\x21\x58\xd2\xeb\x85\xaa\
+\xdf\x33\xab\x3a\x4a\x1c\x1d\xc9\x72\xcc\xa6\x1b\xb1\xda\x3a\x11\
+\xd5\x3e\x89\x56\x49\xb7\x35\x2d\xb0\x67\x90\xeb\x97\xbc\x7e\x8f\
+\xaf\xca\xab\x0f\x6a\x13\xf6\x46\xcd\xff\xd2\xf5\xd7\xf8\xdd\x78\
+\xda\x83\x5e\x72\xc6\xab\xf5\xed\xad\x7f\xc1\xed\x55\xd9\xd4\xac\
+\xa0\xd0\x42\x0d\xef\xf7\x13\xd6\x5f\xfb\x3f\x46\x3d\xcd\xdd\x7c\
+\x22\x2f\xb4\x5e\xb2\x17\x92\x7f\xf0\x93\xc3\xf0\x2b\xbf\x3a\x0c\
+\x7f\xf6\x4f\x0f\xc3\xbb\xdf\x85\xe4\x7e\x50\x7f\x70\x8a\x9e\xe6\
+\xac\x2e\x51\xbf\x1f\xc2\xec\x34\xd1\xb5\x7f\x49\xe4\x64\x8d\x5f\
+\xf5\x9f\x85\xfd\x3f\x57\x7f\xad\x37\xaf\x73\xad\xea\x83\x46\xe6\
+\x69\x7d\x8b\xfa\xc7\x77\x20\x8a\x6c\x97\xe7\x15\x18\x2c\xe7\x41\
+\x7b\xc2\x91\xb8\x68\x35\x03\x14\xed\xf6\x81\xa2\xa5\x02\x66\x1a\
+\x7f\xd9\xc6\x95\x4d\xbf\xa1\xe8\xbd\xc3\x13\x30\xa3\x08\xe0\xb9\
+\x19\x2d\x74\xda\x44\xa0\xbb\x2e\xfa\xbe\xb4\x49\xd8\xbb\x64\x2b\
+\x7e\xf3\x87\x5f\x15\x17\x32\xd0\xf5\xc2\x4f\x88\x47\xdb\xe4\x1b\
+\x5d\xaf\x59\x4a\x1a\xa0\x91\x1c\x14\xa1\xd3\x8a\x81\x63\xf4\x40\
+\xd9\x4a\xa6\x21\xb4\xcb\x6b\x0d\xa4\x6e\xb0\xe9\x25\x7d\x37\xb7\
+\x49\x58\x2f\xd7\xbf\xf5\x74\xc3\xfa\xd5\x0f\xf5\x0e\xf4\x3e\xda\
+\x1a\xcc\x7b\x49\xef\xb4\x35\xae\x2f\xdb\x44\x8b\xf7\xbb\xbf\x37\
+\x0c\xff\xc3\xff\x3c\xbe\x90\xd8\xf2\xae\x86\x3e\xab\x79\xc7\xdb\
+\xe7\x67\xe0\x92\xf5\xab\x07\xb9\x67\xed\xdc\xab\x51\x31\xee\xe9\
+\xfc\xfb\x3e\x5a\x6e\x20\xfb\x0e\xe6\x5a\xa4\xe3\x7a\x09\xeb\xfe\
+\x53\xe3\x56\xe4\xbe\x07\x7b\xfd\xf2\xa0\x72\x18\x09\x78\x6e\x46\
+\x0b\x9d\x36\x11\xe8\x71\xa5\xa7\x11\xfa\xbe\xb4\x29\x96\x33\x94\
+\xad\x64\xcd\x9f\xad\x9f\x9f\x30\x42\x28\x9f\x1a\x2a\x5a\x43\xa8\
+\xcb\x75\x03\x33\x8d\xbc\xa2\xa9\x36\x1f\xa2\xeb\xa0\x98\x96\x90\
+\x29\xc0\xab\xba\x5b\xd6\xd8\x2e\xf9\x53\xce\x1a\x42\xcf\xdf\x12\
+\x06\xb3\xad\x2b\xd9\xa4\x7a\x34\xa8\xcb\x75\x6d\xdd\xec\x83\x46\
+\x5e\x11\x5b\x61\x6f\xe4\x98\x99\x46\x37\xf3\x44\xbb\x7f\x30\x94\
+\xc4\x63\x54\x7d\xf1\xe1\x89\x56\xde\x1a\x2d\x7f\x33\xf6\x9a\xe4\
+\x33\x1c\x81\xd2\xc3\x37\x28\xde\xad\x87\xf2\x53\x3e\xe4\x04\x2a\
+\x2f\x72\x77\x9d\x10\xc0\x93\xfc\x31\xf5\xcb\x9d\xf7\x2a\x30\xd3\
+\x92\xf5\x2e\x63\xb7\x3c\x45\xd7\xf1\x05\x7b\x37\xf2\xbf\xfc\x8d\
+\x61\xf8\xc7\xf6\xad\xad\x7b\x1b\xfa\x5f\x64\xd1\xc2\x56\x5b\xae\
+\x39\xd3\xbd\xda\xb3\xed\x52\x6d\xec\xcd\xd2\x7e\x55\xb9\xc7\xb1\
+\x89\x78\xf2\x4b\x1c\xa7\x63\xb1\xe4\x4f\x39\x6b\x08\x3d\x7f\xd3\
+\x07\x73\x2c\x57\xb2\x09\xdf\x42\x5d\xae\x1b\x98\x69\xe4\x15\x4d\
+\xb5\xf9\x10\xfd\x98\xe1\x35\x99\x83\x86\xe1\x4c\x31\x19\xb9\x86\
+\x4c\x23\x57\xce\x1a\x42\xcf\xdf\x8c\xc1\x9e\x3e\xbe\xa9\xcb\x75\
+\xb3\xbd\xd1\xcf\xa3\x64\x74\x2b\x16\x83\xcc\x13\xbd\x36\x14\x40\
+\x43\x98\x69\x67\xda\x94\x93\x74\xda\x94\xc0\xae\x01\x86\x5b\x91\
+\x62\xa2\x00\xcf\xc1\x68\xf2\x11\x5b\x74\x88\xdd\xab\x68\x06\xf4\
+\x92\x1c\xbd\x25\xf4\x78\x26\x24\x9e\xf4\xe0\x89\xde\x5b\x3f\xb6\
+\x4b\xfe\xe4\x73\x32\x4a\x01\x6e\x6f\x3c\xec\x25\x16\xbd\x54\x5f\
+\x31\x77\xd7\xf0\x26\x71\x6e\xb8\xf0\x9a\x96\xe2\x93\x6c\x14\x78\
+\xed\xfa\xc9\x4d\x98\x69\xd2\xed\xed\xff\x4b\xf6\x3f\xb7\xfe\x86\
+\x7d\xb8\xfe\x0b\xbf\x84\xd6\x7d\x20\xdf\x5a\xa3\xa5\x5b\xb2\xca\
+\x35\x67\x1a\xdb\x5e\xfd\xe7\xee\xff\xec\x23\xd3\xf8\x9b\x21\xc9\
+\x3e\x03\xfb\x3f\xcb\x7d\x85\x71\xaf\xf5\xfb\xef\xc2\xe2\xad\xe2\
+\x4a\x0d\xed\x61\xdf\x0e\x42\x18\xb0\x6f\x5a\x66\x7a\xb6\x56\x17\
+\xa4\x40\x37\xa4\x90\x69\xad\x1f\x3a\xf0\x0b\x9a\x1f\x0e\xe7\x52\
+\xbe\xaa\x5b\xb2\x7b\xad\xbf\xe6\xaf\x5e\xc1\xf3\x36\x51\xab\x50\
+\x43\xbd\x84\x27\x32\x68\xc7\x10\x19\xb4\x3d\xda\x5b\xbf\x6c\x6f\
+\x3d\xa8\xc9\xf3\xa0\xd6\x2b\xd5\x4f\xec\xa5\x7e\x2a\x27\x52\xa1\
+\x4f\x93\x75\xd9\x1f\xd7\x11\xcf\xc6\xff\xfe\xb7\xec\xdb\x46\xf6\
+\xf3\x23\x6f\xf9\xf2\x71\x7d\xeb\xf9\x6d\xf6\xdf\x8f\xeb\x78\xca\
+\xfa\x6b\x2c\xad\x6b\xbc\x5b\x9f\xff\x9a\x0f\x7b\x0b\x7a\xce\xa5\
+\x90\x2c\xab\xf7\x67\x51\x3d\xbb\x9c\xc4\x8e\x33\xd3\xee\x75\x82\
+\x94\xf3\x35\xb1\x31\xef\xa8\x81\x7b\xef\xff\x9e\xbf\xc9\xff\xc2\
+\x72\x05\x05\xb2\x08\x4e\x27\x9c\x24\xab\x44\xed\xf2\x3a\x02\x33\
+\xed\x02\x31\xea\x65\xac\xd1\x48\x84\x0d\x2a\x11\x66\xda\x85\xd7\
+\x9f\x8e\xfa\xc7\x9e\x77\xf7\xff\xfa\xdb\x71\xf5\x88\xb7\xdc\xff\
+\xcf\x7d\xce\xbe\x9d\xf5\xbf\xde\xcf\xff\xce\xfa\xd2\x37\xdb\xaf\
+\x78\xb7\xff\xd2\xcb\x73\xe0\xb8\xff\xed\x38\xea\x79\xa6\xe7\x54\
+\x3c\xd7\x04\xa2\x63\xd9\xe8\xc6\x40\x00\x86\xbe\xe0\x1e\xc7\x43\
+\xce\xff\xe4\x33\x10\xd5\x29\x27\xd4\x4b\xaf\x84\xba\x34\xc0\x4c\
+\x23\x97\xad\xd3\xc2\x0d\x97\x02\x79\xd2\x11\x10\xda\xd1\xa3\xed\
+\x98\x92\xaf\x16\x5b\xf9\x92\x93\xd1\x0a\xa3\xfc\x22\x5c\xab\x15\
+\x7d\x97\x9b\x42\x93\x27\x1b\xd9\x69\x80\x99\x16\xcf\x2f\x9b\x1a\
+\x8a\x5e\xb9\xce\xd5\x2f\x5b\x8f\x11\x98\x69\xfc\xae\xd9\xcb\xd4\
+\x75\x85\x76\x3d\xa6\x7e\xc5\xbf\x97\x71\x8b\xfa\xd9\x06\x50\xbd\
+\x80\x16\xfa\x65\x53\x43\xd1\x2b\x57\xdd\x3f\xfd\x00\xe2\xdf\xfb\
+\x87\xf7\xd1\x65\x7d\x75\xaa\x1f\x82\xe4\xcc\xa8\x2e\x0d\x30\xd3\
+\xe2\xf9\x65\x53\x43\xd1\x2b\x57\xad\x5f\xfa\xf0\x9c\x96\x5f\xf1\
+\x62\x40\x0b\x9d\xb6\xe4\x40\xec\x40\xd7\x31\xbb\x86\x46\x53\x8b\
+\xd0\x69\xf3\x03\x4a\x0f\xba\xc9\xd1\x93\x1f\xbb\x34\xc0\x4c\x8b\
+\xe7\x97\x4d\x0d\x45\x9f\xb9\x64\xbf\x77\xc8\x9f\x06\x7e\x95\xb0\
+\xf3\x22\x61\x68\xe4\x2d\x17\xd9\xd8\xe5\xf5\x05\x3a\x6d\x4c\x50\
+\x36\xd0\x42\xa7\x13\xca\x5e\x03\x84\xf6\x77\x20\x9b\x0d\xc2\x9a\
+\x04\x6b\x40\x39\x15\x8f\x01\x8d\x7f\xf1\xe1\xb9\x0e\xd9\x08\x33\
+\xed\xc2\x7d\x93\x37\x4f\x6e\xf0\x63\x34\xb1\x96\xe2\x57\xb9\x4c\
+\xc5\x5b\x4a\x07\xdf\xd7\xaa\x9f\x52\xc8\x87\xdc\xa8\x47\x79\x38\
+\xcf\x30\xe7\x66\x25\xf8\x90\x4c\x03\x7d\x68\x67\x06\x1f\x9e\xfb\
+\x09\x1e\xf1\x24\x13\x7d\x4f\x43\xf9\x50\xcf\xb5\xeb\xcf\x3d\xce\
+\xb1\xc9\x47\x7d\x12\xcd\x80\x5e\x92\xb7\xe6\xa6\x86\xff\xcc\xcf\
+\x0e\xc3\x67\xfe\x00\x0f\xb7\x45\xfd\x5a\x96\xbc\xff\xd7\xa8\x3f\
+\x07\x24\x36\xed\x51\x1f\x45\xd3\xcf\xbc\x07\x39\x37\xba\xb6\xd6\
+\xff\x2a\xc7\x37\xf1\xe4\x47\x34\x23\xc7\xc8\xb1\xc9\x47\x7a\xf8\
+\xcc\xf4\x92\x1c\xbf\x5b\x30\xe7\x86\xbf\x9c\x43\xce\x0d\x7f\xe4\
+\x82\x7e\xce\x29\xd3\xc8\x73\x0c\xea\x06\xa5\x9f\x63\x10\xdb\x3f\
+\x44\x97\x12\x8a\x60\x2f\x00\x81\x40\xe9\x8a\x6e\xf6\x46\xb8\x7d\
+\x30\xa0\x63\xe9\x42\x78\x52\x84\x46\x8e\x2f\xe1\x25\x86\xfb\x37\
+\x47\xf8\x5f\x43\xc5\xc4\x46\x34\x79\x08\x7b\x97\x74\xc5\xc7\xaf\
+\x08\xb7\x0f\x06\x74\x2c\x5d\x08\x2f\xeb\x22\xc7\x17\xb1\xcc\x75\
+\xcb\x41\x74\xdd\xc0\xcc\x13\x5d\x87\xc7\x32\x26\xfe\xd7\x50\xf6\
+\xd8\x88\x56\x1e\x1a\xe0\xb8\xba\xfd\xac\x3e\xe4\x5e\x2c\x65\x44\
+\x2d\x6b\x75\x23\x97\x1f\x6c\x44\x53\x37\xfb\x51\x51\xba\xe2\x35\
+\x7b\x23\xdc\x3e\x18\xd0\xb1\x74\x21\x3c\x29\x42\x23\x97\xaf\x17\
+\xed\x5b\x59\x3f\x6d\x2f\x22\xf7\x30\xf4\xcb\x15\x35\x6a\xdd\xac\
+\x95\xf7\xa5\xeb\xc7\xa7\xfc\x6a\x80\xa2\xf3\x9e\x67\x5a\xb2\xde\
+\xf0\xfe\x9a\x80\xfe\xae\xa1\x7c\x60\x23\x9a\xd8\xc2\xde\x25\x5d\
+\xf1\xf1\x2b\xc2\xed\x83\x01\x1d\x4b\x17\xc2\x33\xb3\xdd\x23\xd7\
+\x9c\xe9\x25\x47\x1e\xcb\x84\xc4\x5f\x43\xf9\xc1\x46\xf4\x96\xfa\
+\xa7\x7f\x0f\x04\xeb\x88\xe4\x49\x1a\x2d\xd4\xf5\x52\x42\xd1\x1a\
+\xa0\x2f\x6a\x44\x31\xe1\x65\x5a\x3c\x5d\xf2\x01\xca\xb7\x74\x40\
+\xd1\x8f\x1d\xee\xd0\x9c\x08\x7b\x97\xfc\xa3\x93\xe9\xd0\xbd\x65\
+\xfd\xa4\x05\x2a\xbd\xdd\x03\xe3\xa8\x67\xd6\x03\x39\x44\x27\xd3\
+\xa1\x9f\xeb\xdf\x1d\xfb\x1e\x0c\xa8\xed\x02\xf5\x5f\xf3\xfc\xff\
+\xe4\xcf\x0d\x83\x3e\x13\xb9\xf5\xd0\x6f\x17\xd6\xf9\x50\xed\xd7\
+\xac\x9f\xed\x52\xfd\xa2\x1f\x3c\x30\xc6\x61\x45\x39\x46\x27\xd3\
+\xa1\x97\xcf\xff\xc5\xeb\x7f\x70\x51\x3b\x0c\xa9\xad\xd6\xcd\x3a\
+\xd7\x9c\xe9\x1d\xf5\x4f\x3e\x44\x6f\x0f\x7b\x1e\xf0\x72\x2a\x3a\
+\x06\xff\x5b\x49\xe8\xb4\x05\x02\x7d\x23\x48\x0c\x94\x9d\xe8\x18\
+\xbe\x21\x46\x0b\x9d\x36\x3f\x60\x7b\x21\x51\xbc\x64\x83\xed\x2a\
+\x12\x33\x23\xbe\x84\xba\x34\xc0\x71\x35\x9d\x91\x2d\xe8\x5f\xb5\
+\x7e\x7a\x14\x48\x9f\xc0\x59\xbf\x72\xdd\xd0\xaa\x43\xf4\x42\x3d\
+\xd3\xe2\x43\x4f\xcc\xad\xfa\x33\x07\x4f\xcf\xb8\x65\xfd\xd7\xda\
+\xff\x3f\xb0\xdf\x3a\xfc\xe1\xdf\x78\xfa\x5e\xae\x45\x78\xd3\x1b\
+\x4d\x43\x67\x21\xc6\xb5\xea\xe7\x59\xe2\x7b\x7d\x47\xe7\xff\x92\
+\xf5\xd3\xd3\xad\xc8\xb9\x07\x6f\x71\xff\xf7\xea\xf7\x17\x10\x25\
+\xd5\xbb\x54\x9c\x27\x1c\x55\x42\xa3\x5b\xe5\xed\xb0\xf1\x00\xe2\
+\xe1\x25\xd4\xa5\x01\x66\x1a\xb9\xec\x44\xa7\x43\x2b\xb5\xad\x03\
+\xd7\xb8\xf3\x3c\xcd\x78\x29\xdf\x5a\x0f\x7a\xa0\xe2\xa2\x93\xe9\
+\x25\x79\xcb\xfb\x12\xf5\x9b\x0f\x6f\x43\xa0\xd3\x96\x04\xa8\x7c\
+\xea\x78\xea\xfa\x6b\xbc\x5b\xac\x6f\x59\x3f\x67\xe1\x1a\xfb\xff\
+\xc1\x0f\xdf\xa2\xbb\xd3\x98\x7a\x07\x42\xcd\x92\x40\x5f\xa3\x7e\
+\x1d\x74\xdf\xeb\x40\xf6\x1d\x9c\x66\x3a\xae\x9e\xfa\xfc\x5f\xbc\
+\xfe\x5e\x11\x0b\x3c\xea\x06\x7b\x6a\xb7\xa8\x7f\xfc\x5d\x58\x91\
+\x8d\x12\x50\x82\x39\x11\x89\x58\x23\xa3\x88\xaa\xdf\xfd\xdd\x4a\
+\xa6\xb4\xd5\xbe\x29\x62\xa0\xe0\x1b\x47\xce\x85\xfc\xaa\x69\xd6\
+\x91\x6c\xad\x1e\xd2\x00\xd7\xf4\x9f\xa4\x7e\x82\x2b\x5f\xa3\xb5\
+\x14\x6a\x40\xc7\x72\x56\xcf\xa8\x75\x9a\x5d\x3f\xec\xc4\x5d\xab\
+\x07\xbf\xe0\xc9\xd3\xed\x28\xaf\x21\x12\x82\x26\xbf\x5a\x4f\xcd\
+\xd2\xf5\x8d\xb9\xa4\x5f\xe5\xe8\x81\xd5\x7f\xd5\xdf\xbb\x3f\xd5\
+\xbe\x25\x66\x82\x0f\xfe\x9a\x25\xfa\xbd\xb5\x82\xeb\xae\x5f\xff\
+\xfa\x31\x9e\xf2\xd4\xb8\x66\xfd\x63\x44\x9b\x09\xae\xf8\x46\x6b\
+\x79\xab\xf3\x7f\xe9\xfa\x5b\x8d\x1b\x08\xea\x06\x65\x02\x2d\xd4\
+\xa8\xf9\x8d\xdc\xd3\xec\xfa\xb6\x5c\xd2\xaf\x72\xf4\xc0\xea\x5f\
+\x7c\xfb\x9f\xde\x27\x87\x95\xd6\x3a\x0f\x1c\x81\x92\xf5\xe8\x1e\
+\xcf\x75\x25\xb0\x2c\x78\x25\x6f\xb4\x32\xbb\xc0\x20\x2e\x38\x76\
+\xd8\x1c\xc3\x20\x76\xc4\x83\x0d\x2a\x85\x4c\xd7\x94\x90\x81\x55\
+\x1f\x3e\x38\x93\x4b\x40\x0e\x12\x42\x47\x3e\x62\x3d\x66\x10\x17\
+\xbc\x74\xfd\x8f\xc9\xed\x1a\xb6\xd4\x0d\x5e\xba\x7e\xfc\x82\xaa\
+\xa9\x47\xf7\x78\xae\x2b\x01\x7b\x2e\x06\x74\x67\xff\xf5\x5f\x7a\
+\xf5\x17\x18\x79\x88\x4b\xfd\xda\x43\xbf\xda\x3d\x0f\xea\x02\x25\
+\xeb\xd1\x3d\x9e\xeb\x4a\x40\xcd\x62\x40\x77\xea\x97\x78\xef\x20\
+\x2e\x78\xf7\xfb\xbf\xb7\xc0\x15\x7d\xea\x06\xaf\x51\xff\xf8\x21\
+\xba\x22\x12\x15\x14\x2b\xe8\xc5\xb7\xac\xb5\x20\x6c\x85\x99\xae\
+\x7a\x4b\xeb\x87\xd8\xe0\xab\x67\xcb\xc1\x14\xea\x92\x0e\x28\xba\
+\x5e\xc6\x6a\x79\x8b\x0c\x9f\x37\xa9\x3f\x62\xe7\x7c\xf8\x0f\x0b\
+\x42\xa7\x13\x36\x3d\xec\x54\xcb\x05\xeb\x97\xbb\x7b\x19\xb7\xa8\
+\x3f\x9f\x85\xc5\x3e\xd0\x7b\x61\xa6\x17\x0d\x8a\x20\xdb\x18\xfd\
+\xc9\x4f\x15\xf9\x95\x97\xbc\x80\x1c\xe7\x7f\xfa\x2c\x58\xdc\x86\
+\xb2\x7f\xae\x07\x6f\xd1\x68\xbb\xe0\x96\xf7\xff\xd2\xf9\x1f\x3f\
+\x44\xe7\x01\xab\x5a\x78\xe8\x88\x0c\x5a\xe8\xb4\x35\x03\xd4\x0d\
+\xe2\x4e\x03\x9d\x36\x3d\xb0\xf9\x49\xfe\xe8\xa5\xd0\x69\xd9\x2a\
+\x26\x0c\xe9\x8a\x4e\x36\x12\x6f\x1a\x29\xb6\x72\xf0\x3c\xcc\x10\
+\xec\xfa\x20\x8e\x30\xd3\xa1\x7c\xd3\xfa\x95\x0f\xbd\x88\xfe\x78\
+\x8a\x46\xb7\x74\x8d\x70\x5e\x30\xe8\xfd\x53\xd4\xdf\xed\xdf\x2d\
+\x98\x37\xaa\x9f\x73\x0f\x6a\x6f\xbc\xdf\x81\xb9\xf7\xa7\x0d\xb2\
+\x06\xf9\x06\x8d\x8d\x32\x55\x1f\x42\xa7\x65\x2b\x0e\x0c\xe9\x8a\
+\x8e\xfd\xfc\xf4\xa7\x25\xbc\xdd\x78\x6d\xbc\x03\x51\xcd\xd4\x0d\
+\x2a\xcf\xa7\xae\xbf\xf5\x22\xfa\xe3\xad\x34\x3a\xda\xe3\x84\xf3\
+\x82\x91\xf7\xc0\x69\x6b\x1d\xd8\xed\xa2\x1b\x9b\xa4\x39\x0c\x3a\
+\x94\xbd\x56\xb1\x4c\x4e\xdd\xe0\x63\xeb\x8f\x10\xdb\x21\xea\x56\
+\xdc\x96\xae\xf2\x92\x87\x60\xdc\xa2\xfe\x47\xfd\x3d\x10\x4f\x3e\
+\xf2\x57\x1d\x2a\x40\x0d\x66\xd3\x24\x37\xd6\x58\xa4\x14\x34\xc4\
+\x58\x18\x6e\x6f\x32\xec\x17\xd4\xba\xec\x6c\x4b\x5e\x34\x9b\x98\
+\x9e\x8b\x4d\xa4\xd0\xfd\x9e\xaa\xe2\x77\x23\x9c\x6a\xf3\x43\x64\
+\x3a\xc4\x01\x3d\x07\x5b\x90\xbf\xf8\x1e\x33\xfb\x5b\x72\x2e\x5d\
+\x93\xb9\x4d\xd6\x49\x34\xbd\x25\x7e\x37\x5e\xf8\xf0\x90\xd0\xe1\
+\x43\x40\xcd\x92\x43\x4f\xbe\xa7\x6c\xfc\x50\x97\xca\xdd\x0d\xaf\
+\x21\x1a\x7e\xed\xfa\x6b\xff\x23\x8d\x76\x0e\xba\xf9\x58\x07\xd1\
+\xf3\x66\x9e\x69\x6e\xdd\xff\x4f\xd9\xff\xc6\xba\xe5\x78\xcd\x6b\
+\x4e\x67\x59\x79\x5c\xbb\x7e\xaf\x3d\xf5\xab\xc6\xef\xf6\xdb\xf4\
+\x5b\xbf\xa1\xc3\x87\x80\x33\xef\xf5\x18\x03\x9e\xd6\x4e\x07\x6a\
+\x5d\x47\x8d\x4f\x1c\xb0\x9b\x8f\x39\x41\xee\xfe\x14\xe4\x01\xc3\
+\x73\x33\x47\xc4\x90\x0b\x68\xa1\x86\xe2\x38\xcf\x57\x5a\x44\xec\
+\x90\xbb\x0f\x9b\x62\xd9\x7a\xb1\xf5\xfe\xef\xd5\x5f\xbe\xcb\x49\
+\xe4\x3e\x92\x28\x58\xb5\x6a\x01\x9e\xf0\x58\x87\xab\xba\xdc\x28\
+\xa1\x46\x95\xc3\x73\xe1\x05\xa6\x4b\xfb\xa7\x6e\xb0\xa6\x78\xe9\
+\xfa\x6b\xbf\xea\x81\xf0\xf8\x9c\x86\x9a\x8c\xad\x2f\x5d\x7f\x27\
+\xc4\xd5\x59\x7e\x76\x72\xcd\x99\x2e\xd9\x5c\xba\x7e\xf6\x1d\x2c\
+\xe1\x66\x37\x70\x8d\x5f\xf7\xb3\xca\xe5\x2f\x97\xf3\x99\x1b\xbf\
+\x80\xd4\x9f\x45\xa1\x6e\xf0\xa9\xeb\xaf\xfd\xba\xf5\xf9\xa7\x6e\
+\xf0\xb1\xf5\x57\xfb\x73\x6b\xce\x3d\xd8\x74\xf3\x81\x69\xcc\x91\
+\x58\x3b\x5f\x45\x7d\x75\x49\xdd\xa0\x0c\x26\xff\x8d\x57\x8c\x2c\
+\x6c\xa7\x59\x99\x90\x28\xe8\xca\x9a\x6c\x84\xdc\x45\x36\xc5\xb2\
+\x89\x9c\xe8\x4d\x6e\x70\xb2\x5f\x37\xe8\x39\x39\xf1\xf6\xba\xa3\
+\x56\x61\xa6\x9b\xc7\x35\x87\x45\xee\x4b\xf9\x32\x07\x59\xd4\xfc\
+\x55\x22\x2b\x65\x3a\xf4\x32\x4b\xb4\xe7\x09\x86\x90\xbc\x65\x52\
+\xf5\x33\x4f\x74\x1d\xd8\xba\xdf\x8e\xbf\x89\xc3\x6a\x7c\xa3\x75\
+\xeb\x43\x27\xdf\x27\xad\x3f\x3b\xa7\xf6\xcc\x33\xda\x97\x81\x59\
+\x84\xfa\x0c\xb3\x52\xa6\x43\x51\x5f\xf1\xdd\x72\x7c\xf6\xb3\x11\
+\x5d\xb9\x75\xf2\x9b\xf0\x4c\xee\x2a\x81\x3d\xf5\x59\x2d\x59\x29\
+\xd3\x29\xac\x48\x89\xfc\xb2\xa9\xa1\x08\xf1\x03\x9d\x76\xce\x49\
+\x3f\xf3\x42\x34\x01\x6c\x37\x9d\x7f\xe2\x80\xd9\xb9\x78\x76\xb9\
+\x28\xd0\xe9\x91\x3d\x89\xf9\xd0\x85\xfc\x79\x9e\x60\x04\xa0\x06\
+\xf9\xcd\x31\x33\x2d\x59\x6f\x60\xfb\x98\xfa\xc7\x77\x20\x1c\x54\
+\x45\x15\x4d\x74\x68\xe4\xca\xa2\x47\xf7\x78\xd2\x2d\xc3\x13\x36\
+\x5d\x12\x97\x38\xd3\x45\x7d\xff\x72\x4b\xfe\xd9\x2b\x79\x83\x5b\
+\xec\xd1\x95\x1f\x68\x30\xf3\x72\x9c\xa0\x5f\x11\xf5\x77\xea\xba\
+\x1b\xd6\x96\xfd\xcb\xc9\xb2\x6f\xe0\x16\x7b\x74\xe5\x07\x1a\xcc\
+\xbc\x1c\x27\xe8\xbd\xfb\x7f\xcb\xff\x81\xa5\x94\xf5\x6b\x55\xfc\
+\x59\xb0\x54\x1f\x7c\x50\x46\x99\xd6\x3a\x8d\xbd\xf5\x27\xd3\x6d\
+\xe4\x96\xfd\xcb\x9e\xc8\x15\xdc\x62\x8f\xae\xfc\x40\x83\x99\x97\
+\xe3\x04\xdd\xab\xbf\xa3\xf6\x70\xd6\x96\xfc\xb3\x77\xf2\x06\xb7\
+\xd8\xa3\x2b\x3f\x46\xef\xfe\x7b\x20\x7c\x1f\x2c\xe7\x01\x2d\xdf\
+\xe4\x20\x1e\xb4\x50\xc3\xe5\xb6\x68\x39\xac\x19\x8c\x66\x9b\x66\
+\x6d\x0e\xb9\xb5\xaf\xdc\x4a\x02\x65\x39\xd7\x5f\x89\x94\x63\xf4\
+\x54\xd7\xca\xd9\x5b\xff\x5a\xbe\x35\x9f\xa7\xae\xbf\x57\xf3\xb5\
+\x79\xd4\xac\xb8\xd0\x42\x8d\xa7\xae\xbf\xc6\x1b\xa3\x9e\xe6\x4b\
+\xef\xff\xeb\x5f\x77\xf2\x7d\x0b\xaa\xbd\x03\x89\xe0\xd7\xae\xff\
+\xde\xce\xff\xc5\xeb\xdf\xb1\xa9\x39\x36\xcf\xb7\xcc\x93\xab\x5b\
+\x9c\xff\xc9\x67\x20\x75\xc3\xda\x3b\x11\x6e\x50\x4b\xd2\x93\x3e\
+\x53\xb8\x6e\x22\x86\x17\x6a\xb6\x14\x2c\x7f\xf0\xa4\x83\x2f\xa1\
+\xc6\xec\x01\x3b\xb2\x37\xcd\x1e\x57\xfe\xa5\x1d\xfe\xdc\x30\xd3\
+\x2b\x9e\xa4\xea\x39\xa0\x87\x6d\xe0\x96\xfc\x3c\x7e\xd8\x53\xeb\
+\x53\xd5\x4f\x2c\xd0\xfb\xab\xd8\xe4\x5d\xe9\xc8\x6b\x09\xd6\xea\
+\x5f\xb2\xbb\x15\x9f\xba\xc1\xa7\xae\x5f\x71\x38\xb3\x4b\x35\xb7\
+\x5c\x4c\xe1\xb1\xfb\xff\x26\xfd\x2e\xaa\x1b\x0e\xbd\x80\xf8\x51\
+\x3a\xce\xbf\xef\xc2\xa5\xf7\xff\xb1\x5b\xcb\x59\x03\x6f\x71\xfe\
+\xfd\x05\x64\xe9\x01\x3e\x7b\xa0\x94\x8a\xd7\xe4\xed\x41\x16\x07\
+\xd0\xcd\x13\xed\x1b\x62\x4c\x1a\xb0\xea\xaf\xc4\xaf\xcb\x2d\xf6\
+\x29\xbc\x3f\x0c\xe4\xe3\x9e\xeb\xbf\x64\xbe\x5e\x6b\x6a\x1a\x75\
+\x83\xbe\x1f\x16\xf0\x52\xfb\x91\x42\x5d\x94\x7c\x4c\xbe\x97\xec\
+\xa7\x7c\x71\x86\xbb\x05\x12\x0c\x94\x52\xa2\xb1\xed\xf5\x5b\x3f\
+\x83\x71\xeb\xbf\x4e\xa8\x17\x10\x72\xec\xd5\xf7\x94\xf5\x13\x2f\
+\xb5\xab\xdd\xa7\xaf\x94\xfd\xa7\xc6\xad\x48\xdd\xa0\xef\x8d\x35\
+\xa8\x77\x7e\x96\x7c\x5e\xb2\x9f\xf2\xe5\x7f\x50\x8a\x60\x24\x26\
+\xcc\x74\x93\x07\x21\x43\x12\x01\xd1\xc9\x48\x61\xc2\x4c\xa3\x83\
+\xed\x56\x7f\xd8\xf5\xb0\x97\x6f\x8e\x49\x0e\x19\xe5\x07\x1d\xd1\
+\xd9\x47\xa6\x25\xd3\xd8\x9b\x2f\xbe\x89\x29\x1f\xf0\x1e\xe2\x4f\
+\x36\x79\xe4\x1c\x33\x8d\x0e\xb1\x88\x5f\x51\x7a\xe8\x88\xce\x3e\
+\x32\x2d\xd9\x3d\x8e\x9c\x63\xa6\xc9\x95\xda\x6a\xdd\xac\xa5\x87\
+\x8e\xe8\xec\x23\xd3\x92\x69\x5c\x73\xff\xdf\xfe\x56\xbb\x39\xc7\
+\x9f\xd2\x1a\x83\xdf\x60\x7e\x51\xef\x40\x28\xfa\xca\xf5\x6f\x29\
+\x97\xdc\x84\x99\xc6\x96\xbd\x65\xbf\x2b\x4a\x0f\x1d\xd1\xd9\x47\
+\xa6\x25\xd3\xa0\x15\xc2\x4c\xbb\xb0\x33\xe1\x9b\xb8\x52\x81\xd7\
+\x51\xdf\xcd\xca\x39\x66\x1a\x47\xc4\x22\x7e\x45\xe9\xa1\x23\x3a\
+\xfb\xc8\xb4\x64\x1a\xb9\x66\x68\xff\x39\x90\x26\x91\x37\x49\xb2\
+\xd7\x4c\xcb\x4b\x1e\xe8\xe2\x2d\xcb\x8c\x7e\x39\xfc\x39\x6a\x1d\
+\xfa\x24\x37\x0b\x37\x63\x14\x87\xe7\x96\xe4\x09\x76\xe2\x79\x5d\
+\xe4\x2c\x5f\x46\x93\xa3\xbb\xee\xc5\x4f\xfe\x5c\x27\x4f\xf8\x12\
+\x76\x06\xbe\x2f\x56\x7f\x8d\xb7\x92\x6f\xed\xf7\xc5\xeb\xef\xd4\
+\x7c\x15\x16\xfd\xbe\x75\xfd\x75\x3f\x4a\xf1\x8f\xd9\xff\x77\xbf\
+\xb3\x38\xbb\xc1\xf2\x77\x7f\xcf\x82\x1e\xe7\x7f\xb9\xf3\x8f\xdc\
+\xff\x65\xc7\x0b\x92\x1a\xef\x0e\xce\xff\xf4\x43\xf4\x92\x60\x59\
+\xce\xaa\xd2\xf7\x78\xf5\x90\xca\xdf\xe3\x6f\x0f\xa9\x99\xf6\x49\
+\x0f\x7d\x6c\xdb\x0b\x8a\xf9\xf2\x98\x9a\x2e\x30\xdc\x97\xf9\x69\
+\xee\x20\x02\xd7\xf2\x9f\xd9\x97\x9c\xd6\xec\x8b\x7a\xeb\xd3\xe6\
+\xfa\x7b\x07\xa4\x3a\x3d\xb3\x9e\xe5\x7f\xe1\xfa\xcf\x84\xbe\x0b\
+\xd1\x53\xd7\xff\x94\xfb\xff\x4d\xdf\x78\xfb\x16\x7e\xec\xe3\x96\
+\x83\x35\x91\x63\x53\x33\x7a\xca\xfa\x3d\xd6\x9d\x9f\xff\xc7\xd6\
+\x5f\xfb\x79\xe9\xf5\x35\xce\xff\xf8\x21\x3a\x27\xa4\x6c\x98\xff\
+\x84\xa2\xf1\xf8\x49\xc5\x5a\xa0\xbf\x00\x18\x93\x17\x00\x97\xe3\
+\xcb\x16\xfc\xd4\x27\xf6\xb5\x20\x0f\x67\x4c\xa1\x46\x95\x8f\xdc\
+\x6d\x73\xcb\xc5\xd4\xf1\xe7\x0f\x6a\xf9\x0f\x86\xeb\x18\xdd\xf2\
+\x55\x40\x0d\x50\x7a\x24\x61\xe4\xcd\xeb\x27\xaf\x40\x4f\xcf\xe8\
+\x28\x67\x7c\xf1\x56\xca\x59\xae\xbc\xed\xd2\x78\xea\xfa\xc7\x28\
+\xd7\x9d\xd9\x67\x45\x85\xbe\x55\xfd\x35\xbe\x77\x82\x3d\xb3\xc5\
+\x43\xcf\xff\x5b\xed\xdb\x57\xef\xfc\x4a\xf7\x76\xd3\xe9\xe3\x7a\
+\x01\xb1\xc3\xc4\xfd\x5b\x93\x79\xaa\xfa\x5b\x0b\x21\xf2\xf9\x36\
+\x9a\xf3\x5d\xe3\x8b\x2f\x55\xe4\x4f\x7d\xfe\x6b\x7c\xef\x0f\x39\
+\x2b\x0f\xa3\x3d\x9f\xe0\x39\x1d\x39\xba\xee\x8e\x29\xc7\xa2\xbe\
+\xcc\x93\xab\x5b\xd4\x3f\x7e\x88\x4e\x21\x51\x28\x0f\x54\x4f\xc8\
+\x78\x2d\xe1\x94\x64\x35\xd1\x5a\x1b\xe6\x45\x85\x01\xb4\x90\x91\
+\x48\xc2\x34\xac\xf6\xd8\x6c\x45\x7c\x83\xcd\x71\x63\x8c\xf9\xe1\
+\x0f\x36\x58\xf5\x6f\x5d\x7f\xaf\x7f\xe4\xde\x43\xea\x00\x6b\x3d\
+\xb2\xe9\xed\xc5\x92\x7e\xad\xbf\x17\xf3\x9e\x78\xd4\x01\x5e\xba\
+\x7e\xf9\xf5\x9e\xa4\xa2\x5b\x2c\xc9\x4c\xc8\x9e\x49\x05\xba\xd7\
+\x73\x97\x6b\xb2\x81\x0f\xec\xdf\xff\x2d\x23\xff\xd6\xf3\xc7\xfe\
+\xbf\xa8\x21\x12\xb9\x56\xfd\xea\x83\x46\xaf\x7f\xa3\xa4\x3f\xd3\
+\x47\xb0\x35\xb6\x31\x46\x9f\x58\xc3\x06\xab\x7e\x3d\xff\xd2\xbb\
+\xe4\xfe\x93\xc7\xa5\x90\x3a\xc0\x5a\x8f\xe2\xf4\xce\xe2\x92\xfe\
+\x96\xfa\xfd\x63\x3a\x29\xea\x52\x40\x50\xb4\x3b\x0e\x14\xed\x0e\
+\x03\x5d\x2f\x68\x03\x1f\x24\x27\x74\x3a\x61\xf6\x2d\xdb\xae\xfd\
+\x4b\xe1\x27\x70\x5c\x6d\x9c\x2d\x96\xfb\x0c\xec\xf9\xaf\x9e\xb2\
+\x4e\xb6\xf5\xc2\x95\xbb\x0c\x02\x45\x4b\x07\xcc\xb6\x52\xd3\xb8\
+\x64\xfd\x2f\x77\x7a\xe1\xf9\x28\x4e\x5c\xe4\x06\x23\xd7\xd0\xcb\
+\x4f\x39\xe6\x91\x75\xb2\x2d\xfe\x3c\x9e\x4d\xc4\xcd\xb6\xb7\xa4\
+\x6f\x51\xbf\x62\xaa\x47\x60\xee\x1d\xbd\xb8\xc4\xfe\xbf\xcd\xde\
+\x7d\x7c\xfb\x1d\xbc\x80\x7c\xe2\x93\xf6\x83\x84\xf6\x21\xba\x0a\
+\xa6\xdf\xd7\xa8\x5f\xbd\xd4\xd9\xbf\xb7\xf3\xcf\xbe\x83\x8f\xdd\
+\x7f\xce\xcc\x1e\x54\x6c\x0d\xf6\x83\xbd\x81\xe1\x39\x99\x50\xd8\
+\xcb\xcf\x8d\xd3\x94\x75\xb2\x2d\xfe\x3c\x9e\x4d\xc4\x93\x8e\x68\
+\x21\xb6\xd3\x77\x20\xc6\x75\x23\xa4\x68\x3b\x33\x64\xe1\xc4\xc0\
+\xbd\xf8\x4d\x83\xbe\x33\xd3\x04\x3f\x10\x5d\x6e\x34\x65\x01\xcf\
+\xad\x8a\x7e\xf2\xb4\x4e\xca\x97\xb4\x40\xd1\xc6\xe0\x83\x4c\x2d\
+\xbd\x6a\x6a\x1a\xc5\xce\x8e\xf2\x4e\xb6\xe4\x81\x6e\x28\xa0\x07\
+\xce\xf2\x77\x6f\x69\xc2\x4f\x20\xb5\xee\xaa\x1f\x1f\xc9\x6d\x23\
+\x91\xe1\x5f\x02\xa3\x5b\x7e\x46\x5c\xb2\xfe\x16\xf7\x5e\x88\x2b\
+\xd7\x4f\x5f\xc1\xa7\xd8\xff\x3f\xfb\xfd\xb7\xff\xdf\x57\xda\xde\
+\x8f\xdb\xbb\x0f\x3f\x48\xea\x71\x14\x4c\xdd\xe0\x53\xd4\xaf\xd8\
+\xf2\xdb\x46\xa6\x1b\x33\x08\x64\x81\x9e\x97\xd1\x2d\x3f\x23\x2e\
+\x79\xfe\xf1\x0b\x3e\xba\xfe\x5a\xcf\xde\xf5\x1d\xd4\x3f\x7e\x88\
+\xbe\x90\xb8\x1a\xc5\xf7\xf1\xa4\xa2\x7c\x9d\xa7\x45\x6f\x20\x6c\
+\x1d\xee\x28\x9d\x91\xe9\xc1\xca\xdb\xf8\x8e\xe5\x79\x56\x8e\x4d\
+\x63\x8b\x85\xfb\x37\x1e\x0f\xf0\xb5\x7a\xdc\xa5\x4d\x42\x8d\x35\
+\xfd\xd6\x1c\x0c\x46\xb3\xe9\x7c\x46\x56\xeb\xa7\x17\x4b\x6f\xe9\
+\x67\xf9\xcc\x18\x25\xb4\xc5\x76\x95\xc8\x61\x45\x7d\x2c\xc7\x74\
+\xcf\xa4\x3c\x0d\xf0\xc4\x2b\xf2\x58\xdc\xbf\x95\x82\xee\x7d\xff\
+\xbf\xf3\xdb\x86\xe1\x3d\xef\x7e\xe2\x26\x6e\x74\xff\x5b\xbf\x1d\
+\xf7\x7a\xda\xff\x95\xf6\x86\x81\x05\x60\xa3\x7a\xb1\xce\xc8\xee\
+\xfd\xfc\x3f\x75\xfd\xbd\x76\x65\xde\xac\x3f\xd1\x6a\xe5\xe5\x63\
+\x25\xc1\xa7\x38\xff\xe3\x87\xe8\x0b\x09\xf8\x87\x67\x96\x14\x1f\
+\xa2\x69\xef\xc9\xd1\x4d\x38\x0c\x81\x2e\x33\x5a\xe8\x03\xe5\x60\
+\xd4\x06\xb4\x83\x86\xbd\xe9\xa1\x83\x8b\x3d\x38\x6b\x50\xf5\xa7\
+\x38\xe4\xd4\x73\x8c\x4c\x68\xe3\xd6\xf5\xd3\x0b\xa1\xe7\x63\x13\
+\x35\x8e\x9c\xd4\xeb\x24\x6b\xfa\x17\xae\x9f\x98\xb7\x42\xdf\x9e\
+\x7c\xbe\x2c\x91\xd8\x2a\x4f\x89\xde\x3c\x55\xfd\xb3\xe3\x13\xfb\
+\xc2\x39\x9e\xe5\xe7\x8c\x53\x92\x9e\x9f\xf1\xc8\x0f\x3b\xe1\xd7\
+\x7c\xd5\x30\xfc\xe9\x7f\xc3\xcb\xb8\x8b\xe9\x03\xbf\x16\xbd\xb5\
+\x7c\x6f\x75\xff\xd7\x7e\xcd\xfa\x6b\x9d\x12\x8f\xe1\xfa\xb6\xa0\
+\xbf\xf5\x0b\x30\xef\xb7\x3b\xc1\xa2\x20\xb2\x70\xfa\xe4\xf7\x7f\
+\x09\x7f\x6e\x99\x6b\xcb\x35\x67\x3a\xeb\xc8\xd7\x35\xea\x9f\x7e\
+\x0b\xab\xdc\x10\x5e\x10\x3c\x25\x64\x97\x96\x2d\xe9\xc2\xf0\x02\
+\x8c\xc7\x06\xe6\x1b\xc4\x7d\xc9\xfe\x8c\xbf\xda\x00\x6c\xb6\x20\
+\x6e\x41\xb7\x61\x01\x8a\x99\x68\x48\xb0\xc9\x1a\x63\xaa\x5f\xca\
+\x9d\x35\xe4\x29\xea\xcf\xfd\xf2\x9a\xd2\xa4\x34\xc9\x09\x76\x4e\
+\x7d\xad\x1e\x74\xc1\x35\x7d\x62\xdc\x0b\x5e\xbb\x7e\x7a\x2d\xf4\
+\x51\x18\x0f\xdd\xff\xb7\x7e\xc5\x30\xfc\xf0\xbf\x7d\x1f\xdf\xba\
+\x52\x5d\x9f\xfb\xfc\x30\x7c\xe8\xc3\x71\xab\xb4\xc3\x71\x3a\x6b\
+\x97\xae\x1f\x7f\xbd\xfb\xff\x9e\xce\x7f\xd9\xee\x59\x43\xf6\xee\
+\xff\x78\x88\x1e\x3e\xdf\xc3\xf9\xf7\x17\x90\xb6\x81\x56\x0b\x4d\
+\xea\x95\xc5\x59\x02\x7b\x0f\x9c\x73\x1b\x5e\x7d\xe2\x07\x94\x3c\
+\xd3\x55\x7f\x6d\x4d\xee\xad\x1e\x73\xc6\xab\xb0\xdb\x9a\xc0\xf3\
+\x0b\x85\x99\xbe\x29\xc1\xeb\xc5\x22\x37\xb0\x25\xdb\x18\xe1\xbf\
+\x67\xdc\xe1\x61\x06\x4a\x25\xd3\xe4\x12\xe9\xba\x0c\x1e\xee\xce\
+\xea\x9b\xf0\x92\xf5\x13\xf3\x56\xa8\x5a\x6f\x59\x3f\xbd\x06\xdb\
+\x66\x35\xc6\xfe\xfd\xd7\x8b\xc7\xbf\xff\xe7\x87\xe1\x8b\xbe\xe8\
+\x56\x5d\x9d\xc7\xfd\xd0\xaf\x0f\xc3\xe7\xbf\x30\xe7\x53\x26\x78\
+\x89\xfa\x15\xa5\xf9\x2b\x34\x7b\x7d\x2f\xe7\x9f\x3c\xc1\x96\x78\
+\x63\xec\xdb\xff\x79\x87\x97\x39\xb9\x17\x29\x5c\x4b\x41\x96\x59\
+\x47\xeb\xd9\x0b\x9a\x29\x5c\xfa\xf9\x77\xf6\xef\x81\xf0\x62\x20\
+\xcc\xb4\x92\xf3\x41\x25\xc2\xde\x25\x25\x74\xdc\x60\x3a\x65\x9f\
+\x99\x9e\x6a\x6d\x5f\x11\x8a\x54\xd4\x51\xe7\xa9\xb3\xba\x34\x40\
+\x23\x73\xcc\x4c\xbb\xde\x06\x79\xab\x8d\x80\x15\xe5\xc8\x13\xc0\
+\xe3\x14\x73\xcc\x4c\xa3\x85\x69\x73\x6b\x84\xd3\x42\x11\x36\x40\
+\xa7\x9d\x13\x3a\xa2\x2f\x58\x7f\xb8\xbe\x2d\xdc\xb0\x7e\xfa\x0c\
+\x7a\x23\x62\x0f\xc6\x4d\x31\x8e\xd6\xf9\x92\x12\x3a\xa2\xcb\x78\
+\xd7\x3b\x86\xe1\x2f\xfd\x7b\xc3\xf0\xe6\x2f\x29\x82\x1b\x2f\x3f\
+\xf0\xc1\x31\x01\x6a\x15\x66\xba\xa5\x47\x6d\xc2\xde\x25\x45\x74\
+\x9a\xd1\x89\xc8\x3e\x33\x8d\x06\xa6\xcd\xb5\x11\x4e\x0b\x45\xd8\
+\x00\x9d\x76\x4e\xe8\x88\xbe\xe0\xf9\x27\x0e\xe8\xa1\x22\x87\x6e\
+\xed\x59\x16\x79\x3d\x06\xe4\x4e\xb1\x1b\x86\xff\x9c\x4f\xb0\x5a\
+\x3a\xd7\xa8\x7f\xfa\x19\x48\xce\xc0\x12\xf6\x67\xad\xf1\xd2\x33\
+\x77\x42\xb7\x45\x56\xa8\x5d\x4a\x32\x15\x3b\xf9\x8a\x38\x9a\x52\
+\x4d\x1e\xba\xae\xfe\x89\x25\xdc\x34\xee\xbc\x7e\xca\x00\x55\x53\
+\xa6\xaf\x51\xff\xa6\x3e\x3e\xb1\x52\xae\x39\xd3\xd7\xa8\x3f\xc7\
+\x6b\xcd\x9f\x30\x4b\xf1\x49\x96\xf3\xfb\xb6\x6f\x1e\x86\x1f\xf8\
+\xbe\x61\x78\xdd\x6b\x8b\xfe\x1d\x2c\x3f\xf0\x01\x4b\x82\xfb\x1e\
+\x8c\xbc\x52\x39\xa7\xc3\x37\x61\x96\x02\x92\x2c\xd7\x8f\x96\x78\
+\x5b\x07\xae\x40\xd9\x65\xba\xfa\x7f\x16\xee\xff\xad\xb5\xe7\x5a\
+\x73\xcd\x99\xbe\x45\xfd\x67\x7f\x95\x89\xef\x8e\x36\x38\xb2\xac\
+\x09\xee\x29\x9e\x06\xb8\x0f\x0c\xe5\x37\xf9\xf7\x43\x0b\x0f\x9d\
+\x8d\x98\x73\xe3\x05\x23\xf3\x7a\x6e\x66\x07\x8c\x5c\x38\xd4\xe4\
+\x72\xa3\xfa\xbb\xe9\x18\x33\xd2\xf1\xaf\x48\x3c\xc5\xc8\xb7\xd6\
+\x73\xe9\xfa\x7b\x3d\xbc\x36\x2f\x9f\x1f\x68\xa1\xc6\x53\xd7\xbf\
+\xd6\xcf\x31\x8b\xe5\x59\x7b\xa5\x77\x1b\x3f\xf8\x67\x86\xe1\x6b\
+\xbf\x7a\x59\xef\x96\x92\x8f\x7e\x6c\x18\x74\xf9\xf0\xc3\x65\x94\
+\xd0\xc6\x25\xea\x67\xcf\xdc\x61\xf1\x5f\xef\xff\x7b\x3b\xff\x17\
+\xaf\xdf\x9b\xb0\x6d\xa2\x6f\xa0\xac\xa0\x85\x1a\xb7\x38\xff\xe3\
+\x3b\x90\x48\xc0\x37\xcc\xa6\x58\x9e\x88\xc6\x18\x93\x1e\xd3\x9d\
+\xcf\xf5\x3c\x54\x0d\xf7\x6f\xcc\xe6\x0e\x22\xd0\xed\x8d\x8e\xf3\
+\x5a\xcd\x57\xd7\x34\x12\x94\x41\xa6\x67\x0e\x4a\x7c\x2d\xf5\x3f\
+\x2f\x60\x37\xa2\x31\xce\xfb\x7b\x35\xd4\x3f\xeb\xe1\x1d\x31\xd8\
+\x6b\x50\xa9\x65\x7a\x96\x2a\xfb\x1a\x28\x78\xaa\xfd\xd7\xaf\x66\
+\xff\xce\xef\x18\x86\x6f\xf9\xa6\xfb\x7c\xd7\x41\x6f\x7e\xea\x67\
+\x8e\xf3\xcf\xb1\x78\xf2\xfb\x9f\xa6\x5f\x08\x39\xeb\xa0\xdc\x66\
+\x7a\x16\x86\x42\x1f\x71\xfe\xa7\xff\x0b\x4b\x01\x67\x51\x4e\x8c\
+\xfa\x80\x94\x2e\x3c\x69\x61\x0b\x3a\x23\x2b\x18\xed\x05\x89\xd7\
+\x19\xc8\xce\x16\xdd\xb1\x13\x8b\x30\xa0\xab\xd5\x04\x11\x46\x7c\
+\xf2\x04\x65\x93\x69\xf7\x91\xa6\x62\x3e\x2b\x0f\x5b\x70\xa6\x60\
+\x0e\xa8\x31\xb9\x6d\x24\xb2\x56\x7f\xd1\xc7\x2f\xb8\x96\x4f\x2f\
+\x7e\xe3\x59\x54\xfc\x80\x4a\x24\xd3\x2d\xb1\x3b\x23\xc8\xf1\xda\
+\xf5\xaf\xc5\x23\x2f\xf0\xcb\xbf\x6c\xfc\xef\xb9\xdf\xf0\xf5\xe3\
+\x3b\x0e\x7d\x85\x78\xcf\xe3\xc5\x17\x87\xe1\xe7\x7f\x71\x39\xc3\
+\xbd\xf5\xb7\xb3\x46\x43\xcc\x01\x67\xbc\x17\x05\xd9\xbd\x9e\xff\
+\xa7\xae\xbf\xd7\x93\xcc\xa3\x8d\xe0\x5a\x3e\xbd\xfe\x37\x9e\x39\
+\xc6\x0f\xa8\x58\x99\xce\xb1\x45\xf7\xe2\x4d\x3e\x03\xd1\xc6\xf1\
+\x36\xc8\x0d\x62\xc3\x39\xf8\x38\x07\xa5\x93\x69\xad\x27\x43\x11\
+\x35\xc0\x4a\xbb\xf0\x32\xd3\x4b\x91\x3b\xe8\x5e\x89\x0b\xae\xc4\
+\x7f\xd6\xea\xa7\x56\xa1\x97\x66\x75\xc2\x1b\x19\x23\x7f\x6b\xff\
+\xd7\xea\x0f\x6f\x77\x03\xd4\x7a\xad\xfa\x39\xeb\xa0\x1a\xf1\x5a\
+\xfb\x0c\xe3\xff\x67\xef\x3d\xe0\xaf\xcb\xaa\xf2\xe0\xcd\xf0\x32\
+\x0e\x8c\xcc\xd0\x87\xde\xab\x80\x80\x14\x41\x3a\x28\x48\x11\x11\
+\x11\x89\xd8\x85\x18\x5b\xd4\x24\xfa\x99\x98\x5f\x3e\x34\x5f\xd4\
+\x24\x58\x12\x23\xe8\x67\x49\xd4\x28\x04\x10\x45\x05\xe9\x30\xf4\
+\xce\x50\xa4\xb7\x99\x01\x86\x19\x18\x3a\x0c\x65\xc0\xac\x67\x9d\
+\xfd\x9c\xfb\x9c\x75\xf6\xbe\xfb\x9c\x5b\xfe\xf7\xbe\xef\x7b\xf7\
+\xef\x77\xcf\xb3\xf6\xea\x6b\xed\x7d\xce\xf9\xdf\xff\x6d\x57\xb4\
+\x7f\x4b\x9d\x79\x46\x4a\x57\xb5\x67\x19\x57\xbd\x72\x4a\xf8\x3a\
+\x92\x6b\x9d\x95\xd2\x15\xae\xb0\x37\xad\x9a\x94\xc8\x39\x6f\x4d\
+\xc9\x7f\x85\x50\xf6\x13\xf7\x04\x1c\xb0\x6e\xa2\xf2\x8a\x01\x78\
+\xde\x11\xa1\xa4\x74\xd1\x68\x3a\x73\x1f\xd6\x5f\x7b\x31\xca\x9c\
+\xb5\x12\xa1\xa0\xf4\xc8\x60\x1e\x63\x1f\xea\xef\x9e\x81\x70\xc3\
+\x58\xfe\xbe\x61\xa4\x8e\xa5\xf5\xc2\x0e\x0a\xd9\x3e\x4c\x7b\x11\
+\x7d\xb4\xe4\x23\x03\xc9\xa3\x45\xfa\x4d\xce\x02\x10\x8b\xfa\xcc\
+\x35\x27\xc4\x93\x03\x88\xe1\x62\xf8\xe8\xa6\x3d\x4f\xa6\x43\x32\
+\x14\x14\xa6\xa3\x72\x5a\xf2\x96\xc1\xc8\xde\x12\x65\x0d\x9e\x98\
+\x29\x1c\x69\xfd\xc3\x6e\x6c\x7d\x76\xaa\xfd\x46\xf8\xcd\x6f\x22\
+\x61\x7c\xc1\x6c\xce\x05\x8b\x0d\x12\x55\x27\x0b\xfa\x97\xb1\xf7\
+\x21\x82\x8d\xbe\xe1\x07\x9c\xf0\x38\x76\x59\x7b\xd8\x99\x81\xc7\
+\xe5\xec\x71\xea\xd7\xa5\x84\xdf\x27\x47\xfc\x2b\x5c\x3e\xa5\xcb\
+\xdb\x03\x78\xfa\xe9\xf6\xf6\x5b\x93\x9d\x28\xe3\xb5\xf8\xf7\x15\
+\xf6\x90\x14\xa4\xb4\xb0\x3b\x32\xf4\x3b\x4c\x5b\xdb\x79\x24\x1f\
+\x31\x82\xc3\x30\xed\xff\xd8\xf5\x3d\x8f\x8c\x4c\xe1\x48\xf7\x7f\
+\x48\x28\x4c\x5b\xe5\x8c\xda\xb9\x94\x61\xce\x47\xfe\x6d\x71\x76\
+\x7a\xfe\x5b\x42\x83\x17\xd1\x99\x0c\xd0\x47\xc4\x50\x21\x36\x57\
+\xdc\x70\x03\x15\x57\x30\x4e\xde\x85\x19\x38\xed\x8b\x67\x3c\xfe\
+\xff\xd9\x3f\x01\x3a\x70\x34\x71\x12\x02\xb4\xea\xc1\x66\xa3\x0e\
+\x22\x90\x66\x3e\xbc\x31\xf6\x18\xd2\x40\x38\xb7\x09\xfc\x7e\xea\
+\x0a\x36\xcb\x79\x65\xe0\x74\x14\x6f\x54\x7f\xb0\x1f\xed\xa0\x3e\
+\x50\x26\x42\x80\x56\x3d\xeb\xd6\x1f\xc3\x6f\x7b\x7e\x45\xfb\x8d\
+\xf0\xc7\x3c\x6a\xdb\x51\x4e\x4e\xff\xef\x7e\x6f\x4a\x1f\xbb\xb8\
+\xbb\x00\x1f\xf6\x7f\xde\x03\x5b\xbe\xfe\xcd\xda\x69\x7a\x2d\x60\
+\x5e\xd1\xc1\x11\x9f\xff\x08\xe7\xcf\x40\x78\x81\xf4\xf8\x96\x1c\
+\xf3\x40\x9e\xa0\x6b\xf9\x92\x4f\x44\x3d\x4a\xf7\x93\xcc\x04\xa8\
+\x3f\xa7\x8d\x39\x35\x1e\xfc\xd7\x46\xbf\xe9\x45\xa1\xe9\x9f\xc9\
+\x66\xf4\x3c\x66\xe4\x13\xcc\x3d\x32\x79\x83\x49\x66\x02\x3c\xa7\
+\x9c\xe3\xdc\xfc\x60\xa6\x75\x92\x26\x66\xb7\x3d\xcc\xf5\x3f\xb7\
+\xfe\x3e\xd0\x81\x38\xae\x3b\xf0\x55\xfb\xd0\xe0\x73\x5e\x90\xcf\
+\x43\xdb\xa4\xbe\x0f\xac\xa2\xb8\x5f\x63\x91\x79\x5b\xf7\xa7\x39\
+\xe4\xe4\xb9\x2e\x27\x19\x01\xbe\x27\x5d\x98\x69\x63\x56\xe3\x05\
+\x7b\x98\xe9\x5e\x27\x4d\xcc\x6e\x7b\xf0\x58\x33\xfc\x7b\x1e\xcb\
+\xf4\x7b\xcf\x1d\x51\x48\x6f\x56\xfd\xc1\xdd\xd2\x29\x6b\x24\x42\
+\x99\x34\x31\x3a\x38\x8a\xfa\xfd\x06\xd2\x27\xe0\x11\x2d\x0d\xef\
+\x64\x97\x0e\x9b\xe4\x33\x4c\xa8\x03\x06\xe9\xac\x1f\xa6\xc5\x0d\
+\xa8\xfe\x48\x13\xa3\xbd\xc7\x9c\x73\x08\xf9\xf1\x9b\x38\x1d\xb3\
+\x1f\xc6\xc2\xd4\xeb\xb6\xa0\xfb\x5a\x7f\x28\xa7\xdd\x89\x60\xb0\
+\xf1\xfa\xdb\x19\x1c\x34\x8e\xc3\x0e\xbc\xe6\xf5\x29\xf9\xaf\x0f\
+\x16\x4e\x40\x3d\x5f\x46\x27\x74\xd0\x0f\xd3\x91\x3a\x5a\xa3\xfe\
+\x48\x13\xa7\xd8\x2f\x6d\x2f\x1c\xd1\x09\x62\x65\x7a\x5f\xcf\xff\
+\xa5\xb5\xac\x22\xdc\x41\xfd\xa7\xf4\xab\xcc\xc6\x13\xb9\xaa\x44\
+\x14\x04\x19\x06\x90\x7a\x44\xd3\x73\xd5\x8c\xa0\x71\x61\xee\x11\
+\x44\xe6\x75\xd4\xf8\xc8\x17\x43\x89\x63\x8d\x25\x1c\xf8\x67\x2e\
+\xcc\x0f\xea\xa0\x39\x72\x0e\x5d\x52\xc6\x8c\xfa\xea\x43\x75\x69\
+\x4f\x5f\xf4\x1f\xf4\xdd\xc4\x0e\x40\x7f\x90\x06\x82\x01\x7e\xc6\
+\x6e\x36\x3c\xb2\x6e\xa0\xd3\x82\xee\xd0\x1d\x88\x0d\x7d\x01\xf1\
+\x88\xf5\x40\x95\x39\x83\x6e\xe9\xab\x0f\xd5\x85\xed\x61\x9c\x90\
+\x1d\xf8\xfc\xe7\x53\x7a\xf1\xcb\xad\x34\xdd\x3b\x58\xfb\xd2\xfa\
+\x73\x2f\x01\x0b\xfa\x6e\x62\x07\x9a\xaf\x73\xfe\xef\xe5\xfe\xdf\
+\x72\xfd\x4b\x37\x58\x69\x3d\x94\x07\x5a\xd7\x44\x73\xa5\xe3\x96\
+\xbe\xfa\x50\x5d\xda\xab\xcf\x1c\xeb\xd8\xe0\x02\xa3\x0a\x66\x84\
+\x0d\xc0\xff\x93\xc3\x47\xb6\x59\x98\x44\x86\x26\x00\xfd\x2c\x77\
+\x2c\xf9\x33\x39\x63\xb8\x7f\xe8\xdb\xa0\x7e\x37\x5b\xfd\x48\xdf\
+\x40\x0c\xd6\x32\xf0\x9f\x63\x76\x0a\x7e\xec\x0a\x35\x72\x64\x0f\
+\x9e\x3d\x7a\x13\x10\xca\x20\x2d\xf1\x20\x67\xbc\x91\x3f\xb3\x27\
+\xcf\x3c\xf5\x7a\xd4\xef\x6d\xb3\x3f\xe8\xcc\x19\xf4\x0d\xc4\x58\
+\xb7\xfe\xce\xcb\xe1\x78\x22\x75\xe0\x85\x67\xdb\x0f\x47\xd9\xdb\
+\x77\x7d\x70\x63\x67\x1c\xed\x1f\x53\xc2\x56\xa2\xda\xe8\x82\x40\
+\xa1\xec\xb7\x7e\x0f\xc3\xd6\xf8\xdc\x83\x88\x47\x9a\xfb\x3d\x62\
+\x6f\x9b\xfd\xc1\x66\xce\x68\xc5\x73\x5f\x7d\x31\x36\x23\x7d\x44\
+\xf5\xcf\xa9\x65\x15\xdd\xa3\xa8\xdf\x5f\x44\x5f\x96\x1c\x92\x98\
+\x3a\xa0\x8a\xde\xd3\x64\xf4\xa2\x30\x1c\x51\x08\x3a\x8c\x58\x70\
+\x10\x2f\x9d\x6a\xec\xb0\x0f\xfa\x7d\xe1\xfe\xcd\xcb\xac\x9a\x96\
+\xe4\x1b\x13\xd2\x1c\x20\x5b\xb7\x7e\xef\xa5\x39\x65\x3d\xc5\xfc\
+\x25\x3f\xf6\x9e\xfa\x11\x8b\xf6\xb1\x88\x30\x9f\xd3\xab\x60\x7a\
+\x98\xee\x79\x07\xde\xfb\xfe\x94\x5e\xff\xa6\xa5\xa7\xe4\xbc\x73\
+\xc5\xea\xe5\x1e\x44\xe9\x27\xdb\xfe\x5f\xf7\xfc\x6f\x6d\x97\xe2\
+\xf9\xbb\xe3\xf3\xdf\x5f\x03\xe1\x85\xa6\x5f\x7d\x32\x42\x47\xc2\
+\x74\xb1\xf3\xa4\x88\xc1\x05\x87\xbb\xa9\xe6\x2f\xdb\xd1\xc6\xd5\
+\x8d\x47\xf5\x56\x43\x55\xae\xb6\x53\xfd\xb9\x0d\x36\x3a\x1d\x45\
+\x46\x28\x38\x4c\xb7\x5e\xff\x28\x9e\xe5\x09\x1e\xc7\x28\x5d\x13\
+\x3a\x2f\x2b\x91\x06\x96\x46\xb4\x6f\xad\x7f\xc9\xc7\x81\x77\x7c\
+\x76\xe0\xb3\x9f\x4d\xe9\xaf\x9e\xd9\xed\xa7\x7e\x7f\xc4\x0d\x11\
+\x36\x60\x98\x2e\x36\x63\xde\x6f\xe8\x04\xcf\x3d\xef\x4a\xcb\x5f\
+\xb6\xa3\x8d\xab\x1b\x8f\xf9\x8c\xe2\xc1\xbf\x3b\xee\x0e\x23\xf7\
+\xd9\xb6\xe6\x4f\x4c\x9d\x8c\xf6\xad\xfd\x3f\xca\x87\xc9\x10\xcd\
+\x2b\x63\x17\x03\x8c\x1c\xc4\x8c\xea\x73\x86\x20\x42\x33\xe6\x8f\
+\xd8\xce\xcb\x4a\xa4\x81\xa5\x11\xed\xc7\x0e\xcd\x8a\x4a\x46\xc2\
+\xad\x4c\x9d\xd1\xbd\x88\x4e\xef\xcc\x8e\x08\xbe\xd2\x61\x4a\x67\
+\x40\x8c\x18\x80\xcd\x24\xba\x4e\xf0\xe7\x86\xf9\x40\x11\x51\x65\
+\x2d\x9a\x36\x44\xe8\x93\x26\x2a\x4f\xe9\x5e\x4e\x82\xa8\x4a\xa0\
+\x6d\xa8\x68\xeb\xf5\x5b\x30\xbe\x10\xe8\xc1\x43\x40\xe6\x42\x8c\
+\xf9\x91\x4f\x6c\xca\xa9\x48\x8c\x06\x9e\xc4\xe1\x70\xbc\x77\xe0\
+\x6b\xf6\x9b\xe3\x4f\xfd\x9b\x94\x3e\xf7\x85\xae\x92\x7e\xb9\x49\
+\x10\x21\x56\x3a\x4c\xc3\x76\xdc\xfc\xf9\x6f\xb1\xf7\x6d\xff\x6b\
+\x3b\x36\x5d\x7f\xb7\x1a\x95\x23\x02\x87\x80\xcc\x85\x08\xcb\x12\
+\x5d\xe2\xa9\x6e\x2f\x27\x41\x54\x25\xd0\x36\x54\x84\x74\xfc\xeb\
+\xdc\x5d\xb2\xc2\x81\xce\x80\x4a\xaf\xe0\x6a\x7d\x93\x52\x02\xca\
+\x53\x7a\xfd\x68\xee\x41\x5d\x2a\xbd\x21\xf7\xdd\x86\x81\x33\xac\
+\x14\x1e\x18\x44\xd0\x1a\x54\x69\xc8\x30\x94\xa7\x74\x27\x3d\x1c\
+\x4f\xd2\x0e\xbc\xe8\xa5\x29\x7d\xf0\xbc\xf5\x8b\xd7\x2d\xa5\xf4\
+\xfa\x9e\xb3\x07\xee\xf5\x3d\xdd\xff\x5a\xb3\xd2\x1b\xab\x5f\x1d\
+\x69\x2f\xc8\xd7\xa0\x4a\x4f\x95\x53\x6f\x45\x44\x48\xbf\x81\xe0\
+\x19\x02\x9f\x25\x10\xe1\x93\xf4\x54\x39\xf5\x88\xb8\x80\xb9\x0f\
+\x44\xc2\x03\x83\x08\x32\xd3\xbd\xbe\xf0\xa0\x3a\x6b\xa0\xc1\xf0\
+\x47\x54\xba\xb2\x01\x5b\xf1\xe7\xca\x59\x07\x71\xed\xfa\xd9\x2b\
+\xa0\x3d\x3c\x9f\x8c\x4e\x5b\x5d\xc4\xbe\xee\x2d\xd5\x3f\x6b\x2d\
+\x0e\xca\x7b\xdb\x81\x7f\x7c\x47\x4a\x2f\x7d\x45\x97\x9e\xef\x1d\
+\x23\x81\x4a\x33\x79\xe5\x29\x5d\x93\xd3\x0f\x51\xf7\xac\x9f\x9b\
+\x30\xc4\x5e\xce\x43\x7d\x2a\x4d\x79\xaf\x0b\x1b\xe6\x98\xd1\xf5\
+\x8f\x70\xff\x97\xf2\x53\x1e\xe8\xf8\xd0\x9c\x07\xb5\xf4\x05\xce\
+\x20\xf6\xb4\xfe\x63\x7d\x61\x58\x23\x4b\x12\x83\x18\x69\x17\xca\
+\x01\xd7\x2a\x0c\xe2\xe0\x22\x06\x81\xf9\xf3\x77\x56\x88\x5f\xbf\
+\xbe\xe5\xb9\xab\x08\x8d\xf9\x3a\x03\xae\xdc\x7f\x76\x42\xba\xcf\
+\x2f\x2a\x40\x4f\xe2\xb3\x6e\xa2\x8b\x45\x9e\xdd\xf6\x40\xbf\xc4\
+\x3e\x38\x19\x66\xbb\x56\xfd\xf4\x43\x2c\xe5\xdf\x67\xd3\x95\x02\
+\x55\xa6\x4c\x9a\xe6\x2e\x20\x93\x76\x54\x86\x5d\xa6\x89\x50\x51\
+\x9a\x26\x07\x3c\x3e\x3b\xf0\xce\x77\x77\xff\xba\x1a\xac\xe9\x1a\
+\xeb\xcf\x7d\x45\x3c\xd9\xf6\x3f\xeb\x26\xae\x52\xff\xe4\x9d\x84\
+\x20\x58\x2b\x62\xc1\x30\x8a\xa9\xda\xe7\x17\x15\xe0\x63\xcd\xf5\
+\x3f\x46\x9f\xf4\xc5\xa0\x98\x93\x66\x02\xd8\x78\xce\x93\xa0\x9a\
+\x40\x4f\xd7\xe4\xc3\x7c\x47\x6f\xe3\x73\xff\x16\x60\xb0\xc1\x91\
+\xc8\x84\xa1\xb9\x4d\xcd\xd7\x6b\x31\xdf\xbd\x7e\xa6\x99\xfe\x48\
+\xbe\x07\xf5\x6b\x6f\x48\x13\x3d\xdf\x9c\x23\x5a\xa6\x3d\xc1\xdc\
+\x07\x8b\xb3\xc9\xa8\x3e\xe1\x41\x37\xca\xc1\x3b\x8c\xe3\xb3\x03\
+\xf8\xaa\x92\x27\x3f\x3d\xa5\xaf\xda\xeb\x1f\x1c\x71\x7d\xb1\x35\
+\xc8\x83\x0e\x69\x20\x46\x6b\x3f\x1d\xc5\xf9\xcf\xbd\xce\x7c\x14\
+\x3d\xdf\x2d\xee\xff\x4d\xd7\x8f\xdc\xa7\x0e\xd6\x4d\x84\x1d\x69\
+\xe2\x2e\xea\x1f\xbe\x06\xc2\x8b\x0b\xd0\x1e\x3e\xcd\xe8\x74\xc7\
+\x46\xee\x1b\x19\x2c\x1c\xa8\xf4\xaa\xce\x35\x47\xa5\x27\xfb\x53\
+\x23\xe4\x04\xc3\x8c\x2a\x9a\xec\xaf\xa1\xa8\x35\x2b\x5d\x33\xe3\
+\x89\x0c\x54\x9a\xfa\x9a\xa3\xd2\x94\x37\x51\x8d\x8c\xf6\x29\xb1\
+\x69\x7c\x50\xd8\xd7\x0e\xe0\x27\x6a\xff\xf2\x69\xc3\x9b\x47\x31\
+\x57\x5f\x70\x93\x00\xb9\xee\x19\x55\x54\xb4\x5d\x81\xa9\x7b\x5e\
+\xe9\x9a\x2b\xdd\xf3\x4a\x53\x5f\x73\x54\x9a\xf2\x26\xaa\x91\xd1\
+\x3e\xcd\xa8\xa2\xa6\x9f\x2d\x29\x68\xcd\x4a\x33\x9c\xe6\xa8\x34\
+\xe5\x4d\x54\x23\xa3\x7d\x9a\x51\x45\xea\x67\xf8\x2e\x2c\xcb\xca\
+\x15\x99\x1d\x26\xa0\x69\x4d\x7a\x55\xb9\x46\x06\x1d\xfc\x61\x13\
+\xe1\x5f\x3e\xdc\x4c\x51\xbd\x39\x8f\xf9\x46\x83\x18\x2f\xcb\x59\
+\x1e\xf2\x71\x1a\x7a\x18\xd1\x5f\xb0\x9f\x2d\xef\xbc\x2e\x8e\xc1\
+\x5f\xac\x9f\xbd\xf0\x7f\x83\x21\x9d\x9c\x4f\xdf\x1f\xe4\xcb\x1c\
+\xe1\x95\x34\xb0\x34\x62\xbc\xac\xd3\xab\xc3\x1f\x78\xd0\xc3\x68\
+\xf9\xeb\xb4\x0e\xc7\x3d\xee\xc0\x1b\xce\x49\xe9\xef\x9e\x9d\xd2\
+\xa5\xf6\x7d\x57\xa3\xf3\x2d\xe7\x3d\x79\xfd\xc3\xfe\x19\xed\x8f\
+\x96\x3c\xf6\x29\xe8\xef\xfd\xfe\x0f\xf9\xae\x5d\x7f\xec\x47\x63\
+\xce\x73\x7d\x67\xe7\x7f\xa1\x7e\xbf\x81\x30\xef\xd6\x02\x36\x1b\
+\x06\x47\x08\xc2\x41\x9a\xb8\xc5\x0b\x92\xe6\xce\x0b\x2e\xd3\x18\
+\x20\x73\x19\x30\xbb\x89\xfa\x00\x27\x5e\xc0\x77\x5e\x3f\x73\xcf\
+\xd8\xcc\xb7\x50\xe3\x60\x7d\x82\x7c\x25\x7f\xc1\xc7\x61\xba\x1f\
+\x1d\xb8\xf4\xd2\x94\xfe\xfe\xb9\xdd\x07\x05\x3d\xa3\xb0\x77\x4a\
+\x59\x36\xd7\x3f\x9e\xbf\xf0\x49\x1e\x1d\x32\x0e\xe6\xa4\x89\xd4\
+\x05\xae\x32\xe8\x27\x63\x33\xdf\x52\x0c\xfa\x28\xc8\x9a\xfe\x62\
+\xfe\xf0\x45\x1e\xfd\xa9\x7f\xd2\x44\xea\x9e\x40\xf5\xfb\x8b\xe8\
+\xac\xc7\xfb\x61\x13\xd6\x8b\x9e\x28\xdd\x4f\x32\x33\x36\x9c\x3d\
+\x24\xba\x3f\xf1\xe1\xfd\xb3\x03\xe3\xf5\x44\x66\x8c\x2e\xd8\x74\
+\x34\x01\xd5\x16\x79\x95\x46\x31\x1f\x53\xa4\xba\xcb\x6d\x92\xcb\
+\x73\x17\x4a\xf7\x82\xcc\xdc\x76\xfd\x4d\xff\x96\x07\x75\x90\x2c\
+\x69\x60\x69\x20\x6d\x88\x58\x13\x69\xaa\xbb\xdc\x26\x94\xc3\x87\
+\xd2\x98\x1f\xc6\xfe\x77\xe0\x93\x9f\xb2\x7f\x59\xd9\xeb\x1d\x1f\
+\xb9\x60\x98\xab\xaf\xaf\xb1\xb8\xa6\xb3\xd7\x9f\x86\x19\x57\xda\
+\x6f\x16\x94\xfb\xad\x27\x32\x43\xcf\x61\x64\xde\xf4\x6f\x79\x50\
+\x67\x92\x3e\x7c\xda\x83\x65\x90\x66\x3e\xe0\xbb\x3f\x38\xcb\x83\
+\xba\x3e\xe5\x24\x23\x63\x03\x4b\xc3\xfd\x99\x80\x66\x1e\xcf\x0e\
+\x15\xf5\x92\x8b\x9e\x57\x8a\x31\xbb\x5f\xe6\xcd\x73\xc8\x5e\x49\
+\x33\x1f\xcf\xd7\x26\xcc\x17\x6a\x4a\xf7\x93\xcc\x44\x4e\x4b\x5f\
+\x44\xef\x2b\x65\x84\x1c\x98\x10\x03\x42\xcd\x79\x54\x08\xc8\x64\
+\x88\x51\x9f\x4d\x22\x06\xf3\xe6\x94\x7e\x89\x23\xff\xd9\x03\xcb\
+\x81\x1e\x75\x20\x22\x4d\xf9\xae\xeb\xf7\xfc\x2c\x99\x5a\x3d\xb9\
+\x9c\x1e\xa8\x47\x8c\xf5\xb0\x2e\xa2\xfb\x37\xeb\x9a\x7e\xab\xfe\
+\x3e\xf0\x81\xd8\x8b\x0e\xe0\xbc\x79\xe3\x9b\x53\xfa\x87\xe7\xa7\
+\xf4\xc5\x2f\x76\x29\x71\x8d\x31\xe3\xba\x13\x29\x5b\x75\xfd\xdd\
+\xde\x9c\x55\xed\x43\x57\xa8\x47\x44\x1e\xee\x23\xeb\xf1\xbc\x27\
+\xba\x6c\x93\xfe\x19\x27\x23\x63\xd7\xf2\x19\x35\x2c\xdb\x11\xd6\
+\xcd\x8f\x7e\xa6\xa0\xe6\xca\xf5\x8b\x76\xac\x83\x38\xea\x6f\x36\
+\xa0\xbd\xfa\x84\x28\xea\x4f\xa9\x7f\xf8\x1a\x48\x76\x92\xe3\x34\
+\x81\x89\x10\x61\x50\xa2\x95\x17\x9d\x2e\x93\x45\xdd\x65\x73\x6e\
+\x3a\x4d\xa0\xd5\x20\xc6\x26\xc2\xbf\xd2\xcb\xe2\xa9\xae\xda\x94\
+\x68\xe5\x45\x9f\x4b\x65\x10\x5a\x11\x7d\x6d\xa4\x51\x98\x0d\xf2\
+\x89\x1d\xd3\x8f\x7e\xd8\x76\xfd\x8b\x48\x07\x6a\xd7\x1d\xb8\xf0\
+\xa2\x94\x9e\x69\xaf\x75\x9c\x7b\xfe\x22\x93\x6d\xaf\x3f\xf7\x2e\
+\x11\x91\x4b\xb4\xf2\x16\xd9\x75\xd4\x52\x19\x84\xdc\xf3\x50\x27\
+\x8d\xc2\x6c\x70\xdf\x13\x3b\xa6\x1f\xfd\x70\x3c\xd4\xbf\xc8\x76\
+\x39\xe5\x35\xee\x61\xfd\xdd\x0d\x24\xaf\x62\x7c\x4a\x14\x4b\x42\
+\x11\xd4\x81\x8c\x34\x70\x1f\x46\xcc\x2f\x6e\x38\xe4\xa8\x1b\x36\
+\xea\xb7\xea\x99\xab\xbf\x76\x4f\xd8\x57\x22\x1c\x2a\x1d\x02\xc4\
+\xfc\x36\x5d\x7f\x08\x77\x98\xee\x41\x07\xbe\xf4\xe5\x94\x5e\xf2\
+\xb2\x94\x5e\xfe\x6a\x7b\x97\x95\xbd\x50\xce\x3d\xec\xa9\xd9\x5e\
+\xc1\x9e\xd0\x3d\x73\xd8\xff\x8b\x45\x8b\xe7\x0b\x7b\x57\xbb\x9e\
+\xcd\xd5\x5f\x44\xda\x00\xc5\xf3\x9e\x58\x70\x19\xf3\xdb\xf4\xf9\
+\x1f\xfd\xa3\x4f\x4b\x7f\xd2\x36\x36\x94\x8d\x25\x96\x1c\x92\x87\
+\xfa\x48\x03\x31\xa2\x3f\xbf\x9a\xa3\x21\x59\xce\xbd\xae\x9b\xdc\
+\x0d\x27\x1c\x34\x16\xf3\x83\x99\xd2\xaa\x43\x19\x79\x98\x93\x06\
+\x62\xc4\x7c\xe9\x8b\xd8\xd2\x6f\xc9\xe7\xd6\x1f\xf3\x69\xfa\xcf\
+\x35\x78\x31\x76\x68\xe9\xb7\xe4\xf4\x73\xc0\xdd\x77\xe0\x2b\x5f\
+\x49\x09\x3f\x04\x75\xf6\x2b\x53\xc2\x6f\x7a\x60\xc4\xfd\x41\x9e\
+\x0b\xed\xd0\x5a\xdf\x96\x9c\xfb\x9e\xd8\xd2\x6f\xc9\x8f\xb7\xfd\
+\xcf\xba\x89\xad\xfa\x5a\x72\xae\xcb\x14\x54\x5f\x53\xe3\xc3\x2f\
+\x75\x41\xab\x0f\xca\xc8\x9b\x22\xa7\x2f\x22\x6c\x8f\xf9\x44\x2e\
+\x98\x58\x54\x55\x00\x0d\xc5\xd2\xa0\xac\xa6\xdf\x94\x9b\x53\x2f\
+\x20\x3b\x77\x3f\x12\xbf\x14\x73\x29\x8f\x79\x66\x04\xc8\xfd\x69\
+\x7c\x82\x31\x56\xd6\x8f\xf1\xd9\xdc\x5d\xd5\xdf\x8a\x3f\xea\x45\
+\xae\xa3\x76\x43\x8e\xeb\xd1\xaf\xf5\x8a\xf5\x8f\xe2\x1f\x18\x5b\
+\xef\x00\xde\x8e\xfb\xfa\x37\xda\xb3\x8e\x97\xa7\xf4\x19\xfb\x46\
+\x5d\xdf\xb3\x8c\x7a\xc4\xeb\x1f\xf7\x53\xdc\xaf\x4d\xb9\xe5\xed\
+\x36\x39\x7f\xaf\xc5\x6a\x60\x4d\xd1\x1f\xcb\xac\xe2\x71\x56\x7f\
+\xb5\x8e\x55\x05\x3b\xa8\x7f\xf8\x7b\x20\x21\x01\xd4\x81\x45\x5c\
+\x75\xd0\x96\x08\x3f\x4a\x47\xbf\x90\xf9\x05\x7f\xd5\x98\xbc\x5b\
+\x00\x31\xe0\x87\x3c\x4c\xb3\x5f\x22\x54\x78\xb1\x1d\xd0\x12\x7f\
+\xa0\xeb\x4a\xd3\x0f\xb4\x25\xc2\x52\xe9\xe8\x09\xb2\x58\xbf\xea\
+\x93\x26\x8e\xfc\xb1\xd6\x3d\xa9\x3f\xd6\x77\x98\xaf\xde\x81\x8b\
+\x3e\xde\xbd\x25\xf7\x4d\xf6\x22\xf9\xe7\xf3\xb7\xe8\xee\xfb\xfa\
+\x73\x9f\x12\x47\xf9\x86\x76\x40\xef\x44\xda\xff\xac\x9b\xa8\xf5\
+\xe3\x17\x17\x4f\xe1\x79\x1a\xfa\x10\xa7\xfe\xeb\x8c\xc6\xa4\x1f\
+\xa2\xfa\x73\x9b\x1d\x9c\xff\x83\xcf\x81\x34\xe2\xc7\xba\x9a\x05\
+\x8d\xfc\x61\x83\x18\x93\x0d\xe0\x57\x35\xd7\x7e\xb3\x78\x14\xb0\
+\xc1\xe8\xfd\x5a\x1c\x0e\xf2\x38\x5f\x86\xa3\x7c\x4d\x99\xbc\x92\
+\x1d\x7d\x13\xa1\xa3\x34\x6d\x81\x18\x90\x9d\x48\xf5\x77\x55\x1d\
+\x8e\xdb\xea\xc0\x27\x3e\x99\x12\x3e\x45\x8e\x77\x56\xe9\x8b\xe3\
+\xb5\x78\xdc\x7b\x44\xe8\x29\x5d\xb3\x23\x7f\xb4\x5f\x4d\x40\x1e\
+\x75\x14\xe9\x9b\x08\x99\xd2\xb4\x3d\x51\xf7\x3f\x6b\x25\xce\xa9\
+\xff\x73\x9f\x4b\xe9\x8c\x2b\x6a\x37\xeb\x34\x74\xa7\x0c\xe6\x41\
+\x84\x8d\xd2\x2d\x1f\xa3\xf5\x32\x03\xf2\x4a\xb6\xf0\xdd\x7d\x99\
+\x62\x5e\x61\x0f\x66\xb4\x06\x95\x6b\xf1\xc2\x5b\xd6\x1f\x39\x85\
+\xb2\x44\x9c\x7d\x83\x08\xf6\x23\xff\xcb\x18\x6a\x3b\x31\xbf\x3e\
+\xd7\xac\xbf\x6f\xf5\x6b\x49\x28\x9d\x37\x1f\x3e\xc5\x8f\xcf\xb0\
+\x62\x3d\xa3\x76\x8d\x1c\x9a\x06\x79\x20\x33\x5d\x5d\xff\x91\xc3\
+\x03\x63\x53\x1d\xc0\x5f\x99\x17\x7d\x2c\xa5\xf3\x3e\x64\x5f\xb5\
+\xfe\xc1\x94\x3e\x70\x6e\x4a\x9f\xfa\xcc\xe0\x74\xda\xfd\xfa\xf3\
+\xdc\x9e\x78\x7e\xad\x7b\xfe\x73\x6b\x02\x31\x76\xbe\xff\x37\x58\
+\xff\xfb\x3f\x98\xd2\xed\x6f\xeb\x65\x35\x0f\xf8\x23\x02\xe7\xe4\
+\x3e\xd6\x3f\x78\x06\x32\xaa\x24\x36\x6c\xb4\xa2\x66\x41\x1e\x8c\
+\xb9\xb1\x88\x94\x01\x31\xa2\x3f\xf2\x5c\xb8\xde\x41\x43\xf5\xe1\
+\x8d\xc9\xa6\x33\x94\x2f\xc4\xd4\x50\x31\x5f\x0d\xd2\x3b\x34\x82\
+\x01\x23\xb6\xf4\xe9\xa3\x92\x8f\xdf\x28\x72\x0d\x54\x71\x5e\x9e\
+\xb4\xdc\xeb\xa6\x63\xa8\xb5\xea\x67\x12\x07\x5c\xb9\x03\xf8\x84\
+\x38\x5e\xbb\xb8\xf8\x13\x29\x7d\xec\xe2\x94\x3e\x6e\xff\x9a\xba\
+\xd0\x6e\x1c\x1f\xfe\x48\x4a\x5f\xb6\x77\x54\xf5\xe7\x08\xc8\xbc\
+\xff\x74\xcd\x95\x3e\xf2\xf5\x6f\x05\x3c\xd1\xf7\xff\x06\xeb\xc7\
+\x6f\xd1\xdf\xfa\x96\x29\x5d\xee\x72\xcb\xb7\x12\xde\x2c\x81\xdf\
+\x6f\xe1\xba\x13\x61\xd5\x4a\x67\xe3\xe7\x7f\x21\xe0\x31\x6c\x58\
+\x04\xc2\x40\x72\x0c\x8a\x39\xe9\xa9\x72\xd8\x8c\x46\xf6\x0d\x3e\
+\xf6\x17\x73\xc0\x7c\xe4\x9f\x3c\x08\x67\x0e\xf7\x6d\xce\x89\x30\
+\x27\x0d\xf4\x61\x04\x7e\xa7\xd9\x05\x06\xa3\xf8\x26\x27\x0f\xfa\
+\xa4\x81\x18\xad\xfe\x74\x5a\xe1\x98\x6d\xdd\xde\x0e\x12\x7e\xec\
+\x1f\x72\x53\x60\xbe\xa4\x19\x3f\x78\x1e\xd5\x17\xf5\xe1\x87\x3c\
+\xb7\x5d\xb3\xfe\x18\xff\x44\x9c\xa3\x5f\x58\x23\xef\x39\x68\x7b\
+\xe0\x17\xfc\xf8\xc0\xb7\xd9\x82\xc6\x8d\xe0\x2b\xf6\x00\xe2\x81\
+\x8b\x3f\xde\x52\xfb\xa5\x2f\x75\x88\x0f\xf2\x7d\xe1\x12\x7b\xd8\
+\xeb\x15\x78\xcd\xe2\x73\xf6\x4e\x29\xfc\x8c\x2c\x90\x17\x01\x5f\
+\x9b\xbc\xe7\xd0\xcb\xb8\x5e\x2e\x67\x2e\x50\x08\xa3\xa5\x1f\xe5\
+\x08\x70\xd8\xff\xd6\x44\x34\xc6\xc6\xa8\xff\xc6\x27\x6f\x15\xb9\
+\x3b\x8d\x07\x6c\xa6\x3c\x7c\x3d\x8c\x06\xe2\x0f\x88\x67\xdb\x07\
+\x3e\xbf\xf3\xc1\x94\x96\x11\x1f\x0a\xfd\xb8\xfd\xa1\x51\x1a\xee\
+\xcf\xfc\x03\x31\xe2\x7e\x89\xf2\x6d\xac\xff\xe0\x45\x74\x24\xc0\
+\x44\x3a\xaa\x4b\x8a\x74\x0b\x5b\x17\xd8\x75\xfd\xb7\xe2\x8f\xe4\
+\xde\x41\xe3\xe6\x0e\x73\x73\x30\x0f\xe8\x97\xe8\x12\x6f\xe4\xbb\
+\xc0\xd8\x74\xfd\x7e\xa1\xc1\x06\x59\x92\x7f\x21\x8d\x05\xeb\x88\
+\xeb\x5f\x04\xde\x1e\xf5\xef\x7e\x75\xb1\x66\xa1\xbc\xfe\xe6\xcc\
+\x73\xb6\xb5\x1e\x73\xb3\x6c\xf9\x6b\xc9\x19\x6f\xea\xfe\xf2\x75\
+\x3f\x8e\xd6\xbf\x55\x3f\xeb\x26\xa2\x1f\x4a\xb3\x3f\xc4\x13\xbd\
+\xfe\x57\xbf\x2e\xa5\x4f\xda\xeb\x5c\x8f\x78\xd8\xf8\xf5\x10\x3c\
+\x4b\x7d\xc6\xdf\xa5\xf4\xee\xf7\xec\xf7\xf9\x3f\x78\x0d\x84\x0b\
+\x57\x43\x2e\x36\x11\x67\xac\x9f\xac\xf9\x8c\x25\x9d\xa7\xee\xa6\
+\xd7\x2d\x38\x6d\x5d\x00\x0a\x26\x55\x16\x63\x12\xa1\xc8\xd8\xc4\
+\x98\xaf\xdf\x58\x60\x90\x2f\xd0\x55\xe7\x59\x40\x3f\xc4\xe8\xcf\
+\x63\xdb\xa1\x94\x43\xc9\x77\xb3\x7e\x3a\x22\x9a\x93\x3e\x36\x68\
+\xe6\x25\xce\xc9\x03\x8b\xba\xc4\x98\xef\xdc\xfa\x25\xcc\xce\xc8\
+\xbe\x16\xd4\x97\xb3\x20\x62\x3a\xa0\xf3\xa4\xb7\xb1\xb9\xb3\xa8\
+\x14\x17\x20\xfb\xab\x01\xfd\x10\x63\x3f\xe9\x9b\xee\x3d\x1f\x9d\
+\x04\xc7\x31\x3c\x54\xc9\x73\x55\xda\x12\x8d\xd9\xc7\x06\xed\x4a\
+\x0b\xc4\x94\x3c\xa7\xf3\xa4\xb7\xb1\xb9\xb3\xa8\xc4\x60\xc0\x09\
+\x83\x7e\x88\x87\xfa\x87\xfd\x64\x6f\xd9\x5e\xb4\xb4\xef\x55\xa1\
+\xbf\x68\xfb\xbb\xde\x9b\xd2\x6f\xfe\x6e\x4a\xb7\xb8\x69\x4a\x57\
+\xbf\x7a\xb7\xfe\xf8\x97\x26\xf8\xf8\xf7\x95\x0f\x71\xa8\xfe\xc8\
+\x26\x42\x77\x40\xe7\x49\x6f\x63\x73\x67\x51\x69\x03\xeb\x3f\x7c\
+\x0d\x04\x8e\xe9\x14\xd9\x90\x06\x96\x06\xf9\x44\xe8\x28\x5d\xb2\
+\x11\x1e\xeb\x20\x42\xa4\xb4\xa8\x1e\x0d\x79\xa8\x7f\xb1\xe6\xe8\
+\x38\xd6\x92\x3d\x39\x9a\x15\xd8\x6d\x14\xd6\xca\x4d\xd8\xaa\x9f\
+\x7b\x9d\x88\xec\x95\x6e\x54\xc3\x30\x44\xa8\x2b\xdd\x30\xdf\xbc\
+\x18\xc1\x59\x33\xbc\x93\xae\xd5\x44\x3e\x91\x36\xc0\x09\x83\xb5\
+\x12\x61\xa2\xf4\x04\x17\x9b\x55\xd9\x51\xfd\x5f\xb6\x1b\xc5\x5b\
+\xed\xa7\x86\x13\x1e\xbb\x1c\x2b\xd4\xef\xaf\x81\xf4\xab\x16\x36\
+\x0c\xee\x5c\x7c\x5a\x8a\xba\x48\xfb\x53\x4b\x9b\x8f\xe4\xe0\x41\
+\xcf\x1e\x18\xa4\x81\xa5\xd1\xf2\x57\xb2\x59\xc6\x8b\xf9\x44\xdd\
+\x18\x6f\x94\xe0\x9e\xd5\x1f\xf3\x8d\xf5\xb5\xe4\x9b\xae\x3f\xfa\
+\xdb\xd5\x1c\x7d\xc0\x38\xea\xfa\x5b\xf1\xc2\xf6\x19\x6d\xaf\x2e\
+\xeb\xc5\xb1\xe9\xcf\x1c\x72\xcd\x61\x45\xfa\x50\x7f\xd7\xc3\x56\
+\xff\x16\x9d\x2e\xeb\x8f\x16\x28\x2c\xe0\xdc\x7e\x07\xf3\x91\xfb\
+\x56\x3e\xb3\xe3\x35\xf6\x47\x2b\xde\x28\xc1\x50\xc0\x94\x7c\xba\
+\x67\x20\x30\xb4\x31\x32\x20\xcf\xa5\x59\x9e\x79\x60\xc5\x05\x44\
+\x42\xe0\x79\x62\x59\xde\xf3\xc0\xce\x72\xe0\xa6\x87\xfb\x66\x0c\
+\x3a\x67\x2e\xb9\x3e\xb0\x3d\x3f\x95\x3b\xb3\x63\xc4\xfc\xdc\x1c\
+\x39\x67\x7d\x8d\xe1\x66\x26\xa0\x8d\xab\x6c\xba\x7e\xf6\x29\x23\
+\x7b\xcb\x1a\x18\x1b\xe8\xf9\xd8\x81\x39\x2e\x18\x46\xb1\x00\x90\
+\x42\xf7\xfc\xcc\x6b\xfa\x73\xa7\x3b\x3e\xb0\xc7\x96\x46\x33\x5f\
+\xd4\x85\xde\x48\xcd\xeb\xd4\xcf\xde\x02\x31\xe0\x8b\x39\x38\x83\
+\xb9\x89\x7c\xad\xfd\x9f\xfd\x4c\x3d\x9f\xbc\x5c\xe4\xe0\xc9\x20\
+\x41\x7b\xc0\x47\xcf\xe8\x72\xa6\xb8\xe7\x67\x39\x6b\xe9\xeb\x83\
+\xb9\xf8\x23\xdd\xcb\xcd\xce\x79\xf4\x0f\x5d\xd0\x88\x69\x83\x34\
+\x7b\x4e\x5d\xda\x77\x5a\x4b\x8e\xd9\xcf\x54\x7f\x1e\x5a\xf2\x3d\
+\xd4\x6f\xbd\x45\x0f\xb9\x3e\x20\x85\xee\xf9\x99\x17\xd7\x27\xf6\
+\xd3\xe5\x70\x29\xeb\x3b\x78\x11\xdd\x64\xbd\x10\x74\x5c\x00\xbe\
+\x83\xc3\x31\xeb\x32\x88\xeb\xe3\xc0\x45\x57\x5a\x78\x0c\xee\xe2\
+\xcc\x27\x0f\xc5\x79\x92\xb9\x20\xe8\x4c\x1d\x9e\x87\x29\x13\xdd\
+\x8e\x71\x89\x13\x9c\x31\x17\x57\xa5\xb3\x9c\xcf\x51\xd7\xcf\x5e\
+\xf4\x39\xb1\x8e\x8c\x9e\x9e\xd1\x39\xbd\x7e\xaf\x50\xad\x5f\x8b\
+\x9e\xd1\x6e\x40\x1f\x0b\xaa\xa1\xfe\xb6\xf5\xf6\x35\xbc\x94\x5c\
+\xcf\x51\xd7\x7f\xb2\xaf\xff\xa1\xfe\xee\x9c\x38\xaa\xeb\xdf\xbe\
+\x9d\xff\xa5\xf5\x1f\xbe\x06\x12\xce\x7f\x5e\x4c\x88\xa3\x0b\x92\
+\x9d\xc1\x2e\xe3\x15\x2c\xd8\xc7\xeb\x0f\xce\x7b\xf2\x82\xaa\x4f\
+\x19\x87\x58\xd2\x39\x4a\x1e\xf3\x20\xee\xa2\xfe\x3e\xf6\x51\x16\
+\x9e\x63\x31\x36\x71\x07\x29\xec\x34\x24\xeb\x26\x9e\xf4\xeb\xcf\
+\x3f\x44\x88\x47\x70\xfe\xf7\xbd\xdf\xc1\x4e\x60\x6c\xe2\x61\xfd\
+\x79\x61\xc8\x68\xeb\x7f\xca\xac\x75\xc1\xd5\x1f\x03\xa8\xb4\x33\
+\xed\xc0\x8d\x05\xb4\x87\x4f\x33\x2a\xed\x02\x67\x88\x0d\x7d\xac\
+\x88\x5c\x64\xe2\x8a\x6e\x96\x9b\x69\xcd\x4a\xd3\x4a\x6b\xca\x75\
+\xb3\x0f\x2b\xd5\x1f\xfc\x79\x18\xf2\x6c\xc2\x5a\x81\x4a\x33\x9d\
+\x13\x12\x77\x59\xbf\xae\xb9\xd2\x6c\x34\x73\x03\x62\x4d\xc0\xcf\
+\xa8\xb4\x0b\x9c\xd1\xc9\xa1\x56\x1c\xaa\xa3\x74\x56\xd6\x35\x57\
+\xba\xe8\x6b\x13\x4c\xad\x59\x69\xfa\xd6\x1c\x8d\xf6\x69\x46\xa5\
+\x0f\xf5\x5b\xc3\xbc\x21\x82\xec\xa1\xa2\xea\x28\x9d\x75\x74\xcd\
+\x95\x56\x17\x1b\xa5\x75\xcd\x33\xed\x37\x10\x04\xf7\x04\x04\x4b\
+\x05\x6a\x92\x4a\xf7\x49\x16\x02\xf4\x37\x9a\x5e\x69\x4b\x84\xc5\
+\xf6\x9c\x32\xae\x54\xcf\xbe\xd5\xdf\xea\x67\x90\x6f\xbb\xfe\x2d\
+\xad\xdc\x3c\xb7\xac\x19\x56\xa4\x81\xf6\xd8\x76\xfd\xee\xdf\x42\
+\x01\x95\x46\x2a\x3e\x42\x3e\x03\x5e\x56\x99\x05\x2d\x7f\x41\x7e\
+\xa8\xdf\xba\x9b\xf7\x81\xf7\x82\xeb\x64\x38\xe9\x7a\x36\x57\x1f\
+\x6e\xe1\x9b\x23\xac\x87\xb3\xc9\xa3\xce\x1c\xa4\x2d\x50\x69\xfa\
+\x50\x9e\xd1\xbb\x58\xff\xe5\xbf\x07\x82\x86\x22\xf7\xdc\xa4\xd6\
+\x8b\x62\xf1\x35\x0c\x14\x44\x1e\x6a\x26\xed\x7e\x6c\x1e\xe5\xd0\
+\x59\x75\xa8\x2f\xfa\x87\x2f\xf6\x18\xb4\xea\xb8\x2c\x37\x9d\xfa\
+\x23\xf9\x9e\xd5\xdf\xea\x5f\x94\x7b\x8d\x38\xe4\x31\xaa\x6f\x66\
+\xfd\xf4\xb3\x4b\x64\x0d\xc8\x81\x34\x10\x63\xdb\xf5\xfb\x3e\xc9\
+\x7b\x1a\xf1\x5a\xf1\xe7\xca\xe1\x73\xd9\x88\xf5\xb5\xfc\xc3\xd7\
+\x61\xff\x2f\x3a\xda\xea\xd7\x48\x7e\x38\xff\x9b\xd7\xff\x63\xd8\
+\x60\x68\x1c\x06\x69\x6e\x3a\xb0\x9d\xe7\x52\x3b\x64\xbd\x1e\xc1\
+\x22\x4f\x68\xf2\x46\xfe\x4c\x97\xbc\xde\xa5\xd8\x33\x16\x70\x95\
+\xc1\xb8\xc4\xe8\x83\xb1\xe9\x1f\x7a\xe4\x41\x97\x74\x2f\x27\x8f\
+\x8e\x98\x2b\xd1\xf8\x1a\x8b\x34\x71\xe4\x2f\xc4\x83\x5b\xea\x82\
+\x76\xfd\x8c\x98\x23\x0c\x79\x98\xb7\x06\x7d\x11\xa3\x7e\x2b\x9f\
+\x91\xdc\x1c\xcc\x89\x1f\xe3\x1d\xf5\x9c\x75\x13\x63\xfc\x51\x7d\
+\x61\x3d\x46\xf2\x58\x3f\xd7\x9d\x68\x72\x8d\x45\x9a\x38\xf2\x17\
+\xe2\x21\x3f\xea\x82\x66\xaf\x81\x18\x08\x43\x9e\x33\x1a\x07\xfa\
+\x22\x46\xf5\x56\x3e\x23\x79\x8c\xcf\xba\x89\x26\xd7\x58\xa4\x89\
+\x23\x7f\x87\xfa\xbb\xf5\xac\xf4\x8f\x6b\x0d\xc4\x80\x1a\x79\xce\
+\x68\x1c\xd8\x77\x62\x54\x6f\xad\xc7\x48\x1e\xe3\x33\x6f\xa2\xc9\
+\x4f\x11\xba\xbf\x2f\x80\xe7\x7c\x3b\x10\x07\xc2\x98\x59\x65\xee\
+\xb6\xd9\x97\xd2\x15\xf5\x55\x42\x0c\x5c\xb1\xf1\x40\xa5\xa9\xa4\
+\x39\x28\x5d\x95\x9b\x92\xeb\xe1\x50\x32\xa0\x61\x05\xd5\x44\xe9\
+\x8a\xfa\x20\x44\x49\xff\x9f\xec\x3b\x98\x30\x80\x4a\x77\xdc\x61\
+\xcd\x1b\xaf\x9f\x41\xf6\x00\x77\x52\x7f\x69\x41\x1a\xbd\x50\x13\
+\xa5\x6b\x66\xaa\xa3\x34\xf5\x75\xcd\x95\xa6\x5c\xd7\x5c\x69\xca\
+\xd5\xa7\xd2\x55\xb9\x29\xb9\x1e\x0e\x25\x03\x1a\x56\x50\x4d\x94\
+\xae\xa8\x0f\x42\x94\xf4\xb5\x66\xa5\xe9\x4f\x6b\x56\x9a\x72\xf5\
+\xa9\x74\x55\x6e\x4a\xae\x87\x43\xc9\x80\x86\x15\x54\x13\xa5\x2b\
+\xea\x83\x10\x25\x7d\xad\x59\x69\xfa\xd3\x9a\x95\xa6\x5c\x7d\x2a\
+\x5d\x95\x9b\x92\xeb\xe1\x50\x32\x30\xf6\xf2\x17\xd1\x35\x0b\xa5\
+\xab\x11\x25\x10\x75\x04\x79\x67\x04\x2a\x2d\x2a\x6b\x91\xea\x53\
+\xe9\x95\x9d\x6a\xcd\x4a\xd3\xa1\x36\x55\x69\xca\x03\x6a\x4e\x4a\
+\x07\xb5\xfa\x54\x73\x50\x3a\x5b\xa8\x4f\xa5\xeb\x0e\x1b\x92\x42\
+\x8c\x86\xc5\xd1\x88\x91\x57\x21\x37\xad\x59\xe9\x95\x93\xd2\x18\
+\x4a\x13\x6d\xd1\xe1\x00\x00\x40\x00\x49\x44\x41\x54\xd3\xa1\xae\
+\xb9\xd2\x94\x07\xd4\x9c\x94\x0e\x6a\xf5\xa9\xe6\xa0\x74\xb6\x50\
+\x9f\x4a\xd7\x1d\x36\x24\x1a\x43\x69\x9a\x69\xcd\x4a\x53\x1e\x50\
+\x73\x52\x3a\xa8\xd5\xa7\x9a\x83\xd2\xd9\x42\x7d\x2a\x5d\x77\xd8\
+\x90\x68\x0c\xa5\x69\xa6\x35\x2b\x4d\x79\x40\xcd\x49\xe9\xa0\x56\
+\x9f\x6a\x0e\x4a\x67\x0b\xf5\xa9\x74\xdd\x61\x43\xa2\x31\x94\xa6\
+\x99\xd5\x7c\x0a\x03\x81\x47\x1a\x58\x7a\xa8\x8e\xfb\x50\xa7\x46\
+\xbb\x7d\x46\xf5\xe5\xba\x13\x0e\xab\xd8\xd0\xad\xc6\xf6\x8b\x8b\
+\xe6\x96\x95\xd4\xbf\xd2\x03\x1f\x36\x81\xac\xf4\x80\x1e\xed\xdc\
+\x46\x63\x6c\xb8\xfe\x29\xf1\x99\x0b\x75\x51\xb7\xf3\x90\x97\xe6\
+\xe6\xc9\x2e\x72\xef\xf5\x43\x3d\xd1\x1f\xf5\xc8\xcf\x6e\x76\x0a\
+\x9a\x0b\x69\xe6\xb9\xcd\xfa\x35\x56\xdf\x00\xed\xb1\xf4\xbe\xcf\
+\x27\xf4\xb7\xb7\xab\x10\x1a\x83\x3e\x14\x61\x46\x1d\xa5\xa9\x73\
+\xa8\x7f\x7b\xfb\x9f\x7d\x27\xfa\x12\x1e\xd6\xdf\x7e\x50\x6a\xc9\
+\x68\xbe\x68\x67\xb6\xb8\xf1\xf6\x7d\x04\x61\x0c\x7f\xb1\x11\x64\
+\xa6\xd9\xf4\xe8\xaf\xd7\x85\x13\x0e\xa5\xc9\x5b\x11\x63\x7c\xb8\
+\x61\x2e\x53\x5c\xc6\x7c\xa3\xbf\x5c\xee\xd6\xea\x8f\xf1\x91\x33\
+\x7b\x3b\x25\xff\x98\x2f\x6c\xd6\xa9\x7f\x4a\xcc\x6d\xeb\xec\xb2\
+\xfe\xd8\xcf\x93\x6d\xfd\x0f\xf5\x77\xe7\x1f\xcf\xa1\xc3\xfa\xdb\
+\x2f\x12\x7a\x13\xf2\x45\x3b\x5e\xb0\x8a\x1b\x06\x37\x85\x7c\x95\
+\x80\x19\x9b\xe8\x2c\x5e\xfc\x89\xc6\x64\xb3\xb3\xc9\x00\x46\xf6\
+\xd0\x1f\x68\xcc\x9b\x30\x16\x11\xd6\x4a\x33\xd7\x3e\x7f\x0b\xe6\
+\xbc\x1c\x74\xdf\xea\x67\xee\xc4\x52\x37\x54\x46\x9a\xb8\xe9\xfa\
+\x4b\xf1\x8f\x9a\xa7\xb5\xc5\xfa\x28\x23\x46\xf9\x61\xfd\xbb\xf3\
+\xeb\xb0\xff\xbb\x5d\x8b\x7d\x72\x38\xff\x17\xd7\xc8\x55\xae\x7f\
+\xc7\xf4\x82\xcd\x13\x8f\x18\x4f\xc0\xae\xed\xab\x1f\xe9\x97\xb8\
+\x69\xff\x31\xb3\xd1\x05\xc3\x14\xc8\xa3\xee\xa1\x7e\x76\x62\xb1\
+\x91\x8e\x6a\x7d\x16\x91\xb7\x43\x71\xad\x81\x18\x58\x6b\xf2\x9c\
+\x91\x79\x3d\x9d\x37\xc3\xb6\xea\xa7\x5f\x22\xe2\x2a\xcd\x3c\x36\
+\x85\xac\xf5\x50\x7f\xd7\xd1\xc3\xfa\x6f\x7e\xff\x0f\x3e\x07\xd2\
+\xda\xb8\xbe\xd9\x6d\x37\x72\xd3\xf3\xe2\x4b\x6c\xde\xc1\xb2\x2d\
+\xf4\x36\x3e\x74\x77\x64\xff\xcc\xab\xc7\xac\xc3\xfc\x63\xbe\xad\
+\x9c\x8e\xba\x7e\xc4\x63\x8e\xc8\x8d\x74\xdf\xbf\x5c\x4f\xff\xb4\
+\x0d\x75\x93\x97\x49\xd8\x81\x85\x11\xf3\x1f\xf9\xeb\xd4\xf6\xfa\
+\xc8\x9e\x78\x92\xac\x95\x05\x6e\xb9\xfe\xd8\x3f\x86\x25\xc6\x7e\
+\x32\x57\xb7\xb3\x84\xa3\xbc\xd5\xe8\xa6\xfd\xa1\xfe\x74\x19\x7b\
+\x1b\xd0\xd5\xaf\x9a\xd2\xb5\xae\x99\xd2\x95\xce\x4c\xe9\xeb\x4f\
+\xb7\xc7\xd7\x77\x78\x3a\x68\x7b\x5c\xe1\xf2\x5d\xa7\xfd\x57\x25\
+\xad\x67\x78\x07\x13\x7e\x83\x1e\x73\xfc\x92\xe4\xa7\xed\xb7\xe7\
+\xf1\xf8\xd4\xa7\x33\x6d\x88\xdf\xa3\xc7\x6f\xd4\x7f\xf5\xab\x8b\
+\x55\x3a\xac\x3f\x36\x71\xbe\x8e\x18\x89\xed\x37\x78\x0d\x64\xb4\
+\x61\xb3\x52\xbe\x1e\xbb\xb1\x5e\xa0\xc8\x27\x9a\xfa\xe0\x7f\xf4\
+\xbc\xd0\x11\xa3\xbc\xf7\x85\x4c\x5c\x68\x07\xd0\xea\xd0\x05\x13\
+\x0e\xb4\x21\x4e\x30\x89\x2a\xfb\x56\x3f\x4b\x21\x22\x5f\xa5\xfb\
+\x89\x32\x95\x8e\x05\x36\xe6\xcd\xfa\x1b\xf6\x47\x21\x1e\x94\xc7\
+\x09\x11\x09\x28\x3d\x33\xa1\x66\xfd\xf0\x2d\xfb\x93\xa1\x88\x1e\
+\x5e\x26\xdc\xf7\xc4\x28\xef\x7d\x55\xf6\x3f\x5d\x11\xdd\x1e\x07\
+\x0e\x0a\x88\xe0\x2b\x4d\xbd\x89\xb8\xef\xf5\x5f\xf6\xb2\x29\x5d\
+\xf7\x5a\x29\x5d\xfb\xda\xf6\xb0\x1b\x06\x6e\x1a\xd7\x3a\xab\xfd\
+\xbb\xe2\xad\xf2\xaf\x7e\xb5\xb2\x06\x6e\x1e\x17\x7c\x34\xa5\xf3\
+\x3f\x9c\xd2\x87\xec\x71\x9e\x3d\x2e\xba\xc8\xb6\x40\xee\x31\x5b\
+\x4d\x84\x97\xd2\x5a\x97\x78\x1e\x91\x7b\xe9\x38\x5e\x7f\xbf\x81\
+\x60\xe3\x60\xa0\x50\x6e\x22\xcc\x49\xf7\x72\xf0\xa0\x07\xa1\x8d\
+\x28\xef\xb8\xd3\x8f\xad\x78\xd3\x3d\x75\x9a\x53\xf2\x61\x2d\xb0\
+\x20\x4d\x6c\xe5\x83\xba\x8f\xb2\x7e\x8f\x67\x01\x07\xfd\x96\xbc\
+\x5b\xf9\xa2\xc6\x38\x58\x2b\xf8\xa4\x89\xab\xf8\x8b\xfe\x8f\x62\
+\xbe\x4e\xbe\xb4\x5d\xa5\xfe\x93\x7d\xfd\x77\x51\xff\x15\xed\xd9\
+\xc4\x37\xdc\x22\xa5\x5b\xde\x3c\xa5\x9b\xdd\x24\xa5\x53\x4f\x3d\
+\x8a\x1d\xd6\xc5\xf0\x1b\xd6\x75\xec\xa6\x65\x0f\x0e\x3c\x63\x39\
+\xf7\xfc\x94\xfe\xf1\x9d\x29\xbd\xed\xed\x29\xe1\xa7\x67\x75\x4f\
+\x51\x6f\x0a\xb6\xce\xb7\x7d\x3b\xff\x4b\xeb\x7f\x0c\x45\xf8\x55\
+\x11\x90\x2f\x56\xda\x90\x12\x4d\xde\xa8\x40\xf3\x21\xee\x9a\x37\
+\x24\xc6\xed\x11\x5d\xc7\x15\x7a\x85\xc1\x9c\x88\x70\x11\x17\x68\
+\xe4\x96\x77\x83\x1c\x13\xb6\xac\x89\xba\xea\x8f\x34\x91\xba\x40\
+\x8c\xe0\x6e\x14\xdf\xfd\x9b\x32\xed\xfb\x5a\x73\xfc\xde\x89\x13\
+\x8b\x56\x50\xec\xf1\x4c\xd6\xc7\x6b\xe4\xbb\xe9\xfa\x73\x5a\x3b\
+\x05\xf6\x18\x49\x78\x3f\x33\x32\xa9\xbe\xb7\xc6\xd8\x74\xfd\xf4\
+\x4d\xf4\xf5\xc8\x6b\x80\xf8\xcc\x0d\x88\x11\xe3\x7b\xbe\xc7\xf1\
+\xfa\xb3\x6e\xe2\xb6\xea\xbf\xfe\x75\xed\xa6\x71\xcb\x94\x6e\x65\
+\x37\x8d\x6b\xdb\x33\x8e\x7d\x1a\xb8\x81\xe1\x46\x86\xc7\xc3\x1f\
+\x62\xcf\x4c\x3e\x62\x37\x13\xfb\x25\x41\x3c\x2e\xb8\x30\x5f\x3f\
+\x72\xc2\x27\xc3\xfa\x8f\x7f\x0f\x44\x56\xcb\x37\x88\xcd\x81\x18\
+\xf1\x04\xe1\x89\x42\xa4\x8e\x2b\x43\x3f\x0b\x88\x2e\x17\x65\x92\
+\xc4\x18\x8f\x7e\x56\x45\xc6\x25\x16\xfd\x30\x78\x16\xea\x34\xe6\
+\x03\x19\x79\x50\xa7\x2e\x51\x79\x4e\x67\x81\xc6\x1f\xd0\x50\xb2\
+\x41\x7b\xfa\x06\x62\x80\x4f\x1e\xe7\x8a\x91\xc6\x5c\x07\x63\x11\
+\x55\xd6\xd3\x0c\x9e\x19\x3a\x65\x6c\xe6\xd3\xdb\xec\x98\xd0\x1c\
+\x95\x8e\x69\xb1\x6e\x62\x94\xfb\x3c\x38\xd0\x69\xac\x1f\x32\xf2\
+\x60\x4b\x5d\xa2\xf2\x9c\xce\x02\x8d\x3f\xa0\xa1\x64\x83\xf6\xf4\
+\xcd\x7e\x83\x4f\x9e\xea\x51\x5f\x79\xa0\xe3\x60\x2c\x62\x94\xfb\
+\x5c\x9d\x19\x43\xa7\x8c\xbd\x6a\x3e\x8c\x4b\x44\xbc\x01\xed\x09\
+\x74\x31\x4f\x3b\x2d\xa5\x3b\xde\x2e\xa5\xbb\xdd\x25\xa5\xb3\xae\
+\x91\x05\xc7\x01\x5c\xd7\xfe\x9d\x86\xc7\x03\xef\x9f\xd2\xc7\x3f\
+\x91\xd2\x6b\x5e\x97\xd2\x6b\xdf\x90\xd2\x17\x2e\x59\xd4\x3a\xa8\
+\x59\x1a\x4c\x92\xb8\x6e\xbf\x63\xbb\x18\x97\x18\xe5\x3e\x67\xf0\
+\x2c\xd4\xe9\x94\x7c\x8e\xf5\x57\xa9\x82\x77\x0f\x6c\x5e\x98\x00\
+\x9d\x13\xe3\x1d\xb6\xe0\x62\x39\x0b\x8e\x98\xa5\x91\xfe\xbf\x45\
+\xe3\xf1\x7f\x8c\xcb\x8d\xdb\x52\xe4\xcd\x1c\xa1\xcd\x50\x40\x1f\
+\x23\x06\x05\x1d\xee\x43\xfd\xec\xf5\x30\xb3\x69\xb3\x4d\xd7\x3f\
+\x2d\xea\xfe\x68\x6d\xba\x7e\xae\x05\x91\x7b\x0b\xb8\xd2\x80\x23\
+\xee\x41\x23\x4b\xfb\x9f\xb1\x56\xf1\x7f\x3c\xd4\x7f\x5d\x7b\xb6\
+\x71\xb7\x3b\xa7\x74\xfb\xdb\x1e\xed\xbf\xa7\x56\xe9\x67\xcb\xe6\
+\x6a\x57\x49\xe9\x21\x0f\x4c\xe9\x01\xf7\x4b\xe9\x9c\xb7\xa6\xf4\
+\xca\xd7\x74\xcf\x50\xaa\x76\x27\xc0\xfa\x77\xbf\x89\x5e\xab\x90\
+\x27\x46\xc6\x30\xed\xfe\x85\x60\x4c\xbf\xd0\x16\x7c\xc4\x13\x6c\
+\xb4\xa1\xb3\x2d\x4f\xc0\x28\x2f\xb8\xac\xb2\xd4\x96\xfe\x22\xc2\
+\x98\x35\xf4\x8e\x46\x8c\x5e\xb2\x50\xce\x3a\x54\x25\x6a\x4c\xb1\
+\xea\xc9\x4d\xd7\x3f\xd7\xdf\xa6\xeb\xef\x0b\xdb\x21\xc1\x9e\x23\
+\x05\xd2\x40\x8c\xd8\x9f\x4d\xd7\xcf\x75\x27\xc6\xf8\x5d\x16\x8b\
+\x63\xcc\x27\xea\xb7\xe4\x0b\x4f\x1d\xd5\xd2\x8f\x72\xcc\x31\x88\
+\x4e\x3b\x47\x0e\x2c\x46\x58\x3d\x49\x19\xfd\x64\x01\xd9\xb1\x9e\
+\xde\x8e\x7a\xa6\x48\x1d\xb0\x48\x03\xef\xf0\x8d\x29\xdd\xfb\x1e\
+\xdd\x5f\xef\xd1\xee\x78\x9f\x5f\xee\x72\x29\xdd\xf9\x9b\xba\xc7\
+\x79\x1f\x4a\xe9\x15\xaf\x4e\xe9\x4d\x6f\xe9\xde\xf5\xc5\x35\x42\
+\x8d\xa4\xb9\x3e\xda\x9f\x52\x0f\x5a\xfa\x51\x4e\xbf\x44\x8f\x19\
+\x1d\x73\x31\x23\x5f\x95\x97\xac\xbf\x3f\x03\xa9\xfd\x95\x13\x13\
+\x8a\x05\xc2\xaf\xf3\x18\xdc\x19\x36\xc9\x01\xa3\x3e\xd4\xc0\xab\
+\x0d\x16\x4a\xac\xe9\xd5\xf8\xf4\x4d\x8c\x7a\x21\xbd\xfe\xc9\x57\
+\x2d\xa5\x5d\xd7\x5f\xea\x5f\xac\x49\xe7\xac\x9b\xa8\x32\xd0\xeb\
+\xd6\x1f\xfd\xed\xdb\x9c\x75\x13\x63\x7e\xeb\xd6\x0f\xbf\xdc\x13\
+\xf0\xed\xfe\xc0\x63\xa0\x10\x20\xea\x43\xad\x96\x1b\x64\xdc\xf7\
+\xc4\x92\x3d\xf4\x6a\x83\xbe\x89\x51\x2f\xa4\xb7\x93\xfd\x7f\xcb\
+\x9b\xa5\xf4\xa0\x07\x74\xef\xa2\x8a\xf9\x9d\x88\x73\xbc\x9e\x73\
+\xfd\x47\xa6\x74\xff\x7b\xa7\xf4\xec\xe7\xd9\x0b\xef\xf6\x5a\x49\
+\x6d\x70\xdd\x89\xc7\xc3\xfa\xfb\x07\x09\x6b\x09\x73\x23\x12\xa1\
+\xc7\xa2\xd0\x04\xd2\xbd\x1c\x3c\x7b\xf4\x27\x14\x94\x64\xb4\xec\
+\x45\x75\x25\x32\xfa\xef\x93\x41\x52\x36\x98\x5b\x9e\xf6\x17\x83\
+\x7d\xae\x9f\xbd\xf5\xfc\x59\x07\x0b\x40\x4d\x42\x6f\xbb\x7e\xe4\
+\xb0\x0f\x43\x6b\x56\x7a\xdb\xf5\x47\xff\x88\x4d\x1e\xfa\x12\x2f\
+\xd0\xb1\x57\xd4\x05\x62\x44\xfb\x8e\x3b\x3c\x6a\x7d\xa4\x89\xf4\
+\x41\x8b\xe8\x3f\x6e\x78\x6c\x15\xe6\x08\x9b\xa8\x1f\xf3\x61\x1c\
+\x62\x4b\x9f\xbe\x73\x79\x4c\xcb\xf1\x86\x37\xb0\x7f\xef\xd8\x8d\
+\xe3\x46\x86\x27\xe3\xb8\xc6\xd5\x53\xfa\xe1\xc7\x74\xef\xe0\x7a\
+\xd6\x73\x53\xfa\xc0\xb9\x27\xc6\xfa\x0f\xde\xc6\x8b\x85\xe5\x66\
+\x29\x2d\x32\x65\xc4\xa8\x4f\x3e\x71\xae\xbc\x14\x73\x0e\x8f\x71\
+\x89\x6e\x8b\xb3\x46\x86\x4e\xa9\x47\x84\x9a\xd2\x62\xe6\x24\x65\
+\xc4\xa8\x4f\x3e\x71\xae\x3c\xc6\x8b\xf3\x78\x82\xa2\x16\xf2\x34\
+\x96\xc6\xf7\x8b\x88\x38\x5a\xa7\x7e\x71\xb3\x53\x92\x17\xa8\xa3\
+\xae\x9f\x7d\x25\x6a\xcf\x95\x5e\x55\xde\x6a\x2a\xd7\xfa\x78\xaa\
+\xff\x2c\xbb\x70\x3e\xd8\x5e\x17\xc0\x5b\x71\x0f\x23\xa5\x1b\x5c\
+\x2f\xa5\x9f\x7c\x6c\x4a\xef\x78\x57\x4a\xcf\xb2\x67\x24\x1f\xb5\
+\x77\x6e\x4d\x1d\xfb\xb8\xfe\x4b\x3f\x89\x8e\x13\x81\x7f\x75\xa0\
+\x48\xd2\xc0\xad\x8c\x78\x45\xd8\x70\x90\xb9\xf5\xcc\xd5\x5f\x3b\
+\xdd\x58\x7f\xd8\x31\xf8\xf4\x2c\x7a\x0f\xc4\x20\x3d\x75\x3d\xe6\
+\xd6\x13\xf5\xbb\xa8\xbb\x3f\xee\xaa\x7e\xf4\x99\x3d\xd9\x4a\x17\
+\xf6\x7c\xfd\xe7\xd4\x7f\x8a\x7d\x42\x1c\xff\xb6\xf9\xd6\xfb\xa4\
+\x84\xcf\x53\x6c\x73\xe0\x03\x7f\x17\xda\x07\xfc\x3e\x7c\x81\xbd\
+\x13\xea\xe2\x94\x3e\xf7\x79\x7b\x7c\x2e\x23\x68\x7b\x40\x07\xa7\
+\xd3\x29\x96\x0b\xea\x38\xc5\x1e\xc7\xec\xcf\x67\x7c\xce\x04\x9f\
+\x60\x3f\xd3\x1e\x57\x3a\xa3\xc3\xab\xd9\x27\xdb\xf1\x41\x45\xbc\
+\x96\xb1\xad\x71\x2b\xbb\xa1\xde\xfc\xa6\x29\xbd\xe8\xa5\x29\xbd\
+\xe0\x25\xf9\x13\xef\xc7\xe1\xfa\xfb\x97\x29\xd6\x9a\xc4\x0b\x13\
+\x11\x7f\xcd\x3a\x8d\x42\x6d\x8c\xea\x6d\x9c\x60\x3c\xf9\x80\x18\
+\xf0\x45\x5e\xc7\xf0\x63\xb7\xd2\x99\x9c\x03\xf4\x55\xf3\x6f\xe1\
+\x7c\x10\x31\x51\xba\x93\x2e\x8e\xac\x9b\xb8\x93\xfa\x25\x41\xe6\
+\x41\xf4\xfc\x45\xbe\xf5\xfa\x17\xad\xd9\x29\xb5\xb3\xfa\x77\xb1\
+\xff\x65\x7d\x59\x37\xf1\xc8\xd7\x7f\x62\xfd\xf8\xec\xc6\xa3\xbf\
+\x3b\xa5\xeb\x6c\xe9\x33\x1c\xb8\x59\xbc\xfb\x7d\x76\xc3\xb0\xcf\
+\x60\xe0\xa6\xc1\xaf\x1c\x69\xed\x7f\xbf\x60\x5d\x6a\x5d\xcb\xd7\
+\x1f\x9c\xfc\x9f\xb1\xaf\x2c\x81\x8f\x38\x70\x03\xc4\xa7\xdc\xaf\
+\x67\xaf\x61\x5c\xcf\x3e\x48\x88\xd7\x32\xae\x69\x73\xed\x7d\xb4\
+\x99\x3b\xc7\x8d\xf5\xdb\xee\x9b\xd2\xad\x6f\x95\xd2\x53\xfe\x2a\
+\xa5\x8f\x30\x0f\x59\x73\xbd\x40\x31\x36\x11\xf1\x94\x6e\xd5\x4f\
+\xb7\x44\xb7\x5f\x92\x34\x7d\x13\x4b\xd7\xbf\xee\x35\x90\xdc\x50\
+\x00\x9c\xb3\xbf\xd1\x37\x1c\x31\x49\xc8\x98\x08\x91\x32\x20\xe5\
+\xf4\xd9\x71\xec\x58\x73\x0e\x91\xc9\x18\xa3\xd7\x9f\x48\x30\x26\
+\xb1\x64\xc6\x5c\x98\x02\x7e\xeb\xdd\x79\x99\xe1\x34\xf2\x28\x19\
+\x1b\x8f\xb9\xb1\xa1\xac\x9b\x18\xf3\x07\x9f\x3e\x7b\x97\x35\xe7\
+\xd0\x35\x19\x63\xf4\xfa\x42\x50\xc6\xf8\x25\xfd\x6d\xd6\x2f\xa9\
+\xec\x8c\x64\xcd\x48\x80\xb4\xd6\xac\x74\x4c\x92\x6b\xc1\x25\x38\
+\xac\x7f\xde\x9f\xb9\x21\xb1\x3f\xb1\x7f\x71\xff\x71\xdf\xf7\x68\
+\x04\x2e\x88\x9b\x7e\xd6\xf1\x95\xaf\xa4\xf4\xbe\x0f\x74\xff\xf6\
+\x79\xbb\xfd\xeb\xe7\x93\x9f\xea\x32\xdb\xe6\xfa\xe3\x19\x0b\x3e\
+\x24\x88\xc7\xab\x72\x23\xce\xb4\x67\x28\xb8\xd8\xdf\xc6\x1e\x37\
+\xbd\xf1\xe6\x9e\x59\xe1\xd9\xce\xcf\xfe\x8b\x94\x5e\x78\xb6\x3c\
+\x1b\x89\xcd\xb7\x79\xec\xff\x36\xeb\x2f\x84\x1f\xc5\xc7\xba\xfb\
+\x6b\x20\xfd\x9d\xa0\xb1\x83\x78\x72\x12\x63\x90\x56\x81\x08\xc8\
+\x10\xb0\xf5\x06\x64\xc4\x1c\xa3\xe6\xbb\x93\x2e\x3f\xb6\xe2\x8f\
+\xfc\x8f\x12\x32\x0d\xf2\x0a\xa1\x98\x1b\x31\xaa\xb4\xe2\xd3\x35\
+\x10\xa3\x55\x7f\xcb\x1f\x7d\xb8\x33\x3b\xcc\xd5\xef\x6b\xed\x13\
+\x82\x13\x7b\x60\x91\xf6\x74\xb0\x46\xa6\xa7\x6b\x41\x19\x10\xc3\
+\xfb\x6b\xb4\xea\x28\xdd\xd7\x3a\xb1\x7e\xda\x12\xbb\x28\x8b\x63\
+\x2b\x3e\x5b\xdb\x87\xb3\x3e\x3b\x4f\xfa\xad\xbe\x5b\xfe\x58\x23\
+\x33\x98\xab\xbf\xc9\xfa\xf1\x5a\xc7\x63\x1e\x65\xcf\x3a\xec\x43\
+\x75\x9b\x18\xe8\xc3\xbb\xdf\x6b\x17\x6f\xfb\x60\xde\xbb\xde\x93\
+\x12\x6e\x22\xe0\xb1\x46\xc6\x58\xa7\x5f\x73\xeb\xc7\x17\x2e\xe2\
+\xb3\x1d\x78\x9c\xf6\x75\xdd\xd7\xab\xdc\xc1\x3e\xfc\x88\xd7\x77\
+\xf0\x8c\x65\x9d\x81\x67\x23\xf8\xfc\xc8\x6d\xbe\x21\xa5\xff\xfd\
+\x14\xfb\x97\x9c\x7d\x91\x23\x6b\x05\x62\xec\xba\x7e\xf6\x9a\x88\
+\x9c\xfc\x06\xa2\x0c\xa5\xa1\x30\x67\xd0\x96\x08\x5b\xa5\xe7\xf8\
+\x5a\x45\x97\xb1\x88\xad\xf8\xd4\x23\xb6\xf4\x5b\x39\xd1\x0f\xf1\
+\xa8\xfd\x31\x2e\xb1\x15\x9f\x7a\xc4\x96\x7e\xab\xfe\xa3\x90\x6b\
+\xae\x31\x1e\x65\xc4\x56\x3d\xd4\x23\xb6\xf4\x63\xbc\x38\xa7\x1f\
+\xe2\x51\xfb\x63\x5c\x62\x2b\x3e\xf5\x88\x2d\xfd\x58\x2f\xe7\xf8\
+\xda\x11\xdc\x3c\x70\x51\x5d\x77\xe0\xf5\x0a\x7c\x92\xfb\xd5\x76\
+\xe3\xb8\xd8\x3e\xd9\x1d\x87\xe6\x5a\x93\xa9\x8e\xd2\xeb\xea\xab\
+\xfd\x17\xbf\xd4\x7d\x58\x10\x1f\x18\xbc\xf2\x95\xba\x4f\xd0\x7f\
+\xf3\x9d\xba\x6f\xff\x55\xbd\xb9\x34\x9e\x8d\xfc\xcb\x9f\x48\xe9\
+\x2f\x9e\x9a\xd2\xdb\xed\xfb\xb6\x30\xb4\x06\xa5\x3b\xe9\xe2\x48\
+\x19\x31\xda\x2e\x34\x3b\x8a\x7a\xc4\x96\x7e\xb4\xc7\xbc\x7b\x06\
+\x52\x92\x6c\x81\xe7\x89\xda\xdd\xb4\x4f\x98\x74\xbe\xc3\x6e\x21\
+\xe4\x5e\xb9\x3c\xd9\xeb\xdf\xab\xc5\xd8\x41\x32\x27\xe2\xfa\xdf\
+\xf7\x5e\xf6\x2e\xab\x6f\x5b\xff\x2f\xf0\x8f\x7c\xd4\x5e\x50\x3e\
+\x3b\xa5\xb7\xfc\xe3\xf0\x2b\xd4\x77\xb0\x4c\xb3\x43\xe2\x5f\x6a\
+\xf8\x8c\xc7\x73\x5f\x68\x9f\xa8\xb7\x0f\x48\xde\xeb\x6e\xc3\x2f\
+\x60\x9c\xeb\x10\x37\xe2\x1f\x79\x4c\x4a\xff\xf0\x82\xae\x27\x73\
+\xed\x8f\x52\x7f\xe9\xbb\xb0\x62\x22\x38\x01\xf8\xb4\x2a\xca\x30\
+\xa7\xac\xf6\x94\x2b\xca\xdd\xc7\x86\x6e\x1e\x9a\x1b\xe3\xf7\xff\
+\x2f\xcb\xff\x22\x00\x20\x5c\x9e\x8e\xf2\xf5\x7c\x96\x1c\x34\x46\
+\x49\x2d\xd6\x17\xf5\xa3\xdc\x7d\x2c\xa9\xbf\x65\xdf\x92\x6f\xba\
+\xfe\x52\xcd\x47\xcd\x63\xcd\x88\x4b\x1a\x88\x31\xea\x6f\x58\xf0\
+\x30\x1d\xeb\x77\x6e\xaa\xc7\x18\x2f\x2a\xc6\xf8\x51\x3f\xca\xdd\
+\xfe\x38\x5a\x7f\xad\x07\xef\x60\x7a\xd4\x77\xa5\x74\xa7\x3b\xc4\
+\x2e\xcc\x9b\xe3\x59\xc6\x73\xec\x42\x89\x4f\x6a\x73\x1d\xe9\x41\
+\xe3\x81\x17\xfb\xd7\x92\x6f\x7a\xff\xc7\x78\xcc\x93\x88\xd7\x4d\
+\x5e\xff\xc6\x94\xde\xf0\xa6\x94\x6e\x77\x1b\xfb\xc0\xa4\xdd\x58\
+\x6b\x5f\x15\x4f\x9b\x1a\xe2\x5f\x62\xf8\xdc\x0c\x9e\x91\x3c\xe5\
+\xe9\xf6\x2f\xbc\x4b\xf7\xb3\xfe\xc1\x33\x90\x56\x83\xe2\x02\xc6\
+\x05\x42\x33\xf4\x7c\x80\xbe\xf3\x84\x49\x1e\xf8\x31\xde\xc8\xbf\
+\x5b\x1f\xdd\x21\xe6\x13\x23\x8f\xf2\x8b\x57\x24\x33\x90\x52\x7d\
+\xc3\xc3\x87\xd6\xac\x74\x8c\x37\xf2\x1f\x13\xd8\xf2\x3c\xe6\xb3\
+\xe5\x70\x7b\xe7\xbe\x55\xff\x68\x7d\x4e\xb2\xf5\x67\xfd\x67\x9c\
+\xd1\xfd\x85\x8c\xcf\x34\xac\x3a\xf0\x35\xe8\xcf\x7f\x91\xfd\xab\
+\xea\xf5\x8b\x67\x1c\xf4\x0f\xdc\xc5\xd8\xe4\xfa\xbf\xf9\x6d\x29\
+\xbd\xf5\xed\x29\xe1\xdf\x5a\x78\x6d\xe3\x8c\x2b\xae\x56\x11\xbe\
+\xf2\x05\x3f\x98\xf5\xc7\x7f\xde\x7d\x75\xfc\x6a\x5e\xa6\x59\xad\
+\x52\xff\x5a\xaf\x81\x8c\xce\x1f\x30\x30\x88\xdd\xac\x7a\x8c\x1b\
+\xa6\x55\x40\xd5\x91\x09\xd4\x17\xfc\xf4\x43\x69\x63\xea\x94\x7a\
+\x44\xd8\x28\xdd\xfb\xa8\x10\xf0\x85\xbd\xde\xfb\x24\x41\xac\xd8\
+\x91\xad\x39\x83\x87\xd8\xe4\x51\x47\xf3\x21\x4d\xa4\x2e\x10\xa3\
+\x64\xbf\x48\x2e\xeb\x74\xe0\x47\xfa\x21\x82\xa9\xb4\xa8\xee\x15\
+\xc9\x1c\x77\x5d\x3f\x96\xf9\x64\x5b\x7f\xfc\xbf\xff\xa7\x1e\x97\
+\xd2\x55\xae\xbc\xda\x96\xc0\x5f\xe9\x78\xb7\x11\x1e\x97\xda\x5f\
+\xd5\x58\xcb\x65\xfb\x97\x6b\x8d\x68\xa4\x89\xfb\xbe\xfe\xa8\x15\
+\x2f\xb8\xbf\xce\x9e\x95\xdc\xcf\xfe\xd5\xb7\xea\xbb\xd3\xf0\x7b\
+\x24\x3f\xfd\xcf\x53\xfa\xbd\x3f\xec\x7e\x35\x71\x9f\xea\xc7\xe7\
+\x69\x26\x0f\x26\x0e\x54\xba\xe6\x80\xbe\x81\x4a\x53\x5f\x7d\x28\
+\x4d\xf9\x1c\x9c\x62\xaf\x39\x28\x3d\x35\x8e\xc6\x50\xba\x66\xaf\
+\x31\x94\xa6\xbe\xfa\x50\x9a\xf2\x16\xaa\x8d\xd2\x35\x3b\xcd\x41\
+\xe9\x9a\xfe\xbe\xf3\xb5\x66\xa5\x6b\x79\x6b\xcd\x4a\xd7\xf4\x23\
+\x5f\x63\x28\x1d\xf5\x38\xd7\x18\x4a\x53\xae\x3e\x94\xa6\xbc\x85\
+\x6a\xa3\x74\xcd\x4e\x73\x50\xba\xa6\x1f\xf9\x78\x1b\xeb\x3a\x37\
+\x0f\x7c\xce\xe1\xbf\x3d\xb1\xfb\x97\x15\xdf\x55\x85\x18\xc8\x7d\
+\x4a\xfe\x31\x1f\xb5\x51\x3a\xea\x71\xae\x35\x2b\x4d\x79\x0b\x35\
+\x86\xd2\x35\x3b\xc6\xb8\xd4\xde\x41\xf6\xbc\x17\xa6\xf4\xdb\xbf\
+\xd7\x7d\x76\xa5\xa6\xbf\x8c\x7f\xd5\xab\x74\xbd\xc7\x87\x1e\x39\
+\x34\x07\xa5\x29\x8f\xc8\x7c\x80\x4a\x47\xbd\xda\x5c\x63\x90\x3e\
+\x05\x7f\x45\x6d\x6a\xd0\x29\xd0\x1f\xe6\xb8\x47\xa5\x57\xdc\x30\
+\xeb\xe6\xc9\x5a\x81\x4a\xaf\xeb\x97\xf6\x5b\xaf\x5f\x93\x56\x9a\
+\x09\x34\x50\x4d\x94\x6e\x98\xed\x9f\x18\xc9\xaf\x50\x80\x9a\x28\
+\xbd\xa9\x02\x4f\xe4\xf5\xc7\x85\x6b\xd5\x9b\x07\xfe\x12\xc7\x0b\
+\xcc\xbf\xf9\x3f\xec\x73\x15\x76\x13\xf1\x6b\x42\x5e\x00\xf6\x6c\
+\xd2\x1a\xe8\xa2\x29\x3d\xc9\x78\xb8\x65\x56\x30\x6f\x46\x61\x2d\
+\xac\x0f\x31\x9c\x06\xda\x03\x1f\x58\xfc\xed\x7c\x03\x45\x4f\xe6\
+\x8e\xfe\x26\x62\x37\xf2\x7d\xd9\xff\xa7\xb0\x68\x2f\x46\xbb\x6a\
+\xb4\xcb\x32\xf6\x4d\x91\x39\x6c\xd4\x9e\x4f\x45\x81\x4a\xbb\x6f\
+\x3b\x28\x0f\x34\x6c\x89\xf4\x43\xa4\xcd\x3a\x48\x5f\xc0\xd2\x03\
+\xbe\xa9\xe3\x71\x4c\xaf\xc7\x6c\x83\x85\x2a\xd9\xd2\x8e\x08\xbb\
+\x58\x9f\xf2\x94\x86\x1e\xeb\x26\xd2\x0f\x11\xfa\xeb\x0e\xfa\x02\
+\x96\x1e\xf0\x4f\x1d\x8f\xb5\xa4\xfe\x75\x73\xd9\x85\x3d\x6b\x2b\
+\xd5\xae\xb2\x3e\xb7\x25\xf5\x97\x7c\xc0\x8e\x7e\x40\x9f\xa8\xeb\
+\x8f\xff\xdf\xe3\xfb\x9b\x70\x01\x9b\x3b\xf0\x5d\x4f\xbf\x63\x17\
+\x4d\xdc\x40\xd8\xab\xe3\x71\xff\x6f\x6a\xfd\xbf\xf6\x35\x7b\x36\
+\x62\xaf\xfd\xe0\xd9\xc8\x9c\xef\xc1\x62\xdf\xb1\x06\x3f\xfd\xe3\
+\xdd\x5b\x87\xc9\xab\x21\xfb\x5d\xca\x5d\x65\xbd\xfd\x0a\xfb\x7f\
+\xf8\xf1\x17\x7d\x5e\xa3\x74\x8e\x10\x4f\x10\x24\xa1\x17\xc0\x98\
+\x28\xcc\x98\xa8\xd2\xd4\xa3\x6d\x69\x43\xe5\x90\x93\x81\x71\x88\
+\x30\x8c\xf9\x2a\xaf\xe8\x58\x6b\x56\x3a\x2b\x47\x7f\x88\xc5\x1a\
+\x58\x93\x22\xcc\x34\x1f\xd2\xd4\xa1\x2d\x50\x69\xca\x23\xe2\x79\
+\xa7\xfb\x40\x6e\x42\x53\x2f\xc6\x83\x4f\x0c\xfa\x27\xed\xcc\xd2\
+\x21\xeb\xfb\xf3\x5b\xa5\x4b\xba\x3b\xe2\xed\xb2\xfe\xd8\x4f\xe4\
+\xc2\x75\xe3\x1a\x28\xa2\x45\x9e\x6f\xee\x15\x69\xea\xd0\x96\xeb\
+\x03\x3e\x79\xd4\x51\xd4\x35\x57\x9a\x3a\x31\x1e\x7c\x61\xd0\x3f\
+\x69\x67\x96\x0e\xba\xe6\x99\xc6\x0b\xe6\x78\xe6\x81\xef\x87\x9a\
+\x3b\xf0\x33\xaf\xb8\x79\xf0\xab\x42\x90\x27\x06\xf3\x65\xad\xcc\
+\x0f\x7c\xf2\xa8\xa3\xa8\x35\x2b\x4d\x1d\xfa\xf6\x20\x76\x80\x2f\
+\x0c\xfa\x27\xed\xcc\xd2\xa1\x50\x3f\xe2\x70\x44\x7f\xcd\x7c\xcd\
+\x10\x3a\x1c\xa4\x81\xe8\xc9\x7f\x7b\xd2\xf2\xaf\x77\xa7\x5d\x44\
+\xbc\xfe\xf4\x53\xf6\x9a\x88\xbf\x30\x6f\xf9\xc1\x9f\xfa\xa6\x7e\
+\xcc\x17\x7c\xf2\xa8\x33\x40\xd6\x0a\x54\x3a\x2b\xd1\x16\x88\x07\
+\x62\xfa\x0d\x84\x09\x44\xa4\x92\x1a\x90\x37\x25\x61\xe8\x2c\xd3\
+\x57\x1f\xaa\x0b\x9b\x55\x46\xf4\x87\xb9\x3e\xe0\x93\x3a\x4a\xab\
+\x8e\xd2\xcc\x1d\xa8\x34\x75\xd4\x07\x68\xe6\x3d\x55\x9f\xb9\xd0\
+\x9f\xc6\x50\x5f\xf0\x3d\x65\x44\x7f\xf4\x4b\x84\x0f\xea\x28\x4d\
+\x79\x44\xcd\x67\x4a\xfc\x5d\xeb\xb0\xb6\x58\x07\xe7\x5a\xb3\xd2\
+\x94\x47\xd4\xfa\x95\xa6\x9e\xfa\x00\xad\x6b\x36\x45\x1f\x7e\x30\
+\xe8\x4f\x6d\xd4\x57\xa7\xd5\x3e\x46\x7f\xf4\x4b\x64\x2c\x7a\x6a\
+\xe9\xe3\xf7\xbf\x1f\xf7\xc3\xab\xbd\x15\xf5\x85\x2f\xe9\xde\x39\
+\xf4\x65\xfb\xff\xff\xd4\xf8\xfb\x56\x7f\xcc\x07\x75\x90\xa7\xbd\
+\x63\x3f\x75\xcd\xa8\x47\x2c\xe9\xe3\xc3\x88\x7f\x62\xef\xae\x7a\
+\xfe\x8b\xe9\x61\x3a\xe2\x26\xf2\xa3\x3f\x60\x5f\xf8\x28\xef\xa3\
+\xd5\x18\xa0\xe3\x03\xde\xa9\xa3\x74\xd4\xe3\x9c\xb9\x03\x95\xa6\
+\x1c\x3e\xfc\x06\x82\xeb\x35\xaf\xd9\xc4\x52\x00\xe5\x81\x8e\x83\
+\xc9\x69\x00\xf2\xa2\x6e\x69\x4e\x5d\x62\x49\x67\x93\x3c\xd6\xba\
+\x8f\xf5\xb3\x07\x44\xd4\x4d\x1a\xa8\xf4\xaa\x3d\x99\x53\xff\xaa\
+\x31\xb6\x61\xb7\x8b\xfa\xa7\xf4\x5b\x75\x94\x9e\xda\x03\xb5\x51\
+\x9a\xf6\xca\x53\x9a\xf2\xb9\xd8\x5a\xff\x55\xbe\x10\x11\x2f\x8e\
+\xff\xef\xff\x93\xd2\xdf\x3f\x77\x71\x01\x9b\x9a\x97\xd6\xa4\x34\
+\xed\x95\xa7\x34\xe5\x73\xb1\x55\xbf\xc6\x50\xba\x16\x47\x75\x94\
+\xae\xe9\x83\x0f\x3d\x7c\x08\xf1\x4f\x9f\x9c\x12\x6e\xb6\x73\x06\
+\xbe\xe0\xf1\x7b\x1f\x31\xc7\x62\xa8\xbb\x89\xfa\xbb\x67\x20\xe6\
+\xd7\xea\xf0\x41\xcc\xd3\xcd\x02\x9d\x03\x95\xde\x6c\x94\x85\x37\
+\x8d\xa1\x74\xd6\x50\x96\xd2\x0b\x07\x1b\xa6\x34\x88\xd2\x1b\x0e\
+\xd3\xbb\xd3\x18\x4a\x67\x05\x65\x29\xdd\xdb\x1f\xef\x84\x16\xa5\
+\xf4\xae\xea\xd7\x1c\x94\xde\x56\x9f\x35\x86\xd2\x13\xea\xc7\x57\
+\xb1\xe3\x33\x08\x73\xc6\xe7\xbf\x90\xd2\xff\xf8\x43\xfb\x20\xdd\
+\x39\x15\x2b\xcd\x41\xe9\x8a\xfa\xda\x6c\x8d\xa1\x74\x76\xac\x2c\
+\xa5\xd7\x8e\x5b\x73\xa0\x41\x94\x36\xfd\x73\xde\x62\x6f\xd3\xfd\
+\xff\x53\xba\xe4\x92\x9a\x71\x99\xff\x4d\xb7\xb7\xaf\xcd\xbf\x4f\
+\x59\x36\xb8\xc6\x86\x78\xb0\x50\x96\xd2\x15\x6f\x45\xb6\xbf\x88\
+\x8e\xbb\x60\xe9\x8e\xa9\x3c\xa5\x8b\x9e\x90\x50\xce\x02\xa8\x34\
+\xf5\x35\x49\xa5\x7b\xb9\xd8\x93\x37\x15\x4b\xf1\x06\x4f\xab\xec\
+\x76\xeb\x3a\x19\x99\xa3\x22\x62\xd1\x8f\xd2\xd4\x51\x1e\xe8\x38\
+\x68\x5b\xd3\xd7\x9a\x95\xa6\x9f\xa6\xbd\xf4\x87\x31\x14\xe1\x87\
+\x3e\xdc\x67\xf8\x13\xc3\x65\x2b\xd6\xcf\x1c\xf7\x01\xb5\x66\xa5\
+\x91\xdb\xb6\xea\xa7\x5f\x62\xa9\x0f\x94\x01\x95\xa6\xae\xae\xb9\
+\xd2\xbd\x3c\xac\x2f\xf8\xf4\xa3\x34\xfd\x47\x54\x1d\xd0\xab\xee\
+\xff\x5b\xde\xdc\xbe\x9e\xe4\x01\xee\x61\xf2\xe1\x0b\x76\xe1\x7b\
+\xd2\x1f\xa5\x74\xde\xf9\x5d\xce\xcc\x9b\x08\x47\x5a\xb3\xd2\x0c\
+\x42\x5d\xd6\xe5\x36\x54\x84\x7d\xe8\x0f\xf5\x88\x51\x7f\xd5\xfa\
+\xa7\xe6\x43\x3d\x62\xcc\x2f\xe6\xc3\x52\x80\x4a\xd3\xfe\x5c\xeb\
+\xdd\x93\xfe\x38\x25\xf4\x72\xce\x78\xb0\x7d\xe2\x1d\xdf\x47\x86\
+\xc1\x1c\x7c\xb2\xc1\xf3\x9f\x7e\x89\xee\xdf\x0e\xdd\xbf\xb0\x2c\
+\x10\xfe\xc7\x85\x41\x54\xba\xf6\x3f\x30\x38\xd3\x87\xfe\x9f\x8c\
+\x7e\x88\xee\x3c\x1c\x98\x0c\x7d\xa8\x7d\x50\x6d\x4e\xd5\x96\xfe\
+\x60\xc4\x18\x25\x07\xcc\x0d\xa8\x34\x75\x95\x07\x1a\xbe\x88\x8c\
+\xa1\x48\x19\x10\x0f\x0c\x62\x37\x1b\x1e\x99\x1b\x7d\x44\x7b\xf0\
+\xc9\x73\xda\xcc\x89\x70\x0f\x59\x8f\x46\x44\x7d\x44\x03\xaf\x36\
+\x98\x9b\xfb\x81\x23\x1b\xe4\x29\xad\x3c\x57\xda\xe1\x61\x57\xf5\
+\xa3\x07\xb1\xbf\x98\xeb\x43\x75\xd8\x33\x62\xa9\x65\xb0\xc5\xa0\
+\x8f\x68\x0f\x3e\x79\x4e\x67\x5d\x5f\x73\xa3\x21\x73\x1a\x68\x8f\
+\xa8\x4f\xdf\xc0\xd2\x80\x0d\x86\xfb\xc9\x34\xbe\x7a\xe3\x07\x1f\
+\x3d\xef\xbb\xad\x2e\xf9\x62\x77\xf3\xc0\x0b\xc3\xcc\x41\x7d\x77\
+\x51\xc6\x47\xe8\x62\x00\x69\x47\x2c\xd5\x83\x14\x5d\x6e\x08\xda\
+\xf3\x26\x1a\x83\xb6\x40\x3c\x30\x88\xdd\x6c\x78\xd4\x1c\x95\xa6\
+\x96\xf2\x40\x47\xff\x8c\x43\x54\x1d\xb5\xa5\xbf\x88\xcc\x4d\xed\
+\xcf\xfb\x50\x4a\xbf\x6f\x37\x91\x39\xcf\x44\xf0\xb5\x27\x3f\x60\
+\x6b\x86\x9f\xcd\x65\x0e\xea\x3b\xc6\xe5\x5c\x73\x54\xba\x26\x87\
+\x4f\xf5\x8f\x79\xf7\x2f\xac\xdc\x70\x16\x52\x43\x1a\x03\x4b\x8f\
+\x52\x00\xf5\x85\xc4\x30\xaf\x0d\xca\x88\x35\xbd\x12\x9f\x36\x44\
+\xd7\x61\x2c\xa0\xd2\xd9\x01\x75\x81\x53\x1e\x47\x59\xbf\xe6\xd6\
+\xd7\x8b\xb3\x06\x03\x98\x37\x34\xb1\xa8\xaf\x35\x2b\xed\x4e\x16\
+\x6b\x31\xa5\xf6\x6c\xb2\x1f\xb0\x83\xfa\xd1\xa3\x13\x7d\xfd\x71\
+\x21\xc2\x0b\xb3\x97\xbf\xfc\xf4\x65\xfe\xa2\xdd\x3c\x70\xc1\xc3\
+\xef\x66\x68\x8f\x4a\x7b\x0a\x5e\xc1\xaf\x0d\xca\x68\x0b\x3d\xf2\
+\xdc\x66\x87\xfb\x1f\x79\x1c\xd5\xfa\xe3\x26\xf2\x7b\xf6\x6c\xee\
+\x0b\xf6\x2f\xc1\xa9\x03\x5f\xc0\x88\x1b\x3f\x72\xec\x07\x7b\x0d\
+\x54\x3a\x2b\xb0\xb7\xec\x77\x0b\x4b\xf5\x77\xcf\x40\xcc\x21\xe3\
+\x12\xfb\x24\x84\x68\x05\x84\x2a\x75\xc4\xec\xc8\x48\xe6\x0e\xc4\
+\x03\x3d\x23\x16\xfa\x37\xa8\x59\x6d\x6b\x09\xb3\xb6\x5a\xa3\x61\
+\x47\x9d\x9a\x8f\x39\x7c\x6e\x06\xa0\x2e\x1e\xe3\xc7\x78\x5a\x03\
+\xeb\x26\x6e\xa2\xfe\x39\xb9\x6f\x4b\x97\x7d\x60\x9f\x89\x88\xb7\
+\xed\xfa\x19\x8b\xfd\x8f\x88\x1c\xa8\x03\x7a\xdd\x71\xd4\xeb\xff\
+\xed\xdf\xda\xfd\x0a\xdf\xd4\xbc\xbf\xf4\xe5\xee\x5f\x2e\xf8\xd7\
+\x0b\xeb\x26\x4e\xf5\xb1\x4c\xef\xa8\xeb\x47\x2e\xdc\x43\xa5\xbc\
+\x58\x1b\xb0\xf4\x80\x0d\x75\x4a\xf6\x73\x78\x1f\xfa\x70\x4a\x7f\
+\xf0\x3f\xe7\xbd\xb0\x8e\xdf\x62\xc1\xf7\x6e\xa1\x06\x9e\xf7\xc4\
+\x4d\x9c\xff\xac\x4d\x6b\xef\x9e\x81\xa0\xf0\x5c\x1d\x11\xd3\x68\
+\xa0\x3c\x57\xa7\x32\x50\x69\x17\xb6\x0f\x4d\xff\x6d\x17\x03\x0d\
+\x4d\x41\xe9\x81\x92\x4c\x54\x47\x69\xaa\x34\xf3\x53\x23\xa5\xe9\
+\xa0\x81\x2d\xff\x51\x8e\xb9\x3e\xe0\x9e\x3a\x4e\xe7\x78\x48\x65\
+\x4a\x3a\xaa\xa3\x74\x76\xd3\xfb\xd6\x18\x94\xed\x0a\x77\x55\x3f\
+\x7b\x40\xf4\xfa\xb5\x69\x4a\x4f\x6c\x0e\x7d\xb1\x26\x98\x91\xa7\
+\x34\xe5\x11\x55\xc7\x69\x1c\x6c\x20\x95\x29\xe9\xa8\xce\xb5\xed\
+\xe2\x83\xef\x6b\x9a\x33\xfe\xd2\x7e\xb3\x02\x37\x8f\xc9\x01\x83\
+\x73\xd6\xca\xba\x20\x26\x4f\x69\xca\x23\xaa\x8e\xd3\x38\xd8\x58\
+\xa5\x7e\xed\x45\xe7\x65\x91\x0b\xe3\xba\x6f\x2a\x32\x10\x91\x7c\
+\x22\x9d\x2c\x41\xd6\x5a\xf3\x8f\xde\xe2\x9b\x78\xe7\x0c\xfc\x22\
+\x24\x7e\x52\x98\x69\x10\x4b\x3e\x28\x03\x2a\x4d\xdd\x56\x7e\x30\
+\xf2\x1b\x48\xcd\x80\x7f\xed\x01\xf5\xaf\x01\xea\xf7\xb7\x6b\xdc\
+\xe6\xf0\xc0\x20\x76\xb3\xc1\xb1\x99\xd0\x40\x7b\xfe\x64\x5d\xff\
+\xd1\xfe\x50\x7f\x77\x12\x71\xed\xe7\xaf\xc8\xd1\x5a\xc4\xf5\x43\
+\x74\xf2\xa6\x64\x42\x5d\x20\x1e\x27\xcb\xfa\xe3\x5f\x57\xff\xec\
+\x91\xf3\x7e\xa2\x15\xdf\xa4\x8b\x6f\x9c\xf5\x71\x38\xff\x17\xd7\
+\xbd\x0d\x5f\xff\xde\xf8\xe6\x79\x9f\x13\xc1\x2f\x1b\x7e\xdf\xf7\
+\x74\x7b\x17\x6b\xc3\x3d\xdd\x2d\xd4\xf2\x23\x75\xe7\xec\xff\xc1\
+\xef\x81\xb0\x76\x22\xc2\x29\xad\x27\xd5\xf2\x54\xca\x52\xf8\x72\
+\x1f\x14\x3b\xc3\x26\x39\xc8\x3a\xfe\xd5\x96\x17\x3c\xe5\x31\xa4\
+\xa2\x5e\x20\xc0\x67\xad\x44\xe5\x81\x6e\xf9\x83\xce\xb2\xe1\xe5\
+\xe2\xc2\x44\x25\x67\xd8\x24\x33\x5a\xfe\x63\xbe\x51\xbf\x25\x67\
+\x58\x62\xd4\x67\x5e\x44\xe8\x29\x4d\xbb\x5d\x22\x6b\x46\x0e\xa4\
+\x81\x18\xb1\x9e\x28\xef\xb4\x16\xc7\xa8\xcf\x5a\x89\xee\x73\xa1\
+\x3e\x8a\x27\xa2\x49\x24\xfc\x7a\x4e\xd4\x76\x86\x4d\x72\xc0\xb9\
+\xf9\x46\xfd\x58\x4f\x94\x33\x2c\x91\xfa\xdf\x7a\x1f\xfb\x01\x24\
+\x7b\x06\x32\x75\xe0\x13\xe6\xcf\x7a\x5e\x57\xcb\x54\x1b\xe8\xed\
+\x6b\xfd\xe8\x03\xf3\x53\x8c\x74\xab\x9f\xee\x64\xc9\x61\xd5\xfa\
+\x9f\x65\x9f\xa9\xb9\xd6\x59\xdd\xcf\xdd\x2e\x71\xdf\x8b\xf0\xaf\
+\xac\x07\xde\xdf\x7e\x90\xea\xf9\x8b\x73\xa2\x17\x0a\xc1\xf5\x5f\
+\xa7\xfe\xe1\x33\x90\xec\x1c\xe7\xa3\x3f\xec\xd0\x23\x08\xf0\x33\
+\x76\xb3\xe1\x31\xaf\x83\x6f\x14\xd0\x48\xac\x47\x23\x60\xea\x49\
+\x1b\xf6\x7e\x41\xdb\xc4\x17\x27\xd3\xb0\x59\x65\x30\x37\xfa\x83\
+\x0f\xf2\xa6\xf8\x63\x69\x9e\x5b\xb6\xed\xf3\xcc\xc2\x65\xfe\x98\
+\xb7\xd7\x6c\xf6\xeb\xd4\xaf\xbe\xa6\xe4\x0e\x1d\xe6\xb6\x8d\xfa\
+\xa7\xe6\xb0\x4b\xbd\x6d\xd6\xaf\xbe\x6b\x35\xea\x9a\xf9\x1e\xb0\
+\x43\x8f\x46\x60\x0b\x4d\xdd\xff\xb0\xc3\x20\x76\xb3\xe5\x47\xcd\
+\x51\xe9\x65\x56\x67\x5d\xa3\xfb\xbf\xf9\x32\x1d\x95\xe1\xb7\xba\
+\xff\xcc\x7e\xb3\x9b\xfe\x55\xc6\x5c\x81\xfe\xb0\x43\x8f\x46\xec\
+\x63\xfd\x9a\x7f\x3e\xc5\xbb\x6b\x93\x09\x50\x23\x78\x8e\x59\x58\
+\xaa\x9b\x3e\x50\x2b\x86\xd7\x0c\x34\xc2\x69\xa0\x3d\xe0\x82\xd8\
+\xfb\x35\x1e\xfd\x43\x17\xb4\xdb\x18\x8d\x41\xde\x9f\xd9\x07\x0d\
+\xe7\x7c\x77\x16\xfe\x95\x75\xad\x6b\x76\xfe\x3a\x4f\xed\x63\x2e\
+\x71\x56\xfd\xdd\x6b\x20\x66\xc9\xc6\x10\x4b\xe1\x50\x0c\x46\x2c\
+\xb0\xe3\x9a\x8f\x4c\x00\xfd\x01\xbf\xa0\x81\x20\x32\xdd\x51\xe3\
+\x63\x56\xe9\xfd\x8c\x35\x36\xcb\xd1\x9c\x94\xae\x45\x39\xca\xfa\
+\x4b\xbd\xd0\x1c\x95\xae\xe5\xdb\xe2\xab\x0f\xa5\x5b\x76\xbb\x96\
+\x23\xd7\x4d\xe4\xab\x3e\x94\xae\xd5\x77\x22\xae\xff\xf7\x3c\xdc\
+\x7e\xd7\x5a\xbe\x0e\xa3\x56\x3b\xf8\xf8\xfd\x0e\x7c\xf5\xc6\x97\
+\xec\x9d\x57\xda\x0b\xda\xe8\x9e\x05\xed\xeb\x44\xcc\x42\xf6\x99\
+\x36\x8a\xd1\x1e\x32\xf2\x9c\x16\x1f\xf4\x43\x54\x3f\x53\x69\xda\
+\x02\x95\xae\xd9\x6b\xcd\x4a\x53\x9f\xb9\x02\xfd\x01\xbf\xa0\x81\
+\x20\x32\xdd\x51\xe3\x63\x56\xe9\x6c\xb2\x98\x3c\xbc\x61\x01\x37\
+\x91\xa9\xdf\xe2\x8b\x7f\x65\x7d\xc7\x83\xc6\x31\x94\xa3\x39\x29\
+\xad\x3a\x4a\x6b\xcd\xa4\x87\xcf\x40\xa4\xc8\x92\x43\x16\x03\x54\
+\x5a\x83\xec\x8a\x2e\xe5\x3b\x37\x17\xf5\xa1\x34\xfd\x68\xcd\x4a\
+\x53\x7e\xd4\xa8\x39\x2a\xbd\x6a\x1e\xea\x43\xe9\x55\xfd\x6d\xdb\
+\x4e\x73\x54\x7a\xd5\xb8\xea\x43\x69\xfa\xd3\x35\x57\x9a\xf2\xa3\
+\x46\xcd\x51\xe9\xa9\x79\xdc\xfc\x26\x29\xdd\xcc\x1e\x53\xc7\x73\
+\x5e\xd8\xfd\x15\x8c\xda\x4f\x84\xfa\x63\xdd\xda\x43\xa5\xa9\xa7\
+\x35\x2b\x4d\xf9\xb6\x11\x9f\xb3\xc1\x37\xf9\x4e\x1d\xb7\xb6\x0f\
+\x17\xde\xf8\x86\xd3\xb4\xf1\xcc\x08\xbf\xe7\x0e\x1b\xd4\x3e\xb5\
+\xfe\xc1\x33\x10\x7f\x7a\x65\xc6\x40\x3c\x30\x88\xdd\x6c\x78\xd4\
+\x20\x0c\xaa\x08\x6d\xea\x28\x4d\x1d\xe5\x81\x5e\x67\x30\x4f\x22\
+\x7c\x31\x76\x2d\x5e\x94\xc3\x16\x3c\x20\xfd\x10\x4b\xb9\x45\x7b\
+\xc6\x21\x6a\x0e\x4a\xd7\xe4\xa5\x18\xca\x8b\xf1\x5a\xf9\x46\x7d\
+\xcd\x41\x69\xe6\xd3\xf2\xa7\xb9\xec\x92\x9e\x9a\xef\xb6\xeb\x8f\
+\xfe\x99\x17\x51\x7b\xac\x74\x4d\xde\xea\x69\x8c\xd7\x5a\xaf\xa8\
+\xaf\x39\x80\x7e\xf0\x03\x5b\x11\x17\xf2\x0f\xdb\xe7\x3c\x5e\xf8\
+\x92\xc5\x1c\x54\xf4\xcf\xba\x88\xaa\xa3\x74\x4d\x0e\x9d\x65\x23\
+\xc6\x5b\xb7\xfe\xb9\xfe\x62\x6e\xd1\x9e\x75\x11\xa1\x4f\x1d\xa5\
+\x6b\xf2\xe8\x3f\xce\x61\x87\x1b\x08\xd6\x62\xea\xc0\xb3\x90\x5a\
+\x3c\xf0\xf1\xec\xf3\x5b\xbe\x39\xa5\x5f\xfe\x85\xee\x67\x8a\xe1\
+\x17\x7d\xc5\x83\x74\x47\x8d\x8f\x6e\x8f\x03\x95\x49\x03\xa7\x0c\
+\x5d\x40\xe8\xb7\xec\x19\x87\x18\xf5\xa3\xbf\x29\x39\xcc\xd1\x61\
+\x5d\xc4\x18\x2f\xe6\xd3\xf2\x3d\xd7\x9e\x75\x13\x63\xbc\xe8\xaf\
+\x15\x7f\xae\x9c\x75\x13\x63\xbc\x98\xcf\x5c\xff\xfb\xae\xcf\xba\
+\x89\xeb\xd6\x3f\xd7\x1e\xfa\x18\xc4\xd8\xef\xe8\xaf\xd3\xde\xdc\
+\x91\x75\x03\x6f\x7d\xab\x94\x6e\x74\x83\x69\xbe\xf1\x6f\x93\xbf\
+\x78\xda\xf8\xdf\x27\x31\xdf\x58\x4f\xf4\xce\xba\x89\x51\x3f\xfa\
+\x8b\xf6\xeb\xce\xb5\x7e\xf8\x8a\xf1\x62\x3e\xad\x78\x73\xed\x59\
+\x37\x31\xc6\x8b\xfe\x4a\xf1\xf1\x7b\x22\xf8\xb2\xca\x7f\xf3\x2f\
+\xa7\xbd\x6b\x0e\xcf\x40\xb0\xd6\x78\xe3\x83\xd6\x7f\xf9\xd3\x52\
+\xba\xc7\xb7\xa4\x74\xef\xbb\x0f\x7f\xaf\xfd\xa2\x8f\x2f\xf4\x4a\
+\xf1\x95\x87\x7c\xfd\xbf\x9f\x74\x1c\x0b\x88\x05\xaa\x31\x68\xda\
+\x11\x95\xa7\xb4\xca\xc1\xe7\xc0\xf9\xe4\x31\x32\x83\x74\x4d\x9f\
+\x76\x25\x2c\xd9\xb4\xea\xa1\x0d\xb1\xa5\x1f\xe3\xd2\x8e\x08\x79\
+\x89\x56\x9e\xfa\x58\xa5\x7e\xf5\x45\x9a\xa8\xbe\x41\xb7\xea\xa1\
+\x1d\xb1\xa5\x1f\xfd\xef\x62\xce\x5c\x11\x9b\x34\x31\xe6\xd3\xaa\
+\x87\x76\xc4\x96\x7e\xf4\x4f\x3b\xa2\xe6\xa4\xb4\xca\xd5\xc7\x2e\
+\xd7\xff\xa1\x33\x9e\x7d\xe0\xf7\xcb\xf1\xc1\xb6\x38\x58\x17\x11\
+\xf2\x12\xad\x3c\xf5\xb1\xcb\xfa\x35\x57\xe6\x77\xbc\xac\x3f\xfe\
+\x95\x85\xaf\x80\xc7\x07\x3f\xa7\x8c\x87\x7e\x7b\x4a\xef\x78\x57\
+\x4a\xb8\xf9\xe0\x67\x89\xef\x73\xcf\x94\xee\x6e\xcf\x3a\x4e\xb3\
+\x9b\x88\x0e\xfc\xa1\xf0\xf1\x8b\xeb\x7f\xe0\xa8\x2e\x68\xf4\x6d\
+\xf0\xf2\x19\x1b\x49\xa4\x52\x34\xac\xcd\x67\x2f\x40\x76\x64\x79\
+\xf8\x88\xf6\x99\xbd\x32\xb0\x0e\x22\x1c\x29\x1d\x1d\x53\x46\x6c\
+\xe9\x47\xfb\x98\x3f\xfc\x90\x17\x75\xdd\x77\x66\xd6\xea\x6f\xd9\
+\x97\x7c\x2a\x8f\x75\x10\x3d\x26\x83\xa9\x62\xa6\xa9\x47\x6c\xe9\
+\x17\x5c\xec\x15\x8b\x75\x10\x5b\xf5\x50\x8f\xd8\xd2\x8f\xc5\x72\
+\xad\x81\xb4\x25\x2f\xea\xba\x3c\x33\xb9\x24\xd4\x9d\x6a\x5f\xf2\
+\xa9\x3c\xd6\x41\xf4\x98\x16\x0c\xdf\xb2\x8b\xb7\x7a\x4e\x19\x9f\
+\xfc\x54\xf7\x1b\xe6\x53\x74\xe7\xe6\xcf\xba\x89\x73\xed\x5b\x39\
+\xb1\x6e\x22\xf4\x95\x8e\xf6\x94\x11\x5b\xfa\xd1\x7e\x6e\xfe\xac\
+\x9b\x38\xc7\x1e\x37\x10\xfc\xeb\xc9\x7f\x54\x2a\x26\x12\xe6\xd7\
+\xb1\x0f\x16\xe2\x99\xc6\x35\xcf\x4a\xe9\xce\xdf\x54\x7f\xd3\x04\
+\x6e\x1e\xb8\xc9\xe8\xd0\x5e\x28\x9f\xf4\xe0\x45\x74\x32\x57\x45\
+\x06\x03\x96\x1e\xf0\x4b\x9d\x52\x0c\x26\x4f\x2c\xe9\x54\x79\x5c\
+\x05\x62\x55\x71\x7b\x02\xd6\x56\xaa\x5d\x65\xb5\x0c\x58\x37\x50\
+\xe9\x9a\xfe\xe0\x95\x4c\xd6\x4d\xac\x1a\x9d\x40\x02\xd6\x0a\x54\
+\x7a\x47\x25\xea\x1a\x97\xf6\x00\xd2\xa2\x4e\x29\x45\x5d\x73\xa5\
+\x4b\xba\xce\xd3\x9a\x95\xae\x1a\x74\x82\x07\x4e\xfc\xcb\x15\xda\
+\xcf\x79\x41\xf7\xee\xab\x86\x4b\x17\xb3\xb6\x52\xed\x2a\xab\xf9\
+\xd2\x9a\x95\xae\xe9\x0f\xd6\x7c\x46\xfd\x55\x7f\x6b\x0a\xb4\xc6\
+\x52\x0f\xe0\x9e\x3a\xa5\x50\x5a\xb3\xd2\x25\x5d\xfc\xee\xca\x73\
+\x9e\x5f\x92\x94\x79\x0f\x7f\x68\x4a\x77\xbb\x4b\xfd\xe6\x01\xab\
+\x8b\xec\x2d\xda\x73\xc7\xd2\x1b\x08\x8b\x65\x33\xe0\x9c\xbc\x29\
+\x81\x70\x47\xc5\x00\xea\xdd\xb5\xe6\x4f\xf5\x3b\xcb\x19\xc7\x1c\
+\xab\x7f\x7f\xa1\x99\x32\xd7\x5a\xbc\x96\xf7\x75\xed\xb5\x9e\xb9\
+\xf5\xab\x6d\x35\x4f\xad\x59\xe9\x6c\xb0\x6e\xfe\x6a\x5f\xcd\x61\
+\x97\x02\xad\x59\xe9\x2d\xd4\xbf\x4a\x2f\x74\x0d\xf7\x65\xfd\x6f\
+\x78\x7d\xfb\xaa\x0b\xfb\x7c\xc0\x94\xf1\x31\xfb\x7f\xf8\x6b\x5e\
+\xdf\x9d\x47\x27\x4a\xfd\xac\x63\x4a\xfd\xd4\x05\x2a\x3d\xc5\x16\
+\x3a\xdb\x5e\xff\x57\xbe\xb6\xfb\x97\xd3\x94\x7c\x98\xcb\x32\xdd\
+\x78\x03\xd1\x9a\x95\x56\x1f\x83\xdf\x03\x61\xa3\x88\x50\xa4\xa1\
+\x1a\xd5\x68\xea\x6e\xc2\xbe\x16\xa3\xc6\xd7\xd8\xd4\xd1\x6b\x0a\
+\x68\xe8\x10\x99\xe3\x32\x84\x1f\xfa\xa5\xcf\x65\x48\x5d\xfa\xdc\
+\xb4\x7d\xf4\xcf\x38\xc4\x18\xef\xa8\xeb\x5f\xd6\x9b\x4d\xca\x58\
+\x6f\xc4\x5d\xd7\x8f\x7c\x98\x83\xd2\x1d\xb7\x7d\x54\x1b\xa5\x69\
+\xa9\x3c\xd0\xf1\xc1\xd8\xd4\x2f\xad\xff\xdd\xef\x4a\x69\x1b\xf1\
+\x4b\x79\x53\x3f\x77\xa0\xb1\x99\x97\xf2\xda\xd1\x16\xe7\x5a\xcd\
+\x1e\x7c\xfa\xa4\x8e\x22\x65\x9d\x56\x77\xae\x83\x46\x1f\x78\xde\
+\x13\xd5\xae\x46\xc3\x16\xb2\xa9\x83\xba\xf4\x07\x3b\xf2\xa6\xf8\
+\xa0\x6e\xcd\x3e\xca\xb1\x36\xf8\x94\xfa\xa6\xc6\x85\x17\x0d\xf7\
+\x14\xfc\x32\x66\x2d\xc6\xe0\x19\x08\xef\x52\xc0\xd2\x03\xce\xc0\
+\x67\x81\x11\xa7\x04\xd4\x44\x98\x1c\xfd\xd0\x37\x70\xee\x50\x5b\
+\xfa\xc3\xae\xf1\x18\xf0\x47\x9f\xc4\x42\x00\xc6\x05\x96\x1e\xf0\
+\xc5\x38\x8c\xa1\x08\x97\x1e\xaf\xe0\xbb\xc4\xa2\x2e\x7d\xd0\x37\
+\x63\x83\x4f\x9e\xea\xd2\x17\x64\x18\x55\x7d\x93\xbb\x1d\xf4\xb2\
+\x6e\x8f\x6e\x39\x3c\x44\x7f\xf4\x4b\xfe\x50\x7b\x37\x33\xf6\x01\
+\xd1\x99\x17\xf3\x1c\xf5\x6b\x83\xf5\x23\x46\xf4\x8f\xb9\x3e\x90\
+\x13\xe6\x53\x07\x75\xe9\x43\x63\x28\x4d\x39\xfc\xd2\x06\x34\x74\
+\x88\x45\xfd\x50\x3f\x5e\x34\x9d\xfa\x2b\x83\x17\x7c\x34\x25\x7c\
+\x0f\x13\xfc\xf2\x81\xd8\x8c\xc3\x9c\x14\x91\x8b\xe6\xe7\xc9\x2d\
+\x39\x50\x97\x3e\xe8\xbb\x16\x2f\xfa\x87\x1e\x46\x55\x3f\xd4\xdf\
+\x29\xfb\xb1\x78\x88\xfe\xe8\x97\x88\x3c\x41\x33\xdf\x88\x70\x0a\
+\xde\xd4\x41\x5d\xfa\xa1\xef\x5a\x3c\xf8\xa5\x0d\x68\xe8\xe1\xd7\
+\x1f\xf1\xa2\xfa\x26\x06\xbe\x65\x00\x83\xf1\x23\x22\x36\x78\xcc\
+\x17\xd8\x7c\x11\xbd\x73\xb9\x38\xc6\x02\xe8\x14\x1a\xa4\xa9\x13\
+\x91\x3a\x0b\x6f\x43\xaa\xa4\x3f\xd4\xa8\xcf\x4a\xb6\xcb\x78\x25\
+\x4f\x25\xfd\xa8\x47\x1d\xf0\xd9\x4c\x20\x06\x64\xe4\x71\xae\x18\
+\x69\xcc\x75\xd0\x37\x11\x32\xa5\x55\x57\x65\xaa\x53\xa2\x4b\xbc\
+\xe8\xab\xe6\xaf\xa4\xb7\x2f\x3c\xd6\x45\xd4\x1a\x94\xae\xc9\x63\
+\x1d\xd4\x23\x46\xb9\xfa\x04\xcd\xb5\x3e\x5e\xd6\x1f\x2f\xa0\x9e\
+\x7a\x6a\xa9\xaa\x31\x0f\xdf\xa3\xc4\xff\xc3\xab\x54\x7b\x73\xbc\
+\xd5\x8f\x3a\x34\x7f\xad\x4b\x65\x53\x74\xa0\xbf\xeb\xfa\xf1\x1b\
+\x20\xf7\xb4\x17\xc7\xaf\x7c\x66\xac\x64\xb5\x39\x9e\x81\x60\xcc\
+\xa9\x7f\x70\x03\xe9\xcc\xa7\x1f\x19\x88\xd8\x0a\x3e\xdd\xf3\x66\
+\x34\x91\x17\x17\x19\x1e\x49\x03\x37\x31\x58\x37\x11\x3e\x95\xde\
+\x44\x8c\x75\x7c\x6c\xb2\xfe\x9f\xb1\x0f\x1a\x1d\x6f\x63\x93\xf5\
+\x97\x6a\xe7\x5a\x13\xa1\xa3\x74\xc9\xe6\x28\x79\xb1\x7e\xbc\x75\
+\x73\xca\xf8\xcc\x67\xe5\x9b\x76\x97\x18\xb0\x56\x22\x54\x95\x5e\
+\x62\x7a\x24\xa2\x58\xff\x89\x72\xfe\xe3\xad\xb8\xf7\xbd\x57\xf9\
+\xad\xb8\xab\x36\x16\xbf\x67\x8f\xc7\x9c\x81\xfe\xfa\x0d\x84\x8b\
+\x1e\x1b\xdc\x5a\x80\x28\x8f\xc1\xa3\xbf\x28\x8f\xf6\x2d\xfd\x68\
+\xdf\x9a\xc3\x1f\x06\x31\xd2\xad\xf8\x73\xe5\x1e\x4c\x0e\xad\x7a\
+\x5a\xfe\xc5\x95\x93\x73\xf5\x59\x37\x11\x4e\x94\x6e\xf9\x9b\x2b\
+\x8f\xf9\x1e\xea\xef\x2e\xa8\xda\x73\xed\x51\xab\xbf\xaa\x0b\x7a\
+\xae\x3e\xe3\x02\xaf\x7f\xdd\xe9\x6f\xdd\xc5\x0b\xe7\x78\xf6\xd1\
+\x8a\x17\xe5\x31\xdf\xc3\xfa\x2f\x7a\x18\x7b\xb3\xca\x7a\x5e\xc3\
+\x7e\x6e\xf8\x5b\xef\xbb\xfc\xad\xb8\xa5\x38\x53\x78\xfa\xec\x83\
+\xfb\x26\xae\x6f\x5c\x4f\xc8\x07\xcf\x40\xc0\xc0\x20\x46\xda\x85\
+\x72\x60\x20\xa2\x88\x7a\x52\x65\x31\x21\x28\x69\xac\xde\x68\x45\
+\x22\xfa\x8f\x05\xb7\xdc\x32\x17\x22\xf4\x95\x8e\xf6\xac\x8d\x18\
+\xe5\x98\xab\x2c\xe6\x07\xf9\x32\xff\x90\xcf\x19\xd1\xff\xa1\xfe\
+\xae\xbf\xba\x06\xcb\xfa\xc9\xb5\x20\x42\x57\xe9\x68\x4b\xbf\xc4\
+\x28\xc7\x5c\x65\x71\x7d\x20\x5f\xe6\x1f\xf2\x39\x23\xfa\x47\x6c\
+\xf2\x6e\x70\xbd\x69\x9e\xa0\xff\x8a\x57\x2f\xf2\x5a\x96\x1f\x6b\
+\x23\x96\x22\xa8\x8c\xb9\xa8\x4f\xa5\x4b\xf6\x73\x78\xd1\xbf\xd6\
+\x3f\xc5\x0f\x73\x21\xc2\x46\xe9\xe8\x83\xb5\x11\xa3\x1c\x73\x95\
+\xc5\xfc\x20\x5f\xe6\x1f\x72\x0c\xac\x1d\xbe\x5d\xf7\x1b\x6f\x33\
+\xf4\xd7\x49\x37\x73\xc4\x3b\xb0\x98\x0b\x11\x9e\x95\x8e\x91\x50\
+\xdb\xe0\xf7\x40\xa0\x0c\x26\x8d\x48\xb3\x09\x51\x1e\x1d\x4e\x99\
+\xd3\x37\x74\x37\xe9\x5f\x73\x9b\x9a\x6f\x2b\x7e\x4b\x3e\xa5\xde\
+\xa8\xb3\x6e\xfd\x6a\x4f\x9a\x38\x37\xdf\x96\x7e\x4b\x1e\x6b\x9b\
+\x32\x67\xae\xd0\x5d\xc5\xbf\xda\x93\x26\xce\xf5\xd7\xd2\x6f\xc9\
+\xa7\xd4\x1b\x75\x98\xeb\x51\xd7\x7f\xa5\x2b\xc5\x4c\xca\xf3\x77\
+\xbf\x77\xf1\xd6\xd0\x13\xa9\xfe\x52\xb5\xad\xfa\x5a\xf2\x92\xcf\
+\x16\x6f\xce\xfa\x5f\xf5\x2a\x29\x7d\xff\xf7\xce\xfb\xc2\xcb\x56\
+\xfc\x9a\x9c\x6f\xe1\x65\xcd\xd0\x23\x0d\xc4\x40\xee\xe4\x75\x9c\
+\xfc\x8b\x84\x10\xb0\x30\x22\x0d\x88\xe4\x13\xe9\x60\x1d\xa4\x2f\
+\xa0\xd2\xab\xfa\x54\x1f\x4a\xd7\xfc\xa9\x8e\xd2\xd4\x57\x9e\xd2\
+\x94\xaf\x8b\xea\x53\xe9\x9a\x5f\x2e\x24\x50\x69\xea\xab\x0f\xa5\
+\x29\x8f\xa8\x3a\x4a\x53\x4f\x79\x4a\x53\xbe\x2e\xaa\x4f\xa5\x6b\
+\x7e\xb5\x66\xa5\xa9\xaf\x3e\x94\xa6\x3c\xa2\xea\x28\x4d\x3d\xe5\
+\x29\x4d\xf9\xba\xa8\x3e\x95\xae\xf9\xd5\x9a\x95\xa6\xbe\xfa\x50\
+\x1a\x72\xfe\x8b\x82\xba\x35\xc4\xb3\x0f\x0e\xf5\xa1\x34\xe5\xeb\
+\xa2\xfa\x54\xba\xe6\x57\x6b\x56\x9a\xfa\xea\x43\x69\xca\x23\xaa\
+\x8e\xd2\xd4\x53\x9e\xd2\x94\xaf\x8b\xea\x53\x69\xfa\xbd\xf8\x13\
+\x29\xbd\xe4\xe5\x29\xe1\xdb\x00\xb6\x3d\xb8\x3f\x98\x07\xe2\x91\
+\x06\x2a\xad\xb9\x0c\xde\xc6\xab\x82\x4d\xd0\x16\xd7\x07\x50\xe9\
+\xcc\x1e\x41\x2d\xc9\x91\xe2\x44\x86\xfa\x53\x7a\xa2\xf9\xda\x6a\
+\x5a\xb3\xd2\x35\xc7\x9a\xa3\xd2\xd4\x57\x9e\xd2\x94\x47\x54\x1d\
+\xa5\xa3\xde\xb6\xe6\x5a\xb3\xd2\xb5\x78\x9a\xa3\xd2\xd4\x57\x9e\
+\xd2\x94\x47\x54\x1d\xa5\xa3\xde\xb6\xe6\x5a\xb3\xd2\xb5\x78\x9a\
+\xa3\xd2\xd4\x57\x9e\xd2\x94\x47\x54\x9d\xb7\xbf\x33\x25\x7c\x7a\
+\x79\xd9\xc0\x5b\x77\xcf\x79\xeb\x32\x8d\x79\x32\xad\x59\xe9\x9a\
+\x17\xcd\x57\x69\xea\x2b\x4f\x69\xca\x23\xaa\x8e\xd2\x51\x6f\x5b\
+\x73\xad\x59\xe9\x5a\x3c\xcd\x91\xf4\x39\x6f\x49\xe9\x3f\xfe\x97\
+\x94\x5e\xf0\xe2\x79\x9f\xc9\xa9\xc5\xa8\xf1\xf9\x16\xde\x9a\xbc\
+\xc6\x1f\xdc\x40\x98\x34\x50\xe9\x9a\x71\x8b\x9f\x9f\xf9\xf8\x47\
+\x0f\x94\x6e\xd9\xad\x22\x2f\xe5\xab\x7f\xa5\x28\x5d\xf3\xaf\x3e\
+\x94\xae\xe9\xb7\xf8\x5a\xb3\xd2\x2d\xbb\xa9\x72\xcd\x51\x69\xda\
+\x6b\xcd\x4a\x53\x1e\x51\x7d\x28\x1d\xf5\xa6\xce\xb5\x66\xa5\xa7\
+\xda\xb7\xf4\x34\x47\xa5\x69\xa7\x35\x2b\x4d\x79\x44\xf5\xa1\x74\
+\xd4\x9b\x3a\xd7\x9a\x95\x9e\x6a\xdf\xd2\xd3\x1c\x95\xa6\x9d\xd6\
+\xfc\xd9\xcf\xa5\xf4\xd4\xbf\xa6\x64\x8c\xf8\x50\x1a\xe4\x7c\xf1\
+\xbc\xe4\x6f\x6c\xb5\x9c\xa3\x35\x2b\xbd\xdc\x6a\xba\x54\x73\x54\
+\x9a\x1e\xb4\x7e\xa5\x29\x8f\xa8\x3e\x94\x8e\x7a\x53\xe7\x5a\xb3\
+\xd2\x53\xed\xa9\xf7\x65\xfb\x31\xa9\xbf\x79\x56\x4a\xbf\xfe\x5b\
+\x29\xbd\xe7\x7d\xe4\x6e\x0e\xb1\xe6\xf8\xd6\x01\xad\x59\xe9\x65\
+\x91\x06\xef\xc2\xc2\x95\xde\x0d\x59\x2d\x2c\x95\x0e\x9e\xa0\x8b\
+\x85\x61\xb0\x20\xee\x6c\x71\xeb\xa5\x0f\xd2\xc0\xc2\xa0\x2f\x2e\
+\x76\x41\xa5\xca\x52\xdb\x5a\x3e\xaa\x03\x47\xa3\xfc\x59\x0b\xf3\
+\x85\x92\xd2\x98\xcb\x18\xd9\x8b\xcc\x49\xd8\xb2\x66\x30\x48\x4f\
+\xac\xbf\xe5\xbf\x59\x8f\x27\xb1\x38\x34\xf5\x0f\xf5\xef\xd5\xfe\
+\xdf\xf4\xfa\xbf\xca\xbe\xfa\x02\xcf\x42\xbe\xeb\x3b\xba\x6f\x65\
+\xe5\xce\xc0\x97\xe8\xfd\xaf\xbf\x48\xe9\x03\xe7\xc9\x1e\xa5\xf0\
+\xb0\xff\xd9\x89\x11\xb6\xd6\xc7\xaf\x1d\x3c\xe7\x61\x4d\x7a\xc5\
+\xf3\x1f\xcf\x10\x7f\xe7\x89\x29\xdd\xe5\x8e\xdd\x1a\x4e\xf9\x22\
+\xc5\x51\xd2\x05\xc6\xc7\xed\x5f\x65\xf8\xb5\x49\xe4\x8b\x9a\x06\
+\xd7\xbc\xc6\xfa\x2f\x7d\x11\x9d\x75\x12\x47\xb1\x63\x40\x06\xcf\
+\x06\x88\x4d\x96\xdb\x32\x99\x8c\x71\x01\x3c\x79\xd8\x54\x03\x8e\
+\x32\x18\x30\x70\x81\xc4\x20\xb6\xfc\xb7\x2e\xa8\x4c\x83\xd8\x79\
+\x97\xa3\xc5\xf3\x5c\x59\x17\x8b\xcd\x06\x60\x93\xe5\x56\xd4\xcb\
+\xb8\x6e\x7e\x92\x49\xe7\x3e\xfb\x3d\xd4\xdf\x75\x66\xdd\xfe\x72\
+\xdd\x89\xb1\xdf\xa3\x13\x8e\x8b\x9d\x0d\xf6\x71\xfd\x5f\xf7\xc6\
+\xee\xdf\x54\xf8\x3e\xac\xab\xd8\x8b\xb4\x17\x5e\x98\xd2\x05\xf6\
+\xf0\x61\x79\xf3\x9c\xc0\x9c\x75\x13\x3b\x25\x39\x5a\x81\x87\xfd\
+\x6f\xfd\xc8\xe7\x5d\x7f\xb2\x6f\x79\xfd\x5f\xfb\x86\x94\xde\xf2\
+\x8f\x29\x3d\xec\xc1\xf6\x41\xc2\xbb\xd9\x0b\xd9\x83\xff\x23\xc9\
+\xfa\x4c\x24\x2f\xb2\x0f\x10\x72\xdd\x89\x30\xe5\xba\x13\x47\xee\
+\xac\xee\xe1\x33\x10\x18\x55\xb5\x47\xe6\xe5\x08\x62\x4f\x5f\xc4\
+\x82\x87\x79\xf1\x4a\x0e\x32\xaf\x18\xa3\xb1\xc1\x69\x43\x84\x2b\
+\xa5\x97\x84\xeb\x44\xac\x95\xe8\x0e\x16\x56\xf4\x45\x5c\x48\x16\
+\xd4\x14\x99\xea\x94\x68\xe5\x2d\x3c\x1b\x75\xa8\x7f\xe9\x05\x8e\
+\x7d\x23\xa2\x77\x4a\x0f\x7a\x59\x9a\x70\xdd\x89\xee\x60\xa1\x48\
+\x5f\xc4\x85\x64\x41\x4d\x91\xa9\x4e\x89\x56\xde\xc2\xb3\x51\x95\
+\xf5\xc7\xb3\x90\x73\xcf\xef\x1e\x03\x7d\x9b\x54\x7d\x45\x45\xcc\
+\x59\x37\x51\x79\x10\x67\x3e\x11\xe2\x38\xa6\xc8\x54\xa7\x44\x2b\
+\x6f\xe0\xbf\x52\x3f\xf3\xa6\x1d\x11\xb6\x4a\x0f\x7c\x95\x26\xac\
+\x9b\xe8\x0e\x16\x8a\xf4\x45\x5c\x48\x16\xd4\x14\x99\xea\x90\xfe\
+\xe2\x17\xed\x5f\x8e\xcf\x48\xe9\x55\xaf\x49\xe9\xd1\x8f\x4c\x09\
+\x5f\x92\xb9\xea\xc0\x0b\xe8\xf4\x4b\x9c\xe4\xcb\xea\xf6\x7b\x17\
+\x8c\x68\x48\x2c\x39\xa0\x6c\xaa\x7e\xc9\xc7\x36\x79\xa3\xfc\x58\
+\x17\x16\x18\x0f\x0c\x22\xc8\x4c\x4f\xad\x67\xae\xbe\xc7\x3b\xc2\
+\xc3\x28\x3f\xab\xcf\x79\xa8\x93\x75\x13\x0f\xf5\x1f\xd6\x3f\xef\
+\x85\xc3\xfe\x1f\x5e\x0b\x6a\xa7\xec\xe8\xfc\x92\x73\xa8\x66\xb3\
+\x6d\xfe\xf9\xf6\x43\x5f\x4f\xf8\xef\x29\x3d\xd9\x7e\x31\xf2\x0b\
+\x33\x3f\x49\xce\xdc\xa6\xde\x40\x4a\xf5\x2f\xfd\x17\x16\x9f\xce\
+\x00\x31\x22\xc2\x21\x75\x28\x27\x0f\x73\xd2\x0c\x4c\x5d\xfa\x81\
+\x8e\x8e\xa8\xaf\xb2\x16\xad\xb6\xea\x5f\x69\xd5\x81\xbf\x98\x4f\
+\x4b\x4e\x5f\xc4\x96\x7e\x4b\x1e\x6b\x8a\xfa\x51\x3e\x37\x5f\xd6\
+\x48\x3f\xd1\xff\x5c\x7f\xac\x9b\xb8\xae\x3f\xe6\x45\x8c\xfe\xc8\
+\x27\xce\xcd\x17\x76\xcc\x15\x74\xf4\x3f\xd7\x1f\x7d\x11\xd7\xf5\
+\x87\x9c\x74\x44\x7f\x2a\x03\x3d\x37\x5f\xda\xd0\x4f\xf4\x3f\xd7\
+\x1f\xeb\x26\xae\xeb\x8f\x79\x11\xa3\x3f\xf2\x89\x73\xf3\x85\x1d\
+\x73\x05\x1d\xfd\xcf\xf5\x47\x5f\xc4\x75\xfd\x21\x27\x1d\xd1\x9f\
+\xca\x40\xd7\xf2\xc5\x8b\xe0\x2f\x7b\x55\xf7\xaf\x49\xfc\xee\xc7\
+\x5d\xef\x3c\xac\x3b\xfa\x89\x73\xbc\x03\x4b\x7d\x23\x0f\x0c\xe5\
+\x71\xae\x08\xbd\x63\x6c\x86\x0a\xc8\x5b\xb5\xa0\x5a\x02\xd1\x5f\
+\x2b\x41\xe4\xb4\xce\x68\xc5\x83\x6f\xd6\xaa\x34\x79\xd1\x3e\xe6\
+\x12\xf3\x8f\xfa\x73\xe5\x8c\x4b\x8c\xfe\x62\xfc\xd6\x3c\xda\xc7\
+\x7c\xb4\x66\xa5\xa7\xc6\x8f\xfe\x5a\xf1\x5a\x72\xc6\x25\x46\xfd\
+\x56\xbd\x51\x1e\xed\x63\xbe\x5a\xb3\xd2\x53\xe3\x47\x7f\xad\x78\
+\x2d\x39\xe3\x12\xa3\x7e\xac\xaf\x35\x8f\xf6\x31\x5f\xad\x59\xe9\
+\xa9\xf1\xa3\xbf\x56\xbc\x96\x9c\x71\x89\x51\xbf\x55\x6f\x94\x47\
+\xfb\x98\xaf\xd6\xac\xf4\xd4\xf8\xd1\x5f\x2b\x5e\x4b\xce\xb8\xc4\
+\xa8\x1f\xeb\x8b\xf3\xcf\x7d\x3e\xa5\x3f\x7f\x4a\x4a\xaf\xcc\xff\
+\xd6\xc2\x2f\x11\x4e\x19\xfa\x21\x42\xe8\x4f\x8d\x0f\x3d\x7f\x06\
+\xb2\x2c\x08\x8a\x58\x75\xd0\x96\x08\x3f\x4a\x47\xbf\x90\x21\xa9\
+\x65\x3a\xd1\x66\xce\x9c\x7e\x89\x53\x6c\xe7\xe8\x46\x7f\xb4\x25\
+\x42\xae\x74\x49\x3f\xd6\xaf\xfa\xa4\x89\x2d\x7f\x25\xff\xab\xda\
+\x44\x5f\x53\xe6\xcc\x93\xd8\x8a\x0d\xbd\x43\xfd\xc3\x3d\x52\xea\
+\x5d\x89\xb7\xea\x7a\xb4\xec\x34\x56\x4b\x37\xca\x69\x4b\x84\x5c\
+\xe9\x92\xfe\x61\xfd\x87\x3d\xd2\x7e\x91\x26\xd6\xfa\xf9\xfe\x0f\
+\xa6\xf4\x1b\xf6\x96\xdf\xfb\xdc\x23\xa5\x87\x3c\x70\xfc\xdb\xe7\
+\xda\xf7\x4b\x2e\x49\xe9\xd3\x9f\x51\xce\x90\xd6\x58\x43\x49\x37\
+\x1b\xbe\x7e\x9f\xff\x55\xe5\xef\x2a\x50\xba\x64\x69\x3c\x3a\x07\
+\x2a\x4d\x75\x6c\x06\x0c\xa0\xd2\x1d\x77\x68\x53\xb2\xa7\xde\x54\
+\x54\x1f\x4a\x4f\xb5\xf7\xba\xa1\x8c\xbc\x0f\xf5\x77\x6d\x63\x1f\
+\xba\xd9\xe0\xa8\x3d\x56\x9a\x4a\xba\xe6\x4a\x53\xae\x36\x4a\x53\
+\x3e\x17\xd5\x87\xd2\x93\xfd\xb0\xd6\xc3\xfa\x1f\xf6\xbf\xee\x85\
+\xca\x06\xd2\x3d\xa6\x34\xd5\x75\xcf\x2b\x4d\xb9\xda\x28\x4d\xf9\
+\x5c\x54\x1f\xf8\x5c\xcf\x0b\xcf\x4e\xe9\x57\x7e\xa3\xfb\xcd\x90\
+\x9a\x2f\x7e\x02\xdd\xe5\x5a\xb3\xd2\x15\x63\xc4\x3b\xc5\x1e\x8b\
+\xc1\x09\x50\xe9\x85\xc6\x2c\x4a\x0b\x02\xed\x6e\x89\xd9\x13\xc3\
+\xcc\x72\xbc\xa2\x32\x63\x79\x1e\xa5\xf8\x4d\x85\x79\x81\xd7\xad\
+\x7f\xc3\xe9\x0c\x96\x54\x7d\xf7\x55\x29\x53\xe9\x5e\x61\x1e\x71\
+\xa8\xbf\xeb\x97\xef\x7d\xeb\x27\x5a\xda\x9f\x07\xb9\x95\x6c\x73\
+\xa9\xb3\x94\xb9\xdd\x04\xfd\x92\x0f\xe5\x35\xfd\x35\x15\xd4\x5b\
+\x9b\x3e\xac\x7f\xd7\xa3\x5d\xae\x3f\x9e\x5d\xfc\xf1\x9f\xa5\xf4\
+\xdf\x7f\xbf\xfc\x75\x36\x1f\xcd\x3f\x22\xe5\x99\xae\xb0\xfe\xa7\
+\xf0\x46\xd3\xde\x0e\xc3\x7b\x8a\xc6\x9a\x62\x0b\x1d\xc6\x02\x2a\
+\x3d\xd5\x7e\x99\x9e\x6e\x56\xea\x29\x0f\x34\x62\x12\x57\x89\xaf\
+\x35\x2b\xcd\x78\x2d\xd4\x98\x4a\xd7\xec\x54\x47\x69\xea\xc7\xfa\
+\xc0\x27\x4f\x69\xf0\x58\x37\xb1\xe4\x8f\x7e\x6b\xa8\x35\x2b\x5d\
+\xd3\x8f\x7c\x8d\xa9\x74\xd4\xe3\x5c\x75\x94\xa6\x9c\xb5\xb2\x3e\
+\xf0\xc9\x53\x9a\x72\xf8\x00\x0d\x2c\xf9\x83\xcd\xb2\xa1\x35\x2b\
+\xbd\xcc\x46\x65\x1a\x53\x69\xd5\x51\x5a\x75\x94\xa6\x0e\x6b\x65\
+\x7d\xe0\x93\xa7\x34\xe5\xf0\x01\x1a\x58\xf2\x07\x9b\x65\x43\x6b\
+\x56\x7a\x99\x8d\xca\x34\xa6\xd2\xaa\xa3\xb4\xea\x28\x4d\x1d\xd6\
+\xca\xfa\xc0\x27\x4f\x69\xca\xe1\x03\x34\xb0\xe4\x0f\x36\xcb\x86\
+\xd6\xac\xf4\x32\x1b\x95\x69\x4c\xa5\x55\x47\x69\xd5\x51\x9a\x3a\
+\xac\x95\xf5\x81\x4f\x9e\xd2\xe0\xbd\xe3\x5d\x29\xfd\x7f\xff\x35\
+\xa5\xbf\x7d\x76\x4a\xf8\x64\x3b\x07\x3e\x03\x32\x75\x68\xcd\xa4\
+\x07\x9f\x03\xc1\xd3\x2c\x04\xe3\xd3\x2d\xd2\x4c\xaa\x25\x6f\x25\
+\xd2\xb2\x8f\xf2\x96\x3f\x95\xab\x6d\x2d\x5f\xe8\x43\x8f\x63\x6e\
+\x7d\x1a\x03\x3e\xa2\x3d\xfd\xd6\xb0\x65\xdf\x92\x47\xbf\x2d\xfd\
+\x28\x87\x3d\x78\x1c\x31\xff\xa8\x3f\x57\x4e\xbf\x35\xdc\xb4\xff\
+\xb9\xfe\x90\xd7\xa1\xfe\xc5\xea\xcc\x5d\xdf\x56\xbf\x17\x9e\xcb\
+\x54\xcb\xbe\x25\x8f\x5e\x5b\xfa\x51\x0e\x7b\xf0\x38\x4e\xb6\xfa\
+\xf1\x6f\xad\xe7\xbc\x20\x25\x7c\x98\xf4\x51\xdf\x95\xd2\x6d\x6f\
+\xdd\x3d\x2b\x41\x1f\x30\x62\xbf\xa6\xf4\x67\xf0\x22\x3a\x1d\x11\
+\xe1\x54\x69\xcc\x97\x8d\x56\x02\xf4\x45\x84\x2f\xa5\x97\xf9\x6e\
+\xc9\x78\x47\x24\x96\xf4\x11\x8b\x39\x52\xae\xf1\x49\x13\xa1\xa3\
+\x34\x6d\x6a\x48\xdf\x40\x0c\xd8\x92\xc7\xb9\x62\xa4\x31\xd7\x41\
+\x3f\xc4\x91\xbf\xac\xac\x35\x2b\xad\xbe\x40\x47\x7b\xf2\xa8\xc7\
+\x5a\x89\x51\x4e\xbd\x1a\xb2\xd6\x6a\xbe\x39\xb9\xa9\xfe\xe9\x87\
+\x18\xf3\x67\xad\x44\xcf\xb7\x96\x9c\xf1\xa3\xbd\xeb\x8b\x31\xf3\
+\x22\x46\xf9\x12\xd7\x2e\x3a\xd4\xbf\xe8\x31\x7b\xc7\x9e\x70\xae\
+\x18\x69\xcc\x75\x70\xdd\x89\x71\xfd\xb8\x74\x44\xd8\x2a\xad\xbe\
+\x5c\x66\x42\xcd\x87\x3c\xea\x71\xdd\x89\x51\x4e\xbd\x1a\xd2\x77\
+\x35\xdf\x9c\xdc\x54\xff\xf4\x43\xdc\x54\xfd\xf8\xea\x9a\x27\xfe\
+\x51\xf7\xfb\x22\x1f\x91\xdf\x53\x67\x5e\xc4\x29\xf5\xfb\x33\x90\
+\x5a\x43\x22\x9f\x8e\x89\x31\x00\xf9\xc4\x28\x8f\xfe\x5a\x0d\x8f\
+\xfa\x4b\xe7\xdc\x39\x44\x53\x66\x1e\x44\xd8\x2b\xbd\xd4\x5f\x41\
+\x48\x5b\x62\xf4\x47\x3e\x31\xca\xa3\xcb\x55\xea\x57\xdf\xfd\xd9\
+\x22\x35\xf7\x3c\x0b\x46\x5d\x62\x2b\x9f\x98\x5f\x9c\xd3\x0f\x31\
+\xfa\x23\x9f\x18\xe5\xd1\xdf\xa1\xfe\x6e\x8d\x6a\x17\x88\xd8\xaf\
+\x51\x3f\xb9\xee\x44\x57\x58\x58\x71\x1d\x88\x23\xfb\x85\xea\x24\
+\x8a\x7e\x88\xd1\x1f\xf9\xc4\x28\x8f\x41\x0e\xeb\xbf\xdb\xf5\x7f\
+\xcb\xdb\xe2\x8a\x2c\x9f\x73\x5d\x89\xd0\x1e\xbc\x0b\x8b\xfb\x10\
+\xa8\xf4\x72\xb7\xab\x4b\x99\x08\x50\xe9\xd5\x3d\xae\x67\xa9\x35\
+\x2b\xbd\x9e\xd7\xba\xb5\xd6\xac\x74\xdd\x62\xbb\x12\xad\x59\xe9\
+\x6d\x45\xd5\x9a\x95\xde\x56\xbc\x96\x5f\xad\x59\xe9\x96\xdd\xaa\
+\x72\xad\x59\xe9\x55\xfd\xad\x6b\xa7\x35\x2b\xbd\xae\xdf\x9a\xbd\
+\xd6\xac\x74\x4d\x7f\xdb\x7c\xad\x59\xe9\x6d\xc5\xd5\x9a\x95\xde\
+\x56\xbc\x96\x5f\xad\x59\xe9\x65\x76\x83\x1b\x08\xff\x3d\x08\xc4\
+\x03\x45\x11\x4b\x05\x2a\x4f\x69\x06\x54\x1e\xe8\xf8\x80\x1e\x75\
+\x94\x56\x1e\x7d\x4d\x41\xda\xc5\x38\x9c\x6b\x8c\x92\xbf\x7d\xaa\
+\x5f\x6b\x61\xae\xca\x53\xba\x26\x67\xdd\xc4\x43\xfd\xc3\xfd\xc6\
+\xbe\x11\x0f\xeb\xdf\x75\x02\x7d\xe0\x79\x4f\x9c\xb2\xdf\x60\x4d\
+\x3d\xa5\xb9\xff\x22\xaa\x8e\xd2\xd4\x53\x9e\xd2\x53\xe5\xd4\x23\
+\xaa\x0f\xd0\x71\x1c\xd6\xbf\xeb\xc8\x9c\xf5\x1f\xfc\x0b\x0b\x8d\
+\xe6\xd3\x4a\xb8\x22\x5d\x7b\x8a\x1d\xe5\xb4\xe9\xd2\xe8\xec\x95\
+\x17\xfd\x53\x6f\x13\x08\xdf\xd8\xf5\x44\x8f\x6b\x87\xcc\xee\x43\
+\xb0\x96\x9e\x21\x44\xcc\x2f\xd6\xd7\x92\xc3\x95\xfa\x27\x4d\x8c\
+\xf6\x12\x7a\x12\x49\x3f\xc4\x91\xbf\x43\xfd\x87\xf5\x97\x0d\x8f\
+\x0b\x81\x4c\x7d\x8f\x71\xef\x94\x36\x5c\xdc\x4f\xd0\x25\x0f\xfa\
+\xa4\x81\x18\x51\x4e\x9e\x0b\xb3\x5c\x79\xd1\x9e\x7a\x53\x91\xb9\
+\x13\x47\xfe\x0e\xfb\xff\xc8\xf7\xff\xe0\x45\x74\x2c\x24\x37\x47\
+\x69\x51\xb9\x70\xc4\xd1\x02\x96\x8c\x02\x4f\xfd\x93\x26\xc2\x2f\
+\x7d\x06\xb3\xf6\x54\xcf\x96\xbc\xc1\x33\xf4\xff\x8e\x6b\x3b\xd9\
+\xaf\xfa\xd9\x0b\xf6\x67\x94\x7f\x38\x61\xfa\xab\xc5\xa1\x7e\x6f\
+\xd5\x61\xfd\xbb\x1d\xc3\x3e\x8c\xf6\x4f\x81\x51\xdd\x6b\xa6\xcb\
+\xf3\x9e\xd8\xdc\x9f\x0d\xff\x8c\x45\x8c\xe7\x7f\xd3\xff\x61\xff\
+\x0f\x6e\x18\xbb\x38\xff\x07\xcf\x40\xe2\x7a\x73\x61\x89\x51\x8e\
+\xf9\x32\x59\xf7\x3c\xd8\x94\x70\x71\xc7\xc0\x4e\xe6\x85\xde\x19\
+\xc3\x03\x7d\x11\x87\xd2\xe5\x33\xba\x25\x2e\xd7\x9e\x26\x65\x1e\
+\xc4\x92\xd5\x32\x59\x5f\xeb\x1a\xf5\x2f\xf3\xcf\x5a\x27\xba\x2f\
+\xa5\xbf\x94\xc7\xd8\xc4\x92\xf2\x32\xd9\xa1\x7e\xeb\x18\xf7\x3c\
+\x9a\x47\xba\x72\x45\x67\x2f\x89\x6e\x52\xd1\x85\xec\xb0\xfe\x8b\
+\x96\x7a\xaf\xa4\x27\x98\xaf\x3b\xb8\x0e\xc4\x92\xbf\x65\xb2\xb9\
+\x0b\x44\x5f\x44\xc4\x53\x3a\xc6\xdf\x87\xf5\x1f\xbc\x06\x12\x13\
+\x5c\x7b\xce\xcd\x0f\xb4\x87\x4f\x33\x3a\xdd\xb1\xd7\x0e\x03\x07\
+\x6c\x34\x71\x23\x4e\xd7\x75\xa2\x45\xe6\xba\xd9\x07\x15\xd5\xc2\
+\xa8\x8e\xd2\xd4\x67\xad\x40\xa5\x29\xdf\x39\x6a\xd2\xc8\x11\x09\
+\x65\x54\x51\x2d\x4f\xd5\x51\x9a\xfa\x5a\xb3\xd2\x94\xef\x1c\x35\
+\x69\xa3\x7d\x9a\x51\x45\xb5\x3c\x55\x47\x69\xea\x6b\xcd\x4a\x53\
+\xbe\x73\xd4\xa4\x8d\xf6\x69\x46\x15\xd5\xf2\x54\x1d\xa5\xa9\xaf\
+\x35\x2b\x4d\xf9\xce\x51\x93\x36\xda\xa7\x19\x55\x54\xcb\x53\x75\
+\x94\xa6\xbe\xd6\xac\x34\xe5\x47\x81\x7e\x03\x41\xf0\x29\x09\xa8\
+\x8e\xd2\x47\x91\xe8\x94\x18\x9a\x93\xd2\x35\x5b\xd5\x51\x7a\x53\
+\xfa\x35\x3f\x53\xf9\x7c\x66\x01\x54\xba\x66\xaf\x35\x28\xbd\x2b\
+\xfd\x5a\xdc\xa9\x7c\xad\x59\xe9\x9a\xbd\xd6\xac\xf4\xae\xf4\x6b\
+\x71\xa7\xf2\xb5\x66\xa5\x6b\xf6\x5a\xb3\xd2\xbb\xd2\xaf\xc5\x9d\
+\xca\xd7\x9a\x95\xae\xd9\x6b\xcd\x4a\xef\x4a\xbf\x16\x77\x2a\x5f\
+\x6b\x56\xba\x66\xaf\x35\x2b\xbd\x4d\xfd\x9d\xfe\x1e\x08\x8a\xe4\
+\xff\x3d\x6b\x45\x4e\xe5\xab\x2f\xfe\x8f\x16\xb6\x4a\xab\x0e\x65\
+\xe4\x61\x4e\x1a\x88\xc1\xdc\xe8\x23\x62\x4b\x7f\xae\xbc\x8b\x5a\
+\x3f\xc6\x7c\x5a\xfe\x59\x03\x3d\xb6\xf4\x5b\xf2\x43\xfd\x5d\x27\
+\xd9\x87\x56\xbf\xe6\xca\xb9\x4e\x35\x3c\xac\xff\xe2\x1c\x45\x8f\
+\x5a\xfd\x85\x0e\xd7\x6a\x8a\x7e\xcb\x1f\x7d\x11\x5b\xfa\x73\xe5\
+\xc8\x71\xd9\xd8\xc7\xf5\xf7\xdf\x03\x41\xa1\x18\xad\x04\x3b\x2d\
+\x39\xda\x6d\xd1\x6d\xf3\xed\x91\x34\xfd\xe1\xcf\x66\xf2\x60\x45\
+\xba\x97\x93\x97\x5d\xc6\xf8\x99\x3d\x19\xe8\x97\x18\x0d\xa3\x7f\
+\xe8\x91\x07\x5d\xd2\x40\x8c\x28\xef\xb8\x72\x6c\xd5\xd7\x92\xe7\
+\x18\xf4\x38\x3b\x3e\x0d\x33\xb2\x6e\x62\x10\x37\xeb\x9b\x1d\xbf\
+\x55\x5f\x4b\x6e\x09\x6a\xae\xb3\xe3\x87\x02\xe9\x8b\x18\xc4\x87\
+\xfa\xf3\x7a\xd4\xf6\xf7\xec\xfe\xb7\xd6\xb7\x25\x3f\xac\xff\x71\
+\xbf\xff\x4f\xd1\x93\x8d\x34\x50\xe9\x78\x22\x4e\x9e\xe7\x1b\x93\
+\xff\xf3\x4f\xe9\x8a\x83\x75\x63\xf2\xc4\x00\x2a\xcd\x70\xea\x5f\
+\xe9\xa9\x72\xea\x4d\x46\xad\x59\xe9\x8a\x03\xcd\x49\x69\xaa\x2b\
+\x4f\x69\xca\xb5\x66\xa5\x29\x57\x1b\xa5\xa7\xca\xa9\x37\x19\xb5\
+\x66\xa5\x2b\x0e\x34\x27\xa5\xa9\xae\x3c\xa5\x29\xd7\x9a\x95\xa6\
+\x5c\x6d\x94\x9e\x2a\xa7\xde\x64\xd4\x9a\x95\xae\x38\xd0\x9c\x94\
+\xa6\xba\xf2\x94\xa6\x5c\x6b\x06\x7d\xb5\xab\xa6\x74\xbb\xdb\x52\
+\x3a\x3c\xa7\x4b\xf6\xca\x53\x7a\xe1\x61\x26\xa5\x35\x2b\x5d\x71\
+\xa3\x31\x95\xa6\xba\xf2\x94\xa6\x3c\xd6\x0f\x3e\x79\xa0\xd5\x46\
+\x69\xc8\x30\x94\xa7\x74\x27\x5d\xe1\xa8\x35\x2b\x5d\x71\xa5\x31\
+\x95\xa6\xba\xf2\x94\xa6\x9c\xb5\x02\x95\xa6\x5c\x6d\x94\x9e\x2a\
+\xa7\x9e\xe2\x5a\x2f\xa2\x6b\x12\x4a\x6b\x00\xa5\xb5\x87\x4a\xab\
+\xce\x3a\xb4\xe6\xa0\xf4\x3a\x3e\x97\xd9\x6a\x0c\xa5\x6b\x36\x5a\
+\xb3\xd2\x35\xfd\xb9\x7c\xcd\x41\xe9\xb9\x7e\xa6\xea\x6b\x0c\xa5\
+\x6b\xf6\x5a\xb3\xd2\x35\xfd\xb9\x7c\xcd\x41\xe9\xb9\x7e\xa6\xea\
+\x6b\x0c\xa5\x6b\xf6\x5a\xb3\xd2\x35\xfd\xb9\x7c\xcd\x01\xf4\xf5\
+\xaf\x9b\xd2\x4f\x3e\x36\xa5\x9f\x7a\x5c\x4a\x57\xbd\xca\x5c\x6f\
+\x6d\xfd\x18\x0f\x16\xe4\x95\xac\xb5\x66\xa5\x4b\xba\xab\xf0\x18\
+\x1b\xa8\xf4\x2a\xbe\xa6\xd8\x68\x0c\xa5\x6b\xb6\x5a\xb3\xd2\x35\
+\xfd\xb9\x7c\xcd\x41\xe9\xb9\x7e\xa6\xea\x23\xc6\xd2\xd7\x40\xa2\
+\x23\xdc\xd5\x60\xd4\xdf\xdd\xb2\x82\xb1\x7d\x50\xc6\xe4\xa3\xbe\
+\x3f\x13\x81\x32\xbb\x47\x3a\x3b\x88\xf6\xd9\xed\x24\x50\x5b\xe6\
+\x17\x0d\x55\x07\xb2\x98\x5f\x94\x47\xfb\xa8\xcf\xba\x89\xd1\x3e\
+\xea\xaf\x5b\x7f\xf4\xd7\x8c\x17\x0a\x68\xe9\x47\x79\x30\x1f\xf5\
+\x8b\x75\x13\xa3\x7d\xcc\xf7\x50\x3f\x36\x9d\x3d\x56\xdc\xff\xb1\
+\x9f\xad\x7e\x9f\x75\x8d\x6e\x05\xbf\xf1\x36\x29\xdd\xf2\xe6\x29\
+\x3d\xfb\x79\x29\x3d\xef\x45\x29\x5d\x7a\x69\xc7\x6f\xf9\xeb\xb4\
+\x16\xc7\xa8\xcf\x75\x27\xb6\xf2\x39\xac\xbf\xf5\xf2\x08\xd7\x7f\
+\xb1\x72\x1d\xd5\x5a\x9f\x28\x8f\xf6\xa5\xf5\x1f\x7e\x0e\x84\x3b\
+\x21\x23\x6b\x25\x7b\x14\x20\x28\x78\x00\xf4\x28\x1b\x44\xfd\x98\
+\x00\xce\x23\xda\x30\x59\x9e\x5b\x9c\xaf\x83\x31\x3e\x7c\x81\x57\
+\x1d\x2c\x34\x63\x28\xaf\xbf\x79\xf6\x3e\x82\x02\x6b\xd9\x54\xfd\
+\xb1\x5f\xc8\x9b\xbe\xab\x35\x88\xe0\x50\x7f\xde\x5f\xb2\xe6\xfd\
+\xda\x49\x9f\x7a\xf2\x04\x5b\xff\x6b\x9e\xd5\x57\x96\x4e\x3d\x35\
+\xa5\x87\x3f\x34\xa5\xbb\xdd\x25\xa5\xbf\x7c\xaa\xfd\x3e\xc4\xbb\
+\x17\xb2\x9e\x3a\xc1\xea\x3f\xec\xff\xed\xef\xff\x79\x2f\xa2\xdb\
+\x06\xf3\x13\x90\x1b\xcd\xef\x00\xb6\xfd\xf2\x09\xca\xf3\x94\x88\
+\x8d\xb9\xf4\x84\x0d\xf6\xbe\x91\xd5\xd8\x19\xd3\x0f\x8c\x45\x84\
+\xa5\xd2\xf1\x82\x0c\x19\x79\xd0\x25\xcd\x8b\x74\x94\xc7\x37\x05\
+\xc4\xbf\xa8\x98\x3a\x31\xc6\xc7\x7c\x30\xa0\x88\x5e\x0e\x0c\x16\
+\x1a\xcc\x9d\xb8\x90\x2c\x28\x95\x91\x26\x42\x4b\xe9\x56\x7d\x2d\
+\xf9\xa1\xfe\xdc\xcf\x23\xda\xff\x5c\x3b\xe2\x62\xd5\x17\x94\xca\
+\x48\x13\xf9\x0c\x64\xa1\x9d\x12\x78\x3f\xff\xd3\xdd\x6f\x42\x3c\
+\xf5\x19\x29\x7d\xe6\xb3\x8b\x3d\x72\x58\xff\xae\x17\x87\xf3\xbf\
+\xdb\x31\xd8\x47\xdc\x13\xce\x29\x5c\xff\x07\x5f\x65\xc2\x8d\x47\
+\x84\x91\xd2\xbc\xd6\x55\xce\x9f\xc5\xc5\xb0\xa2\x40\x5f\xc4\xe8\
+\xdf\x93\xdc\xe0\x81\xc5\x57\x37\x44\xa8\x8f\x79\x11\x63\x7e\x47\
+\x5e\x7f\x33\xe0\xf2\x66\x1d\xea\x6f\x5c\x10\x4e\xf0\xf5\xbf\x66\
+\xfe\x17\x56\x69\x97\xdc\xf9\x9b\xec\x07\x85\xbe\xa1\xfb\x85\xba\
+\x17\xbd\x34\xa5\xaf\x7d\x6d\x71\xae\x1f\xf6\xff\xa2\x63\xda\x8b\
+\xe6\xe9\xd8\x50\xa0\x2f\x22\xa2\x28\xbd\x88\x9a\xa9\x86\xbf\x91\
+\x7e\x60\x1c\xc5\xf9\x3f\x78\x17\x56\x88\x3f\x9a\xb2\x58\x60\xe9\
+\x81\xbf\xa4\x5d\x07\x7f\x51\x83\x86\x87\x8c\x4e\x77\x53\x70\x37\
+\x3e\x4a\xfe\x9b\xf9\x5a\x16\xd4\x99\x92\x10\x75\x81\xa5\xc7\xa6\
+\xeb\x8f\xf1\x90\x23\x79\x4e\xe7\xa4\x51\xfb\xa1\xfe\xae\x19\xec\
+\x83\xf7\x27\x4f\x4a\x6b\xc5\x3e\x12\x73\x2b\x97\x02\x75\xab\xfe\
+\x2c\x9e\xeb\x20\x2e\x68\x4f\xa2\x43\xa7\x3b\xf6\xd2\x18\x2a\x8c\
+\xf1\xdc\x1d\x1d\x89\x2f\xb0\xc8\x26\x9e\x71\xc5\x94\x2e\x7f\x79\
+\xf5\x36\xa6\x4f\x3b\xcd\x7e\x99\xee\x11\x29\xfd\xfb\x5f\x48\xe9\
+\x26\x37\x1a\xcb\x23\x27\xe6\x13\xfb\xe0\x35\x33\x19\x43\xcf\x25\
+\xa3\xd3\xe6\x90\x18\x7d\x97\xe6\x31\x1e\x74\xc8\x73\x3a\x1b\xc1\
+\x27\xfd\x12\x5d\x9e\x27\x31\x4f\xce\x55\x27\xbb\x5a\x0a\x8c\x4d\
+\xfb\x88\x27\x63\xfd\x83\x77\x61\x8d\x1a\x64\xed\xf4\x26\x01\x73\
+\x6b\x89\x98\xf2\x2f\x7b\xa0\xd2\x59\xd5\xff\x3b\xe3\x7a\xd0\xcd\
+\x4c\x22\xa6\xf4\x05\x54\x3a\xab\xce\x02\xfa\x25\xce\x32\xce\xca\
+\xfb\x56\x3f\x6b\x01\x2a\xcd\xda\x94\xa7\x34\xe5\x73\xf1\x50\x7f\
+\xd7\x31\xdf\xf3\xb6\x21\x7d\x5f\x12\x73\x33\xb9\x4f\x31\xd5\x3d\
+\xaf\x74\x56\x1d\xac\x59\x69\x7d\xe8\xcb\xe3\x94\xfc\x67\x1e\x6c\
+\x4b\xf6\xca\x53\x1a\x66\xfa\xfa\x47\x76\x53\x85\xeb\x5e\x27\xa5\
+\x5f\xfc\xb9\x94\x7e\xe8\xfb\x52\xfa\xfa\xd3\xad\x6e\xd4\x8c\x87\
+\x59\xf4\x98\xad\xc1\xe3\xd0\x9a\x95\xee\xe5\x99\xa8\xe5\x4f\x5f\
+\x1e\x27\xeb\x92\x87\xa9\xd6\xa4\x74\x56\x6d\xca\xa9\x37\x15\x51\
+\x2b\xc6\xa1\x7e\x59\x77\xeb\x49\x75\x7d\x6c\x51\x8e\x61\x15\xd8\
+\x38\x6c\x02\xd0\xdc\x0c\xa4\x29\xf7\x15\x83\xb7\xbc\x9a\x23\xb9\
+\xb7\x7f\xfa\xa1\x19\x6f\xba\x2b\xd7\x6c\xe6\xc3\x5a\x25\xff\xbd\
+\xae\x1f\x79\x4a\xbf\x7b\x1a\x3c\x1b\xb3\xfb\x77\xa8\xbf\xdb\xeb\
+\x27\xc1\xfa\x9f\x75\xf5\x6e\x8f\x4c\x3d\x62\x2f\xdd\xfd\xae\x29\
+\xdd\xde\x3e\x37\xf2\x8c\xbf\x4b\xe9\xe5\xaf\xea\xfe\xad\xc5\x3d\
+\xe6\x7e\xc2\x7e\x6c\x9e\x6f\x8d\xe0\xf4\x0d\xc4\x18\xf9\x0b\xf1\
+\x0e\xfb\xdf\x9a\xc4\x9e\x80\x34\x9a\x3d\x2b\xf6\x0f\x4c\x1d\x59\
+\x5f\xaf\xdf\xeb\x5e\xff\x4e\x41\x3e\xee\x50\x9c\x23\x29\x3c\x30\
+\x88\x4a\x53\xae\x05\x70\x13\x10\xa1\x4f\x1a\xa8\x34\x64\x18\x39\
+\x84\xa3\xd2\x9d\x74\xde\x91\x79\x12\x61\xad\x31\x3d\x87\xcc\x43\
+\xcd\xac\x9b\xd8\x37\xd2\x18\xac\x0f\x3e\xd4\x1f\x69\xca\xe1\x13\
+\xb4\xfb\x76\x47\x8b\x98\xb0\x8d\xf1\x95\x07\x5a\x6b\x56\x1a\x32\
+\x1f\xca\xcc\x71\x60\xc4\x78\x8c\xcd\x7c\x60\x03\x9a\x23\xc6\x47\
+\x8a\x6e\x0b\x84\x92\x1d\x88\x87\xfa\x73\xef\xac\x21\xb5\x7e\xb2\
+\xb7\x94\xa3\x97\xa0\xb9\x1e\xde\x52\x6f\x28\xa8\x8e\x4f\xd4\xb5\
+\x70\xa1\x1d\xb8\x54\x40\xa5\x29\x1f\x30\x73\x9c\xa9\xeb\x7f\x96\
+\xbc\x03\xab\xf7\x37\x81\x38\xdd\x9e\x81\xfc\xc0\xa3\x53\xfa\xa5\
+\x9f\xef\x3e\x47\xc2\x9a\x61\x4a\xfa\x78\xa8\x1f\xf9\x6a\xcf\x7d\
+\x8d\x32\x0f\x4b\xe4\xcb\x64\x07\xe2\x61\xff\xe7\xf5\xb5\x86\x70\
+\x7d\xd1\x43\xae\xb9\xd2\x94\xa3\xa7\x83\x17\xd1\xa1\xd4\x6f\x5a\
+\x23\xa1\x00\x65\x2e\x04\x36\x39\x1a\xde\x6f\xf6\xcc\x28\x05\x31\
+\xb5\x3e\x78\x4d\xbe\x70\x04\x6d\x1b\x74\x0e\xdc\xc0\x60\x5c\x62\
+\xc9\x25\x6b\xe9\x65\xc2\xd8\x79\xfd\xb9\xbf\xec\x13\xeb\x20\x22\
+\x67\xa5\xfb\x1a\x32\x41\x19\x31\xca\x31\x97\x72\x3b\xb1\x30\x0e\
+\xf5\x77\xfd\xdd\xd9\xfe\x5f\x63\xfd\x97\xbd\x80\x5e\xda\x07\x91\
+\x77\xa3\x1b\xa6\xf4\xcb\xf6\xda\xc8\x4b\x5e\x96\xd2\x33\x9f\x95\
+\xd2\x25\x5f\xec\xf6\x0a\x4f\x51\xe8\xfb\xbe\x32\x86\xee\xaf\x12\
+\x5d\xe2\xc1\xbe\xdf\x7c\xdc\x73\x74\xce\xf3\x7f\x8d\xfa\xdd\x7d\
+\xf6\xab\xf1\x3d\xae\x1c\x18\xba\x67\x09\xe3\xb0\xff\xbb\xb5\x5d\
+\xb6\xff\x87\x9f\x03\xe9\xbb\xd8\x11\x6c\xfc\x00\x65\xc3\x78\x83\
+\xed\xdd\x1b\x0c\x10\xcc\xe7\x4f\xb9\x78\xc4\xf9\x1e\x06\x16\x70\
+\xc3\x3d\x09\x01\x69\xee\xcf\x81\x72\x61\x32\xa8\xdb\xe4\x3e\x3f\
+\xea\xfa\xd7\xe8\xc5\xa1\xfe\xc5\x9a\x63\x79\x4f\xa6\xf5\x9f\xf3\
+\x1a\x48\x61\xeb\x3b\xeb\x14\x7b\x85\xf4\x7e\xf7\x4e\xe9\x4e\x77\
+\x48\xe9\xa9\x7f\x93\xd2\xab\x5f\xdb\x35\x91\xe7\xc5\x91\x9c\xff\
+\x87\xfd\x5f\x5b\x9e\x2a\xff\x0a\xf6\xe6\x89\x87\x3d\x24\xa5\xdb\
+\xd8\xbb\xec\xae\x72\xa5\x94\x3e\x7e\x71\x4a\x6f\x7a\x4b\x4a\xcf\
+\x7a\x6e\x4a\x5f\xfa\x72\x77\x1e\x54\x8d\x45\xc0\x75\x1e\x60\xb8\
+\xfe\x2d\xbd\x81\x88\x2f\x27\x79\xa3\x20\xfa\x05\x0a\x0e\xa3\x62\
+\x9e\xc7\x13\x16\x89\xf8\xa6\xcb\x06\xa4\x07\xfe\xcc\xb6\xe6\xaf\
+\x12\xc6\xd9\xb0\x89\xf1\x30\xc7\x20\x46\xda\x85\x33\x0e\xcc\x93\
+\xe8\x31\xcd\x79\x2d\xdf\x98\xcf\xec\xfa\xb5\x28\xd4\x81\x58\xc6\
+\x1b\xc4\x37\x3e\xe3\xc7\x78\x98\x63\x10\x23\xed\xc2\x19\x07\xc6\
+\x25\x7a\x7a\xc8\xa9\xe2\x23\xe6\xc3\xdc\x81\x18\xad\x7a\xdc\x31\
+\x9d\x4c\xd0\xa7\x2a\x10\x23\xa2\xf2\x5c\x61\xe6\x81\x75\x13\xf7\
+\xb5\xfe\x63\x97\xed\xbe\x07\x6b\x66\x79\x55\xf5\x33\xce\x48\xe9\
+\xb1\x3f\x98\xd2\x3d\xef\x96\xd2\x5f\xd8\x87\x10\x2f\xf8\x68\xa7\
+\xba\xaf\xf5\xc7\x75\xe7\x1c\x59\x2b\x5d\x2d\xb8\x22\xe0\xba\x13\
+\xf7\xb1\x7e\xfc\xe1\xf0\x73\x3f\x39\xfc\xea\x9a\x6b\x5d\x33\x25\
+\x3c\xbe\xf9\x4e\x29\xfd\xda\x13\xba\xcf\xfe\x54\x4a\x5c\xca\x66\
+\xdd\x44\xd4\xef\xef\xc2\xc2\x09\x5d\x7a\xc0\x1b\x4f\x76\xa5\xa9\
+\x8b\xc5\x00\x0d\x2c\x3d\xbc\xc1\xd0\xc9\x0f\x83\xea\xc5\x06\x32\
+\x2e\x2e\x11\xbc\x39\x83\xb9\x32\xbf\x88\xf0\x45\x1d\xa5\xa3\x1e\
+\xe7\xaa\xa3\x34\xe5\xc8\x13\x74\xa9\x76\x97\x99\x9c\x88\x1e\x60\
+\x10\xbb\xd9\xf0\x08\x5d\x0c\xfa\x03\xe1\xbc\x9e\x91\x85\xae\x35\
+\x3e\x20\x17\x0c\xe6\x17\x91\x32\x57\xca\x7a\xe4\x45\x5d\xf5\x55\
+\xd3\x47\x5a\xd0\x63\x7a\x11\x91\x8e\xeb\x40\x2f\x3b\x21\xe6\xe9\
+\x00\xa0\x8b\x41\x3f\x20\x9c\xd7\x33\xb2\xd0\xb5\xc6\x07\xcd\x79\
+\x95\x7a\xa2\x0d\x22\xd0\xa7\xd2\xd4\x43\x5a\xa0\x99\x5e\xc4\x5d\
+\xd5\x7f\xf5\xab\xd9\x89\x3d\x78\x7f\x25\xb2\x5f\x7f\xdc\xe2\x66\
+\x29\xfd\x87\x5f\x4a\xe9\x11\x0f\x4b\xe9\x72\x97\xcb\x6b\xbb\x87\
+\xf5\x73\x7d\x22\xa2\x03\xe0\x71\x90\x8e\x7a\x9c\x43\x8f\x3a\x4a\
+\x53\xbe\x8f\xeb\xff\x83\xff\x6c\x78\xf3\x60\xad\x40\x7c\x1f\xda\
+\xe3\x7e\x78\xc1\x61\x6d\xac\x27\x22\x34\xa9\xa3\x34\xf5\x50\xff\
+\xd2\xef\xc2\xa2\x31\x11\x77\x1e\xd0\xfd\x1d\x28\xd3\x35\xb9\x5f\
+\x35\xbc\xcb\x08\xdf\xd9\x2d\xb3\xef\xb4\x56\x3c\x4a\x2e\x7d\x7e\
+\x88\x69\x0f\xee\x19\xcf\x33\xd7\x80\x28\xad\x7a\x58\x17\xb1\xa5\
+\x1f\xe5\x9b\xa8\x9f\xb9\x23\xdf\x7f\xca\xc5\x38\x3a\x63\xc1\xc3\
+\x34\xc6\x87\xed\xa1\xfe\x93\x6f\xfd\xaf\xb5\xe2\x0b\xe8\xd8\x43\
+\xad\x81\x67\x37\x0f\xfa\xb6\xee\xaf\xd9\xa7\x3c\xbd\xfb\xd7\x48\
+\xed\xfc\x38\xec\x7f\xeb\xa6\x9c\x80\xa3\xf3\x53\xae\x59\xb5\xbe\
+\xcf\x39\xff\xef\x70\xbb\x94\x6e\x76\x93\x9a\xa7\x8e\x8f\xef\x44\
+\xc3\xb7\x11\x7c\xf4\xc2\xc2\xf5\x22\xe4\xc3\x75\x25\x96\xf2\x1f\
+\x3c\x03\x41\x08\x2a\x97\xd2\xa0\x0c\xa8\x34\x75\x95\xa7\xf4\x54\
+\x39\xf5\x56\x45\x8d\xe9\x34\xf3\xc4\x2a\xe0\x81\x41\x04\x99\x69\
+\xa0\xd2\xae\x57\x38\xa8\x8e\xd2\x54\x55\x9e\xd2\x53\xe5\xd4\x5b\
+\x15\x35\xa6\xd3\xac\x0b\x75\xe6\x5a\x7b\x04\x2b\xf3\x80\x4a\xd7\
+\xe2\xab\x8e\xd2\xd4\x57\x9e\xd2\x53\xe5\xd4\x5b\x15\x35\xa6\xd3\
+\xac\x0b\x75\xe6\x5a\x7b\x04\x2b\xf3\x80\x4a\xd7\xe2\xab\x8e\xd2\
+\xd4\x57\x9e\xd2\x53\xe5\xd4\x5b\x15\x19\xb3\xf4\x15\x26\xab\xfa\
+\xac\xd9\x5d\xe5\xca\x29\xdd\xff\x3e\xc3\xbf\x76\x19\x1f\xa8\x34\
+\x7d\x28\x4f\x69\xca\xd7\x45\xf5\xe9\x34\xf3\xc0\x3a\xe3\x81\x41\
+\x04\x99\x69\xa0\xd2\xae\x57\x38\xa8\x8e\xd2\x54\x55\x9e\xd2\x53\
+\xe5\xd4\x5b\x15\xef\x73\x8f\x69\x96\xbc\xc9\x68\x8e\x4a\xd7\xbc\
+\xa8\x0e\xe9\x63\xe8\x21\x6e\x92\xa5\x01\x25\xde\x75\x20\x27\x0d\
+\x3c\x1e\x07\x6b\x05\x62\xf0\x8f\x83\x5a\x39\xfb\x56\xff\x3f\xe5\
+\x37\x2c\x00\x3d\x7f\x4b\x9c\xbc\x8e\xb3\xfc\x78\xa8\x7f\xb1\xe6\
+\xde\x3f\x3b\xb0\x27\xa5\xce\x1d\xaf\xeb\xbf\x89\x17\xd0\x4b\xfd\
+\x00\x0f\x3d\x39\xc7\x5e\x90\xc5\x37\xfb\x7e\xe0\xdc\x9a\xd6\x76\
+\xf8\xdc\xeb\x87\xfd\xdf\xf5\xd7\xaf\xc7\xf9\x9a\x80\x7f\x5b\x7e\
+\xc3\x2d\xa7\xf5\x3d\xbe\xa3\x6e\x9d\xeb\xdf\xb1\x9a\x31\x52\xe1\
+\x8d\x82\xa8\x3c\xd0\x73\x4f\xb0\xb9\xfa\x88\x31\x67\xb4\xfc\xb3\
+\x56\x22\x7c\x2b\x1d\x63\xb1\x6e\xa2\xeb\x8b\x41\x2b\x5e\xf4\x37\
+\x57\x3f\xda\x33\x0f\xe2\xdc\x7c\x98\x3a\xd1\xed\x63\x10\x99\x33\
+\x0e\x71\x6e\x3c\x71\xe5\xe4\xa1\xfe\xee\x9c\x42\x1f\x30\xd0\x57\
+\xf6\xa4\xe3\x2c\x3f\x72\x1d\x88\xf4\x41\x2b\xfa\xda\xc6\x33\x10\
+\x7c\x05\xfc\xab\x5f\x97\xd2\x73\x5e\xd0\xfd\xfb\x03\x31\x19\x6f\
+\x6a\x3d\x73\xf5\x59\x17\x91\x75\x13\xc1\x57\xba\xe5\x9f\xfb\x9e\
+\xe8\xf6\x74\x5e\x40\xfa\x26\xba\xbe\x18\xb7\xe2\x45\x97\x73\xf5\
+\xa3\x3d\xf3\x20\x6a\x3e\xf7\xba\xfb\xb0\x17\xd1\x56\xe7\xfe\xef\
+\xab\xcc\x90\x72\x54\xc5\x69\xc6\x21\x82\xa9\x34\xea\x59\xfa\x1a\
+\x48\xf4\x08\x63\x36\x41\x9d\xd1\x29\x65\x40\xca\xc9\xeb\x38\xcb\
+\x8f\xd4\xa5\xfd\x72\xed\xa1\xd4\x6d\x72\x7e\x83\xbb\x82\x74\x28\
+\xfa\x8f\xf5\x44\xf9\x30\xc2\xf8\x84\x67\xdd\xc4\x68\x1f\xfd\x47\
+\x7f\x71\x1e\xed\xa3\x3c\xfa\x1b\xe9\x1f\xea\xf7\xfd\x79\xb2\xaf\
+\xff\x26\x9f\x81\xe0\xaf\xd5\x97\xbe\xbc\xfb\x1d\x91\x4f\x7f\x66\
+\xb7\xe7\xff\x61\xff\x0f\xfb\xcf\xf3\x1f\x6f\x98\xb8\xc7\x5d\xe3\
+\xd5\xa2\x3c\xff\xf0\x05\x29\x9d\xff\xa1\x4e\xd6\xec\x67\x70\x11\
+\xf5\x31\x5f\xfe\x36\x5e\x5c\x7c\x71\x33\xc8\x17\x61\x24\x0c\xda\
+\x31\x38\xc7\x34\x06\x60\x81\xd4\x6f\xc9\xe1\x83\xba\xa0\xe7\x8e\
+\x90\x6e\x7f\xb3\x53\x9f\x4a\x37\xfd\x07\x87\x6e\x7b\x84\xf5\x8f\
+\xfa\x65\x09\x3b\x4f\x12\xcf\xf7\x6a\xe7\x84\x74\x0f\xf5\x5b\x73\
+\xd8\x43\xb6\xec\x44\x5f\xff\xd3\xbf\xbe\xfb\x3e\x2b\xd6\xbb\x2a\
+\x7e\xfe\xf3\x29\x3d\xf7\x45\x29\xbd\xe8\xec\xee\x43\x84\xee\xe7\
+\x88\xcf\x7f\xae\x1d\x10\xc3\xc3\xe3\xfc\xeb\xa6\x3d\x8f\xd3\x93\
+\x75\xff\xdf\xf1\xf6\x29\x5d\xd1\xbe\x3c\x73\xca\x38\xdb\x3e\x18\
+\x3a\x79\x84\x86\x96\xae\x7f\x7e\x03\xe9\x4f\x2a\x2c\x4e\xde\x24\
+\x1e\x84\x74\x6d\xc5\x42\x26\xf4\x43\x84\x78\x40\x67\xfd\x89\xee\
+\x82\xf7\xf6\x94\xb1\x88\xb0\x50\x3a\x7a\xa0\x8c\xd8\xdf\x1c\xd1\
+\x38\x8c\x1d\xd7\xcf\xbc\x88\x4c\xc9\x73\xe3\x41\x9a\x49\x3d\xa2\
+\xeb\x8b\x9c\x26\x44\xea\x11\x0f\xf5\xef\xd7\xfe\xe7\xba\x10\x7d\
+\x3d\xb9\x78\x44\x59\x5f\xe8\x6d\xea\xd9\xc7\x27\x3e\x65\xaf\x73\
+\xd8\x07\xcf\xdc\xbd\xc4\x18\x5c\xbd\x99\x43\x46\xe6\x49\x04\x7b\
+\x40\x53\x2f\xa3\xcb\x85\x8e\x24\x6d\x89\x45\x7d\xc9\x8d\x7a\x44\
+\xd7\x17\x79\xd3\xff\x9e\x5d\xff\x58\x07\xb1\x54\x3f\x2e\x55\x0f\
+\x79\x60\xac\xac\x3c\xc7\x87\x08\x5f\x89\x0f\x83\xe6\x41\xbf\xc4\
+\x55\xce\xff\xe1\xbb\xc5\xd9\x6c\xa0\xd2\x8c\xb8\x26\x32\x51\xa0\
+\xd2\x6b\xba\xdd\x9c\xb9\xd6\xac\xf4\x86\x22\x68\xcd\x4a\x6f\xc8\
+\xfd\xfa\x6e\xb4\x66\xa5\xd7\xf7\xec\x1e\xb4\x66\xa5\x37\xe4\x7e\
+\x7d\x37\x5a\xb3\xd2\xeb\x7b\x3e\xb2\xfa\xd7\xfd\x0a\x13\x96\x7a\
+\x3d\xfb\x86\x5e\x7c\xf0\xac\xbf\x0e\x50\xb0\x06\xea\x9a\x2b\xbd\
+\x86\xcb\xcd\x9a\xea\x9a\x2b\xbd\xa1\x28\x5a\xb3\xd2\xeb\xb8\xbf\
+\xcb\x1d\x53\xc2\xb7\x29\x4f\x19\xaf\x7b\x83\x3d\x9b\xbc\x64\x89\
+\xa6\xd6\xac\xf4\x12\x93\x79\xbf\x07\x92\x1d\xc1\xb7\x3f\xec\xd0\
+\x23\x08\xf0\x33\x2a\x0d\x1e\x1e\xb8\x5b\x12\xf9\x47\x3e\x11\xfa\
+\xeb\x0c\xc6\x25\xc2\x17\x53\x01\xfa\xc3\x0e\x3d\x82\x00\x3f\x63\
+\x37\x5b\x7e\xa4\xaa\xfb\xc8\xb6\x4e\xdb\x81\x7e\x88\xf0\x44\x1a\
+\x88\xc7\xdc\xfa\xa3\xbd\xfa\x54\x9a\xfe\x95\xe7\x34\x0e\x36\x3c\
+\x47\x20\xf2\x20\x82\xc8\x74\x47\xb5\x8f\xd9\x64\xb2\xbf\x98\xff\
+\xa1\xfe\xc5\x3e\xe0\xbe\x27\x96\xba\x1f\xfb\x07\x1d\xf2\x94\xf6\
+\x75\xcd\x8b\xb3\xa9\x67\x20\xf0\x8f\x9f\xc0\xbd\xac\xfc\x89\x79\
+\x58\x7f\x74\x25\x9f\x43\x40\x6b\x08\x7a\xa2\xfd\x5f\xb6\x3e\x9b\
+\xde\xff\xf8\xd7\xde\x77\xda\x57\x96\x4c\x1d\xf8\x5e\xb3\x65\xf9\
+\xb6\xfc\x94\xd6\x5f\xb6\x47\xd7\x08\x38\x61\x43\x22\x8e\x1a\x60\
+\x0c\xf0\xfc\xe0\x44\xa6\xc1\xb3\xc1\xff\x5d\x02\x95\xee\xa4\xe3\
+\x78\xe0\xeb\x02\x50\x6f\x12\x96\xe2\x67\x43\x88\x0a\xe2\x91\x5b\
+\xc6\x8e\x75\x73\x0e\x1f\xa0\x7b\x7f\x46\xb8\xdf\x9e\x21\x81\x40\
+\xba\xb0\x43\xa5\x19\x38\xc6\x03\x9f\x3c\xea\x2c\xc5\xec\x7f\x91\
+\x90\x69\x93\x27\x64\x25\xbd\x91\x6b\xc6\x06\x96\x1e\xf0\x03\x7e\
+\xef\xcf\x08\xd0\x0b\x46\xa6\xc1\xb3\xa1\x35\x2b\xdd\x49\x17\xb5\
+\x32\x16\xf8\xa0\x27\x0f\x0f\x6e\xda\x7d\x42\x99\xce\x0e\x1a\xe2\
+\x51\x18\xc6\x66\x3e\x11\xe1\x0f\xbc\x3e\x9c\x11\x1e\xa3\x67\x84\
+\xf8\x2e\xec\xfa\x70\x54\xf5\x4f\xb9\x81\xb0\xce\x51\x03\x02\x03\
+\x6f\x0d\xbd\xa7\xbd\xbb\x87\x7d\x40\x39\xfb\x5e\x7f\xb7\x20\x5d\
+\x21\xb9\xfd\x8b\xf5\x32\x36\x79\xa1\x54\x9f\xb2\x2f\xac\x37\xe2\
+\xbe\xd5\x7f\xcf\x6f\xe9\x3e\x14\x58\xaa\x25\xf2\xf0\xc2\xf9\xfb\
+\x3f\xb8\xf9\xfa\xe7\xbf\x06\xa2\x99\xe1\x64\xf7\xae\x76\x4c\x9e\
+\xfb\x44\x55\x2d\xd1\x38\xa9\x7c\x43\xe6\x55\xbd\xd5\x2d\x52\xc2\
+\x4f\x6d\xe2\x37\x09\xe6\x8e\xdf\xfe\x35\xfb\x54\xec\x5b\x53\x7a\
+\xfd\x1b\x53\x7a\xfb\x3b\xeb\xd6\xdc\x24\xd0\x20\x4d\x44\x2d\x4e\
+\xe7\x7c\xfc\x76\x0d\xba\x56\xd0\x86\xeb\x47\x6c\xf6\x84\x15\xf4\
+\xb9\x15\xf2\xa5\x2e\x2f\x4e\x25\x7b\xfa\x21\x2e\xf3\x77\xa8\xff\
+\xf8\x5f\xff\x65\x37\x10\xbc\x15\xf7\x95\xaf\x49\xe9\x23\xf6\x4e\
+\x9c\x47\x3f\x92\x3b\x62\x39\x3e\xec\x41\x29\xbd\xe2\x55\x29\x7d\
+\xf9\x2b\x05\xbd\xc3\xfe\xdf\xe8\xf5\xaf\x74\xfe\xd6\xce\xd7\x63\
+\x76\xe5\x7e\xd8\x83\x0b\x6b\x52\x61\xe1\x73\x3b\x18\x35\x7f\x2e\
+\x5c\xe1\xfa\xe7\x3f\x28\xd5\x5f\x20\x79\xa1\x24\x7a\x44\x77\xed\
+\x07\x06\x27\xba\x58\x75\x17\xaa\x1d\xc5\x8b\x6f\xe5\x82\x4c\x3f\
+\x37\xba\x41\xf7\xd3\x9a\x37\xbf\x69\x74\x30\x7d\x7e\xe6\x99\x29\
+\xe1\x93\x98\x78\xbc\xfb\xbd\xf6\xed\xa1\xcf\xb0\x3b\xee\xb9\x66\
+\x8f\xfc\x18\x3f\xba\xa3\x8c\x35\x44\x84\x3e\x79\x20\x33\x4d\x74\
+\xb1\xc8\x31\x1f\x8c\x89\xf5\x4f\xf6\x37\x70\x3e\x21\x9f\x18\x3f\
+\xd8\xf7\xbd\x61\x0d\x11\xa1\x4f\x1e\xc8\x4c\x13\x5d\x2c\x72\xcc\
+\x07\x23\xc6\x87\x2e\x79\x46\xd2\x0f\x11\xb6\x4a\x63\xbe\x6c\x50\
+\x97\x08\x5d\xa5\xfb\x58\x88\x59\x1a\x21\x9f\xbe\x56\xad\x49\x68\
+\xfa\x26\xc2\xa5\xd2\xa3\x10\xac\x95\xf1\x43\x3c\xda\x12\x9b\xfe\
+\x42\x00\xda\x11\xf1\x76\x4e\x3c\x6b\x88\x03\x6f\xc5\x3d\xfb\xe5\
+\xdd\x5b\x71\x3f\xf5\xe9\xee\x8f\x94\xbb\xdb\x17\x23\xe2\x75\x8e\
+\xd6\xc0\x79\xf5\x60\x7b\x91\xf6\x6f\xfe\x7e\x51\x2b\xe3\xc1\x56\
+\xe9\x91\xaf\x23\xae\x7f\x94\x4f\x8c\x1f\x13\x0c\xeb\x71\x3c\xad\
+\xff\x77\xd8\x8d\xfd\xca\xf6\x4d\xbb\x53\xc6\xf9\x1f\x4e\xe9\x35\
+\xf6\xfa\xc7\xe8\x3a\xb8\x81\xfa\x8f\xf5\x4d\x9b\x92\x49\x43\x27\
+\xe6\x73\x19\x63\x38\x0f\x07\x1b\xa4\xf3\x34\x5d\xc3\x36\xfb\xf7\
+\x7c\x57\xf7\x75\xd1\x9d\xc6\x66\x8e\xb8\x11\xfd\xfb\x5f\x4c\xe9\
+\x0d\x6f\xb2\x1b\xc9\x5f\xa7\xf4\xb1\x8f\x2f\xf1\xcb\x64\x96\xa8\
+\x4c\x15\x79\x7d\xa6\x4c\x97\xad\xfa\x5b\xfb\x3b\xc6\x1d\xf9\xcf\
+\xb1\x78\x7d\x8a\xfa\x7d\x22\x4c\x68\xa4\x90\x1d\x94\xf8\x2b\xf0\
+\x46\xf9\x19\xc3\x79\x39\x3e\xe9\x3c\x6d\x5e\xdf\x63\x0a\x6e\x2f\
+\x29\x37\xfb\xc7\x40\xc4\xe8\x10\xf3\x65\xb2\x92\xfe\x12\xde\x28\
+\x3f\x63\x38\x2f\xc7\x20\x9d\xa7\x1b\xaf\x1f\x37\x0f\x7c\x57\x15\
+\x07\x3e\xb7\xf1\xfc\x17\xa7\xf4\xe2\x97\x0e\x5f\x3c\xc5\x45\xff\
+\xaf\x9e\xd9\x7d\x6b\x2b\x75\x97\x21\x6e\x20\x6f\x38\x67\xf1\xf9\
+\x81\x9a\xae\xd7\x67\xc2\xbe\x3e\x23\x9c\x97\x19\xa4\xf3\x74\xe3\
+\xf5\x8f\xf2\x62\x20\xe2\x48\x41\x92\x2d\xc9\x66\xf2\xbc\x3e\x71\
+\xb9\xad\xf3\xff\x7a\xd7\xb5\x9b\xfa\x03\xa6\x27\xf7\x8c\xbf\x95\
+\xa4\xa2\xd9\xb2\xde\x44\xdd\xc2\x7c\xf0\x41\xc2\x28\x8f\x0d\xe9\
+\x76\x83\x69\xe5\xa0\xf1\x5f\x28\xbc\x90\x11\xe1\xaf\x44\x83\x87\
+\x8f\xdd\xff\xc4\x63\x53\x3a\xfd\x0a\xd0\xda\xce\xb8\xe3\x1d\x52\
+\xba\xe5\x2d\x52\x7a\xe2\x1f\x96\xff\xad\x15\xf3\x8f\x59\x6c\xb3\
+\x7e\xc4\x8a\xfe\xd1\x17\xf2\x62\x2e\xab\xcc\x71\xa1\x60\x8d\x25\
+\x7b\xca\x80\xa5\xc1\x5c\x80\x3e\x02\x23\xda\xd3\x0d\x11\x36\x25\
+\x9a\xbc\xe0\x6e\xf6\x05\xa5\x4b\xaa\x7e\x3c\xd9\xea\xe7\x97\x28\
+\x5e\xf4\xb1\xee\x13\xe3\x2f\x7b\x65\x4a\x5f\xfd\xaa\x29\x7e\xc5\
+\x29\x00\x00\x26\xfa\x49\x44\x41\x54\xed\xa9\x7e\x01\x17\xbd\x7a\
+\xb3\xfd\xbb\xf7\x3d\xef\x6b\x7f\xf9\x1e\x2c\x70\x53\xfa\xb1\x1f\
+\x4c\xe9\x57\x7f\xdd\xfc\xc1\x57\xf6\x77\x58\xff\xae\xb7\x3c\x7f\
+\xb8\xaf\x89\xe8\x5d\x89\x26\x6f\x95\xfd\x8f\x37\x35\xfc\xd8\x0f\
+\xd8\x9b\x1b\xe4\x0f\x05\xc4\xa9\x8d\xf7\xbe\xbf\xfb\xea\x99\x92\
+\x3c\xae\x5f\xd4\x89\xf9\xf5\x17\x27\x59\xff\xcb\xde\xfe\xce\x8f\
+\x7f\x3c\x0b\x8a\x0e\x30\x57\x59\xdf\x28\x63\x6a\xf0\xd2\x06\x75\
+\x5b\xd3\xe3\x49\x8c\x39\x69\xfc\x48\xcd\x3f\xff\x91\x94\xbe\xee\
+\x54\x70\xb7\x3b\x4e\xb5\xaf\x9d\xbe\xdb\x5d\x52\xfa\x82\xbd\x7d\
+\x0d\xff\xd2\xf2\x1a\x2c\x2f\x14\x06\xe8\xb1\x92\x86\xeb\x64\xd9\
+\xa6\xea\x67\xbf\xb4\x87\x88\xc3\xfe\x50\x1e\x53\x6a\xea\xbb\x13\
+\xb3\xca\x49\xbb\x3e\xa6\x36\xc7\xc3\x6b\xcd\xd8\xd7\x0d\x59\x0c\
+\x24\x73\x95\xb9\x0f\xf1\x37\x27\x5f\xb8\x8c\xfa\x9e\x9f\x6d\x46\
+\xcf\xaf\x20\x87\x8d\x8e\xa6\x3e\x92\xe5\xae\x37\xd2\xf5\x33\x82\
+\x3e\xd1\xeb\xc7\x57\x98\xbc\xe9\xcd\x29\xfd\xd9\x53\xba\xef\xa9\
+\x42\xbf\xbd\x1d\x56\x7b\xa9\xfe\x0b\x2f\xb2\x17\xc9\xed\x85\xd8\
+\x29\xe3\x4c\xfb\x4d\x10\xf8\x7a\xe7\x7b\xf2\x7a\x99\xcf\xb8\x9e\
+\xd1\x8f\xae\x17\x64\x51\x5f\xe5\xbe\x74\x16\x80\xbc\xe8\x0b\x73\
+\xca\x80\x45\x7d\x67\x42\xb1\xb3\x76\xfd\x6c\x07\xfa\x44\x58\xff\
+\x87\x7c\x7b\x4a\x77\xbd\x73\x57\xdf\x94\xe3\x1f\xfe\x69\x4a\x17\
+\x7f\xa2\xeb\xdd\x36\xea\xf7\x7f\x61\x61\x63\x14\x87\x35\x1d\x8b\
+\xce\x05\x21\xed\x98\x0d\x94\xd6\x05\x86\x18\x32\xf2\xb2\xba\xbf\
+\x78\xf7\x80\xfb\x71\x76\x34\x88\xff\x0d\x3f\xe6\x51\xdd\xff\x87\
+\x9f\xfc\xb4\x45\x4c\xd6\x4d\x5c\x48\x32\xb5\x85\xfa\xb5\x5f\x8c\
+\x4b\xd4\x0d\x8f\x0c\x4a\xfd\x1b\xe5\xa8\x0c\x3a\xca\x18\xa6\xae\
+\x49\x1e\x26\xa4\x89\xea\xca\xe9\x43\xfd\x1b\xdf\xff\xdb\x5c\x7f\
+\x3c\xab\xd0\xc1\x75\x25\x42\xa6\x34\x5e\x2b\x7c\xf3\xdb\x52\xba\
+\xdd\x6d\xd4\xaa\x4e\xe3\xe2\xf5\x06\xbb\x41\x9d\x7f\xfe\x42\x47\
+\xeb\xe1\xb9\x0e\xc4\x28\xed\x5f\xd5\x67\x2e\xc4\xc3\xfe\xef\xd6\
+\xa7\xd6\xbf\xeb\x5c\xcb\x5e\x38\xb7\xd7\x3e\xa6\x8e\xb7\xbd\xc3\
+\x6e\xf8\xef\x1a\x6a\xb3\xd7\xe0\x92\x26\x0e\x35\x6d\x36\xe1\xfc\
+\xb7\x4b\x6b\xa7\xc8\x9b\x44\x8f\xe0\xd3\x33\x10\x0f\x6c\x0c\x62\
+\xde\x24\xaa\x1f\xd5\x4d\xbb\x77\x01\xfa\xfe\xf7\x4d\xe9\xa8\x6f\
+\x1e\x88\xcb\x81\xd8\xf7\xbf\x0f\x67\x86\x5a\x83\xd2\x54\x89\x05\
+\x41\x67\x8d\xfa\x47\xf1\xe8\x0b\x68\x0f\x3f\xb9\x32\xf2\x44\x23\
+\x22\x25\xd2\x40\xa5\x21\xf3\xa1\x35\x28\x4d\x79\x44\xd5\x51\x9a\
+\x7a\xc8\x0b\x03\x88\x07\x74\x88\x05\xfd\xa8\x6e\xda\xae\x0e\xf4\
+\xa1\x36\xea\x2b\xfb\xf7\x9a\x8c\xae\xd5\xa7\x35\x2b\x4d\xf7\xa3\
+\xfe\x42\xc0\x98\xbd\x92\x10\x94\x01\x95\xa6\x4a\x2c\x08\x3a\xe0\
+\x55\xf4\xa3\x3a\xdc\x90\x07\x7a\x10\x43\x7d\x41\xc9\x1e\xbb\xa8\
+\xff\xe9\xf6\x1a\xe1\xa5\xf6\x6f\xae\x29\x03\xff\xca\xfa\xf1\x1f\
+\x49\xe9\xb4\xd3\x4c\x1b\xf9\x63\x10\x8d\x64\xad\xb9\x1c\x17\x93\
+\xe7\x13\xea\x02\xf1\x80\x90\x68\xf4\x2e\xea\xef\xf3\xd2\xdc\x9c\
+\x99\xf3\x03\xcd\x82\x98\x2b\xb0\xa0\xcf\x5a\xa9\x4e\x53\xa0\x0f\
+\xb5\x51\x5f\xd9\x60\x59\xfd\xe8\xf9\x4f\x3e\xce\xfe\x9d\x78\x8c\
+\xce\x96\x23\xde\x71\x87\xdf\x6b\xe9\xf3\x2c\xa9\xc7\x7c\xa0\x43\
+\x1e\xe8\x58\x90\xe6\x9c\xf5\xba\x1b\x48\xb5\x62\x78\x91\x11\x1d\
+\x42\x44\x9e\xd2\x05\x7f\x78\xcd\xe3\xfb\x1e\x29\xbe\x76\x44\x7e\
+\xdf\xf7\xc8\xd7\x1e\x33\xf7\x42\xbe\xc5\xf4\x5a\xfa\x0d\xb9\x5e\
+\xf4\x94\x2e\xc6\x5a\x85\xd9\x88\x3f\x72\xb9\x69\xfd\x86\x3f\xad\
+\x59\xe9\x51\x5e\xab\x32\x1a\xf1\x47\x6e\x37\xad\xdf\xf0\xa7\x35\
+\x2b\x3d\xca\x6b\x55\x46\x23\xfe\xc8\xad\xe9\x7f\xe8\x23\x29\xfd\
+\xfd\x3f\x8c\x24\x55\x06\xfe\x0a\xc6\xbf\x9f\xfb\xeb\x0c\x63\xc2\
+\x82\x34\x50\xe9\xec\x4d\x6b\x56\x3a\x8b\xd7\x07\x8d\xa9\x74\xcd\
+\xb3\xea\x28\xbd\xaa\xbe\xfa\x50\x3a\xfb\xd3\x9a\x95\xae\x85\x23\
+\x1f\xcf\x48\x70\xe3\xc6\xcf\xd2\x4e\x1d\x7f\x67\x6b\xfa\x61\x5b\
+\xdb\x7e\x1d\x4a\x86\x9a\xa3\xd2\x25\x5d\xf0\x54\x27\xd3\xfe\x49\
+\x74\xd0\x2a\xa3\xbd\x16\xa9\x34\xe5\x11\xd5\x87\xd2\x78\x77\xc8\
+\x4f\xda\x0b\xe6\xdb\xf8\x99\xcd\x98\x43\x6b\x8e\x1c\x90\xcb\xd5\
+\xae\xda\xd5\x8c\xba\x90\xab\xe6\x4b\x1f\x5a\xb3\xd2\x94\x47\x54\
+\x1f\x4a\x47\xbd\xda\x5c\x6d\x94\xa6\xbe\xe6\xd0\xe7\x6d\x8a\xd0\
+\x2d\xe9\xd3\x8e\x38\xd7\x3e\xea\xc3\x0f\x79\xf4\xa9\xa8\x39\x28\
+\xad\x3a\xcb\x68\xb5\x51\x9a\x36\x8c\x0d\xf4\x87\x09\x7a\xcc\x4a\
+\xb4\xa3\x8d\xe2\x5c\xfb\xa8\x0f\x5f\xe4\xa9\x5f\xd2\x8c\x0d\x54\
+\x9a\xf2\x16\xaa\x8d\xd2\xb4\x63\x6c\xa0\x3f\x10\x07\x34\x30\x2b\
+\x11\x69\xa3\x58\xb3\xc7\xc5\xe6\xbc\x0f\xa9\xe6\x72\xfa\x0e\xdf\
+\xd8\xfd\xac\x6d\xd4\x62\xec\xa9\xf9\xcc\xb5\xaf\xe5\x3f\x35\xde\
+\x5c\xfb\xa8\x8f\x7c\xc9\x8b\xb9\xbb\x2c\x33\xa7\xe6\x13\x7d\xd4\
+\xfa\xf7\x5d\xdf\x61\x9f\x8d\xb3\x9e\x4f\x1d\x58\xcb\x67\x3d\x67\
+\xac\xcd\xdc\x81\xfe\x30\x95\x1e\xb3\x3a\x73\xc0\x34\xea\x2b\x2f\
+\xab\xdb\x6f\xa2\xdb\xdd\x0d\x7f\x4d\xe0\x81\x41\x74\x3a\x4f\x70\
+\x07\xc4\x03\xce\x89\xa0\xfb\xe0\x39\x21\xa8\x83\x07\xc4\x03\x03\
+\xf8\xa8\x47\xd8\xbb\xad\x4e\xf7\xe9\x5e\x1c\x90\xcb\xf7\x7e\x77\
+\xce\xd1\x12\x8c\xf9\x32\x49\xd4\x8a\xb1\x6e\xfd\x9d\x17\x3b\xa2\
+\x69\x18\xde\xbc\x3c\x45\xef\x32\x0b\xe1\x40\x33\x1f\xd2\xbd\xdc\
+\x04\xce\x33\xf4\x9c\xa0\x0b\x3a\xdb\xb0\xf7\xbe\x2e\x50\xb4\x01\
+\xba\x1f\x50\xc4\xc8\x06\x3e\xb5\x43\x9e\xf6\x22\x27\xa0\xe6\x0a\
+\x1d\x82\x66\x6c\xa0\x3f\xec\xd0\xa3\x11\x50\x67\x0e\xd9\xd4\x79\
+\xf4\xe7\xca\x98\xb8\x51\x07\xa0\xf3\xb4\xb3\x37\x31\x6c\xdd\x97\
+\x20\x74\x34\x87\xbe\x6e\x53\xec\xf5\x4d\xc9\xed\xe0\x13\x06\x36\
+\x88\x3e\x81\x10\x23\x1b\xf8\xd4\x0e\x79\xda\x8b\x9c\x80\x9a\x2b\
+\x74\xa8\xb1\xe1\xda\x1f\x88\x03\x1a\x68\x0f\xa8\x13\xb3\xa9\xf3\
+\x8c\xdd\x0d\x28\x63\xb8\x51\x07\xa0\xf3\xb4\xb3\x37\x31\xf3\x01\
+\xdf\x7d\x66\x13\xcd\x61\x93\xf5\x7f\xcd\x7e\x94\xe8\x8f\xfe\x74\
+\xfa\xbf\xb2\x2c\x9d\xf4\x50\x7b\x3d\xe4\x2e\x77\xca\xb9\xa3\x06\
+\x7b\x78\xae\x19\x41\x63\x10\x7d\x82\x82\x30\x80\xf6\xf0\x69\x46\
+\xd0\x6e\x9f\x51\x69\xc8\x5c\x6e\x4c\xe2\x26\xeb\x47\x2c\x3c\x30\
+\x88\x4e\xe7\x89\xc7\x32\x9a\xb1\x99\x8f\xaf\xbb\x29\x3a\x1a\x13\
+\xea\xec\x03\xfd\x10\xe1\xaf\x2b\x38\xa3\xe9\xc3\x0f\x0e\x40\x3c\
+\xdc\x3e\x23\xe9\xbb\xd8\x07\xab\xf1\x99\x8f\xa9\x03\xef\xba\xd3\
+\xb5\x44\x3e\xfd\x60\x32\x40\x7b\xf8\x34\xa3\xd3\x1d\x7b\xa1\x9e\
+\x99\xcb\xea\x3f\xc5\x0b\x40\x11\x13\x1e\xf0\xa7\x0d\x1a\x2c\xa2\
+\x09\x5d\x96\x91\xfe\x6e\x7c\xc3\xcd\x7f\xce\xa3\xaf\x70\x0d\xe2\
+\x4e\xf6\x16\x5f\xe4\xb6\xed\xfa\xd9\x07\x20\x06\xb1\x9b\x0d\x8f\
+\x94\xd1\x86\xb9\xf9\xee\xe2\x46\x20\x8a\xaf\x5e\x5f\x78\xf0\x4c\
+\x55\xa0\xd3\x76\x20\x82\xf0\x78\x19\xe9\x63\x19\xae\xb2\xfe\xea\
+\xcf\x73\xf2\x04\x40\x8d\x87\xe7\x63\x6c\xda\x68\x8e\x5d\xe2\x10\
+\x2e\xec\x46\xfa\xd9\x96\x1a\x54\x05\x3a\x6d\x07\x22\x08\xb7\xcf\
+\xc8\x98\xcb\xf0\x44\xae\xff\x3c\x7b\x61\x7c\xce\xbf\xb2\xd0\x63\
+\xbc\x9d\xf4\xc6\x37\xb0\x0b\x91\x35\x06\x0f\xf4\x8e\x58\xea\x23\
+\x6c\xc0\xaf\x0d\xca\x68\xab\x6b\xd4\x2d\x1c\x1c\x2c\xac\x47\xfa\
+\x10\xab\x3c\xab\x82\xe5\x6c\x3b\x10\x41\xb8\x6e\x46\xc6\x5c\x86\
+\x47\xbd\xfe\xe8\xed\x8f\xfd\xd0\xa2\xde\x29\xd4\xb3\x9e\x6b\xcf\
+\x26\x6d\x2d\x31\xac\x34\x1f\x40\xa7\xed\x40\xdc\x54\xfd\xcb\x5f\
+\x44\xcf\x09\x10\xb8\x38\xb5\x26\xe3\x96\xe6\x3a\xe8\x34\x1e\x36\
+\xf0\x97\xfe\xbe\x8e\x3e\x37\xc9\x97\x79\x97\x72\x5e\xa5\xfe\x65\
+\xfe\xc6\x2b\x6c\x51\x7d\x85\x73\xf4\xdc\x43\xf7\x61\x34\x7b\xcb\
+\xfe\x43\x8b\x39\xb9\x45\xd0\x77\x5f\xe0\xc1\x27\xfd\x12\x61\x10\
+\xf5\x95\x07\x3a\x0c\xc6\x62\xfc\x88\xf0\xe7\x3a\xf0\xab\xbe\x83\
+\x9f\x7e\xca\x5c\x26\xe6\x47\xdf\x8c\x0b\x3f\xce\xa3\x43\x8d\x09\
+\x1a\x7e\x89\x1a\xab\xa6\x0f\x3e\x7d\x50\x47\x90\xb1\x18\x3f\xe2\
+\xf1\x5e\xff\xdf\x3d\x7b\xde\xbf\xb2\x4e\xb5\xb7\xe1\xff\xeb\x9f\
+\x49\xe9\x06\xd7\x5b\xac\xbb\xf7\x08\x3d\x64\x1f\x89\xd2\xc7\x9e\
+\xd4\x35\x51\x9a\x0a\xb4\xcd\xfe\xe8\x9b\x7d\x87\x9a\xf3\x2a\xfa\
+\xc7\xf3\xfa\xe3\xdb\x39\xfe\xcd\xcf\xce\xfb\xa8\x03\x5e\xf3\x78\
+\xe6\xb3\xac\x19\xb9\x5f\x47\x51\xbf\xdf\x40\x6a\x0b\xa2\x6b\xaa\
+\x34\xd7\x4b\x79\x4e\xdb\x81\x08\x02\x2f\x9c\xaf\xf3\xf5\x24\x8c\
+\xb3\x2d\x44\x6e\xc8\x71\x5b\xf5\x7b\xde\xde\x90\x72\x05\x14\x01\
+\x95\xee\xb5\x95\x69\xb4\x4f\x33\xaa\xa8\xa6\xef\x7c\x2a\xf6\x4a\
+\x0b\x82\x27\xdf\xa1\xfe\x6e\x0f\xa0\x33\xec\x89\xd3\xb9\x55\x68\
+\x21\xdb\x48\x2c\xca\x4d\xe8\x72\x1c\xa8\x48\xcc\xbe\x14\x28\xaa\
+\xaa\x07\x05\x9f\xda\x61\xaa\xbe\xc7\xa2\x0f\x0d\x9c\x69\xd6\xca\
+\xf5\xff\xaa\xfd\x2b\xeb\x49\x7f\x2c\x3f\x20\x55\xb0\x89\x2c\xfc\
+\x3b\xf8\x17\x7e\xce\x6e\x22\xd7\x37\x49\xce\xad\x9e\xe0\xd0\x9a\
+\xa9\x4d\xad\xc7\xf5\x73\x0c\xb5\xed\xbd\x2a\x53\xe9\x5e\x61\x48\
+\xc4\xfa\x21\x25\xcf\xe9\xac\x0e\x57\x25\x77\xca\x73\xda\x0e\xc4\
+\xa2\x41\xf6\x47\x18\xd9\xe7\x38\x37\xb4\x5e\xe2\xe6\x71\x85\xcb\
+\x53\xb3\x8d\xf8\x9c\xdb\xef\xfe\x41\xf7\xc1\xd1\xc9\xfd\xcf\x09\
+\x70\xfd\x11\x65\x6e\xfd\x7e\x03\xa9\xdd\xb0\xc0\x47\x0c\xca\x11\
+\x00\x34\x07\xe9\x9a\x1c\xdf\x55\xbf\xef\x03\x39\x32\x7f\xd6\x0a\
+\x54\x9a\x72\xd4\xc2\x9a\x95\xae\xc9\xa1\xa3\x83\x8b\x53\x5b\x30\
+\xd5\x5d\x85\x46\xce\x18\xcc\x9f\xb4\x33\x0b\x07\xd6\xc2\xfc\xb5\
+\x66\xa5\x29\x87\x0b\xda\x28\x5d\x93\xc7\x90\x87\xfa\xbb\x8e\xec\
+\xf3\xfa\x5f\x70\x41\x4a\xbf\x6f\x37\x11\xbc\x2e\x32\x75\xe0\xdb\
+\x24\x7e\xd1\x6e\x22\xb8\xf0\xe9\xfe\x88\xf6\x87\xf5\xef\x3a\xb2\
+\x6c\xfd\xd1\x43\xdc\x90\xe7\x7c\x43\x07\xd6\xea\x0f\x6c\xcd\x2e\
+\xb8\x30\xfb\x37\xd0\x6b\x41\x5c\x07\xce\xb9\x56\x3c\x7f\xf5\x9c\
+\x57\x9a\x72\xd8\xd1\x86\xf4\xbc\xdf\x03\xc9\x59\xb1\x01\x23\x34\
+\xaf\xce\x03\xda\x63\xce\x3b\x07\x90\xd0\x2e\xc6\x9c\x1c\x51\x1b\
+\xc6\xa8\x6e\xe3\xf7\x75\x83\x86\x0e\xf5\x88\x60\x58\xf7\xdd\x47\
+\x5e\x11\x5f\x0c\x3b\xe4\xa9\xdb\x80\xae\xd9\xbb\xcc\x84\xbd\x7e\
+\xa6\x99\x4f\x4b\x4e\x3d\xa2\x85\xea\xf2\x01\x31\x61\x78\xee\xa6\
+\x47\xfb\x11\x52\x06\x54\xda\x26\x6e\x6b\x09\x12\x51\x04\xf2\x25\
+\x7a\xee\xdd\xf4\x50\x3f\x7a\x87\x07\xfa\x46\x34\xc2\x7b\x94\x51\
+\x69\xae\x83\xf2\x94\xa6\x3c\xa2\xb9\xee\xd6\x03\x84\x8c\x73\xde\
+\x6a\xdf\x95\x85\xef\x4f\x9a\x31\x70\xc1\xc3\x85\x0f\xff\x7a\xf1\
+\x9c\xcd\x36\xe6\x8f\x02\xc0\xf3\x42\x8c\x46\x8e\x38\x00\xf1\xa0\
+\xa8\x66\xef\x3a\x26\xec\xf5\x33\xcd\xba\x5a\x72\xea\x11\x11\xde\
+\xf3\x01\x31\x61\x50\x97\xf6\x23\x34\x1f\xce\x03\x2a\x6d\x13\xb7\
+\xb5\x04\x89\xac\x9b\x88\xdc\x6f\x74\x43\xbb\x11\xdb\x33\x8f\x39\
+\x37\x0f\x33\x4b\x4f\x7f\xa6\x7d\x5d\x89\xad\xd9\x2e\xea\x3f\x86\
+\x04\xfa\x81\xaa\x3d\x8b\x8e\x83\x29\x06\x11\xb2\xbe\x01\x14\x88\
+\xbe\x2b\xe7\xc3\x4d\x6e\x94\xd2\x95\xce\x54\xce\x7e\xd2\xc8\xf1\
+\x7f\xfd\xfe\x7e\xe6\x76\xc8\xea\xe4\xed\xc0\x17\xed\x1b\x74\x3f\
+\x6c\xcf\x06\xce\x7e\x85\x3d\x5e\x36\xad\x0f\x3c\x4f\x89\x7e\xbe\
+\xc2\x14\xe7\x28\x06\x04\x95\xf3\x35\xca\xf1\x82\xfa\x75\xaf\xdd\
+\x7d\x0d\x90\xcb\x26\x1c\x70\xe1\xfb\xb7\xff\x3a\x25\x7c\x7d\xc6\
+\x6b\xed\xdb\x5f\xfd\x05\x75\x84\xcc\xf1\x3d\xbc\xd1\xcc\x8f\xd7\
+\x12\x47\xf8\x87\x8c\x39\x4e\x88\x17\x55\x7a\xbf\x14\x30\x56\x8e\
+\x3f\xa7\x7e\xb8\x28\xfa\xd3\xfc\x48\x53\x91\x71\x33\xce\xa9\xff\
+\xae\xf6\x75\x4b\xf8\xbe\x31\x7c\xf5\xd2\x9c\xf1\x9a\xd7\x2f\xde\
+\xb2\xcb\x34\x88\xeb\xac\x3f\x72\xa0\x1f\xe2\x68\x7d\x4c\x70\xd9\
+\xdb\xdd\xf1\xf1\x8f\x9f\x9c\x30\x17\x82\x08\x43\xa5\xc5\xd1\x7d\
+\xef\x69\x5f\x64\x78\x73\x61\x1c\xc8\x43\x07\x0e\x1d\x98\xdc\x01\
+\x7c\xe2\xf8\x2a\x57\x4e\x09\x9f\xb9\xb8\xc5\xcd\x52\xc2\xd7\x52\
+\xe0\xa6\x32\x18\x38\xf7\x70\x76\x03\x95\xee\xcf\xf8\x81\xf6\xec\
+\x09\xbe\xe6\xe4\xb6\xdf\x30\xfd\x6b\xc3\x11\x00\x5f\xf2\x87\x7f\
+\x0b\xe3\x4b\xff\xde\x81\xaf\xd1\x58\x96\x8b\xe6\xac\xf4\x32\x1b\
+\xad\x42\x6d\x94\x9e\x6a\xaf\xbe\xa6\xd0\x88\x81\x41\x8c\xb4\x0b\
+\x67\x1c\xcc\x0f\x5c\xe1\x1b\xc9\xf1\x55\x4b\x53\xbf\x20\x91\x11\
+\xce\x3d\x2f\xa5\xdf\x79\xa2\xbd\xee\x61\xff\xc2\xda\xc6\xfa\x33\
+\x4e\x8f\xac\x9b\x68\x02\x7f\x0d\x84\x0a\xec\x3b\x50\x69\xca\x07\
+\xcc\xa2\x42\xaf\x99\xae\x71\xf5\x05\x7d\xa0\x0e\x1d\x38\x74\x60\
+\xf5\x0e\xe0\x8d\x1e\xff\xe2\x47\xc7\xf6\xfc\xcb\x1d\xa8\xf4\x58\
+\x73\x1a\x47\x4f\x69\xd0\x5f\xb1\x1f\x91\xfa\x9d\x27\x35\x7e\x0e\
+\xa1\xe2\x1a\x3f\x76\xf4\xb3\x3f\x61\x5f\x7b\xf2\x75\x15\x05\xb0\
+\x43\x40\x9f\xda\x01\xa8\xa2\x9a\x07\xad\x59\xe9\x9a\x7e\x8b\xaf\
+\x31\x95\xee\xed\x94\xa9\x74\xaf\x30\x8f\x38\xcd\xde\xc5\x86\x1e\
+\xe1\x33\x35\x73\xc7\x85\x1f\x4b\xe9\xb7\x7e\xcf\x7e\xe8\xeb\xcb\
+\xdd\xda\xef\xaa\x7e\xbf\x81\xa0\x17\x78\xe0\xc6\x42\xe4\x4d\x86\
+\x58\x2a\x50\x7b\xe8\x3e\xec\x40\x3c\x1e\xfe\x7d\x55\xaa\xe9\xc0\
+\x3b\x74\x60\x1f\x3b\x80\x9b\xc8\xbd\xef\xde\x65\x86\x8b\x05\x1e\
+\x7e\xbe\x66\xe4\x79\x4a\x84\x26\xce\x45\x0c\xa0\xd2\xce\x0c\x3c\
+\xc8\xdd\x5f\x46\xfa\xf9\xd4\xa7\x52\xfa\xf5\xdf\x5c\xed\x26\x72\
+\x87\xdb\xa5\xf4\x1f\x7e\xc9\x7e\xb8\xca\x7e\xbf\x02\x43\x2f\x72\
+\x4a\x77\xd2\x2e\x3e\x68\xc4\x66\x7c\x22\xf8\x6a\x73\x54\xf5\x6b\
+\x7c\xe4\xa0\x43\x7b\xea\x3d\xb6\x43\x8f\x59\xc8\x9c\x61\x47\x1a\
+\x88\x1f\xf3\x42\x6f\xd0\xa3\xb9\x03\x5f\xd7\xff\x6b\xff\x35\x25\
+\xac\x0d\xfb\xc0\x3c\x89\xf0\x99\x53\x58\x6b\xfd\xd5\x5f\xcc\x13\
+\xfe\xfd\x45\x74\x28\xe1\xc1\x64\x80\x53\x1e\x6a\xe3\x81\xec\x40\
+\xbc\xd2\x95\x62\xb8\xc3\xfc\xd0\x81\x43\x07\xd6\xe9\xc0\xbd\xef\
+\x31\xd3\x3a\x5c\x41\x70\x4e\xe3\x6a\xc2\x73\x3b\x9e\xbf\xe0\x93\
+\x47\x1d\xe0\xc7\x2f\xb6\x0b\xd6\x13\x56\xbb\x89\x5c\xc7\x5e\x47\
+\x79\xfc\xbf\x4b\xe9\xe1\x0f\x5d\x7c\x11\x20\x5e\x1b\xf0\xd7\x07\
+\x10\xcf\xe8\x3e\x16\xd2\x43\x7e\x5d\x9a\x5e\x2c\xe8\x95\x07\x8d\
+\xb3\x43\xf8\x5e\xa5\xfe\x3e\x3f\xb3\x57\x9a\xbd\x02\xe2\x81\x03\
+\xb1\x23\x28\x80\xb0\xab\x15\xff\xa6\x7a\xc4\xc3\xac\x27\xbf\x9c\
+\x12\x7a\x33\x77\xf8\xcd\xc3\xd6\xe2\x93\x76\xf3\x68\x8e\x23\xa8\
+\x7f\xf8\x0c\xc4\xaa\x47\x4c\x2e\x30\x12\x04\xdd\x0f\xd2\x40\xe8\
+\xba\xf2\xa2\xa9\x5c\x1c\xe0\x95\x8f\x83\x17\xd0\xfb\xba\x0e\xc4\
+\xa1\x03\xc7\x41\x07\x70\xc1\xe1\x39\x57\x3a\xff\x70\x3a\xfa\x05\
+\x0e\x68\x0f\xbf\x38\x67\xe4\x79\x4c\x34\xb6\xeb\x10\x5b\xfa\xf8\
+\x4d\x89\x5f\x5b\xf1\x99\x08\xbe\xc5\x17\xdf\xe7\xf4\xff\xfe\x5b\
+\x7b\x61\xde\x9e\x8d\xf0\x22\xac\x35\xf8\x05\xd7\x93\xc8\x89\x19\
+\xed\xb5\x66\x64\xdd\x44\xb5\xa5\x3f\x98\x3b\x9d\x5d\x6c\xb2\x7e\
+\xf4\xc9\x73\x24\x36\xae\x7f\x7e\x2d\x84\x2e\xf2\xef\x20\x5d\xdf\
+\x6a\xef\x6f\xa6\xd6\x93\xb9\x03\xbf\xac\x8a\x67\x83\x9f\xc0\xcd\
+\xa3\x10\x7f\x17\xf5\x77\xaf\x81\xe4\x0a\x7d\x71\x50\x70\x7e\x68\
+\x92\xde\x3c\xe8\xe1\xe6\x91\xf5\xbd\x01\xa0\xf3\xe0\xe6\xe4\xc2\
+\x91\x7f\xc0\x43\x07\x0e\x1d\x38\x82\x0e\xf0\x5c\xcc\xe7\xe7\xe8\
+\x7c\xb6\x14\x9c\xc7\x54\x5a\xfa\x72\x91\xc2\x79\x7f\x31\x9e\x89\
+\xd8\x05\x0c\x7f\x05\xaf\x32\xf0\x89\xf5\x5f\xb1\x9b\x08\x6e\x26\
+\xf8\x14\xbb\x5f\x47\xe0\x28\xe7\xeb\xd7\x0f\xa3\x81\x7a\x2d\x99\
+\x1c\xab\x55\x0f\x42\x51\x87\x71\x89\xc6\x1f\xf5\x2b\xd4\xef\x79\
+\x1a\x8f\xf9\xc2\xb4\xaf\xc1\x48\xcd\x59\x6b\xc1\x3b\xab\x1e\x61\
+\x35\xe3\xe6\x81\x9b\xc8\x2a\x03\x37\x0f\xf4\x1e\x37\xf2\xea\x60\
+\x6d\xc0\x52\x3d\x60\x53\x07\x4e\x48\xd7\xf4\x27\xd4\xdf\xdd\x40\
+\xd0\x14\x28\xc3\x69\x46\xa7\xed\x40\x1c\x04\x83\x5e\x61\x30\x39\
+\xe0\xa7\x3e\x5d\x50\x38\xb0\x0e\x1d\x38\x74\x60\xe5\x0e\xf8\xd7\
+\x73\xc3\x1a\x27\xa5\x9c\x9b\x79\xea\x7e\x41\x4f\x1e\x38\xef\x31\
+\x66\x9c\xff\xb8\x89\xfc\x27\xfb\xff\xfb\x07\xcf\xed\x4c\xe7\x1e\
+\xf1\xee\x32\xdc\x40\x9e\xf0\x9f\x52\xba\xdf\xbd\x86\xdf\xd0\xfd\
+\xb5\x9c\x3c\x50\xe9\x3e\x06\x8b\x03\xda\xc3\xa7\x19\x9d\xee\xd8\
+\xbd\x7a\x93\x58\xa1\xfe\x2e\x68\xd9\xb3\x5e\xff\x40\x9f\x62\xcf\
+\x32\xee\x6b\x35\xa2\x56\xfc\x0b\x6f\xee\xbb\xac\x18\xe5\xfd\x1f\
+\x48\xe9\x3f\xfe\xe7\xee\x06\xee\x3c\x14\x6b\x0f\x00\xd1\xe9\x6e\
+\x0a\xee\xb4\xb1\x81\xfa\xbb\xcf\x81\xe4\xe8\xee\xcf\x68\xfa\x05\
+\x1b\x34\x93\x8b\x59\x51\x46\x7d\x95\xe3\x05\x1e\xfe\x46\xb3\xf2\
+\x0f\xf4\xa1\x03\x87\x0e\xac\xd6\x81\xb3\x5f\xde\x9d\x8b\x3c\xdf\
+\x22\xc2\x2b\x79\xa0\xe3\xf9\x0b\x19\x79\x90\xf7\x27\x76\x3e\xc1\
+\xdd\xd6\x68\xfa\xa0\x6e\x16\xbb\x09\x0e\xf8\x17\xca\xaf\xfe\x17\
+\xfb\x5d\x90\x1f\xb2\x9f\x57\xb5\xcf\x2f\xac\x32\xf0\x26\x9b\x1f\
+\xfe\xfe\x94\xbe\xfd\xdb\xec\x83\x70\x7f\x93\x3f\x37\x92\x1d\xd5\
+\xe2\xc7\xfc\xa9\x47\x84\xb9\xd2\x31\xff\x68\xbf\x6a\xfd\xac\x77\
+\xe4\x8f\xf9\x9b\x00\x3f\x3b\xfb\xdd\xdf\x99\xd6\x7e\x37\xea\x2b\
+\x5f\xd3\x7d\xbb\xee\x57\x2e\x5d\x5c\x8b\x59\x63\xc4\x5d\xd4\x7f\
+\x8c\x77\x4d\xaf\x3d\x76\xc4\x56\xe0\x9f\xc8\x63\x76\x5c\x95\xdc\
+\x2c\x05\xf8\xc2\x53\x37\xe0\xa4\x17\x79\xd4\xf8\x40\x1f\x3a\x70\
+\xe8\x40\xb5\x03\x6f\x7f\x67\x4a\x2f\x7e\xd9\xe2\xfc\x2a\x29\xf2\
+\xdc\xe3\xbf\x52\xa2\x8e\x9f\xeb\xf9\xfc\x8c\x32\x9f\xf3\x5c\x07\
+\x62\x2c\x39\xff\xf1\x16\xdf\x27\xfe\x91\x7d\xf9\xe2\x87\x53\x7a\
+\xa4\x5d\x28\x57\xfd\xad\x9f\x6b\x9e\x95\xd2\x4f\xff\x78\xf7\x8c\
+\xe6\xb9\x2f\x4c\x09\x1f\x8c\x83\x6f\x8c\x58\x8f\x5e\x5f\x3a\x8d\
+\xe1\x31\xea\x0f\xa5\xdd\x75\x09\x77\x18\xef\x43\x14\x62\x3e\xa3\
+\xfe\x92\x39\x7a\x80\xcf\xc0\x3c\xf4\x41\xab\xff\xab\x8a\x7e\xf1\
+\xf5\x24\x4f\xfb\x6b\xfb\x86\xe4\xe7\x74\x7d\xf0\xd4\xe4\xfa\x4a\
+\x3d\xc5\x5d\xd4\x7f\x99\xef\x7f\xac\xb5\x33\x6f\x98\x42\xff\xfa\
+\x9e\x7a\xa2\x56\xc0\x90\xa1\xe9\x8b\xcc\x1c\xe1\xee\xfb\xf0\x87\
+\x04\xf9\x61\x7a\xe8\xc0\xa1\x03\xb3\x3b\xf0\x8f\xf6\x21\x42\x7c\
+\xc9\xe1\xa7\x3f\x63\xa6\x3c\x07\x4b\x5e\x28\x03\xda\x88\x17\x94\
+\xd1\x05\x38\x9c\xf0\x61\xda\x87\xca\xee\x16\xb1\x7b\x46\x17\x07\
+\x1f\x76\xfc\x89\xc7\xa5\x74\xf9\xd3\xba\xf9\x3a\xc7\xcf\x7e\x36\
+\xa5\x97\xd8\x33\xad\x17\x9d\xdd\xbd\xfb\x8b\x35\xb8\xcf\x98\x60\
+\x0c\xb4\xa3\xfa\xf1\x99\x37\xfc\xab\xea\x5e\x77\x4f\xe9\x8c\x2b\
+\xc6\xa4\xe6\xcf\x2f\xf9\xa2\xad\xf7\x1f\xa6\xf4\xa6\xb7\x2c\xd6\
+\x70\x5f\xeb\xef\x6e\x20\x53\x6b\x0c\x0b\x18\xa6\x7e\x67\xe7\x82\
+\xdf\xe4\xc6\xf6\xa2\x91\xbd\x60\x76\x18\x87\x0e\x1c\x3a\x30\xbf\
+\x03\xf8\xd4\x39\x7e\x6e\x16\xff\xb6\x7a\x89\x3d\xf3\xf0\x31\x3a\
+\xe1\x8c\x4b\x5e\x56\xd9\x2a\x30\x16\xd0\x86\x4e\xaf\x7d\xad\xee\
+\x37\xbb\x57\x7d\x91\xb8\xf3\xb8\x38\xe2\x2f\xf0\x73\xec\x02\xfa\
+\xaa\xd7\xa6\x84\x4f\xc4\x5f\x72\x49\x08\x08\xd5\x70\xc3\x58\x58\
+\x6f\x89\x92\x82\xf1\x26\x80\xdb\xdd\xc6\x6e\x1c\xf6\x8d\x1b\xb7\
+\xb1\x4f\xeb\xe3\xba\xb7\x89\x81\x4f\x97\xe3\x99\xdd\x47\xec\x6b\
+\x6c\x46\x43\xe2\xbb\x6c\x87\xf5\x23\x3e\xd2\x19\x3c\x03\xd9\xf4\
+\x82\xfc\xee\x13\xf6\xff\xfb\xb0\xf0\x62\xff\xcf\xfc\x82\x2f\xc7\
+\xd1\x6f\xc8\x1c\xb6\x0a\x6b\x6e\x98\xb8\xbf\xa2\xbb\xc1\x15\x00\
+\x49\x44\x83\x6a\x62\x47\x24\x88\x09\xcf\xcc\x2f\xaa\x47\x77\x87\
+\xfa\x65\xcd\xb1\xa4\xb1\x61\x33\x97\x19\x2f\x12\xe3\xc5\x62\xfc\
+\x82\xde\xaa\x2f\x18\x97\x42\x5e\x6a\xff\xff\xc7\xd7\xa2\xbc\xe1\
+\x9c\x94\xde\xf8\x66\xfb\xf7\xf8\x27\x4b\x5a\x63\x5e\x2c\x67\xdd\
+\xf5\xc7\x4f\x73\xdf\xfe\xb6\x76\xe3\xb0\x67\x5c\xb7\xba\xc5\xfc\
+\xef\xad\x1a\x67\xb8\xe0\xa0\xc6\xbf\x7d\x76\xf7\xc0\xaf\x0a\xfa\
+\x88\x09\xc7\x82\x16\xe6\x45\x2a\xaa\x47\x77\x9b\xd8\xff\x7e\x03\
+\x41\x20\x8c\x18\x20\x3e\xe5\xe5\xb3\x0b\xde\x6d\xa3\x3c\x3a\xf8\
+\xd1\x1f\xe8\xde\x69\xd1\x79\xdf\xcf\xe3\x8b\x5e\x9a\xd2\x9f\xfc\
+\x79\x97\xdb\xa6\xeb\x8f\xfe\x62\x07\x62\xff\x62\x7f\xd7\xd5\x8f\
+\xf6\x71\xde\xda\x60\xad\xfc\xa2\x3c\xae\xff\xa1\xfe\xc5\x35\x39\
+\xf6\x1e\xf3\xd8\xbf\x13\x65\xfd\xf1\xdb\x20\xf8\xea\x15\x7e\x02\
+\xbd\x54\xfb\xaa\x3c\xf4\xec\x43\xf6\xba\xcb\xfb\x3e\x90\xd2\xfb\
+\x3f\x68\xf8\xfe\xee\x99\xda\x9c\xaf\x9f\x67\xec\x65\xfb\x1f\x37\
+\xc0\x6b\x5f\xb3\xfb\x9d\x13\x7c\xc5\x3a\x9e\x65\xac\xf2\xc1\x3f\
+\xc6\x5a\x86\x78\xd6\xf1\x07\x7f\x92\xd2\xf9\x56\x17\xf7\x44\x49\
+\x9f\x32\x20\x46\x6b\xbf\x74\x5a\xf5\xe3\xb2\xfa\x61\xd5\x8a\xe7\
+\x72\xbc\x06\x92\xf3\x59\xec\x76\x32\xc2\x15\x20\x4c\xeb\x99\x65\
+\xc9\xad\x6f\x95\xd2\x2f\xfd\xab\xa6\xda\x4e\x15\x7e\xe3\xb7\xba\
+\x2f\xaa\xf3\x24\x1a\x1d\x9d\x5b\x7f\x2c\x2c\x2e\x48\x94\xb7\x36\
+\x44\xb4\x8f\xfa\x2d\x79\x8c\x17\xcb\x1d\xfd\x05\x1a\x0a\x0e\xd3\
+\xe8\xae\x39\x8f\xf9\x45\x83\x58\x4f\x94\x47\xfb\xa8\xdf\x92\x8f\
+\xfc\x19\x83\x35\xb9\x2c\x36\x84\x42\xa0\x8d\x30\xed\x98\x33\x8e\
+\x31\xbf\x68\x1a\xeb\x89\xf2\x68\x1f\xf5\x5b\xf2\x91\x3f\x63\xb0\
+\x26\x97\x6d\xb0\xfe\x6d\x3d\x1b\x89\x35\x60\xfe\x65\x7b\xd1\xfd\
+\x3c\xbb\x08\x7f\xf4\xa2\xee\xcd\x3b\xf8\xac\xc4\x27\xec\x59\x0a\
+\xde\xc8\x83\x67\x2b\xb8\xb9\xe0\x0b\x07\x81\xff\x94\x11\xf9\x5d\
+\xf1\x8c\x94\xce\xb4\xd7\x2c\x80\x78\xed\x02\xf4\x59\xf6\xa2\x3e\
+\x3e\xaf\x72\x1d\xfb\x97\x1c\xde\x72\xbc\xcd\x81\x67\x1d\xf8\x05\
+\x41\x3c\xf3\xc0\xb3\x8e\xb8\x9e\x31\x76\x6b\x7d\x5b\xf2\x91\x3f\
+\x63\xac\xbb\xfe\xdd\xbb\xb0\xf2\x09\x12\x03\xd0\x39\xc5\x31\xc1\
+\xa8\x1f\xe7\x6f\x7b\x7b\x4a\xef\x7c\xf7\xfe\x7e\x2b\x2f\x72\x43\
+\x8e\xde\xc5\x98\x7c\x66\xf3\x9c\x82\x78\x6e\xfd\x23\x97\xd6\x48\
+\xf8\x60\xbc\xd9\xfd\x0d\xf6\xf4\xe5\x08\xb7\x59\x0e\xc4\x68\xe6\
+\x1b\xfc\x75\x56\x8b\x23\xdc\x48\xba\x6d\x7f\x0b\xd3\x32\x15\xe2\
+\xcd\xf6\x1f\xec\x0f\xf5\x5b\x9b\xd9\x13\x90\x99\xde\x87\xf5\xc7\
+\xc5\x11\x6f\xcf\x7d\xf5\xeb\x52\x7a\xf4\x77\x6f\xf7\xb7\x81\xf0\
+\x41\xbd\x9b\xde\xa4\x7b\x94\x37\xde\xfe\x71\xf1\xfb\x1d\xff\xe7\
+\xe9\xf6\xac\xc3\x5e\xe7\xc2\x79\xa0\x6b\xc7\xf3\x79\x94\x35\xd7\
+\x1a\x06\x36\xf6\x61\xff\x5f\xe6\x31\x3f\x66\x69\xe4\x84\xfa\xab\
+\x05\xae\x1a\xab\x0c\xf8\xd1\x2b\x8e\x4d\x6f\x7a\xe3\xfd\x7d\x31\
+\xfd\xf1\xbf\x9e\xd2\x7b\xdf\x67\x49\x6e\xb1\xfe\x41\x1b\xd9\x9b\
+\x4d\xf5\x77\xdf\xfd\x0d\x8a\xb7\xc9\xbe\xe7\xbb\xe9\xfc\x0e\xf5\
+\xf7\x1d\xc0\x57\xd2\xe3\x46\x72\x33\xbb\xd0\x9f\xcc\xe3\xdd\xef\
+\xb5\x1b\xc7\x5f\xa5\xf4\xae\xf7\xac\xd0\x85\x78\x7d\xdd\xf4\x7e\
+\x5d\xc1\x5f\xf7\x24\x0d\x86\x1c\x42\x47\x7f\x31\x7f\x9a\xf4\x48\
+\xdb\x8c\x00\x5c\xa0\xf1\xe3\x32\xfb\xf6\xf3\xb6\xaf\xb3\x9c\xfc\
+\xe6\x81\xe4\x99\x77\xa0\xc1\x66\xcd\x10\x91\x06\x16\x07\xfd\x64\
+\x2c\xda\x1b\xb3\x66\x5f\xd4\xb7\x40\xbd\x7e\xf6\x5b\xcb\x37\xe6\
+\xb4\xae\xbf\xa6\x7d\x29\x20\x78\x39\xcf\xa2\xbd\x31\xfb\x7a\x82\
+\x7d\x51\xdf\x74\x7a\xfd\xec\x97\xfe\xdd\x9c\xbc\xe0\x0b\xd3\x75\
+\xfd\x35\xed\x63\x4c\xe6\x92\xb1\x68\x6f\xcc\xbe\x9e\x60\x5f\xd4\
+\x37\x9d\x5e\x3f\xfb\x3d\x1e\xeb\xc7\xb3\xfd\x5f\xb1\x3f\xd8\xee\
+\x78\x87\x94\xbe\xf7\x11\xf6\xfa\x82\xfd\x8b\xe8\x64\x1a\xe7\x9d\
+\x9f\xd2\x53\xff\x3a\xbf\x35\xb7\x52\xf8\xf1\xb8\xfe\x83\xff\xf2\
+\xe1\x29\x11\x9f\x4a\xa1\x46\xd2\x7c\x4a\xec\xbc\x4a\xf1\x25\x36\
+\x37\xfe\x93\x9f\x96\xd2\xad\xed\xeb\xa8\x4f\x3f\xbd\xa4\x75\xf4\
+\xbc\xcf\x7f\x3e\xa5\xbf\xb4\x9c\xe2\xd8\x56\xfd\xec\x03\xe2\x29\
+\x1d\xe3\xcf\x9d\xb7\xf2\x65\x2c\x62\x2b\x7e\xcb\x5f\xcb\x3e\xe6\
+\xcf\xb8\xc4\xb9\xf6\xd1\x5f\x9c\xb7\xf2\x65\x5c\x62\x2b\x7e\xcb\
+\x5f\xcb\x3e\xe6\xc7\xb8\xc4\xb9\xf6\xd1\x5f\x9c\xb7\xf2\x65\x5c\
+\x62\x2b\x7e\xcb\x5f\xcb\x3e\xe6\xc7\xb8\x44\xc8\xdf\xf0\x26\x7b\
+\x27\x95\xbd\x9b\xea\x5b\xbe\x39\xa5\x07\xdc\x2f\x25\xbc\xdd\xff\
+\x44\x1e\x1f\x38\x37\xa5\x67\x3f\xcf\xfe\x95\x67\x6f\x47\xf6\xfe\
+\x6e\xb0\xd8\xd6\x7a\xb1\xef\x44\x84\x56\x3a\xa6\xd2\xf2\x57\xb2\
+\xf7\x7f\x61\xc1\xd0\x07\xbc\xf3\x36\x68\x64\x98\x76\x3a\x72\x8c\
+\x01\x45\xd4\x91\xe2\xe0\x36\xf6\x82\xfa\xff\xf3\xf3\xab\x7f\x62\
+\x75\xe4\x7b\x45\x06\x5e\x48\xfb\xcf\xbf\x9d\x12\x3e\x9c\x35\xca\
+\x5f\xf2\x85\xfb\x30\x1d\x45\x1c\xd9\x47\x8d\xe8\x80\xbd\x9d\xd8\
+\xef\xa8\xde\xaf\x4d\xb6\x8f\x37\xf8\xd9\xfa\x66\x40\x1f\x9e\x7a\
+\xc8\x37\x4c\x63\x75\xe3\xfe\x45\x8d\xe8\x20\x26\x18\xe4\x61\x1a\
+\xcb\x5d\xec\xcd\x43\xfd\xdd\x72\x59\xc3\xb8\x07\xc1\x88\xed\x8d\
+\x0c\xae\x35\xff\x20\xa4\x2d\xf0\xff\xb6\x77\x2d\xad\x96\x1d\x55\
+\xf8\xdc\x36\x38\xca\xc0\xb4\xa0\x98\x81\x18\x33\x74\x60\x88\x22\
+\x38\x11\x41\x0c\xf8\x07\x24\xdd\xa0\xa2\x38\x71\xe2\xc0\x5f\xe0\
+\x6f\x10\x42\x26\x99\x84\x40\xe2\xe3\x0f\x48\x4b\x07\x05\x71\xec\
+\x24\x23\x45\x31\x33\x1f\xa3\xd0\x88\x09\xd8\xed\xfa\x56\xad\xaf\
+\xf6\xda\x5f\xed\xbd\x6b\xef\x7b\xce\xed\x98\xa4\x0a\x6e\xad\x55\
+\xeb\xf1\xad\x47\xd5\xde\xe7\x9e\x7b\x1e\xd7\x87\x6c\x80\x2c\xc3\
+\x68\x22\x8d\xff\xa4\x2a\x9c\x02\x68\x82\xa6\xc7\xff\x50\xff\xa6\
+\x3d\x90\x7c\xf5\x2b\x97\x7d\x5b\xac\xa6\xf2\x38\xd7\xef\xbe\x5b\
+\x3e\xbf\x72\xff\x77\xf6\x4e\xb1\xbf\x5a\x64\xf4\x01\x63\xa1\xfe\
+\x2a\x33\x75\xaf\x5d\xd5\x16\x38\xb0\x37\x07\xee\x01\xd6\x0a\xaf\
+\x82\xc6\xde\x1c\x28\x83\xbf\x26\xa0\xf9\xb8\x4d\x9a\x3c\xf6\xdd\
+\x1f\x3c\x7a\xb4\x7a\xa0\x92\xf1\x22\xab\x11\xa4\x02\x26\x47\x7c\
+\xfc\xc6\xf1\xdd\xbb\x8b\x48\x8f\x4d\xf8\xea\xeb\xa7\xd3\xbd\xfb\
+\x25\x9c\xe6\xc7\xcd\x00\xdd\x35\x0e\xd6\xaf\x98\x4d\x3c\xc1\x93\
+\x65\x3d\x2c\xcc\xaf\xc9\xdf\x02\xd0\xc7\x63\xc9\x7e\x68\xfc\xc6\
+\x5f\x0f\x94\x3a\xe8\x9a\xc1\x40\x31\x24\x9e\xe2\x17\xa3\x69\x1e\
+\xf5\x1f\xbb\x80\xb5\x5f\xda\x5f\x69\x7f\xb3\x1f\x53\xe7\x0b\xd7\
+\xf8\xbf\x8f\xfb\xff\xa4\xfd\x75\xe2\xeb\x5f\x2b\x6f\xfb\xff\xf4\
+\xa7\x34\xd3\x0f\xc6\x1a\x1f\xfc\xbc\xff\xdb\xd3\xe9\xf7\x7f\x38\
+\x9d\xfe\x6d\x1f\x7c\xd4\xfe\x6a\x15\xba\x9f\xf5\xe2\x8d\xeb\xa9\
+\xb9\xbc\x64\x7f\x14\xff\xfd\xd8\xff\x2b\x3c\x80\xd4\xc2\x9a\x8c\
+\x4d\x43\x59\x35\x3a\x8f\xf9\xce\x8b\xe5\x0b\xd4\xce\x43\xb9\x9e\
+\xf7\xaf\x7f\x73\x3a\xbd\xf6\x0b\xf3\x9d\x2a\x9e\x03\xb1\x56\x50\
+\x8c\x66\x47\x8a\xf8\x62\xf3\x4d\xc7\x3b\x8a\x7f\xd4\xfe\xdc\x46\
+\xdc\x74\xbc\xa3\xf8\x47\xed\x47\xfd\xe7\x75\x60\xa5\xdf\xf8\x6f\
+\x7d\x5f\x7a\xee\x74\xfa\xf2\xf3\xe5\x19\xca\x79\x41\x6e\xd6\xfb\
+\x6f\xf6\xda\xc6\x1f\xed\xc3\x8d\xf8\x80\xe3\x9f\xff\x72\x30\xd6\
+\x4a\xfd\xab\xf7\xa7\x83\xf0\xf5\xde\x8d\x38\x18\xbd\xfb\xd9\x35\
+\xf2\xf1\x07\x10\xde\x4f\xd5\xbf\x44\x9d\x66\x8d\xdf\xd8\xab\x40\
+\x1d\x02\xea\x85\x6f\x9c\x4e\x78\x20\xb9\xee\x17\xb0\x4d\x19\xed\
+\xe3\xf0\x67\xab\xd7\x7e\x3e\x3d\xf3\xa0\x97\xa6\xa7\xe9\xd3\x8e\
+\xb4\x6b\xaf\x00\xea\x40\xa0\x35\x7a\xa6\xbf\x86\x53\x38\x0d\x7b\
+\x71\x7b\x0d\xa8\x01\x34\x01\x5d\x9f\xe9\xaf\xe1\x14\x4e\xc3\x5d\
+\xdc\x5e\x03\x6a\x00\x4d\x40\xd7\x67\xfa\x6b\x38\x85\xd3\x70\x17\
+\xb7\xd7\x80\x1a\x40\x13\xd0\xf5\x82\xff\xed\xdb\xf1\x60\x62\x2f\
+\xbe\xe3\xad\xba\x9b\xff\x63\x5d\xf1\x6e\x60\xfd\x1f\xfb\xf3\xd4\
+\x5b\xf6\xd6\x7f\x7c\x4f\x15\xbe\x6a\x05\xdf\x4c\x8c\xb4\x7d\x2c\
+\xe4\x5f\x6f\xe2\xb4\xd9\xa2\x67\xfa\x6b\xbb\x15\x4e\x43\x5f\xc2\
+\xfe\xea\x0e\xfe\x84\x15\xc8\x97\x00\x24\x06\x20\xf5\x29\x5a\x7e\
+\xca\x85\xd7\x44\x7e\xfc\xa3\x9b\x7f\x61\x1d\x2f\x98\xff\xec\xe5\
+\xf2\x61\x41\xe6\x06\x8a\xa1\x0d\xee\xe9\x8b\xd7\x34\xf7\xec\xb7\
+\xea\x9f\x50\x26\x4e\xed\x35\xc1\x1b\xcf\xd7\x52\x61\x0c\x64\x45\
+\x1e\x74\x69\x8c\xfa\xa7\x1e\xa1\x3f\xda\x2f\xdd\xcf\x7c\xfe\x17\
+\xfb\x69\x0d\xa5\x8d\xeb\x05\x50\x96\xcd\x2f\x94\xaa\xd7\x18\xdd\
+\xfd\x4a\x35\xc0\xf7\x6c\x3c\xa9\x87\xb5\x81\x2e\x0d\xed\x97\x26\
+\x70\xcb\xfc\x9e\x7e\xda\x1e\x48\x9e\x39\x9d\x3e\xff\xb9\xf2\x02\
+\x3c\x9e\xad\xdc\xd4\x07\xfe\xde\x7b\xaf\x7c\x3a\x1c\x9f\x14\xc7\
+\x33\x0d\x50\xbc\x28\x8e\xcf\xb8\x60\x74\xfb\x79\xe1\xfa\xd1\x36\
+\xc6\xdc\x13\x1f\x36\x79\xd0\x17\x14\xe3\x22\x78\xb3\x3f\x61\x15\
+\xdc\x3a\xf7\x36\xf4\x68\x02\x8a\x87\x6f\xb1\xbc\xfb\xed\x9b\x7b\
+\x8b\x2f\xde\x3e\xfc\xc6\x2f\x4f\xa7\xbf\xff\xb3\x94\xd4\x3b\xc0\
+\xb5\xf0\x60\x34\x5f\xed\xf8\xb9\xf5\x9f\x8d\x67\x79\x32\x07\xa4\
+\x4c\x1e\x14\x43\xf3\x1f\xf5\x4f\x3d\x29\x1d\xda\x9e\xb5\x7f\xda\
+\xe0\xa6\xdf\x06\x47\x19\x90\xc9\xaf\xed\x87\x1a\x34\xf6\x09\x63\
+\x11\xaf\xa7\x3f\x78\x03\x43\x8c\x3c\x3e\x08\xf5\x7f\xdc\xde\x47\
+\xfa\x19\x7b\x4b\xf0\x27\xed\x99\xca\xed\xa7\xca\x4f\xe6\xf1\x8c\
+\x05\x7f\xe9\xb8\xb2\x1f\x7c\xfa\x1c\x0f\x42\xfc\xcb\xc7\x03\xfb\
+\xe5\xf2\x1d\xfb\xf6\xdf\x77\xde\x29\x14\xdf\x76\x8c\x6f\x03\xfe\
+\x97\x7d\x92\x1d\x6f\xbb\xe5\x17\x1a\xa2\x0f\x3e\x64\x83\x64\x59\
+\x6f\xee\x2b\xe6\xcd\xf5\xf8\x61\xd8\xff\xab\x3b\xdf\xaf\xed\xc9\
+\x67\x67\x99\x97\x8e\xc9\xb2\xdb\x20\xed\x30\x6f\x68\xf8\x70\x11\
+\x1e\x48\xf0\x61\xa3\x4b\x0c\x7c\x48\xe7\x75\x7b\xe0\xf8\x93\xfd\
+\x4d\x92\x39\x3a\x2e\x76\x76\x26\x38\x18\x8d\xbe\xa0\x36\x64\x79\
+\xed\xfa\xf9\x1b\x59\xef\x82\xd5\xfe\x95\x2c\xa6\x99\xfd\xac\x78\
+\x29\x47\xb7\x1a\xf5\x4f\x9b\x36\xb5\x6d\x3f\x27\x1b\x2e\xcb\xb1\
+\xff\x76\xbe\x78\x06\xbd\xa9\x4d\x83\x4c\x4a\x19\x58\xe3\x79\xe6\
+\x61\x4f\xbe\xde\x91\x68\x0b\x8a\xd1\x39\xbf\x0d\x9e\xb9\x10\x62\
+\x8f\xbf\xdb\x6c\x4d\x04\x8b\x7c\x64\x79\x38\xff\x26\xdf\x83\xfd\
+\xd3\x54\x1b\x3c\x33\x60\x8e\x6e\xdb\xe9\x9f\xe2\x35\x6b\x82\xa5\
+\xfa\xe7\x0f\x20\x62\xd0\x00\x1c\x4d\x40\xf1\x3a\xfe\xf8\xc2\x32\
+\xfc\x27\xaf\xe7\xed\x05\x34\xfc\xc7\xb2\x23\x03\xdf\xaa\x8b\xf7\
+\x97\xe3\xab\x13\xfc\xeb\x49\xe0\x7c\x30\x7e\x63\xaf\x09\x74\xf2\
+\x57\xf3\x06\xaf\xe7\x7f\x6e\xbe\x8a\x7f\x2e\x9e\x16\xa4\xf8\xaa\
+\xd7\xf5\xb9\xf1\x7b\xf1\x7a\xf8\x3d\x7d\x2f\x5f\xd5\xf7\xf2\x51\
+\xfb\x73\xe3\xf7\xe2\xf5\xf0\x7b\xfa\x5e\xbe\xaa\xef\xe5\xa3\xf6\
+\xe7\xc6\xef\xc5\xeb\xe1\xf7\xf4\xbd\x7c\x55\xdf\xcb\x47\xed\xcf\
+\x8d\xdf\x8b\xd7\xc3\xef\xe9\x7b\xf9\xaa\x7e\x21\x9f\xab\x17\xed\
+\x19\x08\xe2\x2c\x0d\xb5\xd7\x7c\xf4\x06\xa9\xbf\x41\xa8\x7d\x17\
+\x2f\x25\x81\xaf\x40\x79\xee\x8b\xf6\xe5\x66\xf6\x67\xae\xa7\x3e\
+\x31\xfd\xc0\xc4\xbf\x24\xcd\x5e\xbc\x02\xfd\x87\xfd\x79\x8a\xef\
+\x80\xd0\x78\x09\xce\xd9\x23\xf1\xe1\xd0\xb5\x97\x80\x97\xac\x7f\
+\x4f\xfc\x6e\x7e\x5e\xf5\x34\x5d\xdc\x7e\xd4\x3f\x1d\x12\x9c\x17\
+\x6b\x30\x7f\x0b\x44\xd7\xa5\x3d\xfd\xf3\x34\x6d\x95\x73\xbd\xfd\
+\xea\xe9\x05\xee\xe2\xf1\xb5\xc0\x51\xff\x47\x6f\xff\x67\x9f\x44\
+\xd7\x03\x87\x0b\x00\x83\xb4\x39\xb0\x26\x70\x19\x26\xda\x19\xbf\
+\x6a\x6f\x36\x6e\xef\xd6\x65\xa2\x2d\x56\xd4\x81\xe2\xcf\x4f\x78\
+\x5b\x1c\x65\xc5\x7a\x3e\x53\x07\xba\x34\xf4\x40\x23\x31\xc8\x6a\
+\x82\x4b\x4e\x49\xc6\xdc\x48\xe9\xca\x78\x57\xc6\xb8\x2c\x04\x6e\
+\x67\xfc\xaa\xbd\x61\xbb\xfd\x42\x0c\x88\xa8\x0b\x38\xc7\xa1\x8c\
+\x2e\xc4\xe6\x7a\x8b\x8e\xfa\x6d\x2f\xac\x61\xbe\xe7\x68\x14\xf9\
+\x9d\x4d\xa4\x19\x29\xf7\xa2\xee\x8f\x31\x2e\x0b\x81\xdb\x19\xbf\
+\x6a\x6f\x29\xb8\x7d\xda\x34\xda\x42\x44\x5d\xc0\x8d\xfd\x4f\x3d\
+\x61\xcb\x72\xbf\x28\x5b\xa3\xe3\xfc\xdf\xfc\xf9\x7f\x02\x1b\xc2\
+\x0b\x8c\x17\x1b\x28\x86\x6e\x40\x4f\x5f\xbc\xd2\x6c\x38\x8e\xbd\
+\xb2\xeb\x5d\x7c\x83\xf2\xfc\x08\xb9\x70\x85\x65\x7c\x5e\x78\xa4\
+\x7e\xc3\x80\x6f\xc4\x77\x2c\x9b\x62\x79\xb8\xbe\x51\xff\x74\x26\
+\xd0\x56\xdd\x3f\xc8\x66\xc3\x1a\x9d\xf7\x67\xa6\xb3\x85\xfa\x37\
+\xfd\x35\x1b\xdf\x33\x3a\x8e\xfd\x9f\x37\x44\xfa\xcb\x73\x4f\x3a\
+\xce\xbf\x9d\x31\x9c\x9d\xb8\xe0\xfd\x2c\xd9\x14\xcb\xfe\xf9\x33\
+\x67\x9e\x49\x87\x31\x47\x9e\x59\xac\xc9\xfb\x19\x87\x40\x47\xd8\
+\xd7\x80\xa2\x57\x7f\xc6\x02\xc5\x40\xee\x60\xeb\x7e\xaa\x40\xf0\
+\x69\x47\x0a\x67\xe7\x03\xcf\xb1\x6c\x8a\x65\x93\x7f\x13\xdf\x9c\
+\x29\x43\x3e\xe4\x6b\x7e\xa6\x7f\xa2\x06\x43\xa2\xb1\x20\x85\x53\
+\xe6\xb1\x9e\x0d\x66\x12\x14\x04\x10\x14\x3b\x6f\x0b\xc6\x70\x2c\
+\xac\x29\x80\x7d\xe6\x03\x9c\xa2\x45\xbc\x88\x11\xa6\x73\x02\x47\
+\x3a\x81\x8d\x58\xb5\xe0\xb9\xda\x7d\x19\x0b\x0b\xe6\x42\x9a\x65\
+\x6e\xac\x13\x62\x61\x04\x65\x68\x8a\x3d\x1d\x5b\x30\x86\xe3\x62\
+\x4d\x81\xb9\xce\x78\x07\x9b\xec\x17\xf1\xe0\x13\x76\x0d\xf1\x80\
+\x93\xc1\xa8\xbf\xf4\x77\xec\x7f\x39\x29\x72\x3c\x5c\x98\xcf\x12\
+\xcf\x22\x29\x0c\x32\x5f\x50\xd2\xcc\x83\x1e\x74\xf1\xbc\x9a\x90\
+\x31\x1c\x0b\x6b\x0a\x04\x9f\x62\xd2\x45\x3c\xf8\xa4\x14\x66\x2c\
+\x14\x74\x02\x1b\xb1\xc6\xfe\x97\x2e\x49\x7b\x5c\x98\x7b\xc9\x7d\
+\x21\x85\x41\xe6\x0b\x4a\x9a\xad\xbf\x4f\xf8\x6e\xa0\xe9\x18\x1a\
+\x81\x9b\x11\x7a\x07\x33\x3e\x83\xce\x12\x28\x28\xb3\x0d\xce\xfa\
+\x1a\x23\xec\xea\x66\xaf\xc4\xa7\x2f\x29\xdc\x72\xec\x1a\x88\x06\
+\x07\xf3\xed\xc5\x57\xfd\xa8\xdf\x36\x60\xec\xff\xec\x0c\xf2\xe8\
+\xf9\xd9\xc4\x64\x63\x49\x56\x34\xa2\x94\xf3\xaa\xd7\x1f\x71\x48\
+\x1d\x7b\xb6\x08\x54\xca\x04\xaf\x77\x5e\xf5\x7c\x6b\x7c\xd5\xf7\
+\xf0\x98\x06\xa9\xe7\x1b\x29\x56\x92\x95\x92\xaf\xc6\xa7\x29\xa9\
+\xe3\xcd\x16\x81\x4a\x99\xe0\xf5\xf2\xd5\xfa\x34\xbe\xea\x7b\x78\
+\x4c\x83\xd4\xf3\xad\x85\x4b\xae\x58\x4a\xbe\x1a\x9f\x38\xa4\x70\
+\xf1\x1c\xc0\x60\x50\x41\x2a\x78\xbd\x7c\x7b\xf1\x55\xbf\x84\x67\
+\xef\x8e\x9e\x06\xf3\x00\x75\xde\x26\xd2\x26\xd9\xc9\xed\xfa\x9c\
+\x83\x47\xb0\xcc\xaf\x21\xa2\x41\x18\xa0\x99\x77\xa1\x4d\x19\x23\
+\xf3\xd4\x77\x68\x76\x71\xde\x26\xd2\x19\x76\x07\x67\xb7\xba\x09\
+\x68\x9e\x94\x2d\x81\xe4\x9a\x33\x4f\x5b\xfa\x82\x66\x9e\xfa\x0e\
+\xcd\x2e\xce\xdb\x44\x7a\x1d\xbc\x4e\xb8\x79\x8e\x39\xf8\x9a\x63\
+\xae\x39\xf3\xb4\xcf\x18\x99\xa7\xbe\x43\xb3\x8b\xf3\x36\x91\x8e\
+\xfa\xa3\x79\x6c\x52\xa7\x97\xbb\xd4\xc4\x02\xcd\xfc\x9a\x73\xde\
+\xf3\xcc\xd3\x3e\x63\x64\x9e\xfa\x0e\xcd\x2e\xce\xdb\x44\xba\x2b\
+\xbf\x0e\x7e\xa3\x6e\x02\x9a\x05\x65\x8d\xb1\x09\x72\xcd\x99\xa7\
+\x2d\x7d\x41\x33\x4f\x7d\x87\x66\x17\xe7\x6d\x22\x5d\xc3\xf3\x17\
+\xd1\xf9\xa8\x86\x9c\xc0\x33\x37\x38\xbb\x2c\x02\x93\x5f\xd3\x77\
+\xf2\x6b\xd4\x0d\x1e\x62\x9b\xb0\xe6\x13\x7c\x7d\x0a\x1a\xb9\x55\
+\xbd\x21\x6e\xe5\xab\x01\x17\xe3\x05\x06\x6c\x5d\x3f\xea\x1f\xfb\
+\x1f\x07\x67\x9c\xff\x71\xfd\xf3\x9e\x51\xef\x0f\x71\x9f\xc0\x5a\
+\xcf\x07\x64\x47\x06\xb1\x41\x31\xfc\x5e\x66\x8b\x7a\x7f\x0b\xfe\
+\xff\xf9\xfe\xe7\xcf\x40\x50\x00\x7e\x78\x33\x06\x65\x11\xa4\x5e\
+\x20\x26\x1b\x68\x5c\x6e\x1e\xfd\xa1\x03\xcf\x41\x7e\x4d\x4f\xbb\
+\x35\x8a\x18\x18\x6b\xf1\x7a\xf9\xf6\xe2\xab\xbe\x87\xd7\xcb\x07\
+\xb9\x12\x33\xf3\xa3\xfe\xa9\x2f\xb9\x3f\xe8\xd1\xd6\xe8\xf5\xbb\
+\xb7\x5f\x8c\xb5\xd6\x7f\xd5\xf7\xf0\x7a\xf9\xa0\x16\x62\x66\x7e\
+\x2d\xfe\x56\xed\xd0\xf5\xe2\xf5\xf2\x65\x2e\x6b\xf1\x55\xdf\xc3\
+\xeb\xe5\x93\x6b\xce\xfc\x5a\x7c\xd8\x6c\x8d\x5e\xbc\x5e\xbe\x5a\
+\x1f\x62\x51\x96\x79\xe6\xd7\xc3\xeb\xe5\x93\x31\x33\x4f\xfc\x2c\
+\x03\xdf\x1b\xbd\x78\xbd\x7c\x59\xeb\x5a\x7c\xd5\xf7\xf0\x96\xf2\
+\x29\x2f\xa2\x53\x63\x88\x00\x61\x97\x11\x00\x1f\x12\x61\x20\x2d\
+\xd8\x03\xd2\x27\x94\x84\xc2\xd2\x3f\x60\x62\x82\xfa\x41\x13\xf2\
+\x61\x44\x5b\x52\x3e\xfb\x98\x3d\xe2\x26\x7c\xda\x91\x22\xb1\x9c\
+\xef\xec\x51\x0d\xf1\x35\x27\x14\x02\x21\x28\x06\x79\x1a\x0a\x9e\
+\x9b\xdb\x44\xf3\xe2\x34\xcd\xa3\x7e\xeb\x0d\x7b\x16\x6d\x61\x2b\
+\xb1\x1c\xfb\x8f\x26\x44\x1f\xbc\x21\x53\x4f\x62\x09\x52\xcf\x29\
+\x7b\x39\xce\xbf\xb7\xa5\xfc\x42\x9b\xce\x17\xcf\x16\xe9\xb8\xfe\
+\xed\xec\xa0\x19\xbc\x41\x91\x8f\x06\xb1\x4f\xa4\x6e\x47\x1b\x1e\
+\x3c\xf8\xd2\x80\xbd\x0e\x3c\x57\xd9\x14\xcb\xb2\x29\x69\x46\xec\
+\xcd\x17\xd1\x89\x4b\x9a\x7c\x0b\x6b\xc8\x5b\x05\x2c\xd9\xbb\x8c\
+\x19\x01\x18\x7c\x04\x70\x2c\x2c\x19\xf0\xc2\xf8\x8c\x53\x29\x63\
+\xaf\xe5\xe3\xc9\xd6\xf4\x62\x95\xc8\x85\xf3\x63\xdd\xa4\xe8\x8d\
+\xf3\x2b\xf9\xa5\x4c\x0a\x4b\x3b\x52\xe9\x6f\xad\x3b\xf5\xd7\x65\
+\x2b\xf6\x34\x23\x5d\x8a\x77\xc9\xfc\x58\x37\xe9\xa8\x7f\xec\xff\
+\x25\xcf\xd7\x38\xff\x71\x05\xf3\x82\xc6\x75\x0f\xfe\x8c\xeb\xbf\
+\x7c\x90\x70\x27\x60\x73\x03\xa1\x1f\x29\x0c\x96\xf8\x90\x81\x30\
+\x67\x98\x3a\x6f\x42\xe6\x0f\x59\x1e\x38\x3c\xb4\x81\x9c\x7c\xb5\
+\x0f\xdc\x59\xcc\x0c\xe0\x0e\xe1\x08\xb9\x26\xa0\xfe\x3d\xfb\x8c\
+\x4d\xbc\x4c\xd7\xf8\x88\xa3\xe1\x9b\x7a\x04\x7f\xd4\x3f\xed\x39\
+\x5a\xd3\xf4\x4b\xf7\x4f\xfa\x57\x1c\xc2\x11\x3a\xdd\x00\xf5\x1f\
+\xfb\x3f\xf5\x68\xa9\x5f\x90\xe5\xa1\xfd\x83\x8e\xb2\xcc\x87\x0c\
+\x84\x2d\x86\xba\xd9\x4f\x08\xd3\x18\xe7\x7f\xea\x11\xda\xd2\xf4\
+\x8b\xbd\x26\x4d\xbd\x73\x96\xcd\x06\xc5\xd0\x0d\xa0\x1f\x69\xcf\
+\xbe\xa0\x4c\xb3\xf9\xcd\x5e\x44\x77\x0d\xc1\x6c\xa1\x09\x43\xc5\
+\x18\xb0\x25\x0f\x7a\x13\x83\xb8\xa4\x88\x91\x79\x8d\xe9\x07\xce\
+\x0c\x40\xeb\x48\x3c\x7c\x79\x28\xa1\x3f\x6c\x6f\x3e\x8e\x01\x67\
+\x1b\xe4\x41\x6f\x62\x10\x97\x14\x31\x32\xaf\x31\x0f\xd7\x63\xbd\
+\xe1\x9f\x4d\x2a\xd6\x56\xbf\x22\x3e\x4d\x90\x0b\xf8\xad\x9c\x2a\
+\xee\x35\x18\xe2\x92\x02\x22\xf3\x0a\x39\xea\x3f\xb8\x9f\x63\xff\
+\xc7\xf9\xb7\x0b\x0a\xd7\x4d\x1d\x89\xc7\xb5\xe6\xd7\x54\x28\x79\
+\xad\xd3\x04\x7a\x7f\x0d\x64\xed\x6f\xae\x7a\x87\xe4\xc5\x4b\xaa\
+\x17\x2c\x6f\x46\x6b\x78\x8d\xde\x12\xf0\x24\x23\xc1\x7a\x37\x62\
+\x86\x94\x07\x6d\xfc\xcd\x8e\x32\x98\x90\x07\xad\x23\xf1\x4d\x03\
+\x4c\xe7\xb2\xb0\xd1\x7a\x6a\x72\xa1\x27\x14\xa9\xda\x6b\xfc\xae\
+\x1e\x39\xdb\x4f\x2d\x57\x13\xac\x45\x14\xe6\x28\xbe\x7b\x31\xd9\
+\x88\x93\xe3\x39\x9e\xc9\xd9\x2f\xcd\xb7\x26\x17\x18\x84\x22\x55\
+\xfb\xa3\xf9\x35\xe5\x36\x82\x52\x37\xe7\xa3\xf8\xee\xc7\x64\x6d\
+\xa1\xf0\xa3\xfe\x71\xfe\xfd\x4c\xc4\x19\xd1\xf3\x3c\xce\x7f\xba\
+\x68\x8c\xe5\xa5\x44\x8a\x7e\x95\x67\x20\x7e\xa5\xc5\x0d\x18\x86\
+\x6b\x0d\x0d\xbb\x4a\xcc\x0e\x20\x44\x26\xef\x14\x46\x07\xf5\xc4\
+\xa9\x94\xd8\xa0\x3b\x06\xcd\x48\xdb\x3b\x86\xe4\x1b\x98\xb4\xef\
+\xde\x50\x34\x87\x83\xf5\xf5\xfa\x53\xeb\x8e\xfe\x37\xf9\x6b\x7c\
+\x59\xb3\x0e\xd2\xc6\x5f\xf3\x1d\xf5\x7b\x07\xd8\xaf\xb1\xff\x9d\
+\x07\x14\x39\x6f\x47\xaf\xef\x71\xfe\xad\x81\xbc\x06\xd1\x4b\xf2\
+\xbc\xde\x95\xe2\x60\x42\xc6\x03\x0a\x9f\x8d\x41\x33\xd2\xc7\x71\
+\xfd\x97\x17\xd1\x23\x29\x06\x9e\x51\x5b\x70\xcd\x5a\x58\xe7\x46\
+\x2d\x45\x45\x47\x52\x48\x33\xaf\x00\xd0\x31\x08\x75\xc9\x9e\x0f\
+\x4c\xa4\x30\xc9\x3c\x5d\x56\x29\xb1\x48\xc5\x90\xe2\x19\xb5\x05\
+\xd7\x4c\x6d\xd4\x2f\x8d\x5b\x5b\xb2\x71\xa4\xb0\xcb\xbc\xfa\x41\
+\xc7\x26\x53\x97\xec\xb9\xd7\xa4\x30\xc9\x3c\x5d\x56\x29\xb1\x48\
+\xc5\x90\xe2\x19\xb5\x05\xd7\x4c\x6d\xec\xbf\x34\x6e\x6d\xc9\xc6\
+\x91\xc2\x2e\xf3\xea\x07\x1d\x9b\x4c\x5d\xb2\xe7\x5e\x93\xc2\x24\
+\xf3\x74\x59\xa5\xc4\x22\x15\x43\x8a\x67\xd4\x16\x5c\x33\xb5\xb1\
+\xff\x53\xe3\xf0\x39\x90\x07\x75\xc9\xce\x80\xda\x8f\x2f\x83\x3a\
+\x5f\xc4\xd5\x9c\x9b\x07\x9a\xf9\x6a\x90\x9d\x8c\xf7\x8d\x08\xea\
+\x3c\xfc\x60\x8c\x09\x3f\xb0\x27\xcd\xbe\x26\xde\x35\x1c\xcc\x2c\
+\x89\x07\x27\xca\xf6\x00\xe4\x98\xc6\xfb\x32\x68\x56\x11\x2a\xd7\
+\x9c\x79\xea\x0b\x80\xad\xe0\x6c\x3f\x9e\x4a\x50\xe7\x6d\x22\x75\
+\x06\x76\x10\x84\xbd\x71\x91\x84\x73\xfd\xc9\xc1\xcc\x0c\x34\xf3\
+\x7d\xcf\x62\x81\xb8\x18\x11\xdf\x97\x36\xc5\xb2\xaa\x9c\xb1\x29\
+\xd7\x9c\x79\xea\xdd\x11\x8b\x00\xf0\x94\x8c\xaf\xe9\x19\xe3\x32\
+\x0a\x60\x07\x7e\x2d\x20\xb0\xb6\x86\x83\x99\x01\xf1\x60\x4b\xd9\
+\x96\x1f\x75\x88\x8b\x11\xf1\x7d\x69\x53\x2c\xab\xca\x19\x9b\x72\
+\xcd\x99\xa7\xde\x1d\xb1\x08\x00\x4f\xc5\xf8\x9a\x9e\x31\x2e\xa3\
+\x00\x76\xe0\xd7\x02\x02\x6b\x6b\x38\x98\x19\x10\x0f\xb6\x94\x6d\
+\xf9\x51\x87\xb8\x18\x11\xdf\x97\x36\xc5\xb2\xaa\x9c\xb1\x29\xd7\
+\x9c\x79\xea\xdd\x11\x8b\x00\xf0\x54\x8c\xaf\xe9\x19\xe3\x32\x0a\
+\x60\x07\x7e\x2d\x20\xb0\xb6\x86\x83\x99\x01\xf1\x60\x4b\xd9\x96\
+\x1f\x75\x88\x8b\x11\xf1\x7d\x69\x53\x2c\xab\xca\x19\x9b\x72\xcd\
+\x99\xa7\xde\x1d\xb1\x08\x00\x4f\xc5\xf8\x9a\x9e\x31\x2e\xa3\x00\
+\x76\xe0\xd7\x02\x02\x6b\x6b\x38\x98\x19\x10\x0f\xb6\x94\x6d\xf9\
+\x51\x87\xb8\x18\x11\xdf\x97\x36\xc5\xb2\xaa\x9c\xb1\xc9\x6a\x7e\
+\x70\xcb\xde\xab\xff\x76\x12\x38\x8b\x66\xf8\x4f\x31\x5a\xcd\xc7\
+\x03\x98\x0d\x03\x20\x57\xf0\x35\x7f\xe0\xd8\x7a\x12\x04\x0f\xd9\
+\xc2\xc8\x9b\xb0\x27\xbe\x63\x1b\x4e\x8d\x17\xfc\x02\xb4\x8b\x7a\
+\xf6\x47\xe3\x8f\xfa\x4b\xa7\xc7\xfe\x4f\xe7\x7e\x9c\xff\x74\x3d\
+\xda\x05\xe7\xd7\xdc\xce\x0b\xf4\xe8\xf5\xd7\xbb\x9e\xf5\x3e\xd0\
+\xb3\x3f\x1a\xff\x23\x7f\xfd\xdb\x63\x07\xfe\x45\xf0\x3d\x6d\x34\
+\xd7\xbd\x06\xf1\x5c\x90\xf2\xe2\x01\xcd\xfc\x5e\x3d\xe2\x72\x93\
+\xc1\x6b\xfc\x2c\x03\xdf\x1b\x7a\x20\x60\x4f\x59\xcf\x17\x7a\x8d\
+\x8f\xdc\x58\x17\x6b\xca\x94\x3a\xd0\xcc\xd3\x26\xcb\x32\x4f\x3d\
+\x62\x82\xe7\x80\x0d\x06\x68\xe6\x5d\xb8\x63\x62\xad\xa0\x99\xdf\
+\xe1\xea\x26\x39\x26\x78\xe4\x46\xca\x9c\x33\xa5\x0e\x34\xf3\xb4\
+\xc9\xb2\xcc\x53\x8f\xa0\xe0\x39\x60\x83\x01\x9a\x79\x17\xee\x98\
+\x72\xcd\x99\xdf\xe1\xea\x26\x39\x26\x78\xe4\x46\xca\x9c\x33\xa5\
+\x0e\x34\xf3\xb4\xc9\xb2\xcc\x53\x8f\xa0\xe0\x39\x60\x83\x01\x9a\
+\x79\x17\xee\x98\x72\xcd\x99\xdf\xe1\xea\x26\x39\x26\x78\xe4\x46\
+\xca\x9c\x33\xa5\x0e\x34\xf3\xb4\xc9\xb2\xcc\x53\x8f\xa0\xe0\x39\
+\x60\x83\x01\x9a\x79\x17\xee\x98\x72\xcd\x99\xdf\xe1\xea\x26\x39\
+\x26\x78\xe4\x46\xca\x9c\x33\xa5\x0e\x34\xf3\xb4\xc9\xb2\xcc\x53\
+\x8f\xa0\xe0\x39\x60\x83\x01\x9a\x79\x17\xee\x98\x72\xcd\x99\xdf\
+\xe1\xea\x26\x39\x26\x78\xe4\x46\x1a\x79\xde\xbb\x65\xff\x67\xfe\
+\x15\x93\x3f\x44\x00\x57\x06\xcd\x3c\x74\x8b\x09\x04\x8a\x23\xd3\
+\x26\xa8\xdb\x27\x59\xed\x0c\x7d\x90\x22\x79\xd0\xcc\x43\x67\x23\
+\xc7\x64\x0e\x99\x66\x9b\xcc\xd3\x06\x05\x39\x06\x8a\xb1\x1f\x10\
+\x52\xf0\xd0\x91\x66\x1e\x32\xca\x49\x1d\x27\x7c\x8c\x94\x91\x73\
+\x36\xde\x6d\x82\x66\x9e\xfd\x71\x27\xfa\x60\x41\x1e\x34\xf3\x6e\
+\x18\x78\x50\x99\x6e\xe9\x07\x66\x1e\x67\xc5\x1e\x45\xb8\x3e\x0a\
+\x02\x19\xf5\x97\xbd\xe5\xbe\x92\xa2\x4f\xe4\x41\x33\xcf\xde\xa3\
+\x7d\xb9\xdf\xb3\x3d\x8b\x3d\x82\xac\xda\x27\xd9\xcc\x16\x40\x18\
+\xa6\xf7\x01\x9a\x79\x8a\x43\x46\x3c\xa5\x30\xcb\xf9\x90\xa7\xdd\
+\xd8\xff\xe8\x4f\x6c\x28\xc8\x38\xff\x97\x39\xff\xf6\x86\x93\x87\
+\x78\xec\xb8\xf5\xc6\xab\x57\x6f\xd9\xe1\x7d\x39\x1f\xc6\x7a\x00\
+\xe5\x80\xc2\x66\x73\xf8\x0e\x99\x45\x6c\x98\x52\x3f\xe0\xa6\xdb\
+\x8d\xaf\x78\x08\x4e\xd9\x66\x22\x45\x49\x53\x50\xfc\xe0\x7a\x24\
+\x5d\xb8\x5e\xeb\xc5\xb8\x3b\xbf\x12\x66\x9a\x35\x20\x03\x07\x1d\
+\xf5\x97\x0d\xd8\xdd\x5f\xed\x27\x3a\x4d\xd9\xd4\xf5\x55\x8e\xa6\
+\xd1\xfe\xb1\xff\xd1\x3e\x9c\xfd\x71\xfe\xcb\xb1\x61\x1f\xb0\xf2\
+\xeb\x33\x68\xe6\x8b\xe5\x8e\x59\x0f\x1c\x0f\x5e\xd0\x0f\xd9\xf5\
+\xff\x32\x1e\x3b\xfc\xcb\x14\x1f\x3d\x7b\xfa\x89\xb5\xe7\xcd\x6e\
+\x8b\xd8\xed\x38\x81\xbe\xb4\x29\x96\xce\x50\x06\xa1\x37\x2c\xe8\
+\xe2\x86\x68\xc3\xe1\x0c\x19\xe8\x0e\xff\x8c\x99\x79\xd6\x91\x65\
+\xe0\xf5\x07\x76\xb4\xa1\xcf\x26\x45\x5e\x18\xcc\x2f\xf8\x58\x96\
+\x9c\xb3\x9e\x76\x46\x19\x87\x14\x66\xf5\x66\xc8\x83\x06\xfb\x51\
+\xff\xd4\xdf\x4e\xff\xd8\x4b\xd0\xcc\x7b\x6f\x6d\xca\x32\xda\x64\
+\x0a\x3b\xda\xd0\x67\x93\x22\x1f\x0c\xe6\x15\x7c\x2c\x5d\xee\x26\
+\xd4\x27\xca\x38\xa4\x8e\x33\xce\xbf\xb7\xc1\xcf\x3c\xcf\x3d\xa9\
+\xf5\xce\x7b\x15\x94\x7d\x23\xf5\xd6\xa3\xbf\x36\x20\xa3\x9c\x94\
+\x72\x52\xda\x64\x4a\x1d\xe8\xae\x11\xf1\xc6\xfe\x9f\xde\x7c\xf4\
+\x8c\x3f\x66\x9c\xfc\x01\xe4\x57\x3f\xbd\x7a\xef\xf4\xec\xe9\x5b\
+\xd6\x9f\x97\xf0\xd4\x04\x7d\x5a\xfa\x41\x93\xd9\x43\xf0\x7a\xfe\
+\xb3\x2c\xf3\xb0\xcb\xb6\xd0\x61\x70\xb3\xb9\xa9\x59\xe6\x06\x9d\
+\x29\x63\x66\xbe\xe3\xb6\xaa\x66\x6d\x4b\xb5\x67\x1d\x01\x72\xcc\
+\xcc\xef\xd5\x8f\xfa\x4b\xa7\xc6\xfe\xcf\xaf\x05\x9e\x9f\x1e\xcd\
+\x67\x2e\xf3\x3d\xbf\x35\x7d\x3e\xe3\x4b\xd7\x00\xfc\x68\x03\x3e\
+\xc7\xcc\x3c\x74\x18\x59\x96\xf9\xa2\x9d\xd7\x9c\xaf\x05\xea\x7b\
+\x34\x63\x66\xbe\xe7\xb7\xa6\x67\x6d\x4b\xb5\x67\x1d\xfd\x73\xcc\
+\xcc\xef\xd5\xe7\x9a\x33\x4f\xff\x1e\xcd\x31\x33\xdf\xf3\x5b\xd3\
+\xe7\x1a\x97\x7a\x10\x8f\x0d\x2f\xe1\xb1\xc2\x1f\x33\x0c\x88\x71\
+\x2b\xe6\x9d\xef\x3d\xfa\xc2\x7f\x4f\xa7\x1f\x3e\x7a\x78\x7a\xc1\
+\x4e\xcb\x67\xcd\xe2\x49\x16\xe7\x1f\xb4\x32\x64\x50\x0c\xc8\x29\
+\x73\x01\xe4\x88\x4c\x54\xf2\xa0\x0b\x83\xbe\xd7\xc5\x6b\xfc\x2d\
+\x06\x53\xf0\x70\x1a\x9f\x4a\xe6\x27\x39\xa9\x5a\xeb\x6b\xe2\x19\
+\x3e\x65\x0e\xd5\x00\x68\x42\xf3\x80\xf4\x05\xc5\xd0\x78\xb5\x18\
+\xe6\x2b\xf5\x34\xfe\x86\xc1\x14\x0a\xa0\x08\xa8\x24\x9e\x1b\x4d\
+\x93\xaa\x35\x9f\x26\xde\xa8\x7f\xec\xbf\x1d\x1a\x9c\x13\x1f\xcd\
+\x01\x32\x29\x65\x61\x92\xc9\xb9\xe7\xa9\xf1\xd7\x70\x72\xbd\xd4\
+\x5c\x90\xd3\xc2\x60\xaa\x54\x8f\xf3\xef\xf7\xb7\x07\x76\x4f\x7f\
+\xdb\x7a\x7d\xef\x63\xb7\x4e\xaf\xf8\x4b\x1e\xa9\x77\xff\x03\xbd\
+\xa0\x7f\xb0\xc0\x59\x80\x24\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
+\x42\x60\x82\
+\x00\x00\x10\x75\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\
+\x00\x00\x10\x3c\x49\x44\x41\x54\x78\x5e\xed\x9d\x0d\x8c\x5d\xc7\
+\x55\xc7\xcf\x79\xbb\x71\xb6\x1f\xa9\x48\x3f\x68\xd5\x40\xa3\xa8\
+\x2a\x55\x23\x02\x52\x12\x9a\x8a\x46\xa4\x34\x22\x25\x08\x90\xa8\
+\x70\xbf\x28\x42\xaa\x43\xd2\xd8\xde\xbd\x73\x77\x6d\x43\x45\x51\
+\x1e\x1f\xa9\x2d\xb0\xdf\x3b\xf7\xad\x53\x57\xdb\xd2\x46\x0d\xa5\
+\x9f\xa9\x28\x6d\x93\x0a\x68\x9b\xb4\x49\x0b\xa4\x69\x2a\x41\xd2\
+\x52\x48\x30\x4a\x29\x48\x90\x78\x0d\xc4\x89\xb3\xfb\xde\x41\x13\
+\xad\xc1\x09\xb6\x77\xee\xdc\x99\xfb\xe6\xbd\xf9\x5f\x69\x65\xcb\
+\x9e\x73\xe6\x9c\xff\xff\xfe\x34\xf7\xed\xbb\x77\x2e\x13\x0e\x28\
+\x00\x05\x4e\xab\x00\x43\x1b\x28\x00\x05\x4e\xaf\x00\x00\xc1\xd9\
+\x01\x05\xce\xa0\x00\x00\xc1\xe9\x01\x05\x00\x08\xce\x01\x28\xe0\
+\xa7\x00\x56\x10\x3f\xdd\x10\x95\x89\x02\x00\x24\x13\xa3\xd1\xa6\
+\x9f\x02\x00\xc4\x4f\x37\x44\x65\xa2\x00\x00\xc9\xc4\x68\xb4\xe9\
+\xa7\x00\x00\xf1\xd3\x0d\x51\x99\x28\x00\x40\x32\x31\x1a\x6d\xfa\
+\x29\x00\x40\xfc\x74\x43\x54\x26\x0a\x00\x90\x4c\x8c\x46\x9b\x7e\
+\x0a\x00\x10\x3f\xdd\x10\x95\x89\x02\x00\x24\x13\xa3\xd1\xa6\x9f\
+\x02\x00\xc4\x4f\x37\x44\x65\xa2\x00\x00\xc9\xc4\x68\xb4\xe9\xa7\
+\x00\x00\xf1\xd3\x0d\x51\x99\x28\x00\x40\x32\x31\x1a\x6d\xfa\x29\
+\x00\x40\xfc\x74\x43\x54\x26\x0a\x00\x90\x04\x8d\x5e\x5a\x5a\xba\
+\x70\x38\x1c\x7e\x98\x88\xe6\x54\xb5\xaa\xaa\xea\xfd\x09\x96\x99\
+\x45\x49\x00\x24\x41\x9b\x8d\x31\x5d\x22\xba\xe1\x44\x69\xaa\x7a\
+\xa0\xaa\xaa\x5d\x09\x96\x3a\xf5\x25\x01\x90\x04\x2d\x7e\x26\x20\
+\xb6\x44\x66\xfe\xdc\xfa\xfa\xba\x59\x5e\x5e\x7e\x30\xc1\x92\xa7\
+\xb6\x24\x00\x92\xa0\xb5\xa7\x02\x64\xa3\xcc\x7f\x20\xa2\x42\x44\
+\x6e\x4f\xb0\xec\xa9\x2c\x09\x80\x24\x68\xeb\x19\x00\x39\x51\x6d\
+\x29\x22\x92\x60\xe9\x53\x57\x12\x00\x49\xd0\x52\x07\x40\x48\x55\
+\xdf\x27\x22\xdb\x99\x59\x13\x6c\x61\x6a\x4a\x02\x20\x09\x5a\xe9\
+\x02\x88\x2d\x5b\x55\xbf\x3c\x3b\x3b\xbb\xf3\xc0\x81\x03\x0f\x24\
+\xd8\xc6\x54\x94\x04\x40\x12\xb4\xd1\x15\x90\x0d\x48\xbe\x3f\x33\
+\x33\xb3\xd0\xeb\xf5\x6e\x4d\xb0\x95\x89\x2f\x09\x80\x24\x68\x61\
+\x1d\x40\x4e\x2a\xff\xdd\x22\x72\x63\x82\xed\x4c\x74\x49\x00\x24\
+\x41\xfb\x3c\x01\xb1\x9d\xdc\xc2\xcc\xd7\xf5\xfb\xfd\xc7\x13\x6c\
+\x6b\x22\x4b\x02\x20\x09\xda\xd6\x00\x10\xdb\xcd\xdf\x10\xd1\xf5\
+\x22\xf2\xcd\x04\x5b\x9b\xb8\x92\x00\x48\x82\x96\x35\x04\xc4\x76\
+\x74\x94\x88\x76\x88\xc8\x47\x12\x6c\x6f\xa2\x4a\x02\x20\x09\xda\
+\x15\x00\x90\x13\x5d\xdd\x28\x22\xef\x4e\xb0\xc5\x89\x29\x09\x80\
+\x24\x68\x55\x40\x40\x6c\x77\x9f\x9e\x9b\x9b\xbb\x66\xdf\xbe\x7d\
+\x47\x12\x6c\x35\xf9\x92\x00\x48\x4b\x16\xed\xd9\xb3\xe7\xa5\xc7\
+\x8f\x1f\xbf\x88\x99\xed\xcf\x0f\xaa\xea\xf3\x98\xf9\x1c\x22\x7a\
+\x9e\xfd\xbb\xfd\x73\xe3\xe7\xa9\x7f\x23\xa2\xb3\x03\x96\x76\x7f\
+\xa7\xd3\xb9\xb6\xd7\xeb\x7d\x2d\x60\xce\x2c\x52\x01\x90\xc0\x36\
+\xef\xda\xb5\xeb\x39\xa3\xd1\xe8\xa2\xe1\x70\xf8\x14\x0c\x44\x74\
+\xe2\xe7\x05\x81\xa7\xaa\x9b\x6e\x9d\x99\xdf\xd9\xef\xf7\xff\xa8\
+\x6e\x60\xce\xe3\x01\x48\x00\xf7\x8b\xa2\xb8\x8c\x99\xaf\x26\xa2\
+\x9f\x25\xa2\xcb\x02\xa4\x8c\x96\x82\x99\x0f\xf4\xfb\x7d\xdc\x3a\
+\xef\xa8\x30\x00\x71\x14\xea\xe4\x61\x65\x59\x3e\x5f\x55\xaf\x56\
+\xd5\x2b\x99\xf9\x4a\x22\x7a\x99\x47\x9a\xb1\x85\x30\xf3\x6d\xaa\
+\x7a\x8d\x88\xfc\xeb\xd8\x8a\x98\x90\x89\x01\x88\xa3\x51\x4b\x4b\
+\x4b\x2f\x1c\x8d\x46\x6f\x52\x55\xbb\x4a\x58\x28\x9e\xed\x18\x9a\
+\xe4\x30\x66\xfe\xa7\x0d\x48\xbe\x94\x64\x81\x89\x14\x05\x40\x36\
+\x31\xa2\x28\x8a\xcb\x99\xf9\x4d\x44\x64\x7f\x5e\x9c\x88\x6f\x21\
+\xcb\xd8\x29\x22\x37\x85\x4c\x38\x4d\xb9\x00\xc8\x29\xdc\xdc\xb3\
+\x67\xcf\x39\x6b\x6b\x6b\x76\xb5\xb0\x50\x5c\x35\x4d\x86\x9f\xa6\
+\x97\x9f\x16\x91\x3b\x32\xe8\xb3\x76\x8b\x00\xe4\x24\xc9\x8c\x31\
+\x17\x13\xd1\x5b\x37\x56\x8b\x89\xfa\x5c\x51\xdb\xf9\x93\x02\x98\
+\x79\x47\xbf\xdf\x7f\x6f\x93\x1c\xd3\x1a\x0b\x40\xec\x3d\x19\x3b\
+\x76\x9c\xbf\x65\xcb\x96\x79\x55\x5d\x20\xa2\xb3\xa6\xd5\xec\x53\
+\xf5\xa5\xaa\xf7\x8d\x46\xa3\x37\x2c\x2f\x2f\xff\x7b\x4e\x7d\xbb\
+\xf6\x9a\x35\x20\xf6\x3b\x8b\xf5\xf5\xf5\x05\x0b\x06\x33\xbf\xc4\
+\x55\xb4\x69\x19\xa7\xaa\x7f\x72\xee\xb9\xe7\x6e\xeb\x76\xbb\x4f\
+\x4c\x4b\x4f\xa1\xfb\xc8\x16\x10\x63\xcc\xb5\x44\x34\x4f\x44\x3f\
+\x1a\x5a\xd4\x49\xc8\xa7\xaa\xbf\x5d\x55\xd5\xef\x4f\x42\xad\xe3\
+\xac\x31\x3b\x40\x8c\x31\x6f\x24\x22\x7b\x29\x75\xc5\x38\x85\x1f\
+\xe3\xdc\x8f\xaa\xea\xb5\x55\x55\xe1\x09\x44\x07\x13\xb2\x01\x64\
+\xe3\xcb\xbd\xbd\x44\x64\x57\x8e\x5c\x8f\xaf\x13\xd1\x36\x11\xf9\
+\x76\xae\x02\xd4\xed\x3b\x0b\x40\x8a\xa2\xf8\x19\x66\xde\x47\x44\
+\xf6\xb7\x54\xb9\x1e\x1f\x14\x91\x6d\xb9\x36\xef\xdb\xf7\xd4\x03\
+\x62\x8c\x79\x17\x11\xbd\xc7\x57\xa0\x88\x71\xff\xbd\xf1\x60\xd3\
+\x2a\x33\x1f\x55\xd5\xa3\xcc\x7c\x44\x55\x1f\x21\xa2\x47\x4f\xde\
+\x7a\x34\x40\x0d\xbb\x45\x64\x7f\x80\x3c\xd9\xa5\x98\x5a\x40\x16\
+\x16\x16\x5e\xd1\xe9\x74\xec\xaa\x61\x3f\x73\x8c\xf3\x38\xac\xaa\
+\x0f\x74\x3a\x9d\xfb\xed\x9f\xaa\x7a\xff\x59\x67\x9d\xf5\xc0\xfe\
+\xfd\xfb\x1f\x3b\x5d\x51\x01\x9f\x07\x79\x78\xe3\xf1\xdb\xcf\x8f\
+\x53\x80\x49\x9e\x7b\x2a\x01\x31\xc6\xd8\x2f\xfb\xec\xe7\x8d\xf3\
+\xc7\x60\xce\x7f\x30\xf3\x9d\x44\xf4\xf9\xb9\xb9\xb9\x3f\xdb\xbb\
+\x77\xaf\x5d\x11\x6a\x1d\x81\x00\xf9\xcb\x8d\x0d\x1c\x1e\xaa\x35\
+\x39\x06\x3f\x4d\x81\xa9\x03\xa4\x28\x8a\xdf\x63\xe6\xb6\x1f\x33\
+\xbd\x87\x99\xbf\x34\x1c\x0e\xbf\x32\x18\x0c\x6e\x6b\x7a\x8e\x05\
+\x00\xe4\x26\x11\xd9\xd9\xb4\x0e\xc4\x13\x4d\x15\x20\xc6\x18\xbb\
+\x5f\x6d\xd1\x92\xb1\xab\x44\xf4\x29\x66\xbe\xb5\xdf\xef\x7f\x21\
+\xe4\x9c\xbe\x80\xa8\xaa\xdd\x86\x74\xa1\xaa\xaa\x83\x21\xeb\xc9\
+\x39\xd7\xd4\x00\x62\x8c\xb1\x4f\xca\xbd\xa3\x05\x33\xed\xe5\x93\
+\xfd\x0e\xe1\x53\xb1\x9e\xa7\xf0\x01\x44\x55\xbf\xa3\xaa\x3b\x07\
+\x83\xc1\x17\x5b\xd0\x20\x9b\x29\x26\x1e\x90\x6e\xb7\x3b\xb7\xba\
+\xba\x6a\x5f\x07\xf0\xba\xc8\xae\x7d\xb6\xd3\xe9\xac\xf4\x7a\xbd\
+\xcf\x45\x9e\x87\x3c\x00\xf9\xcc\xfa\xfa\xfa\xf6\x83\x07\x0f\x7e\
+\x3f\x76\x6d\xb9\xe5\x9f\x68\x40\xe6\xe7\xe7\x5f\x34\x33\x33\xf3\
+\xb7\x91\x9f\xd3\x68\x0d\x8c\x13\x27\x5f\x4d\x40\xfe\x40\x44\x7e\
+\x23\xb7\x13\xb7\xad\x7e\x27\x16\x90\xc5\xc5\xc5\x1f\x19\x8d\x46\
+\x7f\x1f\x51\xa8\xd6\xc1\xa8\x03\x08\x33\xff\x97\xaa\x1a\x11\xf9\
+\x60\x44\x0d\xb2\x4f\x3d\x91\x80\x14\x45\xf1\x13\xcc\x6c\xb7\xd8\
+\x8c\x71\x1c\xb6\xbf\x22\x16\x91\x95\x18\xc9\x5d\x72\x6e\xb6\x82\
+\xa8\xea\xbd\xcc\x6c\xdf\x34\x75\xb7\x4b\x3e\x8c\xf1\x57\x60\xe2\
+\x00\xd9\xbd\x7b\xf7\x4b\xd6\xd6\xd6\x62\x6d\x36\x70\xd3\x70\x38\
+\xdc\xb7\xbc\xbc\xfc\x3d\x7f\x49\x9b\x47\x9e\x09\x10\x7b\x8b\x7a\
+\xa7\xd3\x99\xef\xf7\xfb\xf6\xdb\x76\x1c\x91\x15\x98\x38\x40\x8a\
+\xa2\xb0\x5f\xc4\x05\xdd\x63\x4a\x55\xef\x9a\x99\x99\xd9\xdb\xeb\
+\xf5\x1a\x7f\x87\x11\xc2\xaf\xd3\x01\xa2\xaa\x37\x54\x55\xf5\xbb\
+\x21\xe6\x40\x0e\x37\x05\x26\x0a\x10\x63\xcc\x3d\x44\x74\xa9\x5b\
+\x6b\xce\xa3\x96\x45\xc4\xde\xfe\x9e\xcc\xf1\x4c\x40\x98\xf9\xdf\
+\x46\xa3\x91\xa9\xaa\xea\xe3\xc9\x14\x99\x49\x21\x13\x03\x88\x31\
+\xe6\x93\x44\xf4\xcb\x81\x7d\x59\x10\x91\xe5\xc0\x39\x1b\xa7\x33\
+\xc6\xfc\x2a\x11\x7d\x78\x23\xd1\x57\x36\xde\x6c\xfb\xad\xc6\x89\
+\x91\xa0\xb6\x02\x13\x01\x88\x31\xe6\x0f\x89\x28\xe4\x6e\x80\xff\
+\x68\xbf\x71\x4e\xf9\x75\xca\x1b\xab\xc8\x83\xc7\x8e\x1d\xbb\x75\
+\x65\x65\xe5\x58\x6d\x67\x11\x10\x44\x81\xe4\x01\x29\xcb\x72\xbb\
+\xaa\x86\xdc\xb7\xe9\x76\x66\x5e\xe8\xf7\xfb\x16\x12\x1c\x50\xe0\
+\x8c\x0a\x24\x0d\x88\x31\xe6\xf5\x44\x14\xec\xd6\x09\xfb\xea\xe4\
+\xaa\xaa\xae\xc7\x39\x01\x05\x5c\x15\x48\x16\x90\x6e\xb7\xfb\xec\
+\x23\x47\x8e\x7c\x91\x99\x5f\xe3\xda\xcc\x26\xe3\xf0\x92\xcb\x40\
+\x42\xe6\x94\x26\x59\x40\x8c\x31\x7d\x22\x32\x21\xcc\x50\xd5\x5f\
+\xab\xaa\xea\xc4\x87\xde\x10\x29\x91\x23\x13\x05\x92\x04\xa4\x28\
+\x8a\x37\x33\xf3\xc7\x42\x78\xa0\xaa\xbf\x50\x55\x55\xf4\x1b\x0c\
+\x43\xd4\x8a\x1c\xe9\x29\x90\x1c\x20\x4b\x4b\x4b\xe7\x0f\x87\x43\
+\xfb\xb9\xe3\xe5\x4d\xe5\x52\xd5\xab\xaa\xaa\xfa\x8b\xa6\x79\x10\
+\x9f\xaf\x02\xc9\x01\x62\x8c\xf9\x63\x22\xfa\x95\xa6\x96\x30\xf3\
+\x62\xbf\xdf\xb7\x97\x69\x38\xa0\x80\xb7\x02\x49\x01\x52\x96\xe5\
+\x4e\x55\x0d\xf1\xc5\x1d\x1e\x39\xf5\x3e\x25\x10\x78\xb2\x02\xc9\
+\x00\xb2\x7b\xf7\xee\x97\xaf\xad\xad\xd9\x8d\xcd\x5e\xd4\xd0\x22\
+\xec\xff\xd4\x50\x40\x84\xff\x9f\x02\xc9\x00\x52\x14\xc5\x4d\xcc\
+\xbc\xbd\xa1\x39\x1f\x15\x91\xb7\x35\xcc\x81\x70\x28\xf0\xbf\x0a\
+\x24\x01\x88\x31\xc6\x3e\x2e\xfb\xe5\x86\xbe\xd8\x7b\x95\xec\x8b\
+\x60\xec\x66\x0a\x38\xa0\x40\x10\x05\x52\x01\xe4\x33\x44\xf4\x8b\
+\x0d\x3b\xfa\x25\x11\xf9\xd3\x86\x39\x10\x0e\x05\x9e\xa6\xc0\xd8\
+\x01\x29\x8a\xe2\xed\xcc\x7c\x4b\x43\x5f\x44\x44\xca\x86\x39\x10\
+\x0e\x05\xfe\x9f\x02\x63\x05\x64\x7e\x7e\xfe\xec\x99\x99\x99\xaf\
+\x35\xdc\x54\x1a\x97\x56\x38\xb1\xa3\x29\x30\x56\x40\xca\xb2\xfc\
+\x4d\x55\xb5\x5b\x84\x36\x39\x70\x69\xd5\x44\x3d\xc4\x9e\x51\x81\
+\xb1\x01\x62\xdf\x24\xfb\xe4\x93\x4f\xda\x2d\x7b\x9a\xec\x9f\x8b\
+\xef\x3b\x70\x82\x47\x55\x60\x6c\x80\x18\x63\xae\x21\xa2\xf7\x37\
+\xe8\xee\x5f\x66\x66\x66\x5e\x7b\xe0\xc0\x81\x7f\x6e\x90\x03\xa1\
+\x50\x20\xcd\x15\xa4\x28\x0a\xbb\xfb\xf8\x95\x0d\xfc\x29\xed\x27\
+\xf3\x06\xf1\x08\x85\x02\x9b\x2a\x30\x96\x15\x24\xc0\xf7\x1e\x77\
+\x8a\x48\xf0\xad\x46\xbb\xdd\xee\x96\xa3\x47\x8f\xfe\x98\xaa\x3e\
+\x77\x53\xe5\x30\x60\x2c\x0a\x0c\x87\xc3\x87\x97\x97\x97\x1f\x6c\
+\x6b\xf2\xb1\x00\x52\x14\xc5\x21\x66\x7e\xa7\x6f\x93\xa1\x6f\x61\
+\x2f\xcb\xf2\x2a\x55\xed\x12\xd1\x25\x44\xb4\xc5\xb7\x2e\xc4\xb5\
+\xa6\x80\xdd\xdc\xef\xcf\x45\xe4\xba\xd8\x33\xb6\x0e\x48\x59\x96\
+\xe7\xa9\xea\xdf\x11\xd1\x0f\x78\x36\x17\xf4\x5e\xab\xb2\x2c\x3f\
+\xa1\xaa\x5b\x3d\x6b\x41\xd8\x98\x15\xe8\x74\x3a\x17\xf7\x7a\xbd\
+\xfb\x62\x95\xd1\x3a\x20\x45\x51\x2c\x31\xb3\xf7\xfb\xf2\x54\xf5\
+\x8a\xaa\xaa\xec\x56\x38\x8d\x8f\xcd\xb6\xf8\x6c\x3c\x01\x12\xb4\
+\xa1\xc0\xb1\xe3\xc7\x8f\xff\xd0\xa1\x43\x87\x8e\xc4\x98\xac\x75\
+\x40\x8c\x31\x7f\x45\x44\x97\x79\x36\x63\x97\xd5\x37\x78\xc6\x3e\
+\x2d\x6c\xd7\xae\x5d\xcf\x59\x5f\x5f\xff\x2e\x11\xbd\x34\x44\x3e\
+\xe4\x18\x9f\x02\xaa\x7a\x6b\x55\x55\xa1\xf7\x4c\x7b\xaa\xa1\x56\
+\x01\x29\x8a\xe2\x32\x66\xb6\x80\x78\x1d\xa3\xd1\xe8\x1d\x83\xc1\
+\xe0\x43\x5e\xc1\xcf\x08\x8a\xbc\x01\x76\x88\x12\x91\xc3\x5d\x81\
+\x47\x44\xe4\x85\xee\xc3\xdd\x47\xb6\x0a\x88\x31\xe6\x06\x22\xb2\
+\x1f\x86\x6b\x1f\xaa\xfa\x60\xa7\xd3\xb9\xa8\xdf\xef\x3f\x5e\x3b\
+\xf8\x14\x01\x65\x59\x6e\x53\xd5\x0f\x84\xc8\x85\x1c\x49\x28\x70\
+\xa1\x88\x7c\x3b\x74\x25\x6d\x03\xd2\xe4\xf2\xea\x46\x11\x09\xf6\
+\x72\x4e\x7c\xfe\x08\x7d\x2a\x8d\x3d\x9f\x7d\xd4\xe1\x8e\xd0\x55\
+\xb4\x06\x48\x80\xcb\xab\x8b\x06\x83\x81\xfd\xed\x57\x90\x03\x80\
+\x04\x91\x31\xa5\x24\x93\x0d\x48\x93\xcb\x2b\x22\xba\x5d\x44\x7e\
+\x2e\xa4\x1b\x00\x24\xa4\x9a\x49\xe4\x9a\x78\x40\x9a\x5c\x5e\x05\
+\xdf\x85\x1d\x80\x24\x71\x52\x87\x2c\x62\x72\x01\x69\x7a\x79\xc5\
+\xcc\xaf\x08\xbd\xd9\x34\x00\x09\x79\x6e\x26\x91\x6b\xa2\x01\xb9\
+\x8e\x99\xdf\xe7\x29\x63\xf0\xcb\x2b\x5b\x07\x00\xf1\x74\x23\xdd\
+\xb0\xc9\x05\xc4\x18\x73\x90\x88\x76\x78\x6a\x1b\xfc\xf2\x0a\x80\
+\x78\x3a\x91\x76\xd8\x44\x03\x72\x17\x11\xbd\xd6\x47\xdf\x18\x97\
+\x57\x00\xc4\xc7\x89\xe4\x63\x26\x13\x90\xad\x5b\xb7\x6e\x39\xef\
+\xbc\xf3\xfe\x93\x88\xce\xf6\x90\xf8\x9b\x22\x62\xef\xb0\x0d\x7e\
+\x34\xbc\xc4\xfa\x9d\xe0\x05\x21\xa1\x55\xe0\x0a\x22\xf2\x7d\x8c\
+\x61\x32\x01\x59\x58\x58\xb8\xa4\xd3\xe9\x7c\xc3\xd3\xff\x0f\x88\
+\xc8\xaf\x7b\xc6\x9e\x31\xac\x21\x20\x51\xcc\x88\xd1\xe7\x24\xe5\
+\x34\xc6\xd8\xbd\xd1\xf2\x02\xa4\x28\x8a\x6d\xcc\xec\x7b\x4b\xc7\
+\x76\x11\x39\x14\xc3\x64\x00\x12\x43\xd5\x66\x39\xb3\x04\xc4\x18\
+\x63\x7f\x7b\xe5\xf5\x60\x8b\xaa\xbe\xa6\xaa\xaa\xbf\x6e\x26\xfb\
+\xa9\xa3\x01\x48\x0c\x55\x9b\xe5\xcc\x12\x90\xb2\x2c\xef\x56\xd5\
+\x9f\xf4\x91\xee\xd8\xb1\x63\x5b\x56\x56\x56\xd6\x7c\x62\x37\x8b\
+\x01\x20\x9b\x29\xd4\xfe\xff\x67\x09\x48\x51\x14\x0f\x31\xf3\x05\
+\x1e\x72\xdf\x2b\x22\x97\x7a\xc4\x39\x85\x00\x10\x27\x99\x5a\x1d\
+\x94\x2b\x20\x8f\x33\xf3\x5c\x5d\xa5\x55\xf5\x63\x55\x55\xbd\xb5\
+\x6e\x9c\xeb\x78\x00\xe2\xaa\x54\x7b\xe3\xb2\x03\xc4\x18\x63\x9f\
+\x3b\xf7\x7a\x14\x52\x55\xf7\x55\x55\xf5\xae\x58\xf6\x00\x90\x58\
+\xca\xfa\xe7\xcd\x11\x90\x57\x11\xd1\x03\x3e\x92\x8d\x46\xa3\xeb\
+\x07\x83\x81\xef\xed\x29\x9b\x4e\x09\x40\x36\x95\xa8\xf5\x01\x39\
+\x02\xf2\x7a\x22\xb2\x2f\xe4\xac\x7d\x8c\x46\xa3\xab\x07\x83\xc1\
+\x17\x6a\x07\x3a\x06\x00\x10\x47\xa1\x5a\x1c\x96\x1d\x20\x65\x59\
+\xbe\x4d\x55\x3f\xe2\xa3\xf1\xfa\xfa\xfa\xab\x0e\x1e\x3c\xf8\x1d\
+\x9f\x58\x97\x18\x00\xe2\xa2\x52\xbb\x63\x72\x04\x64\x49\x55\xbd\
+\xb6\xf8\x59\x5d\x5d\x7d\xd6\xcd\x37\xdf\xfc\x44\x2c\x8b\x00\x48\
+\x2c\x65\xfd\xf3\x66\x07\x88\xef\x49\xc8\xcc\x4f\xf4\xfb\xfd\x67\
+\xf9\x4b\xbd\x79\xa4\x6f\x6d\x1b\x99\x71\xab\xc9\xe6\x12\xd7\x1e\
+\x01\x40\xdc\x25\x7b\x54\x44\x5e\xe0\x3e\xbc\xfe\x48\x00\x52\x5f\
+\xb3\xd8\x11\x00\xc4\x5d\xe1\xef\x89\xc8\x0f\xbb\x0f\xaf\x3f\x12\
+\x80\xd4\xd7\x2c\x76\x04\x00\x71\x57\xf8\xbb\x22\xf2\x4a\xf7\xe1\
+\xf5\x47\x02\x90\xfa\x9a\xc5\x8e\x00\x20\x8e\x0a\x33\xf3\x7d\xfd\
+\x7e\xff\x62\xc7\xe1\x5e\xc3\x00\x88\x97\x6c\x51\x83\x00\x88\xbb\
+\xbc\x77\x8b\xc8\xe5\xee\xc3\xeb\x8f\x04\x20\xf5\x35\x8b\x1d\x01\
+\x40\xdc\x15\xbe\x47\x44\x5e\xed\x3e\xbc\xfe\x48\x00\x52\x5f\xb3\
+\xd8\x11\x00\xc4\x5d\xe1\xc3\x22\xe2\x73\x07\xb0\xf3\x0c\x00\xc4\
+\x59\xaa\xd6\x06\x66\x07\x48\x51\x14\x0b\xcc\x5c\x79\x28\xfc\x98\
+\x88\x44\x7d\x0d\x1a\x00\xf1\x70\x25\x72\x48\x76\x80\x2c\x2e\x2e\
+\xbe\x7d\x34\x1a\xdd\xe2\xa3\xeb\xec\xec\xec\x73\xf7\xef\xdf\xff\
+\x98\x4f\xac\x4b\x0c\x00\x71\x51\xa9\xdd\x31\x39\x02\xf2\xf3\xa3\
+\xd1\xe8\xb3\x9e\x32\x5f\x20\x22\xf6\x5d\x74\x51\x0e\x00\x12\x45\
+\xd6\x46\x49\xb3\x03\xa4\x28\x8a\x9f\x62\xe6\x3b\x7d\x54\x53\xd5\
+\x57\x57\x55\x75\x8f\x4f\xac\x4b\x0c\x00\x71\x51\xa9\xdd\x31\xd9\
+\x01\xb2\xb8\xb8\xf8\xe3\xa3\xd1\xe8\x5b\x3e\x32\xab\xea\x5b\xaa\
+\xaa\xfa\xb8\x4f\xac\x4b\x0c\x00\x71\x51\xa9\xdd\x31\xd9\x01\xb2\
+\x73\xe7\xce\x0b\x66\x67\x67\x1f\xf2\x94\x39\xe8\x0b\x73\x9e\x59\
+\x03\x00\xf1\x74\x25\x62\x58\x76\x80\x94\x65\xf9\x7c\x55\x7d\xc4\
+\x47\xd3\x98\x2f\x66\xb4\xf5\x00\x10\x1f\x57\xe2\xc6\x64\x07\x48\
+\xb7\xdb\x9d\x5d\x5d\x5d\xf5\xfe\x46\x3c\xc6\x2b\xb5\x4e\x58\x0c\
+\x40\xe2\x9e\xec\x3e\xd9\xb3\x03\xc4\x47\xa4\xb6\x62\x00\x48\x5b\
+\x4a\xbb\xcf\x03\x40\xdc\xb5\x8a\x3e\x12\x80\x44\x97\xb8\xf6\x04\
+\x00\xa4\xb6\x64\xf1\x02\x00\x48\x3c\x6d\x7d\x33\x03\x10\x5f\xe5\
+\x22\xc4\x01\x90\x08\xa2\x36\x4c\x09\x40\x1a\x0a\x18\x32\x1c\x80\
+\x84\x54\x33\x4c\x2e\x00\x12\x46\xc7\x20\x59\x00\x48\x10\x19\x83\
+\x26\x01\x20\x41\xe5\x6c\x96\x0c\x80\x34\xd3\x2f\x46\x34\x00\x89\
+\xa1\xaa\x67\x4e\x00\xe2\x29\x5c\xc4\x30\x00\x12\x51\xdc\xba\xa9\
+\x01\x48\x5d\xc5\xe2\x8f\x07\x20\xf1\x35\x76\x9e\x01\x80\x38\x4b\
+\xd5\xda\x40\x00\xd2\x9a\xd4\x9b\x4f\x04\x40\x36\xd7\xa8\xed\x11\
+\x00\xa4\x6d\xc5\xcf\x30\x1f\x00\x49\xc8\x8c\x8d\x52\x00\x48\x42\
+\x9e\x00\x90\x84\xcc\x00\x20\x49\x9a\xd1\x25\xa2\x1b\x3c\x2b\xc3\
+\xe6\xd5\x9e\xc2\x9d\x29\x0c\x2b\x48\x04\x51\x7d\x53\x62\x05\xf1\
+\x55\x2e\x5e\x1c\x00\x89\xa7\x6d\xed\xcc\x00\xa4\xb6\x64\xd1\x03\
+\x00\x48\x74\x89\xdd\x27\x00\x20\xee\x5a\xb5\x35\x12\x80\xb4\xa5\
+\xb4\xc3\x3c\x00\xc4\x41\xa4\x96\x87\x00\x90\x96\x05\xdf\xe4\x03\
+\x21\x3e\xa4\x27\xe4\x87\x2d\x05\x80\x24\x64\x08\x56\x90\x84\xcc\
+\xc0\xaf\x79\x93\x34\x03\x2b\x48\x62\xb6\x60\x05\x49\xc8\x10\xac\
+\x20\x09\x99\x81\x15\x24\x49\x33\xb0\x82\x24\x66\x0b\x56\x90\x84\
+\x0c\xc1\x0a\x92\x90\x19\x58\x41\x92\x34\x03\x2b\x48\x62\xb6\x60\
+\x05\x49\xc8\x10\xac\x20\x09\x99\x81\x15\x24\x49\x33\xb0\x82\x24\
+\x66\x0b\x56\x90\x84\x0c\xc1\x0a\x92\x90\x19\x58\x41\x92\x34\x03\
+\x2b\x48\x62\xb6\x60\x05\x49\xc8\x10\xac\x20\x09\x99\x81\x15\x24\
+\x49\x33\xb0\x82\x24\x66\x0b\x56\x90\x84\x0c\xc1\x0a\x92\x90\x19\
+\x58\x41\x92\x34\x03\x2b\x48\x62\xb6\x60\x05\x49\xc8\x10\xac\x20\
+\x09\x99\x81\x15\x24\x49\x33\xb0\x82\x24\x66\x0b\x56\x90\x84\x0c\
+\xc1\x0a\x92\x90\x19\x58\x41\x92\x34\xa3\xc9\x0a\x72\x47\x7a\x1d\
+\x4d\x4d\x45\xaf\xf3\xec\x24\xca\x56\x4c\xec\x59\xcc\xc4\x87\x35\
+\x5c\x41\x26\xbe\xff\x29\x6c\x00\x80\x84\x34\x15\x80\x84\x54\x33\
+\x89\x5c\x00\x24\xa4\x0d\x00\x24\xa4\x9a\x49\xe4\x02\x20\x21\x6d\
+\x00\x20\x21\xd5\x4c\x22\x17\x00\x09\x69\x03\x00\x09\xa9\x66\x12\
+\xb9\x00\x48\x48\x1b\x00\x48\x48\x35\x93\xc8\x05\x40\x42\xda\x00\
+\x40\x42\xaa\x99\x44\x2e\x00\x12\xd2\x06\x00\x12\x52\xcd\x24\x72\
+\x01\x90\x90\x36\x14\x45\xb1\x95\x99\x3f\x11\x32\x27\x72\x8d\x4f\
+\x81\x4e\xa7\xf3\xb2\x5e\xaf\xf7\x70\xe8\x0a\xb2\xfd\xa2\x70\x69\
+\x69\xe9\xc2\xe1\x70\x78\x7f\x68\x41\x91\x6f\x2c\x0a\x1c\x16\x91\
+\x0b\x62\xcc\x9c\x2d\x20\x56\x4c\x63\xcc\x37\x88\xe8\x92\x18\xc2\
+\x22\x67\x7b\x0a\xa8\xea\x7b\xaa\xaa\xfa\xad\x18\x33\xe6\x0e\xc8\
+\xd5\x44\x74\x5b\x0c\x61\x91\xb3\x35\x05\xee\x16\x91\xcb\x63\xcd\
+\x96\x35\x20\x56\x54\x7c\x16\x89\x75\x6a\xb5\x92\xf7\x5e\x11\xb9\
+\x34\xe6\x4c\xd9\x03\xb2\x01\xc9\x8b\x3b\x9d\xce\x6e\x55\xb5\x97\
+\x5b\xf6\xe7\x9c\x98\xa2\x23\x77\x23\x05\x0e\x13\xd1\x57\x89\xe8\
+\x2e\x11\x59\x69\x94\xc9\x21\x18\x80\x38\x88\x84\x21\xf9\x2a\x00\
+\x40\xf2\xf5\x1e\x9d\x3b\x28\x00\x40\x1c\x44\xc2\x90\x7c\x15\x00\
+\x20\xf9\x7a\x8f\xce\x1d\x14\x00\x20\x0e\x22\x61\x48\xbe\x0a\x00\
+\x90\x7c\xbd\x47\xe7\x0e\x0a\x00\x10\x07\x91\x30\x24\x5f\x05\x00\
+\x48\xbe\xde\xa3\x73\x07\x05\x00\x88\x83\x48\x18\x92\xaf\x02\x00\
+\x24\x5f\xef\xd1\xb9\x83\x02\x00\xc4\x41\x24\x0c\xc9\x57\x01\x00\
+\x92\xaf\xf7\xe8\xdc\x41\x01\x00\xe2\x20\x12\x86\xe4\xab\x00\x00\
+\xc9\xd7\x7b\x74\xee\xa0\x00\x00\x71\x10\x09\x43\xf2\x55\x00\x80\
+\xe4\xeb\x3d\x3a\x77\x50\x00\x80\x38\x88\x84\x21\xf9\x2a\x00\x40\
+\xf2\xf5\x1e\x9d\x3b\x28\x00\x40\x1c\x44\xc2\x90\x7c\x15\x00\x20\
+\xf9\x7a\x8f\xce\x1d\x14\x00\x20\x0e\x22\x61\x48\xbe\x0a\x00\x90\
+\x7c\xbd\x47\xe7\x0e\x0a\x00\x10\x07\x91\x30\x24\x5f\x05\x00\x48\
+\xbe\xde\xa3\x73\x07\x05\x00\x88\x83\x48\x18\x92\xaf\x02\xff\x03\
+\x39\x5c\xc9\x23\xd1\xf6\x50\x87\x00\x00\x00\x00\x49\x45\x4e\x44\
+\xae\x42\x60\x82\
+\x00\x00\x05\x55\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\
+\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
+\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd3\x01\x09\x0a\x09\x03\x5d\x4a\xcd\x3e\x00\x00\x04\xd2\x49\x44\
+\x41\x54\x78\xda\xbd\x94\x6f\x48\x95\x57\x1c\xc7\x3f\xcf\xf3\xdc\
+\xeb\x9d\xde\xeb\xbc\x7a\xef\x75\xa0\xd9\x35\xbd\xb0\x69\xea\xa2\
+\x49\x84\x5b\x28\x1a\x43\x73\x68\x21\xad\x26\xfd\x31\x26\x24\x1b\
+\xad\x16\xc4\x10\xc6\x20\x88\xb9\x37\x0e\xdf\xd5\x5e\x8c\xc5\x20\
+\x46\x6b\x25\x73\xf6\x42\x25\xb6\x4c\x2c\xff\x34\x72\x7a\x85\xea\
+\x8a\x9a\x7f\xe1\xfa\x87\xf2\xa6\xf7\xde\xe7\x79\xce\xb3\x17\x99\
+\x69\xf3\x4a\xbd\xd9\x0f\x0e\xe7\x70\x7e\xf0\xfb\x9c\xef\x39\xbf\
+\xf3\x95\x88\x10\x25\x25\x25\x65\x7e\xbf\x7f\x7f\x28\x14\xca\xd3\
+\x34\x6d\xb3\xae\xeb\x00\x8f\x80\xce\xb8\xb8\xb8\x2b\x3d\x3d\x3d\
+\x4d\xbc\x42\x48\x2f\x6f\x1c\x3e\x7c\x78\x7b\x5f\x5f\xdf\xf7\xb2\
+\x2c\xe7\x17\x15\x15\x91\x93\x93\x83\xc3\xe1\x40\x08\x81\xdf\xef\
+\xa7\xbb\xbb\x9b\x96\x96\x16\x34\x4d\xbb\x99\x9c\x9c\x7c\xba\xab\
+\xab\xeb\xef\x57\x06\x14\x14\x14\x94\x4d\x4d\x4d\x5d\xcd\xcb\xcb\
+\x33\x55\x54\x54\x90\x98\x98\x88\xd9\x6c\x46\x92\x24\x84\x10\xa8\
+\xaa\x4a\x30\x18\x64\x72\x72\x92\x4b\x97\x2e\x71\xfb\xf6\x6d\xcd\
+\x6e\xb7\x57\x0c\x0d\x0d\x45\x54\xa3\x3c\x5f\x94\x97\x97\x6f\x7f\
+\xf8\xf0\x61\xdb\xbe\x7d\xfb\x4c\x47\x8f\x1e\xc5\xe9\x74\x12\x1b\
+\x1b\x4b\x42\x42\x02\x4e\xa7\x13\x97\xcb\x85\xc3\xe1\xc0\x66\xb3\
+\x61\xb3\xd9\xc8\xce\xce\x66\x69\x69\x49\xbe\x77\xef\xde\xfe\x4d\
+\x9b\x36\x5d\x9f\x9b\x9b\x9b\xda\x10\x10\x0e\x87\x7f\xc9\xcb\xcb\
+\x4b\xab\xae\xae\xc6\x66\xb3\x61\xb7\xdb\x71\xb9\x5c\xd8\x6c\x36\
+\x2c\x16\x0b\x8a\xa2\xa0\x28\x0a\x16\x8b\x85\xd8\xd8\x58\xac\x56\
+\x2b\xe9\xe9\xe9\x3c\x78\xf0\x40\xf6\xf9\x7c\xef\x84\x42\xa1\x8b\
+\xeb\x01\x64\x80\x6d\xdb\xb6\x95\x09\x21\xf2\x8f\x1c\x39\x42\x4c\
+\x4c\x0c\x76\xbb\x1d\xa7\xd3\x49\x54\x54\x14\x8a\xa2\x20\xcb\x32\
+\xb2\x2c\xaf\x40\x64\x59\xc6\x6a\xb5\x92\x96\x96\x46\x4d\x4d\x0d\
+\x86\x61\xe4\x27\x24\x24\x94\x45\x54\x60\x18\xc6\xd7\x85\x85\x85\
+\x39\x19\x19\x19\x68\x9a\x86\x10\x82\xc7\x8f\x1f\xa3\x28\x0a\x31\
+\x31\x31\x48\xd2\x8b\xa7\x32\x0c\x03\x00\x21\x04\xba\xae\xe3\x70\
+\x38\x18\x1b\x1b\xc3\xeb\xf5\xea\x9a\xa6\x35\xae\xa7\xa0\x22\x1c\
+\x0e\x1f\x2a\x2d\x2d\xc5\xe3\xf1\x90\x9d\x9d\x4d\x7a\x7a\x3a\x6d\
+\xdd\xf7\x39\x74\xa6\x81\x89\x89\x89\x95\xa2\x86\x61\xb0\xf7\xb3\
+\x73\xfc\x78\xa5\xf5\x45\x97\x48\x12\xbb\x77\xef\x46\xd7\xf5\xbc\
+\x48\x57\xf4\x9b\xa2\x28\xa4\xa4\xa4\x60\xb1\x58\xb8\x3f\x3c\xc1\
+\x07\x9f\x7c\xc5\xc5\x6b\x37\x78\x3b\x2d\x19\xa7\xd3\x89\xcf\xe7\
+\x43\x08\x81\x61\x18\xec\xc9\xcf\xe5\xa7\x6b\x37\x28\xaa\xfa\x86\
+\xfb\xc3\xcf\xe0\x1e\x8f\x07\x60\x73\xa4\x36\x35\xe2\xe3\xe3\x69\
+\x6e\x6e\xe6\xfc\xd5\x0e\xbc\xbe\x31\x5e\x27\x72\x33\xb7\xb0\xbf\
+\x30\x9b\xd2\xd2\x52\x4d\x55\x55\xf3\xcb\x79\x13\x40\x52\x52\x12\
+\xc3\xc3\xc3\x9c\xfb\xe2\x00\x23\x93\x33\x7c\xf9\xdd\xb3\x86\xf8\
+\xa8\x20\x97\xda\x9a\x8f\x51\x55\x95\x40\x20\x80\xdf\xef\xe7\xcf\
+\xbb\x3e\x7e\xfe\xfd\x2f\x00\xbe\x3d\x79\x80\x24\xe7\x9b\xb4\xb7\
+\xb7\xa3\xeb\xfa\xa3\x88\x5d\xb4\x63\xc7\x0e\x5a\x5b\x5b\x09\x06\
+\x83\xa4\x26\x39\x69\x3e\x5f\xcb\x89\xca\x62\x7a\xfa\x7d\x84\x42\
+\x21\x34\x4d\x43\x96\x65\xec\x76\x3b\xbf\xdf\xe8\xe6\xc3\xf7\xdf\
+\xe5\xd7\xfa\x93\xa4\xbc\x15\x4f\x28\x14\xa2\xa5\xa5\x05\x21\x44\
+\x67\xc4\x2b\x6a\x6a\x6a\xe2\xe0\xc1\x83\x5c\xbe\x7c\x19\x8f\xc7\
+\x83\xc9\xa4\x10\x0e\xab\xcc\xcf\xcf\xaf\x74\x90\x24\x49\x68\x9a\
+\x86\xae\xeb\x58\xad\x56\xa2\xa3\xa3\x09\x06\x83\x0c\x0e\x0e\x72\
+\xec\xd8\x31\x84\x10\xe5\x40\xd3\xba\x0a\xb2\xb2\xb6\x92\x9b\x9b\
+\x4b\x5d\x5d\x1d\x81\xc0\x02\x8b\x8b\x8b\xe8\xba\x4e\x42\x7c\x3c\
+\x76\xbb\x1d\x9b\xcd\x46\x74\x74\x34\x26\x93\x09\x45\x91\x99\x9e\
+\x9e\x66\x61\x61\x81\x27\x4f\x9e\x50\x5f\x5f\x8f\x10\xe2\xe6\x7a\
+\xc5\x57\x14\xa8\xaa\xca\xad\x5b\xb7\xd8\xb3\x67\x0f\xc5\xc5\xc5\
+\x9c\x3a\x75\x0a\xb3\xd9\x8c\xa2\xc8\x18\xc6\xb3\xd3\xeb\xba\x8e\
+\xa6\x69\x84\x42\x41\x66\x66\x66\x89\x8b\x8b\xa3\xa1\xa1\x81\xb6\
+\xb6\x36\x0d\xd8\x0b\x5c\xdf\x10\xd0\xdf\xdf\x8f\x77\x60\x80\x4f\
+\xab\xab\xc9\xcc\xcc\xe4\xf8\xf1\xe3\xa4\xa5\x6d\x41\x96\x65\x84\
+\x30\x10\x42\x20\x84\xe0\xe9\xd3\x00\x7d\x7d\xff\xd0\xd8\xd8\xc8\
+\xe0\xe0\xa0\x06\x2c\x2e\xd7\x39\x03\xfc\x10\x01\x10\x66\x6e\x6e\
+\x8e\x91\x91\x51\xe6\xe7\xe7\x39\x7b\xf6\x2c\xdd\xdd\xdd\xec\xda\
+\xb5\x8b\x9d\x3b\x77\xe2\x76\xbb\x01\x18\x1a\xf2\xd1\xd1\xd1\xc1\
+\x9d\x3b\x5d\x00\x37\x81\xd3\xc0\x55\x20\x7e\xd9\x15\x66\x80\x13\
+\x40\xf3\x5a\x40\x38\xcc\xec\xec\x2c\x48\x60\x08\x83\xb1\xf1\x31\
+\xbc\xde\x41\xfe\x68\x6a\xa2\xa7\xb7\x97\xc9\xc9\x49\x00\x5c\x2e\
+\x17\xd3\xd3\xd3\x00\xe5\xcb\xc5\x26\x00\x52\x53\x53\x07\x00\x69\
+\x64\x64\x44\x06\x54\xa0\x04\xe8\x5c\x01\xe8\xba\x8e\xdf\xef\x47\
+\x08\xb1\x46\xde\xf8\xf8\xf8\x1a\x0f\x1a\x1a\x1a\xa2\xb2\xb2\x12\
+\x20\x15\x18\x5d\x4e\xb9\x81\xbb\x35\x35\x35\x71\xbd\xbd\xbd\x5a\
+\x6f\x6f\xaf\xba\xfc\xbf\x32\x80\x51\xd3\xea\x02\x92\x24\xad\xf8\
+\x0e\x40\x72\x72\xf2\x1a\x83\x0b\x04\x02\xcf\x53\xa3\xab\xce\x31\
+\x0a\xbc\x77\xe1\xc2\x85\x81\xda\xda\xda\x98\xa8\xa8\x28\x73\x67\
+\x67\xe7\x12\xe0\x05\xb6\xca\xab\x01\xcf\xfd\x66\xf5\xfa\xe5\xbd\
+\x0d\x22\xab\xae\xae\x4e\xcd\xc9\xc9\x31\xdc\x6e\xf7\x1b\x6b\xde\
+\xa0\xbd\xbd\x1d\x55\x55\xff\x63\xc9\xab\xd5\x00\x4c\x4c\x4c\x50\
+\x55\x55\xe5\x05\xb2\xd6\x01\xb8\x97\xe7\x3b\x40\x22\x50\x08\x8c\
+\x00\x7c\x0e\x18\xaf\x31\xaa\x37\x50\xe1\x5e\x35\xfe\x9f\xf8\x17\
+\xc1\x08\x40\x3b\x9d\x7d\xa8\x8b\x00\x00\x00\x00\x49\x45\x4e\x44\
+\xae\x42\x60\x82\
+\x00\x00\x06\x33\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x10\x00\x00\
+\x0b\x10\x01\xad\x23\xbd\x75\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd3\x09\x09\x14\x30\x03\x75\x06\x85\x3f\x00\x00\x05\xc0\x49\x44\
+\x41\x54\x78\xda\xc5\x97\x4d\x6c\x1b\xd7\x11\xc7\x7f\xbb\x5c\x7e\
+\x73\xad\x95\xe4\xc8\x72\x9c\x2a\x52\x80\x26\x46\x9a\xda\x54\x84\
+\xd4\x69\x9b\x16\x16\x20\x07\x69\x51\x24\x05\x9a\x22\x40\x0e\x59\
+\x03\x86\x7b\xe8\xc5\xe8\xb9\x28\x24\xf4\xd2\xab\xdd\x1e\x7b\xf1\
+\xa2\x97\xa2\x48\x51\xb4\x75\x5a\xc4\x68\x2b\xa1\x89\x03\x3b\x85\
+\x62\x26\x76\x52\x35\x82\x2d\xda\xaa\xf5\x41\x52\x21\x25\x92\xbb\
+\xfc\x58\xbe\xd7\xc3\x92\x14\x29\x92\x26\x9b\x4b\x1e\x30\xc4\xf2\
+\xbd\x99\xf7\xff\xef\xbc\xd9\x99\x79\x8a\x94\x92\x2f\x72\x68\x00\
+\xa6\x69\x0e\x6c\xb0\xfa\x98\x35\x09\x4c\x4a\xc9\xe9\xc6\x9c\x90\
+\x20\x04\x4b\x02\x92\xcf\x6c\x99\xc9\x41\xf7\xb2\x2c\xcb\x23\xd0\
+\x6f\xdc\x99\xb0\x0c\xe0\x2c\x60\x22\x88\xb7\x3a\xad\x0e\x8e\x80\
+\x79\x80\xdb\xe3\x56\x42\x48\x2c\x29\xb8\x7c\x32\x6d\xe6\x06\xf2\
+\x40\x1f\xf0\x05\xe0\x02\x60\xa8\x0a\x44\xc3\x10\xf4\xc3\x89\x47\
+\xf3\x44\xc3\x41\x00\xa4\x28\xf3\xde\x5d\x1d\xbb\x04\xc5\x32\xf1\
+\x72\x95\x38\x30\x7f\xf3\xb0\x75\x69\x3a\x63\x2e\x7c\x2e\x02\x6b\
+\x8f\x5b\x86\x90\x2c\x02\x71\x4d\x85\x58\x18\xbe\x7b\xb2\x4a\x7c\
+\x4a\x65\xfa\x09\x1f\xa0\xb7\x68\x07\xf8\x09\xb0\x9e\x11\x7c\xb8\
+\x26\x78\xe7\xd6\x2e\xd7\xd6\x46\x0d\xe1\x32\xbf\x3c\x6a\xbd\x02\
+\xcc\xce\xec\x74\xf7\x86\xd6\x03\x3c\x5e\x07\x37\xf4\x10\xcc\x3e\
+\x5d\xe1\xfb\xa7\x34\x46\x74\x3f\x00\x99\x3d\xc1\xda\x86\x4d\xc5\
+\x15\x08\xa9\x34\xed\x9e\x7d\x52\x67\xf6\x84\xca\xec\x89\x51\xde\
+\xfe\xc0\xe5\x8f\x37\x4a\x7c\xb2\x15\x8b\x0b\xc1\xda\x0d\xc3\x9a\
+\x3d\x95\x33\x13\x7d\x09\xb4\xbc\xb9\xf1\xc4\x61\x87\x1f\x7c\xdd\
+\x4f\x7c\x2a\x00\xc0\xc6\x8e\xcb\xd6\x8e\x03\xc0\x8b\x33\x7a\x07\
+\xf1\xab\xcb\x79\x00\x9e\x9a\xd0\x79\xe1\x69\x8d\x2f\x3f\x1a\xe1\
+\xcd\xa5\x6d\xfe\x74\xfb\x88\x01\x2c\x5e\x1f\xb2\xa6\x9e\xdf\x6d\
+\xf7\x44\x07\x81\x06\xb8\x11\x85\x73\x73\x41\x8e\x0c\xab\x38\x55\
+\x48\x65\x2b\x14\x8b\x0e\xdf\xf9\xda\x50\xcf\xf3\x6c\x90\xba\xba\
+\x9c\x67\xe2\xa8\xce\xa1\xa8\xca\xeb\x67\xc6\xa8\xc9\x14\x57\x6e\
+\x8f\x19\xc0\x22\x30\xdd\x6a\xa3\x76\x09\xb8\xb8\x1e\x82\xd7\x9e\
+\x77\x89\x86\x54\x0a\x0e\x64\xf3\xa2\x2f\xf8\x41\x22\xf7\x37\xf3\
+\x14\x1c\x70\x6b\x0a\x67\x9e\x3b\xcc\xf1\x71\x1b\x21\x89\xbf\x77\
+\xc8\x5a\xe8\x4a\xa0\xfe\xa9\x5d\x50\x15\x78\x6e\xaa\xc2\xe4\xb8\
+\x86\x53\x05\xa7\x0a\x77\x1e\x14\x3b\xc0\x37\xb3\x70\x6d\x05\xde\
+\x59\x81\xeb\xab\x90\x2f\xb5\x93\xf8\xd6\x57\xf5\xa6\x7d\x34\xac\
+\xf2\xf2\xa9\x00\x7e\x1f\x08\xc9\x85\x77\x75\xcb\xe8\xe6\x81\xb3\
+\x80\x71\x28\x02\x27\xa6\x34\xf2\x0e\x4d\x19\x1f\x6e\x73\x14\x4e\
+\x05\x6e\x26\x61\xb7\xbe\xfe\x59\x01\xfe\x9e\xa8\x50\x2c\xb9\x4d\
+\x9d\x70\x00\xca\x95\xfd\x3d\x8e\x8e\x68\x3c\xfb\xa5\x3c\x80\x21\
+\x24\x67\xbb\x11\x30\x55\x05\xa6\x27\xaa\x80\x8a\x5d\xa2\x29\x41\
+\x7f\x3b\x81\x8f\xd7\x69\x5b\xb7\x4b\x9e\x07\xd6\xb7\x9d\x36\x3d\
+\xbf\xe6\xad\xad\x6d\xd5\xf8\xd7\xaa\x8b\x1e\x0b\xa0\xa9\x20\x04\
+\x66\x5b\x10\xae\x3e\x66\x4d\x22\x88\x87\x43\x30\x14\x53\x29\x96\
+\xdb\xdd\x69\x87\x02\xcd\xe7\xb2\x0b\x9f\x6e\x42\xd5\x6d\xd7\xd9\
+\xdd\x49\x73\xfc\xf4\xb1\xb6\xb9\x7f\x7c\x58\x25\x99\x56\xb0\x5d\
+\xad\x09\x37\x12\x83\x8d\x2c\xf1\xa5\x88\x35\x09\x24\x1b\x2b\x93\
+\x52\x7a\x6e\x0b\xf8\x3a\x09\xdc\x49\xf9\xf8\xcb\x4d\x18\x89\xc1\
+\xea\x46\xe7\x79\xbb\xf6\x36\xaf\x7c\xd3\x68\x9b\xfb\xf7\x7f\x05\
+\x9f\x6c\xfa\x3b\x02\x34\x16\x06\xb2\x20\x25\xfb\x04\x1a\x85\x25\
+\xa4\xd5\x28\xd7\x7c\x94\x6b\x9d\x91\xfd\xf1\x7a\x8f\x54\x5a\xd9\
+\xe6\x47\xdf\x1b\x25\x1a\xda\xff\xa2\xed\xb2\xe4\xd7\x57\xab\x40\
+\xb0\x43\x3f\xe8\x07\x29\x41\x78\x98\x4b\x5a\x6b\x51\x31\x22\x35\
+\x8a\x65\xdf\xc0\x95\x31\x50\xbe\xc7\x8f\x5f\x3d\xd6\x01\xfe\x8b\
+\xdf\x57\x58\xcf\x05\xbb\xda\x84\x03\x1e\x96\xd7\x06\x28\x5e\x0c\
+\x88\x7a\x75\x13\x42\xa1\xe0\x0c\x06\x2e\x4b\x29\x7e\xfe\x46\x77\
+\xf0\x95\xad\xe0\xc3\x6d\x5b\xca\xa9\x47\x40\x78\x7f\xb2\xb6\x86\
+\xcf\xdf\x1f\x5c\x41\xf2\xd2\x71\xd1\x06\x9e\xde\x93\xfc\xea\x4a\
+\x95\x4f\xb7\x83\xa8\x4a\x6f\xdb\x83\xf1\xd5\xd8\x61\x49\xc0\x7c\
+\x55\x28\x94\xab\x0f\x67\xee\xd5\x7e\x85\xa7\x26\x22\x6d\x6b\xbf\
+\x7c\xab\xc6\xdd\x4c\x00\xad\xcf\x09\x96\xab\x80\x14\x00\x4b\xe0\
+\xab\x7b\x00\x92\x8d\x04\xe3\xd6\xc0\xa7\xca\x16\x50\xa5\x79\x44\
+\xa0\x34\x7f\x15\xf6\x75\xee\x67\x24\x6b\x69\x0d\x65\x80\xa3\xcb\
+\x15\x00\xcf\x36\xd9\x4c\x44\xcf\x6c\x99\x49\x21\x49\xec\xd9\xa0\
+\x2a\x1e\x68\x43\xc0\x9b\x3b\x28\x99\xc2\xfe\xab\x2e\xdf\x55\xba\
+\xea\x74\x93\xd4\x1e\x00\x89\xb9\xca\xb9\x64\x5b\x35\x94\x02\xab\
+\x2c\x88\xdb\x25\x17\x23\xd6\xbf\x53\xfb\xdd\xfb\x31\x36\xf2\x50\
+\x2c\x79\x35\x21\x30\x40\x73\xb7\x99\x75\x71\xbd\x04\x66\x75\x2b\
+\xc7\x97\x81\xf9\xf5\x1d\xd5\x38\x32\xdc\x7f\x33\xbb\xf0\x19\x46\
+\xc0\x4f\x48\xba\x8c\x0f\xe9\x64\xed\xfe\x0c\xfe\xb3\xa1\x00\x32\
+\x57\xc7\x6a\xaf\x05\x27\xd3\x66\x4e\x48\x2e\x15\x2b\x2a\xd9\xdd\
+\x02\xe1\x00\x3d\xc5\x27\xf2\xfc\xec\x87\x7e\x5e\x9c\xd1\x79\xf9\
+\x1b\xc3\xfc\xf4\x55\x0d\x23\xca\x43\x6d\xb6\x32\x79\x9c\xb2\x04\
+\xc4\xa5\xb9\xca\xb9\x5c\xd7\x7e\xa0\xde\x40\x26\x3e\x7a\x10\xa3\
+\x54\xcc\xe2\xd7\xe8\x2e\x8a\xcb\xe3\x47\xf5\xb6\xe4\x32\x39\x46\
+\x4f\xfd\xbd\xdc\x0e\xd7\xef\x84\x01\x91\x98\xab\x9c\x5f\xe8\xd9\
+\x90\xd4\xc7\xac\x10\xe4\xfe\xb6\x32\x4c\xa5\x90\x26\xe8\xa7\x43\
+\xc2\x91\x30\x4e\xe5\xc0\x91\x94\xe8\xaa\x6b\xef\xa5\x78\xeb\xd6\
+\x10\x20\x72\xc0\xec\x41\xb0\x0e\x02\x33\x3b\x66\x4e\x48\x66\xa5\
+\x24\x77\xe5\xf6\x23\x64\x52\xa9\x0e\x77\xea\xb1\x10\xbf\xbd\xe6\
+\x55\xc5\x7b\x69\xf8\xc3\xfb\x50\x72\x3b\xdd\xbe\xb9\xb9\xc9\x9b\
+\xcb\x23\x4d\xf0\xb9\xca\xf9\xdc\x40\x5d\xf1\xa9\x9c\x99\xb8\x3e\
+\x64\x4d\x09\xc9\xe2\xdb\x2b\x63\xf1\xc3\xf7\x6d\xce\x7c\xa5\xc0\
+\xe8\xe8\x58\x53\x67\xcf\x86\xbf\x7e\xb0\x6f\xd3\x92\x14\xc9\xa4\
+\x1e\xf0\xe7\x8f\x86\x48\x17\x1e\x01\x44\xa2\x17\xf8\x43\xef\x05\
+\xf5\xee\x75\xfa\x5d\xdd\x5a\x48\x15\x23\x17\x7e\x73\x23\x62\x1c\
+\xd3\xf3\xcc\x4c\xec\x32\x36\x1c\x24\x14\x0c\x11\x8d\x79\x71\x50\
+\x2c\xe6\x71\x1c\x87\xad\x4c\x89\x1b\xf7\x0c\x36\xf6\x8e\x00\xe4\
+\xbc\x80\x3b\xff\xf9\x2e\x26\x8d\xf1\x42\xde\x5c\xf8\x67\xcc\xba\
+\x08\x9c\x5d\xdf\xd5\xcd\xf5\x5b\x7a\xbc\x5e\x4e\x5b\x0a\x4b\x0c\
+\x64\xa4\x91\xe1\x12\xde\x77\x2e\x2e\xf7\x7a\xeb\xff\x8b\x00\xc0\
+\xb7\x0b\x66\x0e\xb8\x08\x5c\x5c\x0c\x7b\x97\x53\xe0\x74\xb3\xaa\
+\x35\x73\x3b\xc9\x46\x86\x1b\x74\x28\x5f\xf4\xf5\xfc\x7f\x92\x93\
+\xb2\xba\x6d\x79\x43\x86\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
+\x60\x82\
+\x00\x00\x07\x7b\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
+\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\
+\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
+\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\
+\x67\x9b\xee\x3c\x1a\x00\x00\x07\x0d\x49\x44\x41\x54\x58\x85\xc5\
+\x97\x49\x6c\x1c\x65\x16\xc7\x7f\xef\xab\xea\xcd\x6e\xdb\xe9\xb6\
+\xe3\x71\x1c\xdb\x31\x31\x6d\x07\x05\xc5\x09\x4b\x34\xc9\x44\x80\
+\x66\xc4\xa2\x44\x42\x39\x70\xe4\x80\x10\x20\x84\x10\x52\x0e\x13\
+\x0e\x20\x61\x09\x44\x16\x89\x1c\xb8\xc0\x81\x2b\x42\x82\x03\x17\
+\x92\x81\x64\x32\x08\x65\x63\x11\x0e\x26\x13\x5b\x4a\x3c\xce\x82\
+\xdb\x59\xec\x76\xa7\xbb\xdd\x5d\xd5\xdd\xb5\xcc\xa1\xaa\xab\x17\
+\x5b\x73\x8b\xe6\x93\x4a\x5f\x2d\xaf\xde\xff\x5f\xff\xf7\xbe\xf7\
+\xbd\x12\xd7\x75\x39\x28\xb2\x17\x98\x00\xc6\x81\x30\xf7\x77\x54\
+\x80\x29\x60\xe2\xa8\xeb\x9e\x90\xbf\xc3\xde\xae\x58\xec\xf8\xdf\
+\x1e\x7a\x88\x1d\x43\x43\x44\x74\xfd\xbe\xa2\x97\x2d\x8b\x8b\x37\
+\x6f\x72\x7a\x66\x86\x9c\x61\xec\xd3\x81\x89\xbf\x6e\xd9\xc2\xf8\
+\xc6\x8d\x5c\x99\x9f\x67\x3e\x93\xa1\x6a\x59\x6b\xbe\x2c\x22\x68\
+\x22\x28\xa5\xd0\xfc\x43\x29\x85\x26\x12\x9c\x2b\xa5\x50\xbe\x4d\
+\xeb\xac\x2b\x45\x22\x1e\xe7\xd1\xa1\x21\x5c\xd7\xe5\xeb\x8b\x17\
+\x27\x74\x60\x7c\x7c\x70\x90\xab\xe9\x34\xf9\xe1\x61\x52\xaf\xbe\
+\x8a\x16\x89\xac\x85\x8e\x00\x4a\x04\x44\x50\xfe\x3d\x25\x82\xf8\
+\xcf\xa4\xe5\x9c\xc6\xfb\x00\xd5\x2a\xa5\x33\x67\xc8\xcd\xce\x32\
+\x3e\x38\xc8\xd7\x17\x2f\x8e\xeb\x40\x38\xac\x69\xa4\x33\x19\x52\
+\xaf\xbd\x86\x1e\x8f\xaf\xc6\x6e\x70\x12\xea\xea\x22\xdc\xdd\x4d\
+\x28\x91\x40\xeb\xea\xc2\xb2\x6d\xcc\x4c\x06\x29\x14\xd0\x56\x56\
+\x70\x56\x56\x02\xb5\xa4\x75\x0e\x85\x88\x3f\xf1\x04\xf9\xcb\x97\
+\x59\xe7\xe1\x84\x75\x00\xd7\x75\xa9\xda\x36\xae\x6d\x63\xf9\x0e\
+\x5a\xc1\xe3\x23\x23\x24\x77\xed\x42\x8f\xc5\x56\x11\xec\xec\xef\
+\xaf\xc7\xb8\x58\xe4\xc6\xe9\xd3\x24\x0b\x05\x10\x09\xd4\x0b\x66\
+\xc7\x01\x11\x5c\xd7\x05\x20\x20\x00\x60\x15\x8b\x88\xa6\x35\xc7\
+\x3c\x16\xa3\xf7\xa9\xa7\xe8\x18\x1d\x5d\x33\x2f\x5a\x47\xa4\xbd\
+\x9d\xd1\xe7\x9f\xe7\xc6\xe4\x24\x32\x39\x49\xbb\x52\x75\x70\x11\
+\xc4\x71\x50\xad\x04\x1c\xff\xc2\x2e\x16\xc1\x27\x20\x40\x7c\x78\
+\x98\xfe\xfd\xfb\x09\x35\x84\xc5\xb1\x6d\x96\xe6\xe7\xb9\x33\x37\
+\xc7\xdd\xb9\x39\xda\x22\x11\x12\x43\x43\x74\x0f\x0f\xd3\x3d\x30\
+\x80\xf2\x01\x37\x3d\xf2\x08\xc5\xcd\x9b\xb9\xf6\xd5\x57\xf4\x57\
+\x2a\x01\x01\xd7\x71\x50\x4a\x05\x98\x1e\x01\xc7\x01\xa0\x9a\xcf\
+\x23\xa1\x10\x4a\x04\x3d\x1e\x5f\x05\x7e\xed\xb7\xdf\xf8\xd7\xa7\
+\x9f\xb2\x29\x14\x62\x7d\x3c\xce\x48\x2c\x86\x52\x0a\xb9\x71\x83\
+\xdc\xf7\xdf\x73\x2b\x12\xa1\x6f\xff\x7e\x7a\xb7\x6c\x01\xa0\x7d\
+\xdd\x3a\x1e\x78\xe1\x05\xa6\x3e\xfa\x88\x2d\x89\x84\xa7\x80\xeb\
+\xa2\x44\x02\x4c\x05\x60\xfb\x17\xb7\x4e\x9e\xa4\xba\xbc\x8c\x5d\
+\x2a\xd1\xbf\x6f\x5f\x00\x5e\x35\x4d\xfe\xf1\xf1\xc7\x9c\x3b\x72\
+\x84\x3f\xb7\xb7\xf3\x40\x7b\x3b\x1d\x80\x6b\x9a\xb8\x86\x81\x6b\
+\x18\x44\x2c\x8b\x64\xa9\x84\xf5\xc5\x17\x5c\xff\xf2\x4b\xaa\xe5\
+\xb2\x47\x22\x91\x60\xfd\x73\xcf\x91\xcb\x66\xc1\x34\x11\xd3\x44\
+\x44\x02\x4c\xd5\x14\x82\x5c\x8e\xa5\x1f\x7e\xa0\x63\x64\x84\x75\
+\xdb\xb7\x07\x5f\x7e\xea\x93\x4f\xa8\x5e\xb8\xc0\x63\x3d\x3d\x84\
+\x2c\xcb\x03\x35\x4d\x22\x03\x03\x44\x06\x07\x71\x0d\xc3\x73\xee\
+\xcf\x91\xc9\x49\xf2\xdf\x7c\x13\xbc\x9f\xda\xb3\x87\x74\x77\x37\
+\xf8\x64\x95\x48\x80\x19\x28\xa0\xc0\x93\xb3\x5a\x65\xe8\xc5\x17\
+\xeb\xb2\xff\xfa\x2b\x37\x4f\x9c\x60\x24\x16\xf3\x80\x4b\x25\x1c\
+\xc3\x20\xf9\xec\xb3\xf4\xbf\xf1\x06\x7d\xaf\xbf\x4e\x61\xd7\x2e\
+\x8c\x5c\x0e\xd7\x34\xa1\x54\x02\xc3\xc0\x3a\x73\x86\xc2\xcc\x4c\
+\xe0\xe7\xd1\x97\x5f\xe6\xf2\xfc\xbc\xa7\x40\x83\xea\xaa\x96\x03\
+\xb5\x8a\xd6\x91\x4a\x11\x4e\x26\x83\x84\x3b\xfe\xc1\x07\xec\xe8\
+\xec\xf4\xd8\x97\x4a\x01\x89\xf8\xce\x9d\x81\xf3\x4d\x4f\x3e\xc9\
+\xd5\x3b\x77\xa0\x54\xf2\x48\x18\x06\x18\x06\xe5\xcf\x3f\xc7\xb5\
+\x6d\x00\x62\x5d\x5d\x64\xc3\x61\x9c\x4c\x06\x59\x95\x03\xae\x1b\
+\x94\xd3\x75\xdb\xb6\x05\x8e\xef\x5e\xb9\x42\x78\x66\x86\x68\x0b\
+\x38\xa6\x89\x34\x54\xcb\x70\x2c\x46\xae\x50\x80\x1a\xb8\x69\x82\
+\x69\xe2\xcc\xcf\x53\x4d\xa7\x03\xbb\xe8\x86\x0d\x54\xd3\x69\x94\
+\x08\x76\x63\x08\x1c\xc7\x09\x6a\x79\x57\x03\x81\xf4\xd4\x14\x5d\
+\x8e\x43\x35\x9d\xc6\x5a\x5a\xf2\xe4\xad\x81\x34\x0e\xd7\x85\x4a\
+\x05\xca\x65\xa4\x5c\x0e\x08\x88\x69\xe2\xcc\xcd\x05\x66\xbd\xa9\
+\x14\xf7\x2c\x6b\x0d\x05\x6a\x21\x50\x8a\x8e\x87\x1f\x0e\x5e\x58\
+\xf8\xfd\x77\x92\xa1\x90\xb7\xb6\x0d\x03\x7b\x79\x19\xf7\xde\x3d\
+\xdc\x62\xd1\x03\x6d\x1c\x95\x4a\xf0\xf5\x52\x2a\x41\x3e\x8f\x9b\
+\xcd\x62\x5d\xba\x14\x98\xfc\x69\xeb\x56\x32\xd5\x2a\x4a\xa9\x20\
+\x07\x74\x00\xdb\xb6\xd1\x94\x42\x6a\x55\xcb\x1f\x22\x42\x5c\xd7\
+\x83\xdd\x4c\x03\xc4\xb6\xbd\xaf\x6c\x19\x52\x2e\x23\x86\x51\xdf\
+\x90\xfc\x8d\xaa\xc5\x21\x2b\xb6\xed\x2d\x43\x3f\x37\x14\x80\xe5\
+\x87\x40\x53\x0a\x63\x7a\x3a\xb0\xdf\x38\x3e\x4e\xb1\x41\x9d\xc6\
+\xed\xb6\x75\x28\x1f\x50\x35\x80\x8b\x08\xa1\xb1\xb1\xc0\x66\xf1\
+\xf2\x65\x12\xe1\x30\x4a\x04\xab\x29\x04\xb6\x8d\xf8\xab\xa0\xd8\
+\x40\xa0\x7f\xdb\x36\x0a\xb5\xfc\x68\xd9\xdb\x57\x29\xb0\x06\xb8\
+\x12\x41\x4f\xa5\xea\x04\xa6\xa7\x59\x1f\x89\xac\x56\xc0\x76\x9c\
+\xa0\xd1\x30\x1a\xd6\xee\xfa\x54\x0a\xab\xaf\x6f\xcd\x06\xa3\x55\
+\x83\x46\xd0\xda\xa1\xf5\xf5\xa1\x86\x86\x02\x9b\xcc\xcc\x4c\x9d\
+\x40\x6b\x12\x8a\x2f\x6f\xe5\xfa\x75\x2a\xd9\xac\xf7\x50\xd3\x78\
+\xfc\xfd\xf7\x29\xf8\x3b\x58\x23\x89\x46\xa2\x77\x2e\x5d\x22\xa2\
+\x69\xcd\x21\x50\x8a\xb6\x03\x07\x82\xdd\xd5\xc8\x66\x51\xe9\x34\
+\xba\x52\xab\x0b\x91\x65\xdb\x75\xe7\x22\xa4\x8f\x1e\x0d\x9c\x0f\
+\xef\xde\x8d\xb1\x6f\x5f\xd0\xfd\xd4\xec\x4a\x9f\x7d\xc6\xad\x1f\
+\x7f\xe4\xe6\xf9\xf3\x9c\x3f\x76\x8c\x91\xb6\xb6\x26\xf0\xf0\xde\
+\xbd\xe8\xe3\xe3\x81\x9f\x73\x87\x0e\x31\x16\x8f\x7b\xca\x89\x60\
+\xf9\x21\xd0\x6b\x0a\xa8\x5a\x5f\x27\x42\xe9\xf4\x69\x16\x4f\x9d\
+\x62\xfd\xd3\x4f\x03\xb0\xfb\xed\xb7\xf9\xb7\xae\x93\x38\x79\x32\
+\x20\x61\xcf\xce\x22\xef\xbc\x43\xbe\x5a\x65\x4f\x28\x44\x5b\x34\
+\xda\x04\x1e\x79\xe5\x95\x00\x7c\xf6\xdb\x6f\x29\x9f\x3d\xcb\x58\
+\x6f\x6f\xd0\xa6\xad\x0a\x41\x6b\xa2\xe5\x8e\x1d\xc3\xcc\x64\x00\
+\x08\xc5\x62\xec\x78\xf7\x5d\xc2\x87\x0f\x53\xee\xe9\xa9\xc7\x59\
+\x29\xfa\xa2\x51\xda\x74\xdd\x6b\x5e\x36\x6c\xa0\xfd\xc3\x0f\x89\
+\xbd\xf9\x26\x2a\x1a\x05\xa0\xb4\xb8\xc8\xcf\x47\x8e\xf0\x97\x64\
+\xd2\x03\x6f\x21\xa0\xd7\x42\x10\x0d\x87\x9b\x62\xec\xe6\x72\xdc\
+\x7d\xef\x3d\x7a\x26\x26\x68\xeb\xe9\x01\xa0\x7f\xf7\x6e\x9c\x9d\
+\x3b\x29\x5e\xbb\x46\xe5\xca\x15\xe4\xea\x55\x22\x9a\x86\x36\x3a\
+\x8a\x4a\xa5\x08\x6d\xda\xd4\xd4\x51\x95\x16\x17\xf9\xe7\xc1\x83\
+\x6c\xd7\x34\xda\x43\xa1\x00\xdc\x6d\x0d\x41\x53\x0e\x34\xcc\xf6\
+\xd4\x14\x0b\x2f\xbd\x44\xe4\xad\xb7\x18\x7c\xe6\x19\x4f\x32\x5d\
+\xa7\x23\x95\x82\x86\xe5\xb5\xd6\xf8\xcf\x77\xdf\x31\x79\xf4\x28\
+\x8f\xe9\x3a\x03\x1d\x1d\xf5\xce\xd8\x6f\x4a\x56\x13\x80\xb5\x7b\
+\xf9\x95\x15\xd4\xe1\xc3\xcc\x9e\x3d\xcb\xc6\x03\x07\x88\x25\x12\
+\xff\x13\xd8\xc8\x66\x39\x77\xe8\x10\xea\xc2\x05\xf6\x26\x12\x84\
+\x35\xad\x19\xdc\xb7\x6b\x26\xe0\x38\xb8\xb0\xe6\x7a\xd7\x94\x42\
+\x44\xe8\x38\x7f\x9e\xc5\x73\xe7\xb8\xdd\xdb\x8b\x1a\x1d\x25\x36\
+\x36\x46\xf7\xd6\xad\x80\x57\xe1\x32\xd3\xd3\x54\x66\x67\x89\x2e\
+\x2c\x30\x12\x8b\x31\xd0\xdd\xdd\x14\xf3\xc6\x7f\x84\xaa\x6d\x07\
+\x95\x50\x07\x2a\xa6\x65\x85\x8b\xa6\x49\xb4\xb3\x73\x4d\xf0\x5a\
+\xd2\xb5\x29\xc5\x83\xcb\xcb\xc8\x4f\x3f\xa1\x7e\xf9\x05\xd3\x71\
+\xc8\x59\x16\x09\x4d\x63\x73\x38\xec\xad\xf1\x64\xb2\x0e\xb8\x06\
+\xb8\x88\x90\x5e\x5a\xc2\xf4\xfe\xbe\x2a\x3a\x30\x75\xbb\x50\x78\
+\x5c\xc3\xeb\x84\x93\x9d\x9d\x28\xd7\x45\xfc\xd6\xb9\x26\x59\x6d\
+\xef\x73\xfc\xbf\x22\xc7\x75\x89\x2a\x45\x9b\x5f\xd9\xc4\xbf\x27\
+\xae\x5b\x07\xac\x9d\xfb\xfe\x6c\xdb\x66\x7e\x71\x91\xab\x0b\x0b\
+\xdc\x2e\x14\x00\xa6\x74\x60\xe2\x66\x3e\x7f\xdc\x05\xca\xb6\xcd\
+\x82\x5f\x05\xef\xd7\xb0\x5d\x97\xc5\x52\x89\x3f\xf2\x79\x80\x09\
+\xf9\x7f\xff\x9e\xff\x17\xc5\xd6\x3d\x9a\xb0\xf3\x6b\xe8\x00\x00\
+\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x04\xa3\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
+\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
+\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
+\x79\x71\xc9\x65\x3c\x00\x00\x04\x35\x49\x44\x41\x54\x58\xc3\xe5\
+\x97\xcd\x8f\x54\x45\x14\xc5\x7f\xb7\xea\xd6\x7b\xaf\xdb\x6e\xc7\
+\xf9\x40\x9d\x89\x46\x4d\x34\x99\x44\x8d\x1a\x48\x98\xc4\x8c\x1f\
+\x1b\xfe\x02\x4c\x5c\xf1\x07\x18\x16\x2e\x4d\x5c\x6b\x58\xc3\x8e\
+\xc4\x8d\x1b\x17\xce\x82\x68\x74\x41\x5c\x18\x0d\xe2\xc4\xc6\x00\
+\x3d\x60\x50\x51\x19\x60\x02\xa2\x0e\x0c\x83\xd3\xfd\x5e\xf7\x94\
+\x8b\xaa\xee\xf9\x60\xe6\x0d\x84\x51\x16\x56\x52\xa9\xce\x7b\xb7\
+\xeb\x9e\x3a\xf7\xd4\xa9\x7a\xea\xbd\xe7\x7e\x36\xe5\x3e\xb7\x3e\
+\x80\x5d\xbb\x76\xbd\x03\xec\xfd\x8f\xf2\x4e\x35\x1a\x8d\x03\xeb\
+\x19\xd8\xbb\xef\xbd\xa3\x3b\x1f\x1f\x76\x00\x9c\x3c\x3a\xcf\xcc\
+\x97\x37\x58\x9c\xef\xdc\x53\xa6\xda\xa0\xf2\xdc\x6b\x03\xbc\xb8\
+\x67\x10\x80\x8b\x7f\x16\x7c\xf8\xee\x1e\x80\xdb\x00\x70\xfc\xec\
+\x1c\xdf\x3f\x30\x04\x78\x2e\xfd\xb8\xc0\xfe\xb7\xce\x6f\xcb\x72\
+\x0f\x1d\x79\x9a\x0b\x23\x96\xd3\x9f\x1f\x64\xfc\xd5\x7d\x9b\x6b\
+\x40\x45\xb0\x16\x40\x78\x70\x2c\x23\xcb\xb2\x6d\x01\x30\x30\x96\
+\x61\x8d\x50\x1b\x7c\x14\x23\x25\x22\x14\x2b\xd8\x18\x91\xd5\x95\
+\x73\xe7\xce\x83\x2a\xb8\x04\xd2\x14\xb2\x0c\xd2\x2c\x8c\x49\x0a\
+\x49\x12\xde\x77\x3a\x90\xe7\x90\xb7\xa1\xd5\x82\x76\x2b\x8e\x6d\
+\x28\x72\xb2\xfa\x38\xd6\x0a\xe3\xaf\xbc\x49\x6b\xf1\xfa\xe6\x00\
+\xac\x15\xac\x15\x04\xb0\x46\xd8\xbd\x7b\xe7\x16\x6b\xeb\x86\xae\
+\x80\x5a\xa8\x56\x81\xea\x6d\x51\x8d\xaf\x04\xb5\x82\xf7\xa0\xa6\
+\x84\x01\x67\x05\x35\x82\x08\xa8\x0a\x95\x2c\xc3\x23\x20\x1e\x08\
+\xc0\xf0\x1e\x2f\x02\xde\x23\x12\x26\x15\x7c\x88\x23\xc4\x21\x1e\
+\x3c\x21\x5e\x40\x4d\x58\x18\x40\xd7\x4a\x89\x06\xac\xa0\xda\x63\
+\x00\x9a\x33\xbf\x05\x8a\x53\x07\x69\x02\x95\x04\xb2\x34\xf6\x04\
+\x12\x07\x4e\xa1\xe8\x40\x5e\x40\x2b\x8f\xbd\x05\x4b\x39\xb4\x73\
+\xc8\x0b\x54\x87\x71\x3d\x00\x2a\xe5\x25\x70\x31\x40\xd5\x30\x39\
+\xf9\xd2\xd6\x0a\xf3\x3e\xd0\xaf\x16\xaa\x1b\x8b\xf6\xd8\x27\x61\
+\x61\xbd\x1c\x25\x25\x20\x00\xf0\x81\x8d\x34\x4d\xa3\x3a\xc3\xb3\
+\x98\x11\x89\x6c\x07\xda\x63\x09\x56\x98\x5f\x29\x46\xfc\x61\xcd\
+\x72\x7f\x61\x1d\x2d\xd1\x80\x3a\x09\x54\x49\x18\x4f\x34\x2f\xe0\
+\x9d\x85\xc4\x21\x89\xc3\x67\x09\x92\x69\xd8\x11\x89\xe2\x13\x87\
+\x58\x8b\xef\x76\x91\xbc\x80\xbc\x03\xed\x02\xdf\x6a\x23\xed\x02\
+\xf2\x02\x9f\x77\x50\x1d\x45\xd5\x20\x78\x3a\xeb\x54\x78\x9b\x06\
+\x9c\x33\x78\x0f\x03\x8f\x24\xbc\xfe\xf2\xf3\x77\x68\xe8\x36\x68\
+\xa4\xbe\xf1\xeb\xc6\xfc\xdf\xb1\x04\x52\x5e\x82\x44\x4d\x5f\x84\
+\x8f\x0d\xa5\x38\xe7\xb6\xc5\x88\x9e\x18\x4b\xb9\x76\xb3\x03\x08\
+\x9d\x52\x11\xaa\x90\xb8\x50\xef\x5a\xc5\x30\x7d\xb1\xcb\x40\xc5\
+\xb0\x0e\xf4\x26\xad\x57\xf9\x55\x2e\xe1\xe1\xc6\xd2\x32\xf5\xcc\
+\x70\x7d\xc9\x84\x2d\xe9\x4a\x19\x10\x9c\x1a\xc0\x73\xe5\x66\x97\
+\x2b\x37\xbb\xac\x51\x57\x3f\xd7\xaa\x64\x7e\xc5\x27\xa2\x29\xac\
+\x05\x15\xc3\x9c\x0b\xb5\x77\xa6\x6c\x17\xa8\xc1\xa9\x20\xc8\x1a\
+\x35\xaf\x9b\x35\x1a\x8f\x59\x31\x9e\xfe\x7b\xe9\xef\x14\x00\xf1\
+\x82\xef\x9b\x58\x30\x2b\x57\x56\x02\x55\x21\xd1\x90\xfc\xe7\x53\
+\xdf\xf2\xeb\x99\x13\x2c\x2d\xde\xb8\xa7\xfa\x57\x6a\x03\x3c\xf5\
+\xec\x4e\x9e\x79\x61\x02\x0f\xa8\x33\x5b\x31\x10\x03\x7c\x87\xf7\
+\xf7\xbf\xc1\xc2\xc2\x02\xb7\x6e\xdd\xa2\x28\x0a\x44\x04\x6b\x2d\
+\xd6\x5a\x54\x15\x55\xc5\x39\x87\xaa\x62\xad\xc5\x98\xf0\xdf\xe5\
+\xe5\x65\xf2\x3c\xef\xf7\x23\xcd\xf9\xb8\xf2\x2d\x18\x70\x56\x50\
+\x17\x18\xdc\x31\x3a\xb6\x72\x4f\x38\x7e\x9c\xe9\xe9\x69\x8c\x31\
+\x78\xef\x99\x98\x98\x60\x72\x72\xf2\x8e\x59\xd8\x31\x3a\xd6\xdf\
+\x86\xae\xd4\x09\x55\x70\x36\xac\xa2\x56\xaf\xf7\x6b\x39\x33\x33\
+\xc3\xd0\xd0\x10\xd6\x5a\xbc\xf7\x34\x9b\xcd\xbb\x02\x50\xab\xd7\
+\x70\xd1\x88\xb4\xd4\x88\x14\x9c\x0b\x27\x5c\xa0\x2a\x00\xa8\x56\
+\xab\x64\x59\xd6\xa7\xb8\x37\xde\x69\x73\x1a\xa9\x17\x41\x4b\xad\
+\x38\x1e\xc7\xbd\x23\xb4\xd7\x8c\x31\x88\x44\xdf\x8f\x3a\xb8\xab\
+\x9b\xaf\x35\xa8\x0d\xf3\xf6\x18\x2e\x3d\x8e\x83\x29\x6d\xe3\xd5\
+\xdb\x12\xa9\xf7\xe5\x56\x6c\xad\xf4\x91\x0e\x8e\x0c\xc3\xf2\xef\
+\xdb\x02\xe0\xa1\x91\x61\xd4\xc2\xb5\x2b\x97\x59\x9c\xbf\xbe\x05\
+\x03\x36\xf8\xc0\x60\xad\x02\x0b\xdb\xc3\xc0\x50\xad\xc2\xec\xc5\
+\x4b\x9c\xfd\xee\x1b\xce\x9f\x9c\x9e\x03\xa6\x36\x04\x60\x24\x5e\
+\x4a\x05\x12\x0b\xed\x91\x27\xa9\x3d\x0c\x6f\x1f\x38\xc8\x66\xc7\
+\x81\x27\x3a\xf1\x2a\xe7\x35\x1e\x32\x81\x14\x28\xba\x70\xf9\xea\
+\x55\xce\x34\x8e\xd1\xfc\xfa\x8b\xb9\xd9\x1f\x4e\x1d\x02\x0e\x6f\
+\x08\xe0\xb3\x8f\x3e\xe0\xa7\xd3\x27\x57\x99\xe9\xda\xa3\x86\x55\
+\xe6\xbb\x1e\x04\x1b\x3c\x5f\x1d\x6f\x7c\x77\xee\x8f\xd9\x5f\x0e\
+\x01\x87\x1b\x8d\xc6\x5f\x1b\x01\x98\x9a\xfe\xf4\xe3\x7f\xf5\x73\
+\x6c\x7d\xf2\x35\x00\xe2\xb7\xda\x81\xff\xdd\xd7\xf1\x3f\x4d\xf0\
+\x4b\xb9\xe8\x46\x89\xaf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
+\x60\x82\
+\x00\x00\x02\x86\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
+\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd2\x02\x01\x0b\x00\x03\xc4\x02\x9d\xda\x00\x00\x02\x03\x49\x44\
+\x41\x54\x78\xda\xbd\x95\xbf\xab\xda\x50\x14\xc7\x3f\x79\x7d\x2d\
+\x0a\xa5\x94\x82\x98\x74\x2b\x05\x41\xfa\x63\x08\x8a\xbc\xff\xc1\
+\xff\xc1\x31\x05\x41\xb2\xb9\x14\xb4\x0e\xdd\x8a\x6e\x25\x20\xd4\
+\xd1\xcd\x41\xe7\x2e\x19\x44\x04\x47\xfd\x0b\x1e\xa8\x9b\xa0\x49\
+\x90\x36\xb7\x4b\xae\xcd\x8b\xfa\x12\x2d\xf4\xc0\x81\x5c\xc8\x3d\
+\x9f\x73\xee\xf7\xdc\x73\xe1\x3f\xd9\x17\x40\x5c\xe8\x9f\x81\xa7\
+\x80\x92\x04\x20\x46\xa3\x91\xf0\x3c\x2f\xd6\x1d\xc7\x11\xb6\x6d\
+\x4b\xc8\xab\x00\x72\xd6\x24\x5d\x78\x9e\xc7\x66\xb3\x49\x5c\x72\
+\x36\x9b\x05\x78\x0b\xac\x81\x5d\x00\x3c\xb2\xdb\xf0\x62\x30\x18\
+\xb0\x5e\xaf\x01\x48\xa5\x52\x54\x2a\x15\xa6\xd3\x29\xb3\xd9\x0c\
+\xc3\x30\xb0\x2c\x0b\x5d\xd7\x29\x16\x8b\x72\x4b\x2a\x88\xa1\x9c\
+\x03\x5c\x54\x81\x10\x7f\x63\xa8\xaa\x0a\xf0\x11\xb8\x07\x36\x80\
+\x7f\x6a\xcb\x03\x40\xb5\x5a\xc5\x75\x5d\xda\xed\x36\xad\x56\x8b\
+\x6c\x36\x8b\xae\xeb\x14\x0a\x05\x19\xf0\x12\x33\x80\x1f\x84\x00\
+\x62\xb5\x5a\x9d\x74\x40\x0c\x87\x43\x91\xd4\xe6\xf3\xf9\xa1\x09\
+\xce\x6a\x20\xcf\x5c\x1e\x4b\xb9\x5c\x4e\x9c\x7a\x3e\x9f\x97\x9f\
+\x2f\x63\x35\x10\x42\xa0\xaa\x2a\x42\x08\xfa\xfd\x3e\xcb\xe5\x12\
+\x80\x74\x3a\x8d\x61\x18\x8c\xc7\x63\x26\x93\x09\xa6\x69\xd2\xe9\
+\x74\x28\x95\x4a\xdc\xdd\xdd\xa1\x28\x0a\xc0\xbb\x93\x1a\x00\x07\
+\x1d\x32\x99\x0c\xcd\x66\xf3\x81\xc0\x49\x2c\x00\x7c\x88\xad\xc0\
+\xf7\x7d\x34\x4d\x43\x08\x41\xad\x56\xc3\x71\x1c\xba\xdd\x2e\xf5\
+\x7a\x1d\x4d\xd3\x0e\x19\x87\x2b\x39\x0b\xe8\xf5\x7a\x27\x35\x68\
+\x34\x1a\xd7\x56\xf0\xfe\x00\xd8\xed\x76\x6c\xb7\xdb\xc4\x1a\xc8\
+\x33\x07\x0e\x55\x58\x96\x85\xeb\xba\x98\xa6\x79\x0c\xb0\x6d\x9b\
+\x5c\x2e\xf7\x28\xe0\x5f\x2a\xf8\x04\x7c\x8f\xbb\xc5\x52\x03\x20\
+\x56\x87\x28\xe0\x16\x78\x0e\xbc\x00\x9e\x05\x23\x44\xfa\x6b\xe0\
+\xe7\xb5\x5d\x24\x2f\xda\x6f\x60\x0b\xec\x81\x9b\xd0\x8c\x52\x80\
+\x95\xdc\x74\x89\x06\xd1\x59\x14\x1d\x7e\xe1\xb5\x02\xfc\xba\x56\
+\x83\x9b\xe8\x51\x47\xdc\x97\x53\x72\xb1\x58\x24\x0e\x1e\xfa\xd7\
+\x4f\x94\x0c\xf0\xf5\x8a\x27\xf5\x1b\xf0\x46\x49\x98\xd4\x63\x4d\
+\xa0\x44\xdf\x96\xc0\xf7\xc0\x26\x29\x40\x01\x9e\x04\xc1\xa3\x4d\
+\x70\x2a\x86\x08\x1a\x67\xaf\x5c\xf8\x88\xc4\x35\xc5\x91\x9e\x7f\
+\x00\xb7\xae\x9e\x43\x7d\xb2\x82\x67\x00\x00\x00\x00\x49\x45\x4e\
+\x44\xae\x42\x60\x82\
+\x00\x00\x05\xb5\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\
+\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
+\x01\x00\x9a\x9c\x18\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\
+\x8e\x7c\xfb\x51\x93\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\
+\x25\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\
+\x30\x00\x00\xea\x60\x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\
+\x46\x00\x00\x05\x2b\x49\x44\x41\x54\x78\xda\x62\xf8\xff\xff\x3f\
+\x03\x2d\x30\x40\x00\x96\xc4\x20\x05\x80\x18\x84\x81\x01\xad\x2c\
+\x78\x2e\xd5\x47\x2c\x1e\xbc\x95\xfe\xc2\xff\xff\x65\xdb\xb2\x03\
+\x09\x64\x72\xcb\xdd\x61\x66\xe8\xbd\x23\x33\x31\xe7\xc4\xa1\xaa\
+\xf0\x23\xcc\xfc\xaa\xea\x22\xa2\xd8\xfb\x39\x32\x22\xee\x39\xc6\
+\xc0\xf6\x68\xad\x41\x44\x6e\x3e\x01\x84\x62\xb0\x88\x88\x08\x83\
+\x81\x81\x01\x83\x91\x91\x11\x48\x3d\x9f\xb5\xb5\x75\x47\x67\x67\
+\xe7\xcb\x0d\x1b\x36\xfc\x3f\x70\xe0\xc0\xff\x43\x87\x0e\xfd\x5f\
+\xb3\x66\xcd\x7f\xa0\xd8\xff\x98\x98\x98\x67\xf2\xf2\xf2\x25\x20\
+\x85\xc2\xc2\xc2\x0c\x4c\x4c\x4c\x28\x06\x03\x04\x10\xdc\x60\x90\
+\xad\x42\x42\x42\x0c\x1a\x1a\x1a\x0c\x40\x0d\xd1\xdb\xb6\x6d\xfb\
+\xff\xfb\xf7\xef\xff\xd8\xc0\xfb\xf7\xef\xff\xef\xde\xbd\xfb\x7f\
+\x73\x73\xf3\xff\xc8\xc8\xc8\xff\x9c\x9c\x9c\x66\x20\x0b\x80\xbe\
+\x82\x1b\x0c\x10\x40\x60\x83\xc1\xc1\x20\x26\xc6\x00\xf4\x2a\x88\
+\x1d\x7c\xea\xd4\xa9\xff\xb8\xc0\xaf\x5f\xbf\xfe\x7f\xfb\xf6\xed\
+\xff\x9b\x37\x6f\xfe\xaf\x5c\xb9\xf2\x7f\x4d\x4d\xcd\xff\xb0\xb0\
+\xb0\xff\x40\x73\x79\x41\xae\x86\x19\x0c\x10\x40\x70\x83\x05\x05\
+\x05\x41\x96\x2a\xce\x99\x33\xe7\xff\x9f\x3f\x7f\x70\x1a\x0c\x33\
+\xf4\xd5\xab\x57\xff\x2f\x5c\xb8\xf0\xbf\xad\xad\xed\x7f\x49\x49\
+\xc9\x7f\x19\x19\x99\x4e\x58\x84\x30\x32\x32\x32\x00\x04\x10\xd8\
+\x60\x11\x60\x10\x70\x00\x6d\x89\x8d\x8b\x3b\x7a\xfb\xce\x9d\xff\
+\xf8\xc0\xe7\x2f\x5f\xfe\xbf\x78\xf1\xe2\xff\xd3\xa7\x4f\xff\x1f\
+\x3f\x7e\xfc\xff\xa4\x49\x93\xc0\x61\xee\xe3\xe3\xf3\x0d\x68\xa6\
+\x00\xcc\x60\x80\x00\x02\x1b\x2c\x0c\x72\x2d\x23\xa3\xec\xcc\x25\
+\x4b\xfe\xff\x05\x0a\xfc\xc1\x63\xf0\xc7\x9f\x3f\xff\x3f\x7b\xfe\
+\xfc\xff\xdd\xbb\x77\xff\xcf\x9a\x35\xeb\xff\xbc\x79\xf3\xfe\x4f\
+\x9f\x3e\xfd\x7f\x5e\x5e\xde\x7f\x31\x31\xb1\x6a\x98\xab\x01\x02\
+\x08\x92\xe6\x80\x40\xcd\xca\xaa\xfc\xc4\xb5\x6b\xff\x3f\x00\x23\
+\xe5\x4c\x61\xe1\xff\xf3\xd9\xd9\xff\xaf\xe6\xe6\xfe\xbf\x03\xd4\
+\x70\x0f\x88\xef\x26\x25\xfd\x3f\xe6\xef\xff\xff\xdc\x9e\x3d\xff\
+\x5f\x00\x23\x6f\xe9\xd2\xa5\xff\x67\xcc\x98\xf1\x7f\xc1\x82\x05\
+\xff\x67\xcf\x9e\xfd\xbf\xae\xae\xee\xbf\xa5\xa5\xe5\x35\x98\xb9\
+\x00\x01\x04\x37\x38\x3b\x21\xe1\xe6\x2b\x1b\x9b\xff\x1f\x95\x94\
+\xfe\xbf\x96\x93\xfb\xff\x16\x88\x5f\x88\x89\xfd\xbf\xc2\xc0\xf0\
+\x7f\x13\x10\xf7\x03\x71\x85\xac\xec\xff\xc5\xcb\x97\xff\x5f\xb6\
+\x7a\x35\xd8\xa5\x0b\x81\x86\x82\xe2\x04\xe4\xf2\xd6\xd6\xd6\xff\
+\xe1\xe1\xe1\x20\xc3\x64\x40\x91\x08\x10\x40\x10\x83\xb9\xb9\x59\
+\x4f\x02\x0d\x3a\xc3\xc4\xf4\xff\x84\xa0\xe0\xff\xeb\xca\xca\xff\
+\x8f\x00\x0d\x59\xa6\xa0\xf0\xbf\xc7\xd8\xf8\x7f\x63\x5c\xdc\xff\
+\xce\x89\x13\xff\xcf\x06\xa6\xe7\xc5\xab\x56\xfd\x5f\x01\x4c\x0d\
+\xcb\x81\x16\xcc\x9f\x3f\x1f\xec\xea\xa9\x53\xa7\xfe\xef\xea\xea\
+\xfa\x9f\x0b\xf4\x21\x2f\x2f\x6f\x06\x28\xf9\x02\x04\x10\xd8\x60\
+\x71\x06\x06\x8d\x7b\xbc\xbc\xff\x73\x81\x36\xe6\x66\x64\xfc\xcf\
+\x0c\x09\xf9\x9f\x01\x0c\x8a\xd2\xf6\xf6\xff\x5d\xc0\x70\x9f\xb7\
+\x75\xeb\xff\x95\x5b\xb6\xfc\x5f\xbf\x69\xd3\xff\xf5\x40\xc3\x57\
+\xac\x58\xf1\x7f\xf1\xe2\xc5\xe0\x20\x98\x32\x65\xca\xff\x09\x13\
+\x26\x80\x23\xb0\xb2\xb2\xf2\xbf\x8a\x8a\xca\x4a\x50\x08\x00\x04\
+\x10\xd8\x60\x59\x06\x06\xed\xf3\xdc\xdc\xff\x73\x81\x12\xb3\x81\
+\x19\x63\xf9\xce\x9d\xff\x37\x00\xc3\x7a\x1d\x90\xbd\x6e\xe3\xc6\
+\xff\x1b\x81\x06\xae\x5b\xbf\x1e\x9c\xeb\x40\x2e\x5d\x02\xb4\x0c\
+\xe4\x5a\x50\xa4\x81\x0c\xed\xee\xee\xfe\xdf\x0e\x74\x44\x6d\x6d\
+\xed\x7f\x60\x71\x70\x15\x64\x2e\x40\x00\x81\x0d\x66\x03\x66\x9a\
+\xbd\xc0\x30\x14\xe3\xe3\x9b\x27\xac\xa4\xd4\xea\xed\xeb\xfb\xb0\
+\xa7\xa7\xe7\xff\xda\xb5\x6b\xff\x83\xb2\x33\x28\x23\x2c\x5b\xb6\
+\x0c\x6c\xe0\xc2\x85\x0b\xc1\xe1\x0a\x32\x74\x22\x30\x78\x40\x86\
+\x82\xc2\xb7\xa1\xa1\x01\x6c\xb0\xaf\xaf\xef\x2f\x50\x71\x00\x10\
+\x40\x60\x83\xb9\x81\xac\x76\x06\x86\x63\xf6\x0c\x0c\x1d\xca\x90\
+\x72\x02\x04\x02\xec\xec\xec\xae\x80\x32\x00\x28\x05\x2c\x5a\xb4\
+\xe8\xff\xdc\xb9\x73\xc1\x11\x05\x0a\x53\x98\x4b\x41\xf2\xf5\xf5\
+\xf5\xff\xab\xab\xab\xff\x57\x55\x55\xfd\x0f\x08\x08\x00\x45\xa0\
+\x24\x40\x00\x81\x0d\x36\x07\xb2\x8c\x81\x06\x05\x30\x30\x6c\x86\
+\x99\xca\x0b\xc9\x89\x0c\xc2\x22\x22\x4d\xb9\xc0\xe4\x36\x79\xf2\
+\x64\xb0\x2b\x61\x86\x82\x22\x0b\xe6\x52\x98\xa1\x15\x15\x15\xff\
+\x6d\x6c\x6c\x1e\x00\xb5\x71\x02\x04\x10\x3c\xb9\x21\x03\x61\x20\
+\x36\x80\xb2\x15\x95\x95\x41\x45\xa2\x7b\x54\x54\x14\x38\x82\xfa\
+\xfb\xfb\xe1\xde\x07\xb9\x14\x54\x56\x80\x0c\x2d\x2b\x2b\xfb\x9f\
+\x04\x4c\xeb\xc0\xf2\xa6\x16\xa4\x0f\x20\x80\xc0\x06\xfb\x00\x19\
+\x7e\x0c\x0c\xbe\xbd\x40\x17\x27\x32\x30\x4c\x04\x72\x45\x34\xa0\
+\x06\x6b\x6a\x6b\x33\x08\x08\x80\x73\xaa\xaa\xb7\xb7\xf7\x27\x90\
+\xeb\x1a\x1b\x1b\xe1\x86\x82\x5c\x59\x54\x54\xf4\x3f\x28\x28\xe8\
+\x3f\x3f\x3f\x7f\x1f\x50\x1d\x3b\x48\x31\x40\x00\x81\x0d\xb6\x64\
+\x60\x70\xff\x9f\x93\xf3\x1f\xa8\xf2\xff\x7f\x5d\xdd\xff\xa7\x80\
+\x11\x09\x4c\x29\xbe\x30\x1f\x88\x03\x0b\x29\x0e\x0e\x70\xd9\xce\
+\x20\x2b\x2b\x3b\x21\x30\x30\xf0\x7f\x5a\x5a\xda\xff\xac\xac\xac\
+\xff\xa9\xa9\xa9\xff\x4d\x4d\x4d\x9f\x00\xa5\xfc\x91\x7d\x0d\x10\
+\x40\x60\x83\xe7\x30\x30\xf4\x01\xa3\xf4\x3f\x30\xba\xff\x03\x53\
+\xfc\x7f\x60\x0c\xfc\xcf\x67\x60\x78\x88\xac\x8e\x8f\x8f\x0f\x25\
+\xb4\x80\x65\x70\x34\xb0\xfc\x6e\x66\x67\x67\xcf\x06\xf2\xe5\xd1\
+\x83\x13\x20\x80\xc0\x06\xcb\x31\x30\xd8\xce\x05\xba\xf2\x88\xb0\
+\xf0\xff\x43\xc0\x5c\xd7\x28\x24\xf4\x93\x87\x81\x21\x1d\x59\x1d\
+\x28\x38\xc0\xa5\x16\x14\x80\x2a\x05\x69\x69\x69\x58\x30\x61\x00\
+\x80\x00\x02\x1b\x6c\x80\xe0\x6a\x03\xb1\x1e\x3c\x9c\xd0\x0c\x06\
+\x97\x01\x50\x00\xaa\xc6\x80\xc1\x02\xb6\x00\x1b\x00\x08\x30\x00\
+\x69\x36\x5f\x67\xcd\x5c\xcb\xcb\x00\x00\x00\x00\x49\x45\x4e\x44\
+\xae\x42\x60\x82\
+\x00\x00\x0e\x35\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
+\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
+\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
+\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\
+\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\
+\x00\x07\x74\x49\x4d\x45\x07\xe1\x0a\x0d\x0f\x2b\x18\xc7\x56\x80\
+\xf9\x00\x00\x0d\x39\x49\x44\x41\x54\x68\xde\xc5\x5a\x7b\x78\x54\
+\xd5\xb5\xff\xad\xbd\xcf\xcc\x99\xcc\xe4\x01\x12\x20\x0f\x0a\x21\
+\x10\x5a\x79\xa3\x20\x05\x4b\x79\x84\x14\x10\x3e\xe4\xa5\x55\xf4\
+\x16\xea\x15\x42\x91\x54\x7c\xf5\xbb\xe5\xbb\xdc\xeb\x47\x51\x1e\
+\x1f\xca\x45\x81\xe2\xb5\x80\x82\xa0\x48\xa1\x48\x23\x85\x0b\x0a\
+\x52\xaa\x28\x04\x81\x12\x08\x31\x10\x9e\x81\xbc\x33\x79\xcd\x9c\
+\x39\xe7\xec\x75\xff\x98\x09\x86\x90\x4c\x48\xe4\xfb\xba\xfe\x59\
+\xf3\x9d\xb3\x67\xad\xdf\x7a\xec\xbd\xd7\xda\xfb\xd0\xe8\xd1\x23\
+\x04\x6e\x27\x02\xc0\x21\xae\x00\x88\x46\x38\x03\xa0\x03\x07\x0e\
+\xd9\x42\x88\x87\x99\xf9\x1d\x66\xee\x45\x44\x60\x66\x84\xe1\xd5\
+\x00\xde\x88\x8f\x8f\x5b\x32\x74\xe8\x43\x66\x45\x85\xb7\x55\x7a\
+\x43\x1c\x00\x58\xd4\xfb\xb3\x08\xf1\xfa\xbf\x65\xe8\xfd\x1d\xdc\
+\xe1\x70\xa0\x57\xaf\xfb\x75\x66\x9e\x0d\xa0\x17\x11\x05\x05\x85\
+\xe7\x91\x00\xd2\x8b\x8a\x8a\x7f\x32\x7d\xfa\x63\xad\xd2\x1b\xe2\
+\x75\xe3\x44\x7d\x03\xea\xf3\xa6\x3c\xc3\x75\x1e\x89\x8c\xf4\xd0\
+\x95\x2b\x57\x3d\x44\xb8\x1f\x2d\xa3\x58\x80\xbb\x4f\x99\xf2\xb4\
+\x6a\x8d\xde\x86\xcf\xeb\x0c\xe0\x30\x0a\x1b\x15\xf2\xe4\x93\xd3\
+\x6c\xd3\xb4\xee\x63\x46\x87\x16\x1a\xa0\x29\xc5\x9d\x99\xb9\xb9\
+\x71\xcd\x82\x07\x40\xf5\xc3\xd7\x22\x21\x93\x27\x4f\x83\x65\x59\
+\xb1\x00\xda\xb6\xd0\x00\x00\xe8\xb2\x6a\xd5\x32\x11\xe6\x7d\x73\
+\xe0\x6f\x45\xa8\x6e\x62\xdc\x46\x9d\x3b\x77\xe2\xf4\xf4\x7f\xb7\
+\x9e\x7f\xfe\x37\x2a\x25\xa5\x9b\x6a\x4c\x08\x91\x8b\x99\xb9\x13\
+\x00\x77\x4b\xd1\x33\x73\x97\x35\x6b\xde\x75\x3a\x1c\xda\x1d\xef\
+\x22\x22\x5c\x9c\x9a\x3a\x82\xd7\xaf\x7f\xc7\x4a\x4b\x1b\xc5\xba\
+\xee\x6c\x38\x81\xeb\x13\xd1\xe8\xd1\x23\x64\xdd\x0b\x66\x46\xd7\
+\xae\x5d\xf8\x83\x0f\x3e\x8e\xb3\x2c\xf3\x61\x66\x54\x46\x46\x7a\
+\xb2\x7e\xf9\xcb\xa9\x25\x1d\x3b\xb6\xa7\xac\xac\x93\x64\x18\x06\
+\x0d\x1a\xf4\x80\x5a\xba\x74\xa5\x12\x42\xfc\x8e\x99\x97\xb5\x22\
+\x02\x59\x1e\x8f\x67\x5c\x55\x55\x55\xf1\x98\x31\xa9\x9a\x52\x8a\
+\x3b\x76\xec\x80\x19\x33\x9e\x52\xb3\x66\xcd\x73\x15\x14\xdc\xe8\
+\xa1\x14\xf7\x21\xa2\x8b\xbd\x7b\xdf\x7f\x3c\x31\x31\xde\x36\x8c\
+\x40\x63\x59\xa2\x68\xf4\xe8\x11\xb7\x66\x7d\x4a\x4a\x37\xde\xb0\
+\xe1\x83\x0e\xa6\x69\x6e\x64\xe6\x5f\x00\xf0\x03\x38\x29\x04\xed\
+\x12\x42\x66\x26\x25\x75\xbe\x90\x9b\x9b\x67\x78\x3c\x9e\x04\xbf\
+\xdf\x3f\x9d\x99\x9f\x03\x90\xd4\x0a\x03\x0c\x22\xfc\x45\x4a\x6d\
+\x75\xa7\x4e\x89\x5f\x4f\x98\x30\x46\x6d\xd8\xb0\xb9\x9d\x61\x18\
+\x3f\xb7\x6d\x35\x15\xc0\x48\x00\x1d\x01\x94\x08\x41\xcf\x9d\x39\
+\xf3\xf5\x9f\x33\x32\x5e\x91\x8d\xc8\xe1\xba\x08\x40\x08\x41\xb1\
+\xb1\xed\xd4\x47\x1f\xed\xf8\x3d\x33\xff\xa1\x41\xb8\x18\x40\x01\
+\x11\xf6\x11\xd1\x09\xa5\xf8\x09\x00\x43\x43\xa1\xfd\x21\x54\x48\
+\x44\x1b\x00\xd4\x00\x3c\x91\x19\xfd\x00\xe8\xb7\xe7\x08\x8e\x3b\
+\x1c\xce\xc9\x19\x19\xb3\x0b\x4e\x9e\xfc\x67\x7d\x7d\x5c\x67\x00\
+\x01\x90\xfb\xf7\x1f\xb4\x75\xdd\xd9\xcf\x34\xad\x4f\x00\x74\x0e\
+\xa3\xb4\x2e\x27\xef\x15\xd5\xcd\xc1\x26\x17\x12\x22\xfa\xaf\x89\
+\x13\xc7\x2d\xf1\xf9\x7c\x64\xdb\xea\x36\x2c\x02\x80\xf0\x78\xdc\
+\x9c\x92\xd2\x4d\x37\x4d\xeb\xb9\x66\xc0\xe3\x1e\x83\xaf\x03\x4e\
+\xe1\xde\x33\xf3\xb3\x9f\x7e\xba\xaf\xcf\x6f\x7f\x3b\xc7\x6e\x60\
+\x38\x09\x66\xe6\x5d\xbb\x3e\x52\xf9\xf9\x97\x86\x03\x98\x76\x8f\
+\xc1\xdd\x2b\xea\x62\xdb\x6a\xde\xac\x59\xcf\x3b\x5d\x2e\xfd\x16\
+\x78\x00\x2c\xfa\xf5\xeb\x03\x8f\x27\x2e\x86\x19\xf3\x01\xb4\xf9\
+\x57\x23\x6d\x8a\x98\x79\x5a\x51\x51\xf1\xa8\xcc\xcc\x7d\x16\xea\
+\x2d\xab\xf2\xab\xaf\xbe\x61\xa5\xd4\xaf\x98\x79\x1e\xbe\xaf\x35\
+\x7e\x08\x59\x00\xbc\x00\xca\x01\xf8\x42\x9e\x72\xdc\x03\xb9\x2e\
+\x66\x8e\x6d\xdb\xb6\xcd\x9e\x61\xc3\x86\xf8\xca\xcb\x2b\x24\x00\
+\xa5\x69\x9a\x96\x62\xdb\xf6\xdc\x7b\xa0\xe4\x26\x11\x7d\x4a\x44\
+\x9f\x09\x21\xbe\x13\x82\xaa\x98\xa1\x29\xa5\x12\x94\x52\x83\x00\
+\x7e\x94\x19\x03\x7e\xa0\x9e\x51\x5e\x6f\xe5\xb4\x3e\x7d\x7a\xfd\
+\xe9\xe2\xc5\x4b\x8a\x99\x89\x88\x68\x39\x80\x97\xd0\xfa\xc9\x69\
+\x02\xf8\xc4\xe1\xd0\x96\xf7\xed\xdb\xfb\xe4\xb1\x63\x27\xcc\x25\
+\x4b\x5e\x25\x22\xa2\xc8\x48\x0f\x12\x12\xe2\x39\x27\x27\x97\x5e\
+\x7b\x6d\x45\xac\x61\x18\x4f\x29\xa5\x5e\x02\x90\xd8\x5a\x0b\x88\
+\x70\x42\xd7\xf5\xf1\x4f\x3e\x39\xad\xf8\xca\x95\x6b\x4c\x44\xb4\
+\x07\xc0\xb8\x56\xca\x0b\x10\xd1\xaa\xa8\xa8\xc8\xd7\xd7\xac\x79\
+\xc3\xbb\x65\xcb\x36\x69\x9a\x56\x63\xe3\xb8\x63\xc7\x0e\xa8\xac\
+\xac\xe2\xbf\xfd\x6d\x7f\xaa\x6d\xdb\x6b\x00\xa4\xb4\x52\x67\xa1\
+\xd3\xe9\x1c\xed\xf7\xfb\xb3\xd3\xd2\x46\x0a\x41\x84\x9d\x00\x2a\
+\x5a\x29\x6c\x53\x4c\x4c\xf4\x1f\x1e\x7f\x7c\x72\xe5\x7b\xef\x6d\
+\x69\x12\x3c\x00\x2a\x2c\x2c\x82\x61\x18\xc2\x34\xcd\xfd\x52\xca\
+\x97\x00\x94\xb4\x2e\x02\xf4\x45\x44\x84\xeb\xca\xd4\xa9\x13\x25\
+\x00\x16\x51\x51\xd1\x9b\x84\xa0\x0c\x00\x97\x5b\x28\x2b\xdb\xe9\
+\x74\x2c\xdb\xbd\xfb\xa3\xea\xfc\xfc\xcb\x4d\xa5\xdf\x6d\x55\xa5\
+\x52\x8a\x1f\x79\x24\x4d\xeb\xd9\xf3\xc7\x7b\x88\xe8\x4f\x2d\xd4\
+\x67\x10\xd1\xbb\x4e\xa7\xe3\xc5\x69\xd3\x1e\xad\xa9\xac\xac\x0a\
+\xee\x03\x63\xc7\xa6\x5a\xf3\xe6\xa5\x6f\x95\x52\x4e\x07\x70\xa4\
+\x05\x9e\x78\xdf\xef\x37\x2e\x2c\x5a\xb4\xac\xa9\x95\xab\xd1\x92\
+\xd8\x34\x2d\x4e\x4f\xff\x35\x4b\x29\x37\xb5\xc0\x69\x25\x42\x88\
+\x05\x51\x51\x91\x2f\x64\x64\xa4\xdf\xc8\xcf\xbf\x5c\xb7\xf9\xb1\
+\x28\x2d\x2d\xc3\xb9\x73\xe7\xc5\xda\xb5\x6f\x7c\xa5\xeb\xfa\xd3\
+\x44\xd8\x08\x20\xd0\x8c\xc0\x22\x21\xc4\xfe\x9c\x9c\xe3\x68\xa2\
+\x31\x09\x5b\xcf\x67\x66\xee\xa3\xe4\xe4\xa4\x0b\x44\x77\xe5\xb0\
+\x6c\x29\xe5\x33\xbd\x7a\xfd\x64\x55\x6a\xea\x70\xff\x89\x13\xa7\
+\x45\x5d\x9b\x0a\x80\x64\x72\x72\x92\x60\x66\xca\xce\xce\x11\x93\
+\x26\x8d\xf7\x9e\x3a\x75\xe6\x70\x20\x60\x0e\x45\xf8\x2a\xf3\x6c\
+\x54\x54\xe4\x9a\x82\x82\x9b\x81\xda\xda\xda\x86\x65\x40\xb3\xcd\
+\x88\x52\x8a\x8e\x1d\x3b\x61\x12\x89\x2e\x00\xc6\x84\xd1\xe3\x93\
+\x52\xce\xb1\x2c\xeb\xaf\x03\x06\xf4\x93\x3e\x9f\xbf\x1e\xf6\xa0\
+\xae\x3a\x05\x41\x53\xb3\x73\x44\x44\x84\xcb\x4f\x44\x66\x38\x97\
+\x10\xa1\x30\x3a\x3a\xda\xe7\xf5\x56\xb6\xc8\xf3\x77\xca\xa1\xeb\
+\x00\xec\x30\xaa\x98\x99\xab\x99\x99\x2c\xab\xd1\x05\x82\x34\xd4\
+\xdf\x96\xa5\x60\x87\xc3\x41\xcc\x1c\xae\xb8\x02\x33\x20\xa5\xe0\
+\x06\xe3\x5a\x04\x3e\x44\x06\xbe\xaf\x6e\x6b\x01\x54\x85\x9e\x69\
+\x00\xa2\x00\x94\x4a\x29\xcb\x9a\x68\xd9\xb9\x7e\x04\x08\x00\xf7\
+\xe9\xd3\x8b\xcb\xcb\x2b\x1c\x44\xa4\x21\x3c\xb5\xab\xa8\xf0\x46\
+\xc4\xc4\x44\x73\x3d\x61\x2d\x02\x3f\x77\xee\xb3\xc2\xe5\x72\x1d\
+\x23\xa2\x45\x42\x88\xf9\x52\x8a\x47\x74\xdd\x39\xca\xe9\x74\x0e\
+\xd7\x75\x7d\xa4\x94\xf2\x17\x0e\x87\x63\x6a\xb7\x6e\x49\xe7\xc6\
+\x8e\x4d\x6b\x6c\xa1\x20\x84\x94\x09\x21\x04\xaf\x5a\xb5\x5c\xad\
+\x58\xf1\x76\xa2\xdf\x6f\xbc\xc9\xcc\x43\x9b\x31\xa0\x6b\x4d\x4d\
+\x6d\xc2\x84\x09\x63\xb9\x95\x9e\x47\x6e\x6e\x9e\xf8\xd9\xcf\x7e\
+\x7a\x53\x29\xb5\x78\xc1\x82\x97\xdf\x4a\x4c\x4c\x38\x2e\x84\x28\
+\x15\x42\x10\x11\x6a\xdb\xb6\x8d\x39\x37\x73\xe6\xd3\x27\xcf\x9e\
+\x3d\x6f\x4a\x29\x1b\x0b\x41\xb0\x37\x7f\xf1\xc5\xe7\xa8\x7d\xfb\
+\xf6\xb4\x70\xe1\xe2\xc1\x4a\xa9\x65\xcc\x3c\x0c\xcd\x13\x0b\x21\
+\xe6\xdb\xb6\xfd\xd6\xe8\xd1\x23\xb4\x96\x82\x17\x42\xa0\x77\xef\
+\x9e\xf6\x96\x2d\x1f\x7b\x4a\x4b\x4b\x07\x28\xc5\x8f\x30\xf3\x20\
+\x22\x74\x62\x46\x04\x82\x05\x61\x11\x11\x9d\x24\xa2\x3d\x1e\x8f\
+\xfb\xef\x19\x19\xe9\x95\x59\x59\xdf\x92\x65\xd9\x24\x84\xe0\xf8\
+\xf8\x38\xd8\xb6\xcd\x14\x1b\xdb\x4e\x2f\x2b\x2b\x7f\x2c\xd4\x46\
+\x26\xdd\x05\xf8\x3a\xca\x72\xbb\x23\x26\x67\x66\x7e\x7c\xed\xb5\
+\xd7\x56\x68\x77\x0b\xde\xe9\x74\xc2\xe7\xf3\xa9\x23\x47\x8e\x0e\
+\xb2\x2c\xeb\x05\x04\xcb\x98\x68\x04\x27\x73\x25\x82\x73\xc1\x01\
+\x20\x06\xc1\xf6\xd2\x4f\x84\xcf\x85\x90\x4b\x1f\x7d\x74\xc2\x97\
+\x4a\x59\xb8\x76\xad\x40\x9e\x39\x73\xae\xad\xae\x3b\xab\xa5\xcf\
+\xe7\xff\x35\x80\x95\x00\xe2\x5a\x00\x1e\x00\xe2\x2d\xcb\xc2\x91\
+\x23\x47\x0f\x0f\x1e\x3c\xd0\x2c\x2d\x2d\x93\xcd\x81\x77\xb9\x74\
+\x9c\x3b\x97\x4b\xa7\x4f\x67\xff\x9b\x6d\xdb\xeb\x10\xec\xab\x8b\
+\x89\x68\xb3\x10\x62\xb9\xa6\x69\x2b\x35\x4d\xfe\xaf\x94\x72\x33\
+\x80\x3d\x00\xae\x02\xe8\x04\xe0\xa7\xcc\x3c\x26\x27\x27\xb7\x78\
+\xc6\x8c\xe9\xa7\xb6\x6e\xdd\x3e\xc0\xb2\xcc\x0f\xfd\x7e\x23\x5e\
+\x12\xd1\x22\x00\x7d\x5b\x08\x1e\x21\xa0\xfd\x2b\x2a\xbc\x81\xcb\
+\x97\xaf\x9e\x78\xec\xb1\x49\xc6\xd5\xab\xd7\x45\x53\x27\x6e\x52\
+\x4a\x94\x97\x57\xf0\xd9\xb3\xe7\x9f\x51\x4a\xbd\x19\xf2\xf0\x16\
+\xa7\xd3\x91\xf1\xe0\x83\x03\x36\x5d\xb9\x72\xf5\xac\x65\xd5\x14\
+\x0d\x1e\x3c\xb0\xe2\xf1\xc7\xa7\x94\xcc\x99\xf3\xec\x45\xaf\xd7\
+\x7b\xe8\xd2\xa5\x2b\x7b\x99\xd9\x03\x60\x08\x80\x51\x9f\x7f\xfe\
+\x45\x3e\x80\xfb\x98\x39\x03\x80\x4d\x44\xb4\x0c\xc0\xcb\x68\x7d\
+\x39\xed\x27\xc2\x26\x87\xc3\xb9\x72\xfc\xf8\xb1\xb9\x3b\x76\xec\
+\xe2\xf9\xf3\xe7\x12\x33\xa3\xb4\xb4\x8c\x8a\x8b\x4b\xa0\x94\xa2\
+\xfd\xfb\x0f\x5a\x0e\x87\x63\x8c\x6d\xdb\x9b\x01\x44\x13\xd1\x92\
+\xb6\x6d\xdb\xbc\xf9\xfa\xeb\xff\x5d\xbd\x73\xe7\x6e\x69\xdb\x77\
+\x6e\x07\x44\xc4\x4f\x3c\x31\x95\xe7\xcf\xff\x0f\x77\x4d\x4d\xed\
+\x7f\x32\xf3\xcb\x00\x2e\x11\x61\x17\x33\x5e\x00\xf0\x77\xd2\x34\
+\xd9\xdd\xb6\xd5\x76\x00\xfd\x5b\x69\x00\x42\xa9\x73\x81\x88\x76\
+\x09\x41\x07\xa4\x94\xf9\x52\x4a\x1f\x80\x40\xdf\xbe\xbd\xcb\x86\
+\x0c\x19\x64\xaf\x5f\xbf\x39\xb6\xaa\xaa\x7a\x3b\x80\x9f\x13\xe1\
+\xad\xb8\xb8\xb8\xdf\x4f\x9a\x34\xde\x9f\x9b\x9b\xd7\x9c\xe3\xb8\
+\x53\xa7\x04\x6c\xdf\xfe\x89\xc7\xe7\xf3\xad\x65\xe6\xa7\x00\x94\
+\x01\xb8\x0f\xc0\x17\x14\x0a\xef\x2c\xa5\xd4\x6a\x00\xce\x1f\x60\
+\x44\x1d\xf9\x42\x0a\xfc\x44\x28\x91\x52\x9b\x6d\x9a\xe6\x69\x21\
+\xc4\x4c\x66\x5e\x0f\xe0\x94\xcb\xa5\x4f\xda\xbd\x7b\xdb\xd5\x65\
+\xcb\x56\x86\x6d\x61\x85\x10\xfc\xa3\x1f\x25\x22\x39\x39\x59\x2d\
+\x58\xf0\x2a\x3b\x1c\x5a\x2f\xdb\x56\x7f\x05\xd0\x35\x34\xe4\x0b\
+\xb1\x7d\xfb\xfb\xe4\x72\xe9\x7f\x26\xc2\xc1\x7b\x00\x1e\x00\x22\
+\x10\xec\xb8\xba\x31\xa3\x27\x80\x98\xae\x5d\xbb\x38\x01\x4c\x09\
+\x62\xa2\x8d\x3e\x9f\xff\xca\xdd\x80\xaf\xa8\xf0\xca\xad\x5b\xb7\
+\x77\x58\xbc\x78\x59\x37\x97\x4b\xef\xea\x70\x38\xfc\x00\x0e\xdf\
+\x36\xee\x9d\x77\x36\x8a\xea\xea\x9a\x0a\x22\xf1\x3f\x08\x36\xe3\
+\xf7\x92\xae\x69\x9a\xfc\xee\xc6\x8d\xc2\x24\x66\x7e\x00\xc0\x0d\
+\x21\xc4\x67\xeb\xd7\xaf\x6e\x36\x6d\xe6\xcf\x9f\xcb\x27\x4e\x9c\
+\xea\x6f\x18\xc6\x5e\xbf\xdf\x38\x14\x08\x98\x87\xfd\x7e\xe3\x20\
+\x80\x89\xf5\xc7\x09\x00\x3c\x71\xe2\x38\x11\x1f\xdf\xf1\x10\x11\
+\x7d\x7c\x8f\x0d\x28\x88\x8f\x8f\xf3\x9a\xa6\xd9\x09\x40\x7b\x00\
+\xf9\xd1\xd1\xd1\x05\x7b\xf7\x1e\x08\x57\x6b\x31\x00\x1a\x37\x6e\
+\xaa\x12\x82\x88\xf9\xb6\x2b\x25\x00\xa8\x06\x70\x05\xc1\xc9\x7c\
+\x44\x00\x20\x9f\xcf\x4f\x3b\x76\x7c\x60\x08\x21\xd6\xa0\xf9\x26\
+\x43\xe1\x2e\x89\x88\xbc\x73\xe6\x3c\x63\x10\x21\x16\x80\x93\x88\
+\x0a\xdb\xb4\x89\xf1\x55\x55\x55\x37\x7b\x1f\x31\x66\xcc\x28\xad\
+\x47\x8f\x94\x2c\xb7\xdb\x3d\xd6\xe9\x74\x0c\x77\xb9\xf4\xe1\x4e\
+\xa7\x73\x84\xae\xeb\x23\x74\xdd\x39\x52\xd7\xf5\x11\x11\x11\xee\
+\x25\x75\x3b\xa8\x5c\xb8\x70\xb1\x48\x4f\x9f\x79\xe6\x8f\x7f\xdc\
+\xf0\x6e\xd3\x87\xbb\xb4\x17\xc0\x09\x66\x9e\x8e\xe0\xba\x1c\x36\
+\x15\x98\x19\xdf\x7d\x77\x81\x98\x83\x46\x33\x33\x49\xd9\x64\xea\
+\x37\x68\x3f\x59\xc5\xc7\x77\xa4\xd4\xd4\xe1\x37\x1d\x0e\x0d\xba\
+\xee\x42\x20\x10\x80\x10\x02\x42\x10\xaa\xab\x6b\x70\xf3\x66\x21\
+\x6e\x95\xd3\x4a\x29\x4a\x48\x88\x57\x6e\x77\xc4\xc6\x9a\x9a\xda\
+\xe1\x00\x46\x03\xf0\x13\xd1\xb7\x00\x76\x39\x1c\xda\x9e\x1e\x3d\
+\xba\xe7\x9e\x3e\x9d\x6d\xba\xdd\x11\xbb\x0c\x23\xf0\x34\x33\xff\
+\x06\x61\xca\x0f\x22\x8a\xd9\xb7\xef\x33\x8d\x88\x2a\x10\xec\xf2\
+\xda\x17\x15\x15\xbb\xfa\xf6\xed\x55\x5d\x51\xe1\x6d\xb6\x14\x67\
+\x66\xce\xce\x3e\x17\xae\xdf\xe6\xfa\xf7\x03\x0c\x40\xa4\xa4\x74\
+\xb7\xdf\x7f\x7f\x4b\x27\xc3\x30\x86\x10\x09\xaf\xcb\xa5\x1f\x9b\
+\x3d\xfb\x99\xf2\xb2\xb2\x52\x14\x16\x16\x0b\xd3\x34\x11\x19\xe9\
+\xe1\x5d\xbb\x3e\xb5\xef\xe2\x82\xe3\x9c\xc7\xe3\x1e\x65\x9a\x66\
+\x64\x20\x60\x1e\x02\x20\x35\x4d\x4b\xfd\xf0\xc3\xf5\x39\xeb\xd6\
+\x6d\x10\xe1\xc0\xa3\x99\xb2\x24\x44\x4a\x26\x27\x27\xd5\xc5\x94\
+\x00\x70\x59\x59\x99\x4c\x4b\x4b\xf5\x1e\x3d\x7a\x2c\xdb\xb6\x6b\
+\x2f\xb4\x6b\x77\x9f\x91\x9f\x7f\x89\x2a\x2b\xab\x84\x52\xc1\xf4\
+\x0f\x04\x4c\xba\x78\xf1\x92\x92\x52\xc4\x31\xf3\x94\x30\xa9\xe4\
+\xb2\x6d\x7b\x5f\x97\x2e\x9d\xcf\x96\x97\x57\x0c\x03\xf0\x20\xc0\
+\xb9\xdb\xb6\xed\x3c\x9a\x9c\x9c\xd4\xf0\xde\xb7\xa5\xe0\x6f\x5d\
+\xf2\xa9\x86\x42\x72\x72\xce\x8b\xb4\xb4\x91\xe2\xcb\x2f\xbf\x96\
+\x25\x25\xa5\x8d\x1e\x7f\x33\x2b\x02\xe8\x3a\x80\x9a\x30\x4a\xa2\
+\x98\x79\x54\x5e\xde\x45\x43\x08\xb1\x13\x80\x52\x8a\x67\xb8\xdd\
+\x11\x9d\x17\x2e\xfc\x9d\x8d\xef\xbb\xc1\x56\x81\x47\x68\x19\x6d\
+\x95\x90\x6d\xdb\xde\x83\xc3\xa1\x15\xa3\x99\x43\x31\x66\x9e\xe4\
+\x72\xe9\x89\x6e\xb7\x3b\x13\xc1\x4d\xe8\x01\xbf\xdf\xff\xd2\x8c\
+\x19\x73\x22\xfa\xf7\xef\x63\x33\x73\xab\xc1\x23\x74\x2a\x51\x37\
+\x07\x5a\x24\x24\x3f\xff\xb2\xb8\x70\xe1\x92\xb2\x2c\x73\x0a\xc2\
+\x9f\x75\x76\x50\x4a\x15\x19\x86\xb1\x5f\xd3\xb4\x02\x66\x1e\x03\
+\xe0\xe1\xca\xca\x2a\x75\xfe\x7c\x5e\xd6\xd2\xa5\xaf\xfa\x8f\x1f\
+\xff\x56\x70\xb0\x8c\x6d\x09\x78\x81\xd0\x1c\x68\x98\x8b\x77\x25\
+\xc4\xb6\x2d\x96\x52\xda\x45\x45\xc5\x43\x01\xf4\x0b\x33\x9e\x00\
+\x74\xd7\x75\xfd\xff\xd6\xad\x5b\xf9\x4d\x66\xe6\x3e\x2f\x33\x8f\
+\x04\x90\xea\xf3\xf9\x3a\xef\xd8\xf1\xc9\x05\xb7\xdb\x53\xf4\x8f\
+\x7f\x1c\x55\x97\x2f\xe7\x71\x5c\x5c\x1c\x4a\x4a\x4a\x60\xdb\xf6\
+\x5d\x1d\xd7\xd4\x6f\x07\x5b\xe4\x01\xd3\xb4\xc4\xea\xd5\xcb\x03\
+\x69\x69\x93\xde\x36\x4d\x2b\x1e\xc1\xc3\xda\x3b\x6e\xd2\x11\xfc\
+\x4c\xe2\x06\x33\xdb\x9a\xa6\x51\x62\x62\xc2\xc6\xeb\xd7\x0b\x0c\
+\xa5\xd4\x22\x00\xbf\x0a\x04\xcc\x91\xa7\x4e\xfd\x33\x53\xd3\xb4\
+\x03\x52\x8a\x8b\x42\x08\x6f\x54\x54\x54\xd1\x43\x0f\x3d\x68\x18\
+\x86\x11\x0e\xbc\x00\x60\x53\xe8\x6b\x15\x42\xd3\x11\xe0\x46\x80\
+\xdd\x12\x12\x1b\xdb\xce\xde\xb7\xef\xb3\xe8\xda\x5a\x5f\x5b\x22\
+\xa2\xe0\x57\x29\xa1\x3f\x32\x98\x88\x84\x10\x54\x35\x70\xe0\x80\
+\x72\x5d\xd7\x95\x94\x92\xbc\xde\x4a\x95\x95\xf5\xed\x40\xd3\xb4\
+\xe6\x23\xd8\x52\xb6\xc1\xf7\x17\x23\x3e\x22\x7a\x3b\x3d\x7d\xe6\
+\x8a\xbc\xbc\xfc\xfa\xa9\xd5\x10\xbc\x02\x82\xe7\x2f\xf5\x3f\x71\
+\xa9\xcf\xeb\xff\xb1\xe1\x18\xbb\x8e\x97\x94\x94\xd2\xa4\x49\x13\
+\xbc\x7d\xfa\xf4\xf4\xba\xdd\x6e\xd4\xd6\xd6\xc2\xe9\x74\xc2\x34\
+\x2d\x08\x21\xe0\x70\x68\x38\x78\xf0\x30\x55\x56\x56\xc1\xb6\x6d\
+\xb2\x2c\x4b\x45\x46\x7a\x68\xed\xda\x37\xbf\x79\xe5\x95\x85\xb3\
+\xbc\xde\xca\x21\xcc\x3c\x15\xc0\x30\x00\x49\x00\xb7\x63\x46\x4c\
+\xff\xfe\x7d\x39\x2f\x2f\x5f\x35\xa5\xb7\xee\xf9\xff\x03\x78\x8c\
+\x5f\x99\x77\x2f\x9e\x77\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\
+\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x37\x2d\x31\
+\x30\x2d\x31\x33\x54\x32\x33\x3a\x34\x33\x3a\x30\x33\x2b\x30\x38\
+\x3a\x30\x30\x27\xbf\x77\xe8\x00\x00\x00\x25\x74\x45\x58\x74\x64\
+\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x37\x2d\
+\x31\x30\x2d\x31\x33\x54\x32\x33\x3a\x34\x32\x3a\x35\x30\x2b\x30\
+\x38\x3a\x30\x30\xc0\x28\xb0\x93\x00\x00\x00\x00\x49\x45\x4e\x44\
+\xae\x42\x60\x82\
\x00\x00\x02\xfd\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
-\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\
-\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\
-\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\
-\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\
-\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\
-\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x7a\x49\x44\
-\x41\x54\x38\x8d\xd5\x95\x4b\x48\x55\x41\x1c\xc6\x7f\x73\x3c\x5e\
-\x6e\x47\xc3\x67\x56\x54\x84\x49\x50\x9b\x5a\x48\xad\xdc\x44\x48\
-\x19\x29\x2d\xad\x36\xb9\x68\x55\xd1\x26\x6a\x11\x81\x1b\x17\x9a\
-\xe8\xa2\x27\x44\xed\x6a\x13\x14\x14\x24\x5a\xbb\x5c\xb9\x90\x6a\
-\x51\x1a\x59\x54\xa2\x5d\xef\xfb\xde\x73\xee\xe3\xdc\x73\xe6\xdf\
-\x42\xf2\x51\x72\xcd\x2e\x2e\xfa\x60\x60\x1e\xdf\x7c\xf3\xcd\x7f\
-\x66\xfe\xa3\x44\x84\xf5\x80\xb1\x2e\xaa\x80\xf9\xab\xd2\xd4\xd6\
-\xdb\x82\xa9\x86\xb5\xd6\xd6\xb2\x95\x0d\x23\x83\x27\x47\xa6\x86\
-\xae\x8c\xae\x45\x58\x89\x08\x4d\x6d\xbd\x2d\xc1\x8a\xf2\xa1\xcb\
-\x67\x8f\x55\x6e\xdf\x5a\xb3\x8c\x30\x3d\x1b\xa7\xef\xde\x0b\x3b\
-\xe7\x14\xda\xd6\x22\x3e\x2f\xdc\xde\xe7\x5c\x3b\xdf\x6e\x05\x2d\
-\x8b\xd9\x58\x76\x19\x61\x6b\xed\x06\x72\x99\x0c\x83\xf7\x87\xdd\
-\x94\x93\x0b\x14\x13\x33\x94\xf2\xcc\xf2\xb2\x9e\xc9\xa7\x97\xba\
-\x4d\x00\xad\xb5\x55\x51\x61\xf1\xfe\x5b\xe2\x0f\x72\xca\xc9\xd3\
-\x50\x1d\xe4\xea\x85\x13\x01\xa5\x54\x51\x97\xb9\xbc\x6b\x76\x0f\
-\x3e\xb9\x0a\x74\x2f\xc4\x38\x96\xca\xa0\x67\x46\xf1\x92\xdf\xd1\
-\x5a\x10\xd1\x68\x3d\x5f\x92\x5a\x33\xa9\x35\xbe\xbf\xd8\xa7\xb5\
-\xbf\xac\x6d\xd5\xed\x64\xff\xa1\x53\x68\x11\x13\x96\x1c\x5e\x38\
-\x9e\xc5\x0e\x7d\xa2\xbf\x6f\x80\xd5\x9c\xfd\x0e\xad\x7d\x4e\x9e\
-\xee\x24\x1c\x5f\x0c\xe3\x82\xf0\x5c\xcc\x26\x67\x67\x50\x4a\xe1\
-\xba\x2e\x22\xc2\xfc\x1d\x17\xbe\xfd\x48\x70\xe5\xc6\x4b\xde\x4c\
-\xcc\x14\x91\x6f\x66\xec\xd1\x08\x86\x61\xd0\xd4\xde\xd7\xb5\x20\
-\x3c\x1b\xb5\x09\x38\x36\x00\xbf\x0c\x8b\xc0\xc3\xa1\xb7\xdc\x7a\
-\x3c\x46\x47\x6b\x33\x5d\x9d\x87\x59\x6d\x2f\xe1\x58\x9a\x9e\x9b\
-\xcf\xee\xa8\x5d\xc7\x7b\xbb\x80\x07\x5a\xeb\x15\x89\xfb\xf6\xee\
-\xa0\xa3\xf5\x00\x62\x98\x84\x53\x79\x74\x91\x97\x1a\x30\x0d\xaa\
-\x83\x8a\xeb\x77\x9f\x87\x4c\xe0\xf6\xb9\xae\xa3\x6c\xae\xaf\x5a\
-\x91\xec\x7a\x9a\x70\x2a\x4f\xd6\xcd\xae\x38\xbe\x14\xe5\x40\x24\
-\xe1\x60\x18\xc6\xb4\x69\x9a\x65\xb3\x6e\xc1\x6f\xfc\x32\x67\x93\
-\x2f\xac\xec\xfa\x6f\x21\x62\x10\x89\xdb\x88\xc8\x67\x13\x98\x08\
-\x45\xd2\x8d\xb5\x0d\x75\x78\x7e\x69\x09\x49\x6b\x88\xc6\xd3\x14\
-\x0a\xde\x84\x59\x28\x78\xe3\xa1\x48\xa2\xad\x66\x53\x2d\x9e\x5f\
-\x9a\x63\x5f\x6b\x22\xd1\x14\x22\xf2\xd5\x10\x91\x0f\xa1\x70\xd2\
-\xd5\xa2\xd0\x42\x49\xc5\x17\x88\x27\xec\x3c\xf0\xdd\x00\x26\xa3\
-\xd1\x44\x01\x4a\xcf\xcb\x22\x42\x32\x9d\x26\xfe\x71\x64\xa3\x09\
-\x4c\xda\x76\x36\xe8\x38\x59\xaa\x2a\xad\x55\x27\x17\x43\xda\xce\
-\x90\xcd\xba\xe5\xce\xf4\x78\x40\x89\x08\x5b\x0e\x9e\xe9\xb7\x1a\
-\xf6\x5c\x14\x59\x7c\x89\xff\x02\xa5\xc4\x4b\x4e\xbd\x7e\x15\x9b\
-\x18\x1a\x50\x22\x82\x52\xaa\x1e\xd8\x0d\x44\x4b\xb2\x0c\xdb\x00\
-\x05\xbc\x53\xff\xdd\x9f\xf7\x13\x77\x5b\x6b\x82\x49\x2e\xb3\xc2\
-\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\
+\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\
+\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\
+\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\
+\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\
+\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x7a\x49\x44\
+\x41\x54\x38\x8d\xd5\x95\x4b\x48\x55\x41\x1c\xc6\x7f\x73\x3c\x5e\
+\x6e\x47\xc3\x67\x56\x54\x84\x49\x50\x9b\x5a\x48\xad\xdc\x44\x48\
+\x19\x29\x2d\xad\x36\xb9\x68\x55\xd1\x26\x6a\x11\x81\x1b\x17\x9a\
+\xe8\xa2\x27\x44\xed\x6a\x13\x14\x14\x24\x5a\xbb\x5c\xb9\x90\x6a\
+\x51\x1a\x59\x54\xa2\x5d\xef\xfb\xde\x73\xee\xe3\xdc\x73\xe6\xdf\
+\x42\xf2\x51\x72\xcd\x2e\x2e\xfa\x60\x60\x1e\xdf\x7c\xf3\xcd\x7f\
+\x66\xfe\xa3\x44\x84\xf5\x80\xb1\x2e\xaa\x80\xf9\xab\xd2\xd4\xd6\
+\xdb\x82\xa9\x86\xb5\xd6\xd6\xb2\x95\x0d\x23\x83\x27\x47\xa6\x86\
+\xae\x8c\xae\x45\x58\x89\x08\x4d\x6d\xbd\x2d\xc1\x8a\xf2\xa1\xcb\
+\x67\x8f\x55\x6e\xdf\x5a\xb3\x8c\x30\x3d\x1b\xa7\xef\xde\x0b\x3b\
+\xe7\x14\xda\xd6\x22\x3e\x2f\xdc\xde\xe7\x5c\x3b\xdf\x6e\x05\x2d\
+\x8b\xd9\x58\x76\x19\x61\x6b\xed\x06\x72\x99\x0c\x83\xf7\x87\xdd\
+\x94\x93\x0b\x14\x13\x33\x94\xf2\xcc\xf2\xb2\x9e\xc9\xa7\x97\xba\
+\x4d\x00\xad\xb5\x55\x51\x61\xf1\xfe\x5b\xe2\x0f\x72\xca\xc9\xd3\
+\x50\x1d\xe4\xea\x85\x13\x01\xa5\x54\x51\x97\xb9\xbc\x6b\x76\x0f\
+\x3e\xb9\x0a\x74\x2f\xc4\x38\x96\xca\xa0\x67\x46\xf1\x92\xdf\xd1\
+\x5a\x10\xd1\x68\x3d\x5f\x92\x5a\x33\xa9\x35\xbe\xbf\xd8\xa7\xb5\
+\xbf\xac\x6d\xd5\xed\x64\xff\xa1\x53\x68\x11\x13\x96\x1c\x5e\x38\
+\x9e\xc5\x0e\x7d\xa2\xbf\x6f\x80\xd5\x9c\xfd\x0e\xad\x7d\x4e\x9e\
+\xee\x24\x1c\x5f\x0c\xe3\x82\xf0\x5c\xcc\x26\x67\x67\x50\x4a\xe1\
+\xba\x2e\x22\xc2\xfc\x1d\x17\xbe\xfd\x48\x70\xe5\xc6\x4b\xde\x4c\
+\xcc\x14\x91\x6f\x66\xec\xd1\x08\x86\x61\xd0\xd4\xde\xd7\xb5\x20\
+\x3c\x1b\xb5\x09\x38\x36\x00\xbf\x0c\x8b\xc0\xc3\xa1\xb7\xdc\x7a\
+\x3c\x46\x47\x6b\x33\x5d\x9d\x87\x59\x6d\x2f\xe1\x58\x9a\x9e\x9b\
+\xcf\xee\xa8\x5d\xc7\x7b\xbb\x80\x07\x5a\xeb\x15\x89\xfb\xf6\xee\
+\xa0\xa3\xf5\x00\x62\x98\x84\x53\x79\x74\x91\x97\x1a\x30\x0d\xaa\
+\x83\x8a\xeb\x77\x9f\x87\x4c\xe0\xf6\xb9\xae\xa3\x6c\xae\xaf\x5a\
+\x91\xec\x7a\x9a\x70\x2a\x4f\xd6\xcd\xae\x38\xbe\x14\xe5\x40\x24\
+\xe1\x60\x18\xc6\xb4\x69\x9a\x65\xb3\x6e\xc1\x6f\xfc\x32\x67\x93\
+\x2f\xac\xec\xfa\x6f\x21\x62\x10\x89\xdb\x88\xc8\x67\x13\x98\x08\
+\x45\xd2\x8d\xb5\x0d\x75\x78\x7e\x69\x09\x49\x6b\x88\xc6\xd3\x14\
+\x0a\xde\x84\x59\x28\x78\xe3\xa1\x48\xa2\xad\x66\x53\x2d\x9e\x5f\
+\x9a\x63\x5f\x6b\x22\xd1\x14\x22\xf2\xd5\x10\x91\x0f\xa1\x70\xd2\
+\xd5\xa2\xd0\x42\x49\xc5\x17\x88\x27\xec\x3c\xf0\xdd\x00\x26\xa3\
+\xd1\x44\x01\x4a\xcf\xcb\x22\x42\x32\x9d\x26\xfe\x71\x64\xa3\x09\
+\x4c\xda\x76\x36\xe8\x38\x59\xaa\x2a\xad\x55\x27\x17\x43\xda\xce\
+\x90\xcd\xba\xe5\xce\xf4\x78\x40\x89\x08\x5b\x0e\x9e\xe9\xb7\x1a\
+\xf6\x5c\x14\x59\x7c\x89\xff\x02\xa5\xc4\x4b\x4e\xbd\x7e\x15\x9b\
+\x18\x1a\x50\x22\x82\x52\xaa\x1e\xd8\x0d\x44\x4b\xb2\x0c\xdb\x00\
+\x05\xbc\x53\xff\xdd\x9f\xf7\x13\x77\x5b\x6b\x82\x49\x2e\xb3\xc2\
+\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x01\xd7\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
+\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x01\
+\x91\x49\x44\x41\x54\x58\x09\xed\x57\xdd\x6d\x84\x30\x0c\x3e\xa0\
+\x0b\x54\x55\x75\xdd\x06\xba\x40\x17\xe8\x3b\x62\x0c\x6e\x0a\x7e\
+\x76\xa9\x7a\xbc\x76\x92\x4a\x9d\x01\x38\x3b\xcd\x87\x4c\x5a\xd3\
+\x43\x84\xe3\xa1\x44\xba\x8b\x63\x27\xb6\xbf\x2f\x36\x52\x0e\x87\
+\xff\x3e\x02\x10\x90\xa6\x69\x0f\xf9\x16\x73\x5d\xd7\x26\xf6\x9d\
+\x0c\x16\x04\x41\xd7\xf7\xfd\x97\xd4\xf9\x96\x29\xc6\x23\xc5\x08\
+\xe1\x77\x94\x00\x07\xa7\xcc\x9e\x60\x5c\x63\x26\xa6\x3f\xc9\xef\
+\x11\xbe\x87\x4c\xa0\xb8\xf5\xbc\x27\x30\xaa\x01\x49\xbf\xef\xae\
+\x40\xd5\xcb\x18\x2c\x6f\x7e\x05\x2a\x03\x5a\xc6\x2e\x82\xa5\xeb\
+\xcd\x19\xd8\x13\x50\x6b\x60\x69\x17\x5c\x5b\x43\x9b\x5f\x81\xca\
+\xc0\xb5\x08\xf6\x2e\x58\xca\x80\x7a\x05\x4b\x1d\x4f\x9c\x7f\x23\
+\xdb\x3d\xec\xab\x26\x90\x65\x59\xd2\x75\xdd\x3b\x07\x0b\xc3\xf0\
+\xb9\x2c\xcb\x33\xd5\xd6\x2b\x82\x1b\xbd\x5c\xf8\x96\x29\x78\x0e\
+\x9f\x52\x86\x8e\x67\x95\x81\xb9\xdf\x01\xb7\x6b\x2c\xfa\x98\x62\
+\x34\x36\x60\xcc\x3a\x66\xc1\xae\xcd\xb4\xda\x77\x00\x88\x89\xfa\
+\x9c\x7f\x1c\x0d\x3a\x13\xd9\xfe\xa9\x0c\xb8\x88\xe4\xa1\xbf\x64\
+\x89\x1e\x88\x89\x51\x66\xe2\x07\x0b\xab\x30\x00\xa4\x40\xce\x09\
+\x43\x86\x0d\x20\xbc\x27\xc0\xe8\xc9\xb9\xb9\x7b\xa0\xe7\x60\x56\
+\x1e\x58\x60\x1d\x0f\xf5\x0a\xbe\xcd\xf3\xff\x05\xc2\x58\x2b\x64\
+\xbb\x27\x61\xef\xe6\x75\xc2\x02\x6f\x9e\xf3\x30\xa1\xbd\x1f\x55\
+\x55\xbd\xf0\x59\x0c\x7b\xf7\xa6\xef\xa1\xd3\xe6\x28\x8a\x92\xa2\
+\x28\x9a\x11\x03\xf6\xc5\x32\x3c\x1a\xb4\xc3\xac\xa7\xbd\x0f\xae\
+\x1d\xe8\xe9\xbe\xcd\x47\xc7\xb5\xf3\x1a\x49\xb6\x6d\x7b\xa2\x65\
+\x32\x30\xf0\xdb\xe6\x39\x3a\x38\xa6\x33\x0d\x75\x50\x32\x75\x96\
+\xd8\x3e\x93\x3d\xe6\x44\xbd\x15\xa1\x40\x9f\x93\xf3\xc9\x21\x3b\
+\xe2\x02\x11\x97\xac\xfa\x31\x31\x38\xd5\x00\x00\x00\x00\x49\x45\
+\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x04\x44\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
+\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd3\x0a\x17\x0a\x12\x16\x5e\xb7\xf3\xf2\x00\x00\x00\x1d\x74\x45\
+\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\
+\x64\x20\x77\x69\x74\x68\x20\x54\x68\x65\x20\x47\x49\x4d\x50\xef\
+\x64\x25\x6e\x00\x00\x03\xa8\x49\x44\x41\x54\x78\xda\xad\x96\x5f\
+\x68\x1c\x55\x18\xc5\x7f\x77\x76\x36\x9b\x34\xe9\xda\x6e\xda\xb2\
+\x2a\x98\x27\x31\x55\xfa\x66\xdb\x6d\x82\x42\x5e\x35\x45\xf0\x29\
+\x46\x10\x82\xe0\x83\xa2\x82\xb5\x11\x04\x8b\xcf\xea\x8b\x0f\xe2\
+\x9f\x60\x7c\x08\x41\x6a\x71\x5b\xcd\xa3\x88\x6d\xd3\xc4\x9a\x36\
+\x69\x35\x14\x2a\xad\x94\xe2\x96\x4d\x28\x49\x48\xc8\xee\xce\xec\
+\xcc\xbd\x9f\x0f\x33\x3b\xfb\x67\x92\xda\xa2\x1f\x5c\x66\x19\x66\
+\xce\x39\xdf\xf9\xee\x3d\xb3\xf0\x3f\xd4\xd0\xd0\x90\x75\x3f\xcf\
+\xbd\x04\xc8\x03\xac\x32\xb0\x91\x4e\xa7\xa5\xb7\xb7\x57\x46\x46\
+\x46\x6e\x00\xed\x80\xda\x8e\x40\x16\x17\x17\xa5\x5c\x2e\xcb\xbf\
+\x95\xeb\xba\xe2\xba\x8e\xb8\xae\x23\xc5\x62\x51\x0a\x85\x82\xcc\
+\xcf\xcf\x4b\x4f\x4f\x4f\x01\xd8\x03\x6c\xd9\xd1\x7d\x81\xd7\x49\
+\x1c\x59\x5b\x5b\x95\xd3\xa7\xf3\xb2\xbc\xbc\x2c\x22\x22\x53\x53\
+\x53\x92\xcb\xe5\x34\x90\xae\x91\xd8\x8d\x0c\x1d\x1d\x1d\x00\x4c\
+\x4f\x4f\xc7\xd9\x45\x50\x4a\x21\x22\x88\x08\x5a\xfb\x38\x8e\x4b\
+\xa9\x54\x22\x95\x4a\x01\x30\x30\x30\x80\xe3\x38\xd6\xf0\xf0\xf0\
+\xc7\x9e\xe7\xbd\x13\xda\xd8\x88\x11\x2f\x63\x8c\x68\xad\xc5\xf7\
+\xbd\xe8\xea\x79\x9e\xb8\xae\x23\x1b\x1b\x1b\x32\x3e\x3e\xbe\xdd\
+\x8c\x46\x80\xa4\x6a\x21\x88\x3a\xa8\x29\x15\x31\x04\xb7\x25\x9c\
+\x5f\x70\x1f\xc0\xf7\x35\x4b\x4b\x45\xb2\xfb\xf6\xf1\xdb\xa5\x39\
+\x4e\x9c\xf8\x10\xaf\xd8\x4f\xe5\x4a\x86\xf4\x73\x53\x00\x9d\x31\
+\x82\x56\xe0\xe0\x2a\x4d\x16\x21\x82\xb2\x2c\xaa\xae\xcb\xca\xea\
+\x2a\x9e\xeb\xf0\xf8\x13\xfb\xf1\xef\x3e\x83\x37\x97\xe2\xb5\xb1\
+\xa2\x4c\x9c\xb9\xa6\x80\xbd\x76\xab\xd7\xc6\x68\xce\x9f\x9f\x8e\
+\x94\x06\x80\x20\x08\x0a\x85\x84\x0e\x18\x2d\x18\xa3\x31\xc6\xf0\
+\xfc\xe0\x51\xfc\xe5\x7e\xbc\xb9\x76\x8e\x7f\xb7\x46\x08\xfe\x3e\
+\xd0\x1e\xeb\xc0\xf3\xaa\x0d\xc0\x21\x09\x82\x18\x41\x59\x0a\x31\
+\x75\x8b\x44\x84\x9d\xe9\x87\xa8\x16\xfa\xa8\x2e\xec\xe0\xcd\xc9\
+\x4d\xbe\x39\x79\xb1\x86\xf7\x32\x70\x6e\x8b\x0e\x0c\x17\xa6\x2f\
+\x44\x4a\x03\xc0\x78\x07\xbe\xaf\x19\x1c\x3c\x8a\x7b\xeb\x08\xee\
+\xa5\x76\x5e\x9f\x58\x65\x22\xbf\xc0\xdb\x6f\xbc\xca\xa7\x9f\x7d\
+\x0d\xb0\x0e\x38\x71\x02\xad\x39\xd2\x97\x43\x4c\xa8\xb2\xc1\xaa\
+\x68\x9b\x1a\xc3\xae\xdd\xdd\xb8\x37\x73\x94\xaf\xed\xe1\xbd\x53\
+\x77\x98\xc8\x2f\x30\xf6\xe5\xe7\xdc\xbe\x75\xbd\x06\xb5\x06\xb8\
+\x5b\x77\x30\x33\x13\xf8\x1c\xda\x61\x85\xc0\x4a\xa9\xc8\x73\xe7\
+\xfa\x61\x2a\xf3\x29\x46\xcf\xfc\xcd\xd8\xb7\x57\x19\x1d\x3d\x46\
+\xa6\x3b\x43\x69\x3d\x53\x83\xaa\x00\xda\xde\xea\x48\xf7\xf7\xf5\
+\x21\x08\xc6\x98\x26\x02\x80\x5d\xbb\xbb\x29\xff\x71\x88\xd2\xe5\
+\x14\x6f\xe5\xd7\x99\xcc\x5f\x65\xec\xab\x2f\xc8\x64\x32\x3c\x9c\
+\xcd\xb2\xbe\x72\x27\xd2\x1a\x3b\xc9\x00\xbe\xf6\x99\x99\x99\xad\
+\xcd\x3d\x1c\x74\x30\x50\xcf\xf3\x00\xb8\x7d\xf3\x59\x3e\xfa\xf1\
+\x27\x26\xf3\xbf\x73\xfc\xdd\x63\x14\x97\x96\x10\x84\x03\x07\x9e\
+\x42\xb5\x44\x5d\x8c\x40\x6b\x4d\xee\xf0\xa1\x48\x71\x6d\xb7\x78\
+\x5e\x95\x47\x1e\x7d\x8c\x17\x06\xf6\xb2\xff\xc5\x4f\x00\xf8\xfe\
+\xd4\x49\xba\x76\x76\x91\xcd\x66\x49\xa5\xda\x50\x4a\x61\x29\xeb\
+\xde\x04\x46\x6b\x66\x67\x67\x43\x60\xa2\xf3\xe0\xba\x2e\x00\x3f\
+\xfc\x72\x97\x73\x67\x7f\x46\x59\x8a\xae\xce\x4e\x6c\x3b\x49\x5b\
+\x5b\x92\x44\x22\x81\x52\xf1\xa4\x8e\x5b\xe4\x7b\x1c\x3c\xf8\x74\
+\x93\x7a\x31\x06\x5f\xfb\xfc\x75\xe3\x4f\x94\x05\x95\x8a\x43\x32\
+\x69\x07\xf3\xb1\xac\xe8\xcc\x68\xad\x31\x46\x6f\x4f\x50\xad\x56\
+\xd1\x5a\x87\xf6\x04\xfb\x1e\x15\xcc\xc5\x18\x83\x36\x3e\xc6\x37\
+\x24\x93\x36\x89\x44\xa2\x1e\x1b\x4a\x45\xef\x35\x38\x1b\x27\xd8\
+\xdc\xdc\x44\x6b\x1d\x78\xa3\x68\x52\xa8\x94\x42\x29\x85\x6d\xdb\
+\xc1\xef\xb0\xbb\xda\xdc\x1a\xb3\xab\xb1\x9a\x26\x52\x28\x14\x40\
+\x0c\x22\x06\x63\xea\xab\x51\xa9\xa5\x14\xad\x32\x83\x38\x21\xcc\
+\x26\xd9\xbe\x83\x8b\xbf\x9e\x65\x47\x9b\x0a\x22\x41\x24\x8a\x68\
+\x23\x26\x0c\x6a\x1a\x94\xab\xc8\xef\x1a\xa8\x11\xc3\xe5\x85\x2b\
+\xd4\xf7\x78\x73\xbd\xf2\x80\x1f\xfd\x7b\xad\x0f\x80\x27\x5b\xd3\
+\xd4\x06\xba\xc3\x95\xfc\x8f\xff\x64\x3c\x60\x05\x58\xf9\x07\xbb\
+\x78\x04\xf0\x58\x0d\x4c\x09\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
+\x42\x60\x82\
+\x00\x00\x04\x4f\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\
+\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd7\x09\x08\x0c\x24\x01\x84\xbe\xe4\xfd\x00\x00\x00\x0f\x74\x45\
+\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x69\x64\x20\x6c\x6f\x67\
+\x6f\x86\xc6\x77\xb9\x00\x00\x03\xc1\x49\x44\x41\x54\x38\xcb\xad\
+\x95\x4b\x68\x5c\x55\x18\xc7\x7f\xe7\xcc\xcd\x4c\x26\x89\xd5\x98\
+\x92\x96\x36\x4e\xd3\x18\xd1\xb6\x98\xfa\x98\x26\xa8\xf8\xc0\x42\
+\xa5\x49\x4b\x7d\x60\x75\xa3\x28\x2a\xa5\x10\x1f\x50\x95\x6e\x14\
+\xba\x91\x2e\x04\x17\x8a\xee\x7c\xe0\x83\x2a\x42\xab\xd0\x04\x52\
+\x92\x58\x8a\x8b\xf4\x11\xfb\x48\x66\x48\x86\x56\xdb\x8a\x64\xd3\
+\x36\x36\x93\xcc\xbd\x33\x77\xce\xdf\xc5\xcc\x24\x69\x1a\x5c\x68\
+\xff\xf0\x71\xee\xe2\xf0\x3f\xbf\xef\x3b\xdf\x77\x2e\x80\xfa\xfa\
+\x7b\x74\x23\x56\xe6\xab\xaf\xbf\x47\x37\x42\x65\xf3\x59\x19\x40\
+\x92\x18\x4d\x9f\x7e\x45\xc2\x97\x54\x90\x08\x24\x85\xc2\x15\x91\
+\x9c\x04\xc6\x60\x9d\xa3\x0a\xc9\x93\x51\x54\x52\x14\x88\x4b\x8a\
+\x6d\xb8\xaf\xe3\x63\x63\x4c\xc5\x0f\x00\xaf\xaf\xbf\x07\x4a\xee\
+\x01\x98\x40\x92\x2f\x91\x07\x15\x40\x61\xf0\xe7\x87\x5b\x9c\xff\
+\xfb\xb3\xb8\x20\x81\xad\xbd\x60\xe2\x77\xfe\xec\x2d\xdf\x31\x08\
+\x08\xc9\x48\x32\xe5\xcc\xd9\xb4\xb1\xf3\x7a\xe2\x33\xa3\x27\xb7\
+\x83\xc9\x39\xa7\x1c\x28\x90\x94\x0f\xce\xef\xd9\x12\x8f\x4e\xbc\
+\xd7\xbc\xfe\x25\x30\x11\x9c\x73\x9c\x3f\xf3\x3d\x33\xe1\xea\x8f\
+\xbc\xe5\x3b\x7e\x41\x8a\x3b\x29\xde\x91\x7c\xe0\x8b\x85\xc4\xb6\
+\x42\x0c\x26\x00\x05\x40\x20\xf0\x81\x5c\x71\x26\xf5\x5c\xcb\x3d\
+\x2f\xf0\x6b\xda\x27\x12\x0e\x11\x71\xc3\xac\x5a\xfb\x18\xca\xa5\
+\xb7\xc9\x29\x28\x65\x46\xa1\x42\x3c\x5f\xde\xa6\x8d\x9d\x48\x42\
+\x28\x3c\xf7\xf2\xab\x7d\x2e\xe7\xe3\xfc\x00\xe5\x03\x5c\xbe\xc0\
+\xc5\xe2\x1e\x7a\x5f\xdb\x45\xd3\x2d\xb5\xb4\x34\x66\x91\x35\x50\
+\x9c\x4e\x08\x42\x20\x94\x08\x81\x6b\xca\xb0\xb0\xc6\xa1\xc2\x22\
+\x0f\x25\x12\x98\x20\xc0\x06\x79\x4c\x21\xcf\x13\x4b\x37\x53\x18\
+\x8f\xf0\xc6\x27\x2b\x38\xf8\xc1\x34\x84\x79\x30\xf6\x0f\x4a\xc6\
+\x45\x49\x6e\xb1\x1a\xcf\x12\x1b\x21\x24\x70\x8e\x8b\x99\x0c\xe4\
+\x72\xa4\xee\x78\x90\xab\x26\x46\xc3\xd2\x95\x5c\xbe\xf4\x17\x83\
+\xa3\xb7\xd1\x14\x7c\x06\xd1\xc4\x3e\x24\x01\x32\xa6\x64\xbc\x90\
+\xd8\xce\x11\x97\x3a\xfc\xea\xe4\x64\xf9\x0e\x0c\x87\xe2\x09\x1a\
+\x9a\x56\x11\x4c\x4f\x51\xbf\x6c\x25\xdf\x1e\x48\x4d\x4f\xfb\xf5\
+\xef\x47\x56\xec\x3e\x50\xe2\x50\xd9\xff\xfa\x1a\xdb\xca\x49\x0e\
+\x45\x8c\xb1\xc8\x18\x96\x2c\x6d\x60\x6c\xfd\xe3\x9c\xae\x6f\x26\
+\xea\x19\xac\x42\x22\x11\xc3\xd9\xcb\xcd\xb1\x6f\x32\x6f\xe6\x05\
+\x11\x49\x16\x64\xe4\xb0\xff\x4a\x0c\x78\x78\x11\x46\xb2\x59\x4e\
+\x4d\x4d\x71\x30\xb6\x9c\x65\x89\x26\x94\x9f\x21\x56\x65\x71\xc1\
+\x0c\xb7\x36\x36\x7a\x63\x99\x8b\xef\x20\x3c\xc0\x13\x78\x47\x8f\
+\x9f\x48\x2c\x46\x3c\xdb\xc7\xbf\x9d\x3a\xf1\x24\xe0\x3b\xe7\x66\
+\x06\xcf\x5c\x59\x7d\xf0\xf0\xf8\xe7\xf1\x25\xf5\x91\xca\x9c\x1a\
+\x03\x9e\x35\xf8\x53\x57\xc2\xae\x47\x5a\xbb\xdb\x5b\xeb\x2e\x08\
+\xd5\xec\xec\xde\xf5\xe3\xfe\x1f\xf6\x71\x7b\x4b\xcb\xe2\x7d\x2c\
+\xb9\x98\x93\x62\x82\xea\x73\x13\xfe\xd3\xd1\x2a\x1b\xc9\x4f\x4f\
+\x12\x4c\x5d\x99\x8b\xec\x24\x9e\x67\xbd\xb3\x13\xfe\x56\x49\x31\
+\xa0\x0a\xe0\xa9\xed\xcf\xf3\xf5\x77\x5f\x2d\x4e\x7c\xe2\xe4\xb1\
+\x17\x4b\x23\xed\x7c\xa4\x40\xa8\xd4\xa3\xc2\x49\x32\x42\x16\xc9\
+\x93\xa8\x12\x8a\x22\x55\x03\xd5\x3b\x5f\x7f\xfb\xcb\xa1\x23\x87\
+\xe9\x78\xf8\x51\x9c\x73\xeb\x46\x86\x8f\x8f\x01\xc5\xf9\x93\x17\
+\x2b\x6f\x8e\x03\x35\x88\x1a\x50\xad\x50\x9d\xa4\x1a\xa0\x12\x71\
+\x20\x2e\xa8\xa6\x14\xa4\xd3\x69\x86\x8e\x1c\xc6\x5a\x3b\xda\xba\
+\x66\xed\xbd\x15\xea\xff\xf5\x5c\xb6\x25\xdb\x25\x49\xe3\xe3\x63\
+\xca\x66\xb3\x6a\x4b\xb6\xab\x2d\xd9\xbe\xc6\xf6\xf5\xf7\x60\x8c\
+\xe1\xd0\x40\xef\x7f\x5a\x2b\xaa\xab\xbb\x89\x4c\x66\x8c\xde\x9f\
+\xf6\x03\xa4\x0c\x50\x0f\xdc\x5c\x8e\x5a\xe6\x52\x8c\x02\x16\x70\
+\xb3\x13\x33\xa7\x22\x10\x00\xf9\xb6\x64\x7b\xff\xa9\x63\x43\x00\
+\x0c\x0c\x0c\xf0\xd6\xbb\xbb\x33\xc6\x98\x6d\x1e\x70\x15\xc8\x01\
+\x97\x00\xaf\x7c\xd3\xd1\xf2\xb7\x2d\xff\x72\xae\xfd\xed\x94\x0e\
+\x2b\x56\x5e\xb6\xf5\x1b\x3a\x78\x66\x6b\x17\xdd\xdd\xdd\x7f\xdf\
+\x7f\xf7\xba\xf4\xf0\x48\x6a\xaf\x57\xde\x50\xa4\xf4\x54\x32\x8f\
+\xce\x56\xee\xa0\xd2\x3d\x0b\x8c\x2b\xd9\x70\xfa\xf8\x51\x0b\x1c\
+\x48\x26\x93\x5b\x3a\x3b\x3b\xef\x1a\x1e\x49\x35\x18\x6e\x90\xda\
+\x92\xed\x5d\xc0\xa7\x65\xc0\xbd\xff\x00\x7c\x02\xcd\x92\x88\x3c\
+\x0a\x8c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x0b\xe5\
+\x6f\
+\x70\x65\x6e\x46\x69\x6c\x65\x3d\x4f\x70\x65\x6e\x0a\x6f\x70\x65\
+\x6e\x46\x69\x6c\x65\x44\x65\x74\x61\x69\x6c\x3d\x4f\x70\x65\x6e\
+\x20\x69\x6d\x61\x67\x65\x20\x6f\x72\x20\x6c\x61\x62\x65\x6c\x20\
+\x66\x69\x6c\x65\x0a\x71\x75\x69\x74\x3d\x51\x75\x69\x74\x0a\x71\
+\x75\x69\x74\x41\x70\x70\x3d\x51\x75\x69\x74\x20\x61\x70\x70\x6c\
+\x69\x63\x61\x74\x69\x6f\x6e\x0a\x6f\x70\x65\x6e\x44\x69\x72\x3d\
+\x4f\x70\x65\x6e\x20\x44\x69\x72\x0a\x6f\x70\x65\x6e\x44\x61\x74\
+\x61\x73\x65\x74\x44\x69\x72\x3d\x4f\x70\x65\x6e\x20\x44\x61\x74\
+\x61\x73\x65\x74\x44\x69\x72\x0a\x63\x6f\x70\x79\x50\x72\x65\x76\
+\x42\x6f\x75\x6e\x64\x69\x6e\x67\x3d\x43\x6f\x70\x79\x20\x70\x72\
+\x65\x76\x69\x6f\x75\x73\x20\x42\x6f\x75\x6e\x64\x69\x6e\x67\x20\
+\x42\x6f\x78\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x20\x63\x75\x72\
+\x72\x65\x6e\x74\x20\x69\x6d\x61\x67\x65\x20\x0a\x63\x68\x61\x6e\
+\x67\x65\x53\x61\x76\x65\x64\x41\x6e\x6e\x6f\x74\x61\x74\x69\x6f\
+\x6e\x44\x69\x72\x3d\x43\x68\x61\x6e\x67\x65\x20\x64\x65\x66\x61\
+\x75\x6c\x74\x20\x73\x61\x76\x65\x64\x20\x41\x6e\x6e\x6f\x74\x61\
+\x74\x69\x6f\x6e\x20\x64\x69\x72\x0a\x6f\x70\x65\x6e\x41\x6e\x6e\
+\x6f\x74\x61\x74\x69\x6f\x6e\x3d\x4f\x70\x65\x6e\x20\x41\x6e\x6e\
+\x6f\x74\x61\x74\x69\x6f\x6e\x0a\x6f\x70\x65\x6e\x41\x6e\x6e\x6f\
+\x74\x61\x74\x69\x6f\x6e\x44\x65\x74\x61\x69\x6c\x3d\x4f\x70\x65\
+\x6e\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x20\
+\x66\x69\x6c\x65\x0a\x63\x68\x61\x6e\x67\x65\x53\x61\x76\x65\x44\
+\x69\x72\x3d\x43\x68\x61\x6e\x67\x65\x20\x53\x61\x76\x65\x20\x44\
+\x69\x72\x0a\x6e\x65\x78\x74\x49\x6d\x67\x3d\x4e\x65\x78\x74\x20\
+\x49\x6d\x61\x67\x65\x0a\x6e\x65\x78\x74\x49\x6d\x67\x44\x65\x74\
+\x61\x69\x6c\x3d\x4f\x70\x65\x6e\x20\x74\x68\x65\x20\x6e\x65\x78\
+\x74\x20\x49\x6d\x61\x67\x65\x0a\x70\x72\x65\x76\x49\x6d\x67\x3d\
+\x50\x72\x65\x76\x20\x49\x6d\x61\x67\x65\x0a\x70\x72\x65\x76\x49\
+\x6d\x67\x44\x65\x74\x61\x69\x6c\x3d\x4f\x70\x65\x6e\x20\x74\x68\
+\x65\x20\x70\x72\x65\x76\x69\x6f\x75\x73\x20\x49\x6d\x61\x67\x65\
+\x0a\x76\x65\x72\x69\x66\x79\x49\x6d\x67\x3d\x56\x65\x72\x69\x66\
+\x79\x20\x49\x6d\x61\x67\x65\x0a\x76\x65\x72\x69\x66\x79\x49\x6d\
+\x67\x44\x65\x74\x61\x69\x6c\x3d\x56\x65\x72\x69\x66\x79\x20\x49\
+\x6d\x61\x67\x65\x0a\x73\x61\x76\x65\x3d\x43\x68\x65\x63\x6b\x0a\
+\x73\x61\x76\x65\x44\x65\x74\x61\x69\x6c\x3d\x53\x61\x76\x65\x20\
+\x74\x68\x65\x20\x6c\x61\x62\x65\x6c\x73\x20\x74\x6f\x20\x61\x20\
+\x66\x69\x6c\x65\x0a\x63\x68\x61\x6e\x67\x65\x53\x61\x76\x65\x46\
+\x6f\x72\x6d\x61\x74\x3d\x43\x68\x61\x6e\x67\x65\x20\x73\x61\x76\
+\x65\x20\x66\x6f\x72\x6d\x61\x74\x0a\x73\x61\x76\x65\x41\x73\x3d\
+\x53\x61\x76\x65\x20\x41\x73\x0a\x73\x61\x76\x65\x41\x73\x44\x65\
+\x74\x61\x69\x6c\x3d\x53\x61\x76\x65\x20\x74\x68\x65\x20\x6c\x61\
+\x62\x65\x6c\x73\x20\x74\x6f\x20\x61\x20\x64\x69\x66\x66\x65\x72\
+\x65\x6e\x74\x20\x66\x69\x6c\x65\x0a\x63\x6c\x6f\x73\x65\x43\x75\
+\x72\x3d\x43\x6c\x6f\x73\x65\x0a\x63\x6c\x6f\x73\x65\x43\x75\x72\
+\x44\x65\x74\x61\x69\x6c\x3d\x43\x6c\x6f\x73\x65\x20\x74\x68\x65\
+\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x66\x69\x6c\x65\x0a\x64\x65\
+\x6c\x65\x74\x65\x49\x6d\x67\x3d\x44\x65\x6c\x65\x74\x65\x20\x63\
+\x75\x72\x72\x65\x6e\x74\x20\x69\x6d\x61\x67\x65\x0a\x64\x65\x6c\
+\x65\x74\x65\x49\x6d\x67\x44\x65\x74\x61\x69\x6c\x3d\x44\x65\x6c\
+\x65\x74\x65\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\
+\x69\x6d\x61\x67\x65\x0a\x72\x65\x73\x65\x74\x41\x6c\x6c\x3d\x52\
+\x65\x73\x65\x74\x20\x49\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x61\
+\x6e\x64\x20\x53\x61\x76\x65\x20\x44\x69\x72\x0a\x72\x65\x73\x65\
+\x74\x41\x6c\x6c\x44\x65\x74\x61\x69\x6c\x3d\x52\x65\x73\x65\x74\
+\x20\x41\x6c\x6c\x0a\x62\x6f\x78\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\
+\x72\x3d\x42\x6f\x78\x20\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\
+\x0a\x62\x6f\x78\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x44\x65\x74\
+\x61\x69\x6c\x3d\x43\x68\x6f\x6f\x73\x65\x20\x42\x6f\x78\x20\x6c\
+\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x0a\x63\x72\x74\x42\x6f\x78\
+\x3d\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x42\x6f\x78\x0a\
+\x63\x72\x74\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\x44\x72\x61\
+\x77\x20\x61\x20\x6e\x65\x77\x20\x62\x6f\x78\x0a\x64\x65\x6c\x42\
+\x6f\x78\x3d\x44\x65\x6c\x65\x74\x65\x20\x52\x65\x63\x74\x42\x6f\
+\x78\x0a\x64\x65\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\x52\
+\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x62\x6f\x78\x0a\x64\x75\
+\x70\x42\x6f\x78\x3d\x44\x75\x70\x6c\x69\x63\x61\x74\x65\x20\x52\
+\x65\x63\x74\x42\x6f\x78\x0a\x64\x75\x70\x42\x6f\x78\x44\x65\x74\
+\x61\x69\x6c\x3d\x43\x72\x65\x61\x74\x65\x20\x61\x20\x64\x75\x70\
+\x6c\x69\x63\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x65\
+\x6c\x65\x63\x74\x65\x64\x20\x62\x6f\x78\x0a\x74\x75\x74\x6f\x72\
+\x69\x61\x6c\x3d\x50\x61\x64\x64\x6c\x65\x4f\x43\x52\x20\x75\x72\
+\x6c\x0a\x74\x75\x74\x6f\x72\x69\x61\x6c\x44\x65\x74\x61\x69\x6c\
+\x3d\x53\x68\x6f\x77\x20\x64\x65\x6d\x6f\x0a\x69\x6e\x66\x6f\x3d\
+\x49\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x0a\x7a\x6f\x6f\x6d\
+\x69\x6e\x3d\x5a\x6f\x6f\x6d\x20\x49\x6e\x0a\x7a\x6f\x6f\x6d\x69\
+\x6e\x44\x65\x74\x61\x69\x6c\x3d\x49\x6e\x63\x72\x65\x61\x73\x65\
+\x20\x7a\x6f\x6f\x6d\x20\x6c\x65\x76\x65\x6c\x0a\x7a\x6f\x6f\x6d\
+\x6f\x75\x74\x3d\x5a\x6f\x6f\x6d\x20\x4f\x75\x74\x0a\x7a\x6f\x6f\
+\x6d\x6f\x75\x74\x44\x65\x74\x61\x69\x6c\x3d\x44\x65\x63\x72\x65\
+\x61\x73\x65\x20\x7a\x6f\x6f\x6d\x20\x6c\x65\x76\x65\x6c\x0a\x6f\
+\x72\x69\x67\x69\x6e\x61\x6c\x73\x69\x7a\x65\x3d\x4f\x72\x69\x67\
+\x69\x6e\x61\x6c\x20\x73\x69\x7a\x65\x0a\x6f\x72\x69\x67\x69\x6e\
+\x61\x6c\x73\x69\x7a\x65\x44\x65\x74\x61\x69\x6c\x3d\x5a\x6f\x6f\
+\x6d\x20\x74\x6f\x20\x6f\x72\x69\x67\x69\x6e\x61\x6c\x20\x73\x69\
+\x7a\x65\x0a\x66\x69\x74\x57\x69\x6e\x3d\x46\x69\x74\x20\x57\x69\
+\x6e\x64\x6f\x77\x0a\x66\x69\x74\x57\x69\x6e\x44\x65\x74\x61\x69\
+\x6c\x3d\x5a\x6f\x6f\x6d\x20\x66\x6f\x6c\x6c\x6f\x77\x73\x20\x77\
+\x69\x6e\x64\x6f\x77\x20\x73\x69\x7a\x65\x0a\x66\x69\x74\x57\x69\
+\x64\x74\x68\x3d\x46\x69\x74\x20\x57\x69\x64\x74\x68\x0a\x66\x69\
+\x74\x57\x69\x64\x74\x68\x44\x65\x74\x61\x69\x6c\x3d\x5a\x6f\x6f\
+\x6d\x20\x66\x6f\x6c\x6c\x6f\x77\x73\x20\x77\x69\x6e\x64\x6f\x77\
+\x20\x77\x69\x64\x74\x68\x0a\x65\x64\x69\x74\x4c\x61\x62\x65\x6c\
+\x3d\x45\x64\x69\x74\x20\x4c\x61\x62\x65\x6c\x0a\x65\x64\x69\x74\
+\x4c\x61\x62\x65\x6c\x44\x65\x74\x61\x69\x6c\x3d\x4d\x6f\x64\x69\
+\x66\x79\x20\x74\x68\x65\x20\x6c\x61\x62\x65\x6c\x20\x6f\x66\x20\
+\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x42\x6f\x78\
+\x0a\x73\x68\x61\x70\x65\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x3d\
+\x53\x68\x61\x70\x65\x20\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\
+\x0a\x73\x68\x61\x70\x65\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x44\
+\x65\x74\x61\x69\x6c\x3d\x43\x68\x61\x6e\x67\x65\x20\x74\x68\x65\
+\x20\x6c\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\
+\x74\x68\x69\x73\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x73\x68\
+\x61\x70\x65\x0a\x73\x68\x61\x70\x65\x46\x69\x6c\x6c\x43\x6f\x6c\
+\x6f\x72\x3d\x53\x68\x61\x70\x65\x20\x46\x69\x6c\x6c\x20\x43\x6f\
+\x6c\x6f\x72\x0a\x73\x68\x61\x70\x65\x46\x69\x6c\x6c\x43\x6f\x6c\
+\x6f\x72\x44\x65\x74\x61\x69\x6c\x3d\x43\x68\x61\x6e\x67\x65\x20\
+\x74\x68\x65\x20\x66\x69\x6c\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x66\
+\x6f\x72\x20\x74\x68\x69\x73\x20\x73\x70\x65\x63\x69\x66\x69\x63\
+\x20\x73\x68\x61\x70\x65\x0a\x73\x68\x6f\x77\x48\x69\x64\x65\x3d\
+\x53\x68\x6f\x77\x2f\x48\x69\x64\x65\x20\x4c\x61\x62\x65\x6c\x20\
+\x50\x61\x6e\x65\x6c\x0a\x75\x73\x65\x44\x65\x66\x61\x75\x6c\x74\
+\x4c\x61\x62\x65\x6c\x3d\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\
+\x74\x20\x6c\x61\x62\x65\x6c\x0a\x75\x73\x65\x44\x69\x66\x66\x69\
+\x63\x75\x6c\x74\x3d\x44\x69\x66\x66\x69\x63\x75\x6c\x74\x0a\x62\
+\x6f\x78\x4c\x61\x62\x65\x6c\x54\x65\x78\x74\x3d\x42\x6f\x78\x20\
+\x4c\x61\x62\x65\x6c\x73\x0a\x6c\x61\x62\x65\x6c\x73\x3d\x4c\x61\
+\x62\x65\x6c\x73\x0a\x61\x75\x74\x6f\x53\x61\x76\x65\x4d\x6f\x64\
+\x65\x3d\x41\x75\x74\x6f\x20\x53\x61\x76\x65\x20\x6d\x6f\x64\x65\
+\x0a\x73\x69\x6e\x67\x6c\x65\x43\x6c\x73\x4d\x6f\x64\x65\x3d\x53\
+\x69\x6e\x67\x6c\x65\x20\x43\x6c\x61\x73\x73\x20\x4d\x6f\x64\x65\
+\x0a\x64\x69\x73\x70\x6c\x61\x79\x4c\x61\x62\x65\x6c\x3d\x44\x69\
+\x73\x70\x6c\x61\x79\x20\x4c\x61\x62\x65\x6c\x73\x0a\x66\x69\x6c\
+\x65\x4c\x69\x73\x74\x3d\x46\x69\x6c\x65\x20\x4c\x69\x73\x74\x0a\
+\x66\x69\x6c\x65\x73\x3d\x46\x69\x6c\x65\x73\x0a\x61\x64\x76\x61\
+\x6e\x63\x65\x64\x4d\x6f\x64\x65\x3d\x41\x64\x76\x61\x6e\x63\x65\
+\x64\x20\x4d\x6f\x64\x65\x0a\x61\x64\x76\x61\x6e\x63\x65\x64\x4d\
+\x6f\x64\x65\x44\x65\x74\x61\x69\x6c\x3d\x53\x77\x74\x69\x63\x68\
+\x20\x74\x6f\x20\x61\x64\x76\x61\x6e\x63\x65\x64\x20\x6d\x6f\x64\
+\x65\x0a\x73\x68\x6f\x77\x41\x6c\x6c\x42\x6f\x78\x44\x65\x74\x61\
+\x69\x6c\x3d\x53\x68\x6f\x77\x20\x61\x6c\x6c\x20\x62\x6f\x75\x6e\
+\x64\x69\x6e\x67\x20\x62\x6f\x78\x65\x73\x0a\x68\x69\x64\x65\x41\
+\x6c\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\x48\x69\x64\x65\
+\x20\x61\x6c\x6c\x20\x62\x6f\x75\x6e\x64\x69\x6e\x67\x20\x62\x6f\
+\x78\x65\x73\x0a\x61\x6e\x6e\x6f\x50\x61\x6e\x65\x6c\x3d\x61\x6e\
+\x6e\x6f\x20\x50\x61\x6e\x65\x6c\x0a\x61\x6e\x6e\x6f\x3d\x61\x6e\
+\x6e\x6f\x0a\x61\x64\x64\x4e\x65\x77\x42\x62\x6f\x78\x3d\x6e\x65\
+\x77\x20\x62\x62\x6f\x78\x0a\x72\x65\x4c\x61\x62\x65\x6c\x3d\x72\
+\x65\x4c\x61\x62\x65\x6c\x0a\x63\x68\x6f\x6f\x73\x65\x6d\x6f\x64\
+\x65\x6c\x3d\x43\x68\x6f\x6f\x73\x65\x20\x4f\x43\x52\x20\x6d\x6f\
+\x64\x65\x6c\x0a\x74\x69\x70\x63\x68\x6f\x6f\x73\x65\x6d\x6f\x64\
+\x65\x6c\x3d\x43\x68\x6f\x6f\x73\x65\x20\x4f\x43\x52\x20\x6d\x6f\
+\x64\x65\x6c\x20\x66\x72\x6f\x6d\x20\x64\x69\x72\x0a\x49\x6d\x61\
+\x67\x65\x52\x65\x73\x69\x7a\x65\x3d\x49\x6d\x61\x67\x65\x20\x52\
+\x65\x73\x69\x7a\x65\x0a\x49\x52\x3d\x49\x6d\x61\x67\x65\x20\x52\
+\x65\x73\x69\x7a\x65\x0a\x61\x75\x74\x6f\x52\x65\x63\x6f\x67\x6e\
+\x69\x74\x69\x6f\x6e\x3d\x41\x75\x74\x6f\x20\x52\x65\x63\x6f\x67\
+\x6e\x69\x74\x69\x6f\x6e\x0a\x72\x65\x52\x65\x63\x6f\x67\x6e\x69\
+\x74\x69\x6f\x6e\x3d\x52\x65\x2d\x72\x65\x63\x6f\x67\x6e\x69\x74\
+\x69\x6f\x6e\x0a\x6d\x66\x69\x6c\x65\x3d\x46\x69\x6c\x65\x0a\x6d\
+\x65\x64\x69\x74\x3d\x45\x64\x69\x74\x0a\x6d\x76\x69\x65\x77\x3d\
+\x56\x69\x65\x77\x0a\x6d\x68\x65\x6c\x70\x3d\x48\x65\x6c\x70\x0a\
+\x69\x63\x6f\x6e\x4c\x69\x73\x74\x3d\x49\x63\x6f\x6e\x20\x4c\x69\
+\x73\x74\x0a\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x42\x6f\x78\x70\
+\x6f\x73\x69\x74\x69\x6f\x6e\x3d\x44\x65\x74\x65\x63\x74\x69\x6f\
+\x6e\x20\x62\x6f\x78\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x0a\x72\
+\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x52\x65\x73\x75\x6c\x74\
+\x3d\x52\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x20\x72\x65\x73\
+\x75\x6c\x74\x0a\x63\x72\x65\x61\x74\x50\x6f\x6c\x79\x67\x6f\x6e\
+\x3d\x43\x72\x65\x61\x74\x65\x20\x51\x75\x61\x64\x72\x69\x6c\x61\
+\x74\x65\x72\x61\x6c\x0a\x72\x6f\x74\x61\x74\x65\x4c\x65\x66\x74\
+\x3d\x4c\x65\x66\x74\x20\x74\x75\x72\x6e\x20\x39\x30\x20\x64\x65\
+\x67\x72\x65\x65\x73\x0a\x72\x6f\x74\x61\x74\x65\x52\x69\x67\x68\
+\x74\x3d\x52\x69\x67\x68\x74\x20\x74\x75\x72\x6e\x20\x39\x30\x20\
+\x64\x65\x67\x72\x65\x65\x73\x0a\x64\x72\x61\x77\x53\x71\x75\x61\
+\x72\x65\x73\x3d\x44\x72\x61\x77\x20\x53\x71\x75\x61\x72\x65\x73\
+\x0a\x73\x61\x76\x65\x52\x65\x63\x3d\x45\x78\x70\x6f\x72\x74\x20\
+\x52\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x20\x52\x65\x73\x75\
+\x6c\x74\x0a\x74\x65\x6d\x70\x4c\x61\x62\x65\x6c\x3d\x54\x45\x4d\
+\x50\x4f\x52\x41\x52\x59\x0a\x6e\x75\x6c\x6c\x4c\x61\x62\x65\x6c\
+\x3d\x4e\x55\x4c\x4c\x0a\x73\x74\x65\x70\x73\x3d\x53\x74\x65\x70\
+\x73\x0a\x6b\x65\x79\x73\x3d\x53\x68\x6f\x72\x74\x63\x75\x74\x20\
+\x4b\x65\x79\x73\x0a\x63\x68\x6f\x73\x65\x4d\x6f\x64\x65\x6c\x4c\
+\x67\x3d\x43\x68\x6f\x6f\x73\x65\x20\x4d\x6f\x64\x65\x6c\x20\x4c\
+\x61\x6e\x67\x75\x61\x67\x65\x0a\x63\x61\x6e\x63\x65\x6c\x3d\x43\
+\x61\x6e\x63\x65\x6c\x0a\x6f\x6b\x3d\x4f\x4b\x0a\x61\x75\x74\x6f\
+\x6c\x61\x62\x65\x6c\x69\x6e\x67\x3d\x41\x75\x74\x6f\x6d\x61\x74\
+\x69\x63\x20\x4c\x61\x62\x65\x6c\x69\x6e\x67\x0a\x68\x69\x64\x65\
+\x42\x6f\x78\x3d\x48\x69\x64\x65\x20\x41\x6c\x6c\x20\x42\x6f\x78\
+\x0a\x73\x68\x6f\x77\x42\x6f\x78\x3d\x53\x68\x6f\x77\x20\x41\x6c\
+\x6c\x20\x42\x6f\x78\x0a\x73\x61\x76\x65\x4c\x61\x62\x65\x6c\x3d\
+\x45\x78\x70\x6f\x72\x74\x20\x4c\x61\x62\x65\x6c\x0a\x73\x69\x6e\
+\x67\x6c\x65\x52\x65\x3d\x52\x65\x2d\x72\x65\x63\x6f\x67\x6e\x69\
+\x74\x69\x6f\x6e\x20\x52\x65\x63\x74\x42\x6f\x78\x0a\x6c\x61\x62\
+\x65\x6c\x44\x69\x61\x6c\x6f\x67\x4f\x70\x74\x69\x6f\x6e\x3d\x50\
+\x6f\x70\x2d\x75\x70\x20\x4c\x61\x62\x65\x6c\x20\x49\x6e\x70\x75\
+\x74\x20\x44\x69\x61\x6c\x6f\x67\x0a\x75\x6e\x64\x6f\x3d\x55\x6e\
+\x64\x6f\x0a\x75\x6e\x64\x6f\x4c\x61\x73\x74\x50\x6f\x69\x6e\x74\
+\x3d\x55\x6e\x64\x6f\x20\x4c\x61\x73\x74\x20\x50\x6f\x69\x6e\x74\
+\x0a\x61\x75\x74\x6f\x53\x61\x76\x65\x4d\x6f\x64\x65\x3d\x41\x75\
+\x74\x6f\x20\x45\x78\x70\x6f\x72\x74\x20\x4c\x61\x62\x65\x6c\x20\
+\x4d\x6f\x64\x65\
+\x00\x00\x08\x96\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x08\x4b\x49\x44\x41\x54\x68\x81\xed\x99\x59\x6c\
+\x5c\xd5\x1d\x87\xbf\xbb\xcc\xea\x59\x3c\xbb\x97\xc4\x4b\xbc\x11\
+\x27\x26\x09\x01\x15\x2a\x14\xd4\x96\x50\xa9\x0b\x11\x09\xa8\x55\
+\x91\x20\x2f\x54\x95\xda\xbe\x54\x7d\xaa\x5a\x35\x20\x2a\xf1\x90\
+\x87\x2a\x40\xa1\x2a\x05\x4a\x68\x1a\x22\x91\x92\x86\xe0\x42\xd2\
+\x34\x24\x61\xb1\xe3\x38\xb6\x63\x3b\xc1\x8e\x67\xbc\x3b\x33\xe3\
+\x75\x3c\xcb\x9d\x99\xbb\xf4\xc1\xa4\x35\x59\x88\x1d\x4c\xcd\x83\
+\x3f\xe9\x3c\xcd\x3d\x67\xbe\xdf\x3d\x77\xce\xcc\xff\x3f\xb0\xc2\
+\x0a\x2b\xac\xb0\xc2\x17\x40\x58\x6e\x81\x9b\xb2\x0b\x91\x20\x15\
+\x38\x88\xf2\x18\xa9\xab\x5f\x16\x97\xc3\x69\xc1\xbc\x48\x0d\x21\
+\x3e\x10\x4c\x42\x1f\x09\x22\x3c\xce\xba\xab\x2f\x91\x96\xc3\xeb\
+\xa6\x18\x08\x04\xf9\x19\x08\x07\x03\x45\xc1\xca\xfa\xda\x3a\xd2\
+\x8a\x52\xa0\x8c\x2a\xe5\xb4\x70\x04\xc8\x5e\xb9\x54\x5e\x46\xcd\
+\xeb\xf3\xbc\x6d\xb5\xf0\xac\xfa\x8a\xc5\x6a\xfa\x56\x79\xd5\x2a\
+\xbe\x53\xbd\x86\x98\xa2\x70\x49\x17\x11\xf2\x92\xd5\x40\x0b\x01\
+\x33\x57\x2e\xff\x4a\x05\x90\xf6\x58\x1f\x13\x54\xfd\x59\x7f\x49\
+\xd0\xb5\xb1\xae\x8c\x9d\x95\x95\x1c\x8b\x46\x79\xbf\x3b\xcc\xec\
+\xe5\x64\xc6\x38\x66\x9c\x02\x94\xf9\x73\xbe\x12\x01\x6c\x7b\x6c\
+\xab\x54\x55\x7c\xc5\x24\x99\xee\x5f\x5d\x5b\xc4\xb6\xba\x4a\xb6\
+\x95\x96\xb2\x6f\x70\x90\xf7\x3a\xc3\x44\x7b\xc7\x33\xfa\x5f\xb5\
+\x17\xe9\xd7\x4f\x00\xa3\xf3\xe7\x2e\x7b\x00\xeb\x6e\xf7\x8f\xf5\
+\x1c\xbb\x7d\xa5\x2e\xe7\xda\xba\x12\x76\x56\x95\x53\xe3\x32\x73\
+\x70\x70\x84\x77\x3a\xc3\x44\x7b\x26\xb2\xfa\x81\xfc\xcb\x7a\xbb\
+\x7a\x18\xf8\x08\x50\xe7\xcf\x5f\xb6\x00\xce\xdd\x4e\xbf\xaa\x99\
+\xfe\x28\x49\xd2\xf6\xe2\x3a\x1f\x5b\xd7\xae\xe6\xc1\x32\x1b\x79\
+\x71\x98\xc6\x51\x0f\x6f\x75\x86\xb9\xdc\x3d\xa1\xaa\x87\x73\xaf\
+\x69\x2d\xf9\x43\xc0\x87\x40\xee\xea\x75\x96\x25\x80\xfd\x99\xd0\
+\x36\x2d\xaf\xbf\xe4\x0a\xd8\xfc\x55\xeb\x82\x3c\x5a\x53\x46\xd0\
+\xdb\xc7\x34\x59\x7a\x46\x6b\x38\xd0\xd6\xc7\x58\xc7\xa4\xaa\x1e\
+\xc9\xbe\xa6\x9d\x56\xfe\x0e\x9c\x66\xde\xc9\x33\x9f\xeb\x07\xd8\
+\x55\x61\xb5\xca\xd9\x90\xf2\xeb\xb1\x81\x25\x35\xdf\x55\x62\x77\
+\x48\xfa\x6e\x51\x10\x7f\x52\xb4\xd6\x2f\xdc\x53\x5b\xc4\xf6\x4a\
+\x3b\x31\xf3\x09\x14\xdc\x0c\x8c\xae\x67\x5f\x7b\x3f\xa3\x1d\x93\
+\x46\xfe\xb4\xf2\x56\xfe\x74\xfa\x2d\xe0\x24\x90\xb9\xd1\x92\xd7\
+\x7c\x13\x17\x3e\x5d\x5c\xae\x6b\xe2\x49\x41\x14\xca\xf4\xa4\xfe\
+\xb1\x31\xaa\x6d\x4b\xee\x8d\xc6\xbe\xa8\xbb\xf3\xa9\xd2\x7b\x04\
+\x43\xd8\x6b\x2d\x34\x57\x95\x37\x78\xf9\xc1\x6d\xa5\x54\x06\xe2\
+\x8c\xc9\x2d\x14\xe8\x41\x62\x97\x37\xf1\xfa\xf9\x61\x86\x5a\xc7\
+\xc9\x36\x25\x0f\x67\x0e\x4d\xfd\x05\x38\xc6\xbc\x23\xf3\x7a\x5c\
+\xb3\x03\x86\x6a\x7e\xc2\x19\xb4\x96\x15\xd7\xbb\x18\x39\x3f\x73\
+\x77\x4a\x4d\x35\x59\xb7\xb8\xbf\xa9\x9c\x9c\x89\xdc\x92\xf9\x9e\
+\x6a\x8b\x7b\x32\xf7\xa4\x80\xf0\x4b\xef\x1a\xa7\xd4\x50\xef\xe5\
+\xe1\x2a\x0f\x82\xf3\x13\xe2\xe2\x28\x36\xdd\x47\x32\xbe\x99\xbf\
+\x75\x8e\x30\x72\x76\x9a\x5c\xab\xf2\x5e\xe6\xd0\xd4\x3e\xe0\xf8\
+\xcd\xe4\xaf\x1b\x40\xcc\x4a\x26\x51\x17\x59\xef\x75\xe1\xdd\x6c\
+\xa5\x4b\x8b\x57\x24\x75\xf9\x38\xb0\xe8\x10\x85\xbf\xa9\xdc\x20\
+\x44\xf5\xd7\xcd\x2e\xeb\xfa\xe2\xf5\x6e\xb6\xd6\xf8\xb9\xbb\x4c\
+\x27\x65\xb9\x40\x96\x04\x66\xdd\x4d\x26\xb6\x91\x57\xce\x8f\x31\
+\x7c\x66\x86\x5c\x47\xe6\xfd\xf4\x9b\xf1\xd7\x80\x7f\x01\x53\x0b\
+\x79\x8f\x6b\x7e\x4a\x38\xbe\x5e\x38\x94\x4f\xf3\x53\xd5\x2b\x0b\
+\x8f\xd7\x17\x33\x61\x17\x99\x49\xa9\x85\x86\xcd\xb4\xc3\x70\xcb\
+\x87\xb5\xbe\xf4\xe4\x4d\x57\xdd\xb5\xce\xec\xbb\xd7\xf3\x3b\x11\
+\xf1\x55\x4f\x95\xa3\xe8\xf6\x3b\x03\xec\x6c\x08\xb1\xa6\x78\x96\
+\xac\x39\x8a\x86\x82\xa0\x59\x98\x8d\x35\xf0\x6a\x7b\x9c\xa1\xe6\
+\x69\xb2\x9d\xc9\x53\xc9\x03\x63\x7f\x66\xee\xb1\x59\xf0\x23\x7b\
+\x4d\x80\xf4\x07\xd3\x13\xf6\x3b\xfc\x5b\x74\x49\xaa\xf4\x15\x59\
+\xf8\xf6\x6a\x3f\x63\x26\x83\x44\x52\x77\x21\xcb\x3b\x64\x93\xf0\
+\x76\x6e\x30\x3d\x71\xa3\x05\x03\xbf\x5a\xb7\xd1\x96\xd3\xdf\xb5\
+\x14\x98\x1e\x2a\xd9\xe4\x11\xbf\xbb\x21\xc8\x83\x35\x2e\xac\xee\
+\x69\x54\x29\x85\x4e\x0e\x43\x17\x48\xc6\x6b\x78\xbd\x7d\x9a\xe1\
+\x33\x09\xb2\x17\x53\xcd\x89\xfd\xc3\x7f\x02\xde\x03\x2e\x2f\x54\
+\xfe\xba\x01\x00\x0a\xee\x0a\x0c\x6a\x0a\x3b\x33\x1e\x91\xfb\xcb\
+\xaa\xd9\xe8\xf7\x32\x20\x27\x99\x4d\xea\x2e\xdd\x6e\x79\x44\x74\
+\xca\x8d\xb9\x48\x32\xfe\x99\x49\x8f\x3c\x22\x05\xbf\x27\xfe\x56\
+\x34\x84\xbd\xee\x32\x5b\x51\xcd\xe6\x42\x7e\xb8\xce\x47\xc3\x6a\
+\x13\xa2\x2d\x8d\x26\x28\xe8\x64\xd1\x75\x9d\xd9\x68\x25\xfb\xce\
+\x27\x19\x6a\x4e\x90\xb9\x98\x6e\x9d\xd9\xd7\xff\x02\x73\x77\x7e\
+\x64\x31\xf2\x37\x0c\x90\x6e\x1e\xef\xb7\x6f\x0c\xee\xd0\x4c\x52\
+\xc8\xe1\xcb\x70\x5f\xc9\x03\xac\x72\xa6\x19\x92\x52\x24\x53\x38\
+\x0c\x93\x69\x87\xe8\x92\xfe\x1b\xc2\xff\x8b\x0d\xb5\x4e\xf7\xc4\
+\x11\x93\x55\x7e\x34\xb0\xc1\x29\x6e\xd9\x58\xc8\xf6\xb5\x5e\x8a\
+\xfd\x32\x82\x9c\x43\x63\x4e\x5e\xd3\x35\x66\x62\x25\xbc\xd1\x91\
+\x66\xe0\xa3\x24\xe9\x4b\xe9\xce\xa9\xfd\xfd\x7f\xc0\x30\x8e\x02\
+\x83\x8b\x95\xbf\x61\x00\x80\x82\x0d\xa1\x84\x96\x93\xb6\xe7\xfc\
+\x02\xf5\x01\x99\x3a\xcf\xd7\x08\x16\x4c\x31\x24\x65\x48\xa5\x05\
+\x07\xa2\xf5\x61\xc1\x69\x69\xf4\x3d\x54\xfd\x23\x49\x10\xdf\x74\
+\xac\xb2\x94\x97\xdf\xe1\x60\x5b\x83\x9b\x7b\xd7\xf8\x71\x3a\x44\
+\x34\x21\x8b\x86\x82\x46\x16\x55\xcf\x33\x19\xf5\x71\xa0\x5d\xa1\
+\xbf\x49\x41\x89\x64\x7a\xa6\x0e\xf4\x3e\x67\xe4\xf5\x63\xc0\xad\
+\x9d\x70\x9f\x17\x20\x55\x75\x5f\xb7\x53\x9a\x7a\x22\x6f\x11\x9d\
+\x85\x81\x24\xb5\xde\x0a\x8a\xec\xab\xf0\x17\x4c\x33\x2c\x2a\x64\
+\x52\x82\x43\xb4\xda\x76\x9a\xac\xf2\xf7\x3d\xeb\xac\xf2\x9d\x9b\
+\xec\x6c\xaf\xf7\x71\x5b\x89\x0f\xd9\xac\xa3\x31\x4f\xde\xc8\x31\
+\x11\x73\x71\xb0\x3d\xcf\x60\x53\x0e\x65\x40\x19\x1e\x3f\xd8\xfb\
+\xbc\x9e\x56\x8f\x01\x3d\xb7\x2a\xff\xb9\x01\xe8\xee\x36\x9c\xeb\
+\x8b\x44\x43\x95\xb6\xaa\x7e\x81\xea\x80\x80\xcb\xea\xc2\x6f\xf7\
+\xe3\xb3\x27\x18\x11\x73\x64\x55\xd1\x14\x6c\xb0\xf0\xc0\xed\x76\
+\xb6\xd6\x95\x12\xf2\x38\xd0\xc5\xdc\x55\xf2\x59\x62\x51\x3b\x87\
+\xda\x35\x06\x5a\x54\xd2\x61\x65\x64\xfc\xcd\x0b\xbf\xd7\x66\xb3\
+\x8d\xc0\x05\xc0\xf8\x72\x02\x00\xee\x6f\x54\x9c\x23\x21\xfc\x5c\
+\xb1\x89\x96\x50\x28\x45\xb9\x27\x00\xa2\x86\xb7\xc0\x85\xcb\x96\
+\x44\x76\xeb\xdc\x5f\xe7\x60\x73\x45\x09\x76\xab\x34\x4f\xfc\x53\
+\x79\x14\xe2\x71\x99\x77\x3a\x04\x22\x4d\x2a\xa9\x4b\xd9\xcb\xf1\
+\x43\x5d\x7b\xd4\x84\xf2\x4f\xa0\xfb\x8b\xca\xdf\x34\x40\xe2\xe3\
+\x61\xd5\x75\xdb\xaa\x10\xba\xe9\x6e\xd5\xab\xb3\x26\x20\x61\xb3\
+\xc8\x20\x68\xf8\x9d\x4e\x6a\x43\x05\x94\x7a\x5c\x88\x92\x3a\xf7\
+\x21\x9d\x27\xae\x91\x25\x1a\x13\x38\xd2\x2a\x13\x3e\xa3\x93\xee\
+\x55\xc7\xe3\xef\x74\x3e\x9b\x9f\x4a\x1f\x05\x3a\x96\x42\x1e\x16\
+\x50\xd4\xeb\x92\xfd\x69\x35\x2e\x64\x23\xfd\x70\x21\x3a\x4c\x8e\
+\x14\x79\x52\x18\x42\x1a\xb3\x59\x43\x15\x32\xa8\xa4\xc9\x93\x46\
+\x25\x83\x4a\x06\x8d\x2c\xc3\x51\x9d\xc6\x73\x12\x91\x56\x83\x4c\
+\x8f\x3e\x1d\x7f\xb7\xeb\x85\xdc\x44\xf2\x28\x70\x0e\xd0\x97\x42\
+\x1e\x16\x50\xd4\xcf\xb6\x47\x32\x85\x75\x65\xf5\x82\x61\x6a\xd0\
+\xbd\x79\x2a\x82\x60\x31\x1b\xe8\x7c\xf6\x59\xff\xdf\x50\x18\x89\
+\xea\x1c\x6f\x33\x13\x39\x2b\xa2\x5c\xd0\x67\xa3\xc7\xcf\xbf\xa8\
+\x5c\x9e\x6a\x04\xce\x00\xda\x52\xc9\xc3\x02\xdb\x2a\x82\x6c\x7b\
+\x52\x1d\x95\x8c\xc8\x80\x44\x5f\x2c\x4e\xfe\xd3\x5d\x98\x1b\x57\
+\xee\xfe\xdc\x18\x89\xab\xfc\xbb\xcd\x42\xf8\xac\x89\x4c\x97\x94\
+\x89\x9f\xea\x7a\x29\x33\x3a\xd1\x08\x34\x71\x55\x35\xb5\x14\x2c\
+\xa8\xad\x32\xdd\x71\x69\xc2\x53\x5b\xbd\x45\x10\xe5\x4a\xbd\x30\
+\x4f\x59\x71\x1e\xd9\x94\x9f\xb7\x0b\x73\x63\x6c\x5c\xe7\x44\xab\
+\x83\x70\xab\x05\xa5\x4b\xcc\xc6\x3e\x3a\xff\xd2\x6c\xff\xd8\x95\
+\x6a\x2a\xbf\xd4\xf2\xb0\x88\xc6\x96\xa0\x0a\x4f\x69\x03\x26\x06\
+\x86\x4d\xf4\x47\x53\x9f\xd9\x05\x95\x34\x23\xe3\x79\x4e\xb5\x16\
+\x10\x3e\x67\x25\xd7\x61\xca\xc5\x9a\xbb\x5e\x4e\x44\x86\xdf\x66\
+\xae\x8e\xbd\xa6\x14\x5c\x2a\x16\xdc\xd8\x9a\xbc\x78\x69\xc0\x57\
+\x55\xb7\x03\x59\x0a\x19\x85\x39\xca\x4a\x52\x88\x72\x16\x8d\x1c\
+\xd1\x49\xf8\xb0\xc5\xc3\xa5\x36\x27\xf9\x76\x8b\x1a\x3d\xd7\xb9\
+\x77\xba\x37\xfc\x0f\xe0\x04\x57\xb5\x41\x96\x9a\x45\xb5\x16\x05\
+\x95\x67\xb4\x88\x95\xa1\x21\x1b\x03\x51\x8d\x3c\x29\xa2\x53\x2a\
+\x1f\x9e\x75\xd1\xd7\xee\x24\xdf\x6a\xd7\xc7\x3b\x3e\x79\x63\xf2\
+\x93\xde\x2b\xf2\x37\x2c\x05\x97\x8a\x45\x05\xb8\xb8\x79\xd3\x7e\
+\x63\x96\xc1\x74\xd8\x4e\x4f\xd8\x4a\x74\x4a\xa3\xe9\xac\x8f\x70\
+\x9b\x17\xad\xa5\xc0\x98\xbc\xd0\x73\x30\xd6\xdd\x79\x90\x39\xf9\
+\x6b\x1a\xb1\x5f\x06\x8b\xeb\x8d\x9e\x38\x61\x04\xca\xd7\xca\x62\
+\xd6\xfa\x40\xce\xaf\x33\x99\x30\x13\x69\x0b\xa1\x35\x3b\x99\xe8\
+\x0d\xbf\x3d\xda\xd1\xf2\x06\x73\xd5\xd4\xf4\x97\x62\x7b\x1d\x16\
+\xdd\x9d\x0e\xe6\x1c\xcf\x19\x53\xf2\x54\xb2\xcf\xc5\x40\x47\x08\
+\xbd\xd9\xcd\x4c\xdf\xd0\xd1\x91\xf6\x8f\xf7\xb3\x88\x52\x70\xa9\
+\x58\x74\x77\xba\xbf\xbf\x4d\xf5\x97\x54\xe7\xa4\x89\xc2\xad\x44\
+\xec\x24\x86\x86\x4f\x46\xce\x1d\xdf\xcb\x9c\x7c\x74\xe9\x15\x3f\
+\x9f\x5b\xfe\x83\xc3\x13\x28\xbb\x37\x97\xcf\xde\x95\x9a\x8e\x0e\
+\x30\x77\x54\x8e\x2d\x9d\xd6\x0a\x2b\xac\xb0\xc2\x0a\xff\x27\xfe\
+\x03\x72\x48\xe3\xb0\x1d\x11\x42\x9d\x00\x00\x00\x00\x49\x45\x4e\
+\x44\xae\x42\x60\x82\
+\x00\x00\x0c\x27\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
+\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
+\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
+\x79\x71\xc9\x65\x3c\x00\x00\x0b\xb9\x49\x44\x41\x54\x78\xda\xed\
+\x9a\x69\x6c\x55\x75\x1a\xc6\xdf\xee\xfb\x42\xb9\x2d\x16\x68\xb1\
+\x55\xa9\xa5\x55\x06\x64\x71\xc0\x01\x15\x41\x59\x15\x70\x45\x27\
+\x63\x70\xe2\x18\xcd\x64\xf8\x30\x93\x99\x2f\x66\x26\x99\x0f\x33\
+\xc9\x4c\x32\x93\xcc\x17\x27\x31\x66\x12\x0c\x6a\x94\x2d\x58\xf6\
+\x22\x4b\x51\xd9\x97\x0e\xa5\x28\xfb\xda\xd2\x52\x0a\x5d\x6e\xdb\
+\xbb\x74\x7e\xcf\x7f\xee\xb9\xb9\x69\x30\xd3\x6b\xd0\xc4\x0c\x37\
+\x79\x73\xee\x39\xf7\x9c\xff\xff\x79\xde\xf7\x79\x97\x53\x48\xe8\
+\xef\xef\xb7\x1f\xf2\x27\x11\xbb\x43\xe0\x0e\x81\xff\x67\x02\xc9\
+\xb7\xba\x38\x67\xce\x9c\x41\x2f\x40\x11\xf0\x6c\x08\x36\x2e\x1c\
+\x0e\x57\x61\x95\x7c\x2f\x0f\x87\x43\x39\xe1\x70\xbf\x0a\x85\x1f\
+\x3b\x8b\x1d\x8f\xd8\x01\xee\x69\xc2\x2c\x14\x0a\xe9\x59\x77\xf4\
+\xce\xbd\xef\x03\x0b\xcc\xe9\xd3\xa7\x07\x41\x20\xfe\xcf\x78\x68\
+\x3c\x17\x0a\x05\x97\x04\x02\x81\xd2\x84\x84\x44\x36\x4e\xb0\x84\
+\x84\x04\x4b\x4e\x4e\x37\x7d\xfa\xfa\x7a\x8d\xdf\x1d\xb0\x60\xb0\
+\xcf\x12\x13\x13\x5b\xb9\x6f\x15\x3f\x7d\xc4\x7d\x3b\x00\x1a\xba\
+\x0d\x11\x88\xfb\x33\x81\x8d\xdf\x06\xdc\x93\xa1\x50\x38\x2d\x3b\
+\x3b\xdf\xaa\xab\xab\xec\xee\xbb\xcb\xb0\x51\x36\x74\x68\x81\xa5\
+\xa4\xa4\x38\x4f\xf6\xf6\xf6\xd9\xb5\x6b\xd7\xec\xec\xd9\x73\x78\
+\xf1\x94\x9d\x3c\xd9\xe0\x6b\x6e\xbe\xf4\x7a\x28\x14\x78\x3d\x39\
+\x39\xa5\x8e\xb5\xfe\x84\xad\xff\xbe\x08\xc8\xad\xbf\x0b\x06\x03\
+\xbf\x0a\x85\xfa\xf3\x4b\x4a\x2a\x6c\xca\x94\xa9\x36\x69\xd2\x44\
+\x80\x97\x58\x76\x76\x06\x1e\x4e\x20\x0a\x61\xbc\x2d\x39\x84\x3d\
+\x23\x12\x41\xeb\xec\xf4\xdb\x85\x0b\x97\xed\xf0\xe1\x43\xf6\xc5\
+\x17\x75\xd6\xd8\x78\xf8\x91\xde\x5e\xff\x5a\x88\xfc\x8b\x75\xdf\
+\xc6\x9a\xe2\x01\x23\x7d\xc6\x93\x03\x23\xb9\xff\x9d\x40\xa0\x6f\
+\x6e\x6e\xae\xcf\x66\xcc\x98\x6b\x0b\x16\xcc\xb1\x92\x12\x9f\xe9\
+\x83\xde\x23\xa0\x43\x3a\x0e\xf8\x1e\x56\x34\x94\x35\x10\x94\xcc\
+\x12\xad\xb5\xb5\xdd\x3e\xfb\x6c\xbb\xd5\xd4\xac\x84\xd4\x49\x4b\
+\x4a\x4a\xae\xe7\x86\x9f\x05\x83\xc1\x43\x83\xc8\x81\xb8\x09\xdc\
+\xc3\xbd\xab\x91\xcc\x03\x15\x15\xe3\x6d\xe9\xd2\xa5\x36\x61\xc2\
+\x18\xef\xb7\x48\x02\x3a\xaf\x7f\x23\x89\x40\xc0\xfb\x2e\x70\x61\
+\x01\x96\x01\xec\xbc\x7d\xf4\xd1\x0a\xab\xab\xdb\x28\x82\x4d\xc0\
+\xfa\x29\xeb\x6d\xbd\x9d\x49\x5c\xcc\x86\x6b\xd8\xb8\x7a\xf2\xe4\
+\x19\xf6\xe6\x9b\xbf\xb0\x91\x23\x7d\xb1\xbf\x0b\xe0\xff\x20\xe0\
+\x11\xf4\xaa\x8c\x29\xa1\xf9\xde\x63\x23\x46\x0c\xb3\xd7\x5e\x7b\
+\xdd\x72\x73\xf3\x6c\xe3\xc6\x95\x77\x05\x02\x3d\x1f\x90\xe4\x4f\
+\xb1\xec\x81\xdb\xd1\x07\xb2\xf0\xc4\x7b\x7d\x7d\x81\xea\x89\x13\
+\xa7\xd9\xb2\x65\xbf\x8c\x82\xe7\x1a\xe1\xaf\xb5\x86\x86\xaf\x5d\
+\xc2\x12\xfa\x6f\x00\xef\x59\xd0\x9d\x03\xce\x9a\x9b\x5b\x6c\xd7\
+\xae\x2f\xec\xea\xd5\x56\xbb\x79\xb3\xcb\xd2\xd2\x92\xed\xc5\x17\
+\x97\xd8\xac\x59\x8b\x24\x45\x1f\xf7\x7d\x48\x14\x4a\x30\xf3\xec\
+\xdb\x12\xf8\x0d\x9a\x7f\x4a\xb2\x79\xeb\xad\x37\xac\xa8\x28\xd7\
+\x5d\xf4\xfb\x7b\xec\xdd\x77\x57\x38\x60\xb5\xb5\x75\xb6\x7b\xf7\
+\x7e\x91\x18\x00\x58\x16\x8e\x78\x5f\xe4\x1c\x78\x97\xc4\x87\x0e\
+\x1d\xb1\xd1\xa3\x4b\x6d\xef\xde\x7d\x76\xe5\x4a\x33\x24\xba\xdd\
+\xb3\x4f\x3f\xbd\xd0\xa6\x4d\x9b\x63\x94\xe4\x7b\x89\xfa\x5f\x06\
+\x10\x88\x5b\x42\xe3\x58\x68\x59\x6e\xee\x50\x69\x9e\x50\xfb\xa2\
+\xe0\x57\xac\x58\x6b\xe5\xe5\xa3\x48\xe4\x29\xd6\xd4\xd4\x6a\x9f\
+\x7c\xe2\xaa\xa0\x55\x55\x55\x58\x4f\x4f\xdf\xc0\x08\xe8\xe8\x92\
+\xf7\xe2\xc5\x26\xc0\x1f\xb5\x85\x0b\x67\xda\x7d\xf7\xdd\x6d\xc3\
+\x86\xf9\xec\xd3\x4f\xb7\xb3\xd6\x3d\x96\x9f\x9f\x67\x59\x59\x99\
+\x36\x7f\xfe\x22\x3b\x75\xea\x38\xd6\xf0\x3c\xd5\x69\x2d\x0a\xf8\
+\xe0\x5b\x49\x88\x07\xff\x88\xe5\x51\x6d\x48\xd8\xca\x28\xf8\xe5\
+\xcb\x57\x21\xa3\x62\x7b\xfc\xf1\x1f\xe3\xbd\x26\x36\x4d\xb3\x57\
+\x5e\x59\x68\x9f\x7f\xbe\x8f\xf2\xd8\x40\x03\x4b\x1e\x08\xde\x79\
+\xfe\xd2\xa5\x26\x3b\x70\xe0\x20\x52\x99\x6b\xa5\xa5\xc5\x9c\x5f\
+\xb6\xfb\xef\x2f\xa7\x92\xcd\xa0\x9c\x36\xd2\x2b\xda\xad\xbd\xbd\
+\xc3\x7c\x3e\x9f\xcd\x9e\xbd\xd8\x32\x32\xb2\x12\x90\xdd\x1f\xc0\
+\x90\x89\x0d\x9a\x80\x80\xcb\xc6\xaa\x49\x95\x96\xde\x67\xcf\x3c\
+\x33\x2f\xfa\xdb\xce\x9d\x7b\x1d\xf8\x99\x33\xa7\xa2\xe3\xab\xce\
+\xab\x5d\x5d\xdd\x54\x13\x23\x11\x5f\xb0\xfa\xfa\xe3\x80\xac\xe7\
+\x3c\x29\x1a\x05\x33\x07\x1e\x72\xf5\xf6\xd2\x4b\x0b\xac\xb0\xb0\
+\xc0\xae\x5f\x6f\x17\x51\xe5\x00\x24\xca\xb8\x3e\x4f\x4d\x8e\x3e\
+\xd1\x85\x9c\x3a\x6c\xec\xd8\x71\x34\xc6\x09\x06\x86\xd1\xc8\x67\
+\x0e\x16\x2f\x81\xf0\x12\x1e\x4a\x1e\x3f\x7e\x32\xd2\x19\x1a\xfd\
+\x6d\xd4\xa8\x11\xc8\xe0\x0a\xb2\x69\xb1\x9c\x9c\x6c\x5d\x72\x60\
+\xbb\xbb\xfd\x00\x4a\xb4\xe7\x9e\x9b\x0d\x90\xb3\x24\xf6\x57\xf2\
+\xba\xb3\xcb\x97\x9b\xed\xe8\xd1\x63\xb6\x68\xd1\x4c\x2b\x2e\xf6\
+\x01\xf0\xa6\x9e\x71\xe3\x46\x66\x66\x06\x51\xed\x85\xf4\x31\xd6\
+\xcb\x73\xf9\x72\xe3\x46\x87\x2b\xaf\x0f\x3e\x38\xd1\x52\x53\xd3\
+\x95\x3f\x6f\x80\x25\x29\x1e\x02\x79\x84\x6e\x49\x5e\x9e\x8f\xea\
+\x90\x8f\x4c\xda\x74\x99\xc4\x0a\x92\x78\xe5\x2c\x3c\xc6\xd6\xac\
+\xa9\x65\x61\xa3\xf3\x3a\x12\xf2\xa6\x22\x81\x9c\xd2\xed\xe5\x97\
+\x17\xd8\x89\x13\x27\x19\x19\xce\x38\xa2\x47\x8e\xd4\x8b\x18\x0d\
+\xaf\x18\x89\xdc\xd0\xbd\x02\xcf\xda\xa9\x3c\x9f\x63\x6b\xd7\xd6\
+\xda\xb9\x73\xcd\x44\xa6\x48\x95\x8a\xd1\x23\x80\x9c\xda\x34\x4b\
+\x21\xb5\x7b\x94\xd0\x8f\x69\x48\x8c\x87\xc0\x43\x2c\x34\xb2\xb4\
+\x74\x34\x67\x29\x94\xbb\x83\x9a\x67\x54\xde\x00\xe9\x27\xbc\x63\
+\x6c\xdc\xb8\x2a\x7b\xff\xfd\x35\x5c\x33\x3c\x17\x25\x11\x8d\xc4\
+\xab\xaf\x2e\xa6\xda\x5c\xc2\xb3\x87\xed\x85\x17\xe6\x92\xac\x05\
+\x78\xd6\x79\xde\xf4\x49\x4f\x4f\xe3\xb9\x5c\xd6\x58\x0b\xc9\x76\
+\x22\x3b\x4a\x40\x23\xbd\x22\x48\x4e\x34\x10\x19\x3f\x72\x2d\x17\
+\xd9\x44\x08\x4c\x89\x83\x40\xb8\x3a\x31\x31\xc9\x86\x0c\x29\x34\
+\x24\x2e\xc9\x50\x26\x0f\x45\xbb\xad\x3c\x5d\x51\x51\x0e\x89\x07\
+\xec\xe3\x8f\x37\x00\xba\x17\x4f\x66\x79\x72\xa2\x0a\xf5\x12\xfa\
+\x24\x24\x33\x8b\x68\xcc\xb7\xbb\xee\x1a\x2a\x6d\x7b\xb2\x01\x7c\
+\x3a\x25\x37\x8d\xca\xb5\x89\x5c\xe8\x46\x56\xc5\xf2\x3a\xc0\x5d\
+\x83\x23\xb7\x2e\x42\xea\x34\x7b\x05\xa8\x4c\x3e\x1c\xa2\xa1\x30\
+\x54\x3d\x68\x02\x80\xac\x44\x83\xc8\x21\x57\xfa\x13\x25\xea\xf5\
+\x51\xe9\x54\x00\xf4\x3b\xa0\x7b\x28\x83\x9a\x3c\x4b\x25\x01\xbc\
+\x17\x76\x7a\xd6\x47\x89\xad\x6a\x25\x39\x15\x14\xe4\x5a\x47\x47\
+\xa7\xbb\xc6\x47\xb2\xa1\xba\x64\xda\xba\x75\xdb\x88\x50\x0b\xe4\
+\x8a\x35\xe4\x45\xde\x0b\x12\x90\x4e\x93\x9d\x3f\x7f\x1c\x32\x22\
+\xd4\xa7\x4a\x04\xd9\x54\xed\x59\x16\x4f\x04\xca\xfe\xab\xd1\x0c\
+\x11\x70\x9e\xe7\x94\x59\x65\xbf\xed\xdb\x77\x94\x3b\x34\x6d\x3a\
+\x39\x29\x27\xd0\x69\x09\x7d\xe1\x53\x36\xec\x57\x1d\xd7\xef\xf2\
+\xb6\x24\x21\xe9\x79\x9e\x67\xbd\x34\x07\xfe\xc3\x0f\x6b\x48\xec\
+\x36\x8a\xc3\x70\xdd\x13\x05\xdf\xd2\x72\xc9\xce\x9c\xa9\x97\x84\
+\x34\x5d\x89\x84\x88\xf3\x5c\xa6\xee\x29\x1c\x34\x01\x00\xe7\x78\
+\x15\x44\xe0\x79\xdf\xf0\xae\x33\x02\x1f\x20\x27\xf6\x20\x89\x6e\
+\xcf\xd3\x10\x18\x8e\x86\x4b\x24\x09\xbc\xed\x07\x64\x9a\x00\x0b\
+\xb8\x4c\xf7\x29\x3f\xdc\x7a\x2b\x57\x6e\xc6\xcb\x9d\x74\xf4\x22\
+\x15\x05\xe5\x95\x00\x23\xd3\x53\x54\xaf\x7a\xae\xf5\x6a\x2b\x01\
+\x96\x6c\x3c\x59\xca\xa9\x19\x83\xee\xc4\xfd\xb8\x23\xa6\x9c\xea\
+\xe8\x45\x41\x46\x55\x69\x50\x5d\x57\x35\xa2\x72\x38\xc7\x00\x3a\
+\x5d\xb3\x3e\x00\xd4\x71\xe5\xf1\x20\xe6\x96\xf1\x40\x08\x2c\x89\
+\xdc\x29\x32\x00\xd4\x9a\xc6\xf9\x75\xc0\x9f\xb4\xb6\xb6\x26\x6f\
+\x40\x96\xc3\xb4\xaf\xf7\x5a\xe9\xed\x9f\x30\x68\x02\x6c\xe4\x27\
+\xb4\x92\x0f\x60\x52\xe5\x89\x98\xc5\x0c\x00\x49\x84\xbb\xd5\xb6\
+\x6d\xdb\x89\xf7\x47\xa0\x73\x1f\x0d\xa9\xcd\x9e\x7d\x76\x16\x9a\
+\x2e\x50\x92\x0b\xb0\xee\x8f\x8d\xaa\xf4\xaf\xa4\x46\x6e\x35\x94\
+\xe6\xcb\x10\xbe\xc6\x73\x17\x20\xdd\x27\xb2\x1e\x50\x6f\xaf\x68\
+\x24\xf4\x3b\xa7\xbd\x71\x8c\x12\xfd\xe7\xd0\x1f\xd5\xa4\x5b\x1e\
+\x89\x89\x84\x16\xf7\x66\xf9\x44\x47\xec\xf8\xf1\xaf\xd1\xed\x79\
+\xc6\x81\xc7\xd4\xa4\x54\x81\x3c\xcd\x93\x7c\xc9\x58\x8a\x24\x24\
+\xd3\xf4\x0a\x89\x14\x48\xcc\xe3\x95\x33\x87\x3c\xb8\xa0\x4e\xab\
+\xa8\x0e\x00\xaf\x63\x3f\xd7\x93\x24\x2f\x0a\x46\x97\x40\xb5\xc6\
+\xd3\x07\x1a\x61\x8d\x9e\xdb\xbd\x6e\xea\x85\x35\x72\x74\xba\x55\
+\x65\xa0\x39\x8d\x62\xb6\x99\x67\xc3\x87\x17\x0a\xbc\x80\x0a\xbc\
+\x80\x2b\x31\x25\x15\x40\x2b\x27\xa2\x89\x4d\x19\x4d\x75\xbd\xe1\
+\x91\x47\x1e\x25\x9a\x19\xba\x26\x67\xc4\x38\x29\x24\xc7\x49\x8a\
+\x80\xef\x24\xcf\xba\x85\xea\x7c\x1c\x49\xdc\x7f\x0c\xcf\xa0\xcb\
+\x66\x6d\xec\x25\x33\xe6\xbd\xe3\x3a\xf0\x34\xa7\xe1\xb6\x64\xc9\
+\x3c\x9a\x4d\x11\xe0\x7b\x62\xc1\x3b\x9d\x6f\xd8\x50\xc7\x9b\xd6\
+\x46\x2a\x51\xd0\x23\x11\x89\x44\x1f\x4d\x2c\x83\xf9\x67\xbe\x4d\
+\x9e\xfc\x13\xee\xcf\x54\xc5\xf1\x0a\x86\xf6\xe1\x5a\x3a\x84\x53\
+\xc0\x70\x55\x51\x92\x84\x1a\xe2\x89\xc0\x7e\x36\x6b\x3f\x77\xee\
+\x2b\xc9\x88\x4d\x93\xb5\x80\xb7\x81\x12\x95\x12\x38\x12\xf0\xf3\
+\xd5\x61\xe5\x79\x81\x8b\x01\x9f\xc2\xa8\xb1\x9d\xc1\x6f\x27\xbd\
+\x63\x0f\x65\x73\x03\x20\x42\x78\x3e\x96\x84\x22\x91\xcc\x14\x3b\
+\xdf\xa6\x4f\x7f\x82\xe7\xb2\x54\x81\x3c\xfd\x73\x9e\x21\x47\x52\
+\x2c\xce\x46\xca\xaa\xed\x89\x87\x40\x33\x5e\x5f\xd9\xd2\x72\x85\
+\x24\xbb\xe8\x00\x71\x2e\xcf\x3b\x59\x94\x95\x95\xdb\xe2\xc5\x4f\
+\x0a\xbc\x80\x78\xa5\x92\xee\x9b\xe2\x36\x5d\xbf\x7e\x27\x3d\x63\
+\x17\x9e\xef\x60\xf3\x6e\x48\x7c\xa9\x12\x4b\xd2\xf6\x28\x91\x75\
+\xaf\x37\xad\xd2\xfc\xd2\xb4\x16\x6f\x62\x73\x89\x4a\x81\x22\xc1\
+\x5e\x29\xac\x95\x49\x97\x6e\xa1\xb4\x36\x8a\xb4\x5e\xf2\x0f\xc6\
+\xd1\x89\x9d\xce\x97\xe3\x91\xfe\x33\x67\x1a\x05\x5e\xad\x5f\xde\
+\xd1\x11\x8f\x4d\x96\xe6\xe5\x99\xa8\x6c\x24\x19\x91\xdb\xb2\x65\
+\x0f\x6f\x68\x9f\xa1\xdd\x76\x6f\x0b\x48\x76\x40\x68\x07\x1d\x7b\
+\x1b\x7a\x0e\x8a\xa8\x17\x09\x91\x00\x78\x26\xf3\xff\xa3\xac\x59\
+\xce\xb9\x22\x95\xc3\x7a\xa9\x14\x87\x13\x54\xb4\x4e\xdd\xfb\x4f\
+\x16\xea\x89\xa7\x91\xc9\xea\x48\xa2\xbd\xa7\x4e\x1d\x63\x2e\x39\
+\xcf\xa6\x19\xd2\x25\x72\xe9\xb0\xad\x5b\x77\x33\x06\x5c\x15\x68\
+\x40\x38\xf0\x0e\x50\x4d\xcd\x6e\x4a\xeb\x36\xc0\x5f\xe7\x3c\xda\
+\x47\x94\x90\x44\xe3\x26\x92\xaa\x55\x24\x58\x23\xe0\x3d\xa3\x23\
+\xbd\xa0\x1b\xc9\x6d\xc1\xdb\xff\x56\xd7\xa5\xa7\x0c\x21\x5a\x37\
+\x18\xe8\x8e\x08\x4e\x33\xeb\x7c\x8c\x59\xbc\x04\x42\x6c\xfc\x7b\
+\xbf\xbf\xab\x6f\xff\xfe\x1d\xaa\xc5\x2c\x9e\xa5\x47\xf0\xcc\x57\
+\x6c\xb8\x95\x06\xd4\x62\x90\x74\x1d\x75\xd3\xa6\x2f\x01\xb8\xdd\
+\xd5\x76\xb3\x68\x4d\xf7\x1a\xa1\xc0\xe2\xcd\xeb\xdc\xb3\xd5\x56\
+\xad\xaa\x55\xd3\x93\x8c\x04\x9e\xee\xbc\x91\xa8\xad\x23\x3a\x9d\
+\x44\xa3\x50\x4e\x61\x64\xd9\xc5\xe8\xad\xb5\xec\xaf\x3c\xdf\x16\
+\x0f\x81\xd8\x3f\xb0\x6e\x62\xa8\x5b\xae\x36\xdf\xd0\x70\x40\xb9\
+\x80\x77\x72\x05\x46\xef\xab\xb6\x7a\xf5\x16\xa2\x23\x50\x87\x90\
+\xce\x56\xca\x6e\xab\x7e\x8b\x05\xcf\x3a\x72\x86\xac\x5f\x92\x11\
+\x41\x22\x58\xe3\x2a\x54\x6b\x6b\x87\x1c\xc1\xf9\x3a\xae\x5f\xb7\
+\xbc\xbc\xe1\xc8\x27\x9b\x48\x9c\xa0\xbf\x1c\x16\x94\x3a\xec\xef\
+\x71\xff\x65\xae\xaa\x2a\xfa\xee\x20\x40\xc3\x20\xb3\x8d\xfb\xc6\
+\x4c\x9d\x3a\x9b\x09\xf4\x41\x24\x72\x53\x40\x94\xd4\xe8\xb6\x0c\
+\x4f\xb5\x6a\x14\xb8\x45\x37\xbd\xd5\xd1\x75\x56\xc0\x16\x32\x3f\
+\x8d\xe6\xc5\xe7\x20\x91\xe9\x10\x78\x06\xc1\x7c\xa2\x7a\xda\x36\
+\x6f\x5e\x85\xcc\xfc\x1d\x6c\x3f\x0d\x3b\x1c\x53\x5c\x06\x47\xa0\
+\xb2\xb2\x72\xe0\xa5\xb1\x54\x87\xcd\x24\x70\xd1\xc3\x0f\xcf\xb4\
+\xf2\xf2\x4a\x12\xd3\x0f\x89\x76\x91\x51\x69\xd5\x52\x58\x2c\x78\
+\x67\x03\xc8\x78\xe6\xfe\x4a\xad\xef\xaa\x36\xbc\x4b\x14\xca\xf3\
+\xae\x64\xee\xd8\xb1\x1e\x59\xb5\x05\x58\xec\x79\x6c\x0d\x66\xb7\
+\x83\x80\x36\x9b\x81\xe7\x56\xe0\xe5\xa2\x49\x93\x1e\x67\x8c\x1e\
+\xab\xde\x20\x02\x68\xf7\x06\x5e\xed\x11\xb0\x58\xf9\xdc\xf2\x28\
+\x69\x9a\xb9\x31\x01\xd0\xb9\x48\x32\x5f\xd2\x52\xc5\x01\xfc\x06\
+\xf5\x1d\xcd\x3c\xcb\xb0\x77\x30\xbb\x9d\x04\xb4\xf9\x44\x4a\xe7\
+\x72\x8e\x15\xa5\xa5\xf7\xda\x43\x0f\x4d\xe7\xad\xcd\xa7\x06\xc4\
+\xc6\x5d\x54\x9a\x6e\xac\x33\xd2\x55\x43\xb1\xe0\x23\x9b\xab\xea\
+\xa4\xab\xf3\xca\xf3\xca\x29\x8d\x2b\xf4\x89\x3a\x69\x5e\xf7\xaa\
+\xf6\x2e\xc5\x56\x63\xf6\x5d\x10\x90\x95\x62\x7f\xa6\xbd\xbf\xc4\
+\x1b\x1b\x39\x51\x2d\x2d\xeb\xf5\x53\x39\x20\x32\xb2\x58\x12\x98\
+\xa9\x97\xa8\xa3\x6b\x3c\x10\x10\x35\x29\x79\x5d\xa5\x92\xef\xae\
+\xda\x6c\xc7\x7e\xed\xfd\x3d\xf4\xbb\x24\xe0\x35\xba\x57\x18\xc2\
+\x7e\x0b\xd0\x6a\xde\xdc\x18\x2d\xca\x98\x89\xca\x78\x87\x1d\x8a\
+\x2c\xb2\x25\x0b\x6f\xd3\xc8\x33\x41\x25\x2b\xc9\xde\x42\xa2\x9e\
+\x35\x35\x48\x35\x29\x3e\x17\xb0\x7f\x60\x7f\xc3\x82\x98\x7d\x5f\
+\x04\x74\xcc\xe2\xfa\x5c\x8e\x3f\x27\x3f\xa6\x13\x81\x54\x3c\xac\
+\x77\x58\xf4\x9d\x19\x7d\x27\x80\xa8\x46\xe2\x88\xcc\x7a\xd4\x6d\
+\x43\x1a\x0f\x58\xf6\x3d\xec\x13\xee\x69\xf1\xf6\xf9\xbe\x09\xe8\
+\xba\x67\x3f\xc2\x1e\xe6\x5a\x15\xc7\x32\x8e\x45\x7a\x0d\x8c\xfc\
+\x23\x5f\x1f\x4b\x5c\xd5\x7b\x06\x8f\x35\x6a\x30\x8b\xfc\x43\x5f\
+\xaf\x07\xec\xdb\x12\xb8\xf3\x5f\x0d\xee\x10\xb8\x43\xe0\x07\xfe\
+\xf9\x0f\x4e\x33\x44\x96\xd0\x41\x78\x46\x00\x00\x00\x00\x49\x45\
+\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x04\xb5\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x1c\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x3f\xc5\x7e\x9f\
+\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x04\
+\x6f\x49\x44\x41\x54\x48\x0d\xbd\x96\x6b\x68\x93\x57\x18\xc7\x9b\
+\x34\xa9\xa8\xd4\x2b\xce\xb6\x54\xa7\x78\x2b\x65\xe8\xa4\x2d\xf3\
+\xcb\x86\xf5\x0e\x32\xfd\xe0\x0c\x82\x8a\x0a\x92\xde\x28\xa5\xc3\
+\xa2\x43\x1d\x65\x4a\xfd\xd2\x0f\x42\x95\x5e\xac\x28\x38\x05\x2b\
+\x38\x10\x65\xb0\xba\x8a\xe0\xb5\x69\x55\xbc\x0b\x32\x6b\xd5\xd8\
+\x74\x3a\x87\xb4\xc9\xd2\xa4\xc9\x7e\x4f\x78\x4f\x7c\xdf\xf2\xe6\
+\x4d\xf4\x83\x07\x4e\x9e\xfb\xf3\x3f\xcf\xf3\x9e\x73\x72\xd2\xd2\
+\x3e\xf3\x48\x4f\x05\x2f\x1a\x8d\xda\x7c\x3e\xdf\xe2\xae\xae\xae\
+\x9e\x54\xfc\xad\x7c\x52\x02\xec\xeb\xeb\xab\x03\xb4\xb5\xa8\xa8\
+\x28\x00\xe8\x55\xab\x84\xc9\x6c\xf6\x64\x0e\xa5\xa5\xa5\x5b\x01\
+\xfb\x09\xbf\x50\x24\x12\xf1\x24\xf3\x4f\x66\xb7\x04\x04\x6c\x31\
+\x20\x2d\x92\xc4\x6e\xb7\x97\xb6\xb4\xb4\x5c\x4a\x96\x30\x99\xdd\
+\x96\xc8\xa1\xa2\xa2\x62\x6e\x38\x1c\xbe\x41\x75\x13\x6d\x36\xdb\
+\x79\xfc\xa4\xba\xa5\xcc\x59\xe8\xb2\xa0\x41\xf4\xef\xa0\xb7\x99\
+\x57\x32\x32\x32\x4e\x36\x34\x34\xbc\x84\xb7\x1c\xa6\x80\xd5\xd5\
+\xd5\x93\x06\x07\x07\x6f\x12\x39\xdb\x32\x5a\x67\x04\x3c\x82\x78\
+\x16\x5a\xd3\xd4\xd4\xd4\xa3\x33\x19\x58\xd3\x96\xfa\xfd\xfe\x56\
+\xbc\xe2\x60\x5a\xb2\x56\xda\xba\x8a\x99\xdb\xdc\xdc\x6c\xcf\xc9\
+\xc9\x71\xc2\xcf\xc4\xb6\x0e\xdf\x53\xcc\x20\x95\xff\xc0\x27\x78\
+\x54\x52\x52\x52\x6e\x40\xd1\x09\x0e\x1d\x1f\x67\x33\x33\x33\x37\
+\x0f\x0c\x0c\xb8\x09\xfe\x11\x65\x2e\x89\x64\x61\x4b\xa1\xb7\xb3\
+\xb3\xb3\x2f\x03\x12\x45\x0e\x33\x7b\xb4\x79\xb6\xaa\xaa\x6a\x6a\
+\x20\x10\xa8\x43\xde\x86\xdf\x61\xb7\xdb\x3d\x8f\x6f\x5e\x85\x6c\
+\x18\xa6\x2d\x55\x1e\x04\x49\x15\x1b\x01\xde\x89\x2e\x4f\xd3\xdf\
+\x24\xd1\x22\xe5\x33\x92\xb2\xd1\x5c\x00\x1e\x67\x8e\x66\x61\x7b\
+\xe9\xc6\x7e\xbd\x8f\x25\xa0\x72\x24\xd8\x46\x9b\xd6\x22\xef\x62\
+\x01\xbf\xf2\x8d\x0e\x29\x9b\x19\x05\x74\x25\x8b\xbc\x80\xcd\x0e\
+\xe8\x4a\x40\xdb\xcd\xfc\x52\xd2\xd5\xd6\xd6\x9a\x7e\xf7\x91\xc1\
+\x74\xa7\x86\x19\x65\xa1\x0f\xda\xda\xda\xe2\x17\x4c\x4a\x15\x56\
+\x56\x56\x8e\xa2\xca\xc9\xfa\xa4\x1c\x99\x70\x56\x56\xd6\x7b\x16\
+\xf0\x9f\x5e\xaf\x78\xf4\x0e\xaf\xd7\x7b\x0f\x39\x8f\x2a\xb7\x53\
+\xe5\x51\xb1\xa5\xb4\xda\x60\x30\xb8\x6c\x68\x68\xe8\x95\x7e\xd2\
+\x32\x1f\x09\xfd\x54\x70\x87\x16\x7e\xa5\x80\x14\x05\x30\x0c\xd0\
+\x2f\x9a\xbc\x49\xe9\x53\x02\x54\xce\xd0\x7f\x48\x72\x54\x9b\xc7\
+\x91\xff\xa2\xf2\x05\xcc\x3f\xcd\x5a\xcd\x6e\x3f\x87\x6f\x00\xfb\
+\xb7\x74\x69\x8a\xe4\x31\x3d\x16\x62\x48\x30\x7a\x69\xcd\x76\x65\
+\xe3\x1b\x8d\x27\xe1\x1b\x12\x7e\x41\xb5\x5f\xa3\xbf\xa5\x6c\x42\
+\xeb\xeb\xeb\x07\xe9\xc0\x15\xd8\xe5\x74\x69\x21\xf4\x8f\x8f\xad\
+\x50\xf2\xc4\x47\x7a\x7a\xfa\x6c\xc0\x64\xd1\x72\x2e\xdf\xc4\x0d\
+\x46\xe6\x99\x26\x4e\x17\x1a\xab\x90\x55\xc8\x1d\xb9\x91\xe0\x8b\
+\x9c\x31\xb9\x35\x12\x8d\x7c\xaa\x7a\xaa\x19\x47\x0d\x0f\x0f\x67\
+\x0b\xcf\x51\x39\xc0\x51\xe9\x35\x0b\xd2\x3a\x90\x06\x8d\x6d\x3a\
+\x55\xe1\x0c\xc0\xb6\xa1\x5c\x6e\x16\xa4\xd3\xf9\xe1\x7b\xf1\x9b\
+\x00\xcd\x85\xbe\xa0\xca\x42\xc0\x76\xeb\x7c\x0c\x2c\x79\xc5\x57\
+\x00\xff\x15\x1a\x03\x64\x85\xb1\xff\x39\x8c\xdf\x88\x32\xd1\x20\
+\xe8\x31\x1d\x58\x82\xff\x1c\x7c\xee\xe2\x3f\x83\x2a\xeb\xa8\xda\
+\x99\x28\x06\xfd\x34\xcd\xd6\x2f\x34\x06\x58\x5c\x5c\xfc\x80\x64\
+\x03\xc8\x79\xb2\x11\x34\x87\x84\xa4\xb1\xb1\xf1\x1d\x95\xb9\x70\
+\x90\x8a\x57\x10\xfb\xb3\x99\xb3\x1c\x78\x16\xf5\x9d\xd8\x38\x46\
+\x37\x84\xc6\x00\x5d\x2e\xd7\x30\xfc\x75\xa6\x8d\xd5\x6f\x16\x43\
+\xb2\x01\xe8\x13\x7c\x76\x68\x7e\xbb\xca\xcb\xcb\x65\x97\x1a\x46\
+\x47\x47\xc7\x32\x14\xb2\x93\xef\xd3\x99\xd7\x62\x54\xdf\x30\x8d\
+\x95\xd4\x8b\x02\xba\x9b\x2a\xc7\x08\xaf\x06\x01\x72\x9b\x78\x99\
+\x7f\x2b\x9d\x50\x92\x34\x42\xce\x10\xd3\xcf\xc5\x73\x90\xb8\x59\
+\x7a\xbb\xe4\xd2\xe4\x63\x4a\x6f\xb8\xda\xd8\xad\x97\x71\x92\x16\
+\xec\x23\x99\x69\x9b\x54\x60\x32\x4a\xae\x4d\xe4\x3a\xc1\x62\xfb\
+\xa1\x33\xc9\x27\xed\xff\x50\xa1\x08\x7c\x17\x79\x2c\x49\x7b\xf7\
+\xb0\xda\xf5\xa2\xfb\x94\x51\x56\x56\x36\x1f\x90\x66\x2d\xb6\x46\
+\x81\x89\x1c\xbf\xc5\x45\xf0\x78\x3c\x2f\x0a\x0a\x0a\xde\xc2\xae\
+\x66\x65\x6b\x0a\x0b\x0b\x5f\x77\x77\x77\xcb\x9b\x25\xe5\x21\x0f\
+\x2f\xc0\x7e\x27\x60\x1c\x39\x8e\x8c\xfc\x3f\x34\x00\x4a\x56\x00\
+\x3c\xbc\x3f\x33\x08\x2a\x46\x14\xd0\x39\xc8\xb7\x78\x8f\xc6\xce\
+\x91\xf8\x98\x0d\xd9\xdd\xf8\xee\x23\xee\x30\xf6\xb1\x80\x9d\xe6\
+\x61\xe5\xee\xec\xec\x94\x8e\xc5\x87\xe1\x1b\xc6\xb5\x30\xac\x74\
+\x03\x5b\x59\xde\x36\x63\x99\x21\x12\xc8\x03\xe9\x02\xba\x6b\x0e\
+\x87\xc3\xc7\x26\x09\x3a\x9d\xce\x1c\xe4\x7c\xce\xa2\xfc\x39\xcb\
+\x27\x98\x84\x4f\x04\xd0\x03\x54\xb6\x17\x5e\xae\x3c\xc3\x48\x08\
+\x28\x5e\x3c\x15\xbf\x0c\x85\x42\x7b\x60\xb7\x30\xad\x0e\xb7\xb8\
+\xcb\x6d\xd2\xce\xb1\xda\xc1\x91\xb9\x1b\x53\x98\xfc\x58\x02\x2a\
+\x7f\xfe\x5a\x72\xb9\xed\xbf\x47\x5e\xc5\xcc\x67\xca\x5f\x8d\xbc\
+\x59\xbc\x54\xf3\x1c\x90\x76\xe8\x6f\x54\xf5\x10\xbd\xe5\xf8\x1f\
+\x26\x14\xf6\x13\xa6\x79\x97\x77\x00\x00\x00\x00\x49\x45\x4e\x44\
+\xae\x42\x60\x82\
+\x00\x00\x0a\xfb\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
+\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
+\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
+\x79\x71\xc9\x65\x3c\x00\x00\x0a\x8d\x49\x44\x41\x54\x78\xda\xed\
+\x9a\x5d\x88\x5d\x57\x15\xc7\x7f\x6b\xef\x73\xee\xbd\x93\x3b\x33\
+\x99\xc9\x57\x9b\x8f\x36\x4d\x93\xd2\x54\x6d\x5a\x8a\x6d\xb5\x05\
+\x5b\x29\x05\x5f\x0c\x54\x2a\x88\x2f\x16\x41\x6c\xc5\x22\x14\xd1\
+\x17\x1f\x7d\xb1\x42\xc5\x52\xf0\x31\x42\x5f\xaa\xd0\xaa\xd5\x46\
+\xb0\x54\x90\x52\xa5\x82\x6d\xac\xd4\xa4\x24\x4d\xd3\x4c\xcd\xe4\
+\xab\x99\x4e\x3a\xf7\xfb\x9c\xbd\xbc\x73\xcf\x3e\xb3\xe6\xce\x4c\
+\x26\x93\x20\x82\xe0\x86\x35\x7b\xdf\x7d\xf6\x39\x67\xfd\xd7\xfa\
+\xff\xd7\xde\x07\x26\x51\x55\xfe\x97\x5b\x02\xfc\xef\x03\x10\x79\
+\x8a\xb5\xb5\xfc\xa1\xc4\xcb\x63\xd5\x6a\xba\x03\xc8\x89\x2d\x68\
+\x61\x00\x22\x50\x49\x33\xfe\x33\x99\x4d\xc9\x73\x59\xfc\x2c\xdf\
+\x69\x77\x8f\x06\xe5\x19\xf0\x2f\xab\x3e\x71\x25\x19\xc8\x1f\xdf\
+\x7d\xcb\xe6\xa7\x1f\xf8\xfa\xbd\x8c\x6c\xdb\x04\x79\x00\x20\x00\
+\x93\x23\x30\x5e\x53\xb2\xe0\x09\xb3\x67\xd8\x5b\x3f\xc7\xf8\xfa\
+\x3a\x21\x5c\x1d\x08\x11\x41\xb3\x2e\x7f\x39\x1a\x98\x9d\xd8\xcb\
+\xba\x11\x45\x15\xbc\x17\x4e\xbf\x33\x7d\xcb\x6f\x7f\xf6\xda\xfe\
+\xe9\xa9\xd9\x87\x81\xe7\xd7\x08\x20\x4c\x8e\x8f\xd5\xbe\xbf\xff\
+\x07\x5f\xe4\xaf\xcd\x8d\xcc\x4e\x83\x77\x20\x02\x59\x80\xfb\x6f\
+\x84\x5d\x9b\x61\xb6\x05\xa2\x4d\x76\xef\xf2\x6c\xd9\xb2\x91\x3c\
+\x0f\x57\x0d\xc0\xd3\xe6\xc5\xd7\xcf\xf1\xf7\xc6\x04\xbb\x6e\x76\
+\x68\x0e\x12\x60\xd3\x67\x36\xf0\x8d\x1b\x37\xf0\xe4\x23\xbf\xfc\
+\xce\x95\x00\xd8\xba\xf3\xe6\x8d\x1b\x3f\x4c\x27\xf9\x60\x1a\xd6\
+\xa5\x10\x04\x5c\x04\xd0\x6a\x06\x2e\xce\xf6\xad\xe5\x48\xfb\xe3\
+\xe3\xc7\xa7\x39\x75\x6a\x06\xd5\xb5\x3b\xbc\xb8\xa9\x2a\xd5\xa4\
+\x47\xb3\x51\xa1\xa7\x4a\xde\xa5\x00\x20\x30\x7d\x1a\xee\xb8\x61\
+\x33\xdb\x77\xad\xdf\x7d\x25\x22\x76\xce\x3b\x51\x15\xd2\x04\x12\
+\x0f\x02\x88\x14\x96\xe7\xd0\x6a\x43\xb3\x6f\xa3\x99\x50\xab\xa5\
+\x7d\xab\xac\x49\x07\xaa\x90\xb8\x1c\xe7\x14\x80\x4e\xcf\x01\x8e\
+\x4a\x02\x3e\xf5\x88\x53\x9c\x03\x55\x7b\x67\xde\x13\x5c\xbf\x5d\
+\x02\x80\xae\xf8\x1a\x45\x0b\x87\x89\x4d\xcc\xba\x19\xcc\x35\xa1\
+\xd1\xb7\x8a\x08\xa3\xa3\x23\xd4\xeb\x97\xd7\x80\x77\x42\xb3\xd9\
+\xe2\xd5\x37\xdb\x9c\x9d\xad\xe2\x7d\xe0\xbe\xdb\x33\xb6\x5d\x33\
+\x89\xa7\x4b\x92\xe4\x08\x45\xa6\x03\x0c\x80\x10\x83\xa6\xfd\xb6\
+\x04\x40\xb8\x1e\xc2\x23\x95\x24\xdd\x87\x10\xcc\xf5\x3e\xe0\x2c\
+\x9d\x9c\x3a\xfe\x51\xda\x78\xfa\x20\x1f\xce\x05\x44\x73\x44\x0c\
+\xee\xc5\x54\x79\xd3\x05\x7a\xb9\x50\x91\x36\x7f\x5e\xdf\x23\x49\
+\xfc\xaa\x14\xf2\x3e\xe9\x9b\xa3\xd7\x47\x7f\xe8\x58\xc2\xe9\x8f\
+\x2a\x90\x2b\x9d\xaf\x55\x78\xf4\x9b\x5b\x48\x05\xbc\xef\x40\xa4\
+\x2a\xae\xe8\x15\x08\x5a\xf4\x18\x80\xb0\xaf\x3e\x9a\xbe\xf4\xa5\
+\x6f\xdd\xb3\x63\xfd\x9e\x6d\xe4\x99\xc2\x00\x25\xd4\x52\xd8\x54\
+\x87\x2c\x53\x5a\xb3\x0d\x76\x57\xa6\xd8\xbb\x7b\x23\xbd\xdc\xbc\
+\x53\x04\x0b\xb6\x90\x05\x59\x95\x3e\x89\x87\x43\x6f\x9f\xe7\xad\
+\xb9\xeb\x19\xdf\x38\xc2\xcd\x5e\x49\x12\x08\x9d\x0e\xbf\x3f\xf0\
+\x37\xce\x9d\x3e\xc4\x8f\x7f\x74\x7b\x7f\xae\x87\x8b\xdc\x77\x62\
+\x94\x55\x2d\x0c\x03\xa0\xdf\xdb\xff\xd8\xbd\x3b\xf2\x7b\x3e\xcd\
+\xab\xef\x81\x8f\x68\x73\x85\x1b\x46\xe1\xd6\x3d\xd0\xed\xc1\xdc\
+\xc5\x16\x7b\xea\x19\xfb\x6e\xbd\x9e\x5e\x16\xb8\xda\x56\x4d\x85\
+\x33\x33\xf0\xdc\xeb\x5b\xb9\xed\xb6\x71\x5a\xf1\x51\xa3\x75\xf8\
+\xea\x0f\xb7\xf2\xec\x77\x5f\xe0\xf0\xe1\x8f\x18\xa9\xd5\x91\x66\
+\x41\x9d\x10\x0c\xc0\xfc\x38\x2c\x06\x30\x3e\x56\xbd\x77\xc7\xdd\
+\x37\xf1\xe2\x3b\x40\x66\x25\x52\x81\x46\xaa\xcc\x5c\xc8\xe9\x76\
+\x85\x4e\x2b\x70\x6a\x76\x86\x6e\xa3\x49\x50\xae\xba\xa5\x89\x72\
+\xe6\x4c\x9b\x76\x03\xda\x2d\x90\xe8\xdc\xb9\x26\x4c\xec\x1c\x63\
+\xef\x5d\x3b\x78\xf7\xe8\x2c\xd5\xea\xfa\x02\x00\x0c\x51\x29\x2c\
+\xcd\x80\x38\xf1\x01\x47\xea\x20\xf8\x32\x03\x86\xb2\xdd\x86\x4e\
+\x57\xe9\x76\x20\xa9\x27\x54\xab\x09\x6b\x29\xf1\x0a\x78\x09\xa4\
+\x3e\x80\x40\x2f\x73\x04\x75\x03\x00\xe9\xa0\xc2\x14\xef\x02\x70\
+\xa5\x83\x01\x10\x8f\x13\x87\x4f\x04\x11\x5d\x46\xa1\x65\x00\x50\
+\x14\x8d\x0f\xb0\x85\xb8\xe8\x45\xb3\xad\x74\x3a\xd0\x6b\x07\xaa\
+\x1b\x52\xc6\xc6\x46\xc9\x83\x5e\x7e\x37\x0d\x3d\x0e\x1d\x99\xe1\
+\xd8\xe9\x75\x84\x1c\xf6\x6c\x6d\x72\xc7\x27\x26\xa9\x54\x52\xaa\
+\xb5\x1c\x89\x95\xad\x34\xca\x4a\xa3\x90\x24\x0e\xef\xbd\x55\x21\
+\x03\xb1\x1c\x80\x52\x4c\x98\xe3\x51\xf1\xf3\x16\x94\x76\x7b\xde\
+\xa0\xd7\x81\x4a\x9a\x32\x32\x92\x92\xe5\x97\x07\x90\x48\xce\x3f\
+\x4e\x8c\xf2\xcc\xef\x76\x41\x57\x79\x74\xff\x09\xee\xbf\xcb\x23\
+\x2e\x25\x4d\x93\x62\xc7\xb5\xa0\x45\x3f\x0a\x07\x7d\xe2\x48\xbc\
+\x8b\xd1\x37\x0a\x89\xb3\x35\x43\x65\x34\xa8\x21\x74\x0e\x9c\x3d\
+\x90\x56\x4b\x69\x77\x20\xeb\xea\xfc\x83\x63\xfa\x2f\x0f\x20\x75\
+\x09\xe2\x7a\xd0\x53\x00\x92\xf2\x5e\xef\x49\x13\xb7\xe0\x38\x62\
+\xef\x93\xe8\x4b\xe2\xdc\xe0\x5d\xc2\x30\x33\x5c\x14\xb1\x95\xd1\
+\xe8\x64\x1e\x86\x1f\x26\x18\xda\x66\x04\x90\x77\x75\x50\xdf\x2b\
+\x15\x8f\x64\x6b\x01\xe0\x71\x25\x27\xa4\x88\xea\xfc\xbd\x38\x4f\
+\x92\xfa\x21\xe7\x1c\x31\xe3\x14\xbe\x78\x97\x91\x38\xf3\x43\x82\
+\xe9\x64\x45\x0a\xe5\xc1\x68\x23\x25\x17\xc5\x32\xd0\x6a\x43\x18\
+\x54\x28\x5f\x6c\x52\xac\x01\x80\xf7\xf8\x52\xa5\x30\x18\x27\x49\
+\x01\x20\xf2\xdb\xa2\x8b\x05\x50\x81\x67\x9e\x0f\xf4\xb6\xd4\xd8\
+\x70\x8b\xd1\xcc\x00\xac\x40\x21\x8d\x4e\x6b\x18\xf4\xc6\xb7\x8c\
+\xbe\xf3\x05\x00\x72\xe6\x1d\x18\xd0\x00\x59\x1b\x00\xa7\x0e\xda\
+\x02\x30\x18\xa7\x15\x0f\x32\x4f\x21\x8f\x08\x98\xd9\x79\x47\x83\
+\x32\x53\xdf\xc0\xbe\xfb\x36\x30\x31\xaa\xe4\x19\xb8\xa5\x14\xd2\
+\xa5\x14\xca\x41\x18\x46\x2a\x51\xc4\x65\x06\xc8\x75\xc0\xe3\x6a\
+\x65\x6d\x1a\x70\x24\x6c\xbf\x36\xe7\xee\x3b\x2f\x02\x0c\xc6\xce\
+\x25\x83\x00\xf4\x6d\x58\xa0\x50\xfc\x89\x74\xde\xbc\x05\xb6\x6e\
+\x87\x6e\x53\x08\x6a\x41\x9d\xef\x43\x0e\xba\x5c\xc4\x31\x12\x6e\
+\x58\xcc\xaa\x45\x06\x9a\x2d\x10\x55\x7c\x92\x0c\xa2\xa8\xb2\x96\
+\x93\x66\x95\x87\x1f\x9c\xe0\xcb\x0f\x6a\xcc\xf2\x04\xe2\xab\x24\
+\xa9\x2b\x34\x20\x82\x49\x04\xc4\xce\x3a\x5c\x3b\x02\xbb\xc6\xa0\
+\x9b\x2a\x4e\x84\x56\x06\x17\xda\xf1\x08\xaf\x10\x96\x6b\xc0\x28\
+\x24\x60\x7c\x0b\x46\x21\xa7\x8a\x73\xd2\x37\xd7\x37\x65\x2d\x6d\
+\x62\x62\xdc\x0e\x7e\x0a\x21\x68\xf1\x6c\xef\x10\x86\xb3\x4e\xe4\
+\x77\x96\xc3\x67\xb7\x35\xf8\xca\xde\x39\x5a\xad\x0c\x27\x8e\x57\
+\xde\xaf\x73\xa1\xe5\x57\x16\x31\x6a\x22\x66\xa1\x8c\xda\x79\xa8\
+\xd9\x54\x1a\x7d\x4b\x45\x19\xa9\x40\xad\x92\x91\x88\x72\xb5\x2d\
+\xa9\xc0\x68\x75\x21\xea\x66\xa5\x2f\x0a\x1b\xc7\xab\x6c\x1a\x5f\
+\x47\x3e\xd2\xa5\xd1\x68\x01\x0a\x97\xd4\x40\x34\x27\xa0\x4b\x28\
+\x04\xd0\xcd\x21\x0b\xd0\x0b\x9e\x9f\xfe\x2a\xe1\x9a\xc9\x16\x59\
+\x86\xf1\x1d\xac\xc9\x2a\xba\xc0\x4e\xa3\xc7\xa7\x52\xf0\xbe\x3f\
+\x1e\xde\x44\x89\x0e\xce\x53\x15\x5c\xbf\xaf\x92\x85\x26\x79\x50\
+\x9c\xc3\xaa\x10\x4b\x34\x60\xa7\x3d\x33\x02\xd4\xd6\x7b\x6e\xfc\
+\xdc\xd8\x42\xb4\x0e\x77\x26\xf8\x67\x0b\xa3\x99\x23\x8a\x31\xce\
+\x11\xc7\x8b\x37\x45\xb0\x35\xb1\xb6\x27\x37\xc1\x9d\x63\x10\xb2\
+\xe1\xe3\x32\x91\xdf\xd6\x74\x40\x3b\x0d\xf6\x3e\x5d\xb6\x0f\x0c\
+\x53\xc8\x8e\x16\xe5\x8b\x53\x59\x40\x3f\x5e\x03\x6f\xce\x61\xe5\
+\x6d\xc9\x98\xe5\xd7\xc5\x0d\x5f\x93\xf8\x1e\x5b\x63\x7a\x04\xb0\
+\xe0\x86\xb8\xd1\x1a\xad\x55\x57\xc8\x80\xf3\xd0\x53\xd8\x35\x09\
+\x37\x6c\xb0\x07\x89\x58\x2f\x0c\x8f\x05\xe3\x86\xb3\x75\x36\x1f\
+\x3b\x9b\xb3\xdf\x10\x41\x00\xe7\xdb\x16\xf9\x10\xec\x3d\x1a\x01\
+\xa8\xea\x50\x06\xc2\xb2\x0c\xa8\x3d\x74\x53\x5d\x79\x60\xf3\x71\
+\x5c\x68\xa3\x08\x22\xf3\xe6\x70\xae\x18\x23\x71\x0e\x87\xb8\x72\
+\x2c\x88\x2b\x7b\x17\x29\xe4\x90\xb8\xd6\x95\xf7\x39\x37\x18\x4b\
+\xb4\x4a\x22\x1c\x39\x5f\xe3\x95\xa9\x0a\x4e\xac\xa4\x23\xc3\x5f\
+\xe4\x41\x2f\x71\x9c\x36\x94\x46\x83\x2c\x57\x7c\xf6\x31\x9b\x27\
+\xc6\x49\x6b\x63\x20\x1a\x69\x23\x0b\x20\xc4\x81\x17\x89\x7b\x87\
+\xe0\x88\x34\x2b\x1d\xf6\xa5\x0f\xe6\x2c\x10\x03\x00\x12\xe7\x43\
+\xaf\xc5\xbb\x17\x72\x3b\x4a\x5b\x74\x97\x01\x70\x52\xd0\x57\xc3\
+\xca\x1b\x59\x04\x60\x9a\xa8\x8d\x4e\x52\xed\x9b\x86\xf8\x95\xe6\
+\x30\xfe\x4a\x61\x5e\x2e\x39\xbf\xa6\xd6\xee\x76\xe8\xe5\x8a\x60\
+\x1a\x08\xcb\x34\xa0\xf3\x66\x7b\xd3\x6a\x14\x32\x00\x3a\x40\x8e\
+\xda\x37\xa8\x0f\xa0\xb2\x04\xec\x7c\xaf\xe5\xbc\x39\xaf\x26\xf2\
+\x55\x9b\x6a\x18\x38\x07\x31\xfb\x40\xae\xcb\x44\x5c\xe8\xc2\x19\
+\x00\x65\xb9\x88\x63\x14\x4d\x38\xe5\xe7\x9c\x94\xa0\x88\x62\x0d\
+\x10\x5c\x1c\x97\x11\x73\x10\xa7\x08\xd8\xbc\xc4\xac\x5c\xa2\x59\
+\xd5\x11\x03\x6b\x1c\x8f\xbf\x8d\x42\xab\x1c\xa7\x15\x2a\x2e\x02\
+\x08\x45\x06\x04\x4c\xf5\x21\xf6\xab\x80\x10\x57\x02\xb0\xf9\xbc\
+\xa4\x9f\xac\x9e\x81\x32\x78\x30\xbc\xd3\x6a\x28\x35\xa0\x45\x76\
+\xdd\x0a\x3b\x31\x6a\x1b\x99\xf1\x50\xb1\xf2\x17\x91\x63\x99\x50\
+\xc0\x1b\x88\x62\x6d\x19\x71\xac\xd9\x7c\x19\xe1\xe5\xfc\xce\x83\
+\x5a\x06\x22\x5d\x75\x71\xf4\x43\xb0\x2f\xc6\x15\x35\x80\xf1\xd7\
+\x89\xdd\x04\x5a\x7e\x29\x19\x2d\xb0\x4c\x88\x65\xa2\x88\xf6\xe0\
+\xb7\x1d\x49\x82\x1a\x20\x29\x69\xe2\x96\x55\x98\xb8\xdf\x58\xb6\
+\x8d\x22\x71\x1c\xd4\x02\xec\x20\xac\xbc\x91\x99\xf8\x54\x25\x46\
+\x45\x71\xce\xf4\x11\xb0\xc3\xd4\x72\x4d\xd8\x1a\x00\x62\xc4\x88\
+\xeb\x3c\x10\xb0\x79\x6b\x45\x06\x9c\x60\xeb\x43\xd1\xdb\x29\x21\
+\xd2\xcc\x18\x82\x22\x2b\x7f\x13\x7b\x57\x44\xc5\x28\x54\x18\x98\
+\x80\x9c\x5b\x19\x84\x2e\xd6\x80\x09\x9b\x82\x19\x96\x09\x35\x4d\
+\xc4\xe8\x2a\x56\x7a\x87\x0f\x6b\x8a\xed\x03\x89\x40\xea\xb1\x33\
+\xc8\x4a\x1b\x19\x02\xaa\xa6\x01\x43\x6d\xe5\x33\xb0\x32\x08\x82\
+\xed\x09\x6a\xc2\x2e\x9d\x37\x0a\x9a\xb0\x23\x85\x14\x00\x11\x63\
+\x43\x45\x7a\x40\xe8\xf7\x6d\xea\xd5\xc0\xba\xaa\x52\x19\x81\x86\
+\xc2\xb1\x23\x17\x60\xf6\xe2\xc9\x21\x0a\xe5\x5a\x02\xb0\xb4\x21\
+\x3a\x9c\x81\xc5\x20\x74\x15\x61\x0b\x50\x8a\x39\x98\xf8\x70\xa0\
+\x45\x07\xa1\xe4\xb3\x92\xc7\x8d\xcc\x3b\xdb\xbd\x9f\xfd\xd3\x0c\
+\x6f\x25\xa7\xe8\x75\x32\x54\x2b\x9c\x68\xf5\x68\x4b\x8b\xf7\x8e\
+\xcd\x72\xf8\xb9\x57\x20\x6f\x1d\xc0\x28\x64\xd1\x22\x8a\x68\x25\
+\x0a\xc1\x62\x2d\x2c\xd7\x84\x62\xd1\x46\x6d\xed\xe2\x52\xeb\x2c\
+\x23\xb1\x44\x86\x72\x1f\x30\x90\x22\x1c\x3c\xf0\xc6\xf9\x83\x07\
+\x8e\x34\x58\xc0\xa4\x80\x7a\xb4\xf7\x1e\x64\x3f\x81\xe4\x05\x2c\
+\x03\x42\xae\xca\xfb\x53\x27\x98\x6b\x34\xd8\xb7\x73\x37\x20\xe5\
+\x3e\x60\x14\x92\xe8\x98\x46\xd1\xea\xca\x9a\xf0\x80\x9a\x26\x50\
+\x93\x04\xaa\x20\xc5\xfd\xa6\x01\xb5\x0c\xb0\x50\x61\x3a\x8f\x03\
+\xcf\x01\x75\x30\x51\x83\x74\xc0\x67\x30\x5c\x85\x24\x04\xe8\x4c\
+\xbf\x4d\x6b\xe6\x2c\xf9\xd6\xed\x28\x0e\x19\x3a\xfa\x46\x87\x17\
+\x8f\x31\x70\x5c\x42\x13\x16\x71\x0c\x8d\xd8\xfd\x01\x25\x37\xed\
+\x40\x3c\xef\x83\xeb\xc4\x99\x06\xab\xb4\x84\xc8\x21\x15\xf8\xd4\
+\x9d\x5f\x20\x64\x39\x89\x3a\xf2\x3c\x47\x5c\xac\x4a\x56\x9f\x11\
+\xb5\x7d\x01\x35\xea\x40\x14\xac\x62\x6b\x25\xf6\x98\xb0\x8b\xdf\
+\x96\x11\x82\x12\x72\x8d\xef\xb2\x7d\x68\x2d\xcd\x00\x64\xdd\xa3\
+\x1f\xbe\x7b\xf6\xba\x7c\xdf\x1e\xd6\xe1\x09\xad\x9c\x5a\x1a\xa8\
+\x4a\x17\x2f\x19\xce\xe5\x84\xc8\x03\x2d\xab\x94\x13\x94\x62\x8c\
+\x9a\x73\xaa\x71\xde\x36\x2e\x3b\x76\x0f\x7e\x47\x93\xc2\xba\x69\
+\x4e\x25\x55\xaa\x15\x48\xab\x70\xf2\x78\x60\xee\xe4\xd9\x1c\xdc\
+\xf4\xda\x01\x10\x9e\xfa\xe0\xd7\x7f\xfc\xfc\xab\x49\x2a\xd7\x7e\
+\xf2\x3a\x5c\x1e\x68\x9e\xdd\xc9\xc1\x13\x6d\x90\x93\x58\x93\x28\
+\x36\xc1\xbe\xae\x5c\xbc\x24\x46\x37\x71\x71\x2c\xf1\x52\x79\x5d\
+\x6c\xce\x95\xeb\x6b\xfc\xab\x51\xe5\x22\x4a\x73\xae\xcd\x1b\xbf\
+\x78\x8d\xec\xe4\xfb\x2f\x43\xfa\xfa\x15\x00\xf0\x2f\x85\x8b\xb3\
+\x0f\x4d\xfd\xfc\x85\x6f\x4f\xd5\xc7\x77\x23\xe8\xeb\x9a\x98\x6a\
+\x57\x6d\x0a\x5c\xcd\x12\xc5\x82\xa2\xe0\xd4\xd1\xe9\x34\xe8\x7e\
+\xfc\x07\x48\x9e\x04\x74\xcd\x00\x54\x9f\x00\xf8\xcd\xbc\xfd\xff\
+\xbf\x55\xfe\xcb\xed\xdf\x99\xd5\xe1\x33\x6b\x2f\x52\xdc\x00\x00\
+\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x02\xa3\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\
+\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xe2\x03\x02\x04\x34\x31\x97\x0c\xf9\x63\x00\x00\x00\x19\x74\x45\
+\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\
+\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\
+\x00\x02\x0b\x49\x44\x41\x54\x68\xde\xed\x98\xcd\x4b\x94\x51\x14\
+\xc6\x7f\x16\x96\x7d\x2c\xa2\x55\x1b\x3f\x90\xc0\x45\x60\x21\x6e\
+\x5b\x04\x15\x45\x14\x06\x23\xae\x5a\xbb\x90\x72\x21\x6d\x4a\xa5\
+\x76\x41\x7f\x41\xae\xda\x88\x91\xd2\x22\x17\x66\x10\xa2\x92\x50\
+\x18\x45\x05\x81\x04\xd9\x2a\x22\xa5\x60\x48\xc4\x84\x69\x73\x16\
+\x0f\x2f\x33\x13\xfa\x5e\x21\xc6\xe7\x07\x97\xfb\xce\x73\xce\x7d\
+\xee\xdc\x97\x73\xef\x65\x06\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\
+\x63\x8c\x49\x4e\x0f\x50\x8a\x76\x26\xb5\xf9\x9e\xff\x70\xc1\xed\
+\xf2\xfc\x61\x37\x2d\xf8\x1b\xb0\xb2\x9b\x16\xfc\x7e\x27\xcc\xb7\
+\xb2\xe0\x59\xd9\x5b\xa7\x32\xb1\xe3\xc0\x9f\x88\x7d\x02\xf6\x49\
+\xac\x1e\xb8\x01\xbc\x04\x7e\x46\x9b\x03\x7a\xcb\xcc\x7f\x04\x68\
+\xaa\x50\xce\x5b\xf1\x49\xc2\x7d\x59\x70\x4f\x26\xf6\x48\x62\x67\
+\x45\xef\x00\xde\x4a\x2c\xdb\x9e\x03\x7b\x25\xff\xb4\xc4\xae\xe5\
+\xf0\x49\x42\xb7\x4c\x30\x2c\x7a\xa7\xe8\xe3\xa2\x9f\x00\xd6\x24\
+\x36\x0d\xdc\x01\x1e\x02\x9b\xa2\xdf\x94\x31\x7d\xa2\x9f\xcc\xe1\
+\x93\x84\x66\x31\x1f\x0d\xad\x0e\x78\x11\xda\x9a\x94\xe3\x81\x28\
+\xc9\x12\xb0\x01\x5c\xce\x78\x15\xc4\xeb\xb5\xe8\x0f\x42\xdb\x04\
+\xf6\xe7\xf0\x49\x42\x1d\xf0\x3d\xcc\x17\x43\xbb\x20\x13\xde\x92\
+\xdc\xeb\xa2\xdf\xae\xe0\xb5\x1a\xf1\xdf\xa2\x2f\x84\xf6\x31\xa7\
+\x4f\x32\x26\xc3\xbc\x18\x7b\xe6\x5d\x7c\xfe\x0c\x34\x48\xde\x94\
+\x7c\xd1\xd6\x32\x3e\xf5\x52\xa6\x5f\xe5\x00\x2d\x86\x36\x96\xc3\
+\x27\xe9\xb5\xf4\x2a\xfa\xc3\xc0\x80\xec\xb3\x7e\x60\x5d\xf2\x8e\
+\xc9\x73\xb1\x8c\xcf\x95\x28\x57\x80\x67\xd1\xb7\x84\xaf\x5e\x49\
+\xdb\xf1\x49\xca\x79\x79\xe3\x1b\xd1\x3f\x2d\x93\x37\x56\xa5\x14\
+\x3b\x81\x1f\x11\x5b\x05\x1a\x43\xef\x92\x31\x97\x72\xf8\x24\xe5\
+\x68\xe6\x3a\x58\xaf\x50\x6a\x85\x4c\xde\x13\x60\x08\x78\x2c\xf7\
+\x75\x09\xb8\x28\x63\x86\x45\x6f\xca\xe1\x93\x9c\x25\x99\xe8\x6e\
+\x95\xbc\x91\x2a\xf7\xe6\x97\x38\xf0\x94\x89\x88\xfd\x8a\xc3\x68\
+\xbb\x3e\x49\x69\x00\x96\x63\xb2\x65\xe0\xe0\x3f\x4e\xf5\x02\x30\
+\x13\x25\x57\x04\xde\x00\x83\xc0\xa1\x2a\x2f\x72\x3e\xa7\x4f\x52\
+\x06\xe5\xed\x5e\xad\xf5\xdf\xa9\xcd\x72\x05\x4c\x67\xca\xae\x26\
+\x99\x90\xd3\xb9\xad\xd6\x17\x7b\x4e\x4a\xf9\x9e\xff\x94\x31\xc6\
+\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x98\x54\xfc\x05\x94\x34\
+\xe4\xeb\x87\xd7\x3b\x14\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
+\x60\x82\
+\x00\x00\x04\x73\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
+\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd2\x01\x07\x0b\x02\x2b\xa1\x4a\x72\xae\x00\x00\x03\xf0\x49\x44\
+\x41\x54\x78\xda\xb5\x96\xcf\x6b\x54\x57\x14\xc7\x3f\xf7\xcd\xf8\
+\x06\x99\x49\x4c\x33\x89\x20\x1a\x5f\x68\xb2\xe8\x46\x1b\x45\x17\
+\x3e\xc1\x04\x0c\xc2\xb8\x98\x89\xa4\x83\x9b\x8a\x90\x46\xc8\xa6\
+\x05\xdd\xf9\x17\xb8\x10\x04\xff\x02\xdb\x85\x14\x19\x14\x0c\xad\
+\x30\x76\x15\xd0\xfc\x92\x56\x0d\x41\xc9\x2f\x92\x86\xc4\x41\x26\
+\x04\x9a\xc4\x79\xbf\xee\x8f\x2e\x9a\x0c\x49\xeb\xc4\x52\xd2\x03\
+\x17\x2e\xf7\x1c\xce\xe7\x9e\xef\x7d\xf7\xdc\x07\xff\xb3\x89\x5a\
+\x8e\x4c\x26\x93\x2d\x97\xcb\xf9\x20\x08\x5c\x29\xe5\x51\xa5\x14\
+\xc0\x22\x30\x7c\xe0\xc0\x81\xc2\x8b\x17\x2f\x06\xff\x13\xe0\xca\
+\x95\x2b\x27\x5f\xbf\x7e\x7d\xc7\xb2\xac\xce\xf3\xe7\xcf\x73\xfc\
+\xf8\x71\xd2\xe9\x34\x5a\x6b\xca\xe5\x32\xe3\xe3\xe3\x14\x8b\x45\
+\xa4\x94\x43\x87\x0f\x1f\xbe\x31\x36\x36\xf6\xdb\xbf\x06\x74\x75\
+\x75\x65\x4b\xa5\xd2\x43\xd7\x75\xe3\xbd\xbd\xbd\x1c\x3c\x78\x90\
+\x7d\xfb\xf6\x21\x84\x40\x6b\x4d\x14\x45\xf8\xbe\xcf\xbb\x77\xef\
+\xb8\x7f\xff\x3e\x23\x23\x23\xb2\xa1\xa1\xa1\x77\x6e\x6e\xae\x66\
+\x35\xb1\xad\x49\x2e\x97\x3b\x39\x33\x33\xf3\xcb\xa5\x4b\x97\xe2\
+\x57\xaf\x5e\xa5\xa9\xa9\x89\xba\xba\x3a\x1a\x1b\x1b\x69\x6a\x6a\
+\xa2\xb9\xb9\x99\x74\x3a\x4d\x2a\x95\x22\x95\x4a\x71\xec\xd8\x31\
+\x3c\xcf\xb3\x5e\xbd\x7a\x95\x3f\x72\xe4\xc8\xcf\xab\xab\xab\xa5\
+\x5d\x01\x61\x18\xfe\xe8\xba\xee\xe7\xfd\xfd\xfd\xa4\x52\x29\x1a\
+\x1a\x1a\x68\x6e\x6e\x26\x95\x4a\x91\x48\x24\x88\xc5\x62\xc4\x62\
+\x31\x12\x89\x04\x75\x75\x75\x24\x93\x49\xda\xda\xda\x98\x9e\x9e\
+\xb6\x66\x67\x67\xbf\x08\x82\xe0\xfb\x9a\x3a\x75\x74\x74\x64\x1d\
+\xc7\x31\xc5\x62\xd1\xbc\x79\xf3\xc6\x94\x4a\x25\x73\xf1\xe2\x45\
+\x13\x45\x91\x51\x4a\x19\xa5\x94\x91\x52\x9a\x28\x8a\x8c\xef\xfb\
+\x66\x6d\x6d\xcd\x5c\xb8\x70\xc1\x2c\x2d\x2d\x99\x42\xa1\x60\xea\
+\xeb\xeb\x4d\x63\x63\x63\xf6\x63\xb9\x2d\x80\x72\xb9\x9c\xcf\x66\
+\xb3\x1c\x3a\x74\x88\x64\x32\x49\x5f\x5f\xdf\x5f\x4e\xcb\x42\x08\
+\x41\x36\x9b\x25\x97\xcb\x21\x84\x40\x08\xc1\xe5\xcb\x97\xab\xfe\
+\x8e\x8e\x0e\x32\x99\x0c\x9e\xe7\xe5\x6b\x02\x82\x20\x70\xcf\x9e\
+\x3d\x8b\x6d\xdb\x5c\xbb\x76\xad\xea\x34\xc6\xec\x08\x36\xc6\xd0\
+\xd3\xd3\xb3\x63\x5d\x08\x41\x77\x77\x37\x4a\x29\xb7\x26\x40\x29\
+\x75\xb4\xa5\xa5\x85\x44\x22\xc1\x83\x07\x0f\xaa\xc9\xb6\xc6\xe0\
+\xe0\x20\x8f\x1f\x3f\xc6\x18\xc3\xa3\x47\x8f\x76\x00\x8d\x31\xb4\
+\xb7\xb7\x03\x1c\xfd\x18\x20\xbe\x09\x40\x08\x41\x3c\x1e\x47\x29\
+\x85\x31\x06\x21\x44\x75\xbe\x65\x4a\xa9\xea\x9a\x31\x86\x28\x8a\
+\x90\x52\x12\x45\xd1\x3f\xaa\xfd\x7b\x05\x8b\xf3\xf3\xf3\xd5\x6f\
+\x5d\x6b\x8d\xd6\x1a\x29\x25\x52\x4a\x72\xb9\x1c\xb9\x5c\x6e\x47\
+\xb2\xad\xd8\x30\x0c\x99\x9a\x9a\x42\x29\xb5\x58\x13\x60\x8c\x19\
+\x7e\xfa\xf4\x29\xbe\xef\x13\x86\x21\x5a\x6b\x8c\x31\x84\x61\x48\
+\x10\x04\x68\xad\x51\x4a\x11\x86\x21\x61\x18\xa2\x94\x42\x6b\x4d\
+\x10\x04\x04\x41\x40\xb1\x58\x44\x6b\x3d\x5c\x53\x22\xcb\xb2\x0a\
+\x85\x42\xe1\xeb\x7c\x3e\x4f\x7b\x7b\x7b\x55\x06\xcf\xf3\x10\x42\
+\x70\xef\xde\x3d\x84\x10\x54\x2a\x15\xa4\x94\x3b\xfc\x6f\xdf\xbe\
+\xe5\xc9\x93\x27\x00\x85\xdd\x5a\x85\x63\xdb\xf6\x0f\xa7\x4f\x9f\
+\xee\xbc\x7b\xf7\x2e\xb6\x6d\x63\x59\x16\xb6\x6d\x23\x84\xd8\x71\
+\x26\x4a\xa9\x6a\xcb\xf8\xf0\xe1\x03\xd7\xaf\x5f\x67\x62\x62\x62\
+\x08\xe8\xda\xed\x26\xff\x61\x59\xd6\xc4\xf2\xf2\xf2\x37\xef\xdf\
+\xbf\xb7\x4e\x9c\x38\x51\xd5\x3b\x08\x02\xc2\x30\xc4\xf3\x3c\xc2\
+\x30\xc4\xf7\x7d\x2a\x95\x0a\xeb\xeb\xeb\xdc\xbe\x7d\x9b\x91\x91\
+\x11\x09\x7c\x07\xcc\xec\xda\x2a\xb4\xd6\xb6\x10\x62\x68\x6a\x6a\
+\x2a\xff\xf2\xe5\x4b\xab\xa5\xa5\x85\xfd\xfb\xf7\x57\x93\x6f\xe9\
+\xbd\xb1\xb1\xc1\xe4\xe4\x24\xb7\x6e\xdd\x62\x74\x74\x54\x02\x15\
+\xe0\x2b\x60\x15\xf8\xf5\x53\xed\xda\x01\xd2\x42\x88\x3b\x96\x65\
+\x75\x9e\x3b\x77\x8e\x33\x67\xce\xd0\xda\xda\x0a\xc0\xdc\xdc\x1c\
+\xcf\x9f\x3f\xe7\xd9\xb3\x67\x00\x43\xc0\x0d\xe0\x21\xf0\xd9\xe6\
+\x66\x57\x80\x6f\x81\x9f\x3e\xf5\xe0\x38\xc0\x97\x40\x1e\x70\xb7\
+\x5d\xa2\x45\x60\x78\xf3\x40\x57\x80\x65\x80\xd6\xd6\xd6\x49\x40\
+\x2c\x2c\x2c\x58\x40\x04\x64\x36\xe3\x3e\x69\xce\x2e\x63\x7b\xcc\
+\xca\xc0\xc0\x40\x74\xea\xd4\x29\x0f\x58\xdb\x94\xcd\xd9\xcb\xa7\
+\xd7\x01\xd6\x6f\xde\xbc\xa9\x5c\xd7\x95\xc0\x3a\xb0\xb1\x97\x90\
+\xad\xaa\xfc\x81\x81\x81\xc8\x71\x9c\x68\xaf\x01\xdb\x21\x25\x40\
+\x01\x9d\x80\x23\xf6\xf8\x2f\x65\xfb\x8e\x7f\x07\xf8\x13\x7f\x10\
+\x23\x23\x63\x99\xf1\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
+\x60\x82\
+\x00\x00\x09\x40\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
+\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
+\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
+\x79\x71\xc9\x65\x3c\x00\x00\x08\xd2\x49\x44\x41\x54\x78\xda\xed\
+\x99\x79\x70\x95\xd5\x19\x87\x9f\xf3\x6d\x77\xc9\xbe\x6f\x04\xb3\
+\x10\x43\x88\x44\xc4\x20\x8a\x20\xc5\x36\x18\x0a\x62\x15\xaa\x23\
+\xa8\x6d\xc5\x76\xb4\x5a\xa7\xa3\x4e\x3b\xb6\xce\xb4\x9d\xb1\x8e\
+\xfd\xc3\xa9\x8e\xb5\x55\x2b\x6e\x80\x20\x19\xb1\x08\x26\xb2\x88\
+\xa0\x20\xa2\x48\x58\x22\xa1\x2c\x22\x89\x82\x59\x09\x49\xee\xfe\
+\x7d\xdf\xe9\x31\x89\x93\xb1\xf8\x67\xb9\x89\x53\xde\x99\xdf\xdc\
+\x33\x73\xef\x9d\x79\x7e\xef\xf7\x9e\xf9\xde\xf3\x1e\x43\x4a\xc9\
+\x77\x39\x0c\xe0\xbc\x81\xf3\x06\xfe\x57\x06\xc4\xcd\x29\x7c\x6b\
+\x48\x94\x84\x92\x0e\xae\x18\x5c\xbb\xda\x80\x86\xd7\x02\xa4\x36\
+\x28\x47\xfc\xd7\xef\x07\xbf\x1f\x5a\x9f\xfd\xdf\xe1\xc8\x43\xf2\
+\x07\xe0\x72\x04\xcb\x60\x40\xed\x67\xe1\xec\xde\x3d\x2a\x9f\xc0\
+\x58\x5c\xb1\x1c\x87\x19\xe8\x12\x6c\xed\x62\x0c\xf7\x0e\x04\x3f\
+\x07\xb6\x8f\xf6\x12\xaa\xc4\x16\xaf\x5b\x1e\xb7\x6c\xec\xf5\xdd\
+\xb4\xf9\x63\x84\xf7\xfb\x88\x1d\x48\x1d\x8f\x64\x23\x9a\xbc\x17\
+\x78\x6e\xb4\x1a\x98\x4a\x4c\x5b\xa5\x99\x6e\xd1\xec\x25\x9f\xa3\
+\x55\x47\x38\xdd\xe6\xc5\x28\xe9\x20\x58\x14\x20\xd2\x90\xa7\x9c\
+\x68\x7f\x43\x97\x67\x80\xba\xd1\x66\x60\x0e\x51\xf1\x8c\x37\x25\
+\x56\x38\xfb\x17\xad\x8c\x9f\xd2\xcb\xc9\x3e\x3f\x09\xc2\x43\x58\
+\x97\xf8\x2e\xe9\x07\xb3\x95\x48\x7d\x81\x87\x90\xf1\x0c\xba\x6c\
+\x06\x9a\x46\x89\x01\x39\x9f\x88\xbe\x32\x31\x3b\xe2\x9f\x73\x57\
+\x2b\x45\x13\xfb\x09\x07\x0d\xd2\x4d\x9b\x7c\xbf\xe4\x84\xeb\xc3\
+\x13\x05\xaa\x02\xc8\x40\x1b\xd1\xfa\x31\x69\xe8\xf2\x69\xe0\x1a\
+\x20\x30\xd2\x06\x16\x13\xd5\x96\x26\xe7\x85\x3d\x73\xee\x6a\x61\
+\x6c\x45\x88\x88\x82\x97\x52\x43\x13\x50\x99\xd0\x47\x77\x2c\x91\
+\x5e\x69\x62\xc5\xfc\xb8\xea\x49\x38\xc7\x7b\x70\x9a\x53\xaf\xc4\
+\x74\x6f\x04\x5e\x18\x21\x03\x02\xe0\x37\x84\xb5\x87\xb3\x4a\x02\
+\xe6\xbc\x7b\x5a\x49\xcf\x8b\x0e\xc1\x0b\x40\xe0\x48\x48\xd4\xa3\
+\xcc\xcf\x29\xa1\xbe\xa3\x93\xce\x40\x17\x96\x6e\xe1\x4c\xeb\x21\
+\x70\x2c\x09\x5c\x6d\xf1\x08\x1a\xe0\x41\x82\xfa\x23\xf9\x13\xfa\
+\x98\x7b\x67\x2b\xc9\x99\x36\xb1\xb0\xf1\xb5\x31\x24\x2e\xae\x94\
+\x94\x25\x5e\x4d\x55\x4a\x0d\x53\xd2\x74\x1e\x3f\xb6\x82\x23\x7d\
+\x2d\x58\xf9\x31\x42\xc9\x36\x6e\xb7\x35\x69\x24\xf6\x80\x8e\xe4\
+\x51\xa2\xe2\x81\xe2\xcb\x7a\xa8\xb9\xf5\x24\x49\xe9\x0a\x3e\x32\
+\x0c\xaf\xd0\xd1\x30\xa9\x48\xbe\x9a\xf2\xa4\xef\x91\xee\x29\xe3\
+\x82\x84\x14\xee\x2e\x6e\xa3\xae\x73\x05\xcd\x07\x34\xce\x84\x74\
+\x10\xf4\xc5\xdb\x80\x89\x94\x4b\x89\xea\xb7\x96\x28\xf8\x79\x4b\
+\xbe\xc0\xb4\x24\xb1\xa8\x01\x00\x08\x5c\xe9\x20\x30\xa8\x4c\xa9\
+\x65\x5c\xe2\x55\xe4\x7a\xcb\xd1\x30\xf8\xa4\x77\x1b\x27\xec\xf5\
+\xf8\x5a\x22\x74\x2c\xcb\xc1\x0d\xea\x41\x0c\xf9\x60\x1c\x0d\xc8\
+\x64\xa4\x78\x8a\xa8\x76\xcb\xb8\xe9\x5d\xd4\x2c\xfe\x12\xc3\x00\
+\x3b\xa6\x33\x0c\x6f\x23\xb0\xa8\x4a\x9d\x4f\x49\xe2\x15\x64\x7b\
+\xc6\x21\xd0\x39\x12\xd8\xce\xde\x40\x1d\x7b\x1a\xdb\x79\xfb\xe9\
+\x7c\xfa\xdb\x8d\x5e\x3c\xf2\x36\x60\x6d\x9c\x0c\x88\x4c\x5c\x56\
+\x61\x8b\xef\x57\xd6\xb6\x33\xf5\x87\x5d\x58\x06\x38\x8e\x40\x22\
+\x00\x0d\x47\x3a\x58\x22\x91\x8b\x53\xaf\x67\x6c\xc2\x64\x72\x3d\
+\x15\x38\xd2\xa6\xb9\x7f\x33\xfb\x82\x75\xec\xda\xde\xcf\xd6\x67\
+\xc7\x10\x0d\x68\x2d\x0a\x7e\x11\xb0\x23\x3e\x2f\x32\x41\x2e\x0e\
+\x6b\x71\xc5\x65\xe5\xb3\x3b\x98\x54\xdb\x8d\xa9\x03\x2e\x80\x18\
+\xca\x7c\x0c\x4b\x4b\x64\xd2\x57\xf0\xfe\x29\xaa\x6c\x2a\xb0\xdd\
+\x10\xff\xee\xdf\xc6\xde\xd0\x4a\xde\xdf\x12\xe3\xdd\xa5\x05\xd8\
+\x11\xed\x04\x96\x5c\x08\xec\x8e\x53\x2b\x21\x27\xe2\x68\xcf\x0b\
+\x5d\x56\x97\x5f\xd3\xce\x45\x33\xce\xa0\x4b\x94\x86\xe1\x1d\x05\
+\xef\xd7\x33\x54\xe6\x6f\xa0\xd0\x7f\xe9\x40\xd9\x44\x9c\x3e\x95\
+\xf9\x4d\xec\xeb\xff\x17\xef\xd5\x3b\xec\xaa\xcb\xc5\xb6\x69\x54\
+\xf0\x8b\x91\x34\xc7\xab\x99\xab\xc6\x16\xab\x84\xe1\x96\x8e\x9f\
+\xdb\x41\xe9\xe4\x00\xba\x0b\xa6\x01\x86\x0e\x20\x88\x49\x87\x24\
+\x23\x9b\xc9\xa9\x37\x92\xef\x9b\xa8\xe0\x2f\x24\xe0\x9c\xe6\x60\
+\x5f\x03\x7b\x7b\xd7\xf2\xee\x3a\x9d\x0f\x57\x67\x83\xc6\x76\x0c\
+\x95\x79\x57\xb4\xc5\xe7\x40\x23\x98\x8a\xea\x28\x75\xaf\x93\x57\
+\x5c\xd3\x45\xfe\xc4\x20\x9a\x0d\xba\x05\xa6\x0e\x02\xb0\xa5\x4b\
+\xb2\x99\xc3\xe4\x94\x85\x83\xf0\xde\x72\x7a\x63\x1d\x34\x07\x36\
+\xd0\x78\x66\x0d\xef\xbc\xe6\xa5\xf1\x8d\x2c\x30\xe5\x66\x04\xb7\
+\x7c\x0d\x1f\x0f\x03\x0b\x14\xfc\x73\x7a\x82\x9d\x7a\x41\x6d\x27\
+\x39\x25\x11\x74\x07\xcc\x21\x78\x53\x80\x23\x21\xdd\x1a\xc3\x25\
+\xa9\x37\x91\xe7\xad\x24\x53\x95\x4d\x77\xb4\x85\xa6\xc0\x3a\xf6\
+\x76\x35\xf0\xd6\x4b\x29\x1c\xd9\x91\x0a\x96\xb3\x12\x21\x96\x28\
+\xf8\x50\xbc\x8e\x94\x8b\x15\xfc\x3f\xf4\x64\x3b\x29\xbf\xa6\x93\
+\xd4\xc2\x18\x9a\x03\x86\x05\xa6\x06\x96\x92\x03\xaa\x54\x8a\x54\
+\xcd\xff\x98\x3c\xcf\x04\x32\x3c\xc5\x74\x45\x4f\x28\xf8\xd7\x69\
+\x6c\xdf\xc4\x86\x97\x53\x38\xba\x33\x19\x2c\xf7\x59\xa4\xb8\x07\
+\x49\x2c\x5e\x67\xe2\xbb\x88\x89\x27\x8c\xac\x88\x99\x31\xfd\x34\
+\x49\xb9\x36\x86\x03\x96\xa5\xa4\x83\xa1\xa4\x09\x28\xf0\x8d\xa7\
+\x32\x65\xbe\xca\xfc\x45\xa4\x99\x85\xb4\x47\x8e\x29\xf8\x35\x7c\
+\xd4\xba\x8d\x4d\xcb\x53\x39\xf1\x71\x32\x78\xdd\x47\x90\xe2\x8f\
+\x4a\xb1\x38\x1c\xea\x05\x4a\xbf\xc7\xe6\x61\x2d\x27\x42\xd2\x95\
+\x3d\xf8\x33\x9c\x01\x78\xd3\x1c\x2a\x1b\x0d\x34\xa5\xc2\x84\xf1\
+\x4c\x4a\x5d\x48\xb6\xa7\x82\x54\xab\x90\xb6\x70\x33\xfb\x02\xaf\
+\xb2\xbb\x65\x07\x6f\xfe\x33\x87\xf6\xc3\x7e\x07\xbf\xf3\x10\x52\
+\x3c\xaa\x14\xaf\xa9\x84\xfc\x33\x8e\xfc\x1d\x39\x51\xbc\x57\x9c\
+\xc1\x93\xec\x62\xb8\xc3\x65\x63\x28\x21\xa0\x34\xb1\x8a\x4b\xd3\
+\xae\x57\xf5\x5e\x46\x8a\x91\xcf\xa9\x70\x13\xfb\x83\xab\xd8\x75\
+\xec\x43\xde\x7a\x31\x9b\x8e\x63\x5e\x1b\x9f\x7b\x1f\x52\x3c\x19\
+\xaf\xb1\x8a\x07\xf8\x3b\xb6\xb8\x9d\xc2\x10\xfa\xc5\xfd\x58\x3e\
+\x89\x29\x87\xb2\xae\x0f\xc2\x6b\x02\x26\xa6\x4d\xa3\x3a\x7d\xf6\
+\xc0\x0b\xca\xaf\x67\xf2\x79\x68\x0f\xfb\x82\xaf\xb0\xa3\xa9\x89\
+\x8d\x2f\x67\xd3\x7b\xca\x13\xc4\xeb\x2e\x42\x6a\x6b\x91\x10\x0f\
+\x03\xd6\x40\x53\xe6\x68\x8b\x29\x0a\xc1\x84\x00\xa6\x22\xb7\x00\
+\x4b\x53\x1a\x82\xd7\x05\x54\x29\xf8\xc9\x69\xb5\xe4\xf9\x2a\x48\
+\x30\x32\x68\x0d\xee\x61\x7f\x68\x39\xdb\x0f\x34\xd1\xf0\x7c\x1e\
+\xc1\xd3\x66\x97\x82\xbf\x15\x57\x34\xc4\x67\xb0\x25\xc8\xc2\xe5\
+\x79\x60\x1e\xa5\x41\x28\x0f\x22\x04\x98\x62\x38\xf3\xba\x18\x2c\
+\x9f\xea\xac\x59\x4c\xc9\xac\xa1\xc0\x3f\x1e\x9f\x9e\xc0\x67\xc1\
+\x9d\x2a\xf3\xcb\x78\x67\xe7\x71\xde\x59\x9d\x4b\xa8\x57\x3f\x8e\
+\x47\xde\x8e\x23\xb6\xc6\x6b\x32\x67\x02\x2f\x83\xa8\xa5\x2c\x08\
+\xe3\x22\xe0\x80\xc1\x37\x37\xab\xa9\x0b\x66\xe4\xcc\xe1\xd2\x8c\
+\x99\x14\xfa\xcb\xf1\xea\x7e\x8e\x07\xb7\xd3\xd8\xbf\x9c\x2d\x3b\
+\x5a\xd9\xba\x3a\x07\x3b\xac\x1f\xc5\x94\xf3\x91\xa2\xf9\xdc\x8c\
+\x16\x85\xcb\x59\x21\xc4\x4c\x6c\x6a\xc9\x0d\x43\xc9\x20\x3c\xf2\
+\x9b\xf0\x3e\xc3\x54\xf0\x3f\x60\x92\x82\x1f\xa3\x32\xef\xd1\x7d\
+\x0a\x7e\x1b\x8d\xbd\x2b\xd8\xfc\xde\xe7\x6c\x7d\x2d\x07\x69\x8b\
+\xbd\x58\xf2\x26\x5c\x71\xf8\xdc\xcd\x46\x35\xc9\x59\x21\xb9\x03\
+\x03\xac\x62\x97\xa8\x00\xdc\xc1\x72\xb1\xf4\x41\x78\xbf\x61\x31\
+\xbb\xe0\x3a\x95\xf9\xcb\x29\x4e\xac\x44\x10\xe5\x70\xa0\x81\x7d\
+\x7d\xcb\x78\xb3\xbe\x8f\x8f\x36\x64\x83\x60\x23\x86\xfc\xa9\x82\
+\x3f\x75\x6e\x87\xbb\xe2\x2c\x03\x13\x88\x45\xe7\xce\x2a\xbd\x88\
+\x84\x42\xc9\xfa\xce\xbd\xa0\x0d\x35\x66\x02\x12\x15\xfc\xbc\xb1\
+\x0b\x54\xe6\x2f\xa3\x28\xa9\x62\xa0\x45\xfe\x34\xb4\x99\x03\x7d\
+\xcb\x59\xbf\x2e\x40\xe3\xd6\x74\xd0\xe5\x06\x04\x5f\x65\xfe\x0c\
+\x40\x7c\x0d\x48\xf9\x80\x61\xea\x89\xbf\xbe\x7c\x36\x49\xf9\x89\
+\xbc\x7d\xfa\x20\x21\x37\x0a\x40\xa6\x37\x85\x1f\x15\x5d\xcb\xa4\
+\x74\x05\x9f\x58\x46\xcc\x0d\x71\x28\x50\xcf\xfe\xae\xd7\xd8\xf4\
+\x56\x3f\x4d\xef\x0f\xc0\xbf\x08\xe2\x57\x48\xfa\x61\x38\xe2\x55\
+\x42\x05\x44\x22\x0b\x66\x5e\x38\x99\x59\x65\x55\xf8\xbd\xe9\xdc\
+\x3e\x76\x1e\x4f\x1d\x5d\xc3\x98\xb4\x2c\x16\x14\x5f\xc7\xa4\xcc\
+\x4b\x28\x4d\x1e\x4f\xc8\xe9\xe6\x60\x7f\x3d\xbb\x3b\x57\xb2\xe5\
+\x0d\xf8\x74\x4f\x2a\x58\xee\x13\x20\xee\xc3\xfd\xb6\x8d\x05\xe7\
+\x7e\x13\x4b\x16\xa1\x91\xbc\xa8\x6a\x3a\x1e\x6f\x32\x61\xcd\xe0\
+\xa1\x8a\x3b\x39\x10\x38\x81\xe1\xf5\x52\x9d\xa5\x6a\x3e\xa9\x94\
+\xde\x58\x3b\xfb\xfb\xd6\xb3\xeb\xcb\x3a\xd5\xcb\x0b\xbe\x68\x4e\
+\x00\x9f\xfb\x18\x52\x3c\xa0\xe0\xf9\x46\xc4\xb1\x84\xf2\xb0\xed\
+\xfb\xa7\x97\x4d\xe4\xda\xca\x69\x84\x85\x01\x86\x45\x96\x37\x83\
+\x35\x33\x97\x72\xdb\xce\xfb\x79\xe5\xe8\x5a\x6e\x2e\x9b\xcb\x91\
+\xd0\x46\x76\x1c\x5f\xcf\x07\x0d\x3a\xdd\x2d\x7e\xf0\xca\x7b\x71\
+\x87\x5b\x83\x91\x32\x70\x03\x8e\xcc\xb9\x2a\x77\x0a\x59\x69\xb9\
+\xf4\xc5\x24\x9a\x95\x40\x4c\x37\xc8\xf0\xa4\xf3\x66\xcd\x4b\x3c\
+\x79\x68\x29\x7f\xd9\xf5\x24\x9d\x27\x0f\xd3\x79\xc8\x20\xd0\xe6\
+\x75\xb1\xdc\x25\x48\xed\x45\x80\x91\x34\x60\xa8\xcf\x9f\xe0\xf8\
+\x79\xfa\x95\x83\xcc\x28\x3e\x46\xed\xf4\xa9\x80\x1f\x2c\x1f\x5d\
+\x3d\xed\xbc\x7f\x74\x0f\x2d\xcd\x1d\x9c\xfa\x38\xc0\xc9\x2f\x0d\
+\x94\xbb\x56\x3c\xee\x6f\x91\x62\x25\x12\x46\xda\xc0\x42\x34\x77\
+\x0a\x3d\x39\x74\x77\x84\xf9\xe5\x5f\xeb\x78\x35\xb3\x00\x33\x05\
+\xd6\x36\x6e\x62\xc5\x07\xeb\x38\x72\xf2\x18\xc4\x6c\x1b\xd3\xf7\
+\x31\x1e\xbd\x1e\x29\x5f\x40\x8a\x56\x00\x18\x59\x03\x3a\x9a\xbc\
+\x9b\xde\x24\xe8\xcc\x80\x94\x18\xc7\xc3\x9f\x30\xeb\xf1\x9f\xe1\
+\xf8\x7b\x09\xf7\xf6\xc7\x10\xda\x61\x0c\x6b\xb3\xd2\x6a\xa4\xf8\
+\x50\xc9\x1e\xce\xfa\xc8\x1b\xa8\x06\xa6\xe1\xe8\x50\xf4\x19\x24\
+\xf7\x82\x61\x3b\x01\xc7\x3d\x40\x58\x5b\x85\xc7\xb3\x19\x29\x9a\
+\x94\x22\x48\x40\x8e\xbe\x6b\xd6\xb9\x48\x34\xd2\x7a\x24\x82\x43\
+\x38\xda\x4a\x5c\xb1\x19\x61\xee\x41\x43\x41\x8f\xfe\x7b\xe2\x04\
+\xe0\x4f\x48\xb6\x28\xf0\xdd\x48\x82\xdf\xa9\x7b\x62\xf9\x8c\xbc\
+\xff\xfc\x4d\xfd\x79\x03\xff\x67\x06\xfe\x03\x1b\x85\x94\x1a\x1f\
+\xbe\x73\xb2\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x04\x4b\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
+\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd2\x01\x07\x0b\x04\x27\xfe\xa6\x99\x03\x00\x00\x03\xc8\x49\x44\
+\x41\x54\x78\xda\xb5\x96\xc1\x4b\x1c\x67\x14\xc0\x7f\xdf\xb7\x3a\
+\x8b\xee\xae\x6e\xdd\x55\x10\xa3\x2b\x9a\x43\x2f\x5a\x0d\x7a\x70\
+\x84\x28\xe8\x65\x23\xae\x04\xeb\x51\x3d\xd4\xc3\x5e\x52\x30\x37\
+\xff\x02\x0f\x42\xc0\xff\xa0\x3d\x84\x1e\x96\x88\x94\x56\xd0\x9e\
+\x84\x44\xa3\xd2\x9a\x88\x20\xba\x4a\x52\xc1\x48\x58\x11\x5a\x75\
+\x67\x66\x67\xbe\x99\x5e\xdc\xa9\x6d\xa3\x96\x62\x3f\x78\xf0\x78\
+\xf3\x78\xbf\xef\xbd\xc7\x7b\xdf\xc0\xff\x7c\xc4\x75\x1f\x92\xc9\
+\x64\x2a\x97\xcb\x8d\x58\x96\xa5\x3b\x8e\xd3\xa0\x94\x02\x38\x04\
+\x56\x2a\x2b\x2b\x33\x1b\x1b\x1b\xdf\xff\x27\xc0\xe8\xe8\xe8\x83\
+\xb7\x6f\xdf\x3e\x93\x52\xf6\xf4\xf5\xf5\xd1\xda\xda\x4a\x2c\x16\
+\xc3\x75\x5d\x72\xb9\x1c\xeb\xeb\xeb\x2c\x2e\x2e\xe2\x38\xce\x72\
+\x5d\x5d\xdd\xd3\xb5\xb5\xb5\x5f\xfe\x35\xa0\xb7\xb7\x37\x75\x7c\
+\x7c\xfc\x42\xd7\xf5\x92\xe1\xe1\x61\x6a\x6a\x6a\x28\x2d\x2d\x45\
+\x08\x81\xeb\xba\xd8\xb6\x8d\x69\x9a\x7c\xf8\xf0\x81\xe7\xcf\x9f\
+\xb3\xba\xba\xea\x44\xa3\xd1\xe1\x83\x83\x83\x6b\xb3\x09\x14\x95\
+\xa1\xa1\xa1\x07\xd9\x6c\xf6\xa7\xc7\x8f\x1f\x97\x8c\x8f\x8f\x13\
+\x8f\xc7\x89\x44\x22\x54\x55\x55\x11\x8f\xc7\xa9\xae\xae\x26\x16\
+\x8b\x11\x0e\x87\x09\x87\xc3\xb4\xb4\xb4\x60\x18\x86\x7c\xf3\xe6\
+\xcd\xc8\xbd\x7b\xf7\x7e\x3c\x3d\x3d\x3d\xbe\x11\x50\x28\x14\xbe\
+\xd3\x75\xbd\x69\x62\x62\x82\x70\x38\x4c\x34\x1a\xa5\xba\xba\x9a\
+\x70\x38\x4c\x30\x18\x24\x10\x08\x10\x08\x04\x08\x06\x83\x44\x22\
+\x11\x42\xa1\x10\xcd\xcd\xcd\xec\xed\xed\xc9\xfd\xfd\xfd\xcf\x2d\
+\xcb\xfa\xe6\x53\x00\x09\xd0\xd6\xd6\x96\x72\x5d\xb7\x67\x6c\x6c\
+\x8c\xf2\xf2\x72\xa2\xd1\x28\xf1\x78\x1c\x4d\xd3\x08\x04\x02\x3c\
+\x7a\xf4\x88\x81\x81\x01\x1f\x22\xa5\x24\x14\x0a\xd1\xd4\xd4\x44\
+\x3a\x9d\xc6\xf3\xbc\x9e\xaa\xaa\xaa\xd4\xb5\x80\x5c\x2e\x37\x92\
+\x4a\xa5\xa8\xad\xad\x25\x14\x0a\x51\x51\x51\x81\x10\x02\x29\x25\
+\x42\xfc\xd9\x26\x21\x04\x42\x08\x1f\x22\xa5\xa4\xad\xad\x8d\x64\
+\x32\x89\x61\x18\x23\xd7\x02\x2c\xcb\xd2\xbb\xbb\xbb\xd1\x34\x8d\
+\x48\x24\x82\x10\x02\xcf\xf3\xf0\x3c\xef\x2f\xce\x45\xdb\x55\xbb\
+\x10\x82\xfe\xfe\x7e\x94\x52\xfa\xa7\x00\x25\x00\x4a\xa9\x86\xfa\
+\xfa\x7a\x82\xc1\xa0\x1f\x7c\x60\x60\xc0\x0f\x70\x65\x36\x7c\x40\
+\x26\x93\xf1\xf5\xfb\xf7\xef\x03\x34\xdc\x04\x40\x08\x41\x49\x49\
+\x09\x4a\x29\x94\x52\x78\x9e\xe7\xc3\x3e\x95\x81\x52\x0a\xdb\xb6\
+\x71\x1c\x07\xdb\xb6\xff\x91\xed\xdf\x01\x87\xef\xde\xbd\x6b\xaa\
+\xab\xab\xc3\xb6\x6d\x84\x10\xcc\xcd\xcd\xf9\xb5\x1e\x1c\x1c\x04\
+\x60\x7e\x7e\x1e\xc7\x71\x50\x4a\x61\x9a\x26\xb6\x6d\x53\x28\x14\
+\xd8\xdd\xdd\x45\x29\x75\x78\x6d\x0f\x3c\xcf\x5b\x59\x5a\x5a\xc2\
+\x34\x4d\x0a\x85\x02\x96\x65\x51\x28\x14\x7c\xdd\x75\x5d\x5c\xd7\
+\xf5\x6d\xa6\x69\x62\x18\x06\x96\x65\x61\x59\x16\x8b\x8b\x8b\xb8\
+\xae\xbb\x72\x2d\x40\x4a\x99\xc9\x64\x32\x64\xb3\x59\x0c\xc3\x20\
+\x9f\xcf\x63\x18\x86\x2f\x45\x40\x3e\x9f\xf7\xc5\xb2\x2c\x0c\xc3\
+\x60\x67\x67\x87\x85\x85\x05\x80\xcc\x4d\xab\x22\xa1\x69\xda\xb7\
+\x9d\x9d\x9d\x3d\xb3\xb3\xb3\x68\x9a\x86\x94\x12\x4d\xd3\xfc\x3e\
+\x08\x21\xfc\xfe\x14\x57\xc6\xc5\xc5\x05\x93\x93\x93\x6c\x6d\x6d\
+\x2d\x03\xbd\x37\x4d\xf2\x6f\x52\xca\xad\xa3\xa3\xa3\xaf\x3e\x7e\
+\xfc\x28\xdb\xdb\xdb\xfd\xe6\x15\xcb\x65\x18\x86\x5f\x9e\x7c\x3e\
+\xcf\xd9\xd9\x19\x33\x33\x33\xac\xae\xae\x3a\xc0\xd7\x40\xf6\xc6\
+\x55\xe1\xba\xae\x26\x84\x58\xde\xdd\xdd\x1d\xd9\xdc\xdc\x94\xf5\
+\xf5\xf5\x94\x95\x95\xf9\xc1\x8b\xf5\x3e\x3f\x3f\x67\x7b\x7b\x9b\
+\xe9\xe9\x69\x5e\xbf\x7e\xed\x00\x79\xe0\x4b\xe0\x14\xf8\xf9\xb6\
+\x75\x9d\x00\x62\x42\x88\x67\x52\xca\x9e\x87\x0f\x1f\xd2\xd5\xd5\
+\x45\x63\x63\x23\x00\x07\x07\x07\xbc\x7a\xf5\x8a\x97\x2f\x5f\x02\
+\x2c\x03\x4f\x81\x17\xc0\x67\x97\x97\x3d\x01\x9e\x00\x3f\xdc\xf6\
+\xe0\x24\x80\x2f\x80\x11\x40\xbf\x32\x44\x87\xc0\xca\x65\x43\x4f\
+\x80\x23\x80\xc6\xc6\xc6\x6d\x40\xbc\x7f\xff\x5e\x02\x36\x90\xbc\
+\xf4\xbb\xf5\x24\x6e\x90\xab\x3e\x27\xe9\x74\xda\xee\xe8\xe8\x30\
+\x80\xdf\x2f\xcb\x96\xb8\xcb\xa7\x37\x01\x9c\x4d\x4d\x4d\x29\x5d\
+\xd7\x1d\xe0\x0c\x38\xbf\x4b\x48\x31\x2b\x33\x9d\x4e\xdb\x89\x44\
+\xc2\xbe\x6b\xc0\x55\xc8\x31\xa0\x80\x1e\x20\x21\xee\xf8\x2f\xe5\
+\xea\x8d\x7f\x05\xf8\x03\xd8\xcb\xf0\xd4\x8e\x80\x5e\x37\x00\x00\
+\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x04\x4e\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
+\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd2\x01\x07\x0b\x01\x15\x4b\x06\x3c\xc6\x00\x00\x03\xcb\x49\x44\
+\x41\x54\x78\xda\xb5\x96\xcf\x4b\x1c\x49\x14\xc7\x3f\x5d\xd3\x3d\
+\x62\xa2\xf8\x63\x8c\x60\x12\x33\x92\xbb\xae\x88\x17\x5b\x50\xc1\
+\x40\x18\x08\xe3\x06\x57\x84\xe0\x68\xbc\xcd\x25\x07\x73\x8a\xf9\
+\x07\x3c\xe9\x7f\x21\xa8\x43\x2e\xc1\x04\x8c\x27\x41\x4d\x34\xd9\
+\x55\x83\x10\x44\x44\x57\x34\x1e\x46\x3c\x98\x66\x7a\xba\xbb\xaa\
+\x7b\x0f\x71\x1a\x25\x8e\x2e\x8b\x5b\xf0\xa0\xba\xaa\x78\x9f\xf7\
+\xbe\xf5\xba\xaa\xe0\x7f\x6e\x5a\xb1\x89\x44\x22\x91\xcc\x66\xb3\
+\x7d\x8e\xe3\x98\x52\xca\x07\x4a\x29\x80\x7d\x60\xb9\xa2\xa2\x22\
+\xf3\xf9\xf3\xe7\xb7\xff\x09\x90\x4a\xa5\x5a\x36\x36\x36\x26\x84\
+\x10\x9d\xdd\xdd\xdd\x34\x35\x35\x11\x8b\xc5\xf0\x7d\x9f\x6c\x36\
+\xcb\xea\xea\x2a\x73\x73\x73\x48\x29\x17\xee\xdd\xbb\xf7\x72\x65\
+\x65\xe5\xaf\x7f\x0d\xe8\xea\xea\x4a\x1e\x1d\x1d\xbd\x31\x4d\x53\
+\xef\xed\xed\xa5\xb6\xb6\x16\xc3\x30\xd0\x34\x0d\xdf\xf7\xf1\x3c\
+\x8f\x7c\x3e\xcf\xf7\xef\xdf\x99\x9c\x9c\xe4\xe3\xc7\x8f\xb2\xb2\
+\xb2\xb2\x77\x67\x67\xa7\x68\x36\x91\x42\xa7\xa7\xa7\xa7\x65\x7b\
+\x7b\x7b\xfe\xe9\xd3\xa7\xfa\xd0\xd0\x10\x35\x35\x35\x94\x97\x97\
+\x53\x5d\x5d\x4d\x4d\x4d\x0d\x77\xee\xdc\x21\x16\x8b\x51\x56\x56\
+\x46\x59\x59\x19\x8d\x8d\x8d\xd8\xb6\x2d\xd6\xd7\xd7\xfb\xee\xdf\
+\xbf\xff\xee\xe4\xe4\xe4\xe8\x32\x80\x5e\xe8\x7c\xfd\xfa\x75\xc2\
+\x34\x4d\xbd\xbf\xbf\x9f\xd7\xaf\x5f\x63\x18\x06\x86\x61\x20\x84\
+\x60\x7a\x7a\x9a\x20\x08\xe8\xef\xef\x27\x08\x02\x82\x20\xc0\xf3\
+\x3c\x5e\xbd\x7a\xc5\xe1\xe1\xa1\xfe\xe5\xcb\x97\x09\xa0\xeb\x32\
+\x80\x00\x68\x6e\x6e\x4e\xfa\xbe\xdf\x39\x38\x38\xc8\xad\x5b\xb7\
+\x88\x46\xa3\x94\x94\x94\x20\x84\x40\xd3\x34\x84\x10\x61\x5f\xd3\
+\x7e\xaa\x1a\x89\x44\x78\xf8\xf0\x21\xe9\x74\x9a\x20\x08\x3a\xab\
+\xab\xab\x93\x45\x01\xd9\x6c\xb6\x2f\x99\x4c\x52\x57\x57\xc7\xed\
+\xdb\xb7\xd1\xf5\x9f\x89\x65\x32\x19\x32\x99\x4c\xe8\x78\x66\x66\
+\x86\xa9\xa9\xa9\xf0\x5b\x08\x41\x73\x73\x33\x89\x44\x02\xdb\xb6\
+\xfb\x8a\x02\x1c\xc7\x31\xdb\xdb\xdb\x89\x46\xa3\x94\x97\x97\x87\
+\x51\x06\x41\x70\x61\x71\x41\x9e\x0b\x55\xa2\x69\x3c\x7a\xf4\x08\
+\xa5\x94\x59\xb4\x8a\xaa\xaa\xaa\xbc\xd9\xd9\x59\xfd\xee\xdd\xbb\
+\x54\x56\x56\x12\x8d\x46\x89\x44\x22\x44\x22\x11\x84\x10\xa1\x73\
+\xdf\xf7\x51\x4a\xe1\x79\x5e\x58\x51\xb9\x5c\x8e\x83\x83\x03\x1e\
+\x3f\x7e\x2c\x5d\xd7\x35\x2e\xdd\x64\xa5\x14\x9a\xa6\xa1\xeb\x3a\
+\x4a\x29\xce\x7e\xaa\x5f\xb2\x28\xcc\x9d\x07\x49\x29\xf1\x3c\xef\
+\x97\xcc\x2e\x48\xa4\x94\xda\xdf\xdd\xdd\x0d\x6b\x7d\x60\x60\x80\
+\x67\xcf\x9e\x21\xa5\x0c\xed\xbc\xb3\x54\x2a\xc5\xf0\xf0\x30\x9e\
+\xe7\xe1\xba\x2e\x5b\x5b\x5b\x28\xa5\xf6\x8b\x02\x82\x20\x58\xfe\
+\xf0\xe1\x03\xf9\x7c\x1e\xd7\x75\xc3\x28\x5d\xd7\xc5\x71\x9c\xd0\
+\x5c\xd7\xc5\x75\xdd\x30\x83\xc2\xf8\xdc\xdc\x1c\xbe\xef\x2f\x17\
+\x05\x08\x21\x32\x99\x4c\x86\xed\xed\x6d\x6c\xdb\x0e\xa5\x48\xa5\
+\x52\x0c\x0c\x0c\x60\xdb\x36\x8e\xe3\x90\x4a\xa5\x78\xfe\xfc\x39\
+\x52\x4a\x94\x52\xd8\xb6\xcd\xb7\x6f\xdf\x78\xff\xfe\x3d\x40\xa6\
+\x28\xc0\xb2\xac\x0d\x29\xe5\xc2\xd8\xd8\x18\x96\x65\x5d\xd0\x57\
+\x29\x85\x65\x59\xe1\x78\xc1\xa4\x94\x9c\x9e\x9e\x32\x3e\x3e\x8e\
+\xef\xfb\x0b\xc0\xdb\x2b\xcf\x22\xc3\x30\x5a\x80\x95\x27\x4f\x9e\
+\xe8\x23\x23\x23\x18\x86\x81\xae\xeb\x61\xcd\xfb\xbe\x1f\x6e\xb4\
+\xeb\xba\xe4\x72\x39\xc6\xc7\xc7\x99\x9f\x9f\x97\xc0\xef\xc0\xbb\
+\x2b\xcf\x22\xdf\xf7\xa3\x9a\xa6\x2d\x6c\x6d\x6d\xf5\xad\xad\xad\
+\x89\xfa\xfa\x7a\x4a\x4b\x4b\x71\x5d\x37\x94\xc8\x71\x1c\x2c\xcb\
+\x62\x73\x73\x93\xb1\xb1\x31\x3e\x7d\xfa\x24\x81\x1c\xf0\x07\x70\
+\x02\xfc\x79\xdd\x71\x1d\x07\x62\x9a\xa6\x4d\x08\x21\x3a\x3b\x3a\
+\x3a\x68\x6b\x6b\xa3\xa1\xa1\x01\x80\x9d\x9d\x1d\x96\x96\x96\x58\
+\x5c\x5c\x04\x58\x00\x5e\x02\x6f\x80\xaa\xb3\x60\x8f\x81\x17\xc0\
+\xec\x75\x17\x4e\x1c\xf8\x0d\xe8\x03\x4c\xe0\xc1\xd9\xf8\x3e\xb0\
+\x7c\xb6\xa1\xc7\xc0\x21\x40\x43\x43\xc3\x26\xa0\xed\xed\xed\x09\
+\xc0\x03\x12\x67\xeb\xae\x6d\xf1\x2b\xec\xfc\x9a\xe3\x74\x3a\xed\
+\xb5\xb6\xb6\xda\xc0\xe9\x99\x6c\xf1\x9b\xbc\x7a\xe3\xc0\x8f\xd1\
+\xd1\x51\x65\x9a\xa6\x04\x7e\x00\xd6\x4d\x42\x0a\x59\xe5\xd3\xe9\
+\xb4\x17\x8f\xc7\xbd\x9b\x06\x9c\x87\x1c\x01\x0a\xe8\x04\xe2\xda\
+\x0d\xbf\x52\xce\x47\xfc\x37\xc0\x3f\x72\x9e\x0b\x66\xc1\xc5\x97\
+\x96\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x76\x50\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x01\x2a\x00\x00\x01\x08\x08\x06\x00\x00\x00\xe8\x5e\xb9\x12\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\xd0\xcb\x00\x00\
+\xd0\xcb\x01\x9f\x0e\xc0\x23\x00\x00\x00\x09\x76\x70\x41\x67\x00\
+\x00\x01\x2a\x00\x00\x01\x08\x00\xdc\x89\x70\xd2\x00\x00\x74\x99\
+\x49\x44\x41\x54\x78\xda\xed\xbd\x67\x98\x5d\xd7\x79\x1e\xfa\xae\
+\x73\xce\xcc\x99\x72\xa6\x62\x66\x30\x00\x06\x04\x2b\xc0\xde\x04\
+\x52\x50\xa5\x2c\x51\x85\x12\x65\x39\xb2\x64\xcb\x45\x91\xcb\x75\
+\x42\xdf\x9b\x9b\xe7\x96\x27\xbe\x6e\x71\xb9\x56\x6c\xc5\x92\x15\
+\xeb\xda\x4a\x64\x3b\x91\xe4\xc4\x91\x13\x3b\x11\x25\xf6\x02\x12\
+\x20\x08\x90\x60\x01\x09\x90\x00\x89\x4e\xf4\x36\xfd\xcc\xcc\xe9\
+\x7b\xaf\xfb\x63\xb7\x55\xf7\x5e\xfb\x94\x29\xc4\xfe\xf0\x0c\xce\
+\xde\xab\xaf\x5d\xde\xfd\x7e\xdf\x5a\xdf\x5a\x04\x89\x5c\xf6\x32\
+\xba\xe5\x01\xef\xf0\x23\x00\xfe\x0f\x00\xb7\x00\x28\x02\xf8\x01\
+\x80\xff\x02\xe0\x34\x00\x5c\xd8\xfd\x9d\xa5\x6e\x6a\x22\x97\xa9\
+\xa4\x97\xba\x01\x89\x2c\xad\x30\x20\xb5\x05\xc0\xb7\x01\xdc\x03\
+\x60\x00\xc0\x08\x80\x0f\x03\xb8\x19\xc0\x7e\x00\x17\x73\x63\x9b\
+\x31\x7f\xe6\xd5\xa5\x6e\x72\x22\x97\xa1\xa4\x96\xba\x01\x89\x2c\
+\x0b\x69\x03\xf0\xcf\x01\xdc\xaa\x08\xff\x14\x80\xef\x03\xf8\x38\
+\x00\xc2\x00\x5b\x22\x89\x2c\x9a\x24\x40\x95\x08\x00\xf4\x01\xb8\
+\x3d\x24\xfe\x76\x00\x7f\x03\xe0\x17\x01\xb4\x25\x60\x95\xc8\x62\
+\x4b\x02\x54\x89\x00\x40\xb7\xfb\x17\x26\x1b\x00\x7c\x0b\xc0\xff\
+\x05\xa0\x27\x01\xab\x44\x16\x53\x12\xa0\x4a\x24\x8e\x0c\x00\xf8\
+\x7d\x00\xff\x06\xc0\x48\x02\x56\x89\x2c\x96\x24\x40\x95\x48\x5c\
+\xe9\x04\xf0\xeb\x00\xfe\x03\x80\xeb\x46\xb7\x3c\x80\x04\xb0\x12\
+\x69\xb5\x24\x40\x95\x48\x3d\x92\x01\xf0\x79\x00\xdf\x83\x33\x5a\
+\x98\x80\x55\x22\x2d\x95\x04\xa8\x12\x69\x44\x3e\x00\x07\xac\x3e\
+\x07\x20\x95\x80\x55\x22\xad\x92\x04\xa8\x12\x69\x54\xae\x07\xf0\
+\x1d\x00\xff\x0c\x40\x47\x02\x56\x89\xb4\x42\x12\xa0\x4a\xa4\x19\
+\x32\x0a\xe0\x4f\x01\xfc\x0e\x80\xfe\x04\xac\x12\x69\xb6\x24\x40\
+\x95\x48\xa4\xa4\x52\x69\xd0\xe8\x64\x3d\x00\x7e\x03\xc0\x37\x01\
+\x8c\x25\x46\xf6\x44\x9a\x29\x09\x50\x25\x12\x2a\x94\x52\xac\x1d\
+\x1b\xc3\x5d\x77\xde\x8c\x74\x3a\x0d\x4a\x43\x21\xab\x1d\xc0\x57\
+\xe0\x4c\x0e\xbd\x05\x48\x8c\xec\x89\x34\x47\x12\xa0\x4a\x24\x54\
+\x28\x05\x7a\x7b\xba\xf1\x4b\x5f\xfc\x38\x3e\xff\xe9\x0f\xa2\xb3\
+\xb3\x23\x0a\xac\x52\x08\xdc\x6e\x3e\x8a\xc4\xed\x26\x91\x26\x48\
+\x02\x54\x89\x44\x0a\xa5\x14\xb9\xee\x2c\xbe\xf4\x93\x1f\xc2\x57\
+\xbe\xf8\x71\xf4\xf7\xf5\xc0\xb6\x23\x95\xc1\x3b\x01\xfc\x47\x00\
+\x5f\x02\x90\x49\xc0\x2a\x91\x46\x24\x01\xaa\x44\x8c\x84\x52\x8a\
+\xf6\x4c\x06\xf7\x7d\xe4\x4e\xfc\xfa\x57\x3e\x8b\x75\x6b\x86\x4d\
+\xc0\xea\x2a\x00\x7f\x01\x67\xe9\x98\xee\x04\xac\x12\xa9\x57\x12\
+\xa0\x4a\xc4\x58\x28\x00\x42\x08\xde\x77\xe7\x26\xfc\xcb\x5f\xfd\
+\x1c\x6e\xd8\xb8\x21\x4a\x0d\x04\x80\x55\x00\xfe\x10\xc0\x57\x01\
+\x0c\x25\x60\x95\x48\x3d\x92\x00\x55\x22\xb1\x85\x52\x8a\x9b\xae\
+\x1b\xc3\xbf\xfc\x95\xcf\x61\xcb\x7b\x6e\x02\x40\xa2\x00\xab\x0b\
+\xc0\xbf\x80\xb3\xde\xd5\x35\xc9\x88\x60\x22\x71\x25\x01\xaa\x44\
+\xc2\x85\xb8\xbf\x94\xfd\xa1\xb0\x6d\x8a\xf5\xa3\x83\x78\xe0\xcb\
+\x9f\xc6\x27\x7f\xe2\x2e\xb4\xb5\xb5\x45\x81\x55\x06\xc0\xcf\x00\
+\xf8\x2e\x80\xbb\x80\x64\x44\x30\x11\x73\x49\x80\x2a\x11\x23\xa1\
+\x00\xa8\xfb\xbf\x07\x5a\x36\xa5\x18\xec\xeb\xc6\x2f\x7d\xf1\x63\
+\xf8\xe2\x67\xef\x41\x77\x77\x27\xec\x68\x55\xf0\xc3\x70\x46\x04\
+\x3f\x83\xc4\xed\x26\x11\x43\x49\x80\x2a\x11\x73\xa1\x01\x48\x79\
+\x62\x53\x8a\xce\x8e\x76\x7c\xfe\xbe\xf7\xe1\x57\xbe\x74\x1f\x86\
+\x06\xfb\x4d\x8c\xec\x37\x02\xf8\x6b\x00\xbf\x02\x20\x9b\x80\x55\
+\x22\x51\x92\x00\x55\x22\x91\x42\x23\xc2\x29\xa5\x68\x4b\xa7\xf0\
+\xb1\xf7\xdf\x82\xff\xf5\x2b\x9f\xc5\x86\xf5\xa3\x26\xcc\x6a\x2d\
+\x80\x3f\x03\xf0\x9b\x00\xfa\x12\xb0\x4a\x24\x4c\x92\xcd\x1d\x2e\
+\x73\xc9\x8d\x6d\x06\x80\x7e\x00\xff\x14\xce\x08\x1d\x27\x14\xc0\
+\xf0\xc8\x30\x3e\xf0\x9e\x4d\xe8\xca\x66\xfc\x30\xa8\x12\x02\x58\
+\xb7\x7a\x10\xd7\x5e\xb5\x0e\x17\x2e\xcd\xe0\xe2\xf8\x34\x08\x41\
+\x98\x64\x01\xbc\x0f\xc0\x6a\x00\x7b\x72\x63\x9b\xe7\x92\x0d\x24\
+\x12\x51\x49\xc2\xa8\x12\x31\x12\xc7\x3a\x45\x64\x90\x72\xcd\x56\
+\xde\xa1\x4d\x29\x36\x5e\xb9\x06\xff\xdb\x2f\x7d\x16\x1f\xda\x72\
+\x2b\x48\x2a\x15\x65\x64\xcf\x02\xf8\x55\x38\xaa\xe0\x8d\x40\x62\
+\x64\x4f\x44\x96\x04\xa8\x12\x31\x10\xaa\xa6\x51\x54\x79\x08\x9b\
+\xda\x18\x1d\xee\xc3\xaf\xfd\xfc\x27\x71\xff\xbd\x5b\x90\xcd\xb6\
+\x9b\xb8\xdd\x7c\x06\x8e\x91\xfd\xc3\x40\x02\x56\x89\xf0\x92\x00\
+\x55\x22\x86\x22\xa0\x12\x95\x0e\xb9\x74\x94\x52\xf4\xe6\x3a\xf1\
+\xf3\x3f\x75\x0f\x7e\xee\x9f\x7c\x0c\xbd\x3d\x39\x13\x23\xfb\x5d\
+\x70\xa6\x2f\xfc\x0c\x12\xb7\x9b\x44\x18\x49\x80\x2a\x11\x73\x89\
+\x04\x28\x3e\xc4\xb6\x29\xb2\xed\x19\xdc\xff\xd1\xcd\xf8\x5f\x7e\
+\xe1\xd3\x18\x5d\xbd\xca\x04\xac\xae\x81\x33\x31\xf4\x5f\x00\xe8\
+\x4a\xc0\x2a\x11\x20\x31\xa6\x5f\xf6\x12\xcf\x98\xde\xa6\xd0\x00\
+\x15\x21\x42\x10\x21\x04\x57\xac\x1d\xc6\x95\x63\xa3\x38\x7d\x7e\
+\x02\x53\xd3\x79\x90\x70\x2b\x7b\x17\x1c\x15\x30\x07\xc7\xc8\x5e\
+\x4c\x8c\xec\x97\xb7\x24\x8c\x2a\x91\x68\xa1\xe1\x0c\xaa\x5a\xb3\
+\x61\x59\x9e\xca\x27\xe7\x75\xfe\x28\x6e\xd9\x74\x05\xfe\xc5\x2f\
+\xfd\x24\xee\xbc\x75\x93\x49\xad\x5d\x70\x9c\x99\xff\x12\xc0\x95\
+\x40\x62\xb7\xba\x9c\x25\x01\xaa\x44\x62\x08\x85\x08\x59\x04\xc0\
+\xec\x42\x05\x27\x2f\xe6\x51\xae\x58\x20\x62\x72\xe6\xd0\xa6\x14\
+\x1b\xd6\x0d\xe3\x81\x2f\x7f\x06\x1f\xfd\xe0\x9d\x26\x0b\xf1\x65\
+\xe0\x2c\x13\xf3\x5d\x38\xcb\xc6\x24\x60\x75\x99\x4a\x02\x54\x89\
+\x44\x0a\xe5\xff\x93\xe2\x28\xa5\x98\x98\x2d\xe1\xf8\xf9\x59\x2c\
+\x94\xaa\x4c\x26\xe9\x10\x36\xa5\x58\x35\x90\xc3\x57\xbe\x78\x2f\
+\x7e\xea\xbe\x0f\xa2\x2b\x7a\x21\x3e\x02\xe0\x27\xe0\x8c\x08\x7e\
+\x0a\xc9\x42\x7c\x97\xa5\x24\x40\x95\x48\x6c\xa1\x34\xf8\x63\x42\
+\x31\x3b\x5f\xc6\xb1\xb3\x33\x98\x9d\x2f\xbb\x21\xcc\xec\x75\xff\
+\x98\x82\x52\x8a\xee\xce\x2c\x7e\xfa\xbe\xf7\xe3\x17\xbf\xf0\x09\
+\x0c\xf4\xf7\x9a\xcc\x64\xbf\x05\xce\x12\xc7\xbf\x04\xa0\x3d\x01\
+\xab\xcb\x4b\x12\x63\xfa\x65\x2e\x46\xc6\xf4\xe1\x61\xbc\xff\x3d\
+\x9b\xd0\x99\xcd\xc8\x86\x72\x00\x85\x52\x0d\xd3\x73\x0e\x38\x55\
+\x2c\x1b\xf9\x42\x05\xe9\x34\x41\x57\xb6\x0d\x84\x04\x00\xc5\x15\
+\x0a\x20\x9d\x4a\xe1\xaa\x2b\x46\xb1\x76\x74\x18\x27\xcf\x5c\x44\
+\x7e\x6e\x21\xca\xc8\xde\x0b\xe0\x23\x6e\xb5\xaf\xe7\xc6\x36\x57\
+\x12\x23\xfb\xe5\x21\x09\xa3\x4a\xc4\x4c\x28\x00\x10\x45\x18\xcf\
+\x9a\x00\xa0\x5c\xb1\x70\xf2\x42\x1e\xe7\x26\xe7\x61\xd9\x36\x74\
+\x7a\xa0\xb3\x10\x1f\x70\xd7\x6d\xd7\xe2\xd7\xbf\xf2\x93\xb8\x61\
+\xe3\x55\x88\x26\x56\xe8\x03\xf0\xbb\x70\xb6\xe7\x1a\x05\x12\xbb\
+\xd5\xe5\x20\x09\x50\x25\x62\x2e\x14\x92\x3d\x9d\x03\x29\x26\xbc\
+\x66\x51\x9c\x19\x9f\xc3\xa9\x8b\x79\x54\x6b\xb6\x03\x71\x9a\x39\
+\x58\x94\x52\x5c\x7f\xf5\x5a\xfc\xfa\x3f\xbd\x1f\x5b\x36\xdf\x84\
+\x54\x8a\x44\x01\x56\x16\xc0\xaf\xc1\xd9\xf8\x74\x13\x90\x80\xd5\
+\xbb\x5d\x12\xa0\x4a\xc4\x48\x68\xd8\xf4\x4e\x66\x99\x2a\xca\x20\
+\x19\xa5\x14\x17\xa7\x0b\x38\x7e\x6e\x16\x85\x72\xcd\x4f\xaa\x12\
+\xdb\xa6\x58\x3b\x32\x80\x5f\xfd\xb9\x4f\xe1\x13\x1f\x79\x2f\xda\
+\xdb\x23\x17\xe2\x4b\xc3\xd9\x4a\xfe\xfb\x70\xb6\x96\x4f\xc0\xea\
+\x5d\x2c\x09\x50\x25\x62\x2c\xf2\xe4\x84\x00\x9c\xa8\x10\xc3\x1a\
+\xdc\xa7\xe6\x4a\x38\x76\x76\x06\xf9\x42\x45\x5b\xb0\x37\x7d\xa1\
+\xbf\xa7\x0b\x3f\xf7\xb9\x7b\xf0\x85\xcf\xde\x83\x9e\x5c\xb7\xc9\
+\x9a\xec\x5b\x00\x7c\x0f\xc0\xe7\x01\xa4\x13\xb0\x7a\x77\x4a\x02\
+\x54\x89\xc4\x12\x5e\xfb\x53\xcf\x4a\xa7\x0a\x93\x54\xbe\x50\xc5\
+\xb1\xb3\x33\x98\xca\x17\xa5\xc2\x78\x35\xd0\x46\x67\x47\x1b\x3e\
+\xfb\xb1\xbb\xf0\x95\x9f\xfd\x24\x86\x87\x06\x4d\xc0\xea\x3a\x00\
+\xff\x01\xc0\xaf\x03\xe8\x48\xc0\xea\xdd\x27\xc9\xa8\xdf\x65\x2e\
+\x26\xa3\x7e\x43\xc3\xc3\x78\xdf\x1d\x9b\xd0\xd9\x91\x81\xa8\xbc\
+\x11\x00\x0b\xee\xa8\x9f\x0a\xa0\xbc\x03\x02\x8a\xaa\x65\x23\xbf\
+\x50\x01\x21\x04\xdd\x1d\x6d\x20\x84\x5d\x36\x86\x2f\x37\x95\x72\
+\xdc\x6e\xc6\xd6\x8e\xe0\xcc\xf9\x49\x4c\xcf\x44\xba\xdd\x74\x03\
+\xb8\x07\x40\x27\x80\xd7\x72\x63\x9b\x4b\xc9\x88\xe0\xbb\x47\x12\
+\x46\x95\x48\xb4\x88\x96\x72\xf1\x54\x30\x92\xf3\xc9\x79\xee\x55\
+\xa9\xd9\x38\x75\x31\x8f\x53\x97\xe6\x50\xb5\x6c\xbe\x00\xef\x8c\
+\x61\x65\xb7\xdd\x70\x25\x1e\xf8\xf2\xfd\xb8\xed\xe6\xeb\x4c\x5a\
+\xda\x0d\xe0\xff\x06\xf0\x2d\x00\x57\x00\x89\xdd\xea\xdd\x22\x09\
+\x50\x25\x62\x2e\x94\x28\xf1\xca\xff\x65\xfc\xfa\x44\xd3\x3a\x9b\
+\xcf\xb2\x29\xce\x4f\xcc\xe3\x9d\xf3\x33\x28\x57\x6a\xdc\xa4\x07\
+\x51\xcb\xa3\x94\xe2\xaa\xf5\x23\xf8\xb5\x9f\xff\x34\x3e\xfc\xbe\
+\xdb\x4d\xdc\x6e\xda\x00\xfc\x22\x80\xff\x04\xe0\x36\x20\x01\xab\
+\x77\x83\x24\x40\x95\x88\x91\x88\x33\xcc\x25\x42\xa5\x00\x27\x2f\
+\xc8\xdb\x13\x22\x50\x07\x9d\x11\xc1\xf1\x99\x22\x8e\x9e\x9d\xc1\
+\x5c\xb1\x0a\xbf\x08\x55\xdd\x94\x62\x64\x55\x2f\xbe\xfc\x85\x8f\
+\xe1\xfe\x8f\xbf\x1f\x9d\x66\x6e\x37\xf7\x02\xf8\x5b\xf7\x37\x71\
+\xbb\x59\xe1\x92\x00\x55\x22\xc6\x42\x43\x63\x64\xf6\x24\xad\xb8\
+\xe0\xea\x74\x6c\xf8\xcc\x7c\x19\x47\xce\x4c\x63\x6a\xae\x14\x5a\
+\xba\x4d\x29\x7a\xba\x3b\xf1\xf9\xfb\x3e\x80\x2f\xfd\xd4\xc7\xd0\
+\xdf\xdf\x6b\x62\x64\xbf\x0d\x0e\xb3\xfa\x45\x00\x6d\x09\x58\xad\
+\x5c\x49\x80\x2a\x11\x33\x89\xd8\x8a\x46\xcb\x9e\xbc\x48\x4a\xa5\
+\x70\x0f\x67\x16\x8a\x35\x1c\x3b\x3b\x8b\x8b\xd3\x05\x0e\x7c\xc4\
+\xb9\x5a\xd4\xa6\xc8\xb6\xa7\xf1\xf1\x0f\xdd\x86\x5f\xfe\xd2\x7d\
+\x58\xbb\x66\xd8\x04\xac\xae\x80\x63\xb3\xfa\xbf\x01\xe4\x12\xb0\
+\x5a\x99\x92\x00\x55\x22\xf5\x09\x3b\x3b\x9d\x2a\x36\x7e\x60\x26\
+\x52\xa9\x00\x8a\xc5\x17\x42\x80\x72\xb5\x86\x77\xce\xcf\xe2\xcc\
+\xf8\x3c\x2c\x71\x15\x50\x06\xad\x28\xa5\x48\x11\x82\xbb\x6f\xbb\
+\x0e\xbf\xf6\x8b\xf7\x63\xd3\x75\x1b\x4c\x5a\x3b\x00\xe0\xf7\x01\
+\xfc\x09\x80\x91\x04\xac\x56\x9e\x24\xd3\x13\x2e\x73\x31\x9d\x9e\
+\xb0\xe5\xce\x8d\xe8\xca\xb6\xc9\xfb\x3c\x10\x60\xa1\x54\xc5\xf4\
+\x5c\x89\x43\x1f\xe5\x5e\x10\x3a\x1b\x94\x5b\xa8\x4d\x29\xe6\x0a\
+\x15\x54\x6b\x36\xba\x3b\xdb\x90\x49\xa7\xa4\xe5\x65\xd8\x22\x86\
+\x07\x7b\x71\xdd\xd5\xeb\x31\x93\x2f\xe0\xc2\xa5\x49\xd8\x36\x0d\
+\xdb\x9e\x2b\x03\xe0\x3d\x00\xae\x85\xe3\xd0\x3c\x95\x4c\x5f\x58\
+\x39\x92\x30\xaa\x44\xcc\x84\x7a\x33\xd0\xb5\x91\xea\x99\xeb\xca\
+\x25\x61\xbc\x5c\xd4\x07\x29\x2f\xda\xa6\x14\x17\xa6\x16\x70\xf4\
+\xec\x8c\xbb\xb6\x95\x1e\xfc\xa8\x4d\x31\xb6\x7a\x10\xbf\xf4\x33\
+\x1f\xc7\xc7\x3e\xb4\x19\xd9\xac\x91\xdb\xcd\xe7\xe1\xcc\x64\xdf\
+\x02\x24\x23\x82\x2b\x45\x12\xa0\x4a\x24\x52\xd4\x5e\x7e\xe2\x28\
+\x9f\xda\x7d\x46\x2e\xcb\xfd\xe7\x1a\xb3\xa4\x5d\xe2\x3d\xb7\x9b\
+\x7c\x11\x87\x4f\x4f\x63\x76\xa1\xac\x58\x06\x19\x3e\xd3\xa2\xd4\
+\xc6\x40\x5f\x37\x7e\xf6\x27\x3f\x8c\xcf\xdd\xf7\x21\xe4\x72\x5d\
+\x26\x76\xab\x0f\xc0\x01\xab\xcf\x01\x48\x25\x60\xb5\xfc\x25\x01\
+\xaa\x44\x0c\x44\xc5\x95\xf8\xa8\x30\x70\x72\x92\x05\xec\x49\x3d\
+\x22\x08\x9f\xb5\x79\x31\x73\x85\x0a\x0e\x9f\x9e\xc1\xc4\x4c\x51\
+\x72\x80\x66\x57\xb9\xa2\x94\xa2\xab\xb3\x1d\x9f\xf9\xe8\x5d\xf8\
+\x85\x9f\xfe\x04\x86\x87\x06\x4c\xc0\xea\x7a\x38\xab\x2f\xfc\x73\
+\x00\xd9\x04\xac\x96\xb7\x24\x40\x95\x48\xb4\x78\xac\x87\x3a\x06\
+\x20\x16\x94\x02\x58\x21\x8a\x6c\x34\x16\x40\x89\xac\x0c\x00\x8a\
+\x95\x1a\x8e\x9e\x9d\xc1\xb9\xf1\x79\x66\xab\x2d\x95\x81\x9e\xa2\
+\x3d\x93\xc2\x87\xef\xbe\x11\xbf\xfc\xa5\x4f\xe3\xca\x2b\xd6\x9a\
+\x80\xd5\x28\x9c\x75\xad\xfe\x35\x80\xfe\x04\xac\x96\xaf\x24\x40\
+\x95\x48\xa8\xf8\xf0\xe3\x81\x8c\xf6\xdd\x0f\x54\x40\x09\x9c\x62\
+\x02\x14\x37\x22\x08\x67\x97\x9b\x13\x17\xf2\x38\x71\x61\x16\xd5\
+\x9a\x05\x7d\x0b\x9c\x11\xc4\xdb\x6f\xbc\x12\xbf\xfa\xf3\x9f\xc6\
+\xad\x37\x5d\x87\x50\xef\x40\x47\x72\x00\xfe\x15\x80\x7f\x07\x60\
+\x2c\x01\xab\xe5\x29\xc9\xa8\xdf\x65\x2e\x51\xa3\x7e\x00\xb0\x6a\
+\x68\x08\xef\xbb\x63\x23\xba\x3a\xda\xa4\x38\xe2\x8e\xfa\x4d\xcd\
+\x15\x75\x0b\x79\x2a\x03\xa5\xf5\xad\x54\x5a\x25\xa3\xef\x79\x23\
+\x82\xa5\xaa\x85\x5c\x67\x3b\xda\xd2\xa9\x90\xf4\xc0\x60\x7f\x0e\
+\xd7\x5e\x3d\x86\x85\x62\x05\xe7\x2e\x4e\xc0\xb2\xec\x30\xa7\xe6\
+\x34\x80\x5b\x01\xdc\x0c\x60\x5f\x6e\x6c\xf3\xa5\x64\x44\x70\x79\
+\x49\xc2\xa8\x12\x69\x5c\x04\xb5\x4e\xc5\x9c\x58\xf6\x14\xc6\xa0\
+\xd8\x70\xd1\xa1\x99\x02\xb8\x34\x5d\xc4\xa1\x53\xd3\xc8\x17\xaa\
+\x8a\xf4\xec\x39\xc5\xe8\x50\x1f\x7e\xfe\xf3\x1f\xc5\xa7\x3e\xba\
+\xc5\x64\xb7\x9b\x14\x80\x4f\xc2\x59\x88\xef\xa3\x48\xdc\x6e\x96\
+\x95\x24\x40\x95\x88\x91\xc8\x8b\xe5\xa9\xfd\xfe\xc4\x04\x61\xe0\
+\x24\x83\x8b\xf7\x27\xb8\xe4\x30\xf1\x00\x30\xb3\x50\xc2\xa1\xd3\
+\x53\x98\xcc\x97\xc2\x0d\xf8\x94\xa2\x37\xd7\x81\x9f\xfa\xe4\xfb\
+\xf0\xd3\x9f\xfd\x09\x53\xb7\x9b\x3b\xe1\xb8\xdd\xfc\x1c\x80\x4c\
+\x02\x56\xcb\x43\x12\xa0\x4a\xc4\x48\xb4\xe3\x7e\x0c\xdd\xf1\x40\
+\x26\x0e\x38\xb1\x71\x92\xcf\xa0\x14\xef\x08\x01\xb0\x50\xac\xe2\
+\xf0\xe9\x69\x9c\x9f\x5c\x50\x82\x8f\xdf\x02\x9b\xa2\x23\x9b\xc1\
+\xbd\x1f\xb8\x0d\x5f\xfe\xc2\x27\x4c\xdd\x6e\xae\x04\xf0\x17\x70\
+\x76\x6a\xee\x4e\xc0\x6a\xe9\x25\x01\xaa\x44\xcc\x85\x52\x35\x8d\
+\xa2\x1e\x24\xc9\x76\xa7\x70\xc6\x13\x0f\xa0\xfc\x74\x6e\x58\xb9\
+\x6a\xe1\xd8\xb9\x19\x9c\xbc\x38\x87\x9a\xbf\xb6\x55\x30\xd3\x9d\
+\x75\xf1\x49\xa7\x09\xee\xbe\xfd\x3a\xfc\xf2\x97\xee\xc3\xa6\x6b\
+\x8d\xdc\x6e\x06\x01\xfc\x21\x80\xaf\x02\x18\x4e\xc0\x6a\x69\x25\
+\x31\xa6\x5f\xe6\x62\x62\x4c\x1f\x1c\x1a\xc2\x96\xdb\x37\xa2\x4b\
+\xb5\xc2\x27\x01\xe6\x8b\x55\x4c\xb9\x6a\x58\x94\xb0\x06\x72\x40\
+\xc1\xd0\xa0\x02\x36\x2a\x85\xfb\x18\x69\x03\xf9\x85\x32\x2a\x55\
+\x1b\x3d\x5d\x6d\xc8\xa4\x89\xba\x50\x57\x86\x57\xf5\xe1\xaa\x2b\
+\xd7\x21\x3f\x57\xc0\x85\x4b\x53\xb0\xed\x50\x23\x7b\x1b\x80\xcd\
+\x00\xae\x86\xb3\x6a\xe8\x74\x62\x64\x5f\x1a\x49\x18\x55\x22\x86\
+\xc2\xf3\x1d\x89\x54\x85\xe5\x14\x6c\x4f\x61\xec\x49\xc7\xa0\xbc\
+\x70\x6e\xbe\xa7\x1b\x66\x53\x8a\xf3\x53\xf3\x38\x74\x6a\x1a\xf3\
+\xc5\xaa\x5c\x3f\xdb\x4e\x4a\x71\xc5\x9a\x55\xf8\x85\x9f\xbe\x17\
+\x3f\xf1\xc1\xf7\x20\x9b\x6d\x8f\x52\x05\x33\x00\xbe\x08\x67\x26\
+\xfb\xdd\x40\xe2\x76\xb3\x14\x92\x00\x55\x22\x46\xe2\xbc\xec\x44\
+\x37\x3f\xdd\x49\xc3\xae\xa6\x10\x02\x4e\x66\xea\x5d\x34\x40\x01\
+\xbc\x9a\x37\x99\x2f\xe1\xed\x93\xd3\x98\x76\xb7\x94\x07\x34\x8c\
+\xcd\xa6\x18\xea\xcf\xe1\x0b\x9f\xf9\x10\x3e\xfb\xc9\x0f\x9a\xee\
+\x76\xf3\x21\x38\x60\x75\x3f\x12\xb7\x9b\x45\x97\x04\xa8\x12\x69\
+\x4c\xc4\x91\x3a\x0e\x98\xc2\xc1\x29\x8a\x3d\x01\xe1\x00\xc5\x3a\
+\x34\x7b\x51\x73\x85\x0a\x0e\x9d\x9a\xc2\xc5\xe9\x02\xc4\xd5\x62\
+\x78\xbb\x15\x45\x77\x57\x3b\x3e\xf5\x91\xf7\xe0\x67\xff\xc9\xc7\
+\x4c\xdd\x6e\x6e\x04\xf0\x57\x00\x7e\x15\x89\xdb\xcd\xa2\x4a\x02\
+\x54\x89\x98\x89\x37\x2d\x9d\x33\xa6\xf3\x8a\x9f\x76\xba\x02\xa2\
+\xc0\xa9\x4e\x80\xa2\x72\x3d\x84\x00\xc5\x72\x0d\x87\x4f\x4f\xe3\
+\xf4\xa5\xb9\x60\x6d\x2b\x45\xd9\x94\x52\x64\xdb\xd2\xf8\xc0\xe6\
+\x1b\xf0\xe5\x2f\x7e\xca\xd4\xed\x66\x2d\x80\x6f\x00\xf8\x2d\x00\
+\x7d\x09\x58\x2d\x8e\x24\x40\x95\x08\x10\x6e\x62\xe2\x9c\x80\xc5\
+\x99\x51\xf2\xd6\xa3\x6e\x2a\x5a\x3f\x38\x51\x05\xda\x45\x01\x94\
+\x53\x27\xf5\x81\xa6\x6a\xd9\x78\xe7\xfc\x2c\x8e\x9f\x9d\x41\xa5\
+\x6a\xfb\xae\x34\x3c\xa4\x3a\xff\xa7\x53\x04\xb7\xdd\xb0\x01\x5f\
+\xf9\xd9\x4f\xe1\x96\x1b\xaf\x75\xb6\xf1\x0a\xbf\x22\xbd\x00\x7e\
+\x13\x0e\x60\xad\x4d\xc0\xaa\xf5\x92\x59\xea\x06\x78\xe2\xde\xec\
+\x34\x9c\xd5\x18\xc7\x00\x64\x15\xc9\x0c\xc6\x95\xa4\xf4\xa4\x09\
+\x65\x34\x2a\xf5\x94\xd1\x68\xbd\xa6\xf9\x29\x1c\x96\x90\xd5\xa6\
+\xf0\x37\x9f\xa1\xda\x42\xf5\xd3\x10\xf8\xb9\x54\xa1\x29\xc4\x09\
+\xa0\xe0\xd9\x90\xbe\x6e\x2a\x97\x47\x1d\x23\xfb\x99\xf1\x79\x94\
+\xab\x36\xae\x5e\xdb\x87\xae\x6c\x46\x55\x89\x2f\x57\x5f\xb1\x1a\
+\x5f\xfe\xc2\x27\xf0\xd0\x53\xbb\xf0\xd2\x9e\x03\xa8\x56\x6b\x61\
+\x23\x82\x59\x00\xbf\x02\x60\x0d\x80\xff\x67\x74\xcb\x03\x07\x00\
+\xe0\xc2\xee\xef\x18\x5e\xf6\x44\xe2\xc8\xb2\x00\x2a\x17\xa4\x06\
+\x01\xfc\xef\x00\x3e\x03\x60\x03\x5a\xcb\xf6\x9a\x01\x3e\xad\x96\
+\xc5\x6c\x63\x1a\xce\x14\x85\x88\x96\x10\x75\xb3\x54\x3a\x9a\x17\
+\x15\x13\x9c\x9c\xa0\x06\x00\x4a\xc8\x40\x01\x5c\x9a\x29\xa0\x5c\
+\xad\xe1\x9a\x75\xfd\xe8\xeb\x6e\xe7\x22\x79\xb2\x47\x31\x3a\xdc\
+\x87\x9f\xf9\xec\x47\xd0\xd7\x9b\xc3\xb6\x9d\x7b\x50\x28\x94\xc2\
+\xc0\x2a\x05\xe7\x79\x1d\x81\xe3\xd8\xbc\x63\x74\xcb\x03\x34\x01\
+\xab\xe6\xcb\x92\x03\x95\x0b\x52\x59\x38\x8b\xef\xff\x2b\x38\x73\
+\x57\x12\x59\x69\x12\x32\xb1\xd3\x8d\xd6\x9c\x78\x41\xf2\x24\xa9\
+\x46\x00\x8a\x0f\xa7\x98\x99\x2b\xe3\xed\x93\x93\xb8\x66\x6d\x3f\
+\x86\xfb\x3a\xb5\xe5\x53\x4a\xd1\xdf\xdb\x85\xfb\x3f\xbe\x05\xfd\
+\x7d\x3d\x78\xec\xe9\x17\x4c\x76\x69\xbe\x0b\x8e\xdb\xcd\xef\x00\
+\xf8\x9f\xa3\x5b\x1e\xa8\x25\x60\xd5\x5c\x59\xf2\x09\x9f\xee\x84\
+\xc3\x3b\x01\x7c\x13\x40\xcf\x52\xb7\x27\x11\x59\x06\x87\x86\xb0\
+\xe5\x8e\xeb\x9c\x35\xd3\x21\x03\xd2\x7c\xb1\x8a\xc9\x7c\xb0\xdd\
+\x55\x84\x06\xc8\x04\x99\x83\x93\x53\x6f\x7c\x80\xf2\xcf\x09\x50\
+\xa9\xda\x98\x99\x2f\x23\x95\x22\xe8\xee\x6a\xd3\x82\x0f\x05\xd0\
+\x9e\x49\x63\xfd\xba\x11\x0c\xad\x1a\xc0\xb9\x0b\x93\xc8\xcf\x2d\
+\x44\x81\xd5\x20\x80\x8f\x00\xa8\x00\x78\x23\x37\xb6\xb9\x9a\x4c\
+\x0c\x6d\x9e\x2c\x17\xa0\xfa\x30\x9c\xbd\xd7\x0c\x96\x0f\x4a\x64\
+\xb1\x65\xd5\xf0\x30\xee\xbe\xed\x3a\x74\x75\xb4\x49\x20\x45\x08\
+\x30\x5f\x70\x80\x2a\x4c\x9d\x0b\xa2\x14\xd3\xcb\xd1\x42\x80\x62\
+\x22\x09\x80\x9a\x4d\x31\x33\x5f\x86\x4d\x29\x7a\xbb\xda\x91\x4e\
+\x11\xb9\x0c\x37\x63\x3a\x05\xac\x59\x3d\x88\x75\x6b\x47\x30\x31\
+\x39\x8b\xc9\xe9\xd9\xa8\x4b\xd5\x05\xe0\x83\x70\x3e\xb8\xaf\xe5\
+\xc6\x36\x17\x12\xb0\x6a\x8e\x2c\x17\xa0\xba\x1b\xc0\x4f\x22\x01\
+\xaa\xe5\x27\x24\x85\xd5\x6b\xc7\x70\xd7\x2d\x57\x69\xd7\xa3\x9a\
+\x2f\x56\x31\x31\x5b\x32\x66\x4d\xc2\xa1\x52\xb4\xe0\xa4\xc8\x1c\
+\x05\x50\x7c\x98\xb3\xb6\xd5\xec\x42\x19\xe5\x8a\x85\x9e\xae\x2c\
+\xda\x32\x29\x01\xfc\x82\xd4\x84\x00\x43\x83\xbd\xd8\x70\xc5\x5a\
+\xcc\x2d\x14\x71\x31\xda\xed\xa6\x1d\x8e\x2a\xb8\x01\x0e\x58\xcd\
+\x24\x6e\x37\x8d\xcb\x72\x01\xaa\x3b\x90\x00\xd5\xf2\x13\x4a\x91\
+\xcd\xf5\x61\x74\xfd\x95\xb8\x63\xd3\x1a\x2d\x50\xcd\x15\x2b\x98\
+\xcc\x17\xe5\x31\xc1\x18\xc0\xe4\x54\xa7\x30\xc6\x87\x14\x10\x0a\
+\x50\x6e\x00\x15\x52\xb3\x76\xff\xf9\x62\x15\x0b\xa5\x2a\xba\x3b\
+\xda\x90\x6d\x4b\x4b\x20\xc5\x96\xd7\xd7\xd3\x85\xab\x37\xac\x45\
+\xcd\xb6\x71\xfe\xc2\x04\x6a\x35\x2b\x6a\x21\xbe\x9b\xe1\xec\xd4\
+\x7c\x00\xc0\xb9\x04\xac\x1a\x93\x15\x01\x54\xa2\x1b\x45\xf2\xd7\
+\xcc\x3f\xaa\x08\x23\x20\xe9\x34\xda\xba\x7a\xd1\x3b\xba\x01\x7d\
+\xfd\x7d\xb8\xfd\xda\x61\x74\x77\x64\x14\x13\x14\x88\x92\x51\x19\
+\xcf\x8d\x88\x09\x4e\x7c\x7c\x4c\x80\x12\x12\x53\x00\xc5\x52\x0d\
+\xb3\x0b\x65\x74\xb6\x67\xd0\x99\xcd\x40\x91\xcc\xaf\xaa\xbb\x33\
+\x8b\xab\xae\x58\x8b\xf6\x6c\x3b\xce\x9e\x1f\x47\xb9\x5c\x09\x03\
+\x2b\x02\xe0\x2a\x00\xef\x07\x70\x02\xc0\xb1\x04\xac\xea\x97\x25\
+\x1f\xf5\x8b\x92\x6c\xb6\x1d\x37\xdc\xb0\x09\xab\x06\x7b\x23\x52\
+\x12\xf7\x7f\xaa\x1c\x7d\xe2\x9e\x27\xca\x65\x79\x17\x4b\x34\x72\
+\xa8\x82\x09\x21\xc8\x64\x3b\xd1\xd6\xd1\x0d\x92\x4a\xa3\xa7\xab\
+\x1d\xed\x6d\x69\x7f\x8b\x2b\x3e\x31\xe5\x3e\x24\x91\x2d\xd2\x0c\
+\x0d\x46\x8f\x0a\xfa\x05\xe8\xeb\x8a\x01\x50\xec\x41\x7e\xa1\x82\
+\xb7\x4e\x4e\xe2\xea\xb5\xfd\x18\x1d\xec\x96\x36\x31\x0d\x7c\x18\
+\x29\x7a\xba\xb3\xb8\xf7\x43\x77\xa2\xaf\x37\x87\x47\x9e\xda\x85\
+\x4b\xe3\x53\x51\x46\xf6\x9b\x01\xfc\x35\x9c\x9d\x9a\xff\x6e\x74\
+\xcb\x03\x95\x64\x44\x30\xbe\x2c\x6b\xa0\x72\xb6\x41\xea\xc0\x47\
+\xdf\x7f\x2b\x36\x5d\xb3\x16\x80\x06\x5b\x88\xf3\x5f\x14\xee\xa8\
+\x9e\x27\xa2\x3b\x23\xe6\x38\x46\xd4\x85\x29\xcb\x35\x48\x62\x5e\
+\x5f\x4c\x51\x82\x92\x2e\x9d\x00\x28\xa9\x14\x31\x9f\x7e\xc0\x86\
+\xd7\x09\x4c\x72\x1a\x3d\x7b\xe2\xc3\xf5\x00\x15\xf4\xcd\x3b\x76\
+\x0e\x1c\xb7\x1b\x0b\x87\x4e\x4d\xa3\x54\xb1\x70\xc5\xea\x1e\xa4\
+\x35\xfd\xa5\x14\xe8\x68\xcf\x60\xcb\x9d\xd7\xa3\x27\xd7\x85\x87\
+\x9e\x78\x1e\xef\x9c\x3c\x17\x05\x56\x63\x70\x46\xb5\xd7\x01\xf8\
+\xd6\xe8\x96\x07\xf2\x09\x58\xc5\x93\x65\x0d\x54\x80\xf3\x10\xa5\
+\x52\x04\x29\x12\x4c\x36\x54\x83\x15\x45\xc0\xaa\xc2\xcb\x93\xc2\
+\xfc\x23\x86\x6a\x11\x44\x96\x25\xe7\xd7\x65\xe0\x29\xdc\x52\x82\
+\x95\x79\x05\x71\x6b\xa0\x91\x7e\x72\x4d\x03\x27\x26\x30\x16\x40\
+\xb9\x07\xba\x8d\x25\x6a\x96\x8d\x77\xce\xcd\xa2\x5c\xa9\xe1\xaa\
+\x35\x7d\xc8\xb6\xa7\x35\x9b\xa8\x02\xe9\x74\x0a\xb7\x5c\xbf\x01\
+\xb9\xee\x4e\x3c\xfc\xe4\x4e\xec\x7f\xfb\x78\xd4\x96\xf2\x7d\x00\
+\x7e\x1b\x0e\x58\xfd\xc1\xe8\x96\x07\x2e\x00\xc9\x4c\x76\x53\x59\
+\xf6\x36\xaa\xae\xce\x0e\xdc\x7e\xeb\x26\x0c\x0d\xe4\xa4\xbc\x44\
+\x1b\xd0\x0c\x76\xc5\x84\xc4\x00\x2d\xa1\x19\x26\xa9\x4c\x93\xd5\
+\x2d\xcd\x00\x35\x2d\x04\xb9\xc6\xf4\x89\xd9\x52\x78\x7a\xe3\xc9\
+\xa0\xd4\xa8\x8c\x7a\x00\xca\xf9\x61\x72\x2a\xda\x64\x53\x8a\xfc\
+\x42\x05\x85\x72\xcd\x57\x79\xd5\x4d\xa0\x20\x00\x06\xfa\xba\x71\
+\xe5\x15\x6b\x51\xae\x54\x71\x21\x7a\xb7\x9b\x0c\x9c\x67\x7d\x13\
+\x80\xbd\x00\x26\x12\xbb\x95\x99\xac\x08\xa0\xba\xe3\xd6\x4d\x18\
+\xea\x77\xe7\x82\x0a\x29\xc2\x54\x41\x6d\x3c\x9b\x74\xc9\x01\x4b\
+\x4e\x14\x99\x7c\x19\xd9\xd6\xbc\xe9\x09\x93\xb3\x66\xf3\xa8\x94\
+\xd1\x61\xcc\x89\x89\x50\x41\x58\xb3\x00\x4a\x64\x83\x0b\xa5\x2a\
+\xf2\x0b\x15\x74\x77\xb4\xa1\xa3\x3d\xc3\x14\x25\x1b\xe4\x72\x5d\
+\x1d\xb8\x6a\xc3\x3a\xa4\x52\x69\x9c\xbb\x30\x8e\x4a\xb8\x8f\x60\
+\x0a\x0e\x50\xdd\x05\xe0\x10\x80\xd3\x09\x58\x45\xcb\xca\x58\x3d\
+\x81\x6a\x8e\x11\x8c\x54\xc9\xe9\xbd\x31\xad\x88\xa2\xa9\xfc\xe0\
+\xca\x65\xba\x21\xfc\x8f\x51\xb3\xa9\x5b\x47\x74\x26\x76\x1c\x8e\
+\x1f\x85\x0b\x49\xaa\xfe\x6b\xb5\x28\xea\x0c\xeb\xa3\xd4\x3c\x66\
+\x59\x05\x4a\xa9\xfe\x1e\x7a\xc9\xc0\x82\x04\x0d\xbd\xae\x41\x1d\
+\xde\xbd\x0a\x5c\xa9\xf5\x9b\x4b\x50\x39\x3f\x80\x99\xf9\x32\x0e\
+\x1c\x9f\xc0\xc5\xe9\x42\x50\xab\xa2\xb1\x14\x40\x5f\x4f\x27\x3e\
+\xf9\xd1\xbb\xf1\xb9\xfb\xee\xc1\xe0\x80\xd1\x6e\x37\xef\x85\xe3\
+\x76\xf3\xd3\x00\xd2\xc9\x0a\x0c\xe1\xb2\x32\x18\xd5\x2d\x9b\xb0\
+\x6a\xa0\x27\x44\xd5\x0b\x63\x56\xce\x81\x91\xad\xa9\x85\xec\x4a\
+\xd1\xa4\x7a\x72\x35\x46\xa6\xe2\x9b\x9d\xa2\x8b\x24\x04\xf3\xae\
+\xea\xa7\x06\x55\x6a\x56\xa4\x76\x80\x52\xc1\xb6\x22\xd8\x93\x73\
+\x18\xce\xa0\x9c\xf0\x68\x35\xb3\x62\x59\x98\xce\x97\x90\x4a\x11\
+\xf4\x74\xb6\x73\x4c\x49\xcc\xd3\x96\x49\x63\xdd\x9a\x61\xac\x5a\
+\x35\x80\x8b\x97\xa6\x4c\xdc\x6e\x56\x01\xf8\x09\x00\x45\x00\xfb\
+\x13\xb7\x1b\xbd\x2c\x7b\x63\x3a\x2b\xd2\xac\x02\xea\xd8\x14\x2c\
+\x66\x29\xc7\x30\x30\xab\xd7\x76\xc5\x15\xa3\xb0\x9c\x13\x21\xbc\
+\x6e\xf0\x32\xce\x4c\x62\x84\xb6\x56\x08\x21\xb0\x6c\xd7\x90\x6e\
+\x0a\x4a\x8a\x04\x71\xc1\x89\x0b\x52\xa8\x77\x80\x19\x40\xe9\xea\
+\xf1\x5a\x40\xe0\xec\x76\x73\xe4\xf4\x34\x4a\x65\xc7\xc8\xde\xd6\
+\x96\x92\xcb\x76\xcf\xdb\x33\x69\xdc\x71\xf3\xb5\xe8\xc9\x75\xe1\
+\x91\x27\x77\xe2\xd0\xd1\x53\x51\x57\x61\x18\xc0\x1f\xc3\x19\x19\
+\xfc\xb7\xa3\x5b\x1e\x98\x4a\x0c\xec\xb2\xac\x28\xa0\xf2\x24\x18\
+\xdf\x03\xce\x4f\x2e\xe0\xec\xc4\x3c\x08\x91\x79\x87\x9e\x21\xc9\
+\xa8\x42\x54\xe9\x88\x1c\xa3\x08\xe2\xcb\x8c\x62\x5a\x44\x0f\x33\
+\xe1\xac\x50\x5b\x9c\x61\x64\x7c\x18\x73\x72\x44\xd3\xaa\x72\xd5\
+\xf2\x55\x38\xad\xd0\xb0\x53\x0d\xb3\xa1\x11\xc5\xb4\x0c\xa0\xdc\
+\x52\x99\x04\x96\x4d\x71\xf2\x42\x1e\xa5\x8a\x85\x6b\xc7\xfa\xd1\
+\xd5\x91\x11\x17\x38\xf5\x0f\xd3\x29\x82\x8d\x57\xad\xc3\xcf\xfc\
+\xd4\xbd\x78\x7c\xeb\x8b\x78\xfd\xcd\x43\x51\x33\xd9\x73\x00\xfe\
+\x4f\x38\xeb\x82\xfd\xee\xe8\x96\x07\x4e\x02\xc9\x88\x20\x2b\x2b\
+\x0c\xa8\x02\x4e\xe5\x1d\x15\x4a\x35\x4c\xcd\x16\x7d\x54\x62\x1f\
+\x05\xd5\x83\x41\x54\x0c\x2b\xcc\x40\x4f\xf4\x8a\x97\x16\x08\xa3\
+\x8c\xf9\x26\x03\x02\x50\x03\x60\x1c\x69\x05\xc3\xd2\x81\x91\x72\
+\x42\xad\x36\x4f\x34\x60\x44\xc5\xab\x60\xb1\x15\x00\xc5\x8a\x4d\
+\x81\xf3\x93\xf3\x28\x57\x6b\xd8\xb8\x7e\x10\x7d\xdd\xed\xca\x2d\
+\xbc\x9c\xeb\x41\xb1\x7e\xcd\x20\x3e\x7f\xff\x3d\xe8\xed\xe9\xc6\
+\xae\x97\xf7\xa1\x54\xaa\x44\x6d\xcd\xf5\x0b\x00\x46\x01\xfc\x06\
+\x80\xd7\x47\xb7\x3c\x90\x80\x95\x2b\x2b\xc3\x98\x2e\x59\x30\x19\
+\x55\x8f\x38\xff\x11\x30\xf8\x40\xbc\x17\x27\x98\xd0\x47\x08\xff\
+\x32\x39\xe7\x94\xc3\x01\xe2\x97\xc7\x94\x23\xb4\x43\x55\x16\x5b\
+\x07\xab\x97\x4a\x84\xc6\xcb\xcb\x57\x21\xa5\x01\x5b\x16\xa1\xee\
+\x1c\x31\xa1\xbe\xb0\x3f\x22\xf7\xa3\x59\x7f\xaa\xf6\xfb\x97\x5a\
+\x30\x7e\xab\x86\x06\x24\x97\x1d\xcd\x40\x00\x6f\x7c\xf7\xca\x8e\
+\xbb\x03\x33\xd5\x1a\xca\x65\xdb\xb8\xdb\x3e\xcd\x24\x4f\x6f\xa3\
+\x54\x0a\x60\x72\xb6\x84\x37\x8f\x8d\x63\x7c\xa6\xa8\x78\x22\xf9\
+\x8e\x0c\x0d\xe4\xf0\xe9\x7b\xdf\x87\x4f\xdf\xfb\x01\xf4\xf6\x44\
+\xee\x76\x43\x00\xdc\x0b\x67\xb7\x9b\x4f\x00\x20\x89\x91\xdd\x91\
+\x95\x6d\x4c\x07\x30\x35\x57\xc6\xd4\x9c\x33\x87\x47\xa5\xe9\xb0\
+\xac\x44\xc9\x80\x04\xe3\x93\xce\xd8\x2d\xa9\x86\x21\x46\x52\x35\
+\xd3\x52\x1b\xb1\xe2\xcc\xa1\x8a\x6b\x99\x6a\x36\xa3\xa2\x31\x63\
+\x69\xcc\x42\x4c\x99\x13\x60\xce\x9e\xf4\xe5\xf2\x01\x3a\x80\xe2\
+\xd2\x30\x19\xcb\x55\x1b\x53\x73\x25\x64\xd2\x69\xe4\xfc\xb5\xad\
+\xd4\x2a\x68\xb6\x3d\x83\xb1\x75\x23\xe8\xef\xeb\xc5\xf9\x8b\x13\
+\x98\x5f\x28\x46\x19\xd9\x47\xe1\xac\x6d\x35\x05\xe0\xed\xdc\xd8\
+\x66\xeb\x72\x37\xb2\xaf\x1c\xa0\x72\xe7\x51\x89\xf7\x77\x2a\x5f\
+\xc2\x54\x3e\x58\x2e\x56\x65\x4c\x37\xb2\x5d\xd5\x09\x58\x4e\xde\
+\x78\xa0\xe5\x94\x53\x07\x70\x69\x12\x98\x01\x52\xbd\xb0\x15\x6f\
+\xbe\x43\x1c\x70\xd2\xa9\x7c\x71\xc1\xc9\x89\x33\x30\xe4\xd3\x06\
+\x00\x4a\x2c\x94\x00\x55\x8b\x62\x7a\xce\xd9\x21\xba\xb7\xbb\x8d\
+\x5b\xdb\x4a\x2c\x37\x93\x4e\x61\x74\x64\x15\x56\x8f\x0c\x61\x62\
+\x72\x1a\x33\xb3\xf3\x51\x97\xb2\x0f\xc0\x3d\x6e\xad\xfb\x72\x63\
+\x9b\x2b\x97\x33\x58\xad\x1c\xa0\x1a\xe0\x17\xff\xf4\x00\x60\x2a\
+\x5f\xc2\xa4\xc7\xa8\x88\x08\x49\xfc\x49\x33\x01\x4b\x15\x14\xf1\
+\x95\x34\x03\x2d\x45\xc1\xc6\x10\xd3\x24\x0a\x45\x22\x63\xf5\x7f\
+\x84\x57\x08\x95\x05\xca\x00\xa5\x86\xa6\xa8\xa9\x48\x91\xec\x89\
+\x09\x68\x16\x40\x09\x58\x05\xcb\xb6\x31\x33\x57\x46\xa5\x66\xa3\
+\x37\x97\x45\x26\xad\x1f\x11\x4c\xa7\x08\x86\x06\xfb\x30\xb6\x6e\
+\x35\xf2\x73\x0b\x18\x9f\x98\x01\xa5\x08\x73\xbb\xe9\x04\xf0\x01\
+\x38\xab\x87\xee\xc9\x8d\x6d\x5e\xb8\x5c\x27\x87\xae\x58\xa0\x02\
+\x9c\x1b\x3c\x95\x2f\x61\x6a\xae\xe4\x67\x14\xc1\xa2\x59\x80\xc5\
+\x1d\x35\xc8\xb2\xe4\x3a\x14\x71\x06\x95\x34\x05\x97\x04\x1b\x9d\
+\x0c\x36\x5a\x8b\x9a\xd1\xbc\xa9\xd0\xb4\x7e\xfd\x44\xea\x6f\xdd\
+\xaa\x9d\x10\x68\x02\x50\x41\x78\x08\x83\x12\x4e\x45\xdb\x57\x7e\
+\xa1\x82\x85\x62\x0d\xbd\x5d\xed\xc8\xb6\xa7\x95\x99\x28\x9c\xe7\
+\xa2\xbf\x37\x87\x2b\xd6\xaf\x45\xb5\x5a\xc5\x85\x4b\x93\xb0\xac\
+\xd0\x11\xc1\x0c\x80\xf7\x00\xb8\x0e\xc0\xeb\x00\x26\x2f\x47\xb0\
+\x5a\x39\x40\xa5\x71\xa1\x99\x9a\xf3\x54\x3f\x3e\x5c\xcb\xae\x98\
+\x00\x13\xc0\xe2\xc3\xe3\xb3\x2c\xb1\x2d\x61\x12\x95\x8c\xd4\x81\
+\x56\x66\xaa\xa4\x1a\x88\x78\x31\x54\x01\x4d\xd1\x53\xc9\x52\xf4\
+\xed\x30\x55\xed\xf8\x38\x13\x70\x62\xd2\x69\x0a\xd7\x01\x94\x58\
+\xce\x42\xa9\x8a\xd9\xf9\x32\xba\x3a\xda\x9c\xb5\xad\xa8\xb2\x38\
+\x10\x02\xe4\xba\xb2\xd8\x30\xb6\x16\x99\x74\x1a\xe7\x2f\x4e\xa0\
+\x52\xa9\x46\xb9\xdd\xdc\x00\x07\xb0\x0e\xe2\x32\x74\xbb\x59\x79\
+\x40\xe5\x89\x52\xf5\x93\xcb\x6f\x25\x60\x71\x47\x31\x30\xa4\x59\
+\xc0\xc5\xd7\x15\x4a\xcf\x22\xdb\x64\x9e\xc0\x4b\xc4\xfc\x51\x35\
+\xfb\xa2\x11\x6d\x52\x72\x23\xaa\x06\x21\xe2\x0f\xb7\x46\x19\xc7\
+\x83\xb3\x56\x03\x94\x58\x07\x05\x45\xb1\xe2\xcc\x64\xcf\xb6\x65\
+\x90\xeb\x6a\xd7\x5c\x01\x27\x53\x47\xb6\x0d\xeb\xd6\xad\x46\x4f\
+\x77\x37\xce\x5f\x98\x40\xa1\x58\x8a\x7a\x36\xd6\xc3\x59\x93\xfd\
+\x0c\x80\x23\xb9\xb1\xcd\xf4\x72\x01\xab\x15\x03\x54\x83\x9e\x31\
+\x9d\x8d\x24\xc0\x64\xbe\x84\xa9\xb9\xa2\xff\xa2\x46\x81\x15\xd0\
+\x38\x60\xf1\x71\x0a\x23\x7e\x4c\xe2\x63\x0a\x5c\x72\xdd\x11\xe9\
+\xf4\xb3\x4b\xe3\xd9\xa1\x88\x08\x48\x42\x21\x52\x61\xe1\x43\x7b\
+\x91\x03\xf4\x3a\x9b\x16\x55\xb7\x5c\x9c\xc7\xde\x4c\x80\x72\xf2\
+\x85\xcf\xd9\x62\xf7\x21\x24\x00\x2a\x96\x8d\xa9\x7c\x11\x29\x42\
+\xd0\xdb\x9d\x75\x97\x28\x52\xb7\xb1\x3d\x93\xc6\x9a\xd1\x21\x0c\
+\x0d\xf5\xe3\xd2\xf8\x14\x66\xa3\xdd\x6e\x86\xe0\xb8\xdd\x2c\x00\
+\x78\x33\x37\xb6\xb9\x76\x39\x80\xd5\x8a\x01\x2a\x91\x51\x79\x09\
+\xa7\xe6\x8a\xce\x56\x4d\x84\x67\x15\x8b\x0f\x58\x4c\xfa\xd0\x4a\
+\x42\x83\x95\xed\x34\x15\x6e\x9e\x58\x0c\x8b\x7c\xd0\x6a\x8d\xfa\
+\xc7\x02\x92\x3f\x69\x4a\x2f\x46\x40\x44\xd4\x91\xd4\x07\x44\x55\
+\x59\x54\x5b\xa4\x9f\xa2\xde\x51\x3c\xc4\x07\x28\x27\x8f\x1a\x79\
+\x2d\x8b\x62\x6a\xae\x84\x9a\x45\xd1\x9b\x6b\x47\x26\x1d\x3e\x22\
+\x38\xbc\x6a\x00\x6b\xd6\x8c\x60\x66\x26\x8f\xa9\xa9\x59\x44\x48\
+\x0e\xce\x88\x60\x07\x9c\x0d\x24\x4a\xef\x76\xb0\x5a\xb1\x40\x05\
+\x37\x31\x67\x4c\xf7\x81\xa6\xd9\x80\x15\x9c\xc5\x05\x2d\xa9\x9c\
+\xba\x18\x8e\xba\xdd\xea\xfa\x65\x14\x88\xb6\x7d\xc5\x15\x51\xbd\
+\x13\x98\x57\x84\x11\x3e\x96\xaf\x8d\x10\x2c\xaa\x7d\xb2\x7d\x8b\
+\x89\xa6\x7c\x8e\xa6\x03\x94\x90\x99\x2d\x9f\xba\xe5\xcc\x2e\x94\
+\x51\x2c\x57\xd1\xeb\xed\x76\xa3\x99\x79\x9f\x4a\x11\x0c\xf4\xe5\
+\xb0\x7e\x6c\x0d\x8a\xc5\x32\x2e\x8e\x1b\xed\x76\xb3\x05\xce\x42\
+\x7c\x7b\x72\x63\x9b\xf3\xef\x66\xbb\xd5\x0a\x03\x2a\x2a\x25\x11\
+\x47\xfd\x00\x48\xec\x0a\xa8\x13\xb0\x98\x40\x15\xec\xb4\x0a\xb4\
+\x4c\xa2\x89\xa6\x01\x44\xca\x48\x22\xe2\x43\x6a\x20\xba\x3f\x98\
+\xd9\xdf\x4d\x27\x81\x42\x66\x26\x7a\xee\x44\xb4\x69\x24\x10\x20\
+\xf2\x44\xcd\xb0\xb6\x34\x03\xa0\x82\x9f\x20\xc1\x5c\xa1\x8a\x7c\
+\xa1\x82\x9e\xae\x76\x74\xb6\x67\x84\xf2\xd8\xde\x11\xf4\xe4\x3a\
+\x71\xc5\xfa\x51\x80\x02\x17\x2e\x4e\xa2\x5a\x0b\x5d\xdb\x2a\x0d\
+\x67\xa7\x9b\x9b\x00\xbc\x01\xe0\xe2\xbb\x15\xac\x56\x84\x0b\x8d\
+\x4c\xff\x05\x87\x05\xaa\xf8\xd2\x52\xb5\xab\x05\x97\xcc\x5b\x0f\
+\x89\x59\xb8\x4d\x74\xd6\xd1\xb9\x5a\x78\xee\x16\x61\xf6\x90\xe0\
+\x4f\xe3\x42\x22\xba\x8f\x28\xbe\xf4\xca\x68\x02\x0d\xf2\x42\xb0\
+\xee\xcb\xea\x1f\x55\x1a\xb1\x35\x0c\x88\x46\xfd\x51\x4d\x27\xd4\
+\x9d\xa1\x42\x30\x9f\x92\x67\x64\xdc\x87\x86\x8a\x39\xa0\xe8\x04\
+\x05\xeb\x6a\xe4\x97\x29\x7c\xb2\xc4\xd6\x89\xcf\x80\x78\xff\x82\
+\x7c\x34\x00\x53\x11\xa4\x94\xcf\x48\x50\x0e\xe0\xd8\x52\xf7\x1e\
+\x1d\xc7\xc5\xe9\x42\x68\xb7\x08\x80\x55\xfd\x3d\xf8\xc4\x4f\xbc\
+\x17\xf7\xdd\xfb\x3e\xf4\xf5\xe6\x4c\xdc\x6e\x3e\x09\xe0\xfb\x00\
+\x3e\x0a\xbc\x3b\xdd\x6e\x56\x04\xa3\xba\xfd\x96\x4d\x18\xec\x53\
+\xcd\x4c\x27\xc1\xcc\x74\x40\xc1\x7e\xd8\x30\x33\x75\xa8\x3e\x96\
+\x15\x9c\x99\x98\x97\xe4\x34\x66\xaa\x28\x53\x8b\xa6\x1d\x81\x0a\
+\xa6\x6d\x06\x31\x24\x54\xd1\xbd\x30\xfe\xd3\xd8\xc0\xf9\x20\x95\
+\x71\x9a\x49\x28\xb1\x1f\x01\x87\x59\xdb\x96\xa8\x82\xf9\x9d\x66\
+\xd3\x1b\x8c\xe2\x71\x6d\xd1\xa9\x8b\xdc\x47\x32\xdc\xa0\x5f\xae\
+\x5a\x98\xcc\x17\x91\x4e\xa7\xd0\xd3\xed\xae\x6d\xa5\x99\x67\x91\
+\x6d\xcf\x60\xcd\xe8\x08\x06\x06\x7a\x71\xf1\xd2\xa4\x89\xdb\xcd\
+\x1a\x00\x1f\x01\x30\x0e\xe0\x60\x6e\x6c\xb3\xfd\x6e\x62\x56\x2b\
+\x06\xa8\x24\x63\xba\x9b\x72\x32\x5f\xc2\x64\xbe\x08\x0e\x8a\x5a\
+\x00\x58\x52\x79\x61\x75\x19\xaa\x87\xe1\xed\x60\x20\x49\x65\x17\
+\x17\x3b\xab\x0e\x82\xce\x55\x27\xb4\x4f\x7e\x8c\xa1\xcd\x29\x4c\
+\xa8\x7a\x92\x82\xf4\x7e\x12\xf8\x8c\x88\x68\xd3\x32\xf5\x87\xcf\
+\x20\x65\xce\x34\xc6\x2d\xb9\x99\x42\x9d\xf5\x01\x94\x58\x16\x15\
+\x02\xab\x16\xc5\x54\xde\x71\xbb\xe9\xeb\xce\xf2\x6e\x37\x42\x39\
+\x6d\x99\x14\x56\x0f\x0f\x62\xf5\xc8\x10\xa6\xa6\x66\x31\x3d\x3b\
+\x17\x75\xb5\xfb\xe1\x80\x55\x0d\x8e\xdb\xcd\xbb\x66\x21\xbe\x15\
+\x04\x54\x39\x65\xfe\xa9\xb9\x62\xc0\xa8\xc4\x51\x37\x25\x88\x40\
+\x09\x5a\xe1\xf6\xa6\xc5\x05\x2d\x36\xbd\x0a\x68\x88\x22\x40\xdd\
+\x47\xd3\x41\x03\xc7\x28\x4e\xea\x01\x22\x00\x3a\xd4\xf0\x99\x94\
+\xa2\x58\x65\x0d\x94\x35\xd0\xeb\x8b\xa7\xde\x3c\x00\x29\x8d\x8c\
+\x10\x94\xb9\x46\x3a\xc3\xbb\x6e\xaa\x81\xb2\x09\x1a\x3b\x94\x5c\
+\x0e\x1f\xe8\x9d\x13\x00\xb6\x4d\x31\x3d\x57\x46\xa9\x6a\xa1\x2f\
+\x97\x45\x26\x93\x82\xce\xbf\x31\x4d\x08\x06\x07\x7a\x31\xb6\x76\
+\x14\xf3\xf3\x05\x8c\x4f\x4e\xc3\xb6\x43\x9f\xa5\x4e\x38\x73\xad\
+\x06\xe0\x18\xd9\x0b\xef\x06\xbb\xd5\xca\x07\xaa\xbc\x6a\x66\x7a\
+\xfd\x80\x05\x34\x81\x65\x09\x11\x61\x70\x11\x5e\x97\x00\x49\x4c\
+\x87\x88\xa2\x53\x41\xaf\x09\x10\xa3\xad\x04\x4a\x5c\x33\x10\xc2\
+\x95\x40\x25\x54\x52\x03\x0e\x35\x2d\x5e\x4a\xeb\x32\x2e\xe5\x8c\
+\x50\x80\xe1\x4f\x7c\xd5\x94\x68\x08\x55\x10\xde\x2c\x80\xf2\x63\
+\x55\x1b\x56\x30\x65\x50\x38\x6e\x37\x73\xc5\x0a\x7a\xbb\xda\xd1\
+\xd1\x9e\x56\x14\xe2\x8e\x08\x12\x82\xde\x9e\x6e\xac\x5f\x3f\x0a\
+\xab\x56\xc3\xc5\x4b\x93\xa8\x85\xbb\xdd\xb4\x01\xd8\x0c\xe0\x1a\
+\x00\xaf\x01\x98\x5e\xe9\x60\xb5\x22\x8c\xe9\x80\xd2\x3c\xcb\xc7\
+\x29\x2c\xe0\x7e\x1e\xc9\xd8\xc9\x17\xaa\x5b\xe3\x48\xaa\x47\x61\
+\x78\xd5\x9a\x8f\x99\x40\x7e\x8d\x26\x3e\x07\x6f\x74\x07\xd7\x06\
+\xc9\xf0\xcc\x74\x88\x8a\x4f\x3d\x53\x3e\x65\x2b\x15\x9a\x24\x89\
+\x67\x60\x27\x2a\x73\xb8\x0c\x3e\x94\xfb\xd3\x9a\xce\xf9\x0a\x84\
+\xca\xd5\x6c\x4a\x1c\x6a\x70\xd3\x52\xbe\x2c\x0a\xc2\xd9\xa7\xf8\
+\xeb\xe2\x75\x28\xb8\xdf\x8a\x42\xdc\xfc\x7c\x22\xc9\xd7\x50\xfb\
+\xec\xe8\x9f\x93\x20\x0f\x55\x3e\x0f\x62\x18\xa5\x14\x17\xa7\x0b\
+\xd8\x7b\x74\x1c\x13\xcc\xda\x56\xaa\xb4\x29\x02\x8c\x0c\xf6\xe1\
+\x53\xf7\xbe\x1f\xf7\xde\x73\x37\x72\xdd\x9d\x51\x46\xf6\x34\x80\
+\x2f\xc0\x59\xdb\xea\x6e\x00\x58\xc9\x46\xf6\x15\x03\x54\x9e\x48\
+\x37\x9b\x3d\x96\x00\xa6\x3e\xc0\x12\x77\x2d\x31\x05\x2d\xb6\x7d\
+\xaa\x41\xa9\x50\xe0\x22\xe2\xe6\x95\x54\x7a\xc1\x04\x92\xc5\xab\
+\x56\x6c\xba\xb0\x70\xf6\x44\x19\x20\xb3\xa1\x68\x30\x12\x53\x29\
+\x3a\x1b\x52\x0e\x37\xf2\xc7\xd4\x4d\x01\xcd\x64\x78\x22\x00\x91\
+\x57\x8e\x77\x2d\xc1\xa8\xc3\x54\x36\xe6\xbb\x05\x53\x2e\x2f\xfc\
+\x4c\xf2\xb3\xc2\xb7\x3c\x0c\xa0\x3c\x90\x12\x23\x45\x80\xf2\x9e\
+\x1b\x02\x60\x66\xae\x8c\xbd\x47\xc7\x71\x76\x7c\x5e\xf5\x7d\xe1\
+\xee\x7f\x5f\xae\x0b\x1f\xfe\xc0\x9d\xb8\xff\x93\x1f\xc2\xd0\x60\
+\x9f\xc9\x6e\x37\x1f\x82\x33\x22\xf8\x59\x00\xa9\x95\x0a\x56\x2b\
+\x46\xf5\x1b\xec\xcf\x39\x77\x50\x48\x31\x35\xeb\x1a\xd3\x15\x23\
+\x5d\xa1\x06\x6a\xe6\x20\xdc\xde\xa4\x50\xa1\x22\x54\x24\x1d\x25\
+\xd7\xd5\x43\x84\x42\x09\xf3\x1f\x51\xa6\x97\x51\x48\x5e\x62\x39\
+\xac\x73\xea\x81\x86\x88\x5e\xb9\xbf\x54\x93\xc9\x33\x72\xeb\x8d\
+\xef\x24\xaa\x78\x55\xa3\x42\x46\x03\xc3\xfa\x40\x19\x14\x23\xa2\
+\xf1\x5d\x37\x10\xc1\x82\x0c\x91\xeb\x53\xaa\x78\x4c\x84\x4e\xcd\
+\x0b\x92\x29\x8c\xf8\x6e\x5d\x95\x9a\x8d\xc9\xd9\xa2\x03\x46\xdd\
+\x59\xa4\x15\xcf\x50\xe0\x76\x93\xc2\xea\x91\x55\x18\x1e\x1a\xc0\
+\xf8\xc4\x14\x66\xf3\x91\x6e\x37\xc3\x70\x8c\xec\x79\x38\xbb\xdd\
+\xac\xb8\x85\xf8\x56\x16\x50\xb1\xc2\x8c\xfa\x05\xc6\x74\xc4\x02\
+\x2c\xee\x28\xc2\x8e\xe5\x1c\x36\x0f\xb4\xf8\xbc\xf2\xda\xed\x5a\
+\xdf\x45\xa2\x68\x07\xd7\x76\x12\x0b\x84\xf4\x20\xad\xb3\x35\x45\
+\x18\xdb\x15\x18\xe5\x60\x97\xe2\xc5\x93\x0e\x82\x13\x95\xad\xc9\
+\x07\x68\xaa\x06\x85\x40\x3d\x55\xd5\x23\xe8\x8b\xde\x01\x65\x6a\
+\xd4\xdc\xfc\x46\x01\xca\x49\xaa\x01\x29\xa6\x2d\x96\x4d\x31\x99\
+\x2f\xa1\x5a\xb3\xd1\xef\x1a\xd9\xf9\xaa\x82\x32\x32\xe9\x14\x56\
+\x0d\xf6\x61\xed\xe8\x08\x66\xf3\xf3\x98\x9c\x9e\x45\x84\xf4\xc0\
+\x01\xab\x36\x00\xaf\xe7\xc6\x36\x97\x57\x92\xdd\x6a\x65\x00\xd5\
+\xcd\x9b\x30\xd8\xa7\x36\xa6\x3b\xd3\x13\x82\xed\xc4\x59\xc0\x82\
+\xa2\xc0\xe6\xb0\x2c\x75\x0a\xb3\x39\x54\x61\xf5\x11\x65\xfd\xe1\
+\x9b\x54\xe8\x0c\xee\x41\xa8\xce\x50\x2e\x19\xf9\xe5\x85\xdf\xeb\
+\x10\xaa\x3c\x0c\xbf\x28\xe2\x09\x89\x28\x8a\x1d\xa1\x84\x30\xa2\
+\xa7\xa8\x97\x79\xc9\x25\xe3\x39\x82\x6b\x4f\x59\x1f\x43\x05\x52\
+\x86\x02\x94\x1b\x60\x0c\x50\x7e\x7a\x3e\xde\xb6\x1d\x55\xb0\x50\
+\xaa\xa1\x2f\x97\x45\x7b\x26\x2d\x81\x94\x27\xe9\x14\x41\x5f\x6f\
+\x0e\x63\xeb\x46\x51\x2e\x57\x70\x69\x7c\x1a\x56\xb8\xdb\x4d\x16\
+\xc0\xfb\xe0\x2c\x75\xbc\x07\xc0\xdc\x4a\x01\xab\x15\x63\xa3\x0a\
+\x6c\x05\xca\x08\xf9\x94\xb1\x17\xd4\x65\xc7\x0a\xb3\x65\x29\x0c\
+\xf0\x6c\xd9\x26\x4b\xe6\xca\xef\x92\x6c\xcc\x75\x44\x66\x08\xce\
+\x8b\x29\x1b\x6f\x28\x07\x5e\x81\xa1\x46\x3d\x1b\xdd\x35\x96\x13\
+\xef\x4f\x7f\xd5\xcd\x11\x27\x30\xc0\xfb\x65\x2b\x40\x8f\x2b\x51\
+\x51\x7c\x60\x2f\x22\x5a\x10\xf2\xaf\xa2\x50\x98\x38\x75\x41\xb2\
+\x43\x71\xba\x1d\x61\x8b\x54\x7e\x80\xf8\xba\xd5\xcf\x54\x94\x1d\
+\x4a\xea\x2a\x63\x13\x55\x5d\x14\x0a\xe0\xec\xc4\x3c\x5e\x3b\x7c\
+\x09\x53\xf9\x92\xf2\xfa\x7b\xc9\x53\x29\x82\xd1\xe1\x41\x7c\xfa\
+\x13\x1f\xc4\x3d\x1f\xb8\x03\x9d\x1d\xd9\x28\xbb\x55\x3b\x80\x5f\
+\x06\xf0\xd7\x70\x5c\x6f\x56\x84\x91\x7d\xc5\x00\x95\x27\x2a\x80\
+\x70\x23\x9a\x04\x58\x71\x41\x8b\x35\xc1\xcb\x23\x42\x72\x3d\xc4\
+\x3f\xa7\x6e\x3a\x0e\x25\xfc\x8a\x78\x66\x41\xb9\xb7\x49\x67\x03\
+\xd3\x4c\x09\xa0\xd2\x21\xb8\x82\xb9\xed\xd5\xd9\x2b\xa0\x99\x66\
+\xa0\xb8\x8e\x5a\x6f\x1a\xbf\xd1\xc1\x9f\x34\x37\x8c\xeb\xbe\x68\
+\x8c\x57\x3f\x05\x7e\x84\x00\xd0\x44\xe6\x89\x6e\x31\x2a\xaa\x2a\
+\xd4\x1d\x24\x96\xeb\x01\x00\x42\xd4\xcf\x00\x93\xca\x14\xa0\xc4\
+\x51\x5b\xbe\x0c\xe7\x77\x72\xb6\x88\xd7\x8f\x5c\xc2\x85\xa9\x05\
+\xa9\x3c\xf6\x24\x45\x80\xc1\xbe\x1c\x3e\xfa\xa1\xbb\x70\xdf\xbd\
+\xef\x43\x7f\xb4\xdb\x4d\x0a\xc0\xa7\xe1\x18\xd9\xef\x01\x96\xbf\
+\xdb\xcd\x8a\x03\x2a\x4f\x38\x78\xa0\xf2\xc3\x10\xa4\x33\x03\xac\
+\x30\x96\x65\x0a\x5a\xec\x43\x28\x01\x17\x00\xbd\x65\x5b\xe0\x8b\
+\x04\xf2\x39\x37\x1a\x15\x80\x2a\x5b\x01\x5f\x6f\x3c\x26\xc4\x19\
+\x94\xa8\xa3\x06\x89\x20\xa4\xc4\x21\x12\xf1\xa7\xb9\x67\xf2\x0d\
+\xe2\x3a\xaf\x8e\x82\xd7\x3c\xc1\x48\x2f\xaa\x88\x0c\x53\xf2\xda\
+\x28\x0e\xfa\xf9\xf7\x58\x7c\x18\x98\x26\x48\x93\x45\x19\x7a\x26\
+\x3e\x07\xcd\x02\x28\xca\x64\x20\x04\x98\x2b\x54\xb0\xf7\xe8\x38\
+\x4e\x9c\xcf\xc3\x56\x8d\x28\x32\x57\x2d\xd7\xdd\x81\xf7\x6e\xbe\
+\x05\x9f\xfb\xf4\x3d\x58\x33\xb2\xca\x64\x44\x70\x33\x80\xef\x02\
+\xf8\x19\x00\x99\xe5\x0c\x56\x2b\xc3\x46\xa5\x32\xa6\xbb\xe2\xb9\
+\xd0\x68\x7d\xf4\x42\x87\xe8\x4d\xed\x58\x7c\x2a\x9d\xb1\x5a\x3f\
+\xaa\xc7\xe4\xf5\xdf\x2f\xde\xe5\xc7\x37\x84\xab\x6c\x49\xda\x55\
+\x12\x74\xbb\x2b\x2b\x98\x8b\xe2\xc2\x68\x67\xa2\x1b\x80\x8e\x56\
+\x42\x8c\x45\x11\x97\x95\x53\x77\x41\xd5\xed\x17\x27\x7b\x52\xd5\
+\x19\x4b\x9e\x54\x2a\x16\x93\x88\x1f\xcb\xe4\x8d\xf1\x4e\x7e\x55\
+\xab\x83\xfb\x14\x65\x83\x72\x7e\xe4\x46\xcb\xb6\x2c\x45\x6f\xdc\
+\xd3\x9a\x45\x31\x91\x2f\xc1\xb2\xa9\x63\x64\x4f\xc9\xba\xbc\x77\
+\xda\x96\x49\x63\x68\x68\x00\xa3\xab\x57\x61\x7a\x66\x16\xd3\x33\
+\x91\x6e\x37\x03\x70\x8c\xec\x15\x00\x6f\xe4\xc6\x36\x57\x97\xa3\
+\xdd\x6a\x65\x01\x15\x6f\x4c\x00\xe0\x00\xd5\x04\x6b\x4c\x37\xd8\
+\xdc\x41\x3a\xd5\x6d\xb5\x85\x06\x41\x2b\x06\x20\x49\xed\x66\x46\
+\xde\xd4\x23\x82\x44\x0d\x92\xaa\xa5\x97\x25\xb0\x51\x4f\x7b\xf0\
+\xff\x54\x1f\x62\x53\xa0\x52\x18\xc6\x95\x33\xd6\x69\x38\xfa\x51\
+\x42\x35\xe1\x80\x6e\xf9\x16\x2a\x18\xb4\x02\x36\xc5\x1b\xde\xd9\
+\xc2\x7c\xd6\xa4\xb1\x26\x70\xc8\x48\x82\x84\xba\x75\xa5\xd8\x03\
+\xaa\x41\x13\x15\x89\x63\x43\x55\xae\x38\x36\x75\xf6\x11\x2c\x55\
+\x2c\xf4\x77\x67\xd1\xde\x96\x52\x34\xdb\x39\x4b\x13\x82\xfe\xbe\
+\x5e\xac\x5b\xbb\x1a\x85\x42\xd1\x71\xbb\xa1\xa1\xb7\xb0\x0b\xce\
+\x7c\xab\x5e\x38\x46\xf6\xe2\x72\x03\xab\x15\xa3\xfa\x51\x2a\xdb\
+\x8e\x00\xd5\x97\x29\x64\xe9\x96\x28\xb5\x30\xa6\x6a\x28\xda\xb4\
+\x58\x1b\x8d\xa4\xea\x09\xea\x04\xc7\x1e\x94\x43\xea\xc2\x68\x13\
+\xc3\x04\x74\xd7\xc1\xb7\xb1\x30\xaa\xab\x7c\x11\xc0\xb4\x9b\x6d\
+\xb0\x42\xa7\x8d\x02\x27\xaa\xf9\x33\xc9\xe4\xed\x00\x4d\xd4\xb6\
+\x33\xad\x29\xce\xed\xa8\xd2\xe6\x04\x28\x47\x2e\x79\xa6\x06\x29\
+\x3c\xd0\xe8\x44\xfb\x27\x4f\x7d\x94\x9a\x14\x61\xee\xa7\x4a\xc5\
+\xe3\xc2\xf5\x6a\x1e\x1f\xc6\xb6\x2f\xc8\x6c\xdb\x14\xa7\x2e\xe6\
+\xf1\xfa\xd1\x4b\x98\x99\xaf\x28\x2e\x4c\xf0\x93\x49\x13\xac\x1b\
+\x1d\xc2\xfd\x9f\xfa\x30\xde\x7f\xd7\x2d\xc8\xb6\x65\xa2\x54\xc1\
+\x2e\x00\xff\x12\xc0\x5f\x02\xb8\x2a\xea\x2e\x2e\xb6\xac\x18\x46\
+\x35\xa0\x98\x9e\x40\xe0\x6c\xaf\x3d\x31\x5b\x12\x09\x06\x9f\xce\
+\x50\x2d\xe4\xe3\x34\xac\x49\x8e\x96\x4a\x10\xb7\x8e\x77\x43\xb9\
+\xc2\x88\xc4\xaa\x54\x2c\x8b\x89\x13\x1a\x22\x4e\x67\x60\x23\x08\
+\x9f\x42\xd1\x39\xef\x44\x63\xe0\xae\x47\x58\xb2\x24\x45\xea\x5f\
+\x10\x35\x33\x61\x19\x97\x00\x38\x9a\xa9\x0c\xe2\x77\x44\x26\x2a\
+\xee\x6b\xcf\x12\x28\x69\xb5\x06\xc2\xa8\x8b\x41\xf9\xbc\xb6\x28\
+\x74\x90\xb2\x75\xd6\xc7\xa0\xc4\xeb\xc0\x59\x36\x15\x65\xcc\x17\
+\xab\x98\x9a\x2b\xa1\xbb\xb3\x0d\xdd\x1d\x19\x29\x81\xaf\x78\x10\
+\x82\xae\x8e\x2c\xc6\xd6\x8d\x22\x9b\x6d\xc3\x85\x0b\x13\x28\x47\
+\xef\x76\x73\x13\x80\xdb\xe1\x4c\x0c\x3d\xbf\x5c\x98\xd5\x8a\x61\
+\x54\x2a\x61\xbe\x45\xd2\x17\x8b\x4b\xa7\xf3\xcf\x53\xb0\x80\x20\
+\x2e\xa0\x52\x2a\xb2\xa0\x1f\xd5\x33\xd1\x9b\x78\x83\xac\x17\x24\
+\xda\x94\xd9\xd7\x88\x0a\x2f\xa8\xef\xf3\x26\x96\xcc\x3a\xee\x89\
+\xed\xf6\x3b\x12\x03\x94\xa2\x8c\xe5\x2c\x96\x78\x64\x29\xa2\x10\
+\x76\x0a\x83\xae\x4a\x48\xfd\xd5\x74\x86\x8a\x60\xc3\xdf\x2d\xa9\
+\xab\xdc\x4d\x14\xd8\x10\x5c\x90\x64\xf1\x9f\x6d\x8c\x12\x87\x02\
+\xbb\x18\x61\x23\xa8\xfa\x99\x11\x43\xd9\xe7\x87\x7b\x9e\x35\xcf\
+\xb4\x97\x76\x66\xae\x84\xd7\x0e\x5f\xc4\xe9\x8b\x73\xa0\xb6\xba\
+\x7b\x80\xf3\xb1\xeb\xcd\x75\xe2\x03\xef\xbd\x1d\xf7\x7f\xf2\x43\
+\x18\x5e\x15\xe9\x76\x43\xe0\xd8\xac\xbe\x0f\xe0\x3e\x2c\x13\xb7\
+\x9b\x15\xc1\xa8\x6e\xbb\x25\x6c\xc2\x67\xd1\xb7\x51\xc9\xac\x45\
+\x2f\x71\x6c\x59\x72\xbc\xce\x08\xcf\x8c\x44\xb1\x6c\x88\x6b\x0f\
+\xe1\xdb\xc7\xda\xb1\xc4\x76\x0b\xf5\x10\xbe\x60\x08\xc5\xf1\x61\
+\x1a\xda\x18\x3e\x9f\x53\x6f\xab\x0b\x93\x48\x6d\x4f\x55\x4b\xd8\
+\x46\xa5\x1a\xd6\xc1\xe3\x45\x70\xb1\x28\x0b\x94\x22\x00\x72\x2a\
+\xb3\xca\x48\xa9\xe8\x2d\xf3\x01\x91\x8d\xdc\x94\x07\x3f\xc2\xe6\
+\x51\xb0\x3b\xae\xab\x6a\x3b\x54\x10\xc3\xd3\x27\x35\x13\x73\x62\
+\x08\x01\xaa\x35\x1b\xe3\xb3\x45\x10\x00\x7d\xb9\x2c\x52\x29\xf5\
+\x9d\x23\xc4\x31\xb2\x0f\x0f\xaf\xc2\xc8\xf0\x20\x26\x27\xa7\x31\
+\x93\x9f\x8f\x72\xbb\x19\x81\x03\x58\xd3\x00\x0e\x2c\xb5\xdb\xcd\
+\x8a\x00\x2a\x4f\xf5\x53\x5d\xd6\xc9\xd9\x22\x26\x67\xf9\x65\x5e\
+\xf4\x4b\xa0\xc8\x12\xb9\x74\x4b\x1c\xd0\x62\x8e\x7d\x63\x38\x11\
+\x81\x86\x69\xa1\x46\xb5\x13\x31\x46\x0b\xc0\x44\x63\x14\x87\x01\
+\xe4\xf8\xed\x90\x55\x2c\x4d\x52\x50\xd6\xfc\xc3\xfc\x11\x4d\x38\
+\x2f\xdc\xab\x18\x59\x17\x7b\x40\xc3\x52\x53\xdd\x82\x89\x7a\x1b\
+\x96\x00\x3b\xca\xe3\xa0\x48\xb1\xdd\x44\x62\x65\xbc\x4a\xca\x8e\
+\x08\xf2\x7d\xe7\xc3\xa4\x18\x03\x80\x72\x5b\xc9\x84\x59\xb6\x33\
+\x22\x58\xa9\xda\xe8\xef\xe9\x40\x5b\x46\x56\x92\xbc\xf4\x99\x74\
+\x0a\x03\x03\x7d\x58\x3b\x3a\x8c\xb9\xf9\x79\x4c\x4e\xe5\x23\xee\
+\x06\x7a\xe1\x80\x55\x0a\xc0\xde\xdc\xd8\xe6\xf2\x52\x81\xd5\x8a\
+\x02\x2a\x9f\x65\x33\xa9\x26\x67\x9d\xed\xb2\x74\x1f\xc7\x46\x58\
+\x96\x94\x5e\x03\x5a\x84\x47\x49\x88\x7e\x7a\xec\xfe\x7a\x84\xff\
+\x4f\x00\x28\xa2\x68\xa7\xa0\x8a\x08\x75\x28\xd3\x33\x94\x4a\xab\
+\x5c\x85\xc6\x0b\xc9\x98\x3a\xa2\xa7\xe6\xe8\x0b\x93\x76\xac\x11\
+\x2a\xd7\x13\xa9\xc0\xf8\x45\xe5\x62\x79\xa6\x44\x04\xc0\xe1\x5e\
+\x7e\x2a\xa1\x80\x4f\x88\x98\x1b\xc1\x32\x34\xdd\xa8\x20\x7f\xca\
+\x77\x24\x36\x40\x29\x9a\x26\xe7\xa1\x52\x98\xcf\xfa\x6c\x60\x7a\
+\xae\x8c\xf9\x52\x15\xfd\xb9\xac\xbf\xa5\xbc\xaa\xce\x54\x0a\xe8\
+\xe9\xe9\xc6\xd8\xba\x35\xa8\x55\xca\xb8\x38\x3e\x0d\xcb\x0a\x75\
+\xbb\xe9\x00\xf0\x7e\x38\x8e\xcd\x7b\x72\x63\x9b\xe7\x97\x02\xac\
+\x56\x16\x50\x29\x86\xa4\x26\xf2\x45\xdf\x98\x0e\x70\x1f\x36\x4e\
+\xe2\xb0\x2c\xc0\x1c\xb4\x08\x0b\x24\x02\x5b\x52\xa9\x70\x22\xf3\
+\xe2\x1a\x2c\xb1\x2f\x05\x70\xb1\xea\x25\xd7\x8e\x90\x1e\x91\x90\
+\xbe\x9a\x32\x30\x36\x7d\x5c\xdd\x10\xb2\xb1\x9b\x2f\x4c\xa1\x92\
+\xa9\xf1\x41\x28\x94\x86\x06\xc9\x4f\x8b\x44\xaf\x14\x40\xc4\xe8\
+\x92\xc2\xbd\x51\x5c\x36\xbf\x14\x25\xca\x4a\xcc\x4a\x0d\x50\x62\
+\x5b\xa3\x00\xca\x0f\xf5\xf3\x3a\x07\xf9\x42\x05\x33\xf3\x65\xf4\
+\x74\x65\xd1\xc5\xec\x76\x23\xd6\x99\x22\x04\x5d\x9d\x1d\x18\x5b\
+\x37\x8a\x4c\x8a\xe0\xc2\xa5\x49\x54\xab\xa1\xbb\xdd\x64\xe0\xbc\
+\xa3\xd7\xc3\x71\x68\x9e\x58\x6c\x23\xfb\x0a\x03\x2a\x59\x26\x67\
+\x1d\xa7\x64\xa2\x7b\x90\x1a\x64\x59\x00\x42\x27\x5c\x7a\xc7\x7e\
+\x12\x46\x1d\x93\x56\xe9\x64\x99\x14\x91\xc3\xd8\x70\xa6\x95\x21\
+\x2a\x21\x7f\x22\xab\x81\x44\x45\x5c\x18\x7c\x90\x75\xb5\x3a\x30\
+\x48\x2c\x94\x0b\xa5\xda\xa4\xd4\x08\x8c\x58\xab\x8f\xcc\xa6\xc2\
+\xec\x4e\x1e\x73\x63\xea\x60\x75\x34\x0e\x3c\xf8\x8b\xc4\xaa\x6e\
+\xbe\x5b\x11\x05\x6c\x4a\x51\xb3\x6c\x54\x2d\x1b\x55\x8b\xa2\x56\
+\x73\x8e\xfd\xb0\x9a\x0d\xcb\x72\x56\x41\xb0\xd9\xc1\x16\x78\x7f\
+\x04\x84\x1d\x69\x14\x40\x2a\x4a\xcd\xe3\x9a\xad\x18\x65\x24\x00\
+\x16\x4a\x35\x4c\xce\x16\xd1\x99\x75\xb6\x94\xd7\x5d\x61\x02\x20\
+\xdb\xde\x8e\x35\x6b\x56\xa3\xa7\xbb\x03\x17\x2e\x4e\xa0\x58\xaa\
+\x44\x8d\x08\x6e\x82\xb3\x08\xdf\x21\x00\xa7\x16\x13\xac\x32\x8d\
+\x17\xb1\x48\x42\xf5\x11\xce\x8a\x96\x3c\x00\xf8\x43\xb4\xf2\x67\
+\xd5\xbf\xc1\x84\x1d\xf5\x09\x01\x2d\x76\x94\x84\x10\x45\x42\xd7\
+\x6c\x41\xfc\xd2\x1d\x90\xa1\xfe\x6b\xc4\xbe\x08\xd4\xb7\x93\x10\
+\x78\xf9\xfc\xd6\xfa\xe1\x7e\x58\x08\x02\x53\x45\xb4\xd8\x11\x2a\
+\x66\x13\x6d\x2c\x62\xf3\x42\x45\xa4\xa3\xc2\x38\x3d\x55\xe7\x50\
+\xde\x3a\xde\x02\xae\x88\x17\xec\x42\x80\x73\x33\xb5\xc8\xe7\xde\
+\x57\x91\xa1\x70\xf7\x9f\x79\xf1\x7d\x30\x72\x46\x84\x6b\x2e\xf0\
+\x58\x96\x8d\x9a\x6d\xa3\x5a\xa3\xa8\xd6\x6c\xd4\x2c\xcb\x01\x1e\
+\xef\xcf\x9f\xa7\xc7\x02\x0c\xaf\xbe\x11\xe2\x3d\x01\x81\xfd\x8e\
+\x10\x82\x4c\x2a\x85\x4c\x9a\x20\x9d\x4e\x21\x93\x22\x48\xa5\x53\
+\x48\xa7\x08\xd2\x29\x82\x14\x21\x0c\x48\xe8\xd5\x3c\x91\x45\x71\
+\x97\xcc\xc5\xfe\xb9\x42\x15\xaf\x1d\xb9\x84\x1b\x2a\x35\x5c\x39\
+\xda\xcb\x1b\xd9\x99\xeb\x43\x08\xd0\xdd\x95\xc5\x7b\xee\xb8\x09\
+\xb9\x5c\x37\x9e\xde\xbe\x1b\xe7\x2e\x4c\x46\x19\xd9\xef\x86\xe3\
+\x76\xf3\x5b\x00\x1e\x1c\xdd\xf2\x80\x75\x61\xf7\x77\xd0\x6a\x59\
+\x31\x40\x25\xbf\x70\x4c\x38\x85\x8f\x48\x54\x03\x58\x00\x03\x5a\
+\x02\x60\x39\x71\xe6\xa0\x45\x88\xe3\x07\x47\x98\x3a\x89\xf8\xde\
+\x11\x84\x34\x9a\x06\x0f\x43\x30\xe9\x85\x3b\xf7\x6c\x26\x6c\x9b\
+\xfd\x6e\x12\xf9\xc1\x63\xc1\x4f\x7f\xc1\xf4\x7a\x6f\xe4\xa4\x0a\
+\xd1\x40\x15\x42\x83\x8c\xcc\x58\x2c\x3d\x14\x55\x1d\x45\x01\xd4\
+\xbf\x31\x92\xf2\xc4\x37\xd1\x4f\x22\xb3\x0d\x9b\x3a\x93\x26\xab\
+\x35\x1b\x95\x9a\x8d\x4a\xcd\x42\xb9\x6a\xa1\x52\xb5\x1c\x36\xe4\
+\x03\x92\xad\x1c\xf5\x13\xfd\x02\x95\xec\xc6\x6f\xbe\xcd\x4d\x3b\
+\x10\xa9\x91\x07\x5e\x29\x42\x90\x4a\x11\x64\xd2\x29\xb4\x67\x52\
+\x68\xcb\xa4\x90\x49\x07\x7f\x84\xf0\xcf\x96\x0e\xa0\xc4\xce\x96\
+\x2a\x35\xbc\x79\x7c\x02\x85\x72\x0d\x1b\xd7\x0f\x20\xeb\xee\xd2\
+\xac\xba\x66\x1d\xd9\x36\xdc\x70\xfd\xd5\xe8\xee\xea\xc4\xd3\xdb\
+\x76\xe3\xe8\x89\xb3\x51\x77\xef\x5a\x00\xff\x1e\xc0\x5a\x00\x7f\
+\x33\xba\xe5\x81\x62\xab\xc1\x6a\xc5\xaa\x7e\x5e\xc2\x09\xc5\xa8\
+\x9f\x98\x4a\xb7\x57\x27\x7f\xc0\xc6\xc9\x2f\x34\x6f\xae\x60\xcb\
+\x8d\x32\x9c\xab\x5d\x68\xb4\x69\xc4\x3a\xa4\x36\x46\xfb\x03\x72\
+\xda\x8f\xaa\xdf\x3a\xf0\x62\x42\x54\x4c\xc8\x54\x2d\x34\x35\x63\
+\x51\x63\xb0\xa3\xfa\x42\x59\x77\x1a\xf1\xfa\xb9\xc0\x54\xae\xda\
+\x98\x2f\x56\x31\xb3\x50\xc1\x64\xbe\x88\xe9\xb9\x32\x66\x17\x2a\
+\x98\x2f\x54\x51\xac\x58\xa8\xd6\x2c\x58\x16\x33\xd7\x8e\x38\xa3\
+\xa1\xbe\xad\xd1\x3d\xe7\xc6\x00\x58\xb5\xda\x4f\x03\x3f\x8d\x77\
+\x9f\x02\x15\x5f\x6e\xbc\xa7\x4e\x5a\x2e\x78\x96\x2a\x16\x0a\xa5\
+\x1a\x16\x4a\x35\x2c\x94\xaa\x98\x2f\x56\x51\xac\xd4\x50\xa9\x3a\
+\x20\xea\x56\xcb\x95\xa5\xdb\xf9\xc6\x01\x66\x8a\xa9\x7c\x11\xc5\
+\x92\xe5\x8c\x08\xb6\xe9\xa7\x4d\xa6\x52\x29\xf4\xf6\xe6\x30\xb6\
+\x76\x35\x8a\xc5\x12\xc6\x27\x66\x60\xdb\x14\x21\xe4\xaa\x1b\xc0\
+\x87\xdd\xdf\xd7\x72\x63\x9b\x8b\xad\x54\x03\x57\x16\x50\x51\x39\
+\xc5\xe4\xac\x6b\x4c\x67\x44\xbb\x38\x5e\x18\x60\x49\x27\x5e\x90\
+\xc2\xc6\xc4\x1a\xbd\x19\x55\x90\x7d\xb8\xfd\x1f\x09\x84\x84\x99\
+\xeb\x42\x79\x41\x59\x5c\xcb\xd5\x64\x48\xb9\x7c\xb1\x1a\x68\xe5\
+\x5e\x11\x80\x44\xc3\x89\x64\x79\x52\x6d\xf1\x1e\x92\xd7\x4c\x68\
+\x68\x46\x7f\xb4\x50\xf9\x52\x12\x30\x57\x1e\x96\x4d\x51\xa9\xd8\
+\x98\x2f\xd5\x30\xbb\x50\x71\x56\x80\x9d\x2b\x61\x76\xa1\x82\x62\
+\xa5\x86\x5a\xcd\xb1\x1f\x79\xe0\xe7\xe7\x16\x07\x2e\x3c\xb0\xe1\
+\xee\x89\x68\x0f\x14\xee\x1d\x67\x9f\x64\xee\x5e\x08\x58\xe9\x84\
+\x07\xb0\x1a\x0a\xa5\x2a\x16\x4a\x35\x14\x4a\x01\x70\x39\xac\x9e\
+\x04\x20\x49\x15\x6c\x93\x02\x33\x0b\x0e\x30\xf7\x76\x67\xa5\x2d\
+\xe5\xd9\xb4\x29\x42\xd0\xd5\xd5\x89\xf5\xeb\x46\x01\xd8\xb8\x78\
+\x69\x0a\xb5\x5a\xe8\x6e\x37\xed\x70\x54\xc1\x2b\xe0\x8c\x08\xce\
+\xb6\xca\x6e\xb5\xb2\x80\x4a\x14\xe2\x30\xaa\x89\x59\x61\x03\x52\
+\x2f\xba\x5e\x96\x25\x9d\x78\x5f\x52\x1e\x94\xf8\x72\x88\xc4\xaa\
+\x42\x1f\x72\xc5\x4a\x9f\x22\xc0\x28\x5f\x06\x37\x6f\x98\x13\x33\
+\xd7\x05\x8e\x3a\x06\xf1\x91\x4b\x28\xab\x6e\x46\x0c\x09\x53\xff\
+\x64\x26\xc5\xb4\x8d\x86\xe4\xe5\xb6\x7c\xf7\x58\x9f\xf3\x32\xcf\
+\x17\x1d\x60\x9a\xca\x97\x30\x3d\x5f\x42\x7e\xa1\x8c\x42\xb9\x86\
+\xaa\x65\xbb\xc0\x04\x7e\xfc\xc0\x05\x37\x7e\xfa\x85\x02\xac\x48\
+\x93\xc0\xca\x0f\xab\xff\xaa\x7a\xc6\xfc\x72\xd5\x42\xa1\x54\x45\
+\xa1\x54\x45\xb1\x5c\x43\xb5\x66\x39\xec\xc7\xef\x4f\x60\x46\xf0\
+\xf8\xe6\x7c\xb1\x8a\xa9\x7c\x09\xdd\x1d\x6d\xc8\x75\xb6\xfb\x65\
+\x8a\x13\x6c\x53\x04\xe8\xe8\xc8\x62\xdd\x9a\x51\x74\x64\xdb\x70\
+\xe1\xe2\x64\x94\xdb\x4d\x1a\xc0\x2d\x00\x6e\x05\xf0\x26\x80\x0b\
+\xad\x00\xab\x15\x02\x54\x1b\x31\xd0\xd7\xad\xcc\xef\x01\x95\x34\
+\x7a\x26\xa4\x6b\x14\xb4\x38\x60\x62\xbf\xb6\x8a\x87\x97\x7d\xe0\
+\xb5\xf1\x42\x25\x44\x78\x21\x58\x96\xc0\x03\x95\xae\xcd\x72\xb8\
+\x8a\x79\x49\xb9\x0c\x00\x2b\xae\x18\x4d\xea\x0c\x6b\x10\xc3\xd4\
+\x54\x98\x66\x53\x8a\x4a\xcd\xc6\x5c\xb1\x8a\xe9\xb9\x32\x26\xf3\
+\x25\xcc\x16\x9c\xe5\x7b\x59\x60\x0a\xae\xb7\x0b\x10\xe2\x28\xad\
+\x70\x1f\xfd\x33\xa2\x07\x9f\xba\xc1\x4a\xc5\xc2\x1b\x14\x4a\x1d\
+\x06\x59\xae\x5a\x28\x96\x6b\x28\x94\x6b\x28\x55\x2c\x58\xb6\xcd\
+\xb0\xad\xe0\x9a\x17\xcb\x16\xc6\x67\x8b\x68\x6f\x4b\xa1\xb7\x3b\
+\xeb\x34\x4e\x65\xcf\x23\x40\x5b\x5b\x06\xa3\xab\x87\x31\xd0\x9f\
+\xc3\xa5\x4b\x93\x58\x28\x94\xc2\xda\x4d\x00\x5c\x0d\x67\x99\xe3\
+\x77\x00\x1c\x6f\x36\x58\xad\x18\xa0\xea\x67\x18\x15\x9b\xc8\x07\
+\x2a\x29\x92\x48\x69\x81\x70\xc0\xd2\xc5\xfb\xeb\x9c\x2b\xbf\xbc\
+\xa2\x13\xb2\x02\x70\x88\xa2\x2c\x26\x8d\x12\x90\x8c\x19\x17\x53\
+\x17\x91\x7b\x1d\x17\xa0\xd5\x42\xb8\x3f\x76\x36\xbb\x7a\xd3\x51\
+\xf9\x8f\xaa\x8a\x53\x88\xe8\x87\xe6\x33\x27\x9b\xa2\x52\xb5\x30\
+\x57\xa8\x60\x6a\xae\x8c\xa9\xb9\x12\xf2\x0b\x15\xf7\xc5\x64\xed\
+\x37\x41\x4e\x99\x31\xc9\x80\x25\x81\x95\xf0\xb1\x09\xf0\x8c\x59\
+\x2c\xc6\x10\xac\x84\xab\x2d\x80\x95\xe9\xb5\x37\x17\x8f\x71\x95\
+\x2a\x16\x8a\x95\x1a\x8a\x95\x1a\xaa\x35\x17\xb4\x52\x8e\xd1\xbe\
+\x6a\xd9\x18\x9f\x29\x82\x52\x60\x20\xd7\xc1\x6d\x29\x0f\xf0\x63\
+\x3b\x99\x74\x1a\x43\xab\x06\xb1\x7a\x78\x00\x53\xd3\xb3\x98\xcd\
+\x2f\x44\x35\x61\x35\x9c\x15\x43\xa7\x00\xbc\x95\x1b\xdb\x6c\x37\
+\x0b\xac\x56\x06\x50\xdd\xbc\x11\xfd\xbd\xde\x84\x4f\xfe\x01\x18\
+\x9f\x2d\x3a\x9b\x37\x8a\x24\x45\x3e\x30\x04\xad\x20\x65\xf0\x4c\
+\xb3\x2f\xb6\x38\xa1\x93\x79\x00\x35\x0f\x70\x30\xc7\x8a\xc9\x2f\
+\xd4\x4f\x84\x38\xf6\x40\x3d\x17\x4a\x06\x32\x81\xaf\xf1\xbd\x11\
+\x56\xc5\x94\xb2\x71\x21\xe2\x9f\xea\xea\x78\x62\x36\x55\x9d\x18\
+\x24\xa7\xac\xd1\xdc\x65\x4e\xe5\xaa\x8d\x7c\xa1\x8a\xc9\xb9\x12\
+\xa6\xe6\xca\x98\x2b\x54\x51\xae\x3a\xaa\x0e\x7b\x8f\x44\x3f\x4b\
+\x25\x60\x49\xd7\x83\x61\x57\x5e\x3a\xa6\xb1\xaa\x81\x11\xf6\x9a\
+\x45\x81\x15\x6f\xbf\xe4\x0e\x00\xa1\x4d\xcd\x16\x8f\x6d\x55\xaa\
+\x0e\x68\x95\x3c\xd0\x82\xf3\x31\x98\xca\x97\x50\xae\x5a\x18\xe8\
+\xc9\xfa\x6e\x37\xe2\xe0\x2b\x01\x90\x4e\xa7\xd0\xd7\xdf\x8b\xb1\
+\x35\x23\x98\x9f\x5f\xc0\xc4\xd4\xac\xca\x54\xcc\x4a\x1f\x80\x8f\
+\xb8\xc7\x7b\x73\x63\x9b\x2b\xcd\x00\xab\x95\x03\x54\x92\x8d\xca\
+\x49\x3a\x31\xc3\xaa\x7e\x62\xac\x78\x12\x0f\xb4\x88\xea\xcb\xab\
+\x79\x88\x45\xd6\xa5\x65\x52\xdc\x0b\xc4\x37\x44\xb6\x6d\xe9\x58\
+\x95\x82\x81\x89\x2f\x15\x53\x46\xa8\xaa\x41\x94\x87\x4d\x97\xa8\
+\xc9\xe8\x5e\xff\x29\x75\xf6\xb8\x73\x98\x93\x0b\x4e\xc5\x0a\x2a\
+\x55\x1b\xb6\xb7\x52\x02\x6b\x40\xe6\xbb\xca\x15\xce\xcf\xb7\xd5\
+\xb0\x2b\x36\xaf\xc8\xae\x20\xdf\xe7\x66\x80\x95\xee\x19\x69\xa5\
+\xd8\xb6\xa3\x2e\x97\x2a\x8e\x7a\x58\xa9\xda\x98\x9e\x2b\x61\xa1\
+\x54\xc5\x40\xae\x03\xd9\x2c\x03\x05\xc2\xc7\x24\x95\x22\xe8\xce\
+\x75\x63\xfd\xba\x51\x58\xb5\x2a\x2e\x8d\x4f\x99\xba\xdd\x0c\xc1\
+\x31\xb2\x2f\x34\x0a\x56\x2b\x0b\xa8\x14\x93\x37\x27\x66\x8b\x18\
+\x9f\x09\x1f\xf5\xab\x1b\xb4\x38\xba\x2f\xa8\x7f\x1a\x67\x64\xff\
+\xe1\xd5\x01\x8e\xee\xe1\xd6\x00\x1b\x5f\x84\x08\x9c\x5e\x31\x32\
+\x42\x11\x39\x73\x38\x10\x91\x88\x78\x43\x15\x4f\xf7\xc7\xfd\x13\
+\xd6\x5e\xb1\x29\x50\xb5\x6c\xcc\x15\x5d\xb5\x2e\x5f\xc2\x5c\xb1\
+\xea\x82\x13\xfc\x6b\x23\x31\x4b\x0f\xb0\x04\xc0\x61\x01\x2b\x60\
+\x4c\x08\xda\x21\x5e\xe7\x30\x55\x10\xc1\xfd\xe4\xef\x37\x09\xbf\
+\x9f\x1a\xb0\x12\x6e\x49\xd4\x5d\x69\x89\xd8\xcc\x68\xe2\xf8\x4c\
+\x11\xe3\x33\x05\xf4\x76\x67\xd1\xc3\x18\xd9\x3d\x61\x47\x04\x3b\
+\x3a\xb2\x58\xb7\x76\x14\x6d\x6d\x29\x5c\xb8\x34\x89\x4a\xb8\xdb\
+\x4d\x1b\x80\x3b\x01\x6c\x84\xe3\x76\x33\xd9\x88\xdd\x6a\xc5\x00\
+\x55\x9f\xcb\xa8\xc4\x04\xe3\x1a\x63\x3a\xa0\x61\x49\xd2\x01\x7f\
+\xc2\xaa\x02\x60\x8e\xb9\x07\x57\x63\xb3\xe2\x1e\x52\x0e\x84\xfc\
+\x60\x1e\x54\x84\x34\xa6\xee\x33\xa2\x1a\x21\xbd\xbc\x11\x9d\xe6\
+\x4e\x15\xec\x86\x5f\x51\x41\x43\x7f\x62\x09\x3f\x4d\xd1\xeb\x67\
+\xcd\xb2\x31\x5f\xae\x61\xda\x05\xa7\xbc\xa7\xd6\x51\x41\xad\xe3\
+\x2e\x98\x5a\x15\x16\x19\x96\x52\x6d\xd7\xb1\x5d\xa6\x51\xe1\x60\
+\xa5\x4f\xa3\x03\x2b\xf1\x8e\x36\x7b\x24\xb0\x51\xb1\x29\xc5\xcc\
+\x7c\x19\x67\xc6\xe7\x91\x6d\x4b\xa3\xb7\xdb\x5d\x2e\x46\xe5\x36\
+\x46\x80\xf6\xb6\x36\xac\x1d\x1d\x41\x6f\xae\x13\x17\x2e\x4d\xa2\
+\x58\x2a\x47\xb9\xdd\x5c\x0f\x67\x13\x89\xb7\x01\x9c\xae\x17\xac\
+\x56\x0c\x50\xf5\x6b\x56\xf8\x9c\x98\x29\x62\x7c\xb6\xe8\x5f\xc8\
+\x20\x46\x48\x1b\x07\xb4\x14\x0f\x5e\xf8\x7c\x29\x06\xa8\x22\xd9\
+\x13\xa4\x87\x99\x65\x5e\xe2\xcb\xc6\x81\xa8\x08\x64\xe2\x8b\x20\
+\x19\x70\xd9\x8c\x7a\x56\xe5\xcd\x23\x62\xac\x34\xf1\x45\xc2\x33\
+\x9e\xfe\x7a\x51\x96\x45\x51\x28\xd7\x30\x33\x5f\xc1\xe4\x5c\x19\
+\xb3\x0b\x65\x1e\x9c\x54\x6d\x90\xd8\x14\x03\x58\xc2\x05\x23\xda\
+\x6b\xa8\x60\x57\xd2\xdc\xa9\x28\xb0\x0a\x4f\x13\x65\x9f\x94\xc0\
+\x8a\x63\x5d\xf5\x5d\xf6\x66\x08\x21\x04\xa5\x8a\x85\x73\x93\xf3\
+\xa0\x00\x7a\xbb\xdb\x99\x38\xa6\x6d\x8e\xf7\x17\xd2\xde\xda\x56\
+\x43\xfd\x18\x9f\x9c\x46\x7e\xae\x10\x05\xb6\xeb\x01\x7c\x10\xc0\
+\x59\x00\x87\x73\x63\x9b\x69\x5c\xb0\x5a\xd1\x40\x05\x28\x46\xfd\
+\x20\xde\xf4\xb8\xa0\xa5\x7a\xa0\x21\x3d\x88\xba\x38\x15\x98\x98\
+\x01\x58\xf4\x86\x0f\xfe\xcb\xc5\x37\x81\xeb\x23\x11\xca\x54\xd1\
+\x2e\xe9\xf2\xe8\xe2\x22\x42\xc3\xc5\x29\x98\x82\xc0\xb2\x1d\x70\
+\x72\x26\x60\x3a\x93\x0f\x8b\xe5\x5a\x30\x5a\xa7\x68\x4f\x60\x87\
+\xe2\x1b\xa7\x62\x59\x3a\xc0\x62\x4e\x95\x13\x30\xbd\xbb\xc4\x6a\
+\x66\xec\xf5\x65\x8d\xec\xe1\x60\x15\x71\x5f\xd9\xf6\x73\x57\x94\
+\xff\x7a\x2d\x2d\x58\x01\xd5\x1a\xc5\xc5\xe9\x02\xaa\x35\x1b\x03\
+\xb9\x0e\x10\x42\x50\xb3\x1c\xdb\x20\x61\xae\x83\x33\x22\x98\x42\
+\x7f\x7f\x3f\xd6\x8e\x0e\x21\x9f\x9f\xc3\xd4\x74\xe4\xda\x56\x43\
+\x00\x3e\x02\xa0\x00\x67\x99\xe3\x5a\x1c\xb0\x5a\x11\x40\x75\x5b\
+\x08\x50\x8d\xcf\x16\x31\xee\x8e\xfa\x29\xd9\x42\x0c\xd0\xf2\x1e\
+\x42\xee\xa1\x53\x3c\xc4\x2a\x56\xe5\xbf\x30\x4c\xa1\x51\x6a\x81\
+\x8a\x49\x89\xac\xd0\xd4\x6e\xc5\xd6\x27\x9d\xab\xd2\xa9\x2f\x87\
+\x00\x70\x44\x9d\x28\x4c\xdc\xe4\x96\x4d\x51\xaa\x58\xc8\x2f\x94\
+\xfd\x99\xe1\x05\x17\x9c\xa8\xd7\x78\xe6\xcf\x63\x42\x52\x8d\x1e\
+\x68\x41\x03\x5a\x4c\x7b\x45\x95\x50\x65\xbf\x52\x83\x9b\xde\x3e\
+\xa8\x1b\x3c\xe1\xef\x71\xc4\xfd\xe6\xa6\xac\xc8\x0c\x7b\x29\xed\
+\x55\xdc\xa5\x26\x8e\x2a\x38\x3e\x53\xc0\x7c\xa9\x8a\xa1\xbe\x0e\
+\xb4\xb7\xa5\xdd\x15\x21\x6c\x58\x9c\x4a\xee\x38\x53\xe7\x72\x39\
+\xac\x5f\x37\x82\x72\xb9\x8c\x4b\x13\xd3\xb0\xc3\xb7\x94\xcf\xc1\
+\xd9\xed\xa6\x13\x8e\xdb\x4d\xc9\x14\xac\x56\x0e\x50\xf5\xea\x18\
+\x55\x01\x13\x33\x45\x89\xed\xc4\x05\x2d\x22\x3e\x60\x9a\x49\x7e\
+\xde\xcc\x5f\x29\x4e\xc3\x8c\x58\x1f\x30\x08\xf1\xec\x43\x1e\x9c\
+\x43\xdb\x17\xd5\x03\x2d\xf6\x49\x04\x2b\x3f\x34\x82\x45\x8a\xc0\
+\x44\xb4\x89\x85\x30\x06\x59\x3c\x70\x9a\x75\xe7\x3a\xcd\xb8\xb3\
+\xc3\x6b\x2e\x38\x71\xd8\x24\x67\xd7\x02\x17\x5b\x97\x96\x65\x31\
+\x27\x2a\xc0\x12\xab\x90\x3f\x04\x21\x46\xf6\x18\x60\x25\x3e\x2f\
+\x7c\x98\xd0\x1e\xb6\x1d\x8a\xb6\x2e\xa5\x4c\xbb\x73\xd5\xfa\x73\
+\x1d\xe8\xee\x6c\xf3\x97\xac\xf1\x96\xb1\xf1\x9c\xf3\x53\x29\x82\
+\xce\xae\x4e\x8c\xad\x5d\x8d\x14\xa1\xb8\x10\xed\x76\x93\x05\xf0\
+\x5e\x00\xfd\x00\x76\x98\x4e\x5f\x58\x31\x40\xd5\xd7\xab\x5e\xe1\
+\x93\x65\x54\x80\xfc\x92\x03\x9a\x77\x4c\x7c\xc1\x09\xfb\x2b\x80\
+\x0f\x09\x4a\x56\xdb\x17\xf8\xaf\xa4\xf6\x2b\xab\x7b\xc8\xd9\x34\
+\x4c\x39\x12\xf3\x82\xfc\x20\x2b\x87\xe4\xb9\x9e\x6b\x54\x0a\xaf\
+\x33\x2a\xe3\xbb\x26\xb9\x4a\x2c\x9b\xa2\x5c\xb1\x90\x77\x77\x46\
+\xf1\xd4\xba\x9a\x45\xdd\xb9\x38\xfc\xbf\x00\x71\xc0\xfd\x89\xe0\
+\xe5\x77\x46\x35\x15\x21\x04\xb0\xd8\x0b\xa8\xfc\x60\x48\xd7\x2d\
+\x04\xac\xd8\xfb\xa4\x05\x2b\x3e\x6d\xd8\x07\x8c\x57\xfd\x08\xdf\
+\x0e\xae\xad\x06\x37\x64\x11\x64\xae\x50\xc5\xa5\xe9\x02\x72\x9d\
+\xed\xe8\xeb\xce\xfa\xe1\xd4\x75\xf6\x0e\x66\xc0\x03\x1d\xd9\x2c\
+\xd6\xad\x1d\x41\x77\x67\x16\xe7\x2f\x4d\xa0\x5c\x8e\x74\xbb\xb9\
+\x09\xc0\x49\x38\x73\xad\x22\x0d\xec\x2b\x68\x17\x1a\x7e\x59\x57\
+\x9d\xe7\x7d\xb0\xcd\x7b\xb0\x62\x59\xb0\x70\x19\xa4\x32\xbc\x65\
+\x3c\x82\xa5\x6a\x29\x82\x10\x61\xbd\x25\xc2\xa4\xf3\x51\x13\x10\
+\x27\x9e\xb0\xa3\xef\xdc\xf6\x4c\x90\x8f\x83\x32\xe4\xb5\xb7\x21\
+\xe6\x55\xdc\x78\x71\xe1\x38\x67\x67\x1d\x5e\x81\x52\xaf\x07\x05\
+\x10\x4a\x41\xb8\xad\x78\xa8\x32\x35\x8b\x85\x36\xdc\xa9\x04\xa5\
+\x2a\xc6\xf3\x25\x9c\x9b\x5a\xc0\xb9\xe9\x82\xb3\x39\xa6\x67\x14\
+\xf7\x40\x42\x41\x9b\x82\xd3\x70\xf0\x52\x81\x96\x8a\x65\x89\x80\
+\x15\xaa\x0e\x6a\x55\x41\x11\xac\x34\x1f\x15\x25\x58\xc9\x69\x39\
+\x40\x54\x80\x95\xe2\xd0\x6f\x2b\x1b\xb2\xd4\x42\x88\xc3\xac\x76\
+\xed\x3f\x87\x43\xa7\xa7\xfd\x49\xb6\x9e\x50\xea\x8c\xdc\x96\xdd\
+\x15\x28\xda\xda\xdb\x71\xe7\x1d\x37\xe3\xfe\x4f\x7e\x10\xab\x87\
+\xfa\xa3\xa6\x02\x77\x01\xf8\x1c\x9c\xd5\x17\x22\x65\xc5\xac\x47\
+\x05\xc8\x4b\x2c\x51\xf5\x7b\xc5\xa4\x0f\x16\x04\xf2\x1e\x1f\x16\
+\x44\x38\xa5\x8b\x7a\x3f\xcc\x83\xe6\xae\xc7\x47\xbc\x38\xca\xaa\
+\x56\xc4\x5f\x1f\x8a\x7a\x0f\x9d\x9f\x9e\x79\x0a\x29\x40\xbd\x87\
+\x97\x06\x79\x79\x61\x91\xcd\x3d\x27\x6c\xfa\xa0\x8d\xd2\x62\x79\
+\x14\xa0\xec\x42\x6d\x70\x1b\x25\x94\xaf\x9c\x4d\x1c\xf5\x62\xb8\
+\x6d\xb0\x28\x45\xb5\xea\xb8\x66\x94\x2a\x35\x94\xab\x16\x6a\x16\
+\x65\x46\xea\x74\x25\x78\x9d\x80\x7f\xed\xf9\x10\x37\x15\x37\x1b\
+\xd4\xbb\x04\x54\x8a\xf7\x6d\x5b\x80\x0b\xb0\xec\xe5\xf2\xae\x4f\
+\xb0\x2a\x82\xbf\xe6\x39\x71\xe0\x3c\x58\xc5\x85\xf8\xae\x3a\x84\
+\xb0\x6b\x98\x51\xdf\xf5\x8d\x80\x38\xbb\x35\xbb\x33\xb4\xa9\x93\
+\xd0\x4d\x2f\xc6\x07\xc7\x5e\xa1\x84\x52\x66\x6d\x2c\xb7\x8d\xd4\
+\x7b\xbe\x18\x3b\x9d\xb7\xda\x1d\xa3\x2d\x78\x7e\x7a\x11\xdb\x5a\
+\x2d\x8a\x10\x02\x2c\x94\xaa\x38\x37\x31\x8f\x2b\x47\x7b\x91\x4d\
+\xa9\x95\x30\xcb\xa6\x80\x4d\x91\x4a\xa5\x30\xb6\x6e\x0d\x46\x86\
+\x07\x70\x71\x62\x26\x8a\x1e\x76\xc0\x50\xab\x5b\x51\x40\xc5\x2f\
+\x49\x1b\x3c\xd4\xe2\xfd\x54\x5d\x1b\x1d\x68\x11\x22\xae\xb6\xc9\
+\xe4\xe1\xbe\x8e\xc1\x67\x33\x58\xc0\x4e\x88\x13\xda\x25\x28\x77\
+\x6e\x98\x1b\xef\x52\x66\x6f\x1b\x72\xaf\xcd\x1e\x10\x49\xa0\x8c\
+\x60\xf7\x60\x1f\x96\x54\x6c\x4e\x6c\x51\xc8\x64\x4f\xaa\xd9\xc1\
+\x85\x82\x75\xbf\x70\xc0\xa9\x52\x63\x96\x16\x71\x13\x9a\xd9\x53\
+\x82\x8e\x11\x02\xff\xc5\xe7\xee\xa7\x50\x0c\x61\xa8\x25\x0b\x5a\
+\xf5\x02\x16\x07\x44\x0c\x58\x79\x8b\xdf\xf9\xd7\x9e\xba\x20\xe2\
+\xb7\x33\x0a\xac\x20\xa5\x0d\xf0\x2a\x28\x8b\x50\x12\xb4\xc7\xfb\
+\x70\x79\x75\xbb\xb0\x15\x00\x26\x03\xd0\x24\x7c\xcd\xae\x56\x0b\
+\x85\xb3\x3d\xfc\x35\xeb\xfa\x71\xe7\xc6\x11\x64\xdb\xc2\x31\x85\
+\x10\x82\xa9\xa9\x69\x6c\x7b\xfe\x65\xbc\x7d\xf8\x94\xc9\xf3\x71\
+\x1c\x40\xd1\xa4\x2d\x2b\x06\xa8\x54\xeb\x49\x47\xa5\xd5\x5d\x27\
+\xca\x3c\x4a\x5c\x62\x17\x81\x7c\x20\x70\xd1\xc4\x61\x02\xde\x0b\
+\x41\xdc\x97\xd9\xfb\x36\xc2\xff\x42\x06\x31\x0c\xab\x22\x54\x00\
+\x2c\xa6\x6e\xaf\x44\x56\x05\x11\xd3\x48\x7d\x61\x80\x90\x61\x5f\
+\x32\x63\xe2\xf5\x46\xca\xe4\x27\x8a\x24\xb6\xed\x38\xb4\x56\xaa\
+\x36\x4a\x55\x07\x9c\x58\xd6\xe4\x49\xca\x04\x9b\x54\xe2\xd5\x45\
+\xe4\xc0\x80\x3c\xc9\xc0\xe5\xf5\xd1\x04\xb0\x58\x62\xe6\x83\x03\
+\x02\x80\xf4\xd7\x2c\xa7\x41\x5e\x07\xc8\x78\x76\x65\x0e\x56\xea\
+\xb4\x1e\xcb\x06\x55\x80\x15\xdb\x75\x8a\x00\xbc\xfc\x20\xc2\x00\
+\xaa\x8a\x7f\x2e\x8e\x50\x0a\xb4\xb7\xa5\x70\xd3\x95\x43\xb8\xf9\
+\xea\x55\xc8\xb6\xa5\x43\x41\x93\x10\xe0\xdc\xb9\xf3\xd8\xba\xfd\
+\x25\xbc\x73\xea\xbc\x49\x15\x07\x01\x7c\x07\x40\xd5\x64\x75\xd0\
+\x25\x07\xaa\x54\xa6\x03\x76\xad\x64\x96\x58\xa5\xbf\x50\x6f\xcd\
+\x74\x70\xc8\xc4\x52\x7d\x20\x0c\xb4\x18\x8c\x52\xb0\x25\x0a\x1a\
+\xb8\x7c\xb0\x0f\x17\xdb\x1e\xb6\x5d\x5c\x5e\xe6\x21\xf4\xbf\xda\
+\x72\x3d\x5e\x18\x9b\x07\x0c\xd3\x93\x54\x52\xb6\x97\x92\x16\x29\
+\x30\x3a\x4e\xd5\xf5\xe2\x9c\x25\x77\x6b\x2e\x6b\x2a\x57\x6d\x67\
+\x39\x5e\xcb\x86\x6d\x0b\xb3\xc8\x75\xf7\xc2\xd8\x9e\x42\xb9\x1f\
+\x25\xb3\x13\xd4\x5b\x16\xac\xfd\x4b\xcf\xb2\x2c\x0d\x60\x79\x1f\
+\x17\x2d\xbb\x62\x55\x41\x4e\x53\x23\x4a\xb0\xf2\xef\x8d\x08\x56\
+\xcc\xa5\x8e\x06\x2b\xe6\x56\x51\x96\x75\x45\xa8\x80\xec\xb3\xb9\
+\xc8\x58\x45\x29\xd0\xd5\x91\xc1\x1d\xd7\x8d\x60\xe3\xd8\x00\xd2\
+\x29\x12\xbe\x1a\x2b\xa5\x38\x7a\xec\x04\xb6\x6e\x7f\x09\x17\xc7\
+\xa7\x4d\x98\xd4\x21\x00\xbf\x01\x67\xfd\x2a\x23\x59\x72\xa0\xea\
+\x18\xde\x88\xc2\xb9\x7d\x46\xb3\xdd\x02\x16\x01\x9e\x30\xf8\x80\
+\xc1\xda\x43\xc2\x41\xcb\x67\x2b\xac\x21\x94\x05\x19\x1f\x3c\xd8\
+\x17\x9f\x30\xf5\x32\x46\x52\xd6\x66\x25\x74\xc3\x09\xe3\x0d\x63\
+\xbc\xea\x16\xe4\x0d\x8a\x12\xd4\x45\x9f\x9d\x89\x65\x53\xc5\x1a\
+\xea\x2c\x22\x10\x7f\x27\x15\xdb\xa6\xa8\x5a\xce\x5a\xe1\xd5\x9a\
+\x03\x4c\x1e\x63\xa2\xc2\x75\x90\x49\x8f\xa4\x00\xc7\x10\xc2\xfd\
+\x30\x77\x48\x09\x5e\x32\x68\x09\x2c\x8b\x53\xdd\x35\x80\x25\xaa\
+\x83\xac\xea\x05\x57\xc5\x72\x59\x72\xb8\xdd\x4a\x63\x93\x62\xed\
+\x47\x02\x73\x0a\x46\x44\xa8\xcf\xc0\x38\xb6\xe7\xb7\x29\x42\x05\
+\xf4\x91\x74\x71\x59\x15\xa5\x40\x7f\x4f\x16\x77\x6d\x1a\xc5\x15\
+\xab\x7b\x84\x7b\x26\xdc\x59\x42\x50\xab\xd5\xf0\xe6\xfe\x83\xd8\
+\xbe\x73\x0f\x66\xe7\x16\x4c\x40\xea\x05\x00\xff\xca\xfd\x85\xe9\
+\x5a\xeb\x4b\x0d\x54\xa4\x73\x78\x23\x2d\x9c\xdb\x67\x9c\x81\xd5\
+\x12\x88\x18\x06\xe6\xa1\x0f\x01\x2d\x2f\x8f\x7f\x4c\x19\xd0\xe1\
+\x0c\xcf\x24\x30\x90\xb3\x15\xb1\x5f\x79\xef\xab\xca\x15\x2c\x1b\
+\x9c\x82\x32\x18\xb0\xa3\x0c\x88\x29\x41\x92\xef\x35\x6f\xcc\x87\
+\x74\x4c\x5d\xf6\x60\x51\x0a\xcb\x72\x1c\x4f\xbd\x8d\x0c\x6a\x96\
+\xed\xcf\x7f\x11\x41\x57\x9e\x00\xaf\xb7\x6b\xc9\x77\xd0\xe4\x66\
+\xa9\x92\x07\x2a\xab\x9f\x98\xaa\x40\x8b\x67\x59\x22\x60\x29\x55\
+\x42\x51\x1d\x74\x3f\x4c\x2c\x10\xb1\xaa\x60\x14\x58\x81\xb0\xf5\
+\x51\x2e\x6d\x60\xa7\x62\xd5\x3c\x91\x4d\x05\xc6\x75\x95\x0a\xe8\
+\x0f\xc8\x68\x54\xc0\xc5\x34\xac\x8f\xae\xea\xc6\xdd\xd7\x8f\x62\
+\xa4\xbf\x33\x14\x1e\x09\x21\x28\x97\x4a\x78\xe9\x95\x7d\x78\xf1\
+\xd5\x37\xa3\xb6\xda\x02\x00\x0b\xc0\x43\x00\x7e\x13\xc0\x61\xc0\
+\x1c\xa4\x80\xa5\x03\x2a\xbf\x47\xeb\x3f\xfe\x31\x4c\xee\xfb\xc7\
+\xba\x0a\xa1\x8a\x13\xe5\xa8\x9e\x08\x5a\x4a\x20\x10\x2d\xba\x2e\
+\x63\x61\xd9\x0d\xf1\x9f\x59\xef\xfb\xe7\x26\x0d\x10\x8c\xb3\x59\
+\x11\xc6\x66\xc5\xc4\x39\x35\xb2\xb6\x2e\xf0\xf5\xb3\xba\x27\x43\
+\xfc\xfc\xf7\x96\x06\xfb\xc6\x59\xae\x6d\xc9\xdb\x5b\xae\x66\x39\
+\xe7\xc1\x9e\x74\xec\xb5\x20\xbe\x8a\x24\x3d\x52\x51\xe0\x44\x94\
+\x87\xda\x90\xa0\x1f\x8a\x7b\xc5\x04\xa8\x81\x8b\x07\x2d\xce\xbe\
+\xe6\x52\x68\x51\x25\x14\x01\x8b\x65\x57\xac\x8a\xa7\x52\x05\xa3\
+\xc0\x8a\x53\xed\x18\x55\x4c\x05\x56\x9c\x29\x3d\xcc\xb8\xce\xa8\
+\x80\x9c\x7d\x60\x89\x54\x40\x42\x80\x0d\xa3\x7d\xd8\xbc\x69\x35\
+\xfa\xba\xdb\x23\xec\x51\x04\x73\x73\x73\x78\x6e\xe7\x2b\xd8\xbb\
+\xff\x48\xd4\x04\x4f\xc0\x31\x98\x7f\x17\xc0\x1f\x01\xb8\x58\xcf\
+\x8e\x35\x4b\x01\x54\x6c\x8f\xc8\xa3\x5f\x00\x5d\xf7\x0d\x76\x3c\
+\x5f\x16\xdb\xa6\x28\x96\x6b\xce\x0b\x46\x00\x6f\x89\x55\xc7\x17\
+\xc9\x79\x31\x53\xfe\x8c\x64\xf5\xec\xec\xa0\xf2\xe0\x9b\xc5\xa9\
+\x55\x94\xfa\x54\x9c\x63\x49\xec\xd6\x56\xf2\xb8\x60\x60\x39\x52\
+\xda\xcf\x00\x0d\x2a\x48\xaa\x9f\xaf\x96\x00\x80\x0d\xd8\xee\xcb\
+\x6a\x83\xfa\xb3\x81\x2d\x9b\xa2\x66\xdb\xb0\x2d\xef\xd8\xdb\x63\
+\x8e\xdb\xf8\x4b\x66\x5d\x2c\x7b\x92\xee\x84\x66\xc2\xa7\x94\x3e\
+\xbe\xd2\x17\x9a\x9b\x50\xe5\x87\xc6\x87\xfe\x80\xee\xf2\xcc\xd9\
+\x6b\xb3\x16\xb0\x02\x10\x02\xc0\x4c\x0d\x61\xd8\x95\x38\x0a\x67\
+\x0a\x56\xde\xf5\xe5\xf6\x07\x24\x7e\x1b\xfd\x27\x2b\xca\x5e\xc5\
+\xde\x76\xc1\x5e\xb5\xd8\x2a\x20\x05\x90\x49\x11\x5c\x7f\xc5\x20\
+\x6e\xbb\x76\x18\x9d\xd9\x4c\x24\x48\x8d\x8f\x4f\x60\xeb\xf6\xdd\
+\x38\x72\xec\xb4\x6c\xda\x90\x65\x1a\xc0\xd7\x01\xfc\x25\x80\xb9\
+\x7a\xb7\xd5\x5a\x6c\xa0\x22\xe2\x6f\x9a\x10\xac\x7e\xef\x3f\x0b\
+\x7d\x0d\x6c\xea\x18\x7d\xfd\x87\x87\xf9\x6f\x7a\xae\x84\xf1\x99\
+\x82\xb3\x89\x63\x8a\x20\x45\x52\xee\xaf\xb3\x86\x0e\x71\x37\x77\
+\x4c\x11\x67\x01\xb0\x54\x2a\x05\x42\x68\x00\x6c\xbe\xf9\x87\x80\
+\x53\xfa\x3c\xf5\x40\x7c\xe1\x85\xee\xb0\x54\xdd\x4b\x41\xd9\x97\
+\x86\x39\x0e\x58\x18\x05\xe0\x6d\x68\x09\x7f\x63\x4b\xdb\xa6\xb0\
+\xa8\xd3\x5f\xea\x87\x79\xa9\x85\xa1\x75\xee\x3a\x30\x70\x63\x04\
+\x50\x1a\xf6\x14\xda\x57\x3e\x28\x2e\x6c\xc9\xa0\x24\xce\x36\xe7\
+\xf7\xc9\x0b\x30\x9c\xe1\xa0\x9c\x2d\xca\x2d\x43\x02\x2c\x86\x5d\
+\xb1\xe4\x84\x65\x57\xf5\x82\x15\x33\x1a\xe7\xab\x65\x08\x1f\x09\
+\x54\xda\xab\x34\x2a\x20\x37\x38\xa3\x08\x6a\x36\xab\xa2\x14\xe8\
+\x68\x4f\xe3\xd6\x6b\x86\x71\xc3\x86\x41\xb4\xa5\x53\x91\xe5\x9f\
+\x3c\x79\x1a\x4f\x6f\xdf\x8d\x33\xe7\xc6\x4d\xec\x51\xa7\x00\xfc\
+\x6b\x00\x7f\x0f\xc3\xd1\x3d\x9d\x2c\x16\x50\x11\xc5\x31\xf3\x1b\
+\xef\xea\x53\xe6\x3f\x67\xbe\x8f\x0d\x85\xa9\xc7\x29\x9c\x61\x0d\
+\x9e\x9f\x9e\xb7\xe9\xa3\xf3\xeb\x31\xb4\x80\xa5\x11\x38\xc0\x06\
+\x17\xe0\xd8\x38\xf6\xf1\x51\x33\xb7\x80\x1a\x79\xe0\xe2\xb5\x97\
+\x05\x1b\x9d\xda\x2a\xae\xc2\xc0\xdb\x92\x04\x08\x61\x19\x51\xbd\
+\x00\x15\x06\x4e\xc4\x04\x90\xa2\x52\x50\x39\x15\x61\x63\x20\x03\
+\x97\x12\xb4\x3c\x96\xa5\x00\x2c\x96\xf1\xf8\x6c\x8a\x70\xc6\xf6\
+\x48\xb0\x82\x08\x46\xf5\x81\x15\xd7\x1e\x95\xbd\x2a\x44\x05\x64\
+\x4d\x06\x94\x9d\xa8\xd5\x02\x56\x45\x29\x45\x4f\x57\x3b\xde\xb3\
+\x69\x35\xae\x5e\xd3\xe7\xcf\x27\x54\xde\x61\x42\x60\x5b\x16\xde\
+\x3e\x74\x14\xcf\xee\x78\x05\x93\xd3\x79\x13\x90\xda\x07\xc7\x68\
+\xbe\x15\x00\x6d\x74\x83\xd2\xc5\x00\xaa\x08\x90\x82\x6e\xec\xbd\
+\xe1\xca\x00\xef\x0b\xc4\x18\x90\x29\x05\x25\x14\x96\xad\x59\x25\
+\x41\x62\x2b\x8c\xff\x9f\xe0\x84\xaa\x4c\xc3\xa8\x71\x7e\xd9\x60\
+\x00\x93\x65\x25\x0a\x7f\x40\x33\x07\x58\x26\x0d\x77\xee\x17\xc4\
+\x5f\x0b\x95\x8a\x47\x98\xf4\xc2\xc5\x0b\xb5\x41\xc5\x66\x55\x44\
+\x09\xca\x01\x07\x0d\x0a\x0a\x3e\x40\xcc\x2c\x33\x06\x95\xb4\x80\
+\x65\xc0\xae\xb4\x60\x85\x30\x30\x52\x81\x15\xcb\x6c\x02\x10\x91\
+\x55\x3f\x8d\xbd\x2a\x4c\x05\x64\x28\x93\x8e\x4d\x35\x83\x55\x51\
+\x0a\x0c\xf5\x75\xe1\xee\x1b\x46\xb1\x66\x55\xb8\x07\x0b\x21\x04\
+\xd5\x6a\x05\x7b\x5e\xdf\x8f\x9d\x2f\xee\xc5\x7c\xf8\x6e\x34\xde\
+\x1d\x7c\x06\x0e\x48\xed\x05\xe2\x19\xcd\x75\xd2\x6a\xa0\x12\x41\
+\x2a\x0c\xb4\x5a\xdb\x10\x22\xfc\xba\xff\x71\x2f\xbe\x94\x86\x05\
+\x1d\x01\xd8\xfc\x74\x8a\x34\x6c\x1c\x73\x1c\x06\x52\x2a\xb0\x0b\
+\xa2\xc2\x41\xaa\x19\x00\xa5\x04\x27\x2d\x70\xc5\xbc\xf6\xca\x13\
+\xc2\x00\x93\x73\xc0\xf6\xcf\x8b\x0b\xfa\xc9\xba\xb7\xb8\xf9\x5d\
+\x3d\x3b\x00\x35\x28\xd9\x15\x3b\x77\xca\x49\xe7\xaa\xf9\xbe\x0d\
+\xdb\x1c\xac\x7c\x55\xce\x27\x50\x8c\x0a\x17\x62\xaf\x32\x55\x01\
+\x7d\x20\x52\x4d\x7f\x67\xea\x6f\x44\xd6\x8f\xe4\x70\xd7\xf5\xa3\
+\x18\xec\xed\x88\xb4\x47\x15\x0a\x05\xec\x7a\xf1\x35\xbc\xb2\xf7\
+\x6d\x54\xc2\xf7\xf7\x03\x80\x0a\x80\xff\x0e\xe0\x77\xe1\xa8\x7d\
+\x4d\x01\x29\xa0\xb5\x40\xa5\x03\x29\xa2\x49\xd3\x62\x11\xaa\xe5\
+\x11\xc5\x7f\xf8\x83\x46\x6a\x00\x88\x47\x10\xbe\x28\xae\xaa\x56\
+\x81\x94\x5e\xd5\x13\xd5\xbc\x50\x80\xd2\x81\x53\x50\x65\xe4\xe5\
+\x54\xaa\x8b\x9c\xd0\xe0\x7f\xdd\x54\x05\x1f\x98\x78\x84\xf2\xe2\
+\x24\x96\x25\x02\x16\x09\x6c\x81\xfe\x3b\x2d\xb0\x2b\xb5\x2a\xe8\
+\x5e\x33\x4a\x65\xb0\x82\xde\x66\xa5\x9c\x63\xc5\x61\x0a\x51\xda\
+\xab\x54\x2a\xa0\xd7\x68\xad\x0a\x08\xd6\xaa\xd9\xd8\x74\x05\x8a\
+\xc0\x1d\xe6\x3d\x1b\x47\xfc\xa5\x5b\xb4\xb7\x97\x10\x4c\x4f\x4f\
+\x63\xdb\x8e\x97\x71\xe0\xd0\x3b\xb0\x2c\x1a\x05\x52\xf3\x00\xbe\
+\x0d\x6a\xff\x29\x08\x99\xba\xb0\xfb\xaf\x62\xb5\x2f\x4a\x5a\x05\
+\x54\x24\xe2\x57\x08\xa3\x26\xaf\x46\xfd\x8d\xe1\x98\x92\x0c\x3a\
+\x22\xbb\x92\x3c\xde\x15\x2d\x96\xc1\x89\x30\xc9\xf4\x2f\x7c\xd3\
+\x41\x4a\x61\xb7\x92\x96\x3f\x01\x9f\x89\x6f\x96\x02\xe4\x94\xd7\
+\xaf\x9e\x5b\x24\x33\x41\x4f\x82\x81\x06\xf1\x3a\xba\x20\x12\x0b\
+\xb0\x22\xd8\x15\x61\xd2\x71\x06\x74\x70\xaa\x20\x6b\x1b\x52\x1a\
+\xd8\xc1\xaa\x61\x3c\xcb\x09\xb3\x57\xe9\x54\x40\x42\x35\xdc\x48\
+\xd2\xfb\xd0\x10\x89\x0a\xdc\x61\x56\xe1\xe6\xab\x87\x0c\xdd\x61\
+\x2e\x60\xeb\xf6\xdd\xbe\x3b\x4c\xc4\xc7\xeb\x12\x40\xbf\x6a\xd7\
+\xca\xff\xf1\xbe\x1f\x7c\xaf\xf8\xb7\x1b\x9b\xff\x3a\xb7\x02\xa8\
+\x62\x82\xd4\x62\xb0\x2a\xa2\x3e\xe5\x7e\x89\x36\xab\xa4\xf2\x71\
+\x11\x50\xa8\x7c\xe0\xde\x3c\xd1\xc6\xc5\xd6\x59\x0f\x48\xe9\x55\
+\x3d\xfd\x9a\x4b\xb1\x00\x4a\x04\xbb\x88\x4b\xab\x4b\xa9\x63\x52\
+\x62\x7f\x01\x70\x0c\x81\xed\x73\x00\x12\x54\x01\x58\x2c\x08\x41\
+\xcd\xae\x58\xb0\x02\x22\xed\x56\x32\x98\x31\x60\xc5\xda\x90\x24\
+\x15\x31\x40\x1e\x25\xce\x08\x2a\x20\xd8\x7a\x5b\xc8\xaa\x44\x77\
+\x98\x54\x84\x3b\x0c\x40\x71\xf4\xe8\x09\x3c\x6d\xee\x0e\x73\x04\
+\xd4\xfe\xed\x4a\xfe\xfc\x8f\xa6\xde\x7e\xd8\xfa\xdb\x8d\xdf\xf7\
+\xbf\x15\x66\x0f\x90\x99\x34\x1b\xa8\xe2\x82\x54\xcb\xc5\x88\x4d\
+\x71\x20\xa0\x56\xf9\x04\x14\x51\xb2\x2a\xd9\xb9\x98\x05\x22\xb1\
+\x4d\xe6\x20\xa5\xb3\x47\x89\xaa\x26\xcf\xaa\xf8\x36\x73\xfd\x50\
+\x81\x4b\x04\x38\x85\x3f\xaf\xaa\x48\xde\xe6\xc4\xc7\x40\x7a\x8c\
+\xd9\xb9\x6a\x2a\x1f\x4d\x7f\x95\x09\x0e\xb0\xa2\xd9\x55\xa0\x0a\
+\xea\xed\x56\x1c\x58\x79\xa0\xa1\x01\xab\x30\xe3\xba\xd2\x5e\xa5\
+\x51\x01\x63\xb3\xa9\x3a\x58\x95\xca\x1d\x46\x7f\x7f\x09\xac\x5a\
+\x0d\x6f\xc4\x73\x87\x79\x89\x5a\xd5\xdf\x98\x7a\xeb\x47\x3b\xab\
+\x0b\x93\xec\xdd\x6e\x02\x0f\xe4\xa5\x99\x40\x55\x0f\x48\x11\xf7\
+\x8a\xb6\x10\xb4\x4c\xd8\x14\x00\x12\x5e\x04\xcf\x66\x14\x2a\x1f\
+\x0b\x52\x02\x10\xb1\xe9\x44\xc0\x64\x0b\xab\x0f\xa4\x1a\x03\x28\
+\x9d\x5a\x27\x3f\xa3\xe1\xb7\x48\x8c\xa5\x21\xe9\x89\x4f\x81\xbc\
+\xb4\x60\x1e\xe9\xe0\xba\xa9\x58\x96\x6f\x1f\xf2\xce\x01\x85\x8a\
+\xc7\xd8\x8a\xc0\x02\x11\x24\x00\xe2\xc1\x0a\xfe\x2b\xc6\x82\x15\
+\xc7\xe0\x20\xb2\x19\xb6\x52\x16\xb4\x22\x54\xc0\x10\xc3\xba\xcf\
+\x9e\x1a\x60\x55\x14\xc0\xe8\xaa\x2e\xdc\x7d\xfd\x1a\x0c\xf7\x77\
+\x86\xdf\x3b\x42\x50\x2e\x97\xf0\xd2\xcb\x71\xdc\x61\xe8\xa3\x76\
+\xb5\xfc\x5b\x97\xf6\x7c\xff\x20\x9c\x05\x38\x29\x53\x75\x93\x94\
+\xd6\x40\x9a\x05\x54\xf5\x83\x54\x0b\x99\x55\x2c\x36\xe5\x1d\x89\
+\x6c\x4a\x62\x1a\x1a\x95\x4f\xa8\x93\x6f\x87\x9a\xbd\x49\x6d\x69\
+\x22\x48\xf1\xed\x90\x7d\xbe\x55\x00\x15\x06\x4e\x3a\x76\xa4\xbd\
+\xf6\x21\x71\xe2\x77\x89\x05\x2e\x9e\x4d\xb9\xdf\x31\xc6\x9e\xe5\
+\x78\xc1\x04\x3a\x20\xaf\xe2\x81\x5b\xe5\xc0\x53\x05\xd9\x69\x0c\
+\x2a\xb6\x04\x56\xe5\xf2\xd5\x3c\x06\x38\x3c\x8d\x8f\x61\x42\xa2\
+\x71\x9d\x9d\xb9\x6e\xa4\x02\x72\xaf\x30\x0f\x76\x7e\x11\xcc\x6f\
+\x9c\xd7\x9e\x10\xe0\xca\x98\xee\x30\x3b\x76\xbe\x82\xd7\xf7\x1f\
+\x41\xad\x66\x47\x81\x54\x09\xd4\xfe\x5b\xab\x3c\xf7\xd5\xf1\xbd\
+\x7f\x7f\x1e\xc1\x2a\xc1\x4d\xe4\x82\xb2\x34\x03\xa8\x96\x25\x48\
+\x29\x8b\x8f\x6a\x85\x09\xab\x52\x65\x93\xde\x62\xdd\xdc\x2b\x3e\
+\xa3\x08\x8c\x7c\xba\xb8\x20\x65\xc6\xa2\xa2\x01\x8a\x68\xc2\xe3\
+\x5c\xef\xf0\xe7\x92\x2b\x97\xfa\xfc\xc8\x8d\x93\x47\x0a\xbd\xeb\
+\x24\x7a\x26\x38\x80\xc5\xb0\x2b\x6f\x3a\x43\x84\x2a\x48\xdc\x37\
+\x3f\x50\xc1\x04\xb0\xe2\xa6\x37\xf0\x6c\x46\xa5\xb3\x99\xa8\x80\
+\x5e\xe5\x1c\x4b\x52\x18\xd6\xb9\xbc\xcc\x3b\xae\x67\x55\x01\xb8\
+\x53\x0a\x64\xd2\xf1\xdd\x61\x9e\x79\x6e\x37\x0e\x1f\x3b\xad\x70\
+\x86\x97\x64\x96\xda\xd6\x37\x2b\xf9\x73\x7f\x39\x7d\xf0\xd1\x3c\
+\x02\x90\x12\x1b\xdc\x74\xb0\x6a\x14\xa8\x9a\x01\x52\xa4\x09\x80\
+\x2b\x37\x8c\x08\xbf\x7e\x65\x21\x6c\xca\x0b\x57\xcd\x99\xf2\x52\
+\x29\xa9\x53\x88\xca\xc7\x25\x51\xdb\xa5\x78\xd5\x8f\x69\x4d\x23\
+\x20\xa5\x9c\x9e\xa0\x03\x28\x33\x70\x12\x0d\xe0\x61\x29\x75\x42\
+\x59\x04\x12\xdb\xcc\x80\x96\x8a\x65\xf9\x0c\x8b\x9d\x46\x40\x18\
+\x76\x65\xaa\x0a\xb2\xd4\x46\xc0\x1e\x4e\x1d\xf3\x03\xc0\x31\x30\
+\xb5\xea\x45\x82\x36\x88\x2a\xa0\x5f\x2e\x04\x03\x15\xfb\xfe\xd6\
+\xcb\xaa\x5c\xd0\xa5\x2d\x77\x87\x39\x43\xad\xea\x1f\xce\x9f\x79\
+\xf5\xef\x17\xce\xef\xab\x82\x07\x29\x45\x47\x9a\x0b\x56\x8d\x00\
+\x55\x93\x40\x4a\xca\xd3\x24\xd1\xa9\x6b\x51\x2d\x50\x34\x9f\x08\
+\x65\xb0\xd9\x04\x40\xe4\x5a\xa0\xb1\x4b\x49\xc6\x73\x4e\x1d\x34\
+\x07\x29\x79\x52\xa9\x22\x3d\xd3\x0e\x70\xf9\xd8\xda\xd5\x77\xc0\
+\x1c\x98\x62\xdc\x15\xa1\x32\xce\xc6\xc2\x54\x17\xa8\x87\x2c\x00\
+\x05\xfd\x61\x47\xf7\x40\x78\xdb\x95\x4e\x15\x14\xc1\x8a\x57\x03\
+\x35\xeb\x9e\x83\x61\x39\xcc\xab\xe6\xbf\x7d\x8a\xf9\x55\x41\x67\
+\x7c\x3d\x91\xb3\x97\x89\xe0\x55\x1f\xab\xe2\xd9\x54\x4f\x57\x9b\
+\xb9\x3b\x8c\x6d\xe1\xed\x43\xc7\xf0\xec\x73\x2f\x1b\xba\xc3\xd0\
+\xfd\x76\xb5\xf4\xdb\xd3\x07\x1f\x79\xba\xba\x30\xe9\x35\xdd\xbb\
+\x23\x2a\x20\x6a\x3a\x58\xd5\x0b\x54\x44\x73\xbe\x2c\x40\x4a\x66\
+\x51\xaa\x5f\x93\xf9\x54\x9a\x86\x2a\x0c\xe8\x7e\x49\x3e\x70\x29\
+\x98\x9b\x92\x41\x35\x08\x52\x1c\x96\x10\x89\xe8\x71\xe3\x96\x46\
+\x00\x45\x22\x58\x95\x78\x60\x28\x94\xfb\x61\xda\xa4\x06\xad\xc0\
+\xa0\xce\x33\xac\x60\xba\x02\x71\xcf\x99\x11\x38\x88\xac\x29\x50\
+\xb1\xe2\x80\x15\x3b\x12\xe8\xd1\x22\xde\x5e\xc5\xd3\x30\x11\x38\
+\xd4\x6c\x8a\x0d\x8c\xcf\xaa\xb4\xc6\x2e\x0a\x0c\xf5\x75\xe2\xae\
+\xeb\xe3\xb8\xc3\x1c\xc0\xce\xdd\x7b\x31\xbf\x50\x8c\x76\x87\xa1\
+\xf4\x39\xab\x3c\xf7\x5b\xe3\x7b\x7f\xf0\xba\x5b\x73\x18\x48\x85\
+\x81\x15\x84\xf0\x58\x52\x0f\x50\x11\xcd\xb1\x2a\x8d\x0e\x8c\x5a\
+\xc8\xa4\x98\x62\x25\xc4\x89\x40\x30\x13\x36\xa5\x98\xa5\x2e\x4f\
+\x37\xd0\xf7\x54\x65\x3c\xe7\x92\x36\x09\xa4\x22\x59\x94\x70\xe5\
+\x75\x0f\x2c\x0f\x66\x0d\xdc\x2e\xbf\xff\x3c\x62\x71\x4f\xb0\xaf\
+\xda\x05\x31\x12\x60\x79\x36\x2c\x0d\xbb\xf2\xd7\x1b\x03\x8d\x01\
+\x56\xec\xdb\xc5\x83\x95\xff\x56\xb1\x60\x05\xd1\xf0\xce\x20\x28\
+\x07\x36\xc2\x44\x50\x08\xbf\x22\x9b\x0a\x61\x55\xe2\x08\xa0\x27\
+\x63\x23\x39\x6c\xbe\x7e\x14\x83\x3d\xd9\x66\xbb\xc3\x54\x41\xed\
+\xff\x59\x5d\x18\xff\x83\xc9\xfd\x0f\x9e\x84\xb3\x5b\x0c\x3b\xb2\
+\xc7\xde\x59\x13\xd6\xa4\x02\x31\x63\x69\xa5\xea\x17\xc6\xb2\xf8\
+\xe3\xe6\x9b\xa8\x22\x90\xd1\x90\x4d\x85\xb0\x2a\x42\x34\x15\x31\
+\x91\x61\x2a\x9f\x72\x84\x8f\x05\x84\x38\x20\x25\x4d\xf4\x0c\x61\
+\x51\x06\x00\x15\x05\x4e\x44\x7b\x22\x08\x55\x9d\xf2\x68\xce\x02\
+\x17\xa3\x75\x39\x31\x22\x60\xb1\x36\x2c\x6e\xc6\xb8\xf3\x86\xb3\
+\x3b\xe4\x44\xae\x7b\xce\x82\x0b\x33\x45\x80\x41\x25\x69\xb9\x60\
+\xd5\xab\x18\xb0\xa9\x90\x51\x40\x8d\x61\x5d\xfd\xde\xca\xac\x4a\
+\xf5\x9b\x4a\x11\x5c\xb3\xb6\x1f\x77\x5c\x37\x82\xee\xce\x68\xa3\
+\xf9\xf4\xf4\x0c\xb6\xed\x78\x09\x07\x0e\xbd\x03\xdb\x8e\x74\x87\
+\x29\x50\xbb\xf6\x57\xe5\xe9\x13\x7f\x36\x73\x64\xeb\x14\xe4\x91\
+\x3d\xdd\xb1\xe9\x6f\x6c\x89\x0b\x54\x26\x60\xa4\x0b\x0f\x49\xdb\
+\xbc\x79\x54\x3c\x80\xe8\x8c\xdf\x61\x5d\x53\x1c\x2b\xcb\x20\xdc\
+\xff\x3a\x95\x4f\xd5\x73\xa1\x89\x5c\x7d\xbc\xfb\x0e\x9a\x06\x52\
+\x42\x35\x6a\x80\xd2\x80\x93\x39\xa1\x62\xb5\x02\x39\xbd\x7f\xca\
+\xb1\xa9\xe0\xa2\xb0\x8e\xc2\x6c\x7f\x7d\xc0\x72\xfb\xcd\x2e\xb3\
+\x02\xee\x5c\x50\x05\xc3\xd6\x3d\x87\xc8\xa6\x84\x49\x99\xc2\x85\
+\x89\x5e\xdb\x9c\xbf\x8e\x9c\x0a\xc8\xe2\x13\xe2\xb3\x2a\x9f\xc1\
+\xc1\x59\xbf\xac\x2d\x93\xc6\x8d\x57\x0e\xe2\xa6\x2b\x9d\xdd\x61\
+\xec\x10\x94\x22\x84\xe0\xfc\xf9\x0b\x78\x7a\xdb\x6e\xd3\xdd\x61\
+\xc6\xa9\x55\xfe\xd3\xf9\x33\xaf\x7d\x7f\xe1\xfc\xbe\x02\xe4\x91\
+\x3d\xef\xa6\xc5\x55\xf5\x1a\x02\xad\x38\x40\x15\x07\x8c\x10\x91\
+\x96\xfb\xa5\x30\x78\x07\xea\x6e\xa6\x10\xc3\xb1\x25\x22\x9c\x33\
+\xbf\x61\x8d\x26\xea\x5f\x55\x33\xb8\x51\x3e\xbf\x0d\x21\x76\xa9\
+\x7a\x41\x8a\x04\x75\x70\xe9\xa5\xf6\x19\xce\xa9\x52\x5e\x4a\x0e\
+\x7e\x63\xdd\x03\xca\x1e\xb1\x80\x2d\x82\x56\x28\x60\xa9\xd8\x15\
+\x05\x4f\x8e\x62\x6c\xd2\x00\x7e\x8a\x80\xb4\xbd\x55\xc4\x64\x50\
+\x1f\x40\x42\x46\x01\x83\x9b\xc3\x1b\xd6\x8d\x58\x95\xe2\x1a\x76\
+\x75\x64\x70\xfb\xb5\xc3\xb8\x76\x5d\xbf\xef\x0e\xc3\x12\x41\x3e\
+\x9b\xe7\x0e\xb3\xdb\xd0\x1d\x86\x1e\xb3\xab\xc5\x3f\x98\x3e\xf4\
+\xe4\xc3\xd5\xf9\x8b\x16\xd4\x23\x7b\xa6\x80\x13\x07\xc4\x22\xc5\
+\x14\xa8\x1a\x06\x23\xc5\x2f\x9b\xaf\x29\x38\xa5\x37\x41\x99\x34\
+\x5f\x88\x97\x50\x2b\x84\x71\xf9\x49\x58\x60\x08\x57\xf9\xb8\xdc\
+\x3e\x48\x71\x94\x47\x60\x32\x06\x4c\x8b\x6b\xb2\x0c\x52\x6a\xbb\
+\x15\xcb\xe6\x54\x97\x88\x68\xc2\xe3\x49\xc0\xa6\x82\x42\x9c\x97\
+\x8b\xe1\x55\x34\x0a\xb0\x88\x7b\xce\xb2\x2b\xaf\x9f\x75\xee\x28\
+\xc3\xb2\x16\x15\x78\x68\xe6\x57\xe9\x5e\x51\x3f\xca\x84\x4d\x79\
+\xbf\x3a\x56\xc5\x00\x26\x6c\xa0\x3f\x97\xc5\x7b\x36\x8e\x60\xfd\
+\x48\xf4\xee\x30\x56\xad\x86\x37\x0e\xb8\xee\x30\x79\x03\x77\x18\
+\x6a\xbf\x5a\x2b\xe5\x7f\x67\xe2\x8d\x7f\x78\x11\xd4\x66\x6f\x59\
+\x18\x08\x99\xfe\xea\xf2\x23\x24\x0d\x27\xcd\x56\xfd\xc2\xc0\x48\
+\x0c\x6f\x1e\x89\x12\x8b\x0c\xa1\x46\x6a\x36\x45\xc2\xb2\xf0\xbf\
+\x1a\x36\xa5\xec\x8c\x90\x99\x3b\x15\x18\x10\x07\x2f\x1c\x20\x09\
+\x6c\x8c\x6d\xaf\x5f\xbf\x08\x4a\x24\x94\x45\x11\xfe\x3f\x05\x7b\
+\x8a\x06\xa7\x38\x37\x8f\x6a\x32\x3a\xe0\x44\x82\x34\xde\x66\xad\
+\x61\x80\xe5\x5e\x0f\xd1\xdf\x0e\x0c\xb3\x71\xc2\xa3\x76\x94\x61\
+\x47\xd3\x88\x6c\x5c\xf7\x49\x10\xf3\x1e\xa9\x54\x40\x18\x18\xd6\
+\xfd\xbe\xc4\x61\x55\xbc\xac\x1e\xec\xc2\x5d\x9b\x56\x63\xa8\x5f\
+\xbd\x86\x94\xdf\x95\x14\x41\xb9\x54\xc6\x4b\xaf\xec\xc5\x8b\xaf\
+\x18\xb9\xc3\xd8\xd4\xb6\x9e\xac\x2e\x5c\xfa\xbd\xa9\x03\x3f\x3e\
+\xc4\xdc\xa1\x56\xa9\x7a\x51\x20\xa6\x14\x13\xa0\x32\x01\x1d\xd3\
+\xbc\xaa\x32\x48\x2b\xac\xe9\x22\x9b\x32\x55\x5a\x82\x64\xf1\xd8\
+\x54\xa8\x01\xdd\x2f\x92\x57\xf9\xe0\x57\xc3\xb3\x25\x22\xc6\xb1\
+\x4d\x88\x09\x52\x61\x2c\x4a\x0b\x50\x8a\xcb\xc4\xf1\xae\x98\x9f\
+\x98\x80\x4d\xf9\xff\x05\x77\xdc\xeb\xaa\x0b\x36\xa1\x80\x25\xec\
+\x28\x53\x0f\x58\x05\xa3\x81\xec\x48\x9a\xde\xb8\x2e\x39\x11\x87\
+\xbc\x6e\x52\x54\x1c\x56\xe5\xb7\x03\xbe\x11\xdf\x73\x6a\xde\xb0\
+\xba\x17\x77\x5e\x37\x82\xde\xee\x76\xd9\xb7\x8f\x01\x3b\xdf\x1d\
+\xe6\xf9\x57\xf1\xfa\xfe\xc3\x26\xee\x30\x65\x6a\x57\x7f\x50\x9e\
+\x7a\xe7\x6b\x33\x47\x9f\x65\xdd\x61\x1a\x65\x49\x61\x8f\x42\x5d\
+\x2a\x60\x23\x36\x2a\x31\xbc\xde\xdf\xa6\x88\xe8\xd7\x67\x52\xbb\
+\xf7\xba\xaa\x41\x2d\x3e\x9b\x12\xde\xf9\xd0\xde\x72\xcd\xe4\x18\
+\x14\x0b\x52\x7c\x10\xd7\xd6\x98\x20\x15\xce\xa2\xd4\x00\xe5\xa7\
+\x6c\x90\x55\xf1\xa0\xc4\xd4\x2f\x6c\x14\x1a\x84\x6b\x00\x8b\xb8\
+\xe0\xc2\x00\x91\xa7\x0a\xb2\x76\xab\x38\x60\x85\x10\xe3\xba\x18\
+\x61\xbc\x63\x4c\x3d\xac\x4a\x34\xca\x53\x20\x93\x4a\xe1\xba\xf5\
+\xfd\xb8\xf5\xaa\x21\x74\x64\xd3\x01\x18\xb3\x00\xcb\xdc\x6b\x67\
+\x77\x98\x97\x70\xf8\xd8\x29\x13\x77\x98\xbc\x5d\x2b\xff\xc5\xc2\
+\xb9\xd7\xbf\xb3\x70\x6e\xef\x1c\xf8\xe9\x07\xaa\x5b\x1d\x87\x25\
+\x35\x13\xdc\x00\x44\x03\x95\x29\xc8\xc4\x0d\x47\x44\x78\x3c\xd1\
+\xd0\x00\xbe\x72\xc5\x2a\x9d\x26\x3d\x8c\xc1\xa6\xbc\x76\x28\x0d\
+\xe8\x60\xd5\x4b\x7d\x39\x62\x9b\x39\x30\xe1\x22\x63\x80\x54\x0c\
+\x80\x92\x00\x53\xd1\xf3\xf0\x40\x45\x32\xe1\x51\x0c\x80\x8b\x30\
+\xf1\x94\x03\x34\xd5\xf6\x57\xfe\xe8\x1c\xd1\xa8\x82\x7e\x3a\x3d\
+\x58\xc9\xf8\xa3\xb7\x57\x89\x1b\x82\xb2\x2a\xa0\x34\x11\x14\x02\
+\x88\x71\xd3\x15\xe2\xb0\x2a\x02\x1b\x14\xd9\xf6\x34\x6e\xbe\x6a\
+\x15\x36\xad\xef\x47\x5b\x3a\x05\x3b\x84\x7f\x10\x02\x9c\x3c\x79\
+\x06\x4f\x6f\xdb\x8d\xd3\xe7\x2e\x19\xd8\xa3\xe8\x39\xbb\x5a\xf8\
+\x93\x99\x63\xcf\xfe\x43\x65\xf6\x6c\x05\xc1\xea\x07\x61\x00\x13\
+\x05\x36\x3a\x96\x14\x15\x1e\x05\x66\x00\x9a\xe7\xeb\x17\x37\x9c\
+\x18\xa4\x8d\xdd\x08\xb9\xf0\x38\x45\xf3\x4d\xaa\x97\x4d\x71\x60\
+\x18\x06\x76\x24\x48\x23\xb3\xaa\x20\xc0\x07\x39\x0e\x4c\x1a\x07\
+\x29\xd1\x3d\x46\xc5\x9e\x94\x0c\x51\xb8\xa6\x51\x57\x98\x72\x89\
+\x5c\xa8\xa1\xaa\x78\xe2\xb3\x2c\x8e\x61\x29\xd9\x95\x7b\x6d\x54\
+\xaa\x60\x04\x58\x39\x20\x44\x02\x9b\x94\x5b\x33\x15\x98\x8e\x97\
+\x4e\xa7\x02\x4a\x6f\x55\xe8\xeb\xa6\x79\xdf\x15\xe8\x45\x6d\xa0\
+\xa7\xb3\x0d\xb7\x5f\x3b\x82\x2b\x47\x7b\x7c\xf7\x21\xbe\x58\x17\
+\x16\x09\x60\xdb\x36\xde\x3a\x78\x0c\xcf\x6c\x7f\xc9\xcc\x1d\x86\
+\xda\x6f\xd7\x4a\xb3\xbf\x3f\xf5\xd6\x43\xcf\xd8\xd5\x22\x05\xbf\
+\x44\x8b\x49\x8f\xea\x65\x49\xc6\xec\x49\x25\x61\x40\x55\x2f\x9b\
+\x8a\xcf\xbe\x68\xe4\xf3\x6e\x26\xe2\x1b\xcf\xfc\x72\x6c\xc6\x3f\
+\x0f\x99\x1a\xa0\xbd\x1c\xc2\xb1\xe8\x4e\x43\xd4\xb9\x94\xf5\x70\
+\xc9\x05\x00\x63\x6b\x51\x80\x50\x14\x48\x11\xfe\xbf\xf0\x39\x55\
+\x7c\x02\x45\xbd\x42\x7b\x74\x97\x45\x14\xaa\x86\xb5\x60\xe0\x8f\
+\x2a\x40\x4b\x06\x2c\xe2\x66\x52\x2e\x23\x0c\x05\x73\x32\x01\x2b\
+\x8e\x5a\x09\x6f\x5f\x4c\xd5\x2d\x36\xab\x52\xb2\x2b\x27\x70\x55\
+\x5f\x07\xde\xb3\x71\x04\xa3\x03\x5d\xee\x35\x51\xbf\xdb\x29\x42\
+\x50\xa9\x56\xb0\xe7\xb5\xfd\xd8\xf1\xc2\x5e\xcc\x17\xa2\xdd\x61\
+\x28\xb5\x76\x55\xe7\x2e\xfd\xde\xd4\x5b\x3f\xde\xeb\x56\x2b\x3e\
+\xd4\x51\xcc\xa6\x5e\x96\xd4\x30\xab\x6a\xc6\xcc\xf4\x26\xa4\xaf\
+\xdf\x98\x6e\x46\xdd\x62\x32\x2b\x81\x09\x99\xb1\xa9\x88\xe9\x08\
+\x22\x3a\x84\xaa\x7c\x0c\x6e\x70\xc6\x73\xa1\x62\x03\x90\x8a\x64\
+\x51\x5a\x80\x52\x5c\x39\xc5\x65\x0c\xc5\x29\x55\x24\x07\x5e\xc1\
+\xd6\x57\x40\xc0\xb4\x7c\x10\x62\x55\x42\x1f\x10\x9c\x84\xa2\x2a\
+\x68\x0a\x56\x3e\x30\x91\x08\x7b\x95\x97\x34\x84\x4d\x35\x87\x55\
+\x05\x87\xeb\x86\x72\xb8\x73\xe3\x08\x06\x7a\xb2\x4e\x1f\x58\xeb\
+\x3d\x47\xc4\x08\x0a\x0b\x0b\x78\xfe\x85\x3d\x78\xf9\x75\x23\x77\
+\x98\x1a\xb5\x6b\x0f\x95\xa6\xde\xf9\xea\xec\xd1\x67\x4e\x22\xb0\
+\x47\xe9\x46\xf0\x4c\x01\x24\x2e\x4b\xaa\x9b\x55\xe9\x80\xaa\xd9\
+\x6c\x2a\xaa\x9c\x06\x45\x7e\xd1\xe3\xcc\x44\x8f\x32\xa2\xeb\xf2\
+\x85\x5b\xd3\x35\xe5\x85\xb1\x2a\x45\x80\x04\x52\x7e\x79\xf5\x83\
+\x94\x9f\x52\xc6\x3d\xae\x4e\xa9\xbb\xaa\x40\xa3\x2b\xec\x09\x95\
+\xc0\x8b\x1f\xed\x73\xd2\xc8\xfb\xf5\x69\x96\x11\x46\xc4\x68\x9f\
+\xff\x5a\xb0\x3e\x77\x8c\x73\x8b\xc4\x6c\x64\x15\x30\xb8\x7a\x8a\
+\x89\xa0\x9c\x6a\xa8\x5b\x9d\x53\x33\x02\xe8\x15\x4f\x9d\xfb\x78\
+\xf5\xda\x5e\xdc\x7e\xcd\x30\xba\x3a\xf4\xee\x30\xde\x87\x65\x7a\
+\x7a\x06\xcf\x6c\xdf\x8d\xfd\x07\x8f\xc3\x8a\x76\x87\x29\xda\xb5\
+\xf2\x77\x0b\x17\xde\xf8\xd6\xfc\x99\x3d\xac\x3b\x0c\x98\xe6\x89\
+\xc7\xd0\xa4\x61\xcf\xeb\xfd\x35\x2d\x87\x93\x66\xad\x9e\xd0\x48\
+\x9a\xe6\x80\x96\x4e\x77\xe3\x00\x81\x28\x81\x02\xca\x5f\xa2\x2c\
+\x57\x9a\xd5\x2d\x55\x17\xce\xa6\x64\x9e\x12\xa4\xe1\xa7\x29\x88\
+\xc6\x73\xb6\xc8\x38\x20\x25\x02\x56\xd0\x2e\x13\x80\x92\xda\xab\
+\xb9\x5b\x62\xb0\xf2\x5d\xa3\x6c\x1d\xa2\x2d\xca\x0b\x95\x99\x8d\
+\xc7\xae\xd8\x89\x9e\x9e\x2a\x18\x35\x35\x41\x98\x75\x20\xcf\x20\
+\x67\xa6\x01\xa8\xd6\x8f\x62\x67\xad\x1b\x91\x01\xe9\xb5\xe3\x01\
+\x8f\xc5\x05\x0a\x8a\xb6\x4c\x0a\xd7\x5f\x31\x80\x1b\x37\x0c\xa2\
+\x3d\xc3\xae\x21\x25\x63\x08\x21\xc0\xd9\x73\x17\xf0\xd4\xb3\x2f\
+\xe2\xf8\xc9\x73\x61\xb7\xc3\xbb\xc6\x93\x76\xa5\xf0\xe7\xf9\x13\
+\x3b\xff\x73\x69\xea\x1d\xd1\x1d\xc6\x14\x40\x54\x0d\x8a\xea\x7d\
+\xa3\x69\x24\xc9\x68\x0a\x52\x9d\xc7\x65\x53\x71\xd3\xd5\x2d\x3a\
+\xf0\x50\x28\x2f\x11\xdd\x25\x11\x8d\x65\x38\x85\x66\xa4\x2f\xb4\
+\xd3\xcc\x89\x88\xab\x32\x23\x94\x5b\xa5\x74\x75\x69\x36\x48\xa9\
+\x00\x2a\x1a\xa7\x42\xaf\x2a\x1b\xe8\x3f\xa1\x22\x68\x71\x80\xa5\
+\xde\x0d\x99\x80\xf0\xb6\xab\x28\xb0\x82\x30\x7d\x80\x35\x47\x6b\
+\xed\x55\x01\x50\x82\x8d\x65\x40\xcb\x8c\x55\x29\xde\x74\xaf\x9d\
+\x04\xa0\x36\x45\x57\x36\x83\x5b\xae\x5a\x85\x6b\xd6\xf6\x23\x95\
+\x52\x6b\x8b\x81\x8a\x4b\x71\xe4\xe8\x09\x3c\xf9\xec\x6e\x5c\xb8\
+\x34\x65\x62\x34\x3f\x51\x2b\xe5\xff\x78\xe6\xd0\xe3\x8f\xd4\x4a\
+\xb3\x9e\x3b\x4c\x5c\xf6\x24\x86\x37\x9b\x2d\x19\x83\xa2\x89\x31\
+\xdd\x34\x7c\xc9\xc5\x5c\x35\xd1\xcf\x44\x6f\xb8\xbb\x51\x6c\x8a\
+\x73\x22\x56\xb3\x36\x0e\x30\x25\xe3\x39\x53\xb4\x62\xba\xb9\x1e\
+\xa4\x88\x54\x9d\x29\x40\xc9\x57\x80\xc4\x7f\x0a\x5c\x7b\x13\x5b\
+\x9f\x0c\x5a\x3c\x60\xe9\xd9\x95\x21\x58\x31\x4c\xc8\xb7\x49\x69\
+\xed\x55\x3a\x36\xa5\x67\x44\x5a\x62\x20\x00\x9e\xe4\x03\x48\x29\
+\xfa\x72\x59\xdc\x71\xed\x30\xc6\x86\x72\x5e\xcf\xd5\x45\xb9\xee\
+\x30\xfb\xde\x7c\x1b\xcf\xec\x78\xc5\xc8\x1d\x86\x52\xeb\xf5\xea\
+\xfc\xf8\x1f\x4e\xbd\xf5\xe3\xdd\xc1\x5e\x5e\x0d\x4d\x21\x68\xb6\
+\xc4\x05\x4a\x09\xa8\xe2\x82\x53\xbd\xec\x2b\xaa\x5c\xf3\xee\xb2\
+\x4f\xbe\x82\x9e\x04\x18\x40\xb8\x73\xb9\x15\x3a\x95\x8d\x05\x06\
+\xef\x97\x67\x38\xea\x79\x53\x2a\x36\xc5\xa3\x0d\xd7\x36\x3f\x56\
+\xad\xf2\x01\xea\xba\xb8\x76\x30\xf5\xa8\x40\x4a\xc9\xa2\x4c\x01\
+\x4a\x64\x62\xf5\xdc\x2b\x30\x2b\x4f\x8a\x9b\x85\xba\x07\x2c\x60\
+\xa9\xd8\x95\x31\x58\xf9\x23\x6f\x8c\xea\x07\xde\xb8\xce\xad\xed\
+\xa4\x71\x6b\x51\x83\x97\xf8\x1b\xe4\x15\xb7\x68\x57\xc9\xc8\x40\
+\x27\xee\xbc\x6e\x04\x43\xbd\x11\xee\x30\x24\x85\x72\xa9\x88\x17\
+\x5e\xda\x8b\x5d\x2f\xbd\x81\x62\xa9\x6c\xe0\x0e\x53\x7b\xa6\x3c\
+\x7d\xf2\x8f\x66\x8e\x3c\x7d\x08\xfa\xa9\x07\x6c\x35\xf5\x86\x37\
+\xcc\x92\xe2\x84\x9b\x1a\xd3\x4d\xc3\xd1\x60\x78\xc3\x52\xbf\xda\
+\x17\xa5\x9b\x1a\x34\x39\x92\x4d\x85\x30\x38\x45\x84\x6e\x61\x3e\
+\x36\x5d\x3d\x20\xc5\xba\xe8\xb0\xf5\xc8\x00\x25\xe4\x8d\x79\x39\
+\x7c\xa1\x8a\x6c\xc4\x05\x2d\x2d\x60\xa9\xd9\x55\x24\x58\x41\x8e\
+\x97\x8d\xeb\x60\xd8\x14\xaf\x02\x8a\x9b\x2f\x84\xdb\x99\xf8\x7e\
+\xc9\x6f\x25\xcb\xe0\x9c\xb2\xd7\xaf\xee\xc1\xed\xd7\x0c\xa1\xa7\
+\xab\x8d\x61\x7d\x6c\x83\x82\x76\xcd\xe5\xe7\xb0\x6d\xc7\x4b\x78\
+\xed\x8d\x43\xa8\xd6\xac\x28\x90\xaa\xd8\xb5\xf2\x3f\x14\x2e\x1d\
+\xf8\xb3\xf9\x53\x2f\x9f\x47\x30\xb2\xd7\xa8\xfa\xd5\x54\xc0\xa9\
+\xa3\x3e\x00\xad\xdd\x29\x39\x4e\x78\x63\x1f\x6a\xa3\x6a\x82\xf8\
+\x70\x40\x52\x97\x65\x34\x25\x41\x51\xa6\x9a\xc1\x05\x85\x29\x67\
+\xaf\x43\xad\xf2\x41\x8c\x63\x6b\x92\xb1\x51\x01\x52\xe2\xb2\x30\
+\xdc\x01\x07\x50\x52\xbd\x0a\x00\x35\x16\x37\xb9\xcf\x34\x18\x86\
+\x13\x00\x56\xc0\xb7\xb8\x35\xcf\x3d\x03\xba\x29\x58\xa9\x96\x66\
+\x41\xc0\x9e\xb8\x69\x09\xaa\x76\xea\x54\x41\xef\x97\x63\x53\x0a\
+\x30\xd3\xbc\x6e\x99\xb4\xb3\xd0\xdd\xcd\x57\xad\x42\x47\x7b\x5a\
+\xf2\xd9\xe3\x30\x94\x10\x5c\xba\x34\x8e\xa7\x9e\x7d\x11\x07\x8f\
+\x9c\xf4\xc1\x56\x2f\x74\xce\xae\x14\xff\x6a\xee\xd4\xee\xbf\x29\
+\x4e\x1c\x66\x77\x87\x69\xb5\xc4\x56\xe1\xea\x15\x16\xa8\x9a\xa5\
+\xf6\x89\xe7\xa6\xe1\xf1\x2f\x91\xea\x54\xa9\xfe\x29\xd4\x3e\x11\
+\x49\x04\x36\x24\xf9\x0e\x82\x8f\xd7\xa2\x9d\x48\x7b\x18\x40\x88\
+\xcc\xa2\xbd\x22\x9a\x85\xf9\xc4\xb6\x72\xa0\x63\x0e\x52\xa1\x0c\
+\x4a\xa1\x6a\x46\xdd\x0b\x5f\xa8\x98\x2c\xb8\x76\x2c\x68\x11\x3f\
+\x8c\xf8\x0c\x8b\xdd\x82\x9d\x55\x05\xa3\xc0\x4a\xf2\xcb\xe3\xec\
+\x55\x41\x73\x55\xeb\x48\x79\xe1\x4a\xc3\x7a\x08\xab\x92\x01\x2d\
+\x60\x77\x36\x05\xb2\x6d\x69\xdc\xb0\x61\x00\x1b\xc7\xfa\x91\x49\
+\x85\xed\x0e\xe3\x94\x70\xe2\xe4\x29\x3c\xb1\xf5\x05\x9c\x3a\x6b\
+\xe4\x0e\x73\xc1\x2a\xe7\xbf\x31\x73\x74\xeb\xff\xa8\xce\x8f\x8b\
+\xbb\xc3\xe8\x9a\xb8\xd8\xe1\xba\x73\xe3\xf0\x38\xc6\xf4\xb8\x6a\
+\xdf\xe2\x0a\x31\x0a\xd2\xc6\xd6\x83\x9e\xa1\x6c\x4a\xf3\xc2\xeb\
+\x67\xb2\xeb\xd8\x14\xcb\x6e\x88\x54\x1e\xd7\x06\x6d\xd1\x0a\x75\
+\x50\x97\x86\x29\x9f\x68\x2e\xaa\xf1\x35\x62\x12\x52\xe1\xc0\xb7\
+\x46\x11\x1e\xb0\xa8\xef\xff\x27\xb2\x2b\x33\xb0\xf2\xc1\x86\xa1\
+\x55\xd2\x0e\xc7\xaa\xd7\x42\x78\xd5\x74\xfa\x92\x88\x5f\x60\xeb\
+\x12\x58\x15\x05\x90\xeb\x6c\xc3\xad\x57\x0f\x61\xc3\xea\x1e\x1e\
+\xeb\x44\x10\x05\x40\x2d\x1b\x6f\xbd\x7d\x04\x4f\x6d\xdb\x8d\x89\
+\xa9\x59\x03\xa3\xb9\x7d\xa8\xb6\x30\xfe\x6f\xa6\xde\x7e\x74\x1b\
+\xb5\x2a\x36\xe4\x9e\x35\xaa\xa6\x45\x85\xc7\x79\x12\x1a\x9a\x02\
+\x61\x32\x3d\xa1\x19\xd2\x52\x30\x23\x82\xa1\x97\x3f\x53\x37\xa3\
+\x2e\xb5\x4f\x54\xb9\x42\x7b\x45\xd4\x65\xe9\x52\x19\x20\x25\x4f\
+\xe6\x84\x25\x63\x38\x90\x22\x32\x00\x29\x59\x97\x90\xc6\x2f\x4a\
+\xa6\xab\x6a\x58\x57\x74\x46\x3b\x10\x46\xb9\xac\x81\xba\xc7\x00\
+\x16\x0d\x4a\x56\xed\xc3\x17\x05\x56\x81\x41\x5b\x20\x41\x0c\x42\
+\x48\x2a\xa0\x60\x58\x37\x67\x55\xe0\xeb\x82\xfc\xe6\x0d\xf6\x64\
+\x71\xfb\xb5\xc3\x58\x3d\xd0\x85\xb0\xf7\x9c\x10\x82\x4a\xb9\x82\
+\x57\xf6\xbc\x89\xed\xbb\xf6\x18\xed\x0e\x43\xed\xda\xee\xca\xec\
+\x99\xaf\x4e\x1f\x7a\x62\x9f\x5b\x2d\xfb\x04\x2d\x25\x08\x35\x43\
+\xa4\x32\x9b\x6d\xa3\x32\x65\x5b\x42\x78\xa3\xd7\x29\xa2\x3a\x22\
+\xbc\xcf\x11\x3a\x98\x56\xed\x8b\xea\xa5\xce\x77\x50\x51\x2f\xef\
+\xce\xa2\xb0\x75\x09\x6c\x4a\x5c\xd7\x8a\xad\x97\x67\x72\x2c\xeb\
+\x8a\x9e\x9d\x2e\x6b\xaa\x44\x38\x17\x3a\x29\x82\x5c\xd4\xb5\x71\
+\x25\xd8\x86\xdd\x3f\x83\x1f\x44\x83\xb6\xc9\x3b\xca\x98\x83\x95\
+\xcf\x9d\x08\xe4\x39\x4d\x3e\x68\x41\xcb\xa6\x4c\x57\x3a\xe0\x32\
+\x49\xc7\x8e\xac\x59\xd5\x8d\xdb\xaf\x19\x42\x7f\x2e\x2b\x62\x9b\
+\x30\xb7\x8a\xa0\xb0\x50\xc0\x73\x3b\x5f\xc1\x4b\x7b\x0e\xa0\x6c\
+\xe2\x0e\x63\x55\x1e\x2b\x5e\x3a\xf4\x6f\xf3\x27\x77\x9d\x84\xbc\
+\xf2\x81\xae\xaa\xb8\xe1\x71\x59\x8f\x31\x3b\xaa\x47\x3c\xa0\x32\
+\x04\x14\x6d\x78\x9d\x00\xd5\x18\xd3\x22\xba\x00\x11\x10\x22\x4a\
+\x89\xa3\xf6\x11\x29\x0f\x89\xc8\x6b\x06\xa4\x91\x0d\x10\xd2\xa8\
+\x54\x3e\x6e\x0a\x01\x11\x6b\x0e\x63\x5d\x66\x00\xd5\xc8\xcd\x62\
+\x01\x93\x05\x2d\xd5\x7e\x7d\x61\x5b\x5b\x85\x82\x15\xaf\xf1\x49\
+\x01\x6a\x67\x61\xce\xa9\x06\xf2\xb0\xa0\x50\x8e\x77\xa8\xf8\x05\
+\x05\x48\x8a\xe0\xaa\xd5\x3d\xb8\xf9\xaa\x55\xe8\x56\xb9\xc3\x30\
+\x55\x10\x42\x30\x35\x39\x8d\xa7\xb7\xbd\x88\x37\xde\x3a\x06\xcb\
+\x32\x70\x87\xa9\x16\xff\x6e\xfe\xcc\x2b\x7f\x59\xb8\xf8\x96\xe8\
+\x0e\x13\x76\xe9\x5b\xa1\xfe\xd5\x9b\xae\xae\x7a\xa3\xa6\x27\x44\
+\x85\x37\x43\xa5\x8b\x5f\x86\x41\x0e\x62\x10\x5b\x8f\xda\xa7\x67\
+\x63\xec\xaf\x02\x30\x88\x2e\x8b\x01\x9b\x12\x54\x4e\xb5\xca\x47\
+\x84\xea\x59\x80\x31\x07\x29\xd1\x1e\xa6\x7b\x6f\x0c\xb6\x00\xf7\
+\xc5\x9b\x86\xc0\x95\xec\xb3\x29\x57\xd9\x12\xd8\x55\x6c\xb0\x62\
+\xe6\x43\xf1\xf6\xaa\x08\x36\xc5\x36\x8a\x9a\xa4\xd5\x30\x29\x0a\
+\xb4\xa5\x53\xd8\x38\xd6\x8f\x4d\xeb\xfb\xd1\xde\x96\x12\xe6\x6f\
+\x89\xd7\x0f\x38\x7b\xe6\x3c\x1e\xdf\xba\x0b\xc7\x4e\x9c\x0b\xbd\
+\xd6\x4e\xf9\x74\xca\xaa\xcc\x7d\x7b\xf6\xf8\x8e\xff\x5a\x99\x3d\
+\xa3\xdb\x1d\x66\x39\x4b\x43\x80\x55\xcf\xe6\x0e\xcb\x52\xc4\x97\
+\x3f\xac\x0b\x44\x99\x51\x50\x6d\x74\x6a\x9f\xb6\x64\x81\x99\xe9\
+\xe8\x5e\x38\x6a\xc5\xe9\xa4\x54\x1f\x0b\x52\x41\x98\xd0\x6f\x1d\
+\x48\x89\x2c\x4a\xc1\xa0\xe2\x80\x93\xd4\x6c\x26\xaf\xbf\xe2\xa6\
+\xfb\x9f\xc7\xb0\x4c\xf6\xe1\xd3\x82\x15\x37\xfa\x17\xe8\x6e\x66\
+\x4b\xb0\xc8\xac\x4a\x4a\x0f\xdd\x14\x05\xc0\x06\xd0\x91\xcd\xe0\
+\xa6\x0d\x83\xb8\x7a\x4d\xaf\xbb\x3b\x8c\xa8\xef\xb1\xef\x1f\xc5\
+\xa1\xc3\xef\xe0\x89\xad\x2f\xe0\xfc\xc5\x49\x13\x77\x98\x53\xd5\
+\xc2\xd4\xd7\x67\x0e\x3d\xf1\x98\x55\x99\xaf\x29\x9e\x96\x46\x59\
+\xcb\x52\x8a\x51\x9b\x4c\x67\xa6\x37\xda\x90\xd6\xf5\x52\x60\x00\
+\xaa\xda\xe5\x17\x19\x3a\x34\x31\xd0\xbe\x34\x2b\x85\x46\x74\xbd\
+\xa9\x6c\xca\x3b\x12\x41\x96\x4d\xc3\x02\x0d\x09\xc0\x22\x1c\xa4\
+\x14\x00\x45\xf4\xbd\x34\xc1\x2d\xe5\xcc\x6b\x37\xa3\x04\x58\x8a\
+\xdd\x62\x9c\x70\xc5\x82\x77\xec\xcb\x2f\xaa\x61\x60\x9e\x7e\x49\
+\x75\x23\xd0\xce\x0f\xe0\xd0\x48\xfc\x95\xf4\x4a\xbf\x7f\xbd\xdd\
+\x6d\xb8\xed\xaa\x21\xac\x1d\x8a\xde\x52\xbd\x56\xab\x61\xef\xbe\
+\xb7\xf0\xf4\xf6\x97\x31\x33\x3b\x1f\x3d\xb2\x67\x5b\x6f\x54\xf2\
+\xe7\xfe\x78\xfa\xd0\xe3\xbb\x0d\x76\x87\xd1\xf5\x28\x2a\xbc\x51\
+\x60\x6b\x05\x00\x72\x65\x36\xd3\x98\x6e\x0a\x48\x4d\x01\x2e\x1d\
+\x61\x61\x7f\x4d\x26\x26\x9a\x10\x9a\xe8\xba\x64\xb6\x14\x0a\x8e\
+\x71\x58\x94\xb2\x4e\xbd\xca\xc7\xe3\x2f\x0b\x3c\xf1\x41\x2a\xce\
+\x26\xa5\xda\x66\x13\x80\x7d\x86\x39\xa2\x21\x02\x16\xcb\xae\x4c\
+\x56\xe7\x64\x18\x53\xd0\xa6\x10\x15\x10\x3c\x56\xe9\x58\x95\x38\
+\x02\xa8\x64\x55\x6e\x8d\xc3\xfd\x9d\xb8\xed\x9a\x55\x18\xea\xed\
+\xe0\x96\x0b\x96\x90\x80\x10\x94\x4a\x45\xec\x7a\xf1\x35\x3c\xff\
+\xe2\x3e\x33\x77\x18\xab\xfa\x5c\x69\xf2\xe8\x9f\xcc\x1e\x7f\xee\
+\x30\x73\xc1\xc3\x00\x61\xb1\x00\x67\xd1\x01\xac\x15\x33\xd3\x17\
+\x51\xfc\xb9\xcc\x8c\xef\x25\xfb\x35\xf5\x3e\xb3\xd0\x1a\x42\xb9\
+\xb9\x33\xfe\x03\xcc\xff\xaa\x9e\x50\x3e\x0d\x75\x1f\x7a\x75\x1e\
+\xee\x2b\xaf\x68\x03\x57\xbc\xb6\x1d\x44\x1d\xce\x76\x93\x92\xc0\
+\x47\x4e\x8c\x0b\x9a\x1e\xa4\x73\xcf\x29\x03\x62\x94\xb9\x8a\xec\
+\xeb\xef\x1d\x50\x16\x18\xd9\x3b\xa1\x7a\xe7\xd8\xb9\x46\x7e\xba\
+\x80\x89\x04\x61\x84\x63\x57\xbe\x6a\x17\x01\x56\x4c\xb3\xd4\x2a\
+\xa0\x7f\x63\xd9\x04\xdc\x13\x12\xe7\x51\xf3\xcb\xf0\x40\x6e\x6c\
+\x55\x37\x6e\xb9\x7a\x95\xeb\x0e\x43\x15\xe9\x83\xb6\xcf\xce\xe6\
+\xf1\xcc\xf6\xdd\xd8\xb3\xf7\xa0\x99\x3b\x4c\xb5\xf4\xe0\xc2\xf9\
+\xbd\x7f\xbe\x70\x6e\xaf\xb7\x3b\x4c\x2b\x54\xb6\xa5\x64\x4c\xb1\
+\xa4\x1e\xa0\x5a\x54\xe6\x14\x55\x6a\x57\x36\x83\xc1\xde\x4e\x10\
+\xd1\xc9\xd7\x7d\x11\x59\x23\x38\x7b\xae\x9d\x54\xe9\x96\xa3\x5f\
+\xb2\x58\x15\xae\x8b\x07\x5f\x17\x5b\x8f\x4a\xbd\x0b\x53\xfb\x14\
+\x75\x48\x69\xb8\x7e\xe8\xc2\x88\x74\xac\x5a\xdb\x8a\xbb\xe4\xa1\
+\xcc\x0a\xa8\x59\x14\xc5\xb2\x05\xc9\x29\x45\x60\x68\xdc\xc7\xc4\
+\x65\x5a\xdc\x8e\x32\x08\xd4\x3c\x4f\x15\x54\xae\x76\x00\x06\x90\
+\x3c\x50\x03\xe5\x3e\x3c\x51\xab\x72\x06\xec\x4a\x60\x55\xe2\x6c\
+\x75\x51\x53\xa4\x40\x3a\x45\x70\xf5\x9a\x5e\xdc\x78\xc5\x00\xb2\
+\x8c\x3b\x0c\xff\x36\x3b\x6d\x02\x21\xb8\x78\x71\x1c\x4f\x6c\xdd\
+\x85\xb7\x0f\x9d\x80\xad\xb9\x9e\x4c\x05\x73\x56\x79\xfe\x7b\x73\
+\x27\x5f\xfc\x4f\xa5\xa9\xe3\x8b\xe9\x0e\xd3\x0c\x69\x19\xf0\xad\
+\x70\x46\x05\x5c\xbd\xb6\x1f\xeb\x47\x7a\x24\x10\x00\xa0\x7e\x41\
+\xdd\x08\x9d\x1a\x14\xe4\x53\xa8\x54\x41\x06\x46\xeb\xe3\x1f\x3a\
+\x0e\x88\x98\x32\xfd\x10\x22\xa6\x25\xe1\xe5\x33\x85\xb2\x2a\x1a\
+\xd7\x53\xa1\x7f\x92\xfa\x07\x1e\x58\x38\x75\x4f\x0a\x03\x84\xd2\
+\x35\x71\x41\x1f\x26\xf2\x65\xec\x3f\x39\x03\xcb\xe2\xe3\xa8\x70\
+\xe4\xb7\x81\x61\x5a\x22\xc3\x52\x6e\x6f\xc5\x4e\xca\xe4\x96\x7d\
+\x11\x96\x12\x16\x27\x6c\xfa\x7d\x50\x4f\x33\x30\x7f\x55\x9c\x7a\
+\x6c\x00\xed\x6d\x69\x6c\x5a\xdf\x8f\xeb\xd6\xf6\x21\x93\x26\xae\
+\xba\xa7\x2f\xec\x9d\x77\x4e\xe1\xb1\xa7\x76\xe2\xe4\x99\x8b\xc1\
+\xc7\x54\x27\xd4\xbe\x58\x2b\xce\x7c\x6b\xe6\xe8\xd6\x07\x6b\x85\
+\xa9\x32\x5a\xc7\xa4\xa2\x3b\xbc\xcc\x8c\xee\x2b\x1e\xa8\xda\x32\
+\x29\x64\xdb\x9c\x8f\x0e\xfb\x52\x07\xe7\xce\x7f\xe2\x4b\x1e\xbc\
+\xc7\x8a\x35\x99\x04\x84\x89\x05\x3e\x5e\x06\xca\x03\x25\xa8\x0e\
+\xd4\x54\xf5\x08\xcc\x8c\x0d\x15\x9e\xf4\xb0\x32\xe2\x80\x94\x10\
+\xa2\xbe\x56\x0a\x21\x84\xa0\x3d\x53\x73\xea\x10\xdb\xc6\x1e\xf9\
+\xe0\x44\x83\xa2\xfd\xa9\x05\x40\xf8\xf6\x56\x6a\xb0\xe2\x30\x08\
+\x02\x16\x45\xb2\x2a\xc5\x08\x20\x82\x79\x59\x62\x06\x6a\x03\xb9\
+\x8e\x0c\x6e\xba\x72\x10\xeb\x87\x73\x81\xda\x0d\xe6\x8d\x66\xee\
+\xb3\x65\x59\x38\xf0\xd6\x61\x3c\xbe\xf5\x05\x4c\x4c\x1a\xb8\xc3\
+\xd8\xd6\x91\xea\xfc\xc5\x3f\x9d\x3e\xf8\xf8\x36\x6a\x57\x03\x0d\
+\x3c\x11\x00\x2b\x14\xa8\xc4\x3b\xa8\xf2\x15\x65\x3e\xb2\x7c\x46\
+\xe9\x3c\xfc\x99\x90\xa8\x7f\x48\x1d\x52\x9d\xe2\xcb\xc4\x54\x15\
+\x7e\xee\xbe\xbc\x9e\x1d\x2d\xac\xf9\x21\xdd\x61\x08\x8c\x90\x47\
+\x82\x24\x21\x1d\xd1\xe6\x97\xc5\xe7\x46\x8c\x55\x4b\x91\x87\x01\
+\x48\x1a\x4c\x98\x0a\xda\x8c\x30\x9b\x14\x78\x1b\x22\xd8\xfd\xf7\
+\xfc\x40\xe1\xe2\xd7\xc1\xaa\x24\xe0\x23\xfe\x4c\xf9\x81\x9e\x2c\
+\x6e\xbd\x7a\x15\x46\xfa\x3a\x41\x43\xae\x08\x21\x04\x95\x4a\x05\
+\x2f\xbf\xb2\x0f\xcf\xee\x78\x15\x73\xd1\xee\x30\xa0\x56\xf5\xe5\
+\xf2\xcc\xc9\xaf\xcd\x1c\xd9\xba\xcf\x6d\xc5\x52\x33\x9a\x65\xc5\
+\xa6\x80\xfa\x80\xca\x14\xed\x5b\xfc\x55\x20\x75\x97\xae\x7c\x4d\
+\x89\x32\x32\x24\x9f\x41\x1d\x22\xbb\x21\xaa\x44\x92\x96\x26\x9d\
+\x87\x37\x40\x47\x63\x64\x3a\xa4\x9a\x1b\x16\xc9\xc0\xc2\x6a\x24\
+\x0e\xc3\xf3\xd9\x94\xc8\x66\x3d\xa1\xfc\xab\x4d\x5c\xc0\xf0\x18\
+\x16\xb7\xe0\x9d\xe1\xf6\x56\x9a\xd3\xba\x59\x55\x18\x36\x8c\x0e\
+\x76\xe2\x96\xab\x56\xa1\x3f\xd7\x0e\x6a\xeb\x52\x3a\xd7\x62\x61\
+\xbe\x80\x6d\x3b\x5e\xc6\x8b\xaf\xbc\x69\xe4\x0e\x63\xd7\xca\x4f\
+\x15\x2e\x1e\xf8\xb3\xf9\xd3\x2f\x9f\xc0\xd2\xa9\x7a\xcd\x12\xd3\
+\xb6\xc7\xee\xe3\xca\x62\x54\x91\x48\x11\x03\x4a\x48\x58\xb0\x61\
+\x39\x4a\x35\x33\x4e\xd5\xe6\xed\x25\x2a\x78\x95\xb5\x37\x7d\xc9\
+\x8a\xaa\xe2\x82\x14\x89\x4a\x10\x72\x9d\xfc\x5c\xc2\x7e\x7d\xe2\
+\xdc\x29\x2d\x58\x79\xf6\x2a\x76\x0a\x81\x6e\x7b\xf4\x30\x56\xa5\
+\xea\x94\x62\x84\xd5\x69\x13\xc1\x86\xd5\x39\xdc\x74\xc5\x00\x3a\
+\x3d\x77\x18\x05\x55\xf7\xae\xcb\xe4\xe4\x14\x9e\xdc\xfa\x02\xf6\
+\x1d\x38\x02\xcb\xb2\xa3\x8c\xe6\x45\xbb\x52\xf8\x6f\x73\xa7\x5f\
+\xfe\x4e\x71\xfc\xd0\x24\x96\xc6\x68\xde\x32\x60\x69\xb6\x34\x13\
+\xa8\x5a\xc8\xb4\x48\x64\x0c\x11\x5f\xda\x10\xbb\x92\x59\xc9\x8a\
+\x17\x99\x98\xe4\x23\x06\x21\xfa\x6c\x44\x09\x18\x3a\x36\x26\xc0\
+\xaa\x50\x06\xcb\x12\x45\x00\x26\x91\xc0\x25\x56\x15\xde\x0b\x42\
+\x02\xc3\x38\x27\x94\xfb\x01\xb7\x7e\x94\x57\x6c\xc4\x26\x0d\x5c\
+\x43\x42\x56\x3c\xe0\xe6\x3b\x29\x58\x95\x7a\xf2\xa6\x5a\xda\x32\
+\x29\x5c\xb3\xa6\x17\x1b\xc7\xfa\xd1\x9e\x21\x72\x5b\x84\x6b\x7e\
+\xe6\xcc\x39\x3c\xfa\xe4\xf3\x38\xfa\xce\x59\xff\x7a\x68\x85\xd2\
+\x99\x5a\x79\xf6\x3b\xf9\x63\xcf\xfd\x7d\x65\xee\xbc\xe7\x0e\x13\
+\x06\x06\x8d\x02\x4a\xb3\x01\x69\xd1\x01\x4e\x04\xaa\x56\xa8\x6b\
+\x0d\x97\x49\x6d\x0b\xd4\xb6\x61\x0b\xe3\x39\xec\x97\x9a\x30\xff\
+\x29\x5f\x5c\x8d\x01\x5c\x4a\xab\x53\x5f\xa4\xf5\x9a\xf8\xf3\x70\
+\x1f\x39\xa2\x01\x52\x22\x9c\x33\xed\xd7\xb4\x57\x9b\x5f\xec\x2f\
+\xd7\x27\xb9\x47\x52\xfb\xa4\x0e\x03\xa9\x54\x0a\xa9\x54\xd8\x87\
+\x9e\xb0\xb9\xa1\xbc\xcd\x84\x99\x49\xe5\x4f\x63\x72\x73\x18\x6e\
+\xd2\xc0\xab\x80\x4c\x55\xda\x79\x07\x6a\x26\xa5\xce\xc2\xab\x7f\
+\x94\x52\x74\xb4\xa7\x71\xc3\xfa\x7e\x6c\x18\xed\x41\x9a\x10\x79\
+\x8e\x14\x23\x94\x52\x1c\x3a\x74\x1c\x8f\x3d\xb5\x13\xe7\x0c\xdc\
+\x61\x28\xb5\x4f\xd7\x16\xc6\xff\xdd\xf4\xe1\x27\x1f\xb7\x2b\x05\
+\x4b\xb8\x68\xf5\x02\x40\x5c\x80\x5a\xb6\x80\xa4\x2b\x73\x59\xab\
+\x7e\x84\x10\x14\x0a\x45\xec\xd8\xf5\x2a\x3a\xb2\xed\xbe\x0a\xe0\
+\xc6\x46\x64\x56\x1e\xea\x13\x45\xc5\x9a\x42\x6d\xd4\x10\x74\x54\
+\x76\x6d\x60\x8c\xb6\xc6\x69\xaf\x9b\x58\x7c\x5b\x08\x21\xc8\x76\
+\x64\x31\xb2\x6e\x0c\xab\xd7\xae\xc5\xba\x55\xdd\xe8\xeb\x6a\x63\
+\x4c\xe7\x7c\xd3\x04\x13\x15\x87\x28\xc1\x21\x95\x01\x2b\x02\xac\
+\x82\xa9\x0d\x31\x66\x91\xeb\x08\x93\xa8\x22\x4a\x46\x75\x8a\xde\
+\xae\x36\xdc\x7c\xe5\x20\xd6\x0c\x76\xf1\xdd\x90\x8a\x72\xdc\x61\
+\x5e\x7b\xfd\x00\x9e\x7c\x76\xb7\xa1\x3b\x4c\x6d\x7f\x65\xf6\xcc\
+\x9f\xce\x1c\x7e\x6a\x37\x0d\xdc\x61\x28\xcc\x01\xa5\x55\xcc\x6a\
+\xc9\x55\xbb\x28\xf1\x80\x4a\x64\x3d\x51\xe7\x51\xe1\xa6\x12\x76\
+\x93\x00\x00\xa5\x72\x15\xfb\xde\x3a\xb6\xc8\x97\x72\xd9\xdf\xb7\
+\x45\x93\x8e\xce\xfd\xb8\xf1\x8e\x3b\xf0\x93\x9f\x78\x2f\xfa\xba\
+\xdb\xfd\x7d\xf6\x24\x12\x15\x62\x24\xf3\xc0\xc9\x07\xad\xa8\xa5\
+\x84\x19\xb0\x52\xba\xe6\x85\xb2\x29\x26\x91\x62\xf9\x17\x65\x52\
+\x57\x86\xfa\x3a\x71\xf3\x95\x03\x58\xd5\x93\xd5\x8e\xf4\x02\x00\
+\x49\x11\x14\x0b\x45\x3c\xff\xc2\x1e\xec\x78\xe1\x75\x14\x8a\x26\
+\xee\x30\x95\x9d\xc5\xf1\xc3\x5f\xcf\x9f\xd8\x79\x88\xb9\x3a\x8b\
+\xc5\x78\x9a\x21\x8d\xd6\x55\x2f\x18\x53\x20\x9a\x51\xd5\x0b\x58\
+\x4d\x05\xb6\x14\x21\x8d\xc1\x61\x6c\x59\xd4\xca\x96\xb5\x94\x4b\
+\x45\x1c\x3f\xf8\x36\xca\x1f\xbc\x15\xa9\xa1\x1c\x6c\xcd\xf3\x46\
+\xa0\x63\x92\xf2\x8e\xc8\xa1\x4b\x09\x33\xc6\x6c\xbf\x64\xcd\xda\
+\xe6\x6a\x56\xa5\x02\x23\xfd\x88\x9e\xd7\xf6\xb5\xab\xba\x70\xd3\
+\x95\x03\xc8\x75\x2a\xdc\x61\x98\x71\x47\xb8\xee\x30\x4f\x3f\xfb\
+\x22\x5e\x79\xed\x2d\x43\x77\x98\xe2\x43\xf3\x67\x5f\xfb\x8b\xc2\
+\x85\x37\xcf\x63\xf9\x3f\x5c\xcd\x56\x2b\x9b\xc2\x16\xeb\x55\xfd\
+\x9a\x0d\x58\x16\x12\x59\x96\x42\x08\x41\xa9\xb0\x80\xf9\xfc\x2c\
+\x40\x46\xa0\xb2\x2a\x13\xef\x43\xa2\xd1\x5b\x89\xab\x56\x05\x2a\
+\x1e\x03\x56\xf0\xe6\x7e\x89\x60\xa5\x61\x53\x41\xb1\x1a\x56\x25\
+\xab\x77\xbc\x31\x9d\x8d\x77\xdc\x61\xae\x5c\xdd\x83\xeb\xd7\xf7\
+\x21\xdb\x96\x0e\xd9\x78\xc1\xe9\xe7\xf9\x0b\x97\xf0\xd8\x53\x3b\
+\xf1\xd6\xc1\x77\x4c\xdc\x61\xe6\xad\xf2\xdc\x7f\xce\x9f\xd8\xf5\
+\xbd\xf2\xf4\xc9\x59\xa8\x8d\xe6\x54\xf8\xd5\x85\x9b\xa6\x6b\x34\
+\x3c\x4a\x9a\x0d\x50\x46\xa2\x02\xaa\x45\x37\xa8\xdb\xb5\xca\xe9\
+\x54\x5b\xd7\x02\x80\x9e\x26\xd7\x9b\x48\x13\x84\xda\x14\x95\x72\
+\x49\x0a\x67\xb1\x49\x87\x53\x01\x9b\x22\x2e\x40\x05\x13\x3d\xfd\
+\xd1\x3e\x04\xcc\x4a\x9c\xbd\xab\xf5\xc1\x83\x68\x08\x8f\x16\x16\
+\xd3\x6c\x0a\xb4\x67\xd2\xb8\x6e\x5d\x2f\xae\x59\xd3\x8b\x4c\x8a\
+\x70\xab\x1f\xa8\x48\xd8\xb1\xe3\x27\xf1\xf0\x13\xcf\xe3\xe4\xe9\
+\x0b\x26\xee\x30\x97\xaa\x85\xa9\x6f\xcf\x1e\x7d\xe6\xc1\x5a\x71\
+\xda\x73\x87\x91\x2e\x8d\xee\x92\x99\xdc\x96\x25\x0a\xaf\x37\x5d\
+\x1c\x91\xca\x8c\xc3\xa8\xe2\xaa\x73\xa6\x80\x47\xaa\x73\x17\x0e\
+\x65\x3a\x7a\xdf\x06\x49\xdd\xdd\x82\x4e\x27\xd2\x64\xe1\xc7\x33\
+\x18\x4b\xba\x72\xd0\xcf\x9b\xd6\x09\xdf\x60\xce\xa9\x83\xdc\xf6\
+\x56\x22\x31\x0a\x57\xd9\xf8\x36\xa9\xd5\x3f\xbe\xd5\x41\x5b\xba\
+\x3b\x32\xb8\x71\x7d\x3f\xd6\x0d\x75\x07\xab\x8b\xaa\xca\x75\xdd\
+\x61\xde\xdc\x7f\x08\x8f\x3d\xb5\x0b\xe3\x93\x33\x26\xee\x30\xc7\
+\x2a\x73\xe7\xfe\x6c\xe6\xf0\x53\xdb\xa9\x55\xf5\x76\x87\xf1\x2f\
+\x83\x2a\x8b\xe6\xbc\xa5\x2c\x25\x86\x2c\xb9\x11\x3f\x15\x92\xa9\
+\x59\xd4\x31\x2a\x3f\x99\x3d\xbe\x7d\xdc\x2a\xcf\x7d\x0d\xd4\xde\
+\x6f\xda\xf0\x44\x96\x46\xfc\x01\x48\x6f\x3a\x3a\x09\xec\x53\xaa\
+\x3f\x6f\xea\x3a\x11\xf2\xf2\x36\x78\x06\xe4\x88\x3c\xd9\x41\xb7\
+\xaa\x84\xd6\xa0\x2f\xac\x98\x21\x4e\x43\xeb\xef\xce\xe2\xce\x6b\
+\x87\x7c\x9f\x3d\x08\xd9\xfd\x73\x42\x50\xad\x54\xb0\xeb\x85\x3d\
+\xf8\xe1\xc3\xdb\xcc\x40\xca\xaa\xbe\x5a\x9a\x3c\xfa\xdb\xd3\x6f\
+\x3f\xf6\x2c\xb5\xaa\x61\x1f\x71\xf6\x17\x9a\x73\x44\xa4\x33\x55\
+\x17\xe3\xe6\xab\xb7\xde\x66\xb5\x5b\xca\xdf\x8a\xe9\x09\xf5\x30\
+\x2c\x3a\xbe\xf7\xef\x9f\x1d\xbc\xf1\x73\x17\x32\x5d\x83\xf7\x11\
+\x92\x5a\x0f\x42\xda\x22\x76\x6a\x54\xf5\x8d\x2f\xdf\x77\x6a\xe3\
+\xd4\x03\x45\x1b\xa8\x26\x9c\x49\xef\x17\x40\xc3\xd3\x29\x06\xc5\
+\x15\xd5\x11\xa9\x55\xda\xfa\x69\xd8\x9b\x21\xb4\x2d\x32\x9f\xae\
+\x0e\x90\x54\xa6\x2f\x95\xe9\xbc\x1b\x84\x64\xc3\x2a\xa3\x61\x2f\
+\x2a\x91\x8a\x0d\xa8\x04\x71\x95\x35\x7f\xda\x80\xbc\xee\xb9\xaf\
+\xc6\x69\x67\x9a\x2b\xda\x13\xa9\xfe\xf1\x0c\x6e\x75\x5f\x27\x6e\
+\xda\x30\x80\xbe\x6e\xf7\xf1\xa2\xea\x3c\x8e\x3b\xcc\x02\x9e\xd9\
+\xfe\x12\x76\xbd\xf4\x86\xa1\x3b\x4c\x69\x6b\xe1\xc2\xfe\x7f\x37\
+\x7f\xe6\xd5\x93\x90\x59\x54\xbd\xbf\xd0\x9c\xc7\x91\xc5\x56\xfb\
+\x9a\xce\xf0\x74\x40\x25\x9a\x29\xc5\x70\x5d\xfa\x46\xc2\xc9\xd4\
+\x5b\x3f\x3e\x00\xe0\x40\xba\xa3\xbf\x3d\x95\x6e\x4b\x79\x00\x42\
+\x29\x65\xbe\x99\xec\xf8\x33\x3c\xfd\x80\x0f\x77\xdf\x04\x7e\xbc\
+\x89\x7a\x2f\xb5\x58\x96\x62\x80\x9d\xad\x8f\x9d\x08\x14\xe4\xa1\
+\x7c\x1e\x22\xe5\xe3\xf2\x44\xa4\x45\x54\x5a\xa6\x6e\x1a\x9a\x3e\
+\x46\x79\x41\xdf\xa9\x5d\xb3\x73\x63\x77\xdd\xd0\xb5\xe6\x96\x1b\
+\x09\xd2\x5a\xa0\x52\xd9\x6d\x7c\xf6\xa4\xb0\xd9\x48\x9b\x8b\x0a\
+\x53\x06\x4c\x96\x12\xe6\xab\x8c\x1e\xbd\xe3\x6c\x5e\x8c\xa4\x08\
+\xc1\xd8\x50\x37\x6e\x58\xdf\x8f\xce\x2c\x6b\x34\x67\x52\xbb\x87\
+\x29\x42\x30\x31\x39\x85\xc7\x9f\xda\x89\xd7\xdf\x3c\x6c\xe2\x0e\
+\x53\xb2\x2a\x0b\xff\x30\x7f\xea\xe5\xbf\x2a\x4e\x1c\x9e\x84\x1e\
+\xa4\xa4\x8c\x88\x96\xb8\x46\xf6\xb8\xac\xc5\xb4\x9e\xa8\x36\x37\
+\x6b\x74\x50\x99\xde\x74\x66\xba\x0e\xb0\x9a\x15\xee\x49\x0a\x00\
+\xb1\x4a\x33\x96\xe5\x8c\x04\x6a\xc9\x7d\x93\x7f\xbd\x63\x93\x97\
+\xbc\xde\xb2\x4d\xea\x88\x53\x8e\x2e\x2e\x4e\xbc\x77\x6c\x83\xda\
+\x35\x68\x85\x06\xaa\x1e\x33\xe0\x2f\x89\x10\x48\xbc\x6f\x03\xf1\
+\xbf\x1c\x12\x58\x49\x4b\x09\x6b\x76\x1d\x96\x57\x37\x15\x76\x3d\
+\x96\x90\x2d\x58\x43\x2a\x93\x4e\xe1\xea\xd1\x1e\x5c\xbb\xa6\x17\
+\xed\x19\x12\xb1\x64\x30\x70\xfa\xf4\x59\x3c\xf4\xf8\x0e\x1c\x39\
+\x7e\xc6\x0d\x0b\x01\x29\x4a\x67\x6a\xa5\x99\xff\x98\x3f\xfe\xdc\
+\x0f\x2a\x73\x17\x54\xee\x30\xaa\xe3\x7a\xc1\x07\x9a\x7c\x61\x12\
+\x95\x77\xb1\xd5\xb8\xba\xea\x0b\x53\xfd\x5a\x31\xfa\x17\x56\xbe\
+\xf8\xb8\x49\x8c\x4b\xf8\x85\x26\xbe\x1e\x69\x65\x3f\xc3\xfa\xad\
+\x03\xf0\xb0\xeb\xa4\xcb\x17\x96\x2e\xea\x18\xfa\x71\xbb\x90\x8b\
+\x45\xf8\x6c\x32\xa3\x72\xc3\x19\xc0\x92\xb7\xb7\x0a\x5a\xa3\x77\
+\xbf\x8b\x56\xff\x54\x54\x8f\xda\x40\x47\x7b\x1a\x9b\xd6\xf5\xe2\
+\x8a\x91\x1c\x52\x06\xee\x30\x07\x0f\x1e\xc7\x43\x4f\xec\xc0\xb9\
+\x0b\x13\x26\xee\x30\x67\xaa\xf3\x97\xfe\xbf\x99\xc3\x4f\x3e\x6e\
+\x57\x8b\x35\xf0\x20\xd5\x2c\x26\x14\x56\x46\x54\xd9\x51\xf9\x10\
+\x33\xfd\x92\x19\xed\x4d\xa6\x27\xd4\xcb\x9a\xa2\x7e\x75\xe5\xc7\
+\xad\x37\xaa\x1c\x84\x94\x11\xd5\xb6\x46\xca\x08\x03\xa4\xa8\x38\
+\x56\x54\x71\x61\x61\xaa\xbc\xba\xf8\xa0\x4f\xc4\xec\x21\x24\x9a\
+\x03\xce\xc0\xed\x63\x90\x73\x10\x68\x78\x24\x00\x2b\x6e\xf3\x05\
+\x9e\x55\x85\x6d\xa6\xa0\xeb\x86\x14\x4a\x29\x7a\xba\xda\x70\xe3\
+\xfa\x7e\xac\x1e\xe8\x0c\xef\x93\xeb\x0e\xf3\xea\x9e\xfd\x78\x7c\
+\xeb\x8b\x98\x9e\x9d\x33\x71\x87\x39\x50\x9e\x39\xf5\x8d\xd9\x23\
+\xcf\xbc\x44\xa9\x25\x36\xb3\x11\x30\x42\x0b\xca\x88\x2a\xdb\x34\
+\x7d\xdc\xb6\xd5\x0b\x80\x52\x3b\x5a\x39\x3d\xa1\x9e\x32\x9b\x05\
+\x82\x26\xc0\xa0\x6b\x4b\x23\xc0\xd3\x2c\xb0\x8a\x93\x1e\x9a\xf8\
+\x30\x11\xdf\x6b\x6a\x90\x87\xd5\xaa\x98\x90\xe0\x97\xf0\xa7\x60\
+\xf7\xeb\xa3\x61\x30\xaa\xfd\x55\xab\x7f\xe1\x6d\x74\x60\x6e\x55\
+\x6f\x07\x6e\xbc\xa2\x1f\x03\xb9\x76\x80\x65\x6a\x42\x3b\x3c\x77\
+\x98\xe7\x76\xbe\x8a\x6d\x3b\xf7\x98\xba\xc3\xec\x2a\x8e\x1f\xfa\
+\xb3\xfc\x89\x5d\x07\xe1\x9a\x2b\x60\xfe\xd2\x86\xa9\x82\xf5\xa8\
+\x7c\x71\xeb\x6d\x16\x98\xc4\x91\x46\x54\x57\x00\xe6\x2e\x34\xcb\
+\x85\x55\x21\x46\x1a\xd3\x3a\xeb\x01\xa0\x7a\xfb\xda\x08\x58\xb1\
+\x62\xc2\xae\xa0\x48\x03\x7d\x3a\x02\x68\x1f\x1c\x79\x45\x0a\x2f\
+\xcc\xff\x23\xaa\x5c\xf0\x8d\xe6\xc1\x08\x1f\xe1\x54\x40\x9d\x1b\
+\x8c\xa6\x34\xe7\x48\x67\xa7\x72\x65\xcd\x60\x17\x6e\x5c\xdf\x8f\
+\xee\xce\x8c\x52\xd5\x0b\x70\xd0\x71\x87\x79\xe2\xe9\x5d\x78\x69\
+\xcf\x01\x43\x77\x98\xc2\x23\x8e\x3b\xcc\x7e\x6f\x77\x18\xf6\xba\
+\xb5\x0a\xa4\xea\x55\xf9\x10\x11\x6e\x92\x66\xb1\xd8\x54\x68\x1b\
+\xa3\x46\xfd\x1a\x0d\x8f\x93\xb7\x11\x96\x04\x98\xbf\xfc\x30\x28\
+\xcb\xa4\x7d\xf5\xb4\x5d\x97\x07\x11\x61\x26\xf1\x3a\x31\x49\x63\
+\xc4\xa8\x78\x43\xb5\x10\x0e\x7e\x29\x1b\x6f\x09\xdf\x00\xac\x22\
+\x4b\xe7\x0a\x14\xd5\xbf\x28\xa1\x70\xdc\x61\xae\x18\xe9\xc6\x75\
+\x6b\x7b\x5d\x77\x18\xaa\x2c\x1b\xa0\xbe\x3b\xcc\xc3\x8f\xef\xc0\
+\x81\x83\xc7\x61\x53\x44\x8d\xec\x2d\x58\xa5\xb9\xff\x92\x3f\xb1\
+\xeb\x7b\xe5\x19\xdf\x1d\xc6\xab\x3a\xce\x6f\x54\x9c\xaa\x6b\x61\
+\x69\x9b\x01\x6c\xcd\x60\x76\x51\xed\x6f\x28\xdc\x44\xf5\x6b\x15\
+\x7b\x32\x01\x87\xa8\xb6\x98\xd6\xa9\x2a\xb7\x55\x4c\x28\xea\xfd\
+\xaa\xc7\x0e\x05\xc3\x78\x20\x1c\xe8\x00\x75\xbb\xcc\x80\x4a\xd7\
+\x1b\xc8\x8c\xca\xb1\x47\x01\xa0\xaa\x25\x58\x58\x5b\x15\x94\x7b\
+\x2c\x4a\x2a\x5a\x58\x03\xa9\xe3\x0e\x73\xed\x9a\x1e\x5c\xb9\x3a\
+\x87\x4c\x8a\x48\xcb\xc4\x88\x6d\x3e\x7a\xec\x24\x7e\xfc\xd8\x76\
+\x9c\x38\x65\xe4\x0e\x33\x5e\x2d\x4c\xfd\xfb\xd9\xa3\x5b\x1f\xac\
+\x15\x67\xc4\xdd\x61\xe2\x02\x51\xb3\x59\x96\xe2\x6a\xc4\x2e\x4b\
+\x95\xdf\xa4\xec\x46\xeb\x34\x62\x53\x40\x7d\xa3\x7e\x8b\xc1\x9e\
+\x74\xe9\x11\x23\x6d\x33\xd5\x37\x2c\x51\x1c\x2b\x26\x4c\xca\x94\
+\x80\x88\x75\xd0\xe8\x5b\x1a\x64\x95\xd5\x40\xf7\x94\x65\x54\x3e\
+\x9b\xe2\xed\x4c\x61\x4d\x56\x26\x09\x5d\xe7\xc5\xf9\xbf\x2b\x9b\
+\xc6\xa6\xb1\x3e\xac\x5d\xd5\x15\xfe\x85\x70\xdd\x61\xf6\xbd\x71\
+\x10\x0f\x3f\xf9\x3c\xc6\x27\x66\x0c\xdd\x61\xce\x7f\x73\xe6\xf0\
+\x93\xac\x3b\xcc\x72\x01\xa9\x66\x00\x43\xa3\xe0\x03\x4d\xbe\xd0\
+\xcb\x1a\x37\xaf\xa9\x31\xbd\x95\xec\x29\x6e\x1d\xba\x7c\x30\x48\
+\xb3\x5c\xc1\x4a\x25\x51\x4c\x2a\xea\x18\x9a\x38\x5d\x6d\xf1\x18\
+\x15\x73\x95\x1d\x37\x3f\xfe\xb2\x07\xcb\x05\xb3\x1d\x90\x6d\x52\
+\x72\xa1\x1a\x3b\x95\x1b\x28\xa2\x44\x7f\x77\x3b\x6e\x58\xdf\x87\
+\xa1\xde\x0e\x00\x14\x3a\x6d\x2f\x05\x82\x72\xa5\x82\x5d\x2f\xbe\
+\x8e\xa7\xb6\xbd\x84\xb9\xf9\x82\x89\x3b\xcc\x9e\xd2\xd4\xf1\xaf\
+\xcf\x1e\xdb\xb6\x0f\x81\x39\x6e\xb9\x82\x94\xd4\x7c\xcd\x31\x0c\
+\xca\x32\x66\x3a\x21\x69\x1b\x65\x76\x9c\xc4\x59\x8f\xca\x14\x04\
+\x74\xe1\x71\x01\xa8\x91\x32\x9a\xa9\xbe\x35\x5a\x0e\x10\x0e\x14\
+\x71\xf2\xc6\xb5\x4f\x99\xa6\x33\x66\x54\x44\x79\x4e\xfc\xd7\xd8\
+\xd5\xf6\xe0\xd8\xac\xa8\xbf\x84\x0b\x54\x93\x33\xeb\x11\x26\xef\
+\x48\x5f\x07\x6e\x58\xdf\x87\xde\xce\xb6\xd0\xe2\x08\x21\x98\x9f\
+\x5b\xc0\xd3\xdb\x5e\xc4\xf3\x2f\xee\x33\x71\x87\xb1\x5c\x77\x98\
+\x6f\xba\xee\x30\xa6\xaa\x5e\x54\x7c\x2b\x41\xaa\x95\x80\xd1\x2a\
+\xd5\xce\x04\x4c\x01\xc4\xb3\x51\x89\xe7\x71\x18\x4e\xbd\x20\x16\
+\x27\x6d\xab\x18\x91\x4e\xef\x08\x8b\xd3\xa5\x47\x9d\x79\xa3\x8e\
+\xa1\x89\x83\xa2\x3c\x40\xfd\x40\xd5\x09\x1d\x44\x3a\x12\xb5\x35\
+\x03\xad\xcf\x58\xbc\xd9\xe9\x63\x43\xdd\xd8\xb8\xae\x17\x9d\xed\
+\xd1\x6b\x48\x4d\x4c\x4c\xe1\x91\x27\x9e\xc7\x6b\x6f\x1c\x82\x65\
+\x51\x13\x77\x98\x7f\x9c\x3f\xf5\xf2\x77\x18\x77\x18\xf1\xfa\x34\
+\x02\x1e\x4b\xc9\xc8\x9a\xa9\x56\x9a\xf4\x11\x06\x69\xc3\xd2\xfb\
+\x12\xd7\x29\xb9\x51\x96\xd4\x28\x8b\x69\x46\x7b\x5a\xc5\x96\xea\
+\x61\x57\xcd\xb4\x4f\xa9\xe2\xa2\xa0\x20\xa8\x4f\xb9\x85\x8c\xb9\
+\xc8\xab\xae\x9b\xe6\x33\x4f\x4d\x01\x64\xd2\x04\x57\xae\xce\xe1\
+\xea\xd1\x1c\xda\xd3\x29\x7e\x0d\x29\xb1\x6c\x02\x9c\x3a\x75\x16\
+\x3f\x7a\xf4\x39\x1c\x3e\x76\xda\x0f\xd3\x57\x40\x67\x6b\xa5\x99\
+\xbf\x99\x3d\xfe\xdc\x0f\xaa\x8e\x3b\x8c\xc2\x96\xa7\xec\x64\x33\
+\xd8\xcf\x62\x81\x94\xea\xb2\xc6\x2d\xcb\xa4\xbc\xa6\xa8\x7c\x9e\
+\xc4\xb5\x51\x99\xa4\x69\x44\xd5\xd3\x95\x15\x16\xbe\x94\x60\xa5\
+\x4b\x0f\xa8\xdf\xc1\x7a\xec\x53\xaa\xfc\xaa\x34\x71\x41\x4a\xbc\
+\xde\x0d\x01\x15\x10\x80\x40\xa8\xed\x3c\x4e\x79\x4c\x19\x94\x02\
+\x1d\x6d\x69\x5c\xb7\xb6\x07\x63\x43\xdd\x48\x91\xa8\xf2\x29\x0e\
+\xbc\x75\x14\x3f\x7e\xf4\x39\x9c\x35\x70\x87\x01\xb5\xcf\x56\xe7\
+\xc7\xbf\x35\x7d\xf8\xc9\xc7\xec\x6a\xa1\x26\x56\xaf\xb8\x5e\x40\
+\xf4\x0b\xbc\x1c\x41\xaa\x5e\x35\xcd\xa4\xff\xf5\x80\x91\xd1\x63\
+\x52\xcf\xcc\xf4\xa5\x66\x3e\xcb\x09\xac\x00\x73\x40\xd2\xa5\x0b\
+\xbb\x59\x51\xf1\x62\x7d\x61\xe7\x61\xe5\x34\x0c\x52\x00\x6f\xc8\
+\x6e\x42\x81\x5c\x19\xb9\xce\x0c\xae\x1f\xeb\xc3\x48\x7f\x87\x1b\
+\xa1\xae\x81\x10\x82\x5a\xb5\x86\x97\x5f\x7d\x13\x8f\x3e\xbd\x0b\
+\xd3\x33\x46\xee\x30\x6f\x55\x66\xcf\x7c\x7d\xe6\xf0\xd3\x2f\x52\
+\x6a\xb1\xd5\xc7\x55\x73\xe2\x02\x98\x69\x9e\x56\x81\xd4\x72\x61\
+\x6a\x91\xd2\xe8\x9a\xe9\x4b\xc5\x7c\x5a\x51\x3e\x2b\xa6\xea\x55\
+\x23\xea\x9e\x58\x66\xd4\x8d\x6b\xa6\xf1\x5c\x52\x69\x88\xef\x3a\
+\x5c\x9f\xd0\x90\xe6\xd3\xc8\x7c\xe1\x32\x98\x6b\xc7\xf5\xeb\xfb\
+\xd0\xdf\xdd\x1e\x9a\xc7\xd9\x5e\xad\x84\x6d\x3b\x5e\xc6\xb3\x3b\
+\x5e\x35\x75\x87\x79\xc1\xdd\x1d\xe6\x20\xf4\xf7\xa1\x11\xe0\x31\
+\x0d\x33\x4d\x1f\x96\x77\x29\x41\xaa\x1e\xf6\x69\x2c\xf5\xda\xa8\
+\xd8\xe3\x46\xc0\x04\x11\x65\xc5\xa9\x27\x2a\xad\x4a\xea\x55\xed\
+\xea\x61\x57\xba\xe3\x30\x75\x4e\xd7\x66\x20\xbc\x4e\xc4\x28\xcf\
+\x89\x37\xb4\x51\xc9\x94\x99\xca\x47\x2e\xe3\x51\xc4\x40\x93\x55\
+\xdb\xf8\xd5\x03\x9d\xd8\xb4\xae\x07\xdd\xd9\x4c\xf8\x45\x21\x04\
+\x33\x33\xb3\x78\xec\xc9\x9d\xd8\xfd\xea\x01\x54\x6b\xb5\x28\x90\
+\xaa\xda\xd5\xe2\x23\x0b\xe7\xf6\x7e\x6b\xe1\xfc\xbe\x73\x08\xdf\
+\x78\x81\x3d\xae\x07\xa0\xa2\xd2\xd6\x0b\x6a\xcd\x66\x5f\x51\x71\
+\x8d\x96\xaf\xbb\x1e\x91\x52\x0f\xa3\x6a\x44\xd5\x33\x29\xab\x55\
+\x60\x15\x55\x0e\x0c\xf3\xb1\x12\xc5\xae\x54\x69\x9b\x09\x46\xf5\
+\x1b\xcf\xe5\xfb\x40\x11\xf3\xe1\x09\x0a\xa2\x42\x6e\xca\xd7\xa2\
+\xf8\x0d\x5b\x93\x93\xc2\x59\xbc\x6e\xfd\x70\x97\xb3\x86\x54\x1b\
+\xb3\xa5\xba\x22\x1b\x21\x04\xe7\xcf\x5f\xc4\x8f\x1e\xdd\x8e\xfd\
+\x6f\x1f\xf7\xfd\x00\x43\x5a\xbd\x60\x95\xe7\xff\x73\xfe\xc4\xae\
+\xef\x96\xa7\x4f\xcc\x2a\xae\x9b\xc9\x8b\xd5\x8c\x17\x3a\x2a\xbe\
+\x95\x71\xf5\x96\x23\x5d\xcc\x88\xeb\x80\x18\x65\x69\xa5\x59\xdb\
+\x65\xb5\x5a\xd5\x33\x2d\x0f\x4d\xac\x83\x95\x7a\x47\xea\xa2\xca\
+\x84\xa2\x5c\x28\xd2\x35\x4b\xe5\xd3\xe5\x8b\x2f\x4c\xcf\xa9\x0b\
+\x3c\x1c\xf8\xf8\x58\xc5\x2a\x85\x51\x3b\xc6\x38\x76\xae\xb6\x74\
+\x0a\x57\x8f\x76\x63\xc3\x48\x0e\xe9\x14\xbf\x86\x94\x74\x11\x09\
+\x70\xe4\xc8\x09\x3c\xf8\xc8\x36\xbc\x73\xea\xbc\x89\xd1\x7c\xbc\
+\x56\x9c\xfe\xf6\xcc\x91\xad\xff\xd3\xdd\x1d\x46\x75\xff\xe2\x00\
+\x94\xee\x38\x0e\xb0\xb5\x02\xc0\x96\x82\x91\xc5\xb9\x0e\xb1\xa4\
+\x91\x35\xd3\x1b\x55\xc5\x9a\x05\x56\xac\x98\xa8\x7d\x26\x20\x07\
+\xc3\x36\x88\xe5\xc2\xb0\x4c\x28\xf2\x46\xa5\x37\x55\xe3\xe2\xa6\
+\x75\xd3\x99\x4e\x4f\x70\xd6\x38\x20\x62\xe9\x0a\x3e\x46\xd9\x34\
+\x54\x5f\x9e\x7f\x44\x1d\x77\x98\xeb\xd6\xf6\x62\xcd\x40\xa7\x33\
+\x8a\xa8\x9c\x24\x45\x7d\x77\x98\xbd\xfb\x0e\xe2\xc7\x8f\xed\xc0\
+\xa5\x89\x69\x83\x85\xee\xac\xe3\xd5\xb9\x8b\xdf\x98\x3e\xfc\xe4\
+\xb3\xb4\x56\x16\xdd\x61\xd0\xe2\xe3\x46\x40\x28\x2c\x5d\xa3\x69\
+\x1a\x2d\xb3\xde\x76\xc4\x92\x46\x37\x77\x58\x0e\x60\x15\x55\x07\
+\x10\x1f\xc0\x60\x90\x0e\x30\x07\xbb\x7a\x8e\xc3\x24\x2e\x10\x45\
+\x95\x4d\x89\x89\x8d\x4a\x20\x4c\x22\xa5\xe6\x2e\x84\xc4\x82\xa8\
+\x0f\x5c\xde\xca\x0a\xc1\x39\x40\x29\x45\x6f\x77\x1b\xae\x5f\xd7\
+\x87\xc1\x9e\xf6\xf0\x8e\x10\x82\x4a\xb9\x82\xe7\x5f\x78\x0d\x4f\
+\x3c\xb3\xdb\xcc\x1d\xc6\xae\xee\x29\x4f\x9f\xfc\xb7\x33\x47\xb6\
+\xbe\x2e\x5c\x3f\x13\xf6\xd4\xac\xe3\xe5\xa6\x06\xd6\x5b\xd6\xa2\
+\x82\x14\xd0\xdc\x5d\x68\x96\x2b\x58\xc5\x89\x63\x25\x0e\x20\x85\
+\xe5\x81\x41\x3e\x55\x1a\xc0\xec\xe6\xea\x54\x97\x28\x95\x4e\xf7\
+\xb2\x2a\x44\x54\xd9\x9c\xe2\xfd\x4a\x7c\xc4\x91\x55\x3b\x8e\x55\
+\x85\xc8\x70\x6f\x07\x36\x8d\xf5\xa2\xa7\xa3\x0d\x61\x66\x78\x42\
+\x08\xe6\xe7\xe7\xf1\xe4\xd6\x17\xb0\xe3\xc5\xbd\x28\x97\x4d\xdc\
+\x61\xca\x5b\x8b\x97\xde\xfa\xc6\xdc\xa9\x97\xde\x41\xf8\x9a\xe6\
+\xaa\x30\x13\x15\xa6\x59\x6c\xaa\x9e\x3c\x2b\x01\xa4\x1a\x96\x66\
+\x00\x55\xa3\x60\xd1\x88\x8a\xb6\x98\xf6\xa7\x7a\x0c\xe7\x51\xc7\
+\xaa\xbc\x50\x94\x65\x92\x2e\x2c\x7d\x14\x53\x33\x57\xfd\x38\x74\
+\x22\x3e\xca\x51\xaa\xb8\x20\x0c\x4a\xa9\xd9\x14\x05\x08\xb0\x6e\
+\xb0\x0b\xd7\xad\xe9\x41\x67\x7b\x3a\x62\xa6\x39\xc1\xf8\xf8\x14\
+\x1e\x7a\xec\x39\xec\xd9\x77\xd0\xc0\x1d\x06\x65\xbb\x5a\xf8\xef\
+\x73\xa7\x5f\xf9\xf7\xc5\x4b\x6f\x8f\x23\x00\x29\x53\x70\x52\x5d\
+\xf7\x7a\x01\x4a\x17\xde\x0c\xa0\x89\x9b\x37\x2e\x03\x6a\x14\xa4\
+\x1a\x06\xac\x66\x31\xaa\x66\x80\x15\x50\x1f\x80\xc5\x8d\xd3\xd5\
+\x03\x44\xb7\x0b\x21\x65\xc3\xb0\x4e\x95\x2c\x85\xca\xc7\xf7\xdb\
+\x60\xf5\x04\x2a\xe5\x14\x9e\x49\xca\x56\x44\xa5\x3c\x94\x49\x40\
+\x29\x45\x26\x45\xb0\x61\x24\x87\xab\x56\x77\xa3\x2d\x9d\x92\xcd\
+\x51\x4c\x00\x21\x04\x27\x4e\x9e\xc5\x83\x0f\x3f\x8b\x43\x47\xcd\
+\xdc\x61\xac\x72\xfe\xaf\x67\x8f\x3f\xf7\x5f\x2a\xf9\x73\x0b\x9a\
+\xeb\xd0\x28\x38\xe9\xe2\xea\x05\xa8\xa8\xb4\xad\x64\x4a\xad\x8e\
+\x6b\x48\x5a\xa1\xfa\xb1\xc7\xad\x52\xd1\xe2\x02\x4c\x3d\xec\x4a\
+\x15\xd6\x2c\xc0\x42\x48\x99\x88\xa8\x23\xaa\x2e\x13\x11\xf3\x1a\
+\x33\x2a\x81\x50\x05\xe1\xd4\x19\xf5\x93\x1a\xe5\x63\x58\x50\xbc\
+\x4d\x29\x3a\xda\x52\xb8\x66\x4d\x0f\xd6\xad\xea\x72\x76\x87\xf1\
+\x93\xaa\xd4\x3e\x8a\xfd\x07\x8e\xe0\x87\x0f\x6f\xc3\xd9\xf3\x86\
+\xee\x30\x85\xc9\x6f\xce\x1c\x7e\xea\x11\xab\x3c\xe7\xb9\xc3\xc8\
+\xc5\x86\x83\x4e\x9c\xb4\x8b\x05\x50\x51\xf1\xcb\x15\xc0\x1a\x96\
+\x66\xef\x94\xbc\x9c\xc0\x4a\x97\x1e\x30\x07\x33\x56\x74\xf1\x71\
+\x00\x0b\x9a\x32\xe3\xc6\xe9\xd2\x9b\xd4\xa9\x92\x58\x79\xfc\x8e\
+\x2b\x1e\x4d\x0a\x55\x58\xc0\xa4\x6c\x0a\xe4\x3a\x32\xd8\xb8\xae\
+\x17\x23\x7d\x1d\xa1\x2d\xf0\x76\x87\x79\xe9\x95\x37\xf0\xf0\x13\
+\x3b\x0d\xdd\x61\xac\xb7\x2a\x73\xe7\xbe\x36\x73\xe8\x89\x5d\xd4\
+\xb6\x54\xa5\x47\xbd\x48\x8d\xaa\x7d\xec\x79\x9c\x34\x71\xe2\x1b\
+\x01\xb8\x15\x07\x52\x40\xeb\xb6\x74\x07\x9a\x3f\x0d\xa1\x51\x36\
+\x24\x86\xd5\x3b\xdd\x40\x15\xaf\xab\x4b\x0c\xaf\xd7\x5e\x55\xaf\
+\xca\x67\x9a\x27\x82\x51\x11\xa8\xf6\x3f\x67\x9f\x4e\x0a\xf8\xce\
+\xc8\x41\x3c\xe5\x12\x52\x00\x83\xb9\x36\x6c\x5a\xd7\x8b\xbe\xee\
+\x76\x45\x59\x94\xad\x11\x85\x62\x09\xcf\x6e\x7f\x09\x5b\x9f\x7b\
+\x15\x85\x62\x29\x0a\xa4\x28\xb5\xaa\x3b\x4b\x53\xc7\xbe\x36\x7b\
+\x6c\xfb\xdb\x21\xfd\x8f\x0b\x4e\x61\xf1\x71\x8f\xc5\xcb\x16\x96\
+\xbe\x55\x2c\xaa\x91\xf2\x4c\xe2\x9a\x0a\x50\x9e\xb4\x02\xa8\xd8\
+\x8e\xc4\xb1\x47\xb1\xd2\x6c\x5b\x13\x62\x96\x17\x37\x1e\x9a\x34\
+\xad\x98\x7a\xd0\x4c\x95\x0f\xfe\xb9\xf1\xf4\x04\x41\xe7\xf3\xe3\
+\x1c\xb8\xa2\x52\xfa\xa0\xb2\xd5\x7d\x1d\xd8\xa8\x72\x87\xa1\x6c\
+\x2a\xf8\xee\x30\x8f\x3c\xf1\x3c\x5e\x7c\x79\xbf\x99\x3b\x4c\xad\
+\xf4\x50\xe1\xc2\x9b\xdf\x9c\x3f\xb3\xe7\x2c\xc2\x37\x02\x85\x22\
+\xbc\x5e\x70\xaa\x27\x5d\xb3\x00\x2a\x4e\x7c\x2b\x58\x57\x54\xfa\
+\xa6\x4a\x2b\x81\xca\x6b\xb8\x29\x10\x35\x6b\x94\x0f\x88\x0f\x70\
+\xf5\xc6\xc3\xa0\x0e\xd5\x31\x60\x76\x53\x4d\xd2\x36\x02\x5c\x88\
+\x93\x97\xb2\xff\x09\xc0\xa1\x66\x54\x8e\xa4\x08\xb0\x7e\x55\x17\
+\xae\x5e\xd3\x83\x6c\x26\x25\x81\x14\x7b\x4e\x08\xc1\xb9\x73\x17\
+\xf1\xe0\x23\xdb\xf0\xe6\x5b\xc7\x4c\xdc\x61\x0a\x76\xa5\xf0\xfd\
+\xb9\x53\xbb\xff\xaa\x38\x71\x64\x16\xfa\x7b\xd3\x08\xb3\x6a\x25\
+\xcb\x6a\x36\x18\xd5\x93\x67\xd9\xa9\x7a\xa2\xb4\x1a\xa8\xbc\x0e\
+\xb4\xda\x58\xce\x8a\xe9\xd4\x82\xa8\x3c\xaa\xf8\x7a\x8e\xc3\xa4\
+\x9e\xa9\x07\x51\x69\xeb\x01\x2e\x77\xc2\x67\x34\xab\xf2\x3b\x48\
+\x83\xae\xea\x5c\x5c\x28\xa5\x68\xcf\xa4\x70\xd5\xea\x1c\xae\x18\
+\xee\x76\x76\x87\x11\x0a\x63\x55\x3e\x02\xe0\xf0\x91\x77\xf0\xc3\
+\x87\x9e\xc5\xf1\x93\x26\xee\x30\x74\xc2\x2a\xcf\x7e\x6b\xe6\xc8\
+\x33\xff\x50\x5d\x18\x67\xdd\x61\x54\xfd\x8f\x0b\x5e\xad\x66\x59\
+\x51\x60\xa2\x0a\xaf\xa7\xac\xc5\x04\xb0\x96\xc9\x62\x00\x95\xd7\
+\x91\xc5\x06\x24\x28\xf2\x46\x01\x12\x9b\x07\x86\x65\x21\x22\x0d\
+\x0c\xf2\x84\xd5\x09\x4d\xde\x66\x82\x9c\x11\x48\x09\x19\xdc\x42\
+\x3d\xfd\x8e\x82\x9b\x8d\x4e\x81\x4e\xc1\x1d\x46\x07\x52\x81\x3b\
+\xcc\xdb\x78\xf0\x91\xe7\x0c\xdd\x61\xec\xe3\xb5\x85\x89\xaf\x4d\
+\x1f\x7a\xfc\x69\xbb\x5a\x8c\xf3\xf2\x34\x0b\x9c\x4c\xcb\x6a\x24\
+\x8d\x69\x7c\x54\x58\x54\x99\xcd\x00\xb0\x96\xca\x62\x01\x15\xdb\
+\x21\x53\xfb\x13\x14\xe9\x21\xe4\xad\x57\x75\x63\xcb\x06\xe2\x83\
+\x47\x3d\xaa\x9c\x0a\x68\xea\x05\x2d\xd3\x3a\xe2\xe4\xa9\xeb\x81\
+\xa3\xc2\x9f\x27\x3d\x5d\x6d\xb8\x7e\xac\x17\xab\x7a\xb2\xca\x4c\
+\x2c\x48\x39\xee\x30\x7b\xf0\xf8\xd6\x17\x91\x9f\x33\x71\x87\xb1\
+\xf6\x54\x66\xcf\x7c\x75\xfa\xd0\xe3\x7b\xc0\xb3\x28\x55\xf3\xa2\
+\xc2\x5a\x01\x4e\xa6\xe9\x9a\x09\x50\x8d\xc6\xc7\x05\xbf\x45\x01\
+\x28\x4f\x16\x13\xa8\xd8\x8e\xb6\xca\xfe\x14\x77\x6a\x01\x1b\xaf\
+\x0a\x37\x8d\x17\xeb\xd1\xb5\x13\x9a\xb8\x28\x80\xa9\x07\x80\xe2\
+\xb4\x3d\xc2\x98\x4e\xc3\xa1\xcc\x9d\x96\xee\xd9\xa8\x86\x7a\xb3\
+\xd8\x34\xd6\x2b\xef\x0e\x43\xd9\x1f\xea\xba\xc3\x2c\xe0\xc9\xa7\
+\x77\x61\xfb\x0b\xaf\x1b\xb9\xc3\x50\xab\xf2\x74\x71\xe2\xe8\x9f\
+\xe4\xdf\xd9\x71\x1c\xc1\x6e\xc5\xba\xfe\xd5\x1b\x56\x2f\x38\x85\
+\xc5\x99\xe4\x89\x03\x50\xf5\xe4\x5b\x51\x2c\x8a\x95\xa5\x00\x2a\
+\xaf\xa3\xad\x56\xf7\x4c\xe3\x4d\xc2\x4d\xe2\xc3\xda\x6e\x1a\xa7\
+\xeb\x77\x58\x5d\xf5\x4a\x2c\xd6\xe6\xe0\x14\xe5\x0d\xe6\xc2\x84\
+\x4f\x02\x8a\x75\xab\xba\x70\xdd\x5a\x77\x77\x18\xf0\x35\x70\xf6\
+\x28\x77\x77\x98\x1f\x3f\xba\x1d\xaf\xee\x35\x74\x87\xa9\x95\xfe\
+\xdb\xc2\xb9\xbd\x7f\xbe\x70\x6e\x2f\xeb\x0e\x23\xd4\x22\x35\x1b\
+\x06\xe1\x8d\x82\x57\x3d\xec\x49\x15\x57\x2f\x40\x99\xd4\xd9\x6c\
+\x35\x70\x51\x65\xa9\x80\x8a\xed\xf0\x62\xa9\x7b\xcd\x04\x2c\xd3\
+\x34\xba\x7a\x75\x71\x26\xea\x70\x23\x13\x4c\x75\x62\x60\xa3\x0a\
+\x9e\x59\x6f\xfe\x39\x3b\xe1\x33\xed\xb9\xc3\xb8\xbb\xc3\xc8\xeb\
+\xa7\x07\x01\x84\x10\x9c\x3c\x79\x16\x3f\x7c\xe8\x59\x1c\x3c\x7a\
+\xca\x0d\x0b\xad\x7b\xd6\xaa\x2c\xfc\x87\xfc\x3b\x3b\xbf\x57\x9e\
+\x3e\x61\xe2\x0e\x03\x83\xb8\x46\xc1\x6a\x31\x55\xc0\xb0\xf0\xc5\
+\x56\x03\x97\x44\x96\x12\xa8\xd8\x0b\xd0\x4a\x75\x4f\x77\x6c\x62\
+\x67\xaa\x07\xb0\xe2\xb0\x27\xc4\x28\x37\xae\xc4\xc9\x6f\x1b\x2d\
+\xf3\xe2\x0b\x03\x3d\x94\xa0\x2d\x93\xc2\xc6\x75\x7d\x58\x33\xd8\
+\x89\x34\x21\x8c\x63\xb1\xfa\xdd\xdf\x7f\xe0\x08\x7e\xf8\xd0\x36\
+\x9c\x39\x3f\x6e\x32\xb2\x77\xb6\x56\x9a\xfd\xfa\xcc\xe1\x27\x7f\
+\x54\x2b\x4e\xd7\x0c\xfa\xd4\x88\x0a\x28\x86\xb7\x42\x25\x8c\x9b\
+\x46\x97\x27\x0e\x00\xa9\xc2\x97\x3d\x8b\x62\x65\x39\x00\x15\xd0\
+\x5a\x75\xcf\x74\xa4\x0f\xa8\x5f\xb5\x43\x44\xb8\x2a\xae\x1e\x3b\
+\x95\xaa\x6d\x71\xd5\x40\x4d\x39\x26\x40\x45\x15\x21\x14\xbd\x5d\
+\x6d\xe8\xeb\x6e\xf3\xcf\x95\x95\xb2\xee\x30\x8f\xef\xc4\xd4\x4c\
+\xde\x64\x64\xef\xad\xda\xc2\xf8\x1f\x4d\xbd\xf5\xf0\x0e\x6a\xd7\
+\xd8\xb6\xab\x1b\xd3\x9c\xf0\xa5\xb4\x57\x35\x0b\xdc\x5a\xa1\x06\
+\x2e\xa9\x2c\x17\xa0\xf2\xc4\x14\x90\x4c\x80\x2d\x2c\x1e\x0d\xa4\
+\x89\x33\x47\xaa\x11\x95\xcf\x44\x9a\x61\xab\x72\xfa\x19\xc5\x6c\
+\x00\x77\xf2\x39\x95\xf4\xb4\xa8\xac\x84\x10\x14\x5d\x77\x98\xa7\
+\xb7\xbf\x62\xe6\x0e\x63\xd7\x9e\xaf\xcc\x9e\xf9\xa3\xe9\x43\x4f\
+\xec\x47\x60\x34\x37\x79\x89\x56\xb2\x0a\x28\x9e\x2f\x26\x40\x45\
+\xd5\xb7\xa4\xb2\xdc\x80\x0a\x68\xcc\xfe\xd4\xac\x99\xe4\x26\x69\
+\xe2\xce\x91\x8a\xcb\x7a\x16\x43\xe5\x03\x93\xd6\x28\xbd\xa3\xee\
+\x05\xab\x24\x44\xa1\x14\x21\xc0\xcc\x4c\x1e\x8f\x3e\xf1\x3c\x5e\
+\x78\xf9\x4d\x13\x77\x98\x1a\xb5\x2a\x3f\x2a\x8e\x1f\xfe\x5a\xfe\
+\xc4\xce\x33\x50\xef\x0e\x63\xd2\xbf\x46\x54\xc0\x56\xb1\xaa\xb0\
+\xb4\xad\x3c\x5e\x51\x6a\x9e\x4a\x96\x23\x50\x79\x62\x62\x7f\x6a\
+\xc5\x4c\xf2\x7a\x66\x9b\x37\x73\x94\xaf\xd1\x89\x9d\x3a\x09\x2b\
+\xc7\x33\xa6\x1b\xd7\x11\x98\xa1\x18\x23\xb9\x10\x97\x22\x04\xe7\
+\xce\x5d\xc2\x8f\x1e\xd9\x8e\x37\xde\x3a\x0a\x9b\x46\xb9\xc3\x60\
+\xc1\xae\x95\xbe\x3b\x7f\x66\xcf\xb7\x0b\x17\xde\x9c\x86\x1e\xa4\
+\x94\x4d\x31\x08\x8f\xc3\xb6\x16\x43\x05\x0c\x8b\x6b\x36\x40\xa9\
+\xc2\x4d\xd8\xe4\xb2\x90\xe5\x0c\x54\x80\x9a\xbd\xc4\x1d\xbd\x6b\
+\x16\x18\xe9\xca\x6d\x24\xae\x11\x95\x0f\x75\xe6\x55\x89\x91\xea\
+\x17\x5d\x08\x2f\x87\x8f\x9e\xc0\x0f\x1f\xda\x86\xe3\x27\xcf\x81\
+\x10\x82\xf0\x1a\xe8\x84\x55\x59\xf8\x66\xfe\xf8\x8e\xff\x5a\x9e\
+\x39\x55\x82\x5a\xdd\x33\xa9\x36\x2a\x5c\x17\xb7\x58\x2a\x60\x58\
+\x5c\xb3\x40\xac\x5e\x35\x71\xd9\xca\x72\x07\x2a\x4f\x4c\x41\x65\
+\x31\x5c\x5f\xe2\xa8\x7f\xcb\x5d\xe5\xf3\x84\x92\x08\x63\xba\x69\
+\xa1\x84\x00\x96\x65\x63\xdf\x1b\x07\xf1\xa3\x47\x9f\xc3\xc5\xf1\
+\x68\x77\x18\x50\xfb\x78\xad\x34\xfb\xd5\xe9\x83\x8f\x3e\x6e\x95\
+\xe7\xc5\xdd\x61\xea\x05\xaa\xb0\xf8\xc5\x50\x01\xa3\xce\xe3\x02\
+\x54\x23\x69\x56\x2c\x40\x79\xb2\x52\x80\xca\x93\x66\x03\x96\x2a\
+\x0d\x42\xf2\x34\x92\x6e\x39\x4f\xec\x8c\x5e\xe6\x85\xc2\x77\xe7\
+\xd3\xe1\x0e\x21\x04\x95\x4a\x05\x3b\x5f\x78\x1d\x8f\x6f\x7d\xc1\
+\xcc\x1d\x86\xda\xaf\xd6\x16\xc6\xff\x60\xf2\xc0\x8f\x5e\x02\xa5\
+\x04\xf1\x40\x4a\x68\xa1\x71\xb8\x69\xda\x46\x59\x55\x58\xfc\x62\
+\x80\xd8\x8a\x07\x28\x4f\x56\x1a\x50\x79\xd2\x28\x60\x85\xa5\x69\
+\x96\xf1\x1c\x11\xf1\xd4\x20\x2c\x6e\xb9\xf5\x48\xe0\xeb\x17\xa9\
+\xfd\x39\xd5\x8a\x6b\x9b\x13\x00\x24\x45\x30\x3f\x5f\xc0\x53\xcf\
+\xbc\x80\xed\xbb\x5e\x47\xb9\x5c\x89\x02\x29\x9b\xda\xb5\x27\x2b\
+\xb3\x67\xfe\xdf\xe9\x43\x4f\x1c\x41\xb4\xaa\xb7\x18\x2a\x60\x3d\
+\x4c\x2b\x6e\x7c\xa3\x00\xd5\x48\x9a\x15\x07\x50\x9e\xac\x54\xa0\
+\xf2\xa4\x5e\xc0\xaa\x67\x1e\x54\x58\xba\x46\x1d\x8c\xeb\x05\x2e\
+\xd3\xf2\xa3\x84\x82\xa4\xa8\x3e\x52\x77\xe6\x56\x4d\x08\x26\x26\
+\xa6\xf1\xf0\xe3\xcf\xe1\x95\xd7\xdf\x86\x65\xd9\x91\xee\x30\xd4\
+\xaa\xfe\xd7\xc2\xa5\x83\xdf\x98\x3b\xb9\xeb\x22\x1a\x33\x9a\x37\
+\x12\xdf\x2c\x15\x50\x0c\x6b\xa5\x0a\x18\x96\xee\x5d\x07\x50\x9e\
+\xac\x74\xa0\xf2\x24\x8e\x61\xbc\x51\x1b\x55\x54\x79\xcd\x70\x30\
+\x5e\x4c\x5f\x3e\x0a\x80\xd6\x67\x4a\x77\xfc\xf3\x4e\x9d\x3a\x8b\
+\x07\x1f\xd9\x86\x83\x47\x3c\x77\x98\xd0\xd2\x66\xed\x5a\xe9\x2f\
+\x17\xce\xec\xf9\xeb\x85\x0b\x6f\xce\xa1\x39\x20\x65\x92\x76\x31\
+\x55\xc0\xa8\xf3\x7a\xd2\x36\x6a\x68\x5f\xd1\xf2\x6e\x01\x2a\x4f\
+\xe2\x8e\xf0\xb1\x79\x74\x12\x97\x3d\xc5\xb5\x53\x99\xb4\xc1\xa4\
+\xec\xb8\xc2\xcf\xf2\x26\xd1\xc6\x74\xd5\x76\x56\x07\xde\x3e\x86\
+\x07\x1f\xd9\x86\x33\xe7\xcc\xdc\x61\xec\x6a\xe1\x8f\x67\x8e\x3e\
+\xf3\x3f\x2a\xf9\x73\xd5\x3a\xfb\xd4\x6c\x15\xb0\x59\x00\xb6\x9c\
+\x58\xd6\xbb\x06\xa0\x3c\x79\xb7\x01\x95\x27\xcd\x9c\x6e\x10\x96\
+\xae\x51\x95\xaf\xd1\x3c\xcd\x9b\x99\x6e\xba\x5d\x16\x0d\xdc\x61\
+\x5e\xdd\xb3\x1f\x0f\x3f\xb9\x13\x93\xd3\x79\xa4\xa2\x47\xf6\x0e\
+\xd4\x4a\xf9\xdf\x9f\xdc\xff\xc3\x67\xa9\x55\xa9\xf7\xfa\x98\xa4\
+\x6f\x74\x5a\x42\x58\xdc\x4a\x51\x01\xdf\x75\xf2\x6e\x05\x2a\x4f\
+\x9a\x39\xdd\xa0\x19\xbe\x7a\xf5\x3c\x48\xf5\xf8\xf8\x99\xd4\x45\
+\xb9\xb2\x0d\x9d\x92\x09\x21\x28\x95\x4a\xd8\xbe\xe3\x15\x6c\x7d\
+\xee\x15\x2c\x14\x4a\x51\x20\x45\x41\xed\x1d\xd5\x85\x89\xdf\x9b\
+\xdc\xff\xc3\x7d\x6e\x9d\x81\x01\x3f\x9e\x98\xa6\x8f\x0b\x56\xba\
+\xf0\x56\xab\x80\xe2\x79\x02\x50\x1a\x79\xb7\x03\x95\x27\x71\xa7\
+\x05\x44\xa5\x6b\xc6\xc4\xcd\x46\xe7\x4c\x35\x92\x57\x71\x5d\x22\
+\x66\xa6\x53\xea\xbb\xc3\x3c\xfe\xd4\x2e\xbc\xf0\xca\x9b\xa8\x56\
+\xa3\x77\x87\xa1\xb6\xf5\xa0\xe3\xb3\xf7\xf8\x49\x00\x69\xa6\xde\
+\x46\x5f\xae\x7a\xc0\x28\x2c\xbe\x59\x86\xf5\x46\xa7\x34\x24\xe0\
+\xa4\x90\xcb\x05\xa8\x58\x69\x06\x7b\x0a\x13\x15\x03\xaa\x67\xdd\
+\xa9\x7a\xa4\x7e\x75\x2a\x14\x70\x08\x08\x21\x38\x7f\x61\x1c\x3f\
+\x7a\x78\x9b\xe3\x0e\x63\x47\xbb\xc3\x50\xab\xfa\x37\xc5\x89\xc3\
+\x7f\x9e\x7f\xe7\xf9\x49\x38\x20\xd5\x08\xb8\xd4\x93\xbe\x15\x76\
+\x29\x55\x58\x33\x55\xc0\xb8\x79\x2f\x0b\xb9\x1c\x81\xca\x93\x7a\
+\x0d\xe4\x8b\x35\xca\xd7\xec\x39\x53\xa1\xbe\x7e\x61\xeb\x51\x11\
+\x00\xc7\xde\x39\x8d\xed\xcf\xbf\x8a\xa3\xef\x9c\x71\xdc\x61\xc2\
+\x4d\x52\xe3\xb4\x56\xfe\xfa\xfc\xd9\x3d\xdf\x5f\x38\xff\x46\x11\
+\xcd\x1f\xd9\x33\xcd\xd7\x8c\xb9\x55\xaa\xb0\xa5\x54\x01\x2f\x4b\
+\xb9\x9c\x81\x8a\x95\x66\x81\x96\x89\x2c\x99\x9b\x0c\x78\xb5\x4f\
+\x88\xd3\x03\x55\xcd\xb2\xb0\x6b\xf7\x3e\x54\xa2\x55\x3d\x00\xf4\
+\x98\x5d\x2d\xfe\xc1\xf4\xc1\xc7\x1f\xaa\x2e\x8c\x8b\xee\x30\x71\
+\xda\xda\x8c\x74\xef\x16\x15\xf0\xb2\x97\x04\xa8\x64\x79\xb7\xaa\
+\x7c\x61\xf5\x50\x42\x52\xd0\xe1\x18\xa5\x14\xd5\x9a\x65\x32\xfd\
+\xe0\x15\xab\x32\xff\x3b\x13\x6f\xfc\xe3\x0b\xd4\xaa\x34\x0a\xaa\
+\xcd\x4c\xbb\x52\x55\xc0\x44\x5c\x49\x80\x2a\x5c\x96\xd3\x28\x5f\
+\xbd\x62\xe6\xeb\x17\x73\x5f\x3f\x41\x2c\x50\xfb\x89\x5a\x71\xfa\
+\x5f\x4f\xbc\xf1\x8f\x07\x61\xa6\xea\x85\x49\xb3\xc1\xad\x19\x2a\
+\x60\xab\x98\x56\x02\x4e\x06\x92\x00\x95\xb9\xbc\x1b\x55\xbe\x20\
+\x0d\xa9\xbb\x6d\x25\x4a\xad\xbf\xab\xe6\xcf\xff\xf1\xd4\xdb\x8f\
+\x9c\x47\xe3\x20\xa5\x6a\x7f\xa3\x69\x9a\xa1\x02\xd6\x33\x09\xd4\
+\xb4\xec\x44\x22\x24\x01\xaa\xfa\x24\x6a\x76\xf9\x62\x39\x18\x37\
+\x8b\x7d\x85\xfa\xfa\x85\xc8\x2c\xb5\x6b\x7f\x5e\x9e\x3e\xf9\xed\
+\x99\x23\x4f\xe7\xb1\x34\x20\xd5\x8c\x74\xcd\x9a\x9d\x5e\x4f\x79\
+\x89\x18\x48\x02\x54\x8d\x8b\x89\xcd\xa9\xd1\xb9\x5b\x26\xac\x48\
+\x55\x96\xae\x8d\x8a\xf2\x63\xab\x7e\x67\xa8\x55\xfd\xa3\xf9\xb3\
+\xaf\xfd\x60\xe1\xdc\xeb\xf5\xba\xc3\x44\xc9\x62\xa8\x80\xcd\x48\
+\x9f\x00\x53\x8b\x25\x01\xaa\xe6\x4b\xb3\x41\x2a\x62\x09\xe1\xb0\
+\x91\x3c\x23\x70\x23\x70\xa6\x27\xc4\xe9\xe2\x9b\xb4\x56\xf9\x9d\
+\xa9\x83\x8f\x3e\x55\x9d\xbf\xe4\xd5\xd3\xea\x17\xb3\x51\x15\xb0\
+\x5e\xf5\xb0\x5e\x15\x30\x91\x26\x4a\x02\x54\xad\x97\x56\xcd\x8f\
+\x6a\xa6\xd1\x9d\x02\xc4\x32\x28\x8b\x02\x74\xbb\x5d\x2d\xfd\xe6\
+\xa5\x3d\x7f\xfb\x1a\xcc\x97\x0b\x6e\x86\x34\xc3\x56\x15\x96\xa6\
+\x59\xe1\x89\xb4\x40\x12\xa0\x5a\x7c\xd1\xb1\xa6\x66\x3e\xf8\x71\
+\x40\x8c\x02\x80\x6d\x95\xcf\xa7\xda\x3a\x2f\x01\x58\xa3\x49\x57\
+\x05\xa5\xff\xc3\xaa\x2e\xfc\xde\xf8\x6b\x7f\x77\x1c\xd1\x33\xcd\
+\x5b\x7d\xcd\xea\x4d\xdf\xac\x49\xa0\x89\x2c\xa2\xa4\x1b\x2f\x22\
+\x91\x16\x49\xe3\xbb\x2d\xc4\x28\x3f\xdd\xd6\x5d\x6c\xef\x19\xbd\
+\x1e\x84\xdc\xad\x48\xbb\x00\x4a\xbf\x6d\x55\x16\x7e\x77\xfc\xf5\
+\xbf\x3b\x87\x80\x49\x2d\x85\x2c\x95\x0a\x98\xc8\x12\x4a\x02\x54\
+\x2b\x4f\x5a\x02\x60\x95\xfc\x59\xab\x7b\xed\x6d\x47\x49\x2a\xbd\
+\x1e\xc0\x35\x70\x9e\x0d\x1b\xc0\x09\x50\xfb\xdf\xd4\xca\x73\xdf\
+\x9c\xd8\xfb\x83\x59\xa8\x41\x2a\x7a\xfa\x43\xf3\xa4\xd5\x2a\x60\
+\x22\xcb\x50\x5a\xfd\xd5\x4e\x64\x71\xa5\xd1\x91\x41\xba\xfa\xae\
+\x5f\x5d\x4d\x52\x99\xcf\x80\x60\x03\x80\x12\xb5\xed\x47\xcb\xd3\
+\x27\xde\x9a\x39\xf2\xb4\x55\x47\xf9\xcd\x96\x56\xb9\xe2\x24\xb2\
+\xcc\x65\xa9\x1f\xbc\x44\x16\x5f\x74\xab\x8c\x7a\x12\x36\xf2\xb8\
+\x94\xd2\xe8\x84\xdb\x44\x56\xb0\x2c\x87\x07\x30\x91\x95\x21\xad\
+\x7a\x56\x12\xc0\x49\x24\x52\xfe\x7f\x90\xbe\xf8\xd8\xd4\xeb\x70\
+\x25\x00\x00\x00\x14\x74\x45\x58\x74\x41\x75\x74\x68\x6f\x72\x00\
+\x4a\x61\x6b\x75\x62\x20\x53\x74\x65\x69\x6e\x65\x72\xe6\xfb\xf7\
+\x2f\x00\x00\x00\x49\x74\x45\x58\x74\x43\x6f\x70\x79\x72\x69\x67\
+\x68\x74\x00\x50\x75\x62\x6c\x69\x63\x20\x44\x6f\x6d\x61\x69\x6e\
+\x20\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\x65\
+\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6c\x69\x63\x65\
+\x6e\x73\x65\x73\x2f\x70\x75\x62\x6c\x69\x63\x64\x6f\x6d\x61\x69\
+\x6e\x2f\x59\xc3\xfe\xca\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\
+\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x30\x2d\x30\
+\x36\x2d\x32\x30\x54\x32\x33\x3a\x32\x34\x3a\x32\x35\x2d\x30\x34\
+\x3a\x30\x30\x77\x9c\x29\x53\x00\x00\x00\x25\x74\x45\x58\x74\x64\
+\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x30\x2d\
+\x30\x36\x2d\x32\x30\x54\x32\x33\x3a\x32\x34\x3a\x32\x35\x2d\x30\
+\x34\x3a\x30\x30\x06\xc1\x91\xef\x00\x00\x00\x19\x74\x45\x58\x74\
+\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\
+\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\
+\x21\x74\x45\x58\x74\x53\x6f\x75\x72\x63\x65\x00\x68\x74\x74\x70\
+\x3a\x2f\x2f\x6a\x69\x6d\x6d\x61\x63\x2e\x6d\x75\x73\x69\x63\x68\
+\x61\x6c\x6c\x2e\x63\x7a\x69\x66\xe3\x5e\x00\x00\x00\x0d\x74\x45\
+\x58\x74\x54\x69\x74\x6c\x65\x00\x47\x6f\x20\x44\x6f\x77\x6e\xf3\
+\xfd\x14\x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x10\x78\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\
+\x00\x00\x10\x3f\x49\x44\x41\x54\x78\x5e\xed\x9d\x0b\xac\x1e\x45\
+\x15\xc7\xcf\xd9\x7b\xdb\x42\x20\x42\x89\x06\x15\x09\x04\x08\x12\
+\xde\xa2\x3c\x0c\x82\x10\x04\xc4\x08\x04\x63\x45\xe5\x91\x02\x16\
+\xa9\xb6\x77\x67\xbf\xde\x46\x5e\x89\x25\x18\x21\xb5\x37\x3b\x7b\
+\xfb\x00\x0a\x3e\x80\x04\x4c\x4d\x90\x48\x22\x0a\x28\x68\x10\x91\
+\x00\x51\x8b\x12\x83\x84\x87\x8f\x08\x11\x83\x3c\xe5\xb6\x77\xc7\
+\x0c\x7e\x90\x4b\xbd\x8f\xdd\xb3\x33\xfb\xed\xec\xfe\x27\x21\x97\
+\xa4\x73\xce\xcc\xfc\xce\xfe\xf2\xed\xf7\xd8\x19\x26\x34\x10\x00\
+\x81\x19\x09\x30\xd8\x80\x00\x08\xcc\x4c\x00\x82\xe0\xea\x00\x81\
+\x59\x08\x40\x10\x5c\x1e\x20\x00\x41\x70\x0d\x80\x80\x8c\x00\x5e\
+\x41\x64\xdc\x10\xd5\x11\x02\x10\xa4\x23\x85\xc6\x32\x65\x04\x20\
+\x88\x8c\x1b\xa2\x3a\x42\x00\x82\x74\xa4\xd0\x58\xa6\x8c\x00\x04\
+\x91\x71\x43\x54\x47\x08\x40\x90\x8e\x14\x1a\xcb\x94\x11\x80\x20\
+\x32\x6e\x88\xea\x08\x01\x08\xd2\x91\x42\x63\x99\x32\x02\x10\x44\
+\xc6\x0d\x51\x1d\x21\x00\x41\x3a\x52\x68\x2c\x53\x46\x00\x82\xc8\
+\xb8\x21\xaa\x23\x04\x20\x48\x47\x0a\x8d\x65\xca\x08\x40\x10\x19\
+\x37\x44\x75\x84\x00\x04\xe9\x48\xa1\xb1\x4c\x19\x01\x08\x22\xe3\
+\x86\xa8\x8e\x10\x80\x20\x03\x2c\x74\x1c\xc7\x4b\x98\x79\x15\x33\
+\x3f\x1d\x45\xd1\x92\xb1\xb1\xb1\x3f\x0e\x70\x3a\x18\x7a\x1a\x02\
+\x10\x64\x40\x97\x85\x52\xea\x5b\x44\x34\x3a\x65\xf8\x2b\xb4\xd6\
+\xab\x06\x34\x1d\x0c\x3b\x03\x01\x08\x52\xf3\xa5\xa1\x94\xda\x93\
+\x88\x32\x22\x3a\x6d\x9b\xa1\x21\x48\xcd\xb5\x28\x32\x1c\x04\x29\
+\x42\xc9\x51\x9f\x24\x49\x4e\xca\xf3\x3c\x63\xe6\xfd\xa6\x49\x09\
+\x41\x1c\x71\x76\x99\x06\x82\xb8\xa4\x39\x4b\xae\x38\x8e\x97\x31\
+\xf3\xda\x59\xba\x40\x90\x9a\x6a\x51\x66\x18\x08\x52\x86\x96\xa0\
+\xaf\x31\x86\x93\x24\xb1\xb7\x54\xcb\xe7\x08\x87\x20\x02\xbe\xbe\
+\x43\x20\x88\x47\xc2\x71\x1c\x7f\x90\x99\xad\x1c\x27\x17\x18\x06\
+\x82\x14\x80\x54\x77\x17\x08\xe2\x89\x78\x92\x24\xa7\x1a\x63\xd6\
+\x13\xd1\xee\x05\x87\x80\x20\x05\x41\xd5\xd9\x0d\x82\x78\xa0\x9d\
+\x24\xc9\x0a\x63\xcc\x9a\x92\xa9\x21\x48\x49\x60\x75\x74\x87\x20\
+\x0e\x29\x27\x49\xb2\xbd\xfd\x08\xd7\x18\xb3\x44\x90\x16\x82\x08\
+\xa0\xf9\x0e\x81\x20\x8e\x08\x2f\x5f\xbe\xfc\x90\xa1\xa1\x21\x7b\
+\x4b\x75\xb4\x30\x25\x04\x11\x82\xf3\x19\x06\x41\x1c\xd0\x8d\xe3\
+\x78\x51\x14\x45\xd7\x19\x63\x16\x56\x48\x07\x41\x2a\xc0\xf3\x15\
+\x0a\x41\x2a\x92\x4d\x92\xe4\x72\x63\xcc\x95\x15\xd3\xd8\x70\x08\
+\xe2\x00\xa2\xeb\x14\x10\x44\x48\x54\x29\xb5\x33\x11\x6d\x20\xa2\
+\x2f\x08\x53\x6c\x1b\x06\x41\x1c\x81\x74\x99\x06\x82\x08\x68\x26\
+\x49\x72\x04\x11\x6d\x34\xc6\x1c\x22\x08\x9f\x29\xe4\x0d\x22\x7a\
+\x99\x99\x5f\x36\xc6\xbc\x6c\xff\xdf\xfe\x8d\xa2\xc8\xfe\xfd\x37\
+\x11\xbd\x48\x44\xcf\x19\x63\x36\x2f\x58\xb0\x60\xf3\xea\xd5\xab\
+\xff\xee\x70\x6c\xa4\x9a\x81\x00\x04\x29\x79\x69\xc4\x71\x7c\x2e\
+\x33\xdf\x40\x44\xf3\x4a\x86\xba\xee\xfe\x02\x11\x6d\xb6\xff\x59\
+\x69\x86\x86\x86\x36\x47\x51\xb4\x79\xcd\x9a\x35\xaf\xba\x1e\xa8\
+\xcb\xf9\x20\x48\x89\xea\x27\x49\x72\xb5\x31\xe6\x6b\x25\x42\x6a\
+\xef\xca\xcc\x0f\x10\xd1\x1d\xc6\x98\x9f\x68\xad\x7f\x5b\xfb\x04\
+\x5a\x36\x20\x04\x29\x50\xd0\x38\x8e\x77\x65\xe6\xeb\x89\xe8\xd4\
+\x02\xdd\x9b\xd4\xe5\x49\x2b\x0b\x11\xfd\x82\x88\xee\xd3\x5a\xdb\
+\xdb\x34\xb4\x12\x04\x20\xc8\x1c\xb0\x94\x52\xc7\x11\x91\xbd\xa5\
+\xda\xbb\x04\xd7\x26\x76\x7d\x85\x88\xee\x61\xe6\xbb\xa3\x28\xda\
+\x34\x36\x36\xf6\xcf\x26\x4e\xb2\x69\x73\x82\x20\xb3\x54\x24\x49\
+\x92\xaf\xf4\x7f\x4f\xd5\xb4\xba\x55\x9d\xcf\x73\x44\xb4\xc9\x18\
+\xb3\x29\xcb\xb2\xfb\xab\x26\x6b\x73\x3c\x04\x99\xa1\xba\x71\x1c\
+\x1f\xc9\xcc\x0f\xb6\xb9\xf8\xfd\xb5\xdd\xc5\xcc\x9b\xe6\xcd\x9b\
+\xb7\x69\xf5\xea\xd5\xf6\xd3\x33\xb4\x29\x04\x20\xc8\x0c\x97\x83\
+\x52\x6a\x31\x11\x7d\xb7\x43\x57\xcb\xb3\xf6\x55\x85\x88\x6e\xd5\
+\x5a\x3f\xda\xa1\x75\xcf\xba\x54\x08\x32\x03\x9e\x24\x49\x76\x31\
+\xc6\xdc\x4d\x44\x87\x75\xec\x62\xd9\xc2\xcc\xe3\x13\x13\x13\x6b\
+\xd7\xaf\x5f\xff\x4c\xc7\xd6\xfe\x7f\xcb\x85\x20\xb3\x5c\x01\x8b\
+\x17\x2f\xde\x6e\xe1\xc2\x85\xd7\x1b\x63\xce\xee\xda\x85\x62\x8c\
+\xf9\x87\x15\x65\x78\x78\x78\xbc\xcb\xdf\xad\x40\x90\x02\x57\xbe\
+\x52\xea\x12\x22\xfa\x66\x81\xae\x6d\xec\xf2\x18\x11\xad\xd5\x5a\
+\x6f\x6c\xe3\xe2\xe6\x5a\x13\x04\x99\x8b\x50\xff\xdf\x93\x24\x39\
+\xdd\x18\x63\x3f\xee\x7d\x77\xc1\x90\xb6\x75\xb3\xdf\xa5\x8c\x6b\
+\xad\x6f\x6b\xdb\xc2\x66\x5b\x0f\x04\x29\x51\xed\x5e\xaf\xb7\x6f\
+\x9e\xe7\xf6\x0b\xc3\x63\x4b\x84\xb5\xad\xeb\x46\x66\xbe\x24\x4d\
+\xd3\x7f\xb5\x6d\x61\xd3\xad\x07\x82\x08\xaa\x1c\xc7\xf1\x35\xcc\
+\x7c\x91\x20\xb4\x2d\x21\x8f\x1a\x63\x2e\xce\xb2\xcc\x7e\x88\xd1\
+\xea\x06\x41\x84\xe5\x55\x4a\xd9\x6d\x7c\xc6\x85\xe1\xd3\x85\x5d\
+\x41\x44\xf6\x27\xf4\xf6\x3f\xfb\xe0\xd5\xb6\x7f\x77\x74\x38\x96\
+\xab\x54\x97\x6a\xad\xaf\x72\x95\xac\x89\x79\x20\x48\x85\xaa\xc4\
+\x71\x7c\x22\x33\xdb\x37\xaf\x76\x3b\xd1\xaa\x6d\xd6\xe7\x41\x46\
+\x47\x47\x77\xd8\xb2\x65\xcb\xfe\xcc\x7c\x00\x33\xef\x9f\xe7\xf9\
+\x9b\x7f\x1d\x8d\x5d\x65\xee\xb7\xe5\x79\x7e\xf1\xf8\xf8\xf8\x13\
+\x55\x92\x34\x35\x16\x82\x54\xac\xcc\x8a\x15\x2b\xf6\xc8\xf3\x7c\
+\x83\x31\xe6\x53\x15\x53\x89\x1e\x98\xea\x7f\x5f\x63\xf7\xdd\xfa\
+\x64\x7f\xff\xad\x5d\x2b\xce\x43\x12\x6e\xbf\x2f\xb9\x44\x6b\x7d\
+\xab\x24\xb8\xc9\x31\x10\xc4\x51\x75\xa6\xd9\xad\xbd\x6c\x66\x91\
+\x20\xdb\x0e\xd2\xeb\xf5\x8e\xcf\xf3\xfc\x04\x22\x3a\x91\x88\xec\
+\x83\x5d\x75\xb6\xab\xb4\xd6\x97\xd6\x39\xa0\xef\xb1\x20\x88\x43\
+\xc2\x4a\xa9\x2f\x11\xd1\x75\x44\x14\x09\xd2\x3a\x11\x64\xea\xb8\
+\xf6\x97\xc8\xc6\x98\xd3\x98\xf9\x74\x22\xda\x4b\x30\xa7\xd2\x21\
+\xcc\x7c\x63\x9a\xa6\xf6\x67\x3a\xad\x68\x10\xc4\x71\x19\xe3\x38\
+\x3e\x96\x99\xed\xf6\x3f\x07\x96\x4c\xed\x5c\x90\xb7\xc6\xbf\xf0\
+\xc2\x0b\xe7\xed\xb8\xe3\x8e\xa7\xe5\x79\x6e\x45\x39\x4b\x28\x70\
+\x99\xe5\xdc\xa3\xb5\xb6\xaf\x60\xc1\x37\x08\xe2\xa1\x84\x2b\x57\
+\xae\x7c\xef\x96\x2d\x5b\xec\x9e\xbc\x9f\x2b\x91\xde\x9b\x20\x53\
+\xe7\xd0\xeb\xf5\x0e\x31\xc6\x9c\x6f\x8c\xb9\x80\x88\x76\x28\x31\
+\xbf\xb2\x5d\x1f\x9f\x98\x98\x38\x62\xc3\x86\x0d\xf6\x39\x94\x60\
+\x1b\x04\xf1\x58\xba\x38\x8e\xaf\x64\xe6\xcb\x0b\x0e\x51\x8b\x20\
+\x6f\xcd\xc5\x7e\xe9\x39\x45\x14\x5f\xbf\x0e\xb0\x9b\x4d\x1c\xaa\
+\xb5\x7e\xba\x20\x83\xc6\x75\x83\x20\x9e\x4b\xa2\x94\x3a\x87\x88\
+\xd6\x11\xd1\xbb\xe6\x18\xaa\x56\x41\xa6\x88\xb2\x7b\x9e\xe7\xf6\
+\xd5\xe4\xeb\xbe\x50\x0c\x0d\x0d\x7d\x64\x6c\x6c\xec\x11\x5f\xf9\
+\x7d\xe6\x85\x20\x3e\xe9\xf6\x73\xdb\x87\xaf\xa2\x28\xd2\xc6\x98\
+\xa3\x66\x19\x6e\x20\x82\xbc\x35\x9f\xfe\xa3\xc5\x56\x12\xfb\x88\
+\xb1\xf3\xc6\xcc\x07\xa7\x69\x6a\x77\x61\x09\xaa\x41\x90\x9a\xca\
+\xb5\x74\xe9\xd2\x85\x0b\x16\x2c\xd0\x44\x74\xee\x0c\x43\x0e\x54\
+\x90\x29\xa2\xd8\x83\x44\x7d\xbd\x9a\x2c\x0c\x6d\xe3\x08\x08\x52\
+\x93\x20\x53\x2e\xc0\xcb\x88\xe8\x1b\xd3\x0c\xdb\x08\x41\xec\xbc\
+\x3c\xbe\x9a\x3c\xab\xb5\xde\xa3\x66\xe4\x95\x86\x83\x20\x95\xf0\
+\xc9\x82\x7b\xbd\xde\x22\x7b\x98\x27\x11\xbd\x6f\x4a\x86\xc6\x08\
+\x32\x45\xe6\x6d\x8f\xaa\x96\x2d\xf8\x9d\x51\xb7\x6b\xad\xcf\x70\
+\x91\xa8\x8e\x1c\x10\xa4\x0e\xca\xd3\x8c\x61\x3f\x6e\xed\x4b\xf2\
+\xf1\xfe\x3f\x9f\xa7\xb5\xfe\xde\x80\xa6\x33\xe3\xb0\xfd\x0f\x19\
+\xac\x28\xce\x7e\xc2\x62\x8c\xb9\x3a\xcb\x32\xfb\x10\x5a\xe3\x1b\
+\x04\x19\x60\x89\xec\x81\x3b\xc6\x18\xfb\x29\xd7\xfb\xb5\xd6\xf6\
+\xde\xbf\x91\x2d\x8e\xe3\x83\x99\xd9\x4a\x72\x92\xc3\x09\xae\xd4\
+\x5a\x97\x3d\x85\xcb\xe1\xf0\xc5\x52\x41\x90\x62\x9c\xd0\xeb\x7f\
+\xef\x4d\x5c\xdf\x72\x5d\xa0\xb5\xfe\x4e\x93\xe1\x42\x90\x26\x57\
+\xa7\x81\x73\x53\x4a\xd9\x4f\xb8\x9c\xbd\xda\x31\xf3\x89\x69\x9a\
+\xde\xd3\xc0\xa5\xbe\x39\x25\x08\xd2\xd4\xca\x34\x78\x5e\x8e\x25\
+\x79\xb4\x2f\x49\x23\x1f\xe1\x85\x20\x0d\xbe\x10\x9b\x3c\xb5\x38\
+\x8e\x57\x32\xf3\x6a\x17\x73\xb4\x1b\x83\xa7\x69\x7a\xa1\x8b\x5c\
+\xae\x73\x40\x10\xd7\x44\x3b\x94\x4f\x29\x65\x4f\xd7\xba\xc5\xc5\
+\x92\x99\x79\x69\x9a\xa6\xd7\xba\xc8\xe5\x32\x07\x04\x71\x49\xb3\
+\x83\xb9\x7a\xbd\xde\x09\x79\x9e\xbb\x78\x0f\xf1\x52\xff\x56\xeb\
+\xa1\x26\x61\x84\x20\x4d\xaa\x46\xa0\x73\x71\xb5\x8f\x31\x33\xdf\
+\xbb\xd3\x4e\x3b\x9d\xb4\x6a\xd5\xaa\xad\x4d\x41\x01\x41\x9a\x52\
+\x89\xc0\xe7\x11\xc7\xf1\xe5\xcc\x5c\xf9\xb4\x5f\x66\x1e\x4b\xd3\
+\x74\xb4\x29\x38\x20\x48\x53\x2a\xd1\x82\x79\x28\xa5\x6e\x9c\xe5\
+\xc7\x98\x85\x57\x68\x8c\x39\xa6\x29\xe7\x96\x40\x90\xc2\x65\x43\
+\xc7\xb9\x08\xf4\x7f\xb1\x7c\x27\x11\x1d\x39\x57\xdf\xd9\xfe\x9d\
+\x99\x7f\x90\xa6\x69\x99\xa7\x31\xab\x0c\x37\x6b\x2c\x04\xf1\x86\
+\xb6\x9b\x89\x57\xac\x58\xf1\xb1\xc9\xc9\x49\xfb\xa6\x7d\x41\x15\
+\x02\xcc\xfc\x99\x34\x4d\x7f\x58\x25\x87\x8b\x58\x08\xe2\x82\x22\
+\x72\xbc\x83\x80\x52\xaa\x47\x44\x63\x15\xb1\xd8\x43\x47\x8f\xaf\
+\x98\xa3\x72\x38\x04\xa9\x8c\x10\x09\xa6\x23\xa0\x94\xfa\x3e\x11\
+\x9d\x59\x91\xce\x97\x07\x7d\xec\x02\x04\xa9\x58\x41\x84\x4f\x4f\
+\x20\x49\x92\xbd\xfa\x27\x74\x55\xd9\x8f\xeb\x0f\x13\x13\x13\x47\
+\x0d\x72\x67\x14\x08\x82\x2b\xdc\x1b\x81\x38\x8e\xcf\x64\x66\xfb\
+\x4a\x22\x6e\xcc\x7c\x59\x9a\xa6\x03\x3b\xbc\x08\x82\x88\x4b\x87\
+\xc0\x22\x04\x94\x52\x76\x47\x97\xaf\x16\xe9\x3b\x43\x9f\x67\xe6\
+\xcf\x9f\x7f\xd0\xa0\x4e\xe0\x85\x20\x15\x2a\x87\xd0\xb9\x09\xd8\
+\xcd\xbd\x27\x27\x27\x7f\x45\x44\xbb\xcd\xdd\x7b\xc6\x1e\x4b\xb4\
+\xd6\xf6\x74\xaf\xda\x1b\x04\xa9\x1d\x79\xf7\x06\x54\x4a\x29\x22\
+\x4a\xa5\x2b\x37\xc6\xfc\x2c\xcb\xb2\x4f\x48\xe3\xab\xc4\xd5\x2a\
+\x48\xaf\xd7\xb3\x9b\x94\xed\x5d\x65\xc2\x88\xf5\x4a\xe0\xa5\xd7\
+\x5e\x7b\x6d\xf3\xc6\x8d\x1b\xb7\xb8\x1e\x45\x29\x75\x1f\x11\xbd\
+\xf5\xfc\xbd\x24\xfd\xf1\x5a\x6b\x9b\xa3\xd6\x56\x8b\x20\xfd\x47\
+\x35\x3f\xdb\x80\xc3\x5e\x6a\x85\x1b\xe8\x60\x6f\x10\xd1\xc3\x44\
+\x74\x93\xcb\x8f\x58\xe3\x38\xfe\x34\x33\xdf\x21\x65\x62\x8c\xb9\
+\x36\xcb\xb2\xa5\xd2\x78\x69\x9c\x57\x41\x94\x52\x47\x13\xd1\xfd\
+\xd2\xc9\x21\x6e\xe0\x04\xee\xd4\x5a\x57\x3d\x18\xe8\xed\x45\x28\
+\xa5\xbe\x4d\x44\xe7\x0b\x57\xf5\x22\x33\x1f\x98\xa6\xe9\xdf\x84\
+\xf1\xa2\x30\x6f\x82\x28\xa5\xec\x9e\x4f\x76\xd3\xe2\xf9\xa2\x99\
+\x21\xa8\x11\x04\x5c\xfe\xe4\xa3\x7f\x34\x84\x3d\x4e\x5a\xd4\x8c\
+\x31\xa3\x59\x96\x55\xfd\x86\xbe\xd4\xd8\x3e\x05\xb9\x9d\x88\xec\
+\x79\x14\x68\x61\x13\x78\x72\x62\x62\xe2\x50\x57\x5f\xd6\x29\xa5\
+\x7e\x2a\xdd\x3e\x88\x99\x1f\x4c\xd3\xf4\xa3\x75\xe2\xf4\x29\xc8\
+\x63\x44\x74\x40\x9d\x8b\xc1\x58\x7e\x08\xe4\x79\x7e\xf4\xf8\xf8\
+\xf8\x03\x2e\xb2\x8f\x8c\x8c\x9c\x17\x45\x91\x78\xab\x9f\x3c\xcf\
+\x0f\x1a\x1f\x1f\xb7\xd7\x56\x2d\xcd\xa7\x20\xf6\x6c\x88\xb9\xb6\
+\xfc\xaf\x65\x91\x18\xa4\x1a\x01\x97\xcf\x8b\xdb\xcd\xf2\xf2\x3c\
+\xdf\xcc\xcc\xa2\x4f\x33\x99\x59\xa5\x69\x6a\xb7\x6d\xad\xa5\xf9\
+\x14\xc4\xd4\xb2\x02\x0c\x52\x07\x01\xa7\xfb\x06\x2b\xa5\xec\xe6\
+\xdd\x76\x13\x6f\x49\xfb\x91\xd6\xba\xb6\x5b\x77\x08\x22\x29\x51\
+\xf7\x62\x9c\x0a\x32\x32\x32\x72\x60\x14\x45\xd2\xb3\x42\x5e\x1d\
+\x1e\x1e\xde\x6b\xcd\x9a\x35\xcf\xd7\x51\x06\x08\x52\x07\xe5\xf0\
+\xc7\x70\x2a\x88\xc5\xa1\x94\xfa\x31\x11\x9d\x22\x44\xf3\xc5\xba\
+\xce\x64\x87\x20\xc2\x0a\x75\x2c\xcc\x87\x20\xcb\x89\x68\x5c\xc8\
+\xf1\x06\xad\xf5\x12\x61\x6c\xa9\x30\x08\x52\x0a\x57\x67\x3b\x3b\
+\x17\x24\x49\x92\x7d\x8c\x31\x4f\x48\x88\x1a\x63\x9e\xca\xb2\xac\
+\xca\x73\x26\x85\x87\x85\x20\x85\x51\x75\xba\xa3\x73\x41\xaa\xde\
+\x66\xd9\xf3\x1e\xb3\x2c\xfb\x8d\xef\xaa\x40\x10\xdf\x84\xdb\x91\
+\xdf\x97\x20\xe2\xdb\x2c\x63\x4c\x9c\x65\x99\xf4\x16\xad\x70\x55\
+\x20\x48\x61\x54\x9d\xee\xe8\x45\x90\x8a\xb7\x59\xb7\x64\x59\x76\
+\x96\xef\xaa\x34\x51\x10\xfb\x93\x66\xf1\xef\x75\x7c\x03\x0b\x3c\
+\xbf\xf4\xf4\x5a\x2f\x82\xf4\x6f\xb3\x7e\x47\x44\x07\x97\xe5\x6a\
+\x8c\x79\x32\xcb\xb2\x7d\xca\xc6\x95\xed\xdf\x48\x41\x9a\xb0\xdd\
+\x4b\x59\x90\x4d\xef\xdf\x3f\xb9\xf6\x5e\xe1\x3c\x7d\x0a\x72\x13\
+\x11\xd9\x63\xe8\x4a\xb7\xad\x5b\xb7\xee\xb5\x6e\xdd\xba\xa7\x4a\
+\x07\x96\x08\x80\x20\x25\x60\x85\xdc\xb5\xc1\x82\xd8\x7d\x78\xed\
+\xd1\x6e\xa5\x1b\x33\x9f\x95\xa6\xa9\x93\xe3\x17\x66\x1a\x1c\x82\
+\x94\x2e\x4b\x98\x01\x4d\x15\x24\x49\x92\x63\x8c\x31\xbf\x14\x52\
+\x5d\xaf\xb5\x5e\x26\x8c\x2d\x14\x06\x41\x0a\x61\x0a\xbf\x53\x53\
+\x05\x59\xb4\x68\xd1\xfc\xdd\x76\xdb\xcd\x3e\xc5\x58\xba\x31\xf3\
+\x03\x69\x9a\xda\x87\xf2\xbc\x35\x08\xe2\x0d\x6d\xb3\x12\x37\x55\
+\x10\x4b\x49\x29\xf5\x08\x11\x1d\x56\x96\x58\x1d\x5f\x18\x42\x90\
+\xb2\x55\x09\xb4\x7f\x93\x05\x89\xe3\xf8\x56\x66\xfe\x7c\x59\xb4\
+\xc6\x98\xff\x64\x59\xb6\x7d\xd9\xb8\x32\xfd\x21\x48\x19\x5a\x01\
+\xf7\x6d\xb8\x20\x57\x31\xf3\xc5\x42\xbc\x0b\xb5\xd6\x2f\x0a\x63\
+\xe7\x0c\x83\x20\x73\x22\x6a\x47\x87\x26\x0b\x32\x32\x32\x72\x51\
+\x14\x45\xd7\x08\x49\xef\xaf\xb5\x7e\x5c\x18\x3b\x67\x18\x04\x99\
+\x13\x51\x3b\x3a\x34\x5c\x90\x4f\x46\x51\x64\x0f\xde\x91\xb4\x13\
+\xb4\xd6\x3f\x97\x04\x16\x89\x81\x20\x45\x28\xb5\xa0\x4f\x93\x05\
+\x59\xb6\x6c\xd9\x7e\xc3\xc3\xc3\xa2\x57\x01\xdf\xdf\x85\x40\x90\
+\x16\x5c\xfc\x45\x96\xd0\x64\x41\x16\x2f\x5e\xbc\xdd\xce\x3b\xef\
+\xfc\x7a\x91\x75\x6c\xdb\x87\x99\x47\xd3\x34\xf5\xb6\x15\x10\x04\
+\x91\x54\x25\xc0\x98\x26\x0b\x62\x71\x26\x49\xf2\xba\x31\x66\x3b\
+\x01\x5a\x6f\x3f\x83\xb1\x73\x81\x20\x82\x8a\x84\x18\xd2\x74\x41\
+\x94\x52\x2f\x10\xd1\x2e\x02\xb6\x10\x44\x00\x0d\x21\xdb\x10\x08\
+\x40\x90\xbf\x10\xd1\x07\x04\x85\x83\x20\x02\x68\x08\x09\x4f\x90\
+\x3f\x11\xd1\xbe\x82\xc2\x41\x10\x01\x34\x84\x04\x26\x48\x92\x24\
+\x8f\x1a\x63\x3e\x24\x28\x1c\x04\x11\x40\x43\x48\x60\x82\x28\xa5\
+\xec\x29\x00\x92\x1f\x1e\x42\x10\x5c\xed\xd5\x09\x04\xf0\x1e\xe4\
+\x21\x22\x3a\x5c\xb0\x52\x08\x22\x80\x86\x90\xf0\x5e\x41\xec\x93\
+\x81\x7b\x0a\x0a\x07\x41\x04\xd0\x10\x12\x9e\x20\xaf\x10\xd1\x0e\
+\x65\x0b\xe7\x72\x63\xed\xe9\xc6\xc6\xf7\x20\x65\x2b\x12\x68\xff\
+\x26\xdf\x62\x8d\x8e\x8e\xee\xb0\x75\xeb\x56\x2b\x48\xe9\xe6\xf2\
+\x80\x1f\x08\x52\x1a\x7f\x7b\x02\x9a\x2c\x88\x52\xca\xde\x5a\x89\
+\x36\x5f\x70\x79\x76\x09\x04\x69\xcf\xf5\x5e\x7a\x25\x4d\x16\x24\
+\x8e\xe3\xc3\x99\xd9\xbe\x49\x2f\xdd\x26\x27\x27\xf7\x59\xbb\x76\
+\xed\x93\xa5\x03\x0b\x06\xe0\x16\xab\x20\xa8\xd0\xbb\x35\x59\x90\
+\x91\x91\x91\x33\xa2\x28\xba\x4d\xc0\x78\xeb\xc4\xc4\xc4\x42\x57\
+\xc7\xc3\xe1\x15\x44\x50\x81\xb6\x84\x34\x59\x90\x38\x8e\x57\x30\
+\xf3\x1a\x01\xeb\xbf\x6a\xad\x77\x17\xc4\x15\x0e\xc1\x2b\x48\x61\
+\x54\x61\x77\x6c\xb2\x20\x49\x92\xdc\x6c\x8c\x39\x5b\x40\xf8\x61\
+\xad\xb5\xe4\xbb\x93\xc2\x43\x41\x90\xc2\xa8\xc2\xee\xd8\x64\x41\
+\xfa\x73\x13\x01\xd6\x5a\xdb\xad\x6a\xbd\x35\x08\xe2\x0d\x6d\xb3\
+\x12\x37\x59\x90\x66\x91\x7a\xe7\x6c\x20\x48\x93\xab\xe3\x70\x6e\
+\x10\x44\x06\x13\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\x83\x20\x32\
+\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\x56\
+\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\x17\
+\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\
+\x8c\x5b\x70\x51\x10\x44\x56\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\
+\x95\x0c\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\
+\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\x56\x32\x08\
+\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\x17\x05\x41\
+\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\
+\x70\x51\x10\x44\x56\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\
+\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\
+\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\x56\x32\x08\x22\xe3\
+\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\
+\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\
+\x10\x44\x56\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\
+\xb8\x05\x17\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\
+\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\x56\x32\x08\x22\xe3\x16\x5c\
+\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\x17\x05\x41\x64\x25\x83\x20\
+\x32\x6e\xc1\x45\x41\x10\x59\xc9\x20\x88\x8c\x5b\x70\x51\x10\x44\
+\x56\x32\x08\x22\xe3\x16\x5c\x14\x04\x91\x95\x0c\x82\xc8\xb8\x05\
+\x17\x05\x41\x64\x25\x83\x20\x32\x6e\xc1\x45\x41\x10\x59\xc9\x1a\
+\x29\x88\x6c\x29\x88\x2a\x40\xe0\xb8\x02\x7d\xa6\xeb\x72\x85\xd6\
+\x7a\x95\x30\x36\xe8\xb0\x26\x0a\x12\x34\xd0\x96\x4e\x1e\x82\xb8\
+\x2e\xac\x52\xca\xb8\xce\x89\x7c\x03\x23\x00\x41\x5c\xa3\x87\x20\
+\xae\x89\x0e\x34\x1f\x04\x71\x8d\x1f\x82\xb8\x26\x3a\xd0\x7c\x10\
+\xc4\x35\x7e\x08\xe2\x9a\xe8\x40\xf3\x41\x10\xd7\xf8\x21\x88\x6b\
+\xa2\x03\xcd\x07\x41\x5c\xe3\x87\x20\xae\x89\x0e\x34\x1f\x04\x71\
+\x8d\x1f\x82\xb8\x26\x3a\xd0\x7c\x10\xc4\x35\x7e\xa5\xd4\xf3\x44\
+\xf4\x1e\xd7\x79\x91\x6f\x20\x04\xce\xd5\x5a\xdf\x3c\x90\x91\x07\
+\x3c\xa8\xcf\x2f\x0a\x1f\x21\xa2\xc3\x06\xbc\x3e\x0c\xef\x80\x80\
+\x31\xe6\x90\x2c\xcb\x7e\xef\x20\x55\x70\x29\x7c\x0a\x32\x4e\x44\
+\xcb\x83\x23\x82\x09\x6f\x4b\xe0\x2e\xad\xf5\xc9\x5d\xc5\xe2\x4d\
+\x10\x0b\x54\x29\xf5\x04\x11\xed\xd3\x55\xb8\x6d\x58\x77\x97\x5f\
+\x3d\x6c\xfd\xbc\x0a\x62\x07\x48\x92\x64\x93\x31\x66\x51\x1b\x2e\
+\x96\x0e\xae\x61\x44\x6b\xbd\xb6\x83\xeb\x7e\x7b\xc9\xde\x05\xe9\
+\xbf\x92\x9c\x43\x44\xa7\x10\xd1\x87\x89\x68\xdf\x2e\x03\x6f\xf8\
+\xda\x5f\x22\xa2\x5f\x33\xb3\x7d\xbf\xb1\x31\x4d\xd3\x3f\x37\x7c\
+\xbe\xde\xa7\x57\x8b\x20\xde\x57\x81\x01\x40\xc0\x13\x01\x08\xe2\
+\x09\x2c\xd2\xb6\x83\x00\x04\x69\x47\x1d\xb1\x0a\x4f\x04\x20\x88\
+\x27\xb0\x48\xdb\x0e\x02\x10\xa4\x1d\x75\xc4\x2a\x3c\x11\x80\x20\
+\x9e\xc0\x22\x6d\x3b\x08\x40\x90\x76\xd4\x11\xab\xf0\x44\x00\x82\
+\x78\x02\x8b\xb4\xed\x20\x00\x41\xda\x51\x47\xac\xc2\x13\x01\x08\
+\xe2\x09\x2c\xd2\xb6\x83\x00\x04\x69\x47\x1d\xb1\x0a\x4f\x04\x20\
+\x88\x27\xb0\x48\xdb\x0e\x02\x10\xa4\x1d\x75\xc4\x2a\x3c\x11\x80\
+\x20\x9e\xc0\x22\x6d\x3b\x08\x40\x90\x76\xd4\x11\xab\xf0\x44\x00\
+\x82\x78\x02\x8b\xb4\xed\x20\x00\x41\xda\x51\x47\xac\xc2\x13\x01\
+\x08\xe2\x09\x2c\xd2\xb6\x83\x00\x04\x69\x47\x1d\xb1\x0a\x4f\x04\
+\x20\x88\x27\xb0\x48\xdb\x0e\x02\x10\xa4\x1d\x75\xc4\x2a\x3c\x11\
+\x80\x20\x9e\xc0\x22\x6d\x3b\x08\x40\x90\x76\xd4\x11\xab\xf0\x44\
+\x00\x82\x78\x02\x8b\xb4\xed\x20\x00\x41\xda\x51\x47\xac\xc2\x13\
+\x81\xff\x02\x47\xb6\x8f\x23\x5e\xd2\x05\xf5\x00\x00\x00\x00\x49\
+\x45\x4e\x44\xae\x42\x60\x82\
+\x00\x00\x07\xe2\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\
+\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
+\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
+\x79\x71\xc9\x65\x3c\x00\x00\x07\x74\x49\x44\x41\x54\x78\xda\xd5\
+\x59\x69\x4c\x54\x57\x18\x35\x21\xe2\x8a\xfc\x20\x10\x11\xca\xa8\
+\xd8\x61\x70\x60\x06\x4a\x91\xaa\x58\x94\x68\x54\xa4\x2e\x35\x26\
+\x60\x63\xa8\x68\x30\x06\xe2\xb8\x47\x62\x0d\xee\x8a\x8e\xe2\x86\
+\xbb\x8e\xbb\xb8\xa2\xe3\x2e\x28\x6e\xe3\x8a\x8e\xbb\xb8\x27\x28\
+\x7f\xc4\xa4\x09\x86\x5f\xfe\x38\xbd\xe7\xbe\xe2\x65\x22\x10\x41\
+\x68\x99\x97\x7c\x2c\x61\xde\x7b\xe7\x7c\xdf\xf9\xce\xfd\xee\xa5\
+\x05\x80\x16\x8d\x75\xf5\x8a\x8a\xf2\x16\x61\x13\x51\x24\x22\xa5\
+\x45\x13\x5f\x00\xe4\x97\xc6\x02\x6f\xee\x63\x36\xbf\x1d\xd3\xa6\
+\x0d\x2c\x9e\x9e\x18\xa0\xd7\xe3\x07\x7f\x7f\x9d\x3b\x10\x20\x78\
+\x0b\x01\x67\xb4\x6d\x0b\xc7\xd0\xa1\xb0\xf7\xe8\x81\xe1\xfe\xfe\
+\xe8\xa6\xd3\xa5\x35\x5f\x02\x4a\x32\xf9\x04\x9b\xd9\xa1\x03\x4a\
+\x4f\x9e\x04\x4e\x9f\x76\x03\x02\x4a\x32\xce\x3f\xda\xb7\x47\x6e\
+\x74\x34\x2a\x5f\xbf\x06\x00\xf7\x20\xc0\x06\x8d\x37\x18\xfe\xfe\
+\x53\x68\xbd\x30\x3d\x1d\xa8\xa8\x00\x3e\x7f\xd6\x42\x54\xa1\x99\
+\x12\x50\x2e\xf3\x5b\x60\x20\x2c\xad\x5a\xa1\x74\xff\x7e\xe0\xd3\
+\x27\xd7\x38\x76\xac\x59\x12\x20\x78\x1d\x25\x93\xe4\xed\x0d\xab\
+\x68\xd8\xca\x9b\x37\x81\x8f\x1f\x81\xf2\x72\x15\x1f\x3e\x00\x87\
+\x0f\x7f\x21\x10\xd1\xbd\xfb\x26\xde\xf7\x7f\x13\x20\xf8\x61\x94\
+\x0c\x2d\xd2\x9e\x9c\x0c\xbc\x79\x03\x94\x95\x01\xef\xdf\x6b\xf1\
+\xee\x9d\x16\xa5\xa5\x40\x5e\x9e\x24\x40\x79\xfd\xee\xe7\x87\x04\
+\x9d\x0e\x24\x2e\x9e\x91\x45\x32\xff\x35\x01\x82\xcf\x21\x88\x8c\
+\x76\xed\x50\xb2\x6a\x95\x06\x9e\x0d\xcb\x78\xf5\x4a\x8b\x97\x2f\
+\x81\x17\x2f\xb4\x78\xfe\x1c\x28\x29\x41\x69\x7e\x3e\x1c\x8b\x16\
+\xc1\x36\x68\x10\x2c\x5e\x5e\x60\xe5\x06\x06\x07\x83\xae\x25\x22\
+\xae\x89\x09\x28\xc9\x8c\xf2\xf1\xc1\xfc\xa0\x20\x94\x9f\x38\x21\
+\x81\xe1\xd9\x33\xe0\xe9\x53\x2d\x9e\x3c\x01\x1e\x3f\x06\x1e\x3d\
+\x02\x1e\x3e\xd4\xe2\xc1\x03\xe0\xfe\x7d\xc0\xe9\x04\xee\xdd\xd3\
+\xe2\xee\x5d\x38\x17\x2e\x84\xd5\x68\x64\x65\x64\x55\xd8\x4b\x7c\
+\x47\x93\x10\x60\x86\xe2\xc2\xc2\xa4\x64\xf2\x12\x12\x80\x5b\xb7\
+\x6a\x04\x47\x60\x28\x2e\x06\xee\xdc\x01\x6e\xdf\xd6\x3e\xc7\xde\
+\xb8\x71\x03\xb8\x7e\x5d\x0b\x87\x03\xb8\x76\x0d\xb8\x7a\x15\xb8\
+\x72\x45\x56\xd1\xda\xb5\x2b\x68\xbf\x94\x25\x1d\xad\x51\x09\x50\
+\xab\x2c\x75\x86\x78\x81\x73\xce\x9c\xda\x40\xd6\x08\x0e\x97\x2f\
+\x03\x97\x2e\x01\x45\x45\xc0\xc5\x8b\xc0\x85\x0b\x40\x61\x21\x70\
+\xfe\xbc\x16\x67\xcf\x02\x67\xce\xc8\xb5\xc2\x39\x71\x22\x2c\x2d\
+\x5b\x82\x8e\xc6\x6a\x7c\x1f\x01\x65\x91\x45\x6c\x3c\x4a\xa6\x74\
+\xeb\xd6\x9a\x80\xd6\x0c\xb2\xa0\x40\x03\x78\xee\x9c\x02\x79\xea\
+\x94\x5c\x13\x40\xe9\xd9\xed\xd2\x5e\x21\xfa\x02\x47\x8f\x02\x47\
+\x8e\x00\x87\x0e\xa1\x72\xdd\x3a\x58\x85\x5b\x51\xa6\x94\x2b\x31\
+\x34\x88\x00\xb5\x18\x6b\x36\x4b\xc9\xd8\xfa\xf4\x41\xe5\xf1\xe3\
+\x35\x81\x65\x36\x6b\x07\x4a\x90\xbc\x8f\x40\x35\x90\xd2\x52\x71\
+\xf0\x20\x70\xe0\x80\x74\x27\xec\xdb\x07\xec\xdd\x0b\xec\xde\x0d\
+\xec\xda\x05\xec\xdc\x09\x6c\xde\x0c\x9b\xe8\x0d\xbe\x5b\x91\xa8\
+\x3f\x01\x0b\x5d\xa2\xd0\x62\xd1\x40\xec\xd9\x43\x70\x5a\x66\x5d\
+\xc1\x32\xa3\x0a\xac\x96\x51\x02\x65\x46\xab\x03\xe5\x33\x14\xd0\
+\x1d\x3b\x80\xed\xdb\x81\x6d\xdb\x80\x2d\x5b\x24\x68\x6c\xdc\x08\
+\x6c\xd8\x00\xac\x5f\x0f\xe4\xe4\xc0\x11\x1b\xeb\x42\xa2\xbe\x04\
+\xe2\xe8\x0c\x16\xa1\xfb\x92\x4d\x9b\x98\x79\xbe\x80\x2f\xd4\xc0\
+\xa9\xcc\xba\x66\x95\x2b\xb1\x06\x56\x65\xd4\x66\xd3\xee\xa3\x04\
+\xab\x03\xcd\xcd\x05\xd6\xae\x05\xd6\xac\x01\x68\xc7\x2b\x57\x02\
+\x2b\x56\x00\xcb\x97\x03\xd9\xd9\x80\x70\xa9\x3c\xa3\x51\x36\x77\
+\x4c\x64\xe4\x29\x81\xcf\xa3\xbe\x3d\x90\xd2\xcf\x60\xa8\x90\xf3\
+\xcd\xd4\xa9\xd4\xbf\x06\xc8\x6a\xd5\x5e\x46\x62\xfc\x5d\x49\x40\
+\x65\x56\x03\xcb\xcf\xb8\x82\x5d\xbd\x5a\x81\xe5\x73\x96\x2d\x03\
+\x96\x2e\x05\x16\x2f\x06\xc4\x1a\x81\x05\x0b\x80\x79\xf3\x80\xac\
+\x2c\x80\x86\x21\xde\x6b\xeb\xd4\x09\xec\xc3\x68\xb3\x39\xbb\xde\
+\x2e\x24\x96\xfe\x9e\xbd\xc3\xc3\x9f\xc8\x09\x33\x2e\x0e\x95\xd4\
+\x3e\x25\x43\x00\x4b\x96\xf0\xa5\xcc\x14\x7f\x66\xf6\x08\x4e\x03\
+\x29\x9a\x51\x65\x56\x81\x65\x66\xf9\x59\xde\xf3\x15\xd8\xd9\xb3\
+\x81\x19\x33\x80\x49\x93\x80\x71\xe3\x00\xae\xf0\x62\x2f\x51\x19\
+\x1f\x8f\xf9\xe2\xfd\x74\x42\x81\x27\xb1\xde\x36\x1a\xda\xad\x9b\
+\x1f\x4b\x28\x67\x7c\x11\xa5\xcc\x38\x1b\x9a\x20\x49\x60\xfe\x7c\
+\x60\xee\x5c\x05\x62\xd6\x2c\x60\xe6\x4c\x60\xda\x34\xfe\xac\x81\
+\x62\x05\x27\x4f\xd6\xc0\x65\x64\x00\xc2\x32\x31\x61\x02\x30\x7e\
+\x3c\x90\x9a\xaa\x81\x1d\x35\x0a\x18\x39\x12\x18\x3e\x5c\x02\xc7\
+\x90\x21\xc0\xe0\xc1\xc0\xc0\x81\x28\x8d\x89\xc1\x38\x0f\x0f\xf4\
+\x36\x99\xca\x04\xa4\x36\x0d\x59\x89\x3d\xa2\x4d\xa6\x4c\xee\xb2\
+\xf8\x20\x07\xb3\x56\x5c\xcc\x06\xad\x9b\xc0\x94\x29\xb5\x83\x4e\
+\x49\x01\xc6\x8c\x01\x46\x8f\x06\x92\x92\xea\x24\x80\xfe\xfd\x61\
+\xef\xd2\x45\xda\x6b\x54\x78\x78\x4e\x83\x67\xa1\x70\x83\x21\x96\
+\x59\xa0\xa4\x6c\x89\x89\x94\x14\x5d\x89\xd2\xa8\x8b\x00\x6d\x95\
+\x84\x55\xd0\x04\xd8\x27\xd4\xfe\xd8\xb1\xdf\x44\xa0\x52\xd8\x79\
+\x66\xeb\xd6\x60\x5f\x76\xf4\xf5\xd5\x37\x80\x80\x92\xd4\x2f\x91\
+\x91\x0e\xb9\xc0\xe9\xf5\x94\x14\x47\x05\xda\x5f\xad\x04\x4a\x84\
+\x8c\xec\x69\x69\x55\x41\x67\x23\x79\x45\x88\xee\xc5\xcf\xd7\x41\
+\x00\xfd\xfa\xc1\x11\x12\x22\x5d\x29\xd2\x68\xcc\xa5\x2a\xbe\x67\
+\x3f\xe0\x41\x57\x90\x23\x86\xb7\xb7\xab\xa4\x58\x09\x57\x02\x1c\
+\xa7\x59\x7e\x39\x26\xb0\x97\xb8\xc6\x08\x77\x63\x02\xe8\x70\x8a\
+\x0c\x17\x3b\xca\xac\x16\x02\x10\x46\x92\xd9\xaa\x95\xaa\xc2\xf7\
+\xee\xc8\x7e\x0a\x0b\x1b\x1c\x67\x34\x56\xc8\x21\x8f\x8d\x48\x10\
+\x85\x85\x94\xc6\x57\x04\x08\xdc\x64\x30\x58\xb9\x2b\xe3\x77\xd1\
+\x53\x45\x04\x22\x2a\xc9\xbe\xa2\x24\x15\x11\x1a\x44\x2d\x04\x1c\
+\x82\x34\x93\x61\x0e\x0d\xcd\x66\x22\xbf\x7b\x4f\x2c\x00\xf9\xc7\
+\x44\x44\xdc\xe4\x43\x99\xd1\x72\xbb\x9d\x20\xb8\x0e\x28\x02\x5f\
+\x6f\x29\xdb\x8b\xf0\x11\xa1\x0b\x0b\x09\xf9\xab\xa7\xd1\x58\xcc\
+\xbf\xb3\x9a\xac\x08\xef\x97\x76\x3d\x62\xc4\x57\x04\x2a\x7b\xf6\
+\x84\x45\x39\x92\x4f\x63\x9d\x4a\x78\xf4\x30\x9b\x37\x71\xf5\x26\
+\x08\x27\x7d\x9f\x20\x38\x6a\x4c\x9f\xfe\x2d\x7b\x62\xef\xf0\x90\
+\x90\xb4\x5f\xbb\x77\x2f\x73\x59\x73\x0a\x0a\xe8\x56\x2e\x04\x20\
+\x9a\xd9\xa6\xed\xec\xd0\x35\x28\x68\x58\xa3\x9e\x0b\x09\x8b\x4b\
+\xa6\x2c\x28\x29\x36\x2b\x49\x70\x7a\xb5\x8b\x5d\x98\x22\x50\x77\
+\x35\x45\x6f\x1d\x66\xaf\xb0\x9a\x24\x21\xd7\x9c\xc4\x44\x17\x02\
+\x4e\x83\x41\xf6\x91\x90\xf0\x5e\x71\x9b\x67\xa3\x9e\xcc\x09\x49\
+\x84\x72\xf5\xa6\xa4\xac\x51\x51\x04\x41\x32\xb5\x11\xa8\x75\xcd\
+\x11\x19\x56\x24\x28\xcb\x84\x84\x2f\x04\xd0\xab\x57\x75\x19\xf9\
+\x35\xc5\xd9\xa8\x67\x8f\x88\x88\x3c\x66\x92\x03\x21\x89\x10\x90\
+\x2e\x20\x20\xf9\x5b\x1f\x20\xac\x3a\xd5\x85\x04\x67\x2a\x45\x00\
+\x36\x5f\x5f\xf9\xcc\x80\x8e\x1d\xe3\x1b\x99\x80\xba\x7e\x36\x99\
+\x26\x52\x52\x72\x97\x15\x1e\x5e\x42\x95\xd5\xf7\x8c\x95\x95\x63\
+\x4f\x48\x39\xa6\xa7\x7f\x21\xe0\x10\x16\xce\x2a\x1b\xf5\xfa\x2c\
+\x56\xad\x49\x08\xf0\xe2\x89\xf4\x8f\x9d\x3b\xa7\xfe\x0b\x5e\xd7\
+\x80\x53\x3f\x5b\x52\x95\x3b\xb1\x1f\x06\x0c\x90\x04\xca\x23\x22\
+\xb8\x5f\xe0\x68\x61\xa7\x09\x34\x11\x01\xa5\x6b\x0e\x61\x0d\x3d\
+\x30\xe6\x31\x3d\xdd\x8d\x16\xcd\xa9\x97\x04\x10\x13\xc3\x3e\xa8\
+\xaa\x6c\xa0\x0b\x81\x66\x76\x55\x6d\xb0\x94\x94\x84\x2b\x91\x80\
+\xd5\xcb\x8b\xff\x77\x20\x60\x7d\xf3\x25\xa0\x48\xe4\x53\x32\x9c\
+\xa3\xb8\x41\x22\x01\x7b\x40\x00\xd8\x5f\x34\x07\x77\x20\xa0\x63\
+\xb6\xe9\x68\xf2\xc8\xa6\x6f\x5f\x38\xc4\x88\xcd\x26\x37\x04\x07\
+\x4f\xa5\xf3\x35\x63\x02\xaa\xa1\x59\x05\x4e\xc0\x9c\x7a\x4b\x0c\
+\x06\x4e\xa7\xf2\xd0\x98\xe3\x89\x3b\x10\x30\xb3\x17\x38\xf8\xf1\
+\x50\xa1\xdc\x64\xaa\x4e\xc0\xaf\x79\x13\x50\x24\x9c\x9c\x5e\xe5\
+\xe2\x26\x46\x94\x34\x01\x59\xcc\x61\xc5\xe2\x4f\xfe\xee\x42\x20\
+\x85\x0b\x18\xf7\x20\xdc\x77\x54\x23\x10\xe8\x2e\x04\xbc\xb9\x91\
+\xa2\xa5\xf2\x0c\x2a\xd3\xd3\xb3\x8a\x80\xde\x0d\x08\x28\x4b\xad\
+\x92\x11\xd7\x02\x8e\xe1\xee\x46\xc0\x42\x19\x71\xdf\x41\x5b\xa5\
+\xbd\xba\x1b\x01\x1d\xdd\x88\xdb\x58\xb7\x24\xc0\xab\xaf\xd1\xf8\
+\x96\xa3\x76\x35\x02\x61\x6e\x45\x80\x7d\xc0\x93\x0d\xee\x37\x38\
+\xb2\x73\xda\x75\x37\x02\x66\xfe\xdb\x2b\x3e\x34\x54\xee\x09\xdc\
+\xab\x02\xea\x6a\x43\xe0\x22\xcc\x22\x7c\x88\xfd\x1f\xf9\x92\x41\
+\x48\x3f\x71\x1a\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
+\x82\
+\x00\x00\x04\x32\
+\x89\
+\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
+\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
+\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
+\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
+\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\
+\x0b\x12\x01\xd2\xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
+\xd2\x01\x07\x0b\x05\x06\xab\xd4\xb8\x1c\x00\x00\x03\xaf\x49\x44\
+\x41\x54\x78\xda\xb5\x96\xcd\x4b\x63\x57\x14\xc0\x7f\xf7\x46\x13\
+\x34\x89\x93\x9a\x28\x88\x1f\x09\x8e\x8b\x6e\x9c\xea\xe0\xc6\x27\
+\xe8\x80\x6e\x82\x10\x19\xac\x4b\x75\xd1\x59\x64\xd3\x2e\x66\xe7\
+\x6a\x96\xb3\x18\x98\xbf\xa1\x9b\xa1\x8b\x30\x2e\x4a\x2b\x68\x57\
+\x82\xdf\xd2\x8e\x16\x41\x34\x7e\x4c\x05\xbf\x88\x08\xad\x21\xef\
+\xf3\xbe\xd7\x8d\x79\x38\x1d\xa3\xa5\xd8\x0b\x07\x0e\xe7\x1d\xce\
+\xef\x9e\x73\x38\xe7\x3e\xf8\x9f\x8f\xa8\xf4\x21\x9d\x4e\x67\x0a\
+\x85\xc2\x98\x69\x9a\x9a\xe3\x38\x6d\x4a\x29\x80\x23\x60\xe9\xd1\
+\xa3\x47\xb9\xf5\xf5\xf5\x1f\xff\x13\x60\x7c\x7c\xfc\xe9\xe6\xe6\
+\xe6\x5b\x29\xe5\xc0\xe0\xe0\x20\x4f\x9e\x3c\x21\x1e\x8f\xe3\xba\
+\x2e\x85\x42\x81\xb5\xb5\x35\x66\x67\x67\x71\x1c\x67\xbe\xb9\xb9\
+\xf9\xe5\xea\xea\xea\x6f\xff\x1a\xf0\xec\xd9\xb3\xcc\xe9\xe9\xe9\
+\x7b\x4d\xd3\xaa\x46\x47\x47\x69\x6c\x6c\xa4\xba\xba\x1a\x21\x04\
+\xae\xeb\x62\xdb\x36\x86\x61\x70\x72\x72\xc2\xbb\x77\xef\x58\x5e\
+\x5e\x76\x62\xb1\xd8\xe8\xfe\xfe\x7e\xc5\x6c\x02\x65\x65\x64\x64\
+\xe4\x69\x3e\x9f\xff\xe5\xf9\xf3\xe7\x55\x93\x93\x93\x24\x12\x09\
+\xa2\xd1\x28\xf5\xf5\xf5\x24\x12\x09\x1a\x1a\x1a\x88\xc7\xe3\x44\
+\x22\x11\x22\x91\x08\x9d\x9d\x9d\xe8\xba\x2e\x37\x36\x36\xc6\x5a\
+\x5a\x5a\x7e\xbe\xbc\xbc\x3c\xbd\x13\x60\x59\xd6\x0f\x9a\xa6\xb5\
+\xbf\x78\xf1\x82\x48\x24\x42\x2c\x16\xa3\xa1\xa1\x81\x48\x24\x42\
+\x28\x14\x22\x10\x08\x10\x08\x04\x08\x85\x42\x44\xa3\x51\xc2\xe1\
+\x30\x8f\x1f\x3f\x66\x77\x77\x57\xee\xed\xed\x7d\x69\x9a\xe6\xf7\
+\xb7\x01\x24\x40\x57\x57\x57\xc6\x75\xdd\x81\x89\x89\x09\x6a\x6b\
+\x6b\x89\xc5\x62\x24\x12\x09\x82\xc1\x20\x81\x40\x00\x29\x25\x52\
+\x4a\x1f\x22\xa5\x24\x1c\x0e\xd3\xde\xde\x4e\x36\x9b\xc5\xf3\xbc\
+\x81\xfa\xfa\xfa\x4c\x45\x40\xa1\x50\x18\xcb\x64\x32\x34\x35\x35\
+\x11\x0e\x87\xa9\xab\xab\x43\x08\x81\x94\x12\x21\xc4\x67\x72\x13\
+\xda\xd5\xd5\x45\x3a\x9d\x46\xd7\xf5\xb1\x8a\x00\xd3\x34\xb5\xbe\
+\xbe\x3e\x82\xc1\x20\xd1\x68\x14\x21\x04\x9e\xe7\xe1\x79\xde\x27\
+\xce\x65\xdb\x4d\xbb\x10\x82\xa1\xa1\x21\x94\x52\xda\x6d\x80\x2a\
+\x00\xa5\x54\x5b\x6b\x6b\x2b\xa1\x50\xc8\x0f\x3e\x3c\x3c\xec\x07\
+\xb8\x0d\x90\xcb\xe5\x7c\xbd\xa3\xa3\x03\xa0\xed\x2e\x00\x42\x08\
+\xaa\xaa\xaa\x50\x4a\xa1\x94\xc2\xf3\x3c\x1f\x76\x1b\x40\x29\x85\
+\x6d\xdb\x38\x8e\x83\x6d\xdb\x9f\x65\xfb\x4f\xc0\xd1\xe1\xe1\x61\
+\x7b\x73\x73\x33\xb6\x6d\x23\x84\x60\x7a\x7a\xda\xaf\x75\x39\xb8\
+\xeb\xba\x38\x8e\x83\x52\x0a\xc3\x30\xb0\x6d\x1b\xcb\xb2\xd8\xd9\
+\xd9\x41\x29\x75\x54\xb1\x07\x9e\xe7\x2d\xcd\xcd\xcd\x61\x18\x06\
+\x96\x65\x61\x9a\x26\x96\x65\xf9\x7a\x59\xca\x36\xc3\x30\xd0\x75\
+\xdd\xb7\xcf\xce\xce\xe2\xba\xee\x52\x45\x80\x94\x32\x97\xcb\xe5\
+\xc8\xe7\xf3\xe8\xba\x4e\xa9\x54\x42\xd7\xf5\x4f\xc4\x34\x4d\x4a\
+\xa5\x92\x2f\xa6\x69\xa2\xeb\x3a\xdb\xdb\xdb\xcc\xcc\xcc\x00\xe4\
+\x2a\x0e\x9a\x65\x59\x86\x10\xa2\xfb\xe0\xe0\x20\x35\x38\x38\x88\
+\xeb\xba\x58\x96\xe5\xaf\x07\xcb\xb2\xb0\x6d\xdb\xcf\xa2\x0c\x2b\
+\x16\x8b\xbc\x7a\xf5\x8a\xb3\xb3\xb3\x79\x60\xea\xae\x49\xfe\x53\
+\x4a\xf9\xfb\xf1\xf1\xf1\x37\xe7\xe7\xe7\xb2\xbb\xbb\xdb\x6f\x5e\
+\x39\xa8\xae\xeb\x7e\x79\x4a\xa5\x12\x57\x57\x57\xbc\x79\xf3\x86\
+\xe5\xe5\x65\x07\xf8\x0e\xc8\xdf\xb9\x2a\x5c\xd7\x0d\x0a\x21\xe6\
+\x77\x76\x76\xc6\x3e\x7c\xf8\x20\x5b\x5b\x5b\xa9\xa9\xa9\xf1\x83\
+\x97\xeb\x5d\x2c\x16\xd9\xda\xda\xe2\xf5\xeb\xd7\xac\xac\xac\x38\
+\x40\x09\xf8\x1a\xb8\x04\x7e\xbd\x6f\x5d\x27\x81\xb8\x10\xe2\xad\
+\x94\x72\xa0\xbf\xbf\x9f\xde\xde\x5e\x52\xa9\x14\x00\xfb\xfb\xfb\
+\x2c\x2e\x2e\xb2\xb0\xb0\x00\x30\x0f\xbc\x04\xde\x03\x5f\x5c\x5f\
+\xf6\x02\xf8\x16\xf8\xe9\xbe\x07\x27\x09\x7c\x05\x8c\x01\xda\x8d\
+\x21\x3a\x02\x96\xae\x1b\x7a\x01\x1c\x03\xa4\x52\xa9\x2d\x40\x7c\
+\xfc\xf8\x51\x02\x36\x90\xbe\xf6\xbb\xf7\x24\xef\x90\x9b\x3e\x17\
+\xd9\x6c\xd6\xee\xe9\xe9\xd1\x81\xbf\xae\xcb\x96\x7c\xc8\xa7\x37\
+\x09\x5c\x4d\x4d\x4d\x29\x4d\xd3\x1c\xe0\x0a\x28\x3e\x24\xa4\x9c\
+\x95\x91\xcd\x66\xed\x64\x32\x69\x3f\x34\xe0\x26\xe4\x14\x50\xc0\
+\x00\x90\x14\x0f\xfc\x97\x72\xf3\xc6\x7f\x00\xfc\x0d\x91\xe4\x07\
+\x58\x63\x81\xe3\x00\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
+\x82\
\x00\x00\x0b\xe1\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
@@ -11392,274 +11204,462 @@ qt_resource_data = b"\
\x31\x54\x31\x32\x3a\x30\x35\x3a\x30\x31\x2b\x30\x38\x3a\x30\x30\
\x8e\xd1\x94\x42\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\
+\x00\x00\x0b\x9a\
+\x73\
+\x61\x76\x65\x41\x73\x44\x65\x74\x61\x69\x6c\x3d\xe5\xb0\x87\xe6\
+\xa0\x87\xe7\xad\xbe\xe4\xbf\x9d\xe5\xad\x98\xe5\x88\xb0\xe5\x85\
+\xb6\xe4\xbb\x96\xe6\x96\x87\xe4\xbb\xb6\x0a\x63\x68\x61\x6e\x67\
+\x65\x53\x61\x76\x65\x44\x69\x72\x3d\xe6\x94\xb9\xe5\x8f\x98\xe5\
+\xad\x98\xe6\x94\xbe\xe7\x9b\xae\xe5\xbd\x95\x0a\x6f\x70\x65\x6e\
+\x46\x69\x6c\x65\x3d\xe6\x89\x93\xe5\xbc\x80\xe6\x96\x87\xe4\xbb\
+\xb6\x0a\x73\x68\x61\x70\x65\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\
+\x44\x65\x74\x61\x69\x6c\x3d\xe6\x9b\xb4\xe6\x94\xb9\xe7\xba\xbf\
+\xe6\x9d\xa1\xe9\xa2\x9c\xe8\x89\xb2\x0a\x72\x65\x73\x65\x74\x41\
+\x6c\x6c\x3d\xe9\x87\x8d\xe7\xbd\xae\xe7\x95\x8c\xe9\x9d\xa2\xe4\
+\xb8\x8e\xe4\xbf\x9d\xe5\xad\x98\xe5\x9c\xb0\xe5\x9d\x80\x0a\x63\
+\x72\x74\x42\x6f\x78\x3d\xe7\x9f\xa9\xe5\xbd\xa2\xe6\xa0\x87\xe6\
+\xb3\xa8\x0a\x63\x72\x74\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\
+\xe5\x88\x9b\xe5\xbb\xba\xe4\xb8\x80\xe4\xb8\xaa\xe6\x96\xb0\xe7\
+\x9a\x84\xe5\x8c\xba\xe5\x9d\x97\x0a\x64\x75\x70\x42\x6f\x78\x44\
+\x65\x74\x61\x69\x6c\x3d\xe5\xa4\x8d\xe5\x88\xb6\xe5\x8c\xba\xe5\
+\x9d\x97\x0a\x76\x65\x72\x69\x66\x79\x49\x6d\x67\x3d\xe9\xaa\x8c\
+\xe8\xaf\x81\xe5\x9b\xbe\xe5\x83\x8f\x0a\x7a\x6f\x6f\x6d\x69\x6e\
+\x44\x65\x74\x61\x69\x6c\x3d\xe6\x94\xbe\xe5\xa4\xa7\x0a\x76\x65\
+\x72\x69\x66\x79\x49\x6d\x67\x44\x65\x74\x61\x69\x6c\x3d\xe9\xaa\
+\x8c\xe8\xaf\x81\xe5\x9b\xbe\xe5\x83\x8f\x0a\x73\x61\x76\x65\x44\
+\x65\x74\x61\x69\x6c\x3d\xe4\xbf\x9d\xe5\xad\x98\xe6\xa0\x87\xe7\
+\xad\xbe\xe6\x96\x87\xe4\xbb\xb6\x0a\x6f\x70\x65\x6e\x46\x69\x6c\
+\x65\x44\x65\x74\x61\x69\x6c\x3d\xe6\x89\x93\xe5\xbc\x80\xe5\x9b\
+\xbe\xe5\x83\x8f\xe6\x96\x87\xe4\xbb\xb6\x0a\x66\x69\x74\x57\x69\
+\x64\x74\x68\x44\x65\x74\x61\x69\x6c\x3d\xe8\xb0\x83\xe6\x95\xb4\
+\xe5\xae\xbd\xe5\xba\xa6\xe9\x80\x82\xe5\xba\x94\xe5\x88\xb0\xe7\
+\xaa\x97\xe5\x8f\xa3\xe5\xae\xbd\xe5\xba\xa6\x0a\x74\x75\x74\x6f\
+\x72\x69\x61\x6c\x3d\x50\x61\x64\x64\x6c\x65\x4f\x43\x52\xe5\x9c\
+\xb0\xe5\x9d\x80\x0a\x65\x64\x69\x74\x4c\x61\x62\x65\x6c\x3d\xe7\
+\xbc\x96\xe8\xbe\x91\xe6\xa0\x87\xe7\xad\xbe\x0a\x6f\x70\x65\x6e\
+\x41\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x44\x65\x74\x61\x69\x6c\
+\x3d\xe6\x89\x93\xe5\xbc\x80\xe6\xa0\x87\xe7\xad\xbe\xe6\x96\x87\
+\xe4\xbb\xb6\x0a\x71\x75\x69\x74\x3d\xe9\x80\x80\xe5\x87\xba\x0a\
+\x73\x68\x61\x70\x65\x46\x69\x6c\x6c\x43\x6f\x6c\x6f\x72\x44\x65\
+\x74\x61\x69\x6c\x3d\xe6\x9b\xb4\xe6\x94\xb9\xe5\xa1\xab\xe5\x85\
+\x85\xe9\xa2\x9c\xe8\x89\xb2\x0a\x63\x6c\x6f\x73\x65\x43\x75\x72\
+\x44\x65\x74\x61\x69\x6c\x3d\xe5\x85\xb3\xe9\x97\xad\xe5\xbd\x93\
+\xe5\x89\x8d\xe6\x96\x87\xe4\xbb\xb6\x0a\x63\x6c\x6f\x73\x65\x43\
+\x75\x72\x3d\xe5\x85\xb3\xe9\x97\xad\xe6\x96\x87\xe4\xbb\xb6\x0a\
+\x64\x65\x6c\x65\x74\x65\x49\x6d\x67\x3d\xe5\x88\xa0\xe9\x99\xa4\
+\xe5\x9b\xbe\xe5\x83\x8f\x0a\x64\x65\x6c\x65\x74\x65\x49\x6d\x67\
+\x44\x65\x74\x61\x69\x6c\x3d\xe5\x88\xa0\xe9\x99\xa4\xe5\xbd\x93\
+\xe5\x89\x8d\xe5\x9b\xbe\xe5\x83\x8f\x0a\x66\x69\x74\x57\x69\x6e\
+\x3d\xe8\xb0\x83\xe6\x95\xb4\xe5\x88\xb0\xe7\xaa\x97\xe5\x8f\xa3\
+\xe5\xa4\xa7\xe5\xb0\x8f\x0a\x64\x65\x6c\x42\x6f\x78\x3d\xe5\x88\
+\xa0\xe9\x99\xa4\xe9\x80\x89\xe6\x8b\xa9\xe7\x9a\x84\xe5\x8c\xba\
+\xe5\x9d\x97\x0a\x62\x6f\x78\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\
+\x44\x65\x74\x61\x69\x6c\x3d\xe9\x80\x89\xe6\x8b\xa9\xe7\xba\xbf\
+\xe6\xa1\x86\xe9\xa2\x9c\xe8\x89\xb2\x0a\x6f\x72\x69\x67\x69\x6e\
+\x61\x6c\x73\x69\x7a\x65\x3d\xe5\x8e\x9f\xe5\xa7\x8b\xe5\xa4\xa7\
+\xe5\xb0\x8f\x0a\x72\x65\x73\x65\x74\x41\x6c\x6c\x44\x65\x74\x61\
+\x69\x6c\x3d\xe9\x87\x8d\xe7\xbd\xae\xe6\x89\x80\xe6\x9c\x89\xe8\
+\xae\xbe\xe5\xae\x9a\x0a\x7a\x6f\x6f\x6d\x6f\x75\x74\x44\x65\x74\
+\x61\x69\x6c\x3d\xe6\x94\xbe\xe5\xa4\xa7\xe7\x94\xbb\xe9\x9d\xa2\
+\x0a\x73\x61\x76\x65\x3d\xe7\xa1\xae\xe8\xae\xa4\x0a\x73\x61\x76\
+\x65\x41\x73\x3d\xe5\x8f\xa6\xe5\xad\x98\xe4\xb8\xba\x0a\x66\x69\
+\x74\x57\x69\x6e\x44\x65\x74\x61\x69\x6c\x3d\xe7\xbc\xa9\xe6\x94\
+\xbe\xe5\x88\xb0\xe5\xbd\x93\xe5\x89\x8d\xe7\xaa\x97\xe5\x8f\xa3\
+\xe5\xa4\xa7\xe5\xb0\x8f\x0a\x6f\x70\x65\x6e\x44\x69\x72\x3d\xe6\
+\x89\x93\xe5\xbc\x80\xe7\x9b\xae\xe5\xbd\x95\x0a\x6f\x70\x65\x6e\
+\x44\x61\x74\x61\x73\x65\x74\x44\x69\x72\x3d\xe6\x89\x93\xe5\xbc\
+\x80\xe6\x95\xb0\xe6\x8d\xae\xe9\x9b\x86\xe8\xb7\xaf\xe5\xbe\x84\
+\x0a\x63\x6f\x70\x79\x50\x72\x65\x76\x42\x6f\x75\x6e\x64\x69\x6e\
+\x67\x3d\xe5\xa4\x8d\xe5\x88\xb6\xe5\xbd\x93\xe5\x89\x8d\xe5\x9b\
+\xbe\xe5\x83\x8f\xe4\xb8\xad\xe7\x9a\x84\xe4\xb8\x8a\xe4\xb8\x80\
+\xe4\xb8\xaa\xe8\xbe\xb9\xe7\x95\x8c\xe6\xa1\x86\x0a\x73\x68\x6f\
+\x77\x48\x69\x64\x65\x3d\xe6\x98\xbe\xe7\xa4\xba\x2f\xe9\x9a\x90\
+\xe8\x97\x8f\xe6\xa0\x87\xe7\xad\xbe\x0a\x63\x68\x61\x6e\x67\x65\
+\x53\x61\x76\x65\x46\x6f\x72\x6d\x61\x74\x3d\xe6\x9b\xb4\xe6\x94\
+\xb9\xe5\xad\x98\xe5\x82\xa8\xe6\xa0\xbc\xe5\xbc\x8f\x0a\x73\x68\
+\x61\x70\x65\x46\x69\x6c\x6c\x43\x6f\x6c\x6f\x72\x3d\xe5\xa1\xab\
+\xe5\x85\x85\xe9\xa2\x9c\xe8\x89\xb2\x0a\x71\x75\x69\x74\x41\x70\
+\x70\x3d\xe9\x80\x80\xe5\x87\xba\xe7\xa8\x8b\xe5\xba\x8f\x0a\x64\
+\x75\x70\x42\x6f\x78\x3d\xe5\xa4\x8d\xe5\x88\xb6\xe5\x8c\xba\xe5\
+\x9d\x97\x0a\x64\x65\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\
+\xe5\x88\xa0\xe9\x99\xa4\xe5\x8c\xba\xe5\x9d\x97\x0a\x7a\x6f\x6f\
+\x6d\x69\x6e\x3d\xe6\x94\xbe\xe5\xa4\xa7\xe7\x94\xbb\xe9\x9d\xa2\
+\x0a\x69\x6e\x66\x6f\x3d\xe4\xbf\xa1\xe6\x81\xaf\x0a\x6f\x70\x65\
+\x6e\x41\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x3d\xe5\xbc\x80\xe5\
+\x90\xaf\xe6\xa0\x87\xe7\xad\xbe\x0a\x70\x72\x65\x76\x49\x6d\x67\
+\x44\x65\x74\x61\x69\x6c\x3d\xe4\xb8\x8a\xe4\xb8\x80\xe4\xb8\xaa\
+\xe5\x9b\xbe\xe5\x83\x8f\x0a\x66\x69\x74\x57\x69\x64\x74\x68\x3d\
+\xe7\xbc\xa9\xe6\x94\xbe\xe5\x88\xb0\xe5\xbd\x93\xe5\x89\x8d\xe7\
+\x94\xbb\xe9\x9d\xa2\xe5\xae\xbd\xe5\xba\xa6\x0a\x7a\x6f\x6f\x6d\
+\x6f\x75\x74\x3d\xe7\xbc\xa9\xe5\xb0\x8f\xe7\x94\xbb\xe9\x9d\xa2\
+\x0a\x63\x68\x61\x6e\x67\x65\x53\x61\x76\x65\x64\x41\x6e\x6e\x6f\
+\x74\x61\x74\x69\x6f\x6e\x44\x69\x72\x3d\xe6\x9b\xb4\xe6\x94\xb9\
+\xe4\xbf\x9d\xe5\xad\x98\xe6\xa0\x87\xe7\xad\xbe\xe6\x96\x87\xe4\
+\xbb\xb6\xe7\x9a\x84\xe9\xa2\x84\xe8\xae\xbe\xe7\x9b\xae\xe5\xbd\
+\x95\x0a\x6e\x65\x78\x74\x49\x6d\x67\x44\x65\x74\x61\x69\x6c\x3d\
+\xe4\xb8\x8b\xe4\xb8\x80\xe4\xb8\xaa\xe5\x9b\xbe\xe5\x83\x8f\x0a\
+\x6f\x72\x69\x67\x69\x6e\x61\x6c\x73\x69\x7a\x65\x44\x65\x74\x61\
+\x69\x6c\x3d\xe6\x94\xbe\xe5\xa4\xa7\xe5\x88\xb0\xe5\x8e\x9f\xe5\
+\xa7\x8b\xe5\xa4\xa7\xe5\xb0\x8f\x0a\x70\x72\x65\x76\x49\x6d\x67\
+\x3d\xe4\xb8\x8a\xe4\xb8\x80\xe5\xbc\xa0\x0a\x74\x75\x74\x6f\x72\
+\x69\x61\x6c\x44\x65\x74\x61\x69\x6c\x3d\xe6\x98\xbe\xe7\xa4\xba\
+\xe7\xa4\xba\xe8\x8c\x83\xe5\x86\x85\xe5\xae\xb9\x0a\x73\x68\x61\
+\x70\x65\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x3d\xe5\xbd\xa2\xe7\
+\x8a\xb6\xe7\xba\xbf\xe6\x9d\xa1\xe9\xa2\x9c\xe8\x89\xb2\x0a\x62\
+\x6f\x78\x4c\x69\x6e\x65\x43\x6f\x6c\x6f\x72\x3d\xe5\x8c\xba\xe5\
+\x9d\x97\xe7\xba\xbf\xe6\x9d\xa1\xe9\xa2\x9c\xe8\x89\xb2\x0a\x65\
+\x64\x69\x74\x4c\x61\x62\x65\x6c\x44\x65\x74\x61\x69\x6c\x3d\xe4\
+\xbf\xae\xe6\x94\xb9\xe5\xbd\x93\xe5\x89\x8d\xe6\x89\x80\xe9\x80\
+\x89\xe7\x9a\x84\xe5\x8c\xba\xe5\x9d\x97\xe9\xa2\x9c\xe8\x89\xb2\
+\x0a\x6e\x65\x78\x74\x49\x6d\x67\x3d\xe4\xb8\x8b\xe4\xb8\x80\xe5\
+\xbc\xa0\x0a\x75\x73\x65\x44\x65\x66\x61\x75\x6c\x74\x4c\x61\x62\
+\x65\x6c\x3d\xe4\xbd\xbf\xe7\x94\xa8\xe9\xa2\x84\xe8\xae\xbe\xe6\
+\xa0\x87\xe7\xad\xbe\x0a\x75\x73\x65\x44\x69\x66\x66\x69\x63\x75\
+\x6c\x74\x3d\xe6\x9c\x89\xe9\x9a\xbe\xe5\xba\xa6\xe7\x9a\x84\x0a\
+\x62\x6f\x78\x4c\x61\x62\x65\x6c\x54\x65\x78\x74\x3d\xe5\x8c\xba\
+\xe5\x9d\x97\xe7\x9a\x84\xe6\xa0\x87\xe7\xad\xbe\x0a\x6c\x61\x62\
+\x65\x6c\x73\x3d\xe6\xa0\x87\xe7\xad\xbe\x0a\x61\x75\x74\x6f\x53\
+\x61\x76\x65\x4d\x6f\x64\x65\x3d\xe8\x87\xaa\xe5\x8a\xa8\xe4\xbf\
+\x9d\xe5\xad\x98\xe6\xa8\xa1\xe5\xbc\x8f\x0a\x73\x69\x6e\x67\x6c\
+\x65\x43\x6c\x73\x4d\x6f\x64\x65\x3d\xe5\x8d\x95\xe4\xb8\x80\xe7\
+\xb1\xbb\xe5\x88\xab\xe6\xa8\xa1\xe5\xbc\x8f\x0a\x64\x69\x73\x70\
+\x6c\x61\x79\x4c\x61\x62\x65\x6c\x3d\xe6\x98\xbe\xe7\xa4\xba\xe7\
+\xb1\xbb\xe5\x88\xab\x0a\x66\x69\x6c\x65\x4c\x69\x73\x74\x3d\xe6\
+\x96\x87\xe4\xbb\xb6\xe5\x88\x97\xe8\xa1\xa8\x0a\x66\x69\x6c\x65\
+\x73\x3d\xe6\x96\x87\xe4\xbb\xb6\x0a\x61\x64\x76\x61\x6e\x63\x65\
+\x64\x4d\x6f\x64\x65\x3d\xe4\xb8\x93\xe5\xae\xb6\xe6\xa8\xa1\xe5\
+\xbc\x8f\x0a\x61\x64\x76\x61\x6e\x63\x65\x64\x4d\x6f\x64\x65\x44\
+\x65\x74\x61\x69\x6c\x3d\xe5\x88\x87\xe6\x8d\xa2\xe5\x88\xb0\xe4\
+\xb8\x93\xe5\xae\xb6\xe6\xa8\xa1\xe5\xbc\x8f\x0a\x73\x68\x6f\x77\
+\x41\x6c\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\x3d\xe6\x98\xbe\
+\xe7\xa4\xba\xe6\x89\x80\xe6\x9c\x89\xe5\x8c\xba\xe5\x9d\x97\x0a\
+\x68\x69\x64\x65\x41\x6c\x6c\x42\x6f\x78\x44\x65\x74\x61\x69\x6c\
+\x3d\xe9\x9a\x90\xe8\x97\x8f\xe6\x89\x80\xe6\x9c\x89\xe5\x8c\xba\
+\xe5\x9d\x97\x0a\x61\x6e\x6e\x6f\x50\x61\x6e\x65\x6c\x3d\xe6\xa0\
+\x87\xe6\xb3\xa8\xe9\x9d\xa2\xe6\x9d\xbf\x0a\x61\x6e\x6e\x6f\x3d\
+\xe6\xa0\x87\xe6\xb3\xa8\x0a\x61\x64\x64\x4e\x65\x77\x42\x62\x6f\
+\x78\x3d\xe6\x96\xb0\xe6\xa1\x86\x0a\x72\x65\x4c\x61\x62\x65\x6c\
+\x3d\xe9\x87\x8d\xe6\xa0\x87\xe6\xb3\xa8\x0a\x63\x68\x6f\x6f\x73\
+\x65\x6d\x6f\x64\x65\x6c\x3d\xe9\x80\x89\xe6\x8b\xa9\xe6\xa8\xa1\
+\xe5\x9e\x8b\x0a\x74\x69\x70\x63\x68\x6f\x6f\x73\x65\x6d\x6f\x64\
+\x65\x6c\x3d\xe9\x80\x89\xe6\x8b\xa9\x4f\x43\x52\xe6\xa8\xa1\xe5\
+\x9e\x8b\x0a\x49\x6d\x61\x67\x65\x52\x65\x73\x69\x7a\x65\x3d\xe5\
+\x9b\xbe\xe7\x89\x87\xe7\xbc\xa9\xe6\x94\xbe\x0a\x49\x52\x3d\xe5\
+\x9b\xbe\xe7\x89\x87\xe7\xbc\xa9\xe6\x94\xbe\x0a\x61\x75\x74\x6f\
+\x52\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x3d\xe8\x87\xaa\xe5\
+\x8a\xa8\xe6\xa0\x87\xe6\xb3\xa8\x0a\x72\x65\x52\x65\x63\x6f\x67\
+\x6e\x69\x74\x69\x6f\x6e\x3d\xe9\x87\x8d\xe6\x96\xb0\xe8\xaf\x86\
+\xe5\x88\xab\x0a\x6d\x66\x69\x6c\x65\x3d\xe6\x96\x87\xe4\xbb\xb6\
+\x0a\x6d\x65\x64\x69\x74\x3d\xe7\xbc\x96\xe8\xbe\x91\x0a\x6d\x76\
+\x69\x65\x77\x3d\xe8\xa7\x86\xe5\x9b\xbe\x0a\x6d\x68\x65\x6c\x70\
+\x3d\xe5\xb8\xae\xe5\x8a\xa9\x0a\x69\x63\x6f\x6e\x4c\x69\x73\x74\
+\x3d\xe7\xbc\xa9\xe7\x95\xa5\xe5\x9b\xbe\x0a\x64\x65\x74\x65\x63\
+\x74\x69\x6f\x6e\x42\x6f\x78\x70\x6f\x73\x69\x74\x69\x6f\x6e\x3d\
+\xe6\xa3\x80\xe6\xb5\x8b\xe6\xa1\x86\xe4\xbd\x8d\xe7\xbd\xae\x0a\
+\x72\x65\x63\x6f\x67\x6e\x69\x74\x69\x6f\x6e\x52\x65\x73\x75\x6c\
+\x74\x3d\xe8\xaf\x86\xe5\x88\xab\xe7\xbb\x93\xe6\x9e\x9c\x0a\x63\
+\x72\x65\x61\x74\x50\x6f\x6c\x79\x67\x6f\x6e\x3d\xe5\x9b\x9b\xe7\
+\x82\xb9\xe6\xa0\x87\xe6\xb3\xa8\x0a\x64\x72\x61\x77\x53\x71\x75\
+\x61\x72\x65\x73\x3d\xe6\xad\xa3\xe6\x96\xb9\xe5\xbd\xa2\xe6\xa0\
+\x87\xe6\xb3\xa8\x0a\x72\x6f\x74\x61\x74\x65\x4c\x65\x66\x74\x3d\
+\xe5\x9b\xbe\xe7\x89\x87\xe5\xb7\xa6\xe6\x97\x8b\xe8\xbd\xac\x39\
+\x30\xe5\xba\xa6\x0a\x72\x6f\x74\x61\x74\x65\x52\x69\x67\x68\x74\
+\x3d\xe5\x9b\xbe\xe7\x89\x87\xe5\x8f\xb3\xe6\x97\x8b\xe8\xbd\xac\
+\x39\x30\xe5\xba\xa6\x0a\x73\x61\x76\x65\x52\x65\x63\x3d\xe5\xaf\
+\xbc\xe5\x87\xba\xe8\xaf\x86\xe5\x88\xab\xe7\xbb\x93\xe6\x9e\x9c\
+\x0a\x74\x65\x6d\x70\x4c\x61\x62\x65\x6c\x3d\xe5\xbe\x85\xe8\xaf\
+\x86\xe5\x88\xab\x0a\x6e\x75\x6c\x6c\x4c\x61\x62\x65\x6c\x3d\xe6\
+\x97\xa0\xe6\xb3\x95\xe8\xaf\x86\xe5\x88\xab\x0a\x73\x74\x65\x70\
+\x73\x3d\xe6\x93\x8d\xe4\xbd\x9c\xe6\xad\xa5\xe9\xaa\xa4\x0a\x6b\
+\x65\x79\x73\x3d\xe5\xbf\xab\xe6\x8d\xb7\xe9\x94\xae\x0a\x63\x68\
+\x6f\x73\x65\x4d\x6f\x64\x65\x6c\x4c\x67\x3d\xe9\x80\x89\xe6\x8b\
+\xa9\xe6\xa8\xa1\xe5\x9e\x8b\xe8\xaf\xad\xe8\xa8\x80\x0a\x63\x61\
+\x6e\x63\x65\x6c\x3d\xe5\x8f\x96\xe6\xb6\x88\x0a\x6f\x6b\x3d\xe7\
+\xa1\xae\xe8\xae\xa4\x0a\x61\x75\x74\x6f\x6c\x61\x62\x65\x6c\x69\
+\x6e\x67\x3d\xe8\x87\xaa\xe5\x8a\xa8\xe6\xa0\x87\xe6\xb3\xa8\xe4\
+\xb8\xad\x0a\x68\x69\x64\x65\x42\x6f\x78\x3d\xe9\x9a\x90\xe8\x97\
+\x8f\xe6\x89\x80\xe6\x9c\x89\xe6\xa0\x87\xe6\xb3\xa8\x0a\x73\x68\
+\x6f\x77\x42\x6f\x78\x3d\xe6\x98\xbe\xe7\xa4\xba\xe6\x89\x80\xe6\
+\x9c\x89\xe6\xa0\x87\xe6\xb3\xa8\x0a\x73\x61\x76\x65\x4c\x61\x62\
+\x65\x6c\x3d\xe5\xaf\xbc\xe5\x87\xba\xe6\xa0\x87\xe8\xae\xb0\xe7\
+\xbb\x93\xe6\x9e\x9c\x0a\x73\x69\x6e\x67\x6c\x65\x52\x65\x3d\xe9\
+\x87\x8d\xe8\xaf\x86\xe5\x88\xab\xe6\xad\xa4\xe5\x8c\xba\xe5\x9d\
+\x97\x0a\x6c\x61\x62\x65\x6c\x44\x69\x61\x6c\x6f\x67\x4f\x70\x74\
+\x69\x6f\x6e\x3d\xe5\xbc\xb9\xe5\x87\xba\xe6\xa0\x87\xe8\xae\xb0\
+\xe8\xbe\x93\xe5\x85\xa5\xe6\xa1\x86\x0a\x75\x6e\x64\x6f\x3d\xe6\
+\x92\xa4\xe9\x94\x80\x0a\x75\x6e\x64\x6f\x4c\x61\x73\x74\x50\x6f\
+\x69\x6e\x74\x3d\xe6\x92\xa4\xe9\x94\x80\xe4\xb8\x8a\xe4\xb8\xaa\
+\xe7\x82\xb9\x0a\x61\x75\x74\x6f\x53\x61\x76\x65\x4d\x6f\x64\x65\
+\x3d\xe8\x87\xaa\xe5\x8a\xa8\xe5\xaf\xbc\xe5\x87\xba\xe6\xa0\x87\
+\xe8\xae\xb0\xe7\xbb\x93\xe6\x9e\x9c\
"
qt_resource_name = b"\
\x00\x04\
-\x00\x06\xec\x30\
+\x00\x06\xef\xa5\
\x00\x68\
-\x00\x65\x00\x6c\x00\x70\
-\x00\x04\
-\x00\x07\x98\xc5\
-\x00\x73\
-\x00\x61\x00\x76\x00\x65\
-\x00\x07\
-\x09\x8c\x83\x63\
-\x00\x73\
-\x00\x61\x00\x76\x00\x65\x00\x2d\x00\x61\x00\x73\
-\x00\x04\
-\x00\x08\x16\x5d\
-\x00\x7a\
-\x00\x6f\x00\x6f\x00\x6d\
-\x00\x04\
-\x00\x07\x8c\x04\
-\x00\x71\
-\x00\x75\x00\x69\x00\x74\
-\x00\x04\
-\x00\x04\x8c\xaf\
-\x00\x41\
-\x00\x75\x00\x74\x00\x6f\
-\x00\x09\
-\x07\x4d\x21\xa8\
+\x00\x69\x00\x64\x00\x65\
+\x00\x0a\
+\x03\x87\xc0\x73\
\x00\x66\
-\x00\x69\x00\x74\x00\x2d\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\
-\x00\x0b\
-\x0a\x5a\x28\xf4\
-\x00\x72\
-\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\
+\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x5f\x00\x76\x00\x6f\x00\x63\
+\x00\x06\
+\x06\xac\x2c\xa5\
+\x00\x64\
+\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\
+\x00\x06\
+\x06\xcf\x6c\x94\
+\x00\x65\
+\x00\x78\x00\x70\x00\x65\x00\x72\x00\x74\
\x00\x04\
\x00\x07\x66\xbe\
\x00\x6f\
\x00\x70\x00\x65\x00\x6e\
+\x00\x04\
+\x00\x07\x78\xc6\
+\x00\x70\
+\x00\x72\x00\x65\x00\x76\
\x00\x06\
-\x06\xcf\x6c\x94\
-\x00\x65\
-\x00\x78\x00\x70\x00\x65\x00\x72\x00\x74\
-\x00\x05\
-\x00\x78\xa8\xb3\
-\x00\x72\
-\x00\x65\x00\x52\x00\x65\x00\x63\
-\x00\x03\
-\x00\x00\x74\xc7\
-\x00\x6e\
-\x00\x65\x00\x77\
-\x00\x0b\
-\x08\x7c\x58\x4f\
-\x00\x66\
-\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x5f\x00\x79\x00\x6f\x00\x6c\x00\x6f\
+\x07\x27\x8c\x33\
+\x00\x6c\
+\x00\x61\x00\x62\x00\x65\x00\x6c\x00\x73\
\x00\x03\
\x00\x00\x68\x70\
\x00\x61\
\x00\x70\x00\x70\
-\x00\x0a\
-\x03\x87\xc0\x73\
+\x00\x0b\
+\x0a\x5a\x28\xf4\
+\x00\x72\
+\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\
+\x00\x09\
+\x07\x4d\x21\xa8\
\x00\x66\
-\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x5f\x00\x76\x00\x6f\x00\x63\
+\x00\x69\x00\x74\x00\x2d\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\
+\x00\x04\
+\x00\x06\xec\x30\
+\x00\x68\
+\x00\x65\x00\x6c\x00\x70\
+\x00\x04\
+\x00\x07\x8c\x04\
+\x00\x71\
+\x00\x75\x00\x69\x00\x74\
+\x00\x04\
+\x00\x07\x98\xc5\
+\x00\x73\
+\x00\x61\x00\x76\x00\x65\
\x00\x04\
\x00\x06\xa6\x79\
\x00\x63\
\x00\x6f\x00\x70\x00\x79\
-\x00\x04\
-\x00\x07\x4c\xf4\
-\x00\x6e\
-\x00\x65\x00\x78\x00\x74\
+\x00\x05\
+\x00\x6a\x63\x62\
+\x00\x63\
+\x00\x6f\x00\x6c\x00\x6f\x00\x72\
\x00\x08\
\x0c\x9c\xab\x2c\
\x00\x72\
\x00\x65\x00\x73\x00\x65\x00\x74\x00\x61\x00\x6c\x00\x6c\
-\x00\x06\
-\x07\x27\x8c\x33\
-\x00\x6c\
-\x00\x61\x00\x62\x00\x65\x00\x6c\x00\x73\
\x00\x04\
-\x00\x07\xc4\xaf\
-\x00\x75\
-\x00\x6e\x00\x64\x00\x6f\
-\x00\x0a\
-\x04\xd5\xeb\x87\
+\x00\x06\xd0\x25\
\x00\x66\
-\x00\x69\x00\x74\x00\x2d\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\
-\x00\x08\
-\x06\x60\x56\xe4\
-\x00\x7a\
-\x00\x6f\x00\x6f\x00\x6d\x00\x2d\x00\x6f\x00\x75\x00\x74\
-\x00\x05\
-\x00\x6a\x36\x95\
-\x00\x63\
-\x00\x6c\x00\x6f\x00\x73\x00\x65\
-\x00\x0d\
-\x03\x22\xb9\x5e\
-\x00\x73\
-\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x2d\x00\x7a\x00\x68\x00\x2d\x00\x43\x00\x4e\
+\x00\x69\x00\x6c\x00\x65\
+\x00\x04\
+\x00\x04\x8c\xaf\
+\x00\x41\
+\x00\x75\x00\x74\x00\x6f\
\x00\x04\
\x00\x06\xbb\x04\
\x00\x65\
\x00\x64\x00\x69\x00\x74\
+\x00\x03\
+\x00\x00\x74\xc7\
+\x00\x6e\
+\x00\x65\x00\x77\
\x00\x07\
-\x01\x66\x02\xfe\
-\x00\x7a\
-\x00\x6f\x00\x6f\x00\x6d\x00\x2d\x00\x69\x00\x6e\
+\x0a\xb9\x04\x03\
+\x00\x73\
+\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\
\x00\x04\
\x00\x06\xb6\x45\
\x00\x64\
\x00\x6f\x00\x6e\x00\x65\
+\x00\x05\
+\x00\x6a\x36\x95\
+\x00\x63\
+\x00\x6c\x00\x6f\x00\x73\x00\x65\
+\x00\x05\
+\x00\x78\xa8\xb3\
+\x00\x72\
+\x00\x65\x00\x52\x00\x65\x00\x63\
+\x00\x07\
+\x09\x8c\x83\x63\
+\x00\x73\
+\x00\x61\x00\x76\x00\x65\x00\x2d\x00\x61\x00\x73\
+\x00\x0b\
+\x08\x7c\x58\x4f\
+\x00\x66\
+\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x5f\x00\x79\x00\x6f\x00\x6c\x00\x6f\
+\x00\x04\
+\x00\x08\x16\x5d\
+\x00\x7a\
+\x00\x6f\x00\x6f\x00\x6d\
\x00\x0a\
\x06\x8b\x64\x25\
\x00\x63\
\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x5f\x00\x6c\x00\x69\x00\x6e\x00\x65\
-\x00\x06\
-\x06\xac\x2c\xa5\
-\x00\x64\
-\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\
+\x00\x07\
+\x01\x66\x02\xfe\
+\x00\x7a\
+\x00\x6f\x00\x6f\x00\x6d\x00\x2d\x00\x69\x00\x6e\
+\x00\x0a\
+\x04\xd5\xeb\x87\
+\x00\x66\
+\x00\x69\x00\x74\x00\x2d\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\
+\x00\x04\
+\x00\x07\x4c\xf4\
+\x00\x6e\
+\x00\x65\x00\x78\x00\x74\
\x00\x0a\
\x08\xa9\x06\x94\
\x00\x72\
\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x4c\x00\x65\x00\x66\x00\x74\
-\x00\x05\
-\x00\x6a\x63\x62\
-\x00\x63\
-\x00\x6f\x00\x6c\x00\x6f\x00\x72\
-\x00\x07\
-\x0a\xb9\x04\x03\
-\x00\x73\
-\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\
-\x00\x04\
-\x00\x06\xef\xa5\
-\x00\x68\
-\x00\x69\x00\x64\x00\x65\
-\x00\x04\
-\x00\x07\x78\xc6\
-\x00\x70\
-\x00\x72\x00\x65\x00\x76\
\x00\x04\
-\x00\x06\xd0\x25\
-\x00\x66\
-\x00\x69\x00\x6c\x00\x65\
+\x00\x07\xc4\xaf\
+\x00\x75\
+\x00\x6e\x00\x64\x00\x6f\
+\x00\x08\
+\x06\x60\x56\xe4\
+\x00\x7a\
+\x00\x6f\x00\x6f\x00\x6d\x00\x2d\x00\x6f\x00\x75\x00\x74\
\x00\x06\
\x07\xcc\x8f\xd9\
\x00\x76\
\x00\x65\x00\x72\x00\x69\x00\x66\x00\x79\
+\x00\x0d\
+\x03\x22\xb9\x5e\
+\x00\x73\
+\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x2d\x00\x7a\x00\x68\x00\x2d\x00\x43\x00\x4e\
"
qt_resource_struct_v1 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x24\x00\x00\x00\x01\
-\x00\x00\x00\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x4e\xa3\
-\x00\x00\x00\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x47\xa9\
-\x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x21\xd3\
-\x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x01\x39\x21\
-\x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x01\xfa\x57\
-\x00\x00\x01\xbe\x00\x00\x00\x00\x00\x01\x00\x01\xf1\xc0\
-\x00\x00\x02\x74\x00\x00\x00\x00\x00\x01\x00\x02\xb3\x70\
+\x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x9a\xf4\
+\x00\x00\x01\x42\x00\x00\x00\x00\x00\x01\x00\x01\xca\x2b\
+\x00\x00\x01\x26\x00\x00\x00\x00\x00\x01\x00\x01\xc4\x08\
+\x00\x00\x00\xe4\x00\x00\x00\x00\x00\x01\x00\x01\xaa\x8b\
+\x00\x00\x01\x62\x00\x00\x00\x00\x00\x01\x00\x01\xda\x67\
+\x00\x00\x01\x34\x00\x00\x00\x00\x00\x01\x00\x01\xc5\xe3\
+\x00\x00\x01\x18\x00\x00\x00\x00\x00\x01\x00\x01\xc1\x07\
+\x00\x00\x00\xba\x00\x00\x00\x00\x00\x01\x00\x01\x98\x2e\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
-\x00\x00\x02\x58\x00\x00\x00\x00\x00\x01\x00\x02\x36\xaf\
-\x00\x00\x01\x1a\x00\x00\x00\x00\x00\x01\x00\x01\x3b\xab\
-\x00\x00\x00\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x39\x80\
-\x00\x00\x02\x66\x00\x00\x00\x00\x00\x01\x00\x02\x3b\xa3\
-\x00\x00\x00\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x1a\x54\
-\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x06\x37\
-\x00\x00\x01\x50\x00\x00\x00\x00\x00\x01\x00\x01\xc9\x89\
-\x00\x00\x00\x30\x00\x00\x00\x00\x00\x01\x00\x00\x15\xdd\
-\x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x01\xd9\xf7\
-\x00\x00\x02\x34\x00\x00\x00\x00\x00\x01\x00\x02\x25\x0d\
-\x00\x00\x00\xae\x00\x00\x00\x00\x00\x01\x00\x00\x42\xf0\
-\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x01\xf6\x08\
-\x00\x00\x01\x9e\x00\x00\x00\x00\x00\x01\x00\x01\xe6\x22\
-\x00\x00\x00\xf2\x00\x00\x00\x00\x00\x01\x00\x01\x36\x0b\
-\x00\x00\x01\x5e\x00\x00\x00\x00\x00\x01\x00\x01\xd1\x6f\
-\x00\x00\x01\x78\x00\x00\x00\x00\x00\x01\x00\x01\xd5\xc1\
-\x00\x00\x01\xee\x00\x00\x00\x00\x00\x01\x00\x02\x02\xf1\
-\x00\x00\x02\x08\x00\x00\x00\x00\x00\x01\x00\x02\x0c\x35\
-\x00\x00\x00\x9c\x00\x00\x00\x00\x00\x01\x00\x00\x41\x9d\
-\x00\x00\x01\x3e\x00\x00\x00\x00\x00\x01\x00\x01\xc0\x38\
-\x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\x23\xae\
-\x00\x00\x02\x82\x00\x00\x00\x00\x00\x01\x00\x02\xb6\x71\
-\x00\x00\x00\xca\x00\x00\x00\x00\x00\x01\x00\x00\x4b\xfc\
-\x00\x00\x02\x1a\x00\x00\x00\x00\x00\x01\x00\x02\x14\x91\
-\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x01\x00\x00\x0a\xde\
-\x00\x00\x00\x72\x00\x00\x00\x00\x00\x01\x00\x00\x29\x07\
-\x00\x00\x02\x44\x00\x00\x00\x00\x00\x01\x00\x02\x2a\xc6\
-\x00\x00\x01\x28\x00\x00\x00\x00\x00\x01\x00\x01\xb1\xff\
+\x00\x00\x02\x16\x00\x00\x00\x00\x00\x01\x00\x02\x17\xe7\
+\x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x11\xb9\
+\x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\x19\xd6\
+\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x01\x00\x01\x9e\x65\
+\x00\x00\x00\xd6\x00\x00\x00\x00\x00\x01\x00\x01\xa5\xe4\
+\x00\x00\x02\x3e\x00\x00\x00\x00\x00\x01\x00\x02\x9e\xb7\
+\x00\x00\x01\xc0\x00\x00\x00\x00\x00\x01\x00\x02\x01\x8b\
+\x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x01\xe3\x01\
+\x00\x00\x00\xf2\x00\x00\x00\x00\x00\x01\x00\x01\xad\x15\
+\x00\x00\x01\x80\x00\x00\x00\x00\x00\x01\x00\x01\xef\x2c\
+\x00\x00\x01\xe8\x00\x00\x00\x00\x00\x01\x00\x02\x0f\x46\
+\x00\x00\x02\x74\x00\x00\x00\x00\x00\x01\x00\x02\xb6\xb8\
+\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x04\xf4\
+\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x01\x00\x02\x13\x95\
+\x00\x00\x02\x4c\x00\x00\x00\x00\x00\x01\x00\x02\xa6\x9d\
+\x00\x00\x01\xce\x00\x00\x00\x00\x00\x01\x00\x02\x06\x02\
+\x00\x00\x00\x28\x00\x00\x00\x00\x00\x01\x00\x00\x08\x0a\
+\x00\x00\x00\x3a\x00\x00\x00\x00\x00\x01\x00\x00\x10\x66\
+\x00\x00\x00\x68\x00\x00\x00\x00\x00\x01\x00\x00\x91\xa3\
+\x00\x00\x00\xa2\x00\x00\x00\x00\x00\x01\x00\x01\x92\xd5\
+\x00\x00\x02\x62\x00\x00\x00\x00\x00\x01\x00\x02\xaa\xd3\
+\x00\x00\x01\xa4\x00\x00\x00\x00\x00\x01\x00\x01\xfe\xe4\
+\x00\x00\x02\x24\x00\x00\x00\x00\x00\x01\x00\x02\x8e\x3b\
+\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x01\xf3\xe5\
+\x00\x00\x00\x86\x00\x00\x00\x00\x00\x01\x00\x01\x82\x5c\
+\x00\x00\x01\x4e\x00\x00\x00\x00\x00\x01\x00\x01\xce\x7e\
+\x00\x00\x01\x02\x00\x00\x00\x00\x00\x01\x00\x01\xb2\xce\
"
qt_resource_struct_v2 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x24\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\
-\x00\x00\x00\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x4e\xa3\
+\x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x9a\xf4\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x47\xa9\
+\x00\x00\x01\x42\x00\x00\x00\x00\x00\x01\x00\x01\xca\x2b\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x21\xd3\
+\x00\x00\x01\x26\x00\x00\x00\x00\x00\x01\x00\x01\xc4\x08\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x01\x39\x21\
+\x00\x00\x00\xe4\x00\x00\x00\x00\x00\x01\x00\x01\xaa\x8b\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x01\xfa\x57\
+\x00\x00\x01\x62\x00\x00\x00\x00\x00\x01\x00\x01\xda\x67\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\xbe\x00\x00\x00\x00\x00\x01\x00\x01\xf1\xc0\
+\x00\x00\x01\x34\x00\x00\x00\x00\x00\x01\x00\x01\xc5\xe3\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x02\x74\x00\x00\x00\x00\x00\x01\x00\x02\xb3\x70\
+\x00\x00\x01\x18\x00\x00\x00\x00\x00\x01\x00\x01\xc1\x07\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
+\x00\x00\x00\xba\x00\x00\x00\x00\x00\x01\x00\x01\x98\x2e\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x02\x58\x00\x00\x00\x00\x00\x01\x00\x02\x36\xaf\
+\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\x1a\x00\x00\x00\x00\x00\x01\x00\x01\x3b\xab\
+\x00\x00\x02\x16\x00\x00\x00\x00\x00\x01\x00\x02\x17\xe7\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x39\x80\
+\x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x11\xb9\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x02\x66\x00\x00\x00\x00\x00\x01\x00\x02\x3b\xa3\
+\x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\x19\xd6\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x1a\x54\
+\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x01\x00\x01\x9e\x65\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x06\x37\
+\x00\x00\x00\xd6\x00\x00\x00\x00\x00\x01\x00\x01\xa5\xe4\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\x50\x00\x00\x00\x00\x00\x01\x00\x01\xc9\x89\
+\x00\x00\x02\x3e\x00\x00\x00\x00\x00\x01\x00\x02\x9e\xb7\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x30\x00\x00\x00\x00\x00\x01\x00\x00\x15\xdd\
+\x00\x00\x01\xc0\x00\x00\x00\x00\x00\x01\x00\x02\x01\x8b\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x01\xd9\xf7\
+\x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x01\xe3\x01\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x02\x34\x00\x00\x00\x00\x00\x01\x00\x02\x25\x0d\
+\x00\x00\x00\xf2\x00\x00\x00\x00\x00\x01\x00\x01\xad\x15\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\xae\x00\x00\x00\x00\x00\x01\x00\x00\x42\xf0\
+\x00\x00\x01\x80\x00\x00\x00\x00\x00\x01\x00\x01\xef\x2c\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x01\xf6\x08\
+\x00\x00\x01\xe8\x00\x00\x00\x00\x00\x01\x00\x02\x0f\x46\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\x9e\x00\x00\x00\x00\x00\x01\x00\x01\xe6\x22\
-\x00\x00\x01\x7b\x33\x10\xef\x28\
-\x00\x00\x00\xf2\x00\x00\x00\x00\x00\x01\x00\x01\x36\x0b\
+\x00\x00\x02\x74\x00\x00\x00\x00\x00\x01\x00\x02\xb6\xb8\
+\x00\x00\x01\x7b\xbd\x6c\xe2\x2f\
+\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x04\xf4\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\x5e\x00\x00\x00\x00\x00\x01\x00\x01\xd1\x6f\
+\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x01\x00\x02\x13\x95\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\x78\x00\x00\x00\x00\x00\x01\x00\x01\xd5\xc1\
+\x00\x00\x02\x4c\x00\x00\x00\x00\x00\x01\x00\x02\xa6\x9d\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\xee\x00\x00\x00\x00\x00\x01\x00\x02\x02\xf1\
+\x00\x00\x01\xce\x00\x00\x00\x00\x00\x01\x00\x02\x06\x02\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x02\x08\x00\x00\x00\x00\x00\x01\x00\x02\x0c\x35\
+\x00\x00\x00\x28\x00\x00\x00\x00\x00\x01\x00\x00\x08\x0a\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x9c\x00\x00\x00\x00\x00\x01\x00\x00\x41\x9d\
+\x00\x00\x00\x3a\x00\x00\x00\x00\x00\x01\x00\x00\x10\x66\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x01\x3e\x00\x00\x00\x00\x00\x01\x00\x01\xc0\x38\
+\x00\x00\x00\x68\x00\x00\x00\x00\x00\x01\x00\x00\x91\xa3\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\x23\xae\
+\x00\x00\x00\xa2\x00\x00\x00\x00\x00\x01\x00\x01\x92\xd5\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x02\x82\x00\x00\x00\x00\x00\x01\x00\x02\xb6\x71\
+\x00\x00\x02\x62\x00\x00\x00\x00\x00\x01\x00\x02\xaa\xd3\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\xca\x00\x00\x00\x00\x00\x01\x00\x00\x4b\xfc\
+\x00\x00\x01\xa4\x00\x00\x00\x00\x00\x01\x00\x01\xfe\xe4\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x02\x1a\x00\x00\x00\x00\x00\x01\x00\x02\x14\x91\
-\x00\x00\x01\x7a\xd3\xc3\x71\x58\
-\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x01\x00\x00\x0a\xde\
+\x00\x00\x02\x24\x00\x00\x00\x00\x00\x01\x00\x02\x8e\x3b\
+\x00\x00\x01\x7b\xbd\x6c\xe2\x2f\
+\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x01\xf3\xe5\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
-\x00\x00\x00\x72\x00\x00\x00\x00\x00\x01\x00\x00\x29\x07\
-\x00\x00\x01\x7a\xd3\xc3\x65\xa0\
-\x00\x00\x02\x44\x00\x00\x00\x00\x00\x01\x00\x02\x2a\xc6\
-\x00\x00\x01\x7b\x33\x12\xd7\x70\
-\x00\x00\x01\x28\x00\x00\x00\x00\x00\x01\x00\x01\xb1\xff\
+\x00\x00\x00\x86\x00\x00\x00\x00\x00\x01\x00\x01\x82\x5c\
+\x00\x00\x01\x7b\xbd\x6c\xe2\x2f\
+\x00\x00\x01\x4e\x00\x00\x00\x00\x00\x01\x00\x01\xce\x7e\
+\x00\x00\x01\x7d\x13\x53\x0c\xc2\
+\x00\x00\x01\x02\x00\x00\x00\x00\x00\x01\x00\x01\xb2\xce\
\x00\x00\x01\x7a\x50\x6d\xd4\x88\
"
-qt_version = QtCore.qVersion().split('.')
-if qt_version < ['5', '8', '0']:
+qt_version = [int(v) for v in QtCore.qVersion().split('.')]
+if qt_version < [5, 8, 0]:
rcc_version = 1
qt_resource_struct = qt_resource_struct_v1
else:
diff --git a/PPOCRLabel/libs/stringBundle.py b/PPOCRLabel/libs/stringBundle.py
index 2417104425323357e3ef49feaabfcfa35fefaf00..11c13bef354ba47188318b92d7eb266c3468d282 100644
--- a/PPOCRLabel/libs/stringBundle.py
+++ b/PPOCRLabel/libs/stringBundle.py
@@ -19,6 +19,9 @@ import sys
import locale
from libs.ustr import ustr
+__dir__ = os.path.dirname(os.path.abspath(__file__)) # 获取本程序文件路径
+__dirpath__ = os.path.abspath(os.path.join(__dir__, '../resources/strings'))
+
try:
from PyQt5.QtCore import *
except ImportError:
@@ -57,7 +60,7 @@ class StringBundle:
def __createLookupFallbackList(self, localeStr):
resultPaths = []
- basePath = ":/strings"
+ basePath = "\strings" if os.name == 'nt' else ":/strings"
resultPaths.append(basePath)
if localeStr is not None:
# Don't follow standard BCP47. Simple fallback
@@ -65,6 +68,7 @@ class StringBundle:
for tag in tags:
lastPath = resultPaths[-1]
resultPaths.append(lastPath + '-' + tag)
+ resultPaths[-1] = __dirpath__ + resultPaths[-1] + ".properties"
return resultPaths
diff --git a/PPOCRLabel/libs/utils.py b/PPOCRLabel/libs/utils.py
index 296f56318c53475271a1c95d97fa0e98306b87d4..9fab41d3ffee33b8f86f9576507eb13b18806496 100644
--- a/PPOCRLabel/libs/utils.py
+++ b/PPOCRLabel/libs/utils.py
@@ -17,6 +17,10 @@ import re
import sys
import cv2
import numpy as np
+import os
+
+__dir__ = os.path.dirname(os.path.abspath(__file__)) # 获取本程序文件路径
+__iconpath__ = os.path.abspath(os.path.join(__dir__, '../resources/icons'))
try:
from PyQt5.QtGui import *
@@ -29,9 +33,9 @@ except ImportError:
def newIcon(icon, iconSize=None):
if iconSize is not None:
- return QIcon(QIcon(':/' + icon).pixmap(iconSize,iconSize))
+ return QIcon(QIcon(__iconpath__ + "/" + icon + ".png").pixmap(iconSize,iconSize))
else:
- return QIcon(':/' + icon)
+ return QIcon(__iconpath__ + "/" + icon + ".png")
def newButton(text, icon=None, slot=None):
diff --git a/PPOCRLabel/requirements.txt b/PPOCRLabel/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1fa41d958499d201761f059046e0260eed4b238c
--- /dev/null
+++ b/PPOCRLabel/requirements.txt
@@ -0,0 +1,2 @@
+pyqt5
+paddleocr
\ No newline at end of file
diff --git a/PPOCRLabel/resources.qrc b/PPOCRLabel/resources.qrc
index 14b52aa0bbe9f5104457bbf55c61903a38ac11f8..ed4ad65b42682af2461d25e5ce9d8236721773b1 100644
--- a/PPOCRLabel/resources.qrc
+++ b/PPOCRLabel/resources.qrc
@@ -35,7 +35,7 @@
resources/icons/prev.png
resources/icons/resetall.png
resources/icons/verify.png
-resources/strings/strings.properties
+resources/strings/strings-en.properties
resources/strings/strings-zh-CN.properties
diff --git a/PPOCRLabel/resources/strings/strings.properties b/PPOCRLabel/resources/strings/strings-en.properties
similarity index 100%
rename from PPOCRLabel/resources/strings/strings.properties
rename to PPOCRLabel/resources/strings/strings-en.properties
diff --git a/PPOCRLabel/setup.py b/PPOCRLabel/setup.py
index 008514fd7777713eb76f900f5ea15a4366517dd8..85a26f7d6d04e0637ad917f58386f0e5e9b4c652 100644
--- a/PPOCRLabel/setup.py
+++ b/PPOCRLabel/setup.py
@@ -1,139 +1,52 @@
-# Copyright (c) <2015-Present> Tzutalin
-# Copyright (C) 2013 MIT, Computer Science and Artificial Intelligence Laboratory. Bryan Russell, Antonio Torralba,
-# William T. Freeman. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
-# associated documentation files (the "Software"), to deal in the Software without restriction, including without
-# limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
-# Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-# The above copyright notice and this permission notice shall be included in all copies or substantial portions of
-# the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
-# NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
-# SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
-# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-# THE SOFTWARE.
-
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-from setuptools import setup, find_packages, Command
-from sys import platform as _platform
-from shutil import rmtree
-import sys
-import os
-
-here = os.path.abspath(os.path.dirname(__file__))
-NAME = 'labelImg'
-REQUIRES_PYTHON = '>=3.0.0'
-REQUIRED_DEP = ['pyqt5', 'lxml']
-about = {}
-
-with open(os.path.join(here, 'libs', '__init__.py')) as f:
- exec(f.read(), about)
-
-with open('README.rst') as readme_file:
- readme = readme_file.read()
-
-with open('HISTORY.rst') as history_file:
- history = history_file.read()
-
-
-# OS specific settings
-SET_REQUIRES = []
-if _platform == "linux" or _platform == "linux2":
- # linux
- print('linux')
-elif _platform == "darwin":
- # MAC OS X
- SET_REQUIRES.append('py2app')
-
-required_packages = find_packages()
-required_packages.append('labelImg')
-
-APP = [NAME + '.py']
-OPTIONS = {
- 'argv_emulation': True,
- 'iconfile': 'resources/icons/app.icns'
-}
-
-class UploadCommand(Command):
- """Support setup.py upload."""
-
- description=readme + '\n\n' + history,
-
- user_options = []
-
- @staticmethod
- def status(s):
- """Prints things in bold."""
- print('\033[1m{0}\033[0m'.format(s))
-
- def initialize_options(self):
- pass
-
- def finalize_options(self):
- pass
-
- def run(self):
- try:
- self.status('Removing previous builds…')
- rmtree(os.path.join(here, 'dist'))
- except OSError:
- self.status('Fail to remove previous builds..')
- pass
-
- self.status('Building Source and Wheel (universal) distribution…')
- os.system(
- '{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
-
- self.status('Uploading the package to PyPI via Twine…')
- os.system('twine upload dist/*')
-
- self.status('Pushing git tags…')
- os.system('git tag -d v{0}'.format(about['__version__']))
- os.system('git tag v{0}'.format(about['__version__']))
- # os.system('git push --tags')
-
- sys.exit()
+# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from setuptools import setup
+from io import open
+
+with open('requirements.txt', encoding="utf-8-sig") as f:
+ requirements = f.readlines()
+ requirements.append('tqdm')
+
+
+def readme():
+ with open('README.md', encoding="utf-8-sig") as f:
+ README = f.read()
+ return README
setup(
- app=APP,
- name=NAME,
- version=about['__version__'],
- description="LabelImg is a graphical image annotation tool and label object bounding boxes in images",
- long_description=readme + '\n\n' + history,
- author="TzuTa Lin",
- author_email='tzu.ta.lin@gmail.com',
- url='https://github.com/tzutalin/labelImg',
- python_requires=REQUIRES_PYTHON,
- package_dir={'labelImg': '.'},
- packages=required_packages,
- entry_points={
- 'console_scripts': [
- 'labelImg=labelImg.labelImg:main'
- ]
- },
+ name='PPOCRLabel',
+ packages=['PPOCRLabel'],
+ package_data = {'PPOCRLabel': ['libs/*','resources/strings/*','resources/icons/*']},
+ package_dir={'PPOCRLabel': ''},
include_package_data=True,
- install_requires=REQUIRED_DEP,
- license="MIT license",
- zip_safe=False,
- keywords='labelImg labelTool development annotation deeplearning',
+ entry_points={"console_scripts": ["PPOCRLabel= PPOCRLabel.PPOCRLabel:main"]},
+ version='1.0.0',
+ install_requires=requirements,
+ license='Apache License 2.0',
+ description='PPOCRLabel is a semi-automatic graphic annotation tool suitable for OCR field, with built-in PPOCR model to automatically detect and re-recognize data. It is written in python3 and pyqt5, supporting rectangular box annotation and four-point annotation modes. Annotations can be directly used for the training of PPOCR detection and recognition models',
+ long_description=readme(),
+ long_description_content_type='text/markdown',
+ url='https://github.com/PaddlePaddle/PaddleOCR',
+ download_url='https://github.com/PaddlePaddle/PaddleOCR.git',
+ keywords=[
+ 'ocr textdetection textrecognition paddleocr crnn east star-net rosetta ocrlite db chineseocr chinesetextdetection chinesetextrecognition'
+ ],
classifiers=[
- 'Development Status :: 5 - Production/Stable',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: MIT License',
+ 'Intended Audience :: Developers', 'Operating System :: OS Independent',
'Natural Language :: English',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- ],
- package_data={'data/predefined_classes.txt': ['data/predefined_classes.txt']},
- options={'py2app': OPTIONS},
- setup_requires=SET_REQUIRES,
- # $ setup.py publish support.
- cmdclass={
- 'upload': UploadCommand,
- }
-)
+ 'Programming Language :: Python :: 3.7', 'Topic :: Utilities'
+ ], )
\ No newline at end of file
diff --git a/README.md b/README.md
index c19493b07b0e615876404689f4eaac0802dbda60..f5bc7406b9649730e43e9fe5cdb5b71eba7dc3aa 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ PaddleOCR aims to create multilingual, awesome, leading, and practical OCR tools
**Recent updates**
-- PaddleOCR R&D team would like to share the key points of PP-OCRv2, at 20:15 pm on September 8th, [Live Address](https://live.bilibili.com/21689802).
+- PaddleOCR R&D team would like to share the key points of PP-OCRv2, at 20:15 pm on September 8th, [Course Address](https://aistudio.baidu.com/aistudio/education/group/info/6758).
- 2021.9.7 release PaddleOCR v2.3, [PP-OCRv2](#PP-OCRv2) is proposed. The inference speed of PP-OCRv2 is 220% higher than that of PP-OCR server in CPU device. The F-score of PP-OCRv2 is 7% higher than that of PP-OCR mobile.
- 2021.8.3 released PaddleOCR v2.2, add a new structured documents analysis toolkit, i.e., [PP-Structure](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.2/ppstructure/README.md), support layout analysis and table recognition (One-key to export chart images to Excel files).
- 2021.4.8 release end-to-end text recognition algorithm [PGNet](https://www.aaai.org/AAAI21Papers/AAAI-2885.WangP.pdf) which is published in AAAI 2021. Find tutorial [here](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.1/doc/doc_en/pgnet_en.md);release multi language recognition [models](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.1/doc/doc_en/multi_languages_en.md), support more than 80 languages recognition; especically, the performance of [English recognition model](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.1/doc/doc_en/models_list_en.md#English) is Optimized.
@@ -86,9 +86,9 @@ Mobile DEMO experience (based on EasyEdge and Paddle-Lite, supports iOS and Andr
| Model introduction | Model name | Recommended scene | Detection model | Direction classifier | Recognition model |
| ------------------------------------------------------------ | ---------------------------- | ----------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
-| Chinese and English ultra-lightweight PP-OCRv2 model(11.6M) | ch_PP-OCRv2_xx |Mobile&Server|[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar)| [inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/ch/ch_PP-OCRv2_rec_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_train.tar)|
-| Chinese and English ultra-lightweight PP-OCR model (9.4M) | ch_ppocr_mobile_v2.0_xx | Mobile & server |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar)|[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_pre.tar) |
-| Chinese and English general PP-OCR model (143.4M) | ch_ppocr_server_v2.0_xx | Server |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_train.tar) |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_traingit.tar) |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_pre.tar) |
+| Chinese and English ultra-lightweight PP-OCRv2 model(11.6M) | ch_PP-OCRv2_xx |Mobile & Server|[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar)| [inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/ch/ch_PP-OCRv2_rec_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_train.tar)|
+| Chinese and English ultra-lightweight PP-OCR model (9.4M) | ch_ppocr_mobile_v2.0_xx | Mobile & server |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar)|[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_train.tar) |
+| Chinese and English general PP-OCR model (143.4M) | ch_ppocr_server_v2.0_xx | Server |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_train.tar) |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_traingit.tar) |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_train.tar) |
For more model downloads (including multiple languages), please refer to [PP-OCR series model downloads](./doc/doc_en/models_list_en.md).
@@ -102,7 +102,6 @@ For a new language request, please refer to [Guideline for new language_requests
- PP-OCR Industry Landing: from Training to Deployment
- [PP-OCR Model and Configuration](./doc/doc_en/models_and_config_en.md)
- [PP-OCR Model Download](./doc/doc_en/models_list_en.md)
- - [Yml Configuration](./doc/doc_en/config_en.md)
- [Python Inference for PP-OCR Model Library](./doc/doc_en/inference_ppocr_en.md)
- [PP-OCR Training](./doc/doc_en/training_en.md)
- [Text Detection](./doc/doc_en/detection_en.md)
@@ -119,7 +118,7 @@ For a new language request, please refer to [Guideline for new language_requests
- [Table Recognition](./ppstructure/table/README.md)
- Academic Circles
- [Two-stage Algorithm](./doc/doc_en/algorithm_overview_en.md)
- - [PGNet Algorithm](./doc/doc_en/algorithm_overview_en.md)
+ - [PGNet Algorithm](./doc/doc_en/pgnet_en.md)
- [Python Inference](./doc/doc_en/inference_en.md)
- Data Annotation and Synthesis
- [Semi-automatic Annotation Tool: PPOCRLabel](./PPOCRLabel/README.md)
diff --git a/README_ch.md b/README_ch.md
index 7e088e30116a4dd636b044fcc55169972ef04eb6..4511d713e2006cf046ba53ac49269989c381795a 100755
--- a/README_ch.md
+++ b/README_ch.md
@@ -24,7 +24,7 @@ PaddleOCR旨在打造一套丰富、领先、且实用的OCR工具库,助力
**近期更新**
-- PaddleOCR研发团队对最新发版内容技术深入解读,9月8日晚上20:15,[直播地址](https://live.bilibili.com/21689802)。
+- PaddleOCR研发团队对最新发版内容技术深入解读,9月8日晚上20:15,[课程回放](https://aistudio.baidu.com/aistudio/education/group/info/6758)。
- 2021.9.7 发布PaddleOCR v2.3,发布[PP-OCRv2](#PP-OCRv2),CPU推理速度相比于PP-OCR server提升220%;效果相比于PP-OCR mobile 提升7%。
- 2021.8.3 发布PaddleOCR v2.2,新增文档结构分析[PP-Structure](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.2/ppstructure/README_ch.md)工具包,支持版面分析与表格识别(含Excel导出)。
- 2021.6.29 [FAQ](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.2/doc/doc_ch/FAQ.md)新增5个高频问题,总数248个,每周一都会更新,欢迎大家持续关注。
@@ -81,9 +81,9 @@ PaddleOCR旨在打造一套丰富、领先、且实用的OCR工具库,助力
| 模型简介 | 模型名称 |推荐场景 | 检测模型 | 方向分类器 | 识别模型 |
| ------------ | --------------- | ----------------|---- | ---------- | -------- |
-| 中英文超轻量PP-OCRv2模型(13.0M) | ch_PP-OCRv2_xx |移动端&服务器端|[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar)| [推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_train.tar)|
-| 中英文超轻量PP-OCR mobile模型(9.4M) | ch_ppocr_mobile_v2.0_xx |移动端&服务器端|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar)|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_pre.tar) |
-| 中英文通用PP-OCR server模型(143.4M) |ch_ppocr_server_v2.0_xx|服务器端 |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_train.tar) |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_pre.tar) |
+| 中英文超轻量PP-OCRv2模型(13.0M) | ch_PP-OCRv2_xx |移动端&服务器端|[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar)| [推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_train.tar)|
+| 中英文超轻量PP-OCR mobile模型(9.4M) | ch_ppocr_mobile_v2.0_xx |移动端&服务器端|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar)|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_train.tar) |
+| 中英文通用PP-OCR server模型(143.4M) |ch_ppocr_server_v2.0_xx|服务器端 |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_train.tar) |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_train.tar) |
更多模型下载(包括多语言),可以参考[PP-OCR 系列模型下载](./doc/doc_ch/models_list.md)
@@ -94,7 +94,6 @@ PaddleOCR旨在打造一套丰富、领先、且实用的OCR工具库,助力
- PP-OCR产业落地:从训练到部署
- [PP-OCR模型与配置文件](./doc/doc_ch/models_and_config.md)
- [PP-OCR模型下载](./doc/doc_ch/models_list.md)
- - [配置文件内容与生成](./doc/doc_ch/config.md)
- [PP-OCR模型库快速推理](./doc/doc_ch/inference_ppocr.md)
- [PP-OCR模型训练](./doc/doc_ch/training.md)
- [文本检测](./doc/doc_ch/detection.md)
@@ -109,15 +108,16 @@ PaddleOCR旨在打造一套丰富、领先、且实用的OCR工具库,助力
- [PP-Structure信息提取](./ppstructure/README_ch.md)
- [版面分析](./ppstructure/layout/README_ch.md)
- [表格识别](./ppstructure/table/README_ch.md)
+- OCR学术圈
+ - [两阶段模型介绍与下载](./doc/doc_ch/algorithm_overview.md)
+ - [端到端PGNet算法](./doc/doc_ch/pgnet.md)
+ - [基于Python脚本预测引擎推理](./doc/doc_ch/inference.md)
+ - [使用PaddleOCR架构添加新算法](./doc/doc_ch/add_new_algorithm.md)
- 数据标注与合成
- [半自动标注工具PPOCRLabel](./PPOCRLabel/README_ch.md)
- [数据合成工具Style-Text](./StyleText/README_ch.md)
- [其它数据标注工具](./doc/doc_ch/data_annotation.md)
- [其它数据合成工具](./doc/doc_ch/data_synthesis.md)
-- OCR学术圈
- - [两阶段模型介绍与下载](./doc/doc_ch/algorithm_overview.md)
- - [端到端PGNet算法](./doc/doc_ch/pgnet.md)
- - [基于Python脚本预测引擎推理](./doc/doc_ch/inference.md)
- 数据集
- [通用中英文OCR数据集](./doc/doc_ch/datasets.md)
- [手写中文OCR数据集](./doc/doc_ch/handwritten_datasets.md)
diff --git a/benchmark/readme.md b/benchmark/readme.md
index 7f7704cca5341d495dfbcdc66ddfd29fbea1e1df..d90d21468e7c9d0c9068a273ae704c0c8a086eab 100644
--- a/benchmark/readme.md
+++ b/benchmark/readme.md
@@ -1,5 +1,5 @@
-# PaddleOCR DB/EAST 算法训练benchmark测试
+# PaddleOCR DB/EAST/PSE 算法训练benchmark测试
PaddleOCR/benchmark目录下的文件用于获取并分析训练日志。
训练采用icdar2015数据集,包括1000张训练图像和500张测试图像。模型配置采用resnet18_vd作为backbone,分别训练batch_size=8和batch_size=16的情况。
@@ -18,7 +18,7 @@ run_det.sh 执行方式如下:
```
# cd PaddleOCR/
-bash benchmark/run_det.sh
+bash benchmark/run_det.sh
```
以DB为例,将得到四个日志文件,如下:
@@ -28,7 +28,3 @@ det_res18_db_v2.0_sp_bs8_fp32_1
det_res18_db_v2.0_mp_bs16_fp32_1
det_res18_db_v2.0_mp_bs8_fp32_1
```
-
-
-
-
diff --git a/benchmark/run_benchmark_det.sh b/benchmark/run_benchmark_det.sh
index 26bcda5d20ba4e4d0498da28aafb93f29468169d..3ab3ad2b66bd052fa49a850562cff624c5ce2c22 100644
--- a/benchmark/run_benchmark_det.sh
+++ b/benchmark/run_benchmark_det.sh
@@ -5,28 +5,36 @@ set -xe
function _set_params(){
run_mode=${1:-"sp"} # 单卡sp|多卡mp
batch_size=${2:-"64"}
- fp_item=${3:-"fp32"} # fp32|fp16
- max_iter=${4:-"500"} # 可选,如果需要修改代码提前中断
- model_name=${5:-"model_name"}
+ fp_item=${3:-"fp32"} # fp32|fp16
+ max_epoch=${4:-"10"} # 可选,如果需要修改代码提前中断
+ model_item=${5:-"model_item"}
run_log_path=${TRAIN_LOG_DIR:-$(pwd)} # TRAIN_LOG_DIR 后续QA设置该参数
-
+# 日志解析所需参数
+ base_batch_size=${batch_size}
+ mission_name="OCR"
+ direction_id="0"
+ ips_unit="images/sec"
+ skip_steps=2 # 解析日志,有些模型前几个step耗时长,需要跳过 (必填)
+ keyword="ips:" # 解析日志,筛选出数据所在行的关键字 (必填)
+ index="1"
+ model_name=${model_item}_${run_mode}_bs${batch_size}_${fp_item} # model_item 用于yml文件名匹配,model_name 用于数据入库前端展示
# 以下不用修改
device=${CUDA_VISIBLE_DEVICES//,/ }
arr=(${device})
num_gpu_devices=${#arr[*]}
- log_file=${run_log_path}/${model_name}_${run_mode}_bs${batch_size}_${fp_item}_${num_gpu_devices}
+ log_file=${run_log_path}/${model_item}_${run_mode}_bs${batch_size}_${fp_item}_${num_gpu_devices}
}
function _train(){
echo "Train on ${num_gpu_devices} GPUs"
echo "current CUDA_VISIBLE_DEVICES=$CUDA_VISIBLE_DEVICES, gpus=$num_gpu_devices, batch_size=$batch_size"
- train_cmd="-c configs/det/${model_name}.yml -o Train.loader.batch_size_per_card=${batch_size} Global.epoch_num=${max_iter} "
+ train_cmd="-c configs/det/${model_item}.yml -o Train.loader.batch_size_per_card=${batch_size} Global.epoch_num=${max_epoch} Global.eval_batch_step=[0,20000] Global.print_batch_step=2"
case ${run_mode} in
sp)
- train_cmd="python3.7 tools/train.py "${train_cmd}""
+ train_cmd="python tools/train.py "${train_cmd}""
;;
mp)
- train_cmd="python3.7 -m paddle.distributed.launch --log_dir=./mylog --gpus=$CUDA_VISIBLE_DEVICES tools/train.py ${train_cmd}"
+ train_cmd="python -m paddle.distributed.launch --log_dir=./mylog --gpus=$CUDA_VISIBLE_DEVICES tools/train.py ${train_cmd}"
;;
*) echo "choose run_mode(sp or mp)"; exit 1;
esac
@@ -39,18 +47,14 @@ function _train(){
echo -e "${model_name}, SUCCESS"
export job_fail_flag=0
fi
- kill -9 `ps -ef|grep 'python3.7'|awk '{print $2}'`
if [ $run_mode = "mp" -a -d mylog ]; then
rm ${log_file}
cp mylog/workerlog.0 ${log_file}
fi
-
- # run log analysis
- analysis_cmd="python3.7 benchmark/analysis.py --filename ${log_file} --mission_name ${model_name} --run_mode ${mode} --direction_id 0 --keyword 'ips:' --base_batch_size ${batch_szie} --skip_steps 1 --gpu_num ${num_gpu_devices} --index 1 --model_mode=-1 --ips_unit=samples/sec"
- eval $analysis_cmd
}
+source ${BENCHMARK_ROOT}/scripts/run_model.sh # 在该脚本中会对符合benchmark规范的log使用analysis.py 脚本进行性能数据解析;该脚本在连调时可从benchmark repo中下载https://github.com/PaddlePaddle/benchmark/blob/master/scripts/run_model.sh;如果不联调只想要产出训练log可以注掉本行,提交时需打开
_set_params $@
-_train
-
+#_train # 如果只想产出训练log,不解析,可取消注释
+_run # 该函数在run_model.sh中,执行时会调用_train; 如果不联调只想要产出训练log可以注掉本行,提交时需打开
diff --git a/benchmark/run_det.sh b/benchmark/run_det.sh
index c507510c615a60177e07300976947b010dbae990..c7755d5d76187faebc2be37a1a5bf64a3bc1381e 100644
--- a/benchmark/run_det.sh
+++ b/benchmark/run_det.sh
@@ -1,13 +1,16 @@
+#!/bin/bash
# 提供可稳定复现性能的脚本,默认在标准docker环境内py37执行: paddlepaddle/paddle:latest-gpu-cuda10.1-cudnn7 paddle=2.1.2 py=37
# 执行目录: ./PaddleOCR
# 1 安装该模型需要的依赖 (如需开启优化策略请注明)
-python3.7 -m pip install -r requirements.txt
+python -m pip install -r requirements.txt
# 2 拷贝该模型需要数据、预训练模型
-wget -c -p ./tain_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar && cd train_data && tar xf icdar2015.tar && cd ../
-wget -c -p ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_pretrained.pdparams
+wget -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar && cd train_data && tar xf icdar2015.tar && cd ../
+wget -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_pretrained.pdparams
+wget -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet18_vd_pretrained.pdparams
+wget -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_ssld_pretrained.pdparams
# 3 批量运行(如不方便批量,1,2需放到单个模型中)
-model_mode_list=(det_res18_db_v2.0 det_r50_vd_east)
+model_mode_list=(det_res18_db_v2.0 det_r50_vd_east det_r50_vd_pse)
fp_item_list=(fp32)
bs_list=(8 16)
for model_mode in ${model_mode_list[@]}; do
@@ -15,11 +18,13 @@ for model_mode in ${model_mode_list[@]}; do
for bs_item in ${bs_list[@]}; do
echo "index is speed, 1gpus, begin, ${model_name}"
run_mode=sp
- CUDA_VISIBLE_DEVICES=0 bash benchmark/run_benchmark_det.sh ${run_mode} ${bs_item} ${fp_item} 10 ${model_mode} # (5min)
+ log_name=ocr_${model_mode}_${run_mode}_bs${bs_item}_${fp_item}
+ CUDA_VISIBLE_DEVICES=0 bash benchmark/run_benchmark_det.sh ${run_mode} ${bs_item} ${fp_item} 1 ${model_mode} | tee ${log_path}/${log_name}_speed_1gpus 2>&1 # (5min)
sleep 60
echo "index is speed, 8gpus, run_mode is multi_process, begin, ${model_name}"
run_mode=mp
- CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 bash benchmark/run_benchmark_det.sh ${run_mode} ${bs_item} ${fp_item} 10 ${model_mode}
+ log_name=ocr_${model_mode}_${run_mode}_bs${bs_item}_${fp_item}
+ CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 bash benchmark/run_benchmark_det.sh ${run_mode} ${bs_item} ${fp_item} 2 ${model_mode} | tee ${log_path}/${log_name}_speed_8gpus8p 2>&1
sleep 60
done
done
diff --git a/configs/det/ch_PP-OCRv2/ch_PP-OCR_det_cml.yml b/configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml
similarity index 99%
rename from configs/det/ch_PP-OCRv2/ch_PP-OCR_det_cml.yml
rename to configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml
index 0f08909add17d8c73ad6e1b00e17d4c351def7e5..ab484a44833a405513d7f2b4079a4da4c2e403c8 100644
--- a/configs/det/ch_PP-OCRv2/ch_PP-OCR_det_cml.yml
+++ b/configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml
@@ -141,6 +141,7 @@ Train:
img_mode: BGR
channel_first: False
- DetLabelEncode: # Class handling label
+ - CopyPaste:
- IaaAugment:
augmenter_args:
- { 'type': Fliplr, 'args': { 'p': 0.5 } }
diff --git a/configs/det/ch_PP-OCRv2/ch_PP-OCR_det_distill.yml b/configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_distill.yml
similarity index 97%
rename from configs/det/ch_PP-OCRv2/ch_PP-OCR_det_distill.yml
rename to configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_distill.yml
index 1159d71bf94c330e26c3009b38c5c2b4a9c96f52..d8d5135dd73ee438f76f5796b63e0dae4331402b 100644
--- a/configs/det/ch_PP-OCRv2/ch_PP-OCR_det_distill.yml
+++ b/configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_distill.yml
@@ -68,8 +68,7 @@ Loss:
ohem_ratio: 3
- DistillationDBLoss:
weight: 1.0
- model_name_list: ["Student", "Teacher"]
- # key: maps
+ model_name_list: ["Student"]
name: DBLoss
balance_loss: true
main_loss_type: DiceLoss
@@ -91,7 +90,7 @@ Optimizer:
PostProcess:
name: DistillationDBPostProcess
- model_name: ["Student", "Student2"]
+ model_name: ["Student"]
key: head_out
thresh: 0.3
box_thresh: 0.6
@@ -116,6 +115,7 @@ Train:
img_mode: BGR
channel_first: False
- DetLabelEncode: # Class handling label
+ - CopyPaste:
- IaaAugment:
augmenter_args:
- { 'type': Fliplr, 'args': { 'p': 0.5 } }
diff --git a/configs/det/ch_PP-OCRv2/ch_PP-OCR_det_dml.yml b/configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_dml.yml
similarity index 99%
rename from configs/det/ch_PP-OCRv2/ch_PP-OCR_det_dml.yml
rename to configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_dml.yml
index 7fe2d2e1a065b54d0e2479475f5f67ac5e38a166..bfbc3b6268cf521acb035be33ced9141046fc430 100644
--- a/configs/det/ch_PP-OCRv2/ch_PP-OCR_det_dml.yml
+++ b/configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_dml.yml
@@ -118,6 +118,7 @@ Train:
img_mode: BGR
channel_first: False
- DetLabelEncode: # Class handling label
+ - CopyPaste:
- IaaAugment:
augmenter_args:
- { 'type': Fliplr, 'args': { 'p': 0.5 } }
diff --git a/configs/det/ch_PP-OCRv2/ch_PP-OCR_det_student.yml b/configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_student.yml
similarity index 100%
rename from configs/det/ch_PP-OCRv2/ch_PP-OCR_det_student.yml
rename to configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_student.yml
diff --git a/configs/det/det_r50_vd_sast_icdar15.yml b/configs/det/det_r50_vd_sast_icdar15.yml
index dbfcefca964e73d42298fbbbc1e654b3bd809c77..e1bf6fad0c4f526c2b635494560446e779bdb572 100755
--- a/configs/det/det_r50_vd_sast_icdar15.yml
+++ b/configs/det/det_r50_vd_sast_icdar15.yml
@@ -8,7 +8,7 @@ Global:
# evaluation is run every 5000 iterations after the 4000th iteration
eval_batch_step: [4000, 5000]
cal_metric_during_train: False
- pretrained_model: ./pretrain_models/ResNet50_vd_ssld_pretrained/
+ pretrained_model: ./pretrain_models/ResNet50_vd_ssld_pretrained
checkpoints:
save_inference_dir:
use_visualdl: False
@@ -106,4 +106,4 @@ Eval:
shuffle: False
drop_last: False
batch_size_per_card: 1 # must be 1
- num_workers: 2
\ No newline at end of file
+ num_workers: 2
diff --git a/configs/det/det_r50_vd_sast_totaltext.yml b/configs/det/det_r50_vd_sast_totaltext.yml
index 88dd31f3c21b184d956ad718dae808bb6054532e..44a0766b1bf2790a9633602bc637932529046e34 100755
--- a/configs/det/det_r50_vd_sast_totaltext.yml
+++ b/configs/det/det_r50_vd_sast_totaltext.yml
@@ -8,7 +8,7 @@ Global:
# evaluation is run every 5000 iterations after the 4000th iteration
eval_batch_step: [4000, 5000]
cal_metric_during_train: False
- pretrained_model: ./pretrain_models/ResNet50_vd_ssld_pretrained/
+ pretrained_model: ./pretrain_models/ResNet50_vd_ssld_pretrained
checkpoints:
save_inference_dir:
use_visualdl: False
diff --git a/configs/e2e/e2e_r50_vd_pg.yml b/configs/e2e/e2e_r50_vd_pg.yml
index de5af468a323d2e3d51f56c9f957d9ade8c12429..c4c5226e796a42db723ce78ef65473e357c25dc6 100644
--- a/configs/e2e/e2e_r50_vd_pg.yml
+++ b/configs/e2e/e2e_r50_vd_pg.yml
@@ -94,7 +94,7 @@ Eval:
label_file_list: [./train_data/total_text/test/test.txt]
transforms:
- DecodeImage: # load image
- img_mode: RGB
+ img_mode: BGR
channel_first: False
- E2ELabelEncodeTest:
- E2EResizeForTest:
diff --git a/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml b/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml
index 38f77f7372c4e422b5601deb5119c24fd1e3f787..e2aa50106ff60aa61858a22ba6fdd03b8cd04d85 100644
--- a/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml
+++ b/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml
@@ -14,7 +14,6 @@ Global:
use_visualdl: false
infer_img: doc/imgs_words/ch/word_1.jpg
character_dict_path: ppocr/utils/ppocr_keys_v1.txt
- character_type: ch
max_text_length: 25
infer_mode: false
use_space_char: true
diff --git a/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec_distillation.yml b/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec_distillation.yml
index d2308fd5747f3fadf3bb1c98c5602c67d5e63eca..ab48b99791d00785d143cd933ccc31b3f69d0f8f 100644
--- a/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec_distillation.yml
+++ b/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec_distillation.yml
@@ -14,7 +14,6 @@ Global:
use_visualdl: false
infer_img: doc/imgs_words/ch/word_1.jpg
character_dict_path: ppocr/utils/ppocr_keys_v1.txt
- character_type: ch
max_text_length: 25
infer_mode: false
use_space_char: true
diff --git a/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec_enhanced_ctc_loss.yml b/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec_enhanced_ctc_loss.yml
index 8b568637a189ac47438b84e89fc55ddc643ab297..5be96969fd0d4912a4ff2a09c9d181b1b17d633e 100644
--- a/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec_enhanced_ctc_loss.yml
+++ b/configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec_enhanced_ctc_loss.yml
@@ -14,7 +14,6 @@ Global:
use_visualdl: false
infer_img: doc/imgs_words/ch/word_1.jpg
character_dict_path: ppocr/utils/ppocr_keys_v1.txt
- character_type: ch
max_text_length: 25
infer_mode: false
use_space_char: true
@@ -63,8 +62,7 @@ Loss:
weight: 0.05
num_classes: 6625
feat_dim: 96
- init_center: false
- center_file_path: "./train_center.pkl"
+ center_file_path:
# you can also try to add ace loss on your own dataset
# - ACELoss:
# weight: 0.1
diff --git a/configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml b/configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml
index 717c16814bac2f6fca78aa63566df12bd8cbf67b..c76063d5cedc31985404ddfff5147e1e0c100d20 100644
--- a/configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml
+++ b/configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml
@@ -15,7 +15,6 @@ Global:
infer_img: doc/imgs_words/ch/word_1.jpg
# for data or label process
character_dict_path: ppocr/utils/ppocr_keys_v1.txt
- character_type: ch
max_text_length: 25
infer_mode: False
use_space_char: True
diff --git a/configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml b/configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml
index 660465f301047110db7001db7a32e687f2917b61..563ce110b865adabf320616227bdf8d2eb465c11 100644
--- a/configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml
+++ b/configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml
@@ -15,7 +15,6 @@ Global:
infer_img: doc/imgs_words/ch/word_1.jpg
# for data or label process
character_dict_path: ppocr/utils/ppocr_keys_v1.txt
- character_type: ch
max_text_length: 25
infer_mode: False
use_space_char: True
diff --git a/configs/rec/multi_language/rec_arabic_lite_train.yml b/configs/rec/multi_language/rec_arabic_lite_train.yml
index 6dcfd1b69988b09c7dfc05cdbacce9756ea1f7cb..a746260e0001e34b1f50fb066885091b3686cb4d 100644
--- a/configs/rec/multi_language/rec_arabic_lite_train.yml
+++ b/configs/rec/multi_language/rec_arabic_lite_train.yml
@@ -15,7 +15,6 @@ Global:
use_visualdl: false
infer_img: null
character_dict_path: ppocr/utils/dict/arabic_dict.txt
- character_type: arabic
max_text_length: 25
infer_mode: false
use_space_char: true
diff --git a/configs/rec/multi_language/rec_cyrillic_lite_train.yml b/configs/rec/multi_language/rec_cyrillic_lite_train.yml
index 52527c1dfb9a306429bbab9241c623581d546e45..98544f627111340b61abd210ea5b4d7979511a15 100644
--- a/configs/rec/multi_language/rec_cyrillic_lite_train.yml
+++ b/configs/rec/multi_language/rec_cyrillic_lite_train.yml
@@ -15,7 +15,6 @@ Global:
use_visualdl: false
infer_img: null
character_dict_path: ppocr/utils/dict/cyrillic_dict.txt
- character_type: cyrillic
max_text_length: 25
infer_mode: false
use_space_char: true
diff --git a/configs/rec/multi_language/rec_devanagari_lite_train.yml b/configs/rec/multi_language/rec_devanagari_lite_train.yml
index e1a7c829c3e6d3c3a57f1d501cdd80a560703ec7..518b9f19ccaccb6405f7e9cb4d783b441e8c7ae7 100644
--- a/configs/rec/multi_language/rec_devanagari_lite_train.yml
+++ b/configs/rec/multi_language/rec_devanagari_lite_train.yml
@@ -15,7 +15,6 @@ Global:
use_visualdl: false
infer_img: null
character_dict_path: ppocr/utils/dict/devanagari_dict.txt
- character_type: devanagari
max_text_length: 25
infer_mode: false
use_space_char: true
diff --git a/configs/rec/multi_language/rec_en_number_lite_train.yml b/configs/rec/multi_language/rec_en_number_lite_train.yml
index fff4dfcd905b406964bb07cf14017af22f40e91e..ff1fb8698163d00fae57e682059da47d2007505d 100644
--- a/configs/rec/multi_language/rec_en_number_lite_train.yml
+++ b/configs/rec/multi_language/rec_en_number_lite_train.yml
@@ -16,7 +16,6 @@ Global:
infer_img:
# for data or label process
character_dict_path: ppocr/utils/en_dict.txt
- character_type: EN
max_text_length: 25
infer_mode: False
use_space_char: True
diff --git a/configs/rec/multi_language/rec_french_lite_train.yml b/configs/rec/multi_language/rec_french_lite_train.yml
index 63378d38a0d31fc77c33173e0ed864f28c5c3a8b..217369d30bc3ac6e09c2a580facbd0395e0ce727 100644
--- a/configs/rec/multi_language/rec_french_lite_train.yml
+++ b/configs/rec/multi_language/rec_french_lite_train.yml
@@ -16,7 +16,6 @@ Global:
infer_img:
# for data or label process
character_dict_path: ppocr/utils/dict/french_dict.txt
- character_type: french
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/multi_language/rec_german_lite_train.yml b/configs/rec/multi_language/rec_german_lite_train.yml
index 1651510c5e4597e82298135d2f6c64aa747cf961..67520f5fb668327fdbd0cddb68cb6a3d6d3d112e 100644
--- a/configs/rec/multi_language/rec_german_lite_train.yml
+++ b/configs/rec/multi_language/rec_german_lite_train.yml
@@ -16,7 +16,6 @@ Global:
infer_img:
# for data or label process
character_dict_path: ppocr/utils/dict/german_dict.txt
- character_type: german
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/multi_language/rec_japan_lite_train.yml b/configs/rec/multi_language/rec_japan_lite_train.yml
index bb47584edbc70f68d8d2d89dced3ec9b12f0e1cb..448aff1ebd0b418191c622cee97346931a86929b 100644
--- a/configs/rec/multi_language/rec_japan_lite_train.yml
+++ b/configs/rec/multi_language/rec_japan_lite_train.yml
@@ -16,7 +16,6 @@ Global:
infer_img:
# for data or label process
character_dict_path: ppocr/utils/dict/japan_dict.txt
- character_type: japan
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/multi_language/rec_korean_lite_train.yml b/configs/rec/multi_language/rec_korean_lite_train.yml
index 77f15524f78cd7f1c3dcf4988960e718422f5d89..8118119da8f15102ad4c8485b7e26b9436d65cda 100644
--- a/configs/rec/multi_language/rec_korean_lite_train.yml
+++ b/configs/rec/multi_language/rec_korean_lite_train.yml
@@ -16,7 +16,6 @@ Global:
infer_img:
# for data or label process
character_dict_path: ppocr/utils/dict/korean_dict.txt
- character_type: korean
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/multi_language/rec_latin_lite_train.yml b/configs/rec/multi_language/rec_latin_lite_train.yml
index e71112b4b4f0afd3ceab9f10078bc5d518ee9e59..04fe6d1a49ea06341b2218123d2319a5962b934b 100644
--- a/configs/rec/multi_language/rec_latin_lite_train.yml
+++ b/configs/rec/multi_language/rec_latin_lite_train.yml
@@ -15,7 +15,6 @@ Global:
use_visualdl: false
infer_img: null
character_dict_path: ppocr/utils/dict/latin_dict.txt
- character_type: latin
max_text_length: 25
infer_mode: false
use_space_char: true
diff --git a/configs/rec/rec_icdar15_train.yml b/configs/rec/rec_icdar15_train.yml
index 17a4d76483635d648ebb8cb897f621a186dcd516..893f7382f8b82f3c2d5f10cdf10735645fd3a5ee 100644
--- a/configs/rec/rec_icdar15_train.yml
+++ b/configs/rec/rec_icdar15_train.yml
@@ -15,7 +15,6 @@ Global:
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
character_dict_path: ppocr/utils/en_dict.txt
- character_type: EN
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_mtb_nrtr.yml b/configs/rec/rec_mtb_nrtr.yml
index 8639a28a931247ee34f2e3842407fd1d2e065950..04267500854310dc6d5df9318bb8c056c65cd5b5 100644
--- a/configs/rec/rec_mtb_nrtr.yml
+++ b/configs/rec/rec_mtb_nrtr.yml
@@ -14,11 +14,10 @@ Global:
use_visualdl: False
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
- character_dict_path:
- character_type: EN_symbol
+ character_dict_path: ppocr/utils/EN_symbol_dict.txt
max_text_length: 25
infer_mode: False
- use_space_char: True
+ use_space_char: False
save_res_path: ./output/rec/predicts_nrtr.txt
Optimizer:
diff --git a/configs/rec/rec_mv3_none_bilstm_ctc.yml b/configs/rec/rec_mv3_none_bilstm_ctc.yml
index 9e0bd23edba053b44fc7241c0a587ced5cd1ac76..9a950923b0cd4292f3f4d70ae51abc60c59dc615 100644
--- a/configs/rec/rec_mv3_none_bilstm_ctc.yml
+++ b/configs/rec/rec_mv3_none_bilstm_ctc.yml
@@ -14,8 +14,7 @@ Global:
use_visualdl: False
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
- character_dict_path:
- character_type: en
+ character_dict_path:
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_mv3_none_none_ctc.yml b/configs/rec/rec_mv3_none_none_ctc.yml
index 904afe1134b565d6459cdcda4cbfa43ae4925b92..28f0252adb4b74f88f8c6203521adb66c851e6b0 100644
--- a/configs/rec/rec_mv3_none_none_ctc.yml
+++ b/configs/rec/rec_mv3_none_none_ctc.yml
@@ -15,7 +15,6 @@ Global:
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
character_dict_path:
- character_type: en
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_mv3_tps_bilstm_att.yml b/configs/rec/rec_mv3_tps_bilstm_att.yml
index feaeb0545c687774938521e4c45c026207172f11..6c347e765fe04ca3e5330de6cabb9998855436c9 100644
--- a/configs/rec/rec_mv3_tps_bilstm_att.yml
+++ b/configs/rec/rec_mv3_tps_bilstm_att.yml
@@ -14,8 +14,7 @@ Global:
use_visualdl: False
infer_img: doc/imgs_words/ch/word_1.jpg
# for data or label process
- character_dict_path:
- character_type: en
+ character_dict_path:
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_mv3_tps_bilstm_ctc.yml b/configs/rec/rec_mv3_tps_bilstm_ctc.yml
index 65ab23c42aff54ee548867e3482d7400603551ad..9d1ebbe4e2ce25d746ff9d6993bf820347a3558a 100644
--- a/configs/rec/rec_mv3_tps_bilstm_ctc.yml
+++ b/configs/rec/rec_mv3_tps_bilstm_ctc.yml
@@ -15,7 +15,6 @@ Global:
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
character_dict_path:
- character_type: en
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_r31_sar.yml b/configs/rec/rec_r31_sar.yml
index 41609fdf28e78f5340ab08878c2b8b23f46020d2..65e7877b28da80e0730f551b07d60b8a8c0ac48e 100644
--- a/configs/rec/rec_r31_sar.yml
+++ b/configs/rec/rec_r31_sar.yml
@@ -15,7 +15,6 @@ Global:
infer_img:
# for data or label process
character_dict_path: ppocr/utils/dict90.txt
- character_type: EN_symbol
max_text_length: 30
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_r34_vd_none_bilstm_ctc.yml b/configs/rec/rec_r34_vd_none_bilstm_ctc.yml
index 331bb36ed84b83dc62a0f9b15524457238dedc13..9fdb5e99acec4ab5b2c3ff4b29158a41c766844b 100644
--- a/configs/rec/rec_r34_vd_none_bilstm_ctc.yml
+++ b/configs/rec/rec_r34_vd_none_bilstm_ctc.yml
@@ -14,8 +14,7 @@ Global:
use_visualdl: False
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
- character_dict_path:
- character_type: en
+ character_dict_path:
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_r34_vd_none_none_ctc.yml b/configs/rec/rec_r34_vd_none_none_ctc.yml
index 695a46958f669e4cb9508646080b45ac0767b8c9..0af2b2ff21938ce9b1750bd0fd8e27dabfd39998 100644
--- a/configs/rec/rec_r34_vd_none_none_ctc.yml
+++ b/configs/rec/rec_r34_vd_none_none_ctc.yml
@@ -15,7 +15,6 @@ Global:
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
character_dict_path:
- character_type: en
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_r34_vd_tps_bilstm_att.yml b/configs/rec/rec_r34_vd_tps_bilstm_att.yml
index fdd3588c844ffd7ed61de73077ae2994f0ad498d..8919aae75720d1e2f786957dd44e2d5d6dcbb5af 100644
--- a/configs/rec/rec_r34_vd_tps_bilstm_att.yml
+++ b/configs/rec/rec_r34_vd_tps_bilstm_att.yml
@@ -14,8 +14,7 @@ Global:
use_visualdl: False
infer_img: doc/imgs_words/ch/word_1.jpg
# for data or label process
- character_dict_path:
- character_type: en
+ character_dict_path:
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_r34_vd_tps_bilstm_ctc.yml b/configs/rec/rec_r34_vd_tps_bilstm_ctc.yml
index 67108a6eaca2dd6f239261f5184341e5ade00dc0..c21fe61fbe62bab940bdb5ec1fef7833f402cb6c 100644
--- a/configs/rec/rec_r34_vd_tps_bilstm_ctc.yml
+++ b/configs/rec/rec_r34_vd_tps_bilstm_ctc.yml
@@ -14,8 +14,7 @@ Global:
use_visualdl: False
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
- character_dict_path:
- character_type: en
+ character_dict_path:
max_text_length: 25
infer_mode: False
use_space_char: False
diff --git a/configs/rec/rec_r50_fpn_srn.yml b/configs/rec/rec_r50_fpn_srn.yml
index fa7b1ae4e5fed41d3aa3670d6672cca01b63c359..b685362dedbcd6022fa247fe1499017647fa1546 100644
--- a/configs/rec/rec_r50_fpn_srn.yml
+++ b/configs/rec/rec_r50_fpn_srn.yml
@@ -14,8 +14,7 @@ Global:
use_visualdl: False
infer_img: doc/imgs_words/ch/word_1.jpg
# for data or label process
- character_dict_path:
- character_type: en
+ character_dict_path:
max_text_length: 25
num_heads: 8
infer_mode: False
diff --git a/configs/rec/rec_resnet_stn_bilstm_att.yml b/configs/rec/rec_resnet_stn_bilstm_att.yml
index 1f6e534a6878a7ae84fc7fa7e1d975077f164d80..0f599258d46e2ce89a6b7deccf8287a2ec0f7e4e 100644
--- a/configs/rec/rec_resnet_stn_bilstm_att.yml
+++ b/configs/rec/rec_resnet_stn_bilstm_att.yml
@@ -14,8 +14,7 @@ Global:
use_visualdl: False
infer_img: doc/imgs_words_en/word_10.png
# for data or label process
- character_dict_path:
- character_type: EN_symbol
+ character_dict_path: ppocr/utils/EN_symbol_dict.txt
max_text_length: 100
infer_mode: False
use_space_char: False
diff --git a/configs/table/table_mv3.yml b/configs/table/table_mv3.yml
index a74e18d318699685400cc48430c04db3fef70b60..1a91ea95afb4ff91d3fd68fe0df6afaac9304661 100755
--- a/configs/table/table_mv3.yml
+++ b/configs/table/table_mv3.yml
@@ -1,29 +1,28 @@
Global:
use_gpu: true
- epoch_num: 50
+ epoch_num: 400
log_smooth_window: 20
print_batch_step: 5
save_model_dir: ./output/table_mv3/
- save_epoch_step: 5
+ save_epoch_step: 3
# evaluation is run every 400 iterations after the 0th iteration
eval_batch_step: [0, 400]
cal_metric_during_train: True
- pretrained_model:
+ pretrained_model:
checkpoints:
save_inference_dir:
use_visualdl: False
- infer_img: doc/imgs_words/ch/word_1.jpg
+ infer_img: doc/table/table.jpg
# for data or label process
character_dict_path: ppocr/utils/dict/table_structure_dict.txt
character_type: en
max_text_length: 100
- max_elem_length: 500
+ max_elem_length: 800
max_cell_num: 500
infer_mode: False
process_total_num: 0
process_cut_num: 0
-
Optimizer:
name: Adam
beta1: 0.9
@@ -41,13 +40,15 @@ Architecture:
Backbone:
name: MobileNetV3
scale: 1.0
- model_name: small
- disable_se: True
+ model_name: large
Head:
name: TableAttentionHead
hidden_size: 256
l2_decay: 0.00001
loc_type: 2
+ max_text_length: 100
+ max_elem_length: 800
+ max_cell_num: 500
Loss:
name: TableAttentionLoss
diff --git a/deploy/cpp_infer/include/ocr_rec.h b/deploy/cpp_infer/include/ocr_rec.h
index d585112b051daff7c03060836a4c065ba6e3949c..ff80ba5299014885fc4c900fb87b5dcc6042744a 100644
--- a/deploy/cpp_infer/include/ocr_rec.h
+++ b/deploy/cpp_infer/include/ocr_rec.h
@@ -44,7 +44,8 @@ public:
const int &gpu_id, const int &gpu_mem,
const int &cpu_math_library_num_threads,
const bool &use_mkldnn, const string &label_path,
- const bool &use_tensorrt, const std::string &precision) {
+ const bool &use_tensorrt, const std::string &precision,
+ const int &rec_batch_num) {
this->use_gpu_ = use_gpu;
this->gpu_id_ = gpu_id;
this->gpu_mem_ = gpu_mem;
@@ -52,6 +53,7 @@ public:
this->use_mkldnn_ = use_mkldnn;
this->use_tensorrt_ = use_tensorrt;
this->precision_ = precision;
+ this->rec_batch_num_ = rec_batch_num;
this->label_list_ = Utility::ReadDict(label_path);
this->label_list_.insert(this->label_list_.begin(),
@@ -64,7 +66,7 @@ public:
// Load Paddle inference model
void LoadModel(const std::string &model_dir);
- void Run(cv::Mat &img, std::vector *times);
+ void Run(std::vector img_list, std::vector *times);
private:
std::shared_ptr predictor_;
@@ -82,10 +84,12 @@ private:
bool is_scale_ = true;
bool use_tensorrt_ = false;
std::string precision_ = "fp32";
+ int rec_batch_num_ = 6;
+
// pre-process
CrnnResizeImg resize_op_;
Normalize normalize_op_;
- Permute permute_op_;
+ PermuteBatch permute_op_;
// post-process
PostProcessor post_processor_;
diff --git a/deploy/cpp_infer/include/preprocess_op.h b/deploy/cpp_infer/include/preprocess_op.h
index ab4c140059fdcaed9872d2d99b4aea57c7e5208f..31217de301573e078f8e11ef88657f369ede9b31 100644
--- a/deploy/cpp_infer/include/preprocess_op.h
+++ b/deploy/cpp_infer/include/preprocess_op.h
@@ -44,6 +44,11 @@ public:
virtual void Run(const cv::Mat *im, float *data);
};
+class PermuteBatch {
+public:
+ virtual void Run(const std::vector imgs, float *data);
+};
+
class ResizeImgType0 {
public:
virtual void Run(const cv::Mat &img, cv::Mat &resize_img, int max_size_len,
diff --git a/deploy/cpp_infer/include/utility.h b/deploy/cpp_infer/include/utility.h
index 678187d3fabfb1c91584226950155b3c47b5f93f..5797559f7550da6bb38b014c46c1492124a9e065 100644
--- a/deploy/cpp_infer/include/utility.h
+++ b/deploy/cpp_infer/include/utility.h
@@ -50,6 +50,9 @@ public:
static cv::Mat GetRotateCropImage(const cv::Mat &srcimage,
std::vector> box);
+
+ static std::vector argsort(const std::vector& array);
+
};
} // namespace PaddleOCR
\ No newline at end of file
diff --git a/deploy/cpp_infer/readme.md b/deploy/cpp_infer/readme.md
index f88d021d0a050aeecf859981cc2de1cee8f3a2c0..92ef70b642dc1eaed9e694b1ae756f76ee548703 100644
--- a/deploy/cpp_infer/readme.md
+++ b/deploy/cpp_infer/readme.md
@@ -34,10 +34,10 @@ PaddleOCR模型部署。
* 首先需要从opencv官网上下载在Linux环境下源码编译的包,以opencv3.4.7为例,下载命令如下。
-```
+```bash
cd deploy/cpp_infer
-wget https://github.com/opencv/opencv/archive/3.4.7.tar.gz
-tar -xf 3.4.7.tar.gz
+wget https://paddleocr.bj.bcebos.com/libs/opencv/opencv-3.4.7.tar.gz
+tar -xf opencv-3.4.7.tar.gz
```
最终可以在当前目录下看到`opencv-3.4.7/`的文件夹。
@@ -45,12 +45,13 @@ tar -xf 3.4.7.tar.gz
* 编译opencv,设置opencv源码路径(`root_path`)以及安装路径(`install_path`)。进入opencv源码路径下,按照下面的方式进行编译。
```shell
-root_path=your_opencv_root_path
+root_path="your_opencv_root_path"
install_path=${root_path}/opencv3
+build_dir=${root_path}/build
-rm -rf build
-mkdir build
-cd build
+rm -rf ${build_dir}
+mkdir ${build_dir}
+cd ${build_dir}
cmake .. \
-DCMAKE_INSTALL_PREFIX=${install_path} \
@@ -74,6 +75,11 @@ make -j
make install
```
+也可以直接修改`tools/build_opencv.sh`的内容,然后直接运行下面的命令进行编译。
+
+```shell
+sh tools/build_opencv.sh
+```
其中`root_path`为下载的opencv源码路径,`install_path`为opencv的安装路径,`make install`完成之后,会在该文件夹下生成opencv头文件和库文件,用于后面的OCR代码编译。
@@ -233,12 +239,12 @@ CUDNN_LIB_DIR=/your_cudnn_lib_dir
--image_dir=../../doc/imgs/12.jpg
```
-更多参数如下:
+更多支持的可调节参数解释如下:
- 通用参数
|参数名称|类型|默认参数|意义|
-| --- | --- | --- | --- |
+| :---: | :---: | :---: | :---: |
|use_gpu|bool|false|是否使用GPU|
|gpu_id|int|0|GPU id,使用GPU时有效|
|gpu_mem|int|4000|申请的GPU内存|
@@ -248,7 +254,7 @@ CUDNN_LIB_DIR=/your_cudnn_lib_dir
- 检测模型相关
|参数名称|类型|默认参数|意义|
-| --- | --- | --- | --- |
+| :---: | :---: | :---: | :---: |
|det_model_dir|string|-|检测模型inference model地址|
|max_side_len|int|960|输入图像长宽大于960时,等比例缩放图像,使得图像最长边为960|
|det_db_thresh|float|0.3|用于过滤DB预测的二值化图像,设置为0.-0.3对结果影响不明显|
@@ -260,7 +266,7 @@ CUDNN_LIB_DIR=/your_cudnn_lib_dir
- 方向分类器相关
|参数名称|类型|默认参数|意义|
-| --- | --- | --- | --- |
+| :---: | :---: | :---: | :---: |
|use_angle_cls|bool|false|是否使用方向分类器|
|cls_model_dir|string|-|方向分类器inference model地址|
|cls_thresh|float|0.9|方向分类器的得分阈值|
@@ -268,7 +274,7 @@ CUDNN_LIB_DIR=/your_cudnn_lib_dir
- 识别模型相关
|参数名称|类型|默认参数|意义|
-| --- | --- | --- | --- |
+| :---: | :---: | :---: | :---: |
|rec_model_dir|string|-|识别模型inference model地址|
|char_list_file|string|../../ppocr/utils/ppocr_keys_v1.txt|字典文件|
diff --git a/deploy/cpp_infer/readme_en.md b/deploy/cpp_infer/readme_en.md
index 48de51ae726e662f48d465b8489a494448dafac1..fd6d953de1f9168da734d6c5eda945c670cfce37 100644
--- a/deploy/cpp_infer/readme_en.md
+++ b/deploy/cpp_infer/readme_en.md
@@ -17,10 +17,10 @@ PaddleOCR model deployment.
* First of all, you need to download the source code compiled package in the Linux environment from the opencv official website. Taking opencv3.4.7 as an example, the download command is as follows.
-```
+```bash
cd deploy/cpp_infer
-wget https://github.com/opencv/opencv/archive/3.4.7.tar.gz
-tar -xf 3.4.7.tar.gz
+wget https://paddleocr.bj.bcebos.com/libs/opencv/opencv-3.4.7.tar.gz
+tar -xf opencv-3.4.7.tar.gz
```
Finally, you can see the folder of `opencv-3.4.7/` in the current directory.
diff --git a/deploy/cpp_infer/src/main.cpp b/deploy/cpp_infer/src/main.cpp
index 82a248416f086dd2b90e891a23774c294ed50ae3..b7a199b548beca881e4ab69491adcc9351f52c0f 100644
--- a/deploy/cpp_infer/src/main.cpp
+++ b/deploy/cpp_infer/src/main.cpp
@@ -61,7 +61,7 @@ DEFINE_string(cls_model_dir, "", "Path of cls inference model.");
DEFINE_double(cls_thresh, 0.9, "Threshold of cls_thresh.");
// recognition related
DEFINE_string(rec_model_dir, "", "Path of rec inference model.");
-DEFINE_int32(rec_batch_num, 1, "rec_batch_num.");
+DEFINE_int32(rec_batch_num, 6, "rec_batch_num.");
DEFINE_string(char_list_file, "../../ppocr/utils/ppocr_keys_v1.txt", "Path of dictionary.");
@@ -146,8 +146,9 @@ int main_rec(std::vector cv_all_img_names) {
CRNNRecognizer rec(FLAGS_rec_model_dir, FLAGS_use_gpu, FLAGS_gpu_id,
FLAGS_gpu_mem, FLAGS_cpu_threads,
FLAGS_enable_mkldnn, char_list_file,
- FLAGS_use_tensorrt, FLAGS_precision);
+ FLAGS_use_tensorrt, FLAGS_precision, FLAGS_rec_batch_num);
+ std::vector img_list;
for (int i = 0; i < cv_all_img_names.size(); ++i) {
LOG(INFO) << "The predict img: " << cv_all_img_names[i];
@@ -156,22 +157,21 @@ int main_rec(std::vector cv_all_img_names) {
std::cerr << "[ERROR] image read failed! image path: " << cv_all_img_names[i] << endl;
exit(1);
}
-
- std::vector rec_times;
- rec.Run(srcimg, &rec_times);
-
- time_info[0] += rec_times[0];
- time_info[1] += rec_times[1];
- time_info[2] += rec_times[2];
+ img_list.push_back(srcimg);
}
-
+ std::vector rec_times;
+ rec.Run(img_list, &rec_times);
+ time_info[0] += rec_times[0];
+ time_info[1] += rec_times[1];
+ time_info[2] += rec_times[2];
+
if (FLAGS_benchmark) {
AutoLogger autolog("ocr_rec",
FLAGS_use_gpu,
FLAGS_use_tensorrt,
FLAGS_enable_mkldnn,
FLAGS_cpu_threads,
- 1,
+ FLAGS_rec_batch_num,
"dynamic",
FLAGS_precision,
time_info,
@@ -209,7 +209,7 @@ int main_system(std::vector cv_all_img_names) {
CRNNRecognizer rec(FLAGS_rec_model_dir, FLAGS_use_gpu, FLAGS_gpu_id,
FLAGS_gpu_mem, FLAGS_cpu_threads,
FLAGS_enable_mkldnn, char_list_file,
- FLAGS_use_tensorrt, FLAGS_precision);
+ FLAGS_use_tensorrt, FLAGS_precision, FLAGS_rec_batch_num);
for (int i = 0; i < cv_all_img_names.size(); ++i) {
LOG(INFO) << "The predict img: " << cv_all_img_names[i];
@@ -228,19 +228,22 @@ int main_system(std::vector cv_all_img_names) {
time_info_det[1] += det_times[1];
time_info_det[2] += det_times[2];
- cv::Mat crop_img;
+ std::vector img_list;
for (int j = 0; j < boxes.size(); j++) {
- crop_img = Utility::GetRotateCropImage(srcimg, boxes[j]);
-
- if (cls != nullptr) {
- crop_img = cls->Run(crop_img);
- }
- rec.Run(crop_img, &rec_times);
- time_info_rec[0] += rec_times[0];
- time_info_rec[1] += rec_times[1];
- time_info_rec[2] += rec_times[2];
+ cv::Mat crop_img;
+ crop_img = Utility::GetRotateCropImage(srcimg, boxes[j]);
+ if (cls != nullptr) {
+ crop_img = cls->Run(crop_img);
+ }
+ img_list.push_back(crop_img);
}
+
+ rec.Run(img_list, &rec_times);
+ time_info_rec[0] += rec_times[0];
+ time_info_rec[1] += rec_times[1];
+ time_info_rec[2] += rec_times[2];
}
+
if (FLAGS_benchmark) {
AutoLogger autolog_det("ocr_det",
FLAGS_use_gpu,
@@ -257,7 +260,7 @@ int main_system(std::vector cv_all_img_names) {
FLAGS_use_tensorrt,
FLAGS_enable_mkldnn,
FLAGS_cpu_threads,
- 1,
+ FLAGS_rec_batch_num,
"dynamic",
FLAGS_precision,
time_info_rec,
diff --git a/deploy/cpp_infer/src/ocr_rec.cpp b/deploy/cpp_infer/src/ocr_rec.cpp
index 3739a66ad802fd108df16bbbbe8c8695963b7693..f1a97a99a3d3487988c35766592668ba3f43c784 100644
--- a/deploy/cpp_infer/src/ocr_rec.cpp
+++ b/deploy/cpp_infer/src/ocr_rec.cpp
@@ -15,83 +15,108 @@
#include
namespace PaddleOCR {
-
-void CRNNRecognizer::Run(cv::Mat &img, std::vector *times) {
- cv::Mat srcimg;
- img.copyTo(srcimg);
- cv::Mat resize_img;
-
- float wh_ratio = float(srcimg.cols) / float(srcimg.rows);
- auto preprocess_start = std::chrono::steady_clock::now();
- this->resize_op_.Run(srcimg, resize_img, wh_ratio, this->use_tensorrt_);
-
- this->normalize_op_.Run(&resize_img, this->mean_, this->scale_,
- this->is_scale_);
-
- std::vector input(1 * 3 * resize_img.rows * resize_img.cols, 0.0f);
-
- this->permute_op_.Run(&resize_img, input.data());
- auto preprocess_end = std::chrono::steady_clock::now();
-
- // Inference.
- auto input_names = this->predictor_->GetInputNames();
- auto input_t = this->predictor_->GetInputHandle(input_names[0]);
- input_t->Reshape({1, 3, resize_img.rows, resize_img.cols});
- auto inference_start = std::chrono::steady_clock::now();
- input_t->CopyFromCpu(input.data());
- this->predictor_->Run();
-
- std::vector predict_batch;
- auto output_names = this->predictor_->GetOutputNames();
- auto output_t = this->predictor_->GetOutputHandle(output_names[0]);
- auto predict_shape = output_t->shape();
-
- int out_num = std::accumulate(predict_shape.begin(), predict_shape.end(), 1,
+
+void CRNNRecognizer::Run(std::vector img_list, std::vector *times) {
+ std::chrono::duration preprocess_diff = std::chrono::steady_clock::now() - std::chrono::steady_clock::now();
+ std::chrono::duration inference_diff = std::chrono::steady_clock::now() - std::chrono::steady_clock::now();
+ std::chrono::duration postprocess_diff = std::chrono::steady_clock::now() - std::chrono::steady_clock::now();
+
+ int img_num = img_list.size();
+ std::vector width_list;
+ for (int i = 0; i < img_num; i++) {
+ width_list.push_back(float(img_list[i].cols) / img_list[i].rows);
+ }
+ std::vector indices = Utility::argsort(width_list);
+
+ for (int beg_img_no = 0; beg_img_no < img_num; beg_img_no += this->rec_batch_num_) {
+ auto preprocess_start = std::chrono::steady_clock::now();
+ int end_img_no = min(img_num, beg_img_no + this->rec_batch_num_);
+ float max_wh_ratio = 0;
+ for (int ino = beg_img_no; ino < end_img_no; ino ++) {
+ int h = img_list[indices[ino]].rows;
+ int w = img_list[indices[ino]].cols;
+ float wh_ratio = w * 1.0 / h;
+ max_wh_ratio = max(max_wh_ratio, wh_ratio);
+ }
+ std::vector norm_img_batch;
+ for (int ino = beg_img_no; ino < end_img_no; ino ++) {
+ cv::Mat srcimg;
+ img_list[indices[ino]].copyTo(srcimg);
+ cv::Mat resize_img;
+ this->resize_op_.Run(srcimg, resize_img, max_wh_ratio, this->use_tensorrt_);
+ this->normalize_op_.Run(&resize_img, this->mean_, this->scale_, this->is_scale_);
+ norm_img_batch.push_back(resize_img);
+ }
+
+ int batch_width = int(ceilf(32 * max_wh_ratio)) - 1;
+ std::vector input(this->rec_batch_num_ * 3 * 32 * batch_width, 0.0f);
+ this->permute_op_.Run(norm_img_batch, input.data());
+ auto preprocess_end = std::chrono::steady_clock::now();
+ preprocess_diff += preprocess_end - preprocess_start;
+
+ // Inference.
+ auto input_names = this->predictor_->GetInputNames();
+ auto input_t = this->predictor_->GetInputHandle(input_names[0]);
+ input_t->Reshape({this->rec_batch_num_, 3, 32, batch_width});
+ auto inference_start = std::chrono::steady_clock::now();
+ input_t->CopyFromCpu(input.data());
+ this->predictor_->Run();
+
+ std::vector predict_batch;
+ auto output_names = this->predictor_->GetOutputNames();
+ auto output_t = this->predictor_->GetOutputHandle(output_names[0]);
+ auto predict_shape = output_t->shape();
+
+ int out_num = std::accumulate(predict_shape.begin(), predict_shape.end(), 1,
std::multiplies());
- predict_batch.resize(out_num);
-
- output_t->CopyToCpu(predict_batch.data());
- auto inference_end = std::chrono::steady_clock::now();
-
- // ctc decode
- auto postprocess_start = std::chrono::steady_clock::now();
- std::vector str_res;
- int argmax_idx;
- int last_index = 0;
- float score = 0.f;
- int count = 0;
- float max_value = 0.0f;
-
- for (int n = 0; n < predict_shape[1]; n++) {
- argmax_idx =
- int(Utility::argmax(&predict_batch[n * predict_shape[2]],
- &predict_batch[(n + 1) * predict_shape[2]]));
- max_value =
- float(*std::max_element(&predict_batch[n * predict_shape[2]],
- &predict_batch[(n + 1) * predict_shape[2]]));
-
- if (argmax_idx > 0 && (!(n > 0 && argmax_idx == last_index))) {
- score += max_value;
- count += 1;
- str_res.push_back(label_list_[argmax_idx]);
+ predict_batch.resize(out_num);
+
+ output_t->CopyToCpu(predict_batch.data());
+ auto inference_end = std::chrono::steady_clock::now();
+ inference_diff += inference_end - inference_start;
+
+ // ctc decode
+ auto postprocess_start = std::chrono::steady_clock::now();
+ for (int m = 0; m < predict_shape[0]; m++) {
+ std::vector str_res;
+ int argmax_idx;
+ int last_index = 0;
+ float score = 0.f;
+ int count = 0;
+ float max_value = 0.0f;
+
+ for (int n = 0; n < predict_shape[1]; n++) {
+ argmax_idx =
+ int(Utility::argmax(&predict_batch[(m * predict_shape[1] + n) * predict_shape[2]],
+ &predict_batch[(m * predict_shape[1] + n + 1) * predict_shape[2]]));
+ max_value =
+ float(*std::max_element(&predict_batch[(m * predict_shape[1] + n) * predict_shape[2]],
+ &predict_batch[(m * predict_shape[1] + n + 1) * predict_shape[2]]));
+
+ if (argmax_idx > 0 && (!(n > 0 && argmax_idx == last_index))) {
+ score += max_value;
+ count += 1;
+ str_res.push_back(label_list_[argmax_idx]);
+ }
+ last_index = argmax_idx;
+ }
+ score /= count;
+ if (isnan(score))
+ continue;
+ for (int i = 0; i < str_res.size(); i++) {
+ std::cout << str_res[i];
+ }
+ std::cout << "\tscore: " << score << std::endl;
+ }
+ auto postprocess_end = std::chrono::steady_clock::now();
+ postprocess_diff += postprocess_end - postprocess_start;
}
- last_index = argmax_idx;
- }
- auto postprocess_end = std::chrono::steady_clock::now();
- score /= count;
- for (int i = 0; i < str_res.size(); i++) {
- std::cout << str_res[i];
- }
- std::cout << "\tscore: " << score << std::endl;
-
- std::chrono::duration preprocess_diff = preprocess_end - preprocess_start;
- times->push_back(double(preprocess_diff.count() * 1000));
- std::chrono::duration inference_diff = inference_end - inference_start;
- times->push_back(double(inference_diff.count() * 1000));
- std::chrono::duration postprocess_diff = postprocess_end - postprocess_start;
- times->push_back(double(postprocess_diff.count() * 1000));
+ times->push_back(double(preprocess_diff.count() * 1000));
+ times->push_back(double(inference_diff.count() * 1000));
+ times->push_back(double(postprocess_diff.count() * 1000));
}
+
void CRNNRecognizer::LoadModel(const std::string &model_dir) {
// AnalysisConfig config;
paddle_infer::Config config;
diff --git a/deploy/cpp_infer/src/preprocess_op.cpp b/deploy/cpp_infer/src/preprocess_op.cpp
index 23c51c2008dc7280ce4d6c232ed766dbf2a53226..14e8bd1d8425fa6c539c4f3673ea861e24b3b3c8 100644
--- a/deploy/cpp_infer/src/preprocess_op.cpp
+++ b/deploy/cpp_infer/src/preprocess_op.cpp
@@ -40,6 +40,17 @@ void Permute::Run(const cv::Mat *im, float *data) {
}
}
+void PermuteBatch::Run(const std::vector imgs, float *data) {
+ for (int j = 0; j < imgs.size(); j ++){
+ int rh = imgs[j].rows;
+ int rw = imgs[j].cols;
+ int rc = imgs[j].channels();
+ for (int i = 0; i < rc; ++i) {
+ cv::extractChannel(imgs[j], cv::Mat(rh, rw, CV_32FC1, data + (j * rc + i) * rh * rw), i);
+ }
+ }
+}
+
void Normalize::Run(cv::Mat *im, const std::vector &mean,
const std::vector &scale, const bool is_scale) {
double e = 1.0;
@@ -90,16 +101,17 @@ void CrnnResizeImg::Run(const cv::Mat &img, cv::Mat &resize_img, float wh_ratio,
imgC = rec_image_shape[0];
imgH = rec_image_shape[1];
imgW = rec_image_shape[2];
-
+
imgW = int(32 * wh_ratio);
float ratio = float(img.cols) / float(img.rows);
int resize_w, resize_h;
+
if (ceilf(imgH * ratio) > imgW)
resize_w = imgW;
else
resize_w = int(ceilf(imgH * ratio));
-
+
cv::resize(img, resize_img, cv::Size(resize_w, imgH), 0.f, 0.f,
cv::INTER_LINEAR);
cv::copyMakeBorder(resize_img, resize_img, 0, 0, 0,
diff --git a/deploy/cpp_infer/src/utility.cpp b/deploy/cpp_infer/src/utility.cpp
index dba445b747ff3f3c0d2db91061650c369977c4dd..c3c7b8485520579e8e2a23ae03543e3a9fc821bf 100644
--- a/deploy/cpp_infer/src/utility.cpp
+++ b/deploy/cpp_infer/src/utility.cpp
@@ -147,4 +147,17 @@ cv::Mat Utility::GetRotateCropImage(const cv::Mat &srcimage,
}
}
+std::vector Utility::argsort(const std::vector& array)
+{
+ const int array_len(array.size());
+ std::vector array_index(array_len, 0);
+ for (int i = 0; i < array_len; ++i)
+ array_index[i] = i;
+
+ std::sort(array_index.begin(), array_index.end(),
+ [&array](int pos1, int pos2) {return (array[pos1] < array[pos2]); });
+
+ return array_index;
+}
+
} // namespace PaddleOCR
\ No newline at end of file
diff --git a/deploy/cpp_infer/tools/build_opencv.sh b/deploy/cpp_infer/tools/build_opencv.sh
new file mode 100644
index 0000000000000000000000000000000000000000..9f5d556c1101023fd5bef15eab505b673b25e6ee
--- /dev/null
+++ b/deploy/cpp_infer/tools/build_opencv.sh
@@ -0,0 +1,28 @@
+root_path="/paddle/PaddleOCR/deploy/cpp_infer/opencv-3.4.7"
+install_path=${root_path}/opencv3
+build_dir=${root_path}/build
+
+rm -rf ${build_dir}
+mkdir ${build_dir}
+cd ${build_dir}
+
+cmake .. \
+ -DCMAKE_INSTALL_PREFIX=${install_path} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DBUILD_SHARED_LIBS=OFF \
+ -DWITH_IPP=OFF \
+ -DBUILD_IPP_IW=OFF \
+ -DWITH_LAPACK=OFF \
+ -DWITH_EIGEN=OFF \
+ -DCMAKE_INSTALL_LIBDIR=lib64 \
+ -DWITH_ZLIB=ON \
+ -DBUILD_ZLIB=ON \
+ -DWITH_JPEG=ON \
+ -DBUILD_JPEG=ON \
+ -DWITH_PNG=ON \
+ -DBUILD_PNG=ON \
+ -DWITH_TIFF=ON \
+ -DBUILD_TIFF=ON
+
+make -j
+make install
diff --git a/deploy/lite/ocr_db_crnn.cc b/deploy/lite/ocr_db_crnn.cc
index 26891c8566a10d26a23beeee87ec7275088c6961..1ffbbacb74545b0bbea4957e25b6235225bad02b 100644
--- a/deploy/lite/ocr_db_crnn.cc
+++ b/deploy/lite/ocr_db_crnn.cc
@@ -12,12 +12,14 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include "paddle_api.h" // NOLINT
#include
+#include "paddle_api.h" // NOLINT
+#include "paddle_place.h"
#include "cls_process.h"
#include "crnn_process.h"
#include "db_post_process.h"
+#include "AutoLog/auto_log/lite_autolog.h"
using namespace paddle::lite_api; // NOLINT
using namespace std;
@@ -27,7 +29,7 @@ void NeonMeanScale(const float *din, float *dout, int size,
const std::vector mean,
const std::vector scale) {
if (mean.size() != 3 || scale.size() != 3) {
- std::cerr << "[ERROR] mean or scale size must equal to 3\n";
+ std::cerr << "[ERROR] mean or scale size must equal to 3" << std::endl;
exit(1);
}
float32x4_t vmean0 = vdupq_n_f32(mean[0]);
@@ -159,7 +161,8 @@ void RunRecModel(std::vector>> boxes, cv::Mat img,
std::vector &rec_text_score,
std::vector charactor_dict,
std::shared_ptr predictor_cls,
- int use_direction_classify) {
+ int use_direction_classify,
+ std::vector *times) {
std::vector mean = {0.5f, 0.5f, 0.5f};
std::vector scale = {1 / 0.5f, 1 / 0.5f, 1 / 0.5f};
@@ -169,7 +172,10 @@ void RunRecModel(std::vector>> boxes, cv::Mat img,
cv::Mat resize_img;
int index = 0;
+
+ std::vector time_info = {0, 0, 0};
for (int i = boxes.size() - 1; i >= 0; i--) {
+ auto preprocess_start = std::chrono::steady_clock::now();
crop_img = GetRotateCropImage(srcimg, boxes[i]);
if (use_direction_classify >= 1) {
crop_img = RunClsModel(crop_img, predictor_cls);
@@ -188,7 +194,9 @@ void RunRecModel(std::vector>> boxes, cv::Mat img,
auto *data0 = input_tensor0->mutable_data();
NeonMeanScale(dimg, data0, resize_img.rows * resize_img.cols, mean, scale);
+ auto preprocess_end = std::chrono::steady_clock::now();
//// Run CRNN predictor
+ auto inference_start = std::chrono::steady_clock::now();
predictor_crnn->Run();
// Get output and run postprocess
@@ -196,8 +204,10 @@ void RunRecModel(std::vector>> boxes, cv::Mat img,
std::move(predictor_crnn->GetOutput(0)));
auto *predict_batch = output_tensor0->data();
auto predict_shape = output_tensor0->shape();
+ auto inference_end = std::chrono::steady_clock::now();
// ctc decode
+ auto postprocess_start = std::chrono::steady_clock::now();
std::string str_res;
int argmax_idx;
int last_index = 0;
@@ -221,19 +231,33 @@ void RunRecModel(std::vector>> boxes, cv::Mat img,
score /= count;
rec_text.push_back(str_res);
rec_text_score.push_back(score);
+ auto postprocess_end = std::chrono::steady_clock::now();
+
+ std::chrono::duration preprocess_diff = preprocess_end - preprocess_start;
+ time_info[0] += double(preprocess_diff.count() * 1000);
+ std::chrono::duration inference_diff = inference_end - inference_start;
+ time_info[1] += double(inference_diff.count() * 1000);
+ std::chrono::duration postprocess_diff = postprocess_end - postprocess_start;
+ time_info[2] += double(postprocess_diff.count() * 1000);
+
}
+
+times->push_back(time_info[0]);
+times->push_back(time_info[1]);
+times->push_back(time_info[2]);
}
std::vector>>
RunDetModel(std::shared_ptr predictor, cv::Mat img,
- std::map Config) {
+ std::map Config, std::vector *times) {
// Read img
int max_side_len = int(Config["max_side_len"]);
int det_db_use_dilate = int(Config["det_db_use_dilate"]);
cv::Mat srcimg;
img.copyTo(srcimg);
-
+
+ auto preprocess_start = std::chrono::steady_clock::now();
std::vector ratio_hw;
img = DetResizeImg(img, max_side_len, ratio_hw);
cv::Mat img_fp;
@@ -248,8 +272,10 @@ RunDetModel(std::shared_ptr predictor, cv::Mat img,
std::vector scale = {1 / 0.229f, 1 / 0.224f, 1 / 0.225f};
const float *dimg = reinterpret_cast(img_fp.data);
NeonMeanScale(dimg, data0, img_fp.rows * img_fp.cols, mean, scale);
+ auto preprocess_end = std::chrono::steady_clock::now();
// Run predictor
+ auto inference_start = std::chrono::steady_clock::now();
predictor->Run();
// Get output and post process
@@ -257,8 +283,10 @@ RunDetModel(std::shared_ptr predictor, cv::Mat img,
std::move(predictor->GetOutput(0)));
auto *outptr = output_tensor->data();
auto shape_out = output_tensor->shape();
+ auto inference_end = std::chrono::steady_clock::now();
// Save output
+ auto postprocess_start = std::chrono::steady_clock::now();
float pred[shape_out[2] * shape_out[3]];
unsigned char cbuf[shape_out[2] * shape_out[3]];
@@ -287,14 +315,23 @@ RunDetModel(std::shared_ptr predictor, cv::Mat img,
std::vector>> filter_boxes =
FilterTagDetRes(boxes, ratio_hw[0], ratio_hw[1], srcimg);
+ auto postprocess_end = std::chrono::steady_clock::now();
+
+ std::chrono::duration preprocess_diff = preprocess_end - preprocess_start;
+ times->push_back(double(preprocess_diff.count() * 1000));
+ std::chrono::duration inference_diff = inference_end - inference_start;
+ times->push_back(double(inference_diff.count() * 1000));
+ std::chrono::duration postprocess_diff = postprocess_end - postprocess_start;
+ times->push_back(double(postprocess_diff.count() * 1000));
return filter_boxes;
}
-std::shared_ptr loadModel(std::string model_file) {
+std::shared_ptr loadModel(std::string model_file, int num_threads) {
MobileConfig config;
config.set_model_from_file(model_file);
+ config.set_threads(num_threads);
std::shared_ptr predictor =
CreatePaddlePredictor(config);
return predictor;
@@ -354,60 +391,285 @@ std::map LoadConfigTxt(std::string config_path) {
return dict;
}
-int main(int argc, char **argv) {
- if (argc < 5) {
- std::cerr << "[ERROR] usage: " << argv[0]
- << " det_model_file cls_model_file rec_model_file image_path "
- "charactor_dict\n";
+void check_params(int argc, char **argv) {
+ if (argc<=1 || (strcmp(argv[1], "det")!=0 && strcmp(argv[1], "rec")!=0 && strcmp(argv[1], "system")!=0)) {
+ std::cerr << "Please choose one mode of [det, rec, system] !" << std::endl;
exit(1);
}
- std::string det_model_file = argv[1];
- std::string rec_model_file = argv[2];
- std::string cls_model_file = argv[3];
- std::string img_path = argv[4];
- std::string dict_path = argv[5];
+ if (strcmp(argv[1], "det") == 0) {
+ if (argc < 9){
+ std::cerr << "[ERROR] usage:" << argv[0]
+ << " det det_model runtime_device num_threads batchsize img_dir det_config lite_benchmark_value" << std::endl;
+ exit(1);
+ }
+ }
+
+ if (strcmp(argv[1], "rec") == 0) {
+ if (argc < 9){
+ std::cerr << "[ERROR] usage:" << argv[0]
+ << " rec rec_model runtime_device num_threads batchsize img_dir key_txt lite_benchmark_value" << std::endl;
+ exit(1);
+ }
+ }
+
+ if (strcmp(argv[1], "system") == 0) {
+ if (argc < 12){
+ std::cerr << "[ERROR] usage:" << argv[0]
+ << " system det_model rec_model clas_model runtime_device num_threads batchsize img_dir det_config key_txt lite_benchmark_value" << std::endl;
+ exit(1);
+ }
+ }
+}
+
+void system(char **argv){
+ std::string det_model_file = argv[2];
+ std::string rec_model_file = argv[3];
+ std::string cls_model_file = argv[4];
+ std::string runtime_device = argv[5];
+ std::string precision = argv[6];
+ std::string num_threads = argv[7];
+ std::string batchsize = argv[8];
+ std::string img_dir = argv[9];
+ std::string det_config_path = argv[10];
+ std::string dict_path = argv[11];
+
+ if (strcmp(argv[6], "FP32") != 0 && strcmp(argv[6], "INT8") != 0) {
+ std::cerr << "Only support FP32 or INT8." << std::endl;
+ exit(1);
+ }
+
+ std::vector cv_all_img_names;
+ cv::glob(img_dir, cv_all_img_names);
//// load config from txt file
- auto Config = LoadConfigTxt("./config.txt");
+ auto Config = LoadConfigTxt(det_config_path);
int use_direction_classify = int(Config["use_direction_classify"]);
- auto start = std::chrono::system_clock::now();
+ auto charactor_dict = ReadDict(dict_path);
+ charactor_dict.insert(charactor_dict.begin(), "#"); // blank char for ctc
+ charactor_dict.push_back(" ");
+
+ auto det_predictor = loadModel(det_model_file, std::stoi(num_threads));
+ auto rec_predictor = loadModel(rec_model_file, std::stoi(num_threads));
+ auto cls_predictor = loadModel(cls_model_file, std::stoi(num_threads));
+
+ std::vector det_time_info = {0, 0, 0};
+ std::vector rec_time_info = {0, 0, 0};
- auto det_predictor = loadModel(det_model_file);
- auto rec_predictor = loadModel(rec_model_file);
- auto cls_predictor = loadModel(cls_model_file);
+ for (int i = 0; i < cv_all_img_names.size(); ++i) {
+ std::cout << "The predict img: " << cv_all_img_names[i] << std::endl;
+ cv::Mat srcimg = cv::imread(cv_all_img_names[i], cv::IMREAD_COLOR);
+
+ if (!srcimg.data) {
+ std::cerr << "[ERROR] image read failed! image path: " << cv_all_img_names[i] << std::endl;
+ exit(1);
+ }
+
+ std::vector det_times;
+ auto boxes = RunDetModel(det_predictor, srcimg, Config, &det_times);
+
+ std::vector rec_text;
+ std::vector rec_text_score;
+
+ std::vector rec_times;
+ RunRecModel(boxes, srcimg, rec_predictor, rec_text, rec_text_score,
+ charactor_dict, cls_predictor, use_direction_classify, &rec_times);
+
+ //// visualization
+ auto img_vis = Visualization(srcimg, boxes);
+
+ //// print recognized text
+ for (int i = 0; i < rec_text.size(); i++) {
+ std::cout << i << "\t" << rec_text[i] << "\t" << rec_text_score[i]
+ << std::endl;
+
+ }
+
+ det_time_info[0] += det_times[0];
+ det_time_info[1] += det_times[1];
+ det_time_info[2] += det_times[2];
+ rec_time_info[0] += rec_times[0];
+ rec_time_info[1] += rec_times[1];
+ rec_time_info[2] += rec_times[2];
+ }
+ if (strcmp(argv[12], "True") == 0) {
+ AutoLogger autolog_det(det_model_file,
+ runtime_device,
+ std::stoi(num_threads),
+ std::stoi(batchsize),
+ "dynamic",
+ precision,
+ det_time_info,
+ cv_all_img_names.size());
+ AutoLogger autolog_rec(rec_model_file,
+ runtime_device,
+ std::stoi(num_threads),
+ std::stoi(batchsize),
+ "dynamic",
+ precision,
+ rec_time_info,
+ cv_all_img_names.size());
+
+ autolog_det.report();
+ std::cout << std::endl;
+ autolog_rec.report();
+ }
+}
+
+void det(int argc, char **argv) {
+ std::string det_model_file = argv[2];
+ std::string runtime_device = argv[3];
+ std::string precision = argv[4];
+ std::string num_threads = argv[5];
+ std::string batchsize = argv[6];
+ std::string img_dir = argv[7];
+ std::string det_config_path = argv[8];
+
+ if (strcmp(argv[4], "FP32") != 0 && strcmp(argv[4], "INT8") != 0) {
+ std::cerr << "Only support FP32 or INT8." << std::endl;
+ exit(1);
+ }
+
+ std::vector cv_all_img_names;
+ cv::glob(img_dir, cv_all_img_names);
+
+ //// load config from txt file
+ auto Config = LoadConfigTxt(det_config_path);
+
+ auto det_predictor = loadModel(det_model_file, std::stoi(num_threads));
+
+ std::vector time_info = {0, 0, 0};
+ for (int i = 0; i < cv_all_img_names.size(); ++i) {
+ std::cout << "The predict img: " << cv_all_img_names[i] << std::endl;
+ cv::Mat srcimg = cv::imread(cv_all_img_names[i], cv::IMREAD_COLOR);
+
+ if (!srcimg.data) {
+ std::cerr << "[ERROR] image read failed! image path: " << cv_all_img_names[i] << std::endl;
+ exit(1);
+ }
+
+ std::vector times;
+ auto boxes = RunDetModel(det_predictor, srcimg, Config, ×);
+
+ //// visualization
+ auto img_vis = Visualization(srcimg, boxes);
+ std::cout << boxes.size() << " bboxes have detected:" << std::endl;
+
+ for (int i=0; i cv_all_img_names;
+ cv::glob(img_dir, cv_all_img_names);
auto charactor_dict = ReadDict(dict_path);
charactor_dict.insert(charactor_dict.begin(), "#"); // blank char for ctc
charactor_dict.push_back(" ");
- cv::Mat srcimg = cv::imread(img_path, cv::IMREAD_COLOR);
- auto boxes = RunDetModel(det_predictor, srcimg, Config);
+ auto rec_predictor = loadModel(rec_model_file, std::stoi(num_threads));
- std::vector rec_text;
- std::vector rec_text_score;
+ std::shared_ptr cls_predictor;
- RunRecModel(boxes, srcimg, rec_predictor, rec_text, rec_text_score,
- charactor_dict, cls_predictor, use_direction_classify);
+ std::vector time_info = {0, 0, 0};
+ for (int i = 0; i < cv_all_img_names.size(); ++i) {
+ std::cout << "The predict img: " << cv_all_img_names[i] << std::endl;
+ cv::Mat srcimg = cv::imread(cv_all_img_names[i], cv::IMREAD_COLOR);
- auto end = std::chrono::system_clock::now();
- auto duration =
- std::chrono::duration_cast(end - start);
+ if (!srcimg.data) {
+ std::cerr << "[ERROR] image read failed! image path: " << cv_all_img_names[i] << std::endl;
+ exit(1);
+ }
- //// visualization
- auto img_vis = Visualization(srcimg, boxes);
+ int width = srcimg.cols;
+ int height = srcimg.rows;
+ std::vector upper_left = {0, 0};
+ std::vector upper_right = {width, 0};
+ std::vector lower_right = {width, height};
+ std::vector lower_left = {0, height};
+ std::vector> box = {upper_left, upper_right, lower_right, lower_left};
+ std::vector>> boxes = {box};
+
+ std::vector rec_text;
+ std::vector rec_text_score;
+ std::vector times;
+ RunRecModel(boxes, srcimg, rec_predictor, rec_text, rec_text_score,
+ charactor_dict, cls_predictor, 0, ×);
+
+ //// print recognized text
+ for (int i = 0; i < rec_text.size(); i++) {
+ std::cout << i << "\t" << rec_text[i] << "\t" << rec_text_score[i]
+ << std::endl;
+ }
+ time_info[0] += times[0];
+ time_info[1] += times[1];
+ time_info[2] += times[2];
+ }
+ // TODO: support autolog
+ if (strcmp(argv[9], "True") == 0) {
+ AutoLogger autolog(rec_model_file,
+ runtime_device,
+ std::stoi(num_threads),
+ std::stoi(batchsize),
+ "dynamic",
+ precision,
+ time_info,
+ cv_all_img_names.size());
+ autolog.report();
+ }
+}
+
+int main(int argc, char **argv) {
+ check_params(argc, argv);
+ std::cout << "mode: " << argv[1] << endl;
- //// print recognized text
- for (int i = 0; i < rec_text.size(); i++) {
- std::cout << i << "\t" << rec_text[i] << "\t" << rec_text_score[i]
- << std::endl;
+ if (strcmp(argv[1], "system") == 0) {
+ system(argv);
}
- std::cout << "花费了"
- << double(duration.count()) *
- std::chrono::microseconds::period::num /
- std::chrono::microseconds::period::den
- << "秒" << std::endl;
+ if (strcmp(argv[1], "det") == 0) {
+ det(argc, argv);
+ }
+
+ if (strcmp(argv[1], "rec") == 0) {
+ rec(argc, argv);
+ }
return 0;
-}
\ No newline at end of file
+}
diff --git a/deploy/paddle2onnx/readme.md b/deploy/paddle2onnx/readme.md
new file mode 100644
index 0000000000000000000000000000000000000000..782cffce9e5611b38da5bc002670a8282c08cc19
--- /dev/null
+++ b/deploy/paddle2onnx/readme.md
@@ -0,0 +1,76 @@
+# paddle2onnx 模型转化与预测
+
+本章节介绍 PaddleOCR 模型如何转化为 ONNX 模型,并基于 ONNX 引擎预测。
+
+## 1. 环境准备
+
+需要准备 Paddle2ONNX 模型转化环境,和 ONNX 模型预测环境
+
+### Paddle2ONNX
+
+Paddle2ONNX 支持将 PaddlePaddle 模型格式转化到 ONNX 模型格式,算子目前稳定支持导出 ONNX Opset 9~11,部分Paddle算子支持更低的ONNX Opset转换。
+更多细节可参考 [Paddle2ONNX](https://github.com/PaddlePaddle/Paddle2ONNX/blob/develop/README_zh.md)
+
+- 安装 Paddle2ONNX
+```
+python3.7 -m pip install paddle2onnx
+```
+
+- 安装 ONNX
+```
+# 建议安装 1.4.0 版本,可根据环境更换版本号
+python3.7 -m pip install onnxruntime==1.4.0
+```
+
+## 2. 模型转换
+
+
+- Paddle 模型下载
+
+有两种方式获取Paddle静态图模型:在 [model_list](../../doc/doc_ch/models_list.md) 中下载PaddleOCR提供的预测模型;
+参考[模型导出说明](../../doc/doc_ch/inference.md#训练模型转inference模型)把训练好的权重转为 inference_model。
+
+以 ppocr 检测模型为例:
+
+```
+wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar
+cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && cd ..
+```
+
+- 模型转换
+
+使用 Paddle2ONNX 将Paddle静态图模型转换为ONNX模型格式:
+
+```
+paddle2onnx --model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ \
+--model_filename=inference.pdmodel \
+--params_filename=inference.pdiparams \
+--save_file=./inference/det_mobile_onnx/model.onnx \
+--opset_version=10 \
+--enable_onnx_checker=True
+```
+
+执行完毕后,ONNX 模型会被保存在 `./inference/det_mobile_onnx/` 路径下
+
+* 注意:以下几个模型暂不支持转换为 ONNX 模型:
+NRTR、SAR、RARE、SRN
+
+## 3. onnx 预测
+
+以检测模型为例,使用 ONNX 预测可执行如下命令:
+
+```
+python3.7 ../../tools/infer/predict_det.py --use_gpu=False --use_onnx=True \
+--det_model_dir=./inference/det_mobile_onnx/model.onnx \
+--image_dir=../../doc/imgs/1.jpg
+```
+
+执行命令后在终端会打印出预测的检测框坐标,并在 `./inference_results/` 下保存可视化结果。
+
+```
+root INFO: 1.jpg [[[291, 295], [334, 292], [348, 844], [305, 847]], [[344, 296], [379, 294], [387, 669], [353, 671]]]
+The predict time of ../../doc/imgs/1.jpg: 0.06162881851196289
+The visualized image saved in ./inference_results/det_res_1.jpg
+```
+
+* 注意:ONNX暂时不支持变长预测,需要将输入resize到固定输入,预测结果可能与直接使用Paddle预测有细微不同。
diff --git a/deploy/pdserving/README.md b/deploy/pdserving/README.md
index de7965bac752f6bc9cd1de224b791b0a84f0e699..cb2845c581d244e80ca597e0eb485a16ad369f20 100644
--- a/deploy/pdserving/README.md
+++ b/deploy/pdserving/README.md
@@ -114,7 +114,7 @@ The recognition model is the same.
git clone https://github.com/PaddlePaddle/PaddleOCR
# Enter the working directory
- cd PaddleOCR/deploy/pdserver/
+ cd PaddleOCR/deploy/pdserving/
```
The pdserver directory contains the code to start the pipeline service and send prediction requests, including:
diff --git a/deploy/pdserving/README_CN.md b/deploy/pdserving/README_CN.md
index 5106fd9b2d03e6169cf0c723b241cb1385a22906..067be8bbda10d971b709afdf822aea96a979d000 100644
--- a/deploy/pdserving/README_CN.md
+++ b/deploy/pdserving/README_CN.md
@@ -112,7 +112,7 @@ python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_mobile_v2.0_rec_in
git clone https://github.com/PaddlePaddle/PaddleOCR
# 进入到工作目录
- cd PaddleOCR/deploy/pdserver/
+ cd PaddleOCR/deploy/pdserving/
```
pdserver目录包含启动pipeline服务和发送预测请求的代码,包括:
```
@@ -206,7 +206,7 @@ pip3 install paddle-serving-app==0.3.1
1. 启动服务端程序
```
-cd win
+cd win
python3 ocr_web_server.py gpu(使用gpu方式)
或者
python3 ocr_web_server.py cpu(使用cpu方式)
diff --git a/deploy/pdserving/ocr_cpp_client.py b/deploy/pdserving/ocr_cpp_client.py
new file mode 100755
index 0000000000000000000000000000000000000000..2baa7565ac78b9551c788c7b36457bce38828eb5
--- /dev/null
+++ b/deploy/pdserving/ocr_cpp_client.py
@@ -0,0 +1,56 @@
+# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# pylint: disable=doc-string-missing
+
+from paddle_serving_client import Client
+import sys
+import numpy as np
+import base64
+import os
+import cv2
+from paddle_serving_app.reader import Sequential, URL2Image, ResizeByFactor
+from paddle_serving_app.reader import Div, Normalize, Transpose
+from ocr_reader import OCRReader
+
+client = Client()
+# TODO:load_client need to load more than one client model.
+# this need to figure out some details.
+client.load_client_config(sys.argv[1:])
+client.connect(["127.0.0.1:9293"])
+
+import paddle
+test_img_dir = "test_img/"
+
+ocr_reader = OCRReader(char_dict_path="../../ppocr/utils/ppocr_keys_v1.txt")
+
+
+def cv2_to_base64(image):
+ return base64.b64encode(image).decode(
+ 'utf8') #data.tostring()).decode('utf8')
+
+
+for img_file in os.listdir(test_img_dir):
+ with open(os.path.join(test_img_dir, img_file), 'rb') as file:
+ image_data = file.read()
+ image = cv2_to_base64(image_data)
+ res_list = []
+ #print(image)
+ fetch_map = client.predict(
+ feed={"x": image}, fetch=["save_infer_model/scale_0.tmp_1"], batch=True)
+ print("fetrch map:", fetch_map)
+ one_batch_res = ocr_reader.postprocess(fetch_map, with_score=True)
+ for res in one_batch_res:
+ res_list.append(res[0])
+ res = {"res": str(res_list)}
+ print(res)
diff --git a/deploy/pdserving/pipeline_http_client.py b/deploy/pdserving/pipeline_http_client.py
index 0befe2f6144d18e24fb3f72ed1d919fd8cd7d5a4..61d13178220118eaf53c51723a9ef65201373ffb 100644
--- a/deploy/pdserving/pipeline_http_client.py
+++ b/deploy/pdserving/pipeline_http_client.py
@@ -18,13 +18,19 @@ import json
import base64
import os
+import argparse
+parser = argparse.ArgumentParser(description="args for paddleserving")
+parser.add_argument("--image_dir", type=str, default="../../doc/imgs/")
+args = parser.parse_args()
+
def cv2_to_base64(image):
return base64.b64encode(image).decode('utf8')
url = "http://127.0.0.1:9998/ocr/prediction"
-test_img_dir = "../../doc/imgs/"
+test_img_dir = args.image_dir
+
for idx, img_file in enumerate(os.listdir(test_img_dir)):
with open(os.path.join(test_img_dir, img_file), 'rb') as file:
image_data1 = file.read()
@@ -36,5 +42,4 @@ for idx, img_file in enumerate(os.listdir(test_img_dir)):
r = requests.post(url=url, data=json.dumps(data))
print(r.json())
-test_img_dir = "../../doc/imgs/"
print("==> total number of test imgs: ", len(os.listdir(test_img_dir)))
diff --git a/deploy/pdserving/pipeline_rpc_client.py b/deploy/pdserving/pipeline_rpc_client.py
index 79f898faf37f946cdbf4a87d4d62c8b1f9d5c93b..3d2a90f443f76ba142bbae05e00ea76b083335ba 100644
--- a/deploy/pdserving/pipeline_rpc_client.py
+++ b/deploy/pdserving/pipeline_rpc_client.py
@@ -30,12 +30,17 @@ def cv2_to_base64(image):
return base64.b64encode(image).decode('utf8')
-test_img_dir = "imgs/"
+import argparse
+parser = argparse.ArgumentParser(description="args for paddleserving")
+parser.add_argument("--image_dir", type=str, default="../../doc/imgs/")
+args = parser.parse_args()
+test_img_dir = args.image_dir
+
for img_file in os.listdir(test_img_dir):
with open(os.path.join(test_img_dir, img_file), 'rb') as file:
image_data = file.read()
image = cv2_to_base64(image_data)
-for i in range(1):
- ret = client.predict(feed_dict={"image": image}, fetch=["res"])
- print(ret)
+ for i in range(1):
+ ret = client.predict(feed_dict={"image": image}, fetch=["res"])
+ print(ret)
diff --git a/deploy/slim/prune/export_prune_model.py b/deploy/slim/prune/export_prune_model.py
index 29f7d211df7b2ad02bf2229f0be81c3cbe005503..2c9d0a1831c3c0de321668dfdde55aecb825ab06 100644
--- a/deploy/slim/prune/export_prune_model.py
+++ b/deploy/slim/prune/export_prune_model.py
@@ -30,7 +30,7 @@ from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
from ppocr.metrics import build_metric
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
import tools.program as program
@@ -89,7 +89,7 @@ def main(config, device, logger, vdl_writer):
logger.info(f"FLOPs after pruning: {flops}")
# load pretrain model
- pre_best_model_dict = init_model(config, model, logger, None)
+ load_model(config, model)
metric = program.eval(model, valid_dataloader, post_process_class,
eval_class)
logger.info(f"metric['hmean']: {metric['hmean']}")
diff --git a/deploy/slim/prune/sensitivity_anal.py b/deploy/slim/prune/sensitivity_anal.py
index 0f0492af2f57eea9b9c1d13ec5ee1dad9fc2f1bc..c5d008779eaafef36f4264b45295ec7bc78e3d27 100644
--- a/deploy/slim/prune/sensitivity_anal.py
+++ b/deploy/slim/prune/sensitivity_anal.py
@@ -32,7 +32,7 @@ from ppocr.losses import build_loss
from ppocr.optimizer import build_optimizer
from ppocr.postprocess import build_post_process
from ppocr.metrics import build_metric
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
import tools.program as program
dist.get_world_size()
@@ -94,7 +94,7 @@ def main(config, device, logger, vdl_writer):
# build metric
eval_class = build_metric(config['Metric'])
# load pretrain model
- pre_best_model_dict = init_model(config, model, logger, optimizer)
+ pre_best_model_dict = load_model(config, model, optimizer)
logger.info('train dataloader has {} iters, valid dataloader has {} iters'.
format(len(train_dataloader), len(valid_dataloader)))
diff --git a/deploy/slim/quantization/export_model.py b/deploy/slim/quantization/export_model.py
index d94e53034a2bf67b364e6d91f83acfb9e5445b8a..dddae923de223178665e3bfb55a2e7a8c0d5ba17 100755
--- a/deploy/slim/quantization/export_model.py
+++ b/deploy/slim/quantization/export_model.py
@@ -28,7 +28,7 @@ from paddle.jit import to_static
from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
from ppocr.utils.logging import get_logger
from tools.program import load_config, merge_config, ArgsParser
from ppocr.metrics import build_metric
@@ -101,7 +101,7 @@ def main():
quanter = QAT(config=quant_config)
quanter.quantize(model)
- init_model(config, model)
+ load_model(config, model)
model.eval()
# build metric
diff --git a/deploy/slim/quantization/quant.py b/deploy/slim/quantization/quant.py
index 37aab68a0e88afce54e10fb6248c73684b58d808..941cfb36b291dcd1dbedbf51de5edd2cf0017167 100755
--- a/deploy/slim/quantization/quant.py
+++ b/deploy/slim/quantization/quant.py
@@ -37,7 +37,7 @@ from ppocr.losses import build_loss
from ppocr.optimizer import build_optimizer
from ppocr.postprocess import build_post_process
from ppocr.metrics import build_metric
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
import tools.program as program
from paddleslim.dygraph.quant import QAT
@@ -137,7 +137,7 @@ def main(config, device, logger, vdl_writer):
# build metric
eval_class = build_metric(config['Metric'])
# load pretrain model
- pre_best_model_dict = init_model(config, model, logger, optimizer)
+ pre_best_model_dict = load_model(config, model, optimizer)
logger.info('train dataloader has {} iters, valid dataloader has {} iters'.
format(len(train_dataloader), len(valid_dataloader)))
diff --git a/deploy/slim/quantization/quant_kl.py b/deploy/slim/quantization/quant_kl.py
index d866784ae6a3c087215320ec95bd39fdd1e89418..cc3a455b971937fbb2e401b87112475341bd41f3 100755
--- a/deploy/slim/quantization/quant_kl.py
+++ b/deploy/slim/quantization/quant_kl.py
@@ -37,7 +37,7 @@ from ppocr.losses import build_loss
from ppocr.optimizer import build_optimizer
from ppocr.postprocess import build_post_process
from ppocr.metrics import build_metric
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
import tools.program as program
import paddleslim
from paddleslim.dygraph.quant import QAT
diff --git a/doc/banner.png b/doc/banner.png
new file mode 100644
index 0000000000000000000000000000000000000000..d72b997a803a6f6fa8919cd3d4bb08afdec58a9b
Binary files /dev/null and b/doc/banner.png differ
diff --git a/doc/doc_ch/algorithm_overview.md b/doc/doc_ch/algorithm_overview.md
index af883de86c798babe6ca1616710c0e13546e1045..f0c16618c0dd0b0f0bcc6a06d6b142a59d58e725 100755
--- a/doc/doc_ch/algorithm_overview.md
+++ b/doc/doc_ch/algorithm_overview.md
@@ -1,71 +1,87 @@
-
-## 算法介绍
+# 两阶段算法
+
+- [两阶段算法](#-----)
+ * [1. 算法介绍](#1)
+ + [1.1 文本检测算法](#11)
+ + [1.2 文本识别算法](#12)
+ * [2. 模型训练](#2)
+ * [3. 模型推理](#3)
+
+
+
+## 1. 算法介绍
本文给出了PaddleOCR已支持的文本检测算法和文本识别算法列表,以及每个算法在**英文公开数据集**上的模型和指标,主要用于算法简介和算法性能对比,更多包括中文在内的其他数据集上的模型请参考[PP-OCR v2.0 系列模型下载](./models_list.md)。
-- [1.文本检测算法](#文本检测算法)
-- [2.文本识别算法](#文本识别算法)
+
-
-### 1.文本检测算法
+### 1.1 文本检测算法
PaddleOCR开源的文本检测算法列表:
-- [x] DB([paper]( https://arxiv.org/abs/1911.08947))(ppocr推荐)
-- [x] EAST([paper](https://arxiv.org/abs/1704.03155))
-- [x] SAST([paper](https://arxiv.org/abs/1908.05498))
+- [x] DB([paper]( https://arxiv.org/abs/1911.08947)) [2](ppocr推荐)
+- [x] EAST([paper](https://arxiv.org/abs/1704.03155))[1]
+- [x] SAST([paper](https://arxiv.org/abs/1908.05498))[4]
- [x] PSENet([paper](https://arxiv.org/abs/1903.12473v2))
在ICDAR2015文本检测公开数据集上,算法效果如下:
-
|模型|骨干网络|precision|recall|Hmean|下载链接|
| --- | --- | --- | --- | --- | --- |
-|EAST|ResNet50_vd|85.80%|86.71%|86.25%|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_east_v2.0_train.tar)|
-|EAST|MobileNetV3|79.42%|80.64%|80.03%|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_east_v2.0_train.tar)|
-|DB|ResNet50_vd|86.41%|78.72%|82.38%|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_db_v2.0_train.tar)|
-|DB|MobileNetV3|77.29%|73.08%|75.12%|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar)|
-|SAST|ResNet50_vd|91.39%|83.77%|87.42%|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_icdar15_v2.0_train.tar)|
-|PSE|ResNet50_vd|85.81%|79.53%|82.55%|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.1/en_det/det_r50_vd_pse_v2.0_train.tar)|
-|PSE|MobileNetV3|82.20%|70.48%|75.89%|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.1/en_det/det_mv3_pse_v2.0_train.tar)|
+|EAST|ResNet50_vd|85.80%|86.71%|86.25%|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_east_v2.0_train.tar)|
+|EAST|MobileNetV3|79.42%|80.64%|80.03%|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_east_v2.0_train.tar)|
+|DB|ResNet50_vd|86.41%|78.72%|82.38%|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_db_v2.0_train.tar)|
+|DB|MobileNetV3|77.29%|73.08%|75.12%|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar)|
+|SAST|ResNet50_vd|91.39%|83.77%|87.42%|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_icdar15_v2.0_train.tar)|
+|PSE|ResNet50_vd|85.81%|79.53%|82.55%|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.1/en_det/det_r50_vd_pse_v2.0_train.tar)|
+|PSE|MobileNetV3|82.20%|70.48%|75.89%|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.1/en_det/det_mv3_pse_v2.0_train.tar)|
在Total-text文本检测公开数据集上,算法效果如下:
|模型|骨干网络|precision|recall|Hmean|下载链接|
| --- | --- | --- | --- | --- | --- |
-|SAST|ResNet50_vd|89.63%|78.44%|83.66%|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_totaltext_v2.0_train.tar)|
+|SAST|ResNet50_vd|89.63%|78.44%|83.66%|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_totaltext_v2.0_train.tar)|
**说明:** SAST模型训练额外加入了icdar2013、icdar2017、COCO-Text、ArT等公开数据集进行调优。PaddleOCR用到的经过整理格式的英文公开数据集下载:
* [百度云地址](https://pan.baidu.com/s/12cPnZcVuV1zn5DOd4mqjVw) (提取码: 2bpi)
* [Google Drive下载地址](https://drive.google.com/drive/folders/1ll2-XEVyCQLpJjawLDiRlvo_i4BqHCJe?usp=sharing)
-PaddleOCR文本检测算法的训练和使用请参考文档教程中[模型训练/评估中的文本检测部分](./detection.md)。
-
+
-
-### 2.文本识别算法
+### 1.2 文本识别算法
PaddleOCR基于动态图开源的文本识别算法列表:
-- [x] CRNN([paper](https://arxiv.org/abs/1507.05717))(ppocr推荐)
-- [x] Rosetta([paper](https://arxiv.org/abs/1910.05085))
-- [x] STAR-Net([paper](http://www.bmva.org/bmvc/2016/papers/paper043/index.html))
-- [x] RARE([paper](https://arxiv.org/abs/1603.03915v1))
-- [x] SRN([paper](https://arxiv.org/abs/2003.12294))
-- [x] NRTR([paper](https://arxiv.org/abs/1806.00926v2))
+- [x] CRNN([paper](https://arxiv.org/abs/1507.05717))[7](ppocr推荐)
+- [x] Rosetta([paper](https://arxiv.org/abs/1910.05085))[10]
+- [x] STAR-Net([paper](http://www.bmva.org/bmvc/2016/papers/paper043/index.html))[11]
+- [x] RARE([paper](https://arxiv.org/abs/1603.03915v1))[12]
+- [x] SRN([paper](https://arxiv.org/abs/2003.12294))[5]
+- [x] NRTR([paper](https://arxiv.org/abs/1806.00926v2))[13]
- [x] SAR([paper](https://arxiv.org/abs/1811.00751v2))
-- [x] SEED([paper](https://arxiv.org/pdf/2005.10977.pdf))
+- [x] SEED([paper](https://arxiv.org/pdf/2005.10977.pdf))
-参考[DTRB](https://arxiv.org/abs/1904.01906) 文字识别训练和评估流程,使用MJSynth和SynthText两个文字识别数据集训练,在IIIT, SVT, IC03, IC13, IC15, SVTP, CUTE数据集上进行评估,算法效果如下:
+参考[DTRB][3](https://arxiv.org/abs/1904.01906)文字识别训练和评估流程,使用MJSynth和SynthText两个文字识别数据集训练,在IIIT, SVT, IC03, IC13, IC15, SVTP, CUTE数据集上进行评估,算法效果如下:
|模型|骨干网络|Avg Accuracy|模型存储命名|下载链接|
|---|---|---|---|---|
-|Rosetta|Resnet34_vd|80.9%|rec_r34_vd_none_none_ctc|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_none_none_ctc_v2.0_train.tar)|
-|Rosetta|MobileNetV3|78.05%|rec_mv3_none_none_ctc|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_none_ctc_v2.0_train.tar)|
-|CRNN|Resnet34_vd|82.76%|rec_r34_vd_none_bilstm_ctc|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_none_bilstm_ctc_v2.0_train.tar)|
-|CRNN|MobileNetV3|79.97%|rec_mv3_none_bilstm_ctc|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_bilstm_ctc_v2.0_train.tar)|
-|StarNet|Resnet34_vd|84.44%|rec_r34_vd_tps_bilstm_ctc|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_tps_bilstm_ctc_v2.0_train.tar)|
-|StarNet|MobileNetV3|81.42%|rec_mv3_tps_bilstm_ctc|[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_tps_bilstm_ctc_v2.0_train.tar)|
-|RARE|MobileNetV3|82.5%|rec_mv3_tps_bilstm_att |[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_tps_bilstm_att_v2.0_train.tar)|
-|RARE|Resnet34_vd|83.6%|rec_r34_vd_tps_bilstm_att |[下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_tps_bilstm_att_v2.0_train.tar)|
-|SRN|Resnet50_vd_fpn| 88.52% | rec_r50fpn_vd_none_srn | [下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r50_vd_srn_train.tar) |
-|NRTR|NRTR_MTB| 84.3% | rec_mtb_nrtr | [下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mtb_nrtr_train.tar) |
-|SAR|Resnet31| 87.2% | rec_r31_sar | [下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.1/rec/rec_r31_sar_train.tar) |
-|SEED| Aster_Resnet | 85.2% | rec_resnet_stn_bilstm_att | [下载链接](https://paddleocr.bj.bcebos.com/dygraph_v2.1/rec/rec_resnet_stn_bilstm_att.tar)|
-PaddleOCR文本识别算法的训练和使用请参考文档教程中[模型训练/评估中的文本识别部分](./recognition.md)。
+|Rosetta|Resnet34_vd|80.9%|rec_r34_vd_none_none_ctc|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_none_none_ctc_v2.0_train.tar)|
+|Rosetta|MobileNetV3|78.05%|rec_mv3_none_none_ctc|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_none_ctc_v2.0_train.tar)|
+|CRNN|Resnet34_vd|82.76%|rec_r34_vd_none_bilstm_ctc|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_none_bilstm_ctc_v2.0_train.tar)|
+|CRNN|MobileNetV3|79.97%|rec_mv3_none_bilstm_ctc|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_bilstm_ctc_v2.0_train.tar)|
+|StarNet|Resnet34_vd|84.44%|rec_r34_vd_tps_bilstm_ctc|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_tps_bilstm_ctc_v2.0_train.tar)|
+|StarNet|MobileNetV3|81.42%|rec_mv3_tps_bilstm_ctc|[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_tps_bilstm_ctc_v2.0_train.tar)|
+|RARE|MobileNetV3|82.5%|rec_mv3_tps_bilstm_att |[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_tps_bilstm_att_v2.0_train.tar)|
+|RARE|Resnet34_vd|83.6%|rec_r34_vd_tps_bilstm_att |[训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_tps_bilstm_att_v2.0_train.tar)|
+|SRN|Resnet50_vd_fpn| 88.52% | rec_r50fpn_vd_none_srn | [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r50_vd_srn_train.tar) |
+|NRTR|NRTR_MTB| 84.3% | rec_mtb_nrtr | [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mtb_nrtr_train.tar) |
+|SAR|Resnet31| 87.2% | rec_r31_sar | [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.1/rec/rec_r31_sar_train.tar) |
+|SEED|Aster_Resnet| 85.2% | rec_resnet_stn_bilstm_att | [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.1/rec/rec_resnet_stn_bilstm_att.tar) |
+
+
+
+## 2. 模型训练
+
+PaddleOCR文本检测算法的训练和使用请参考文档教程中[模型训练/评估中的文本检测部分](./detection.md)。文本识别算法的训练和使用请参考文档教程中[模型训练/评估中的文本识别部分](./recognition.md)。
+
+
+
+## 3. 模型推理
+
+上述模型中除PP-OCR系列模型以外,其余模型仅支持基于Python引擎的推理,具体内容可参考[基于Python预测引擎推理](./inference.md)
diff --git a/doc/doc_ch/angle_class.md b/doc/doc_ch/angle_class.md
index 8142d7dcca62511811603303d6a4bfe2e914269b..723d0d2ce5a8c25699c085c32004aa827b188fd9 100644
--- a/doc/doc_ch/angle_class.md
+++ b/doc/doc_ch/angle_class.md
@@ -11,7 +11,7 @@
## 1. 方法介绍
文本方向分类器主要用于图片非0度的场景下,在这种场景下需要对图片里检测到的文本行进行一个转正的操作。在PaddleOCR系统内,
文字检测之后得到的文本行图片经过仿射变换之后送入识别模型,此时只需要对文字进行一个0和180度的角度分类,因此PaddleOCR内置的
-文字角度分类器**只支持了0和180度的分类**。如果想支持更多角度,可以自己修改算法进行支持。
+文本方向分类器**只支持了0和180度的分类**。如果想支持更多角度,可以自己修改算法进行支持。
0和180度数据样本例子:
@@ -72,8 +72,6 @@ train/cls/train/word_002.jpg 180
## 3. 启动训练
-### 启动训练
-
将准备好的txt文件和图片文件夹路径分别写入配置文件的 `Train/Eval.dataset.label_file_list` 和 `Train/Eval.dataset.data_dir` 字段下,`Train/Eval.dataset.data_dir`字段下的路径和文件里记载的图片名构成了图片的绝对路径。
PaddleOCR提供了训练脚本、评估脚本和预测脚本。
diff --git a/doc/doc_ch/config.md b/doc/doc_ch/config.md
index 600d5bdb120444ec89222360af02adb3f96a8640..40c63905c3f03070a9dcbf0176ada31378b14fee 100644
--- a/doc/doc_ch/config.md
+++ b/doc/doc_ch/config.md
@@ -36,11 +36,10 @@
| pretrained_model | 设置加载预训练模型路径 | ./pretrain_models/CRNN/best_accuracy | \ |
| checkpoints | 加载模型参数路径 | None | 用于中断后加载参数继续训练 |
| use_visualdl | 设置是否启用visualdl进行可视化log展示 | False | [教程地址](https://www.paddlepaddle.org.cn/paddle/visualdl) |
-| infer_img | 设置预测图像路径或文件夹路径 | ./infer_img | \|
-| character_dict_path | 设置字典路径 | ./ppocr/utils/ppocr_keys_v1.txt | \ |
+| infer_img | 设置预测图像路径或文件夹路径 | ./infer_img | \||
+| character_dict_path | 设置字典路径 | ./ppocr/utils/ppocr_keys_v1.txt | 如果为空,则默认使用小写字母+数字作为字典 |
| max_text_length | 设置文本最大长度 | 25 | \ |
-| character_type | 设置字符类型 | ch | en/ch, en时将使用默认dict,ch时使用自定义dict|
-| use_space_char | 设置是否识别空格 | True | 仅在 character_type=ch 时支持空格 |
+| use_space_char | 设置是否识别空格 | True | \| |
| label_list | 设置方向分类器支持的角度 | ['0','180'] | 仅在方向分类器中生效 |
| save_res_path | 设置检测模型的结果保存地址 | ./output/det_db/predicts_db.txt | 仅在检测模型中生效 |
@@ -191,7 +190,6 @@ PaddleOCR目前已支持80种(除中文外)语种识别,`configs/rec/multi
use_gpu: True
epoch_num: 500
...
- character_type: it # 需要识别的语种
character_dict_path: {path/of/dict} # 字典文件所在路径
Train:
@@ -212,17 +210,17 @@ PaddleOCR目前已支持80种(除中文外)语种识别,`configs/rec/multi
目前PaddleOCR支持的多语言算法有:
-| 配置文件 | 算法名称 | backbone | trans | seq | pred | language | character_type |
-| :--------: | :-------: | :-------: | :-------: | :-----: | :-----: | :-----: | :-----: |
-| rec_chinese_cht_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 中文繁体 | chinese_cht|
-| rec_en_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 英语(区分大小写) | EN |
-| rec_french_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 法语 | french |
-| rec_ger_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 德语 | german |
-| rec_japan_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 日语 | japan |
-| rec_korean_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 韩语 | korean |
-| rec_latin_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 拉丁字母 | latin |
-| rec_arabic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 阿拉伯字母 | ar |
-| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 斯拉夫字母 | cyrillic |
-| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 梵文字母 | devanagari |
+| 配置文件 | 算法名称 | backbone | trans | seq | pred | language |
+| :--------: | :-------: | :-------: | :-------: | :-----: | :-----: | :-----: |
+| rec_chinese_cht_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 中文繁体 |
+| rec_en_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 英语(区分大小写) |
+| rec_french_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 法语 |
+| rec_ger_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 德语 |
+| rec_japan_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 日语 |
+| rec_korean_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 韩语 |
+| rec_latin_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 拉丁字母 |
+| rec_arabic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 阿拉伯字母 |
+| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 斯拉夫字母 |
+| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 梵文字母 |
更多支持语种请参考: [多语言模型](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.1/doc/doc_ch/multi_languages.md#%E8%AF%AD%E7%A7%8D%E7%BC%A9%E5%86%99)
diff --git a/doc/doc_ch/detection.md b/doc/doc_ch/detection.md
index dc50e8388128017d608a4ff38471d24bcb143bf3..cfc9d52bf280400982a9fcd9941ddc4cce3f5e5c 100644
--- a/doc/doc_ch/detection.md
+++ b/doc/doc_ch/detection.md
@@ -1,22 +1,24 @@
-# 目录
-- [1. 文字检测](#1-----)
- * [1.1 数据准备](#11-----)
- * [1.2 下载预训练模型](#12--------)
- * [1.3 启动训练](#13-----)
- * [1.4 断点训练](#14-----)
- * [1.5 更换Backbone 训练](#15---backbone---)
- * [1.6 指标评估](#16-----)
- * [1.7 测试检测效果](#17-------)
- * [1.8 转inference模型测试](#18--inference----)
-- [2. FAQ](#2-faq)
-
-
-
-# 1. 文字检测
+# 文字检测
本节以icdar2015数据集为例,介绍PaddleOCR中检测模型训练、评估、测试的使用方式。
+- [1. 准备数据和模型](#1--------)
+ * [1.1 数据准备](#11-----)
+ * [1.2 下载预训练模型](#12--------)
+- [2. 开始训练](#2-----)
+ * [2.1 启动训练](#21-----)
+ * [2.2 断点训练](#22-----)
+ * [2.3 更换Backbone 训练](#23---backbone---)
+- [3. 模型评估与预测](#3--------)
+ * [3.1 指标评估](#31-----)
+ * [3.2 测试检测效果](#32-------)
+- [4. 模型导出与预测](#4--------)
+- [5. FAQ](#5-faq)
+
+
+# 1. 准备数据和模型
+
## 1.1 数据准备
@@ -83,8 +85,11 @@ wget -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dyg
wget -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_ssld_pretrained.pdparams
```
-
-## 1.3 启动训练
+
+# 2. 开始训练
+
+
+## 2.1 启动训练
*如果您安装的是cpu版本,请将配置文件中的 `use_gpu` 字段修改为false*
@@ -96,6 +101,10 @@ python3 tools/train.py -c configs/det/det_mv3_db.yml \
# 单机多卡训练,通过 --gpus 参数设置使用的GPU ID
python3 -m paddle.distributed.launch --gpus '0,1,2,3' tools/train.py -c configs/det/det_mv3_db.yml \
-o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+
+# 多机多卡训练,通过 --ips 参数设置使用的机器IP地址,通过 --gpus 参数设置使用的GPU ID
+python3 -m paddle.distributed.launch --ips="xx.xx.xx.xx,xx.xx.xx.xx" --gpus '0,1,2,3' tools/train.py -c configs/det/det_mv3_db.yml \
+ -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
```
上述指令中,通过-c 选择训练使用configs/det/det_db_mv3.yml配置文件。
@@ -106,8 +115,17 @@ python3 -m paddle.distributed.launch --gpus '0,1,2,3' tools/train.py -c configs/
python3 tools/train.py -c configs/det/det_mv3_db.yml -o Optimizer.base_lr=0.0001
```
-
-## 1.4 断点训练
+**注意:** 采用多机多卡训练时,需要替换上面命令中的ips值为您机器的地址,机器之间需要能够相互ping通。另外,训练时需要在多个机器上分别启动命令。查看机器ip地址的命令为`ifconfig`。
+
+如果您想进一步加快训练速度,可以使用[自动混合精度训练](https://www.paddlepaddle.org.cn/documentation/docs/zh/guides/01_paddle2.0_introduction/basic_concept/amp_cn.html), 以单机单卡为例,命令如下:
+```shell
+python3 tools/train.py -c configs/det/det_mv3_db.yml \
+ -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained \
+ Global.use_amp=True Global.scale_loss=1024.0 Global.use_dynamic_loss_scaling=True
+ ```
+
+
+## 2.2 断点训练
如果训练程序中断,如果希望加载训练中断的模型从而恢复训练,可以通过指定Global.checkpoints指定要加载的模型路径:
```shell
@@ -116,8 +134,8 @@ python3 tools/train.py -c configs/det/det_mv3_db.yml -o Global.checkpoints=./you
**注意**:`Global.checkpoints`的优先级高于`Global.pretrained_model`的优先级,即同时指定两个参数时,优先加载`Global.checkpoints`指定的模型,如果`Global.checkpoints`指定的模型路径有误,会加载`Global.pretrained_model`指定的模型。
-
-## 1.5 更换Backbone 训练
+
+## 2.3 更换Backbone 训练
PaddleOCR将网络划分为四部分,分别在[ppocr/modeling](../../ppocr/modeling)下。 进入网络的数据将按照顺序(transforms->backbones->
necks->heads)依次通过这四个部分。
@@ -164,8 +182,11 @@ args1: args1
**注意**:如果要更换网络的其他模块,可以参考[文档](./add_new_algorithm.md)。
-
-## 1.6 指标评估
+
+# 3. 模型评估与预测
+
+
+## 3.1 指标评估
PaddleOCR计算三个OCR检测相关的指标,分别是:Precision、Recall、Hmean(F-Score)。
@@ -177,8 +198,8 @@ python3 tools/eval.py -c configs/det/det_mv3_db.yml -o Global.checkpoints="{pat
* 注:`box_thresh`、`unclip_ratio`是DB后处理所需要的参数,在评估EAST模型时不需要设置
-
-## 1.7 测试检测效果
+
+## 3.2 测试检测效果
测试单张图像的检测效果
```shell
@@ -195,8 +216,8 @@ python3 tools/infer_det.py -c configs/det/det_mv3_db.yml -o Global.infer_img="./
python3 tools/infer_det.py -c configs/det/det_mv3_db.yml -o Global.infer_img="./doc/imgs_en/" Global.pretrained_model="./output/det_db/best_accuracy"
```
-
-## 1.8 转inference模型测试
+
+# 4. 模型导出与预测
inference 模型(`paddle.jit.save`保存的模型)
一般是模型训练,把模型结构和模型参数保存在文件中的固化模型,多用于预测部署场景。
@@ -218,10 +239,11 @@ python3 tools/infer/predict_det.py --det_algorithm="DB" --det_model_dir="./outpu
python3 tools/infer/predict_det.py --det_algorithm="EAST" --det_model_dir="./output/det_db_inference/" --image_dir="./doc/imgs/" --use_gpu=True
```
-
-# 2. FAQ
+
+# 5. FAQ
Q1: 训练模型转inference 模型之后预测效果不一致?
+
**A**:此类问题出现较多,问题多是trained model预测时候的预处理、后处理参数和inference model预测的时候的预处理、后处理参数不一致导致的。以det_mv3_db.yml配置文件训练的模型为例,训练模型、inference模型预测结果不一致问题解决方式如下:
- 检查[trained model预处理](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/configs/det/det_mv3_db.yml#L116),和[inference model的预测预处理](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/tools/infer/predict_det.py#L42)函数是否一致。算法在评估的时候,输入图像大小会影响精度,为了和论文保持一致,训练icdar15配置文件中将图像resize到[736, 1280],但是在inference model预测的时候只有一套默认参数,会考虑到预测速度问题,默认限制图像最长边为960做resize的。训练模型预处理和inference模型的预处理函数位于[ppocr/data/imaug/operators.py](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/ppocr/data/imaug/operators.py#L147)
- 检查[trained model后处理](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/configs/det/det_mv3_db.yml#L51),和[inference 后处理参数](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/tools/infer/utility.py#L50)是否一致。
diff --git a/doc/doc_ch/enhanced_ctc_loss.md b/doc/doc_ch/enhanced_ctc_loss.md
new file mode 100644
index 0000000000000000000000000000000000000000..8c0856a7a7bceedbcc0a48bb1af6658afa720886
--- /dev/null
+++ b/doc/doc_ch/enhanced_ctc_loss.md
@@ -0,0 +1,78 @@
+# Enhanced CTC Loss
+
+在OCR识别中, CRNN是一种在工业界广泛使用的文字识别算法。 在训练阶段,其采用CTCLoss来计算网络损失; 在推理阶段,其采用CTCDecode来获得解码结果。虽然CRNN算法在实际业务中被证明能够获得很好的识别效果, 然而用户对识别准确率的要求却是无止境的,如何进一步提升文字识别的准确率呢? 本文以CTCLoss为切人点,分别从难例挖掘、 多任务学习、 Metric Learning 3个不同的角度探索了CTCLoss的改进融合方案,提出了EnhancedCTCLoss,其包括如下3个组成部分: Focal-CTC Loss,A-CTC Loss, C-CTC Loss。
+
+## 1. Focal-CTC Loss
+Focal Loss 出自论文《Focal Loss for Dense Object Detection》, 该loss最先提出的时候主要是为了解决one-stage目标检测中正负样本比例严重失衡的问题。该损失函数降低了大量简单负样本在训练中所占的权重,也可理解为一种困难样本挖掘。
+其损失函数形式如下:
+
+
+
+
+其中, y' 是经过激活函数的输出,取值在0-1之间。其在原始的交叉熵损失的基础上加了一个调制系数(1 – y’)^ γ和平衡因子α。 当α = 1,y=1时,其损失函数与交叉熵损失的对比如下图所示:
+
+
+
+
+从上图可以看到, 当γ> 0时,调整系数(1-y’)^γ 赋予易分类样本损失一个更小的权重,使得网络更关注于困难的、错分的样本。 调整因子γ用于调节简单样本权重降低的速率,当γ为0时即为交叉熵损失函数,当γ增加时,调整因子的影响也会随之增大。实验发现γ为2是最优。平衡因子α用来平衡正负样本本身的比例不均,文中α取0.25。
+
+对于经典的CTC算法,假设某个特征序列(f1, f2, ......ft), 经过CTC解码之后结果等于label的概率为y’, 则CTC解码结果不为label的概率即为(1-y’);不难发现, CTCLoss值和y’有如下关系:
+
+
+
+
+结合Focal Loss的思想,赋予困难样本较大的权重,简单样本较小的权重,可以使网络更加聚焦于对困难样本的挖掘,进一步提升识别的准确率,由此我们提出了Focal-CTC Loss; 其定义如下所示:
+
+
+
+
+实验中,γ取值为2, α= 1, 具体实现见: [rec_ctc_loss.py](../../ppocr/losses/rec_ctc_loss.py)
+
+## 2. A-CTC Loss
+A-CTC Loss是CTC Loss + ACE Loss的简称。 其中ACE Loss出自论文< Aggregation Cross-Entropy for Sequence Recognition>. ACE Loss相比于CTCLoss,主要有如下两点优势:
++ ACE Loss能够解决2-D文本的识别问题; CTCLoss只能够处理1-D文本
++ ACE Loss 在时间复杂度和空间复杂度上优于CTC loss
+
+前人总结的OCR识别算法的优劣如下图所示:
+
+
+
+
+虽然ACELoss确实如上图所说,可以处理2D预测,在内存占用及推理速度方面具备优势,但在实践过程中,我们发现单独使用ACE Loss, 识别效果并不如CTCLoss. 因此,我们尝试将CTCLoss和ACELoss进行结合,同时以CTCLoss为主,将ACELoss 定位为一个辅助监督loss。 这一尝试收到了效果,在我们内部的实验数据集上,相比单独使用CTCLoss,识别准确率可以提升1%左右。
+A_CTC Loss定义如下:
+
+
+
+
+实验中,λ = 0.1. ACE loss实现代码见: [ace_loss.py](../../ppocr/losses/ace_loss.py)
+
+## 3. C-CTC Loss
+C-CTC Loss是CTC Loss + Center Loss的简称。 其中Center Loss出自论文 < A Discriminative Feature Learning Approach for Deep Face Recognition>. 最早用于人脸识别任务,用于增大类间距离,减小类内距离, 是Metric Learning领域一种较早的、也比较常用的一种算法。
+在中文OCR识别任务中,通过对badcase分析, 我们发现中文识别的一大难点是相似字符多,容易误识。 由此我们想到是否可以借鉴Metric Learing的想法, 增大相似字符的类间距,从而提高识别准确率。然而,MetricLearning主要用于图像识别领域,训练数据的标签为一个固定的值;而对于OCR识别来说,其本质上是一个序列识别任务,特征和label之间并不具有显式的对齐关系,因此两者如何结合依然是一个值得探索的方向。
+通过尝试Arcmargin, Cosmargin等方法, 我们最终发现Centerloss 有助于进一步提升识别的准确率。C_CTC Loss定义如下:
+
+
+
+
+实验中,我们设置λ=0.25. center_loss实现代码见: [center_loss.py](../../ppocr/losses/center_loss.py)
+
+值得一提的是, 在C-CTC Loss中,选择随机初始化Center并不能够带来明显的提升. 我们的Center初始化方法如下:
++ 基于原始的CTCLoss, 训练得到一个网络N
++ 挑选出训练集中,识别完全正确的部分, 组成集合G
++ 将G中的每个样本送入网络,进行前向计算, 提取最后一个FC层的输入(即feature)及其经过argmax计算的结果(即index)之间的对应关系
++ 将相同index的feature进行聚合,计算平均值,得到各自字符的初始center.
+
+以配置文件`configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml`为例, center提取命令如下所示:
+```
+python tools/export_center.py -c configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml -o Global.pretrained_model="./output/rec_mobile_pp-OCRv2/best_accuracy"
+```
+运行完后,会在PaddleOCR主目录下生成`train_center.pkl`.
+
+## 4. 实验
+对于上述的三种方案,我们基于百度内部数据集进行了训练、评测,实验情况如下表所示:
+|algorithm| Focal_CTC | A_CTC | C-CTC |
+|:------| :------| ------: | :------: |
+|gain| +0.3% | +0.7% | +1.7% |
+
+基于上述实验结论,我们在PP-OCRv2中,采用了C-CTC的策略。 值得一提的是,由于PP-OCRv2 处理的是6625个中文字符的识别任务,字符集比较大,形似字较多,所以在该任务上C-CTC 方案带来的提升较大。 但如果换做其他OCR识别任务,结论可能会有所不同。大家可以尝试Focal-CTC,A-CTC, C-CTC以及组合方案EnhancedCTC,相信会带来不同程度的提升效果。
+统一的融合方案见如下文件: [rec_enhanced_ctc_loss.py](../../ppocr/losses/rec_enhanced_ctc_loss.py)
diff --git a/doc/doc_ch/environment.md b/doc/doc_ch/environment.md
index a55008100312f50e0786dca49eaa186afc49b3b2..3a266c4bb8fe5516f844bea9f0aa21359d51660e 100644
--- a/doc/doc_ch/environment.md
+++ b/doc/doc_ch/environment.md
@@ -1,6 +1,13 @@
# 运行环境准备
+
Windows和Mac用户推荐使用Anaconda搭建Python环境,Linux用户建议使用docker搭建PyThon环境。
+推荐环境:
+- PaddlePaddle >= 2.0.0 (2.1.2)
+- python3.7
+- CUDA10.1 / CUDA10.2
+- CUDNN 7.6
+
如果对于Python环境熟悉的用户可以直接跳到第2步安装PaddlePaddle。
* [1. Python环境搭建](#1)
@@ -123,13 +130,13 @@ Windows和Mac用户推荐使用Anaconda搭建Python环境,Linux用户建议使
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/xxx/opt/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
- eval "$__conda_setup"
+ eval "$__conda_setup"
else
- if [ -f "/Users/xxx/opt/anaconda3/etc/profile.d/conda.sh" ]; then
- . "/Users/xxx/opt/anaconda3/etc/profile.d/conda.sh"
- else
- export PATH="/Users/xxx/opt/anaconda3/bin:$PATH"
- fi
+ if [ -f "/Users/xxx/opt/anaconda3/etc/profile.d/conda.sh" ]; then
+ . "/Users/xxx/opt/anaconda3/etc/profile.d/conda.sh"
+ else
+ export PATH="/Users/xxx/opt/anaconda3/bin:$PATH"
+ fi
fi
unset __conda_setup
# <<< conda initialize <<<
@@ -294,11 +301,12 @@ cd /home/Projects
# 首次运行需创建一个docker容器,再次运行时不需要运行当前命令
# 创建一个名字为ppocr的docker容器,并将当前目录映射到容器的/paddle目录下
-如果您希望在CPU环境下使用docker,使用docker而不是nvidia-docker创建docker
-sudo docker run --name ppocr -v $PWD:/paddle --network=host -it paddlepaddle/paddle:latest-dev-cuda10.1-cudnn7-gcc82 /bin/bash
+#如果您希望在CPU环境下使用docker,使用docker而不是nvidia-docker创建docker
+sudo docker run --name ppocr -v $PWD:/paddle --network=host -it registry.baidubce.com/paddlepaddle/paddle:2.1.3-gpu-cuda10.2-cudnn7 /bin/bash
-如果使用CUDA10,请运行以下命令创建容器,设置docker容器共享内存shm-size为64G,建议设置32G以上
-sudo nvidia-docker run --name ppocr -v $PWD:/paddle --shm-size=64G --network=host -it paddlepaddle/paddle:latest-dev-cuda10.1-cudnn7-gcc82 /bin/bash
+#如果使用CUDA10,请运行以下命令创建容器,设置docker容器共享内存shm-size为64G,建议设置32G以上
+# 如果是CUDA11+CUDNN8,推荐使用镜像registry.baidubce.com/paddlepaddle/paddle:2.1.3-gpu-cuda11.2-cudnn8
+sudo nvidia-docker run --name ppocr -v $PWD:/paddle --shm-size=64G --network=host -it registry.baidubce.com/paddlepaddle/paddle:2.1.3-gpu-cuda10.2-cudnn7 /bin/bash
# ctrl+P+Q可退出docker 容器,重新进入docker 容器使用如下命令
sudo docker container exec -it ppocr /bin/bash
@@ -321,8 +329,3 @@ python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
```
更多的版本需求,请参照[飞桨官网安装文档](https://www.paddlepaddle.org.cn/install/quick)中的说明进行操作。
-
-
-
-
-
diff --git a/doc/doc_ch/equation_a_ctc.png b/doc/doc_ch/equation_a_ctc.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae097610d37a88e76edefdbeb81df8403e94215f
Binary files /dev/null and b/doc/doc_ch/equation_a_ctc.png differ
diff --git a/doc/doc_ch/equation_c_ctc.png b/doc/doc_ch/equation_c_ctc.png
new file mode 100644
index 0000000000000000000000000000000000000000..67207a9937481f4920af3cbafbe1bfe8d27ee5dc
Binary files /dev/null and b/doc/doc_ch/equation_c_ctc.png differ
diff --git a/doc/doc_ch/equation_ctcloss.png b/doc/doc_ch/equation_ctcloss.png
new file mode 100644
index 0000000000000000000000000000000000000000..33ad92c9e4567d2a4a0c8fc3b2a0bf3fba5ea8f2
Binary files /dev/null and b/doc/doc_ch/equation_ctcloss.png differ
diff --git a/doc/doc_ch/equation_focal_ctc.png b/doc/doc_ch/equation_focal_ctc.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ba1e8715d5876705ef429e48b5c94388fd41398
Binary files /dev/null and b/doc/doc_ch/equation_focal_ctc.png differ
diff --git a/doc/doc_ch/focal_loss_formula.png b/doc/doc_ch/focal_loss_formula.png
new file mode 100644
index 0000000000000000000000000000000000000000..971cebcd082cf5e19f9246f02216c0c14896bdc9
Binary files /dev/null and b/doc/doc_ch/focal_loss_formula.png differ
diff --git a/doc/doc_ch/focal_loss_image.png b/doc/doc_ch/focal_loss_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..430550a732d4e2769151771bc85ae889dfc78fda
Binary files /dev/null and b/doc/doc_ch/focal_loss_image.png differ
diff --git a/doc/doc_ch/inference.md b/doc/doc_ch/inference.md
index b9be1e4cb2d1b256a05b82ef5d6db49dfcb2f31f..4e0f1d131e2547f0d4a8bdf35c0f4a6f8bf2e7a3 100755
--- a/doc/doc_ch/inference.md
+++ b/doc/doc_ch/inference.md
@@ -273,7 +273,7 @@ python3 tools/export_model.py -c configs/rec/rec_r34_vd_none_bilstm_ctc.yml -o G
CRNN 文本识别模型推理,可以执行如下命令:
```
-python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./inference/rec_crnn/" --rec_image_shape="3, 32, 100" --rec_char_type="en"
+python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./inference/rec_crnn/" --rec_image_shape="3, 32, 100" --rec_char_dict_path="./ppocr/utils/ic15_dict.txt"
```
![](../imgs_words_en/word_336.png)
@@ -288,7 +288,7 @@ Predicts of ./doc/imgs_words_en/word_336.png:('super', 0.9999073)
- 训练时采用的图像分辨率不同,训练上述模型采用的图像分辨率是[3,32,100],而中文模型训练时,为了保证长文本的识别效果,训练时采用的图像分辨率是[3, 32, 320]。预测推理程序默认的的形状参数是训练中文采用的图像分辨率,即[3, 32, 320]。因此,这里推理上述英文模型时,需要通过参数rec_image_shape设置识别图像的形状。
-- 字符列表,DTRB论文中实验只是针对26个小写英文本母和10个数字进行实验,总共36个字符。所有大小字符都转成了小写字符,不在上面列表的字符都忽略,认为是空格。因此这里没有输入字符字典,而是通过如下命令生成字典.因此在推理时需要设置参数rec_char_type,指定为英文"en"。
+- 字符列表,DTRB论文中实验只是针对26个小写英文本母和10个数字进行实验,总共36个字符。所有大小字符都转成了小写字符,不在上面列表的字符都忽略,认为是空格。因此这里没有输入字符字典,而是通过如下命令生成字典.因此在推理时需要设置参数rec_char_dict_path,指定为英文字典"./ppocr/utils/ic15_dict.txt"。
```
self.character_str = "0123456789abcdefghijklmnopqrstuvwxyz"
@@ -303,15 +303,15 @@ dict_character = list(self.character_str)
python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" \
--rec_model_dir="./inference/srn/" \
--rec_image_shape="1, 64, 256" \
- --rec_char_type="en" \
+ --rec_char_dict_path="./ppocr/utils/ic15_dict.txt" \
--rec_algorithm="SRN"
```
### 4. 自定义文本识别字典的推理
-如果训练时修改了文本的字典,在使用inference模型预测时,需要通过`--rec_char_dict_path`指定使用的字典路径,并且设置 `rec_char_type=ch`
+如果训练时修改了文本的字典,在使用inference模型预测时,需要通过`--rec_char_dict_path`指定使用的字典路径
```
-python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./your inference model" --rec_image_shape="3, 32, 100" --rec_char_type="ch" --rec_char_dict_path="your text dict path"
+python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./your inference model" --rec_image_shape="3, 32, 100" --rec_char_dict_path="your text dict path"
```
@@ -320,7 +320,7 @@ python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png
需要通过 `--vis_font_path` 指定可视化的字体路径,`doc/fonts/` 路径下有默认提供的小语种字体,例如韩文识别:
```
-python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/korean/1.jpg" --rec_model_dir="./your inference model" --rec_char_type="korean" --rec_char_dict_path="ppocr/utils/dict/korean_dict.txt" --vis_font_path="doc/fonts/korean.ttf"
+python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/korean/1.jpg" --rec_model_dir="./your inference model" --rec_char_dict_path="ppocr/utils/dict/korean_dict.txt" --vis_font_path="doc/fonts/korean.ttf"
```
![](../imgs_words/korean/1.jpg)
@@ -388,7 +388,7 @@ python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --de
下面给出基于EAST文本检测和STAR-Net文本识别执行命令:
```
-python3 tools/infer/predict_system.py --image_dir="./doc/imgs_en/img_10.jpg" --det_model_dir="./inference/det_east/" --det_algorithm="EAST" --rec_model_dir="./inference/starnet/" --rec_image_shape="3, 32, 100" --rec_char_type="en"
+python3 tools/infer/predict_system.py --image_dir="./doc/imgs_en/img_10.jpg" --det_model_dir="./inference/det_east/" --det_algorithm="EAST" --rec_model_dir="./inference/starnet/" --rec_image_shape="3, 32, 100" --rec_char_dict_path="./ppocr/utils/ic15_dict.txt"
```
执行命令后,识别结果图像如下:
diff --git a/doc/doc_ch/inference_ppocr.md b/doc/doc_ch/inference_ppocr.md
index 493a4c9868621b762895e1ee11f76ac250918453..3e46f17d3a781839dfe5e632f85aabcd03d0fd17 100644
--- a/doc/doc_ch/inference_ppocr.md
+++ b/doc/doc_ch/inference_ppocr.md
@@ -1,16 +1,13 @@
-# PP-OCR模型库快速推理
+# 基于Python引擎的PP-OCR模型库推理
本文介绍针对PP-OCR模型库的Python推理引擎使用方法,内容依次为文本检测、文本识别、方向分类器以及三者串联在CPU、GPU上的预测方法。
- [1. 文本检测模型推理](#文本检测模型推理)
-
- [2. 文本识别模型推理](#文本识别模型推理)
- [2.1 超轻量中文识别模型推理](#超轻量中文识别模型推理)
- [2.2 多语言模型的推理](#多语言模型的推理)
-
- [3. 方向分类模型推理](#方向分类模型推理)
-
- [4. 文本检测、方向分类和文字识别串联推理](#文本检测、方向分类和文字识别串联推理)
@@ -21,12 +18,15 @@
```
# 下载超轻量中文检测模型:
-wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tartar xf ch_ppocr_mobile_v2.0_det_infer.tarpython3 tools/infer/predict_det.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./ch_ppocr_mobile_v2.0_det_infer/"
+wget https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar
+tar xf ch_PP-OCRv2_det_infer.tar
+python3 tools/infer/predict_det.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./ch_PP-OCRv2_det_infer/"
+
```
可视化文本检测结果默认保存到`./inference_results`文件夹里面,结果文件的名称前缀为'det_res'。结果示例如下:
-![](/Users/zhulingfeng01/OCR/PaddleOCR/doc/imgs_results/det_res_00018069.jpg)
+![](../imgs_results/det_res_00018069.jpg)
通过参数`limit_type`和`det_limit_side_len`来对图片的尺寸进行限制,
`limit_type`可选参数为[`max`, `min`],
@@ -39,13 +39,13 @@ wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_i
如果输入图片的分辨率比较大,而且想使用更大的分辨率预测,可以设置det_limit_side_len 为想要的值,比如1216:
```
-python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/det_db/" --det_limit_type=max --det_limit_side_len=1216
+python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --det_limit_type=max --det_limit_side_len=1216
```
如果想使用CPU进行预测,执行命令如下
```
-python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/det_db/" --use_gpu=False
+python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --use_gpu=False
```
@@ -62,12 +62,12 @@ python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_di
```
# 下载超轻量中文识别模型:
-wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
-tar xf ch_ppocr_mobile_v2.0_rec_infer.tar
-python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/ch/word_4.jpg" --rec_model_dir="ch_ppocr_mobile_v2.0_rec_infer"
+wget https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer.tar
+tar xf ch_PP-OCRv2_rec_infer.tar
+python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/ch/word_4.jpg" --rec_model_dir="./ch_PP-OCRv2_rec_infer/"
```
-![](/Users/zhulingfeng01/OCR/PaddleOCR/doc/imgs_words/ch/word_4.jpg)
+![](../imgs_words/ch/word_4.jpg)
执行命令后,上面图像的预测结果(识别的文本和得分)会打印到屏幕上,示例如下:
@@ -79,14 +79,13 @@ Predicts of ./doc/imgs_words/ch/word_4.jpg:('实力活力', 0.98458153)
### 2.2 多语言模型的推理
-如果您需要预测的是其他语言模型,在使用inference模型预测时,需要通过`--rec_char_dict_path`指定使用的字典路径, 同时为了得到正确的可视化结果,
-需要通过 `--vis_font_path` 指定可视化的字体路径,`doc/fonts/` 路径下有默认提供的小语种字体,例如韩文识别:
-
+如果您需要预测的是其他语言模型,可以在[此链接](./models_list.md#%E5%A4%9A%E8%AF%AD%E8%A8%80%E8%AF%86%E5%88%AB%E6%A8%A1%E5%9E%8B)中找到对应语言的inference模型,在使用inference模型预测时,需要通过`--rec_char_dict_path`指定使用的字典路径, 同时为了得到正确的可视化结果,需要通过 `--vis_font_path` 指定可视化的字体路径,`doc/fonts/` 路径下有默认提供的小语种字体,例如韩文识别:
```
+wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/korean_mobile_v2.0_rec_infer.tar
python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/korean/1.jpg" --rec_model_dir="./your inference model" --rec_char_type="korean" --rec_char_dict_path="ppocr/utils/dict/korean_dict.txt" --vis_font_path="doc/fonts/korean.ttf"
```
-![](/Users/zhulingfeng01/OCR/PaddleOCR/doc/imgs_words/korean/1.jpg)
+![](../imgs_words/korean/1.jpg)
执行命令后,上图的预测结果为:
@@ -107,7 +106,7 @@ tar xf ch_ppocr_mobile_v2.0_cls_infer.tar
python3 tools/infer/predict_cls.py --image_dir="./doc/imgs_words/ch/word_4.jpg" --cls_model_dir="ch_ppocr_mobile_v2.0_cls_infer"
```
-![](/Users/zhulingfeng01/OCR/PaddleOCR/doc/imgs_words/ch/word_1.jpg)
+![](../imgs_words/ch/word_1.jpg)
执行命令后,上面图像的预测结果(分类的方向和得分)会打印到屏幕上,示例如下:
@@ -123,14 +122,13 @@ Predicts of ./doc/imgs_words/ch/word_4.jpg:['0', 0.9999982]
```shell
# 使用方向分类器
-python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/det_db/" --cls_model_dir="./inference/cls/" --rec_model_dir="./inference/rec_crnn/" --use_angle_cls=true
+python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --cls_model_dir="./inference/cls/" --rec_model_dir="./inference/ch_PP-OCRv2_rec_infer/" --use_angle_cls=true
# 不使用方向分类器
-python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/det_db/" --rec_model_dir="./inference/rec_crnn/" --use_angle_cls=false
+python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --rec_model_dir="./inference/ch_PP-OCRv2_rec_infer/" --use_angle_cls=false
# 使用多进程
-python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/det_db/" --rec_model_dir="./inference/rec_crnn/" --use_angle_cls=false --use_mp=True --total_process_num=6
+python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --rec_model_dir="./inference/ch_PP-OCRv2_rec_infer/" --use_angle_cls=false --use_mp=True --total_process_num=6
```
执行命令后,识别结果图像如下:
-![](/Users/zhulingfeng01/OCR/PaddleOCR/doc/imgs_results/system_res_00018069.jpg)
-
+![](../imgs_results/system_res_00018069.jpg)
diff --git a/doc/doc_ch/models.md b/doc/doc_ch/models.md
new file mode 100644
index 0000000000000000000000000000000000000000..bd798e05b358e06d030dca8151eed36bc0714668
--- /dev/null
+++ b/doc/doc_ch/models.md
@@ -0,0 +1,47 @@
+
+# PP-OCR模型库
+PP-OCR模型一节主要补充一些OCR模型的基本概念以及如何快速运用PP-OCR模型库中的模型。
+
+本节包含两个部分,首先在[PP-OCR模型下载](./models_list.md)中解释PP-OCR模型的类型概念,并提供所有模型的下载链接。然后在[基于Python引擎的PP-OCR模型库推理](./inference_ppocr.md)中介绍PP-OCR模型库的使用方法,可以通过Python推理引擎快速利用丰富的模型库模型获得测试结果。
+
+------
+
+下面我们首先了解一些OCR相关的基本概念:
+
+- [1. OCR 简要介绍](#1-ocr-----)
+ * [1.1 OCR 检测模型基本概念](#11-ocr---------)
+ * [1.2 OCR 识别模型基本概念](#12-ocr---------)
+ * [1.3 PP-OCR模型](#13-pp-ocr--)
+
+
+## 1. OCR 简要介绍
+本节简要介绍OCR检测模型、识别模型的基本概念,并介绍PaddleOCR的PP-OCR模型。
+
+OCR(Optical Character Recognition,光学字符识别)目前是文字识别的统称,已不限于文档或书本文字识别,更包括识别自然场景下的文字,又可以称为STR(Scene Text Recognition)。
+
+OCR文字识别一般包括两个部分,文本检测和文本识别;文本检测首先利用检测算法检测到图像中的文本行;然后检测到的文本行用识别算法去识别到具体文字。
+
+
+### 1.1 OCR 检测模型基本概念
+
+文本检测就是要定位图像中的文字区域,然后通常以边界框的形式将单词或文本行标记出来。传统的文字检测算法多是通过手工提取特征的方式,特点是速度快,简单场景效果好,但是面对自然场景,效果会大打折扣。当前多是采用深度学习方法来做。
+
+基于深度学习的文本检测算法可以大致分为以下几类:
+1. 基于目标检测的方法;一般是预测得到文本框后,通过NMS筛选得到最终文本框,多是四点文本框,对弯曲文本场景效果不理想。典型算法为EAST、Text Box等方法。
+2. 基于分割的方法;将文本行当成分割目标,然后通过分割结果构建外接文本框,可以处理弯曲文本,对于文本交叉场景问题效果不理想。典型算法为DB、PSENet等方法。
+3. 混合目标检测和分割的方法;
+
+
+### 1.2 OCR 识别模型基本概念
+
+OCR识别算法的输入数据一般是文本行,背景信息不多,文字占据主要部分,识别算法目前可以分为两类算法:
+1. 基于CTC的方法;即识别算法的文字预测模块是基于CTC的,常用的算法组合为CNN+RNN+CTC。目前也有一些算法尝试在网络中加入transformer模块等等。
+2. 基于Attention的方法;即识别算法的文字预测模块是基于Attention的,常用算法组合是CNN+RNN+Attention。
+
+
+### 1.3 PP-OCR模型
+
+PaddleOCR 中集成了很多OCR算法,文本检测算法有DB、EAST、SAST等等,文本识别算法有CRNN、RARE、StarNet、Rosetta、SRN等算法。
+
+其中PaddleOCR针对中英文自然场景通用OCR,推出了PP-OCR系列模型,PP-OCR模型由DB+CRNN算法组成,利用海量中文数据训练加上模型调优方法,在中文场景上具备较高的文本检测识别能力。并且PaddleOCR推出了高精度超轻量PP-OCRv2模型,检测模型仅3M,识别模型仅8.5M,利用[PaddleSlim](https://github.com/PaddlePaddle/PaddleSlim)的模型量化方法,可以在保持精度不降低的情况下,将检测模型压缩到0.8M,识别压缩到3M,更加适用于移动端部署场景。
+
diff --git a/doc/doc_ch/models_list.md b/doc/doc_ch/models_list.md
index 5e78795bcda96cf005f24b97cfcc0a8580b2ae1e..8f1a53bccacde8e478e67c7eae5df3c818bb4004 100644
--- a/doc/doc_ch/models_list.md
+++ b/doc/doc_ch/models_list.md
@@ -1,4 +1,4 @@
-## OCR模型列表(V2.1,2021年9月6日更新)
+# OCR模型列表(V2.1,2021年9月6日更新)
> **说明**
> 1. 2.1版模型相比2.0版模型,2.1的模型在模型精度上做了提升
@@ -6,13 +6,13 @@
> 3. 本文档提供的是PPOCR自研模型列表,更多基于公开数据集的算法介绍与预训练模型可以参考:[算法概览文档](./algorithm_overview.md)。
-- [一、文本检测模型](#文本检测模型)
-- [二、文本识别模型](#文本识别模型)
- - [1. 中文识别模型](#中文识别模型)
- - [2. 英文识别模型](#英文识别模型)
- - [3. 多语言识别模型](#多语言识别模型)
-- [三、文本方向分类模型](#文本方向分类模型)
-- [四、Paddle-Lite 模型](#Paddle-Lite模型)
+- [1. 文本检测模型](#文本检测模型)
+- [2. 文本识别模型](#文本识别模型)
+ - [2.1 中文识别模型](#中文识别模型)
+ - [2.2 英文识别模型](#英文识别模型)
+ - [2.3 多语言识别模型](#多语言识别模型)
+- [3. 文本方向分类模型](#文本方向分类模型)
+- [4. Paddle-Lite 模型](#Paddle-Lite模型)
PaddleOCR提供的可下载模型包括`推理模型`、`训练模型`、`预训练模型`、`slim模型`,模型区别说明如下:
@@ -29,27 +29,28 @@ PaddleOCR提供的可下载模型包括`推理模型`、`训练模型`、`预训
-### 一、文本检测模型
+## 1. 文本检测模型
|模型名称|模型简介|配置文件|推理模型大小|下载地址|
| --- | --- | --- | --- | --- |
-|ch_PP-OCRv2_det_slim|slim量化+蒸馏版超轻量模型,支持中英文、多语种文本检测|[ch_PP-OCRv2_det_cml.yml](../../configs/det/ch_PP-OCRv2/ch_PP-OCR_det_cml.yml)| 3M |[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_slim_quant_infer.tar)|
-|ch_PP-OCRv2_det|原始超轻量模型,支持中英文、多语种文本检测|[ch_PP-OCRv2_det_cml.yml](../../configs/det/ch_PP-OCRv2/ch_PP-OCR_det_cml.yml)|3M|[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar)|
+|ch_PP-OCRv2_det_slim|【最新】slim量化+蒸馏版超轻量模型,支持中英文、多语种文本检测|[ch_PP-OCRv2_det_cml.yml](../../configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml)| 3M |[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_slim_quant_infer.tar)|
+|ch_PP-OCRv2_det|【最新】原始超轻量模型,支持中英文、多语种文本检测|[ch_PP-OCRv2_det_cml.yml](../../configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml)|3M|[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar)|
|ch_ppocr_mobile_slim_v2.0_det|slim裁剪版超轻量模型,支持中英文、多语种文本检测|[ch_det_mv3_db_v2.0.yml](../../configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml)| 2.6M |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_det_prune_infer.tar)|
|ch_ppocr_mobile_v2.0_det|原始超轻量模型,支持中英文、多语种文本检测|[ch_det_mv3_db_v2.0.yml](../../configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml)|3M|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar)|
|ch_ppocr_server_v2.0_det|通用模型,支持中英文、多语种文本检测,比超轻量模型更大,但效果更好|[ch_det_res18_db_v2.0.yml](../../configs/det/ch_ppocr_v2.0/ch_det_res18_db_v2.0.yml)|47M|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_train.tar)|
-### 二、文本识别模型
+## 2. 文本识别模型
-#### 1. 中文识别模型
+
+### 2.1 中文识别模型
|模型名称|模型简介|配置文件|推理模型大小|下载地址|
| --- | --- | --- | --- | --- |
-|ch_PP-OCRv2_rec_slim|slim量化版超轻量模型,支持中英文、数字识别|[ch_PP-OCRv2_rec.yml](../../configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml)| 9M |[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_slim_quant_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_slim_quant_train.tar) |
-|ch_PP-OCRv2_rec|原始超轻量模型,支持中英文、数字识别|[ch_PP-OCRv2_rec.yml](../../configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml)|8.5M|[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_train.tar) |
+|ch_PP-OCRv2_rec_slim|【最新】slim量化版超轻量模型,支持中英文、数字识别|[ch_PP-OCRv2_rec.yml](../../configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml)| 9M |[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_slim_quant_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_slim_quant_train.tar) |
+|ch_PP-OCRv2_rec|【最新】原始超轻量模型,支持中英文、数字识别|[ch_PP-OCRv2_rec.yml](../../configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml)|8.5M|[推理模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_train.tar) |
|ch_ppocr_mobile_slim_v2.0_rec|slim裁剪量化版超轻量模型,支持中英文、数字识别|[rec_chinese_lite_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml)| 6M |[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_slim_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_slim_train.tar) |
|ch_ppocr_mobile_v2.0_rec|原始超轻量模型,支持中英文、数字识别|[rec_chinese_lite_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml)|5.2M|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_train.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_pre.tar) |
|ch_ppocr_server_v2.0_rec|通用模型,支持中英文、数字识别|[rec_chinese_common_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml)|94.8M|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_train.tar) / [预训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_pre.tar) |
@@ -57,7 +58,7 @@ PaddleOCR提供的可下载模型包括`推理模型`、`训练模型`、`预训
**说明:** `训练模型`是基于预训练模型在真实数据与竖排合成文本数据上finetune得到的模型,在真实应用场景中有着更好的表现,`预训练模型`则是直接基于全量真实数据与合成数据训练得到,更适合用于在自己的数据集上finetune。
-#### 2. 英文识别模型
+### 2.2 英文识别模型
|模型名称|模型简介|配置文件|推理模型大小|下载地址|
| --- | --- | --- | --- | --- |
@@ -65,7 +66,7 @@ PaddleOCR提供的可下载模型包括`推理模型`、`训练模型`、`预训
|en_number_mobile_v2.0_rec|原始超轻量模型,支持英文、数字识别|[rec_en_number_lite_train.yml](../../configs/rec/multi_language/rec_en_number_lite_train.yml)|2.6M|[推理模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/en_number_mobile_v2.0_rec_infer.tar) / [训练模型](https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/en_number_mobile_v2.0_rec_train.tar) |
-#### 3. 多语言识别模型(更多语言持续更新中...)
+### 2.3 多语言识别模型(更多语言持续更新中...)
|模型名称|字典文件|模型简介|配置文件|推理模型大小|下载地址|
| --- | --- | --- | --- |--- | --- |
@@ -86,7 +87,7 @@ PaddleOCR提供的可下载模型包括`推理模型`、`训练模型`、`预训
-### 三、文本方向分类模型
+## 3. 文本方向分类模型
|模型名称|模型简介|配置文件|推理模型大小|下载地址|
| --- | --- | --- | --- | --- |
@@ -95,7 +96,7 @@ PaddleOCR提供的可下载模型包括`推理模型`、`训练模型`、`预训
-### 四、Paddle-Lite 模型
+## 4. Paddle-Lite 模型
|模型版本|模型简介|模型大小|检测模型|文本方向分类模型|识别模型|Paddle-Lite版本|
|---|---|---|---|---|---|---|
diff --git a/doc/doc_ch/pgnet.md b/doc/doc_ch/pgnet.md
index e79c2388ea0047a75ceec3dcb3c1d762c3702b2b..9aa7f255e54ce8dec3a20d475cccb71847d95cc7 100644
--- a/doc/doc_ch/pgnet.md
+++ b/doc/doc_ch/pgnet.md
@@ -28,9 +28,9 @@ PGNet算法细节详见[论文](https://www.aaai.org/AAAI21Papers/AAAI-2885.Wang
### 性能指标
-测试集: Total Text
+#### 测试集: Total Text
-测试环境: NVIDIA Tesla V100-SXM2-16GB
+#### 测试环境: NVIDIA Tesla V100-SXM2-16GB
|PGNetA|det_precision|det_recall|det_f_score|e2e_precision|e2e_recall|e2e_f_score|FPS|下载|
| --- | --- | --- | --- | --- | --- | --- | --- | --- |
@@ -43,7 +43,7 @@ PGNet算法细节详见[论文](https://www.aaai.org/AAAI21Papers/AAAI-2885.Wang
## 二、环境配置
-请先参考[快速安装](./installation.md)配置PaddleOCR运行环境。
+请先参考[《运行环境准备》](./environment.md)配置PaddleOCR运行环境,参考[《PaddleOCR全景图与项目克隆》](./paddleOCR_overview.md)克隆项目
## 三、快速使用
@@ -92,7 +92,7 @@ python3 tools/infer/predict_e2e.py --e2e_algorithm="PGNet" --image_dir="./doc/im
|- train.txt # total_text数据集的训练标注
```
-total_text.txt标注文件格式如下,文件名和标注信息中间用"\t"分隔:
+train.txt标注文件格式如下,文件名和标注信息中间用"\t"分隔:
```
" 图像文件名 json.dumps编码的图像标注信息"
rgb/img11.jpg [{"transcription": "ASRAMA", "points": [[214.0, 325.0], [235.0, 308.0], [259.0, 296.0], [286.0, 291.0], [313.0, 295.0], [338.0, 305.0], [362.0, 320.0], [349.0, 347.0], [330.0, 337.0], [310.0, 329.0], [290.0, 324.0], [269.0, 328.0], [249.0, 336.0], [231.0, 346.0]]}, {...}]
diff --git a/doc/doc_ch/quickstart.md b/doc/doc_ch/quickstart.md
index 1896d7a137f0768c6b2a8e0c02b18ff61fbfd03c..d9ff5a628fbd8d8effd50fb2b276d89d5e13225a 100644
--- a/doc/doc_ch/quickstart.md
+++ b/doc/doc_ch/quickstart.md
@@ -47,10 +47,10 @@ cd /path/to/ppocr_img
#### 2.1.1 中英文模型
-* 检测+方向分类器+识别全流程:设置方向分类器参数`--use_angle_cls true`后可对竖排文本进行识别。
+* 检测+方向分类器+识别全流程:`--use_angle_cls true`设置使用方向分类器识别180度旋转文字,`--use_gpu false`设置不使用GPU
```bash
- paddleocr --image_dir ./imgs/11.jpg --use_angle_cls true
+ paddleocr --image_dir ./imgs/11.jpg --use_angle_cls true --use_gpu false
```
结果是一个list,每个item包含了文本框,文字和识别置信度
diff --git a/doc/doc_ch/rec_algo_compare.png b/doc/doc_ch/rec_algo_compare.png
new file mode 100644
index 0000000000000000000000000000000000000000..2dde496c75f327ca1c0c9ccb0dbe6949215a4a1b
Binary files /dev/null and b/doc/doc_ch/rec_algo_compare.png differ
diff --git a/doc/doc_ch/recognition.md b/doc/doc_ch/recognition.md
index 52f978a734cbc750f4e2f36bb3ff28b2e67ab612..bb7d01712a85c92a02109e41814059e6c98c7cdc 100644
--- a/doc/doc_ch/recognition.md
+++ b/doc/doc_ch/recognition.md
@@ -159,7 +159,6 @@ PaddleOCR内置了一部分字典,可以按需使用。
- 自定义字典
如需自定义dic文件,请在 `configs/rec/rec_icdar15_train.yml` 中添加 `character_dict_path` 字段, 指向您的字典路径。
-并将 `character_type` 设置为 `ch`。
### 1.4 添加空格类别
@@ -246,8 +245,6 @@ Global:
...
# 添加自定义字典,如修改字典请将路径指向新字典
character_dict_path: ppocr/utils/ppocr_keys_v1.txt
- # 修改字符类型
- character_type: ch
...
# 识别空格
use_space_char: True
@@ -311,18 +308,18 @@ PaddleOCR目前已支持80种(除中文外)语种识别,`configs/rec/multi
按语系划分,目前PaddleOCR支持的语种有:
-| 配置文件 | 算法名称 | backbone | trans | seq | pred | language | character_type |
-| :--------: | :-------: | :-------: | :-------: | :-----: | :-----: | :-----: | :-----: |
-| rec_chinese_cht_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 中文繁体 | chinese_cht|
-| rec_en_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 英语(区分大小写) | EN |
-| rec_french_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 法语 | french |
-| rec_ger_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 德语 | german |
-| rec_japan_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 日语 | japan |
-| rec_korean_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 韩语 | korean |
-| rec_latin_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 拉丁字母 | latin |
-| rec_arabic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 阿拉伯字母 | ar |
-| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 斯拉夫字母 | cyrillic |
-| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 梵文字母 | devanagari |
+| 配置文件 | 算法名称 | backbone | trans | seq | pred | language |
+| :--------: | :-------: | :-------: | :-------: | :-----: | :-----: | :-----: |
+| rec_chinese_cht_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 中文繁体 |
+| rec_en_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 英语(区分大小写) |
+| rec_french_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 法语 |
+| rec_ger_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 德语 |
+| rec_japan_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 日语 |
+| rec_korean_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 韩语 |
+| rec_latin_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 拉丁字母 |
+| rec_arabic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 阿拉伯字母 |
+| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 斯拉夫字母 |
+| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | 梵文字母 |
更多支持语种请参考: [多语言模型](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.1/doc/doc_ch/multi_languages.md#%E8%AF%AD%E7%A7%8D%E7%BC%A9%E5%86%99)
diff --git a/doc/doc_ch/reference.md b/doc/doc_ch/reference.md
index f1337dedc96c685173cbcc8450a57c259d2c0029..3347447741a7852b30e793bd0d30696c190598a0 100644
--- a/doc/doc_ch/reference.md
+++ b/doc/doc_ch/reference.md
@@ -112,4 +112,14 @@
year={2016}
}
+13.NRTR
+@misc{sheng2019nrtr,
+ title={NRTR: A No-Recurrence Sequence-to-Sequence Model For Scene Text Recognition},
+ author={Fenfen Sheng and Zhineng Chen and Bo Xu},
+ year={2019},
+ eprint={1806.00926},
+ archivePrefix={arXiv},
+ primaryClass={cs.CV}
+}
+
```
diff --git a/doc/doc_ch/thirdparty.md b/doc/doc_ch/thirdparty.md
new file mode 100644
index 0000000000000000000000000000000000000000..d01f4b09c01d2c090c829bbb9c58c43557566118
--- /dev/null
+++ b/doc/doc_ch/thirdparty.md
@@ -0,0 +1,93 @@
+# 社区贡献说明
+
+感谢大家长久以来对PaddleOCR的支持和关注,与广大开发者共同构建一个专业、和谐、相互帮助的开源社区是PaddleOCR的目标。本文档展示了已有的社区贡献、对于各类贡献说明、新的机会与流程,希望贡献流程更加高效、路径更加清晰。
+
+PaddleOCR希望可以通过AI的力量助力任何一位有梦想的开发者实现自己的想法,享受创造价值带来的愉悦。
+
+
+
+
+
+> 上图为PaddleOCR目前的Contributor,定期更新
+
+## 1. 社区贡献
+
+### 1.1 为PaddleOCR新增功能
+
+- 非常感谢 [authorfu](https://github.com/authorfu) 贡献Android([#340](https://github.com/PaddlePaddle/PaddleOCR/pull/340))和[xiadeye](https://github.com/xiadeye) 贡献IOS的demo代码([#325](https://github.com/PaddlePaddle/PaddleOCR/pull/325))
+- 非常感谢 [tangmq](https://gitee.com/tangmq) 给PaddleOCR增加Docker化部署服务,支持快速发布可调用的Restful API服务([#507](https://github.com/PaddlePaddle/PaddleOCR/pull/507))。
+- 非常感谢 [lijinhan](https://github.com/lijinhan) 给PaddleOCR增加java SpringBoot 调用OCR Hubserving接口完成对OCR服务化部署的使用([#1027](https://github.com/PaddlePaddle/PaddleOCR/pull/1027))。
+- 非常感谢 [Evezerest](https://github.com/Evezerest), [ninetailskim](https://github.com/ninetailskim), [edencfc](https://github.com/edencfc), [BeyondYourself](https://github.com/BeyondYourself), [1084667371](https://github.com/1084667371) 贡献了[PPOCRLabel](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/PPOCRLabel/README_ch.md) 的完整代码。
+
+### 1.2 基于PaddleOCR的社区贡献
+
+- 【最新】完整的C#版本标注工具 [FastOCRLabel](https://gitee.com/BaoJianQiang/FastOCRLabel) (@ [包建强](https://gitee.com/BaoJianQiang) )
+- 通用型桌面级即时翻译工具 [DangoOCR离线版](https://github.com/PantsuDango/DangoOCR) (@ [PantsuDango](https://github.com/PantsuDango))
+- 获取OCR识别结果的key-value [paddleOCRCorrectOutputs](https://github.com/yuranusduke/paddleOCRCorrectOutputs) (@ [yuranusduke](https://github.com/yuranusduke))
+- 截屏转文字工具 [scr2txt](https://github.com/lstwzd/scr2txt) (@ [lstwzd](https://github.com/lstwzd))
+- 身份证复印件识别 [id_card_ocr](https://github.com/baseli/id_card_ocr)(@ [baseli](https://github.com/baseli))
+- 能看懂表格图片的数据助手:[Paddle_Table_Image_Reader](https://github.com/thunder95/Paddle_Table_Image_Reader) (@ [thunder95][https://github.com/thunder95])
+- 英文视频自动生成字幕 [AI Studio项目](https://aistudio.baidu.com/aistudio/projectdetail/1054614?channelType=0&channel=0)( @ [叶月水狐](https://aistudio.baidu.com/aistudio/personalcenter/thirdview/322052))
+
+### 1.3 代码与文档优化
+
+
+- 非常感谢 [zhangxin](https://github.com/ZhangXinNan)([Blog](https://blog.csdn.net/sdlypyzq)) 贡献新的可视化方式、添加.gitgnore、处理手动设置PYTHONPATH环境变量的问题([#210](https://github.com/PaddlePaddle/PaddleOCR/pull/210))。
+- 非常感谢 [lyl120117](https://github.com/lyl120117) 贡献打印网络结构的代码([#304](https://github.com/PaddlePaddle/PaddleOCR/pull/304))。
+- 非常感谢 [BeyondYourself](https://github.com/BeyondYourself) 给PaddleOCR提了很多非常棒的建议,并简化了PaddleOCR的部分代码风格([so many commits)](https://github.com/PaddlePaddle/PaddleOCR/commits?author=BeyondYourself)。
+
+- 非常感谢 [Khanh Tran](https://github.com/xxxpsyduck) 和 [Karl Horky](https://github.com/karlhorky) 贡献修改英文文档。
+
+### 1.4 多语言语料
+
+- 非常感谢 [xiangyubo](https://github.com/xiangyubo) 贡献手写中文OCR数据集([#321](https://github.com/PaddlePaddle/PaddleOCR/pull/321))。
+- 非常感谢 [Mejans](https://github.com/Mejans) 给PaddleOCR增加新语言奥克西坦语Occitan的字典和语料([#954](https://github.com/PaddlePaddle/PaddleOCR/pull/954))。
+
+## 2. 贡献说明
+### 2.1 新增功能类
+
+PaddleOCR非常欢迎社区贡献以PaddleOCR为核心的各种服务、部署实例与软件应用,经过认证的社区贡献会被添加在上述社区贡献表中,为广大开发者增加曝光,也是PaddleOCR的荣耀,其中:
+
+- 项目形式:官方社区认证的项目代码应有良好的规范和结构,同时,还应配备一个详细的README.md,说明项目的使用方法。通过在requirements.txt文件中增加一行 `paddleocr` 可以自动收录到PaddleOCR的usedby中。
+
+- 合入方式:如果是对PaddleOCR现有工具的更新升级,则会合入主repo。如果为PaddleOCR拓展了新功能,请先与官方人员联系,确认项目是否合入主repo,*即使新功能未合入主repo,我们同样也会以社区贡献的方式为您的个人项目增加曝光。*
+
+
+### 2.2 代码优化
+
+如果您在使用PaddleOCR时遇到了代码bug、功能不符合预期等问题,可以为PaddleOCR贡献您的修改,其中:
+
+- Python代码规范可参考[附录1:Python代码规范](./code_and_doc.md/#附录1)。
+
+- 提交代码前请再三确认不会引入新的bug,并在PR中描述优化点。如果该PR解决了某个issue,请在PR中连接到该issue。所有的PR都应该遵守附录3中的[3.2.10 提交代码的一些约定。](./code_and_doc.md/#提交代码的一些约定)
+
+- 请在提交之前参考下方的[附录3:Pull Request说明](./code_and_doc.md/#附录3)。如果您对git的提交流程不熟悉,同样可以参考附录3的3.2节。
+
+**最后请在PR的题目中加上标签`【third-party】` , 在说明中@Evezerest,拥有此标签的PR将会被高优处理**。
+
+### 2.3 文档优化
+
+如果您在使用PaddleOCR时遇到了文档表述不清楚、描述缺失、链接失效等问题,可以为PaddleOCR贡献您的修改。文档书写规范请参考[附录2:文档规范](./code_and_doc.md/#附录2)。**最后请在PR的题目中加上标签`【third-party】` , 在说明中@Evezerest,拥有此标签的PR将会被高优处理。**
+
+## 3. 更多贡献机会
+
+我们非常鼓励开发者使用PaddleOCR实现自己的想法,同时我们也列出一些经过分析后认为有价值的拓展方向,供大家参考
+
+- 功能类:IOS端侧demo、前后处理工具、针对各种垂类场景的检测识别模型(如手写体、公式)。
+- 文档类:PaddleOCR在各种垂类行业的应用案例(可在公众号中推广)。
+
+## 4. 联系我们
+
+PaddleOCR非常欢迎广大开发者在有意向贡献前与我们联系,这样可以大大降低PR过程中的沟通成本。同时,如果您觉得某些想法个人难以实现,我们也可以通过SIG的形式定向为项目招募志同道合的开发者一起共建。通过SIG渠道贡献的项目将会获得深层次的研发支持与运营资源。
+
+我们推荐的贡献流程是:
+
+- 通过在github issue的题目中增加 `【third-party】` 标记,说明遇到的问题(以及解决的思路)或想拓展的功能,等待值班人员回复。例如 `【third-party】为PaddleOCR贡献IOS示例`
+- 与我们沟通确认技术方案或bug、优化点准确无误后进行功能新增或相应的修改,代码与文档遵循相关规范。
+- PR链接到上述issue,等待review。
+
+## 5. 致谢与后续
+
+ - 合入代码之后,首页README末尾新增感谢贡献,默认链接为github名字及主页,如果有需要更换主页,也可以联系我们。
+ - 新增重要功能类,会在用户群广而告之,享受开源社区荣誉时刻。
+ - **如果您有基于PaddleOCR的贡献,但未出现在上述列表中,请按照 `4. 联系我们` 的步骤与我们联系。**
diff --git a/doc/doc_ch/training.md b/doc/doc_ch/training.md
index fb7f94a9e86cf392421ab6ed6f99cf2d49390096..7fca061b82ad0c3b9ee83b67f6238a3c75965ce8 100644
--- a/doc/doc_ch/training.md
+++ b/doc/doc_ch/training.md
@@ -1,29 +1,36 @@
-# 模型训练
+# PP-OCR模型训练
本文将介绍模型训练时需掌握的基本概念,和训练时的调优方法。
同时会简单介绍PaddleOCR模型训练数据的组成部分,以及如何在垂类场景中准备数据finetune模型。
-- [1. 基本概念](#基本概念)
- * [1.1 学习率](#学习率)
- * [1.2 正则化](#正则化)
- * [1.3 评估指标](#评估指标)
-- [2. 数据与垂类场景](#数据与垂类场景)
- * [2.1 训练数据](#训练数据)
- * [2.2 垂类场景](#垂类场景)
- * [2.3 自己构建数据集](#自己构建数据集)
-* [3. 常见问题](#常见问题)
+- [1.配置文件说明](#配置文件)
+- [2. 基本概念](#基本概念)
+ * [2.1 学习率](#学习率)
+ * [2.2 正则化](#正则化)
+ * [2.3 评估指标](#评估指标)
+- [3. 数据与垂类场景](#数据与垂类场景)
+ * [3.1 训练数据](#训练数据)
+ * [3.2 垂类场景](#垂类场景)
+ * [3.3 自己构建数据集](#自己构建数据集)
+* [4. 常见问题](#常见问题)
+
+
+
+## 1. 配置文件说明
+
+PaddleOCR模型使用配置文件管理网络训练、评估的参数。在配置文件中,可以设置组建模型、优化器、损失函数、模型前后处理的参数,PaddleOCR从配置文件中读取到这些参数,进而组建出完整的训练流程,完成模型训练,在需要对模型进行优化的时,可以通过修改配置文件中的参数完成配置,使用简单且方便修改。
+
+完整的配置文件说明可以参考[配置文件](./config.md)
-## 1. 基本概念
-OCR(Optical Character Recognition,光学字符识别)是指对图像进行分析识别处理,获取文字和版面信息的过程,是典型的计算机视觉任务,
-通常由文本检测和文本识别两个子任务构成。
+## 2. 基本概念
-模型调优时需要关注以下参数:
+模型训练过程中需要手动调整一些超参数,帮助模型以最小的代价获得最优指标。不同的数据量可能需要不同的超参,当您希望在自己的数据上finetune或对模型效果调优时,有以下几个参数调整策略可供参考:
-### 1.1 学习率
+### 2.1 学习率
学习率是训练神经网络的重要超参数之一,它代表在每一次迭代中梯度向损失函数最优解移动的步长。
在PaddleOCR中提供了多种学习率更新策略,可以通过配置文件修改,例如:
@@ -42,7 +49,7 @@ Piecewise 代表分段常数衰减,在不同的学习阶段指定不同的学
warmup_epoch 代表在前5个epoch中,学习率将逐渐从0增加到base_lr。全部策略可以参考代码[learning_rate.py](../../ppocr/optimizer/learning_rate.py) 。
-### 1.2 正则化
+### 2.2 正则化
正则化可以有效的避免算法过拟合,PaddleOCR中提供了L1、L2正则方法,L1 和 L2 正则化是最常用的正则化方法。L1 正则化向目标函数添加正则化项,以减少参数的绝对值总和;而 L2 正则化中,添加正则化项的目的在于减少参数平方的总和。配置方法如下:
@@ -55,7 +62,7 @@ Optimizer:
```
-### 1.3 评估指标
+### 2.3 评估指标
(1)检测阶段:先按照检测框和标注框的IOU评估,IOU大于某个阈值判断为检测准确。这里检测框和标注框不同于一般的通用目标检测框,是采用多边形进行表示。检测准确率:正确的检测框个数在全部检测框的占比,主要是判断检测指标。检测召回率:正确的检测框个数在全部标注框的占比,主要是判断漏检的指标。
@@ -65,10 +72,10 @@ Optimizer:
-## 2. 数据与垂类场景
+## 3. 数据与垂类场景
-### 2.1 训练数据
+### 3.1 训练数据
目前开源的模型,数据集和量级如下:
- 检测:
@@ -83,13 +90,14 @@ Optimizer:
其中,公开数据集都是开源的,用户可自行搜索下载,也可参考[中文数据集](./datasets.md),合成数据暂不开源,用户可使用开源合成工具自行合成,可参考的合成工具包括[text_renderer](https://github.com/Sanster/text_renderer) 、[SynthText](https://github.com/ankush-me/SynthText) 、[TextRecognitionDataGenerator](https://github.com/Belval/TextRecognitionDataGenerator) 等。
-### 2.2 垂类场景
+### 3.2 垂类场景
PaddleOCR主要聚焦通用OCR,如果有垂类需求,您可以用PaddleOCR+垂类数据自己训练;
如果缺少带标注的数据,或者不想投入研发成本,建议直接调用开放的API,开放的API覆盖了目前比较常见的一些垂类。
-### 2.3 自己构建数据集
+
+### 3.3 自己构建数据集
在构建数据集时有几个经验可供参考:
@@ -107,7 +115,7 @@ PaddleOCR主要聚焦通用OCR,如果有垂类需求,您可以用PaddleOCR+
-## 3. 常见问题
+## 4. 常见问题
**Q**:训练CRNN识别时,如何选择合适的网络输入shape?
@@ -129,3 +137,14 @@ PaddleOCR主要聚焦通用OCR,如果有垂类需求,您可以用PaddleOCR+
A:识别模型训练初期acc为0是正常的,多训一段时间指标就上来了。
+
+
+***
+
+具体的训练教程可点击下方链接跳转:
+
+\- [文本检测模型训练](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/doc/doc_ch/detection.md)
+
+\- [文本识别模型训练](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/doc/doc_ch/recognition.md)
+
+\- [文本方向分类器训练](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/doc/doc_ch/angle_class.md)
diff --git a/doc/doc_ch/whl.md b/doc/doc_ch/whl.md
index ba5bbae6255382d0c7fa5be319946d6242b1a544..3b88709a2328409a266d0d482baa072dd7aa3824 100644
--- a/doc/doc_ch/whl.md
+++ b/doc/doc_ch/whl.md
@@ -420,3 +420,5 @@ im_show.save('result.jpg')
| cls | 前向时是否启动分类 (命令行模式下使用use_angle_cls控制前向是否启动分类) | FALSE |
| show_log | 是否打印det和rec等信息 | FALSE |
| type | 执行ocr或者表格结构化, 值可选['ocr','structure'] | ocr |
+| ocr_version | OCR模型版本,可选PP-OCRv2, PP-OCR。PP-OCRv2 目前仅支持中文的检测和识别模型,PP-OCR支持中文的检测,识别,多语种识别,方向分类器等模型 | PP-OCRv2 |
+| structure_version | 表格结构化模型版本,可选 STRUCTURE。STRUCTURE支持表格结构化模型 | STRUCTURE |
diff --git a/doc/doc_en/add_new_algorithm_en.md b/doc/doc_en/add_new_algorithm_en.md
index dc81f1820f5d72a54f66fcddd716f18e5f6607e4..db72fe7d4b4b5b5d12e06ff34140c9da1186319b 100644
--- a/doc/doc_en/add_new_algorithm_en.md
+++ b/doc/doc_en/add_new_algorithm_en.md
@@ -1,4 +1,4 @@
-# Add new algorithm
+# Add New Algorithm
PaddleOCR decomposes an algorithm into the following parts, and modularizes each part to make it more convenient to develop new algorithms.
@@ -263,7 +263,7 @@ Metric:
main_indicator: acc
```
-## 优化器
+## Optimizer
The optimizer is used to train the network. The optimizer also contains network regularization and learning rate decay modules. This part is under [ppocr/optimizer](../../ppocr/optimizer). PaddleOCR has built-in
Commonly used optimizer modules such as `Momentum`, `Adam` and `RMSProp`, common regularization modules such as `Linear`, `Cosine`, `Step` and `Piecewise`, and common learning rate decay modules such as `L1Decay` and `L2Decay`.
diff --git a/doc/doc_en/algorithm_overview_en.md b/doc/doc_en/algorithm_overview_en.md
index df8a4ce3ef5fbcadb7ebdfd8ddf2bdf59637783e..4d521c9cd35d4dbde9b8c83d8a7e5ebbd84e59c9 100755
--- a/doc/doc_en/algorithm_overview_en.md
+++ b/doc/doc_en/algorithm_overview_en.md
@@ -1,5 +1,14 @@
+# Two-stage Algorithm
+
+- [1. Algorithm Introduction](#1-algorithm-introduction)
+ * [1.1 Text Detection Algorithm](#11-text-detection-algorithm)
+ * [1.2 Text Recognition Algorithm](#12-text-recognition-algorithm)
+- [2. Training](#2-training)
+- [3. Inference](#3-inference)
+
-## Algorithm introduction
+
+## 1. Algorithm Introduction
This tutorial lists the text detection algorithms and text recognition algorithms supported by PaddleOCR, as well as the models and metrics of each algorithm on **English public datasets**. It is mainly used for algorithm introduction and algorithm performance comparison. For more models on other datasets including Chinese, please refer to [PP-OCR v2.0 models list](./models_list_en.md).
@@ -8,31 +17,32 @@ This tutorial lists the text detection algorithms and text recognition algorithm
- [2. Text Recognition Algorithm](#TEXTRECOGNITIONALGORITHM)
-### 1. Text Detection Algorithm
+
+### 1.1 Text Detection Algorithm
PaddleOCR open source text detection algorithms list:
-- [x] EAST([paper](https://arxiv.org/abs/1704.03155))
-- [x] DB([paper](https://arxiv.org/abs/1911.08947))
-- [x] SAST([paper](https://arxiv.org/abs/1908.05498))
-- [x] PSE([paper](https://arxiv.org/abs/1903.12473v2))
+- [x] EAST([paper](https://arxiv.org/abs/1704.03155))[2]
+- [x] DB([paper](https://arxiv.org/abs/1911.08947))[1]
+- [x] SAST([paper](https://arxiv.org/abs/1908.05498))[4]
+- [x] PSENet([paper](https://arxiv.org/abs/1903.12473v2))
On the ICDAR2015 dataset, the text detection result is as follows:
-|Model|Backbone|precision|recall|Hmean|Download link|
+|Model|Backbone|Precision|Recall|Hmean|Download link|
| --- | --- | --- | --- | --- | --- |
-|EAST|ResNet50_vd|85.80%|86.71%|86.25%|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_east_v2.0_train.tar)|
-|EAST|MobileNetV3|79.42%|80.64%|80.03%|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_east_v2.0_train.tar)|
-|DB|ResNet50_vd|86.41%|78.72%|82.38%|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_db_v2.0_train.tar)|
-|DB|MobileNetV3|77.29%|73.08%|75.12%|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar)|
-|SAST|ResNet50_vd|91.39%|83.77%|87.42%|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_icdar15_v2.0_train.tar)|
-|PSE|ResNet50_vd|85.81%|79.53%|82.55%|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.1/en_det/det_r50_vd_pse_v2.0_train.tar)|
-|PSE|MobileNetV3|82.20%|70.48%|75.89%|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.1/en_det/det_mv3_pse_v2.0_train.tar)|
+|EAST|ResNet50_vd|85.80%|86.71%|86.25%|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_east_v2.0_train.tar)|
+|EAST|MobileNetV3|79.42%|80.64%|80.03%|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_east_v2.0_train.tar)|
+|DB|ResNet50_vd|86.41%|78.72%|82.38%|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_db_v2.0_train.tar)|
+|DB|MobileNetV3|77.29%|73.08%|75.12%|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar)|
+|SAST|ResNet50_vd|91.39%|83.77%|87.42%|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_icdar15_v2.0_train.tar)|
+|PSE|ResNet50_vd|85.81%|79.53%|82.55%|[trianed model](https://paddleocr.bj.bcebos.com/dygraph_v2.1/en_det/det_r50_vd_pse_v2.0_train.tar)|
+|PSE|MobileNetV3|82.20%|70.48%|75.89%|[trianed model](https://paddleocr.bj.bcebos.com/dygraph_v2.1/en_det/det_mv3_pse_v2.0_train.tar)|
On Total-Text dataset, the text detection result is as follows:
-|Model|Backbone|precision|recall|Hmean|Download link|
+|Model|Backbone|Precision|Recall|Hmean|Download link|
| --- | --- | --- | --- | --- | --- |
-|SAST|ResNet50_vd|89.63%|78.44%|83.66%|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_totaltext_v2.0_train.tar)|
+|SAST|ResNet50_vd|89.63%|78.44%|83.66%|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_totaltext_v2.0_train.tar)|
**Note:** Additional data, like icdar2013, icdar2017, COCO-Text, ArT, was added to the model training of SAST. Download English public dataset in organized format used by PaddleOCR from:
* [Baidu Drive](https://pan.baidu.com/s/12cPnZcVuV1zn5DOd4mqjVw) (download code: 2bpi).
@@ -41,31 +51,41 @@ On Total-Text dataset, the text detection result is as follows:
For the training guide and use of PaddleOCR text detection algorithms, please refer to the document [Text detection model training/evaluation/prediction](./detection_en.md)
-### 2. Text Recognition Algorithm
+### 1.2 Text Recognition Algorithm
PaddleOCR open-source text recognition algorithms list:
-- [x] CRNN([paper](https://arxiv.org/abs/1507.05717))
-- [x] Rosetta([paper](https://arxiv.org/abs/1910.05085))
-- [x] STAR-Net([paper](http://www.bmva.org/bmvc/2016/papers/paper043/index.html))
-- [x] RARE([paper](https://arxiv.org/abs/1603.03915v1))
-- [x] SRN([paper](https://arxiv.org/abs/2003.12294))
-- [x] NRTR([paper](https://arxiv.org/abs/1806.00926v2))
+- [x] CRNN([paper](https://arxiv.org/abs/1507.05717))[7]
+- [x] Rosetta([paper](https://arxiv.org/abs/1910.05085))[10]
+- [x] STAR-Net([paper](http://www.bmva.org/bmvc/2016/papers/paper043/index.html))[11]
+- [x] RARE([paper](https://arxiv.org/abs/1603.03915v1))[12]
+- [x] SRN([paper](https://arxiv.org/abs/2003.12294))[5]
+- [x] NRTR([paper](https://arxiv.org/abs/1806.00926v2))[13]
- [x] SAR([paper](https://arxiv.org/abs/1811.00751v2))
+- [x] SEED([paper](https://arxiv.org/pdf/2005.10977.pdf))
Refer to [DTRB](https://arxiv.org/abs/1904.01906), the training and evaluation result of these above text recognition (using MJSynth and SynthText for training, evaluate on IIIT, SVT, IC03, IC13, IC15, SVTP, CUTE) is as follow:
|Model|Backbone|Avg Accuracy|Module combination|Download link|
|---|---|---|---|---|
-|Rosetta|Resnet34_vd|80.9%|rec_r34_vd_none_none_ctc|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_none_none_ctc_v2.0_train.tar)|
-|Rosetta|MobileNetV3|78.05%|rec_mv3_none_none_ctc|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_none_ctc_v2.0_train.tar)|
-|CRNN|Resnet34_vd|82.76%|rec_r34_vd_none_bilstm_ctc|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_none_bilstm_ctc_v2.0_train.tar)|
-|CRNN|MobileNetV3|79.97%|rec_mv3_none_bilstm_ctc|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_bilstm_ctc_v2.0_train.tar)|
-|StarNet|Resnet34_vd|84.44%|rec_r34_vd_tps_bilstm_ctc|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_tps_bilstm_ctc_v2.0_train.tar)|
-|StarNet|MobileNetV3|81.42%|rec_mv3_tps_bilstm_ctc|[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_tps_bilstm_ctc_v2.0_train.tar)|
-|RARE|MobileNetV3|82.5%|rec_mv3_tps_bilstm_att |[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_tps_bilstm_att_v2.0_train.tar)|
-|RARE|Resnet34_vd|83.6%|rec_r34_vd_tps_bilstm_att |[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_tps_bilstm_att_v2.0_train.tar)|
-|SRN|Resnet50_vd_fpn| 88.52% | rec_r50fpn_vd_none_srn |[Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r50_vd_srn_train.tar)|
-|NRTR|NRTR_MTB| 84.3% | rec_mtb_nrtr | [Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mtb_nrtr_train.tar) |
-|SAR|Resnet31| 87.2% | rec_r31_sar | [Download link](https://paddleocr.bj.bcebos.com/dygraph_v2.1/rec/rec_r31_sar_train.tar) |
-
-Please refer to the document for training guide and use of PaddleOCR text recognition algorithms [Text recognition model training/evaluation/prediction](./recognition_en.md)
+|Rosetta|Resnet34_vd|80.9%|rec_r34_vd_none_none_ctc|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_none_none_ctc_v2.0_train.tar)|
+|Rosetta|MobileNetV3|78.05%|rec_mv3_none_none_ctc|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_none_ctc_v2.0_train.tar)|
+|CRNN|Resnet34_vd|82.76%|rec_r34_vd_none_bilstm_ctc|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_none_bilstm_ctc_v2.0_train.tar)|
+|CRNN|MobileNetV3|79.97%|rec_mv3_none_bilstm_ctc|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_bilstm_ctc_v2.0_train.tar)|
+|StarNet|Resnet34_vd|84.44%|rec_r34_vd_tps_bilstm_ctc|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_tps_bilstm_ctc_v2.0_train.tar)|
+|StarNet|MobileNetV3|81.42%|rec_mv3_tps_bilstm_ctc|[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_tps_bilstm_ctc_v2.0_train.tar)|
+|RARE|MobileNetV3|82.5%|rec_mv3_tps_bilstm_att |[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_tps_bilstm_att_v2.0_train.tar)|
+|RARE|Resnet34_vd|83.6%|rec_r34_vd_tps_bilstm_att |[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r34_vd_tps_bilstm_att_v2.0_train.tar)|
+|SRN|Resnet50_vd_fpn| 88.52% | rec_r50fpn_vd_none_srn |[trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_r50_vd_srn_train.tar)|
+|NRTR|NRTR_MTB| 84.3% | rec_mtb_nrtr | [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mtb_nrtr_train.tar) |
+|SAR|Resnet31| 87.2% | rec_r31_sar | [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.1/rec/rec_r31_sar_train.tar) |
+|SEED|Aster_Resnet| 85.2% | rec_resnet_stn_bilstm_att | [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.1/rec/rec_resnet_stn_bilstm_att.tar) |
+
+Please refer to the document for training guide and use of PaddleOCR
+
+## 2. Training
+
+For the training guide and use of PaddleOCR text detection algorithms, please refer to the document [Text detection model training/evaluation/prediction](./detection_en.md). For text recognition algorithms, please refer to [Text recognition model training/evaluation/prediction](./recognition_en.md)
+
+## 3. Inference
+
+Except for the PP-OCR series models of the above models, the other models only support inference based on the Python engine. For details, please refer to [Inference based on Python prediction engine](./inference_en.md)
diff --git a/doc/doc_en/angle_class_en.md b/doc/doc_en/angle_class_en.md
index 46d91bee43de3af99659651b7f31cf1148e7b294..b7fcd63e070318d3aab37714a1213ad9f56cb6fc 100644
--- a/doc/doc_en/angle_class_en.md
+++ b/doc/doc_en/angle_class_en.md
@@ -15,7 +15,6 @@ The text line image obtained after text detection is sent to the recognition mod
Example of 0 and 180 degree data samples:
![](../imgs_results/angle_class_example.jpg)
-### DATA PREPARATION
## 2. Data Preparation
@@ -131,8 +130,6 @@ python3 tools/eval.py -c configs/cls/cls_mv3.yml -o Global.checkpoints={path/to/
## 5. Prediction
-### PREDICTION
-
* Training engine prediction
Using the model trained by paddleocr, you can quickly get prediction through the following script.
diff --git a/doc/doc_en/config_en.md b/doc/doc_en/config_en.md
index aa78263e4b73a3ac35250e5483a394ab77450c90..9742c3d18ae52191106c5e08371cef1c09238bf6 100644
--- a/doc/doc_en/config_en.md
+++ b/doc/doc_en/config_en.md
@@ -36,11 +36,10 @@ Take rec_chinese_lite_train_v2.0.yml as an example
| pretrained_model | Set the path of the pre-trained model | ./pretrain_models/CRNN/best_accuracy | \ |
| checkpoints | set model parameter path | None | Used to load parameters after interruption to continue training|
| use_visualdl | Set whether to enable visualdl for visual log display | False | [Tutorial](https://www.paddlepaddle.org.cn/paddle/visualdl) |
-| infer_img | Set inference image path or folder path | ./infer_img | \|
-| character_dict_path | Set dictionary path | ./ppocr/utils/ppocr_keys_v1.txt | \ |
+| infer_img | Set inference image path or folder path | ./infer_img | \||
+| character_dict_path | Set dictionary path | ./ppocr/utils/ppocr_keys_v1.txt | If the character_dict_path is None, model can only recognize number and lower letters |
| max_text_length | Set the maximum length of text | 25 | \ |
-| character_type | Set character type | ch | en/ch, the default dict will be used for en, and the custom dict will be used for ch |
-| use_space_char | Set whether to recognize spaces | True | Only support in character_type=ch mode |
+| use_space_char | Set whether to recognize spaces | True | \| |
| label_list | Set the angle supported by the direction classifier | ['0','180'] | Only valid in angle classifier model |
| save_res_path | Set the save address of the test model results | ./output/det_db/predicts_db.txt | Only valid in the text detection model |
@@ -196,7 +195,6 @@ Italian is made up of Latin letters, so after executing the command, you will ge
use_gpu: True
epoch_num: 500
...
- character_type: it # language
character_dict_path: {path/of/dict} # path of dict
Train:
@@ -218,18 +216,18 @@ Italian is made up of Latin letters, so after executing the command, you will ge
Currently, the multi-language algorithms supported by PaddleOCR are:
-| Configuration file | Algorithm name | backbone | trans | seq | pred | language | character_type |
-| :--------: | :-------: | :-------: | :-------: | :-----: | :-----: | :-----: | :-----: |
-| rec_chinese_cht_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | chinese traditional | chinese_cht|
-| rec_en_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | English(Case sensitive) | EN |
-| rec_french_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | French | french |
-| rec_ger_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | German | german |
-| rec_japan_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Japanese | japan |
-| rec_korean_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Korean | korean |
-| rec_latin_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Latin | latin |
-| rec_arabic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | arabic | ar |
-| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | cyrillic | cyrillic |
-| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | devanagari | devanagari |
+| Configuration file | Algorithm name | backbone | trans | seq | pred | language |
+| :--------: | :-------: | :-------: | :-------: | :-----: | :-----: | :-----: |
+| rec_chinese_cht_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | chinese traditional |
+| rec_en_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | English(Case sensitive) |
+| rec_french_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | French |
+| rec_ger_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | German |
+| rec_japan_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Japanese |
+| rec_korean_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Korean |
+| rec_latin_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Latin |
+| rec_arabic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | arabic |
+| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | cyrillic |
+| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | devanagari |
For more supported languages, please refer to : [Multi-language model](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.1/doc/doc_en/multi_languages_en.md#4-support-languages-and-abbreviations)
diff --git a/doc/doc_en/detection_en.md b/doc/doc_en/detection_en.md
index df96fd5336cd64049e8f5d9b898f60c55b82b7b4..a634dd4903483a819caee88cf6dd1781253e6f85 100644
--- a/doc/doc_en/detection_en.md
+++ b/doc/doc_en/detection_en.md
@@ -99,6 +99,18 @@ python3 tools/train.py -c configs/det/det_mv3_db.yml -o \
# Set the GPU ID used by the '--gpus' parameter.
python3 -m paddle.distributed.launch --gpus '0,1,2,3' tools/train.py -c configs/det/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+# multi-Node, multi-GPU training
+# Set the IPs of your nodes used by the '--ips' parameter. Set the GPU ID used by the '--gpus' parameter.
+python3 -m paddle.distributed.launch --ips="xx.xx.xx.xx,xx.xx.xx.xx" --gpus '0,1,2,3' tools/train.py -c configs/det/det_mv3_db.yml \
+ -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+```
+**Note:** For multi-Node multi-GPU training, you need to replace the `ips` value in the preceding command with the address of your machine, and the machines must be able to ping each other. In addition, it requires activating commands separately on multiple machines when we start the training. The command for viewing the IP address of the machine is `ifconfig`.
+
+If you want to further speed up the training, you can use [automatic mixed precision training](https://www.paddlepaddle.org.cn/documentation/docs/zh/guides/01_paddle2.0_introduction/basic_concept/amp_en.html). for single card training, the command is as follows:
+```
+python3 tools/train.py -c configs/det/det_mv3_db.yml \
+ -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained \
+ Global.use_amp=True Global.scale_loss=1024.0 Global.use_dynamic_loss_scaling=True
```
### 2.2 Load Trained Model and Continue Training
@@ -223,6 +235,7 @@ python3 tools/infer/predict_det.py --det_algorithm="EAST" --det_model_dir="./out
## 5. FAQ
Q1: The prediction results of trained model and inference model are inconsistent?
+
**A**: Most of the problems are caused by the inconsistency of the pre-processing and post-processing parameters during the prediction of the trained model and the pre-processing and post-processing parameters during the prediction of the inference model. Taking the model trained by the det_mv3_db.yml configuration file as an example, the solution to the problem of inconsistent prediction results between the training model and the inference model is as follows:
- Check whether the [trained model preprocessing](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/configs/det/det_mv3_db.yml#L116) is consistent with the prediction [preprocessing function of the inference model](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/tools/infer/predict_det.py#L42). When the algorithm is evaluated, the input image size will affect the accuracy. In order to be consistent with the paper, the image is resized to [736, 1280] in the training icdar15 configuration file, but there is only a set of default parameters when the inference model predicts, which will be considered To predict the speed problem, the longest side of the image is limited to 960 for resize by default. The preprocessing function of the training model preprocessing and the inference model is located in [ppocr/data/imaug/operators.py](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/ppocr/data/imaug/operators.py#L147)
- Check whether the [post-processing of the trained model](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/configs/det/det_mv3_db.yml#L51) is consistent with the [post-processing parameters of the inference](https://github.com/PaddlePaddle/PaddleOCR/blob/c1ed243fb68d5d466258243092e56cbae32e2c14/tools/infer/utility.py#L50).
diff --git a/doc/doc_en/environment_en.md b/doc/doc_en/environment_en.md
index 96a46cce3010934689e8d95985ca434f49d18886..854db648fc255d36ec5c01c710a1d3cab53aaeb5 100644
--- a/doc/doc_en/environment_en.md
+++ b/doc/doc_en/environment_en.md
@@ -1,11 +1,20 @@
# Environment Preparation
+Windows and Mac users are recommended to use Anaconda to build a Python environment, and Linux users are recommended to use docker to build a Python environment. If you are familiar with the Python environment, you can skip to step 2 to install PaddlePaddle.
+
+Recommended working environment:
+- PaddlePaddle >= 2.0.0 (2.1.2)
+- python3.7
+- CUDA10.1 / CUDA10.2
+- CUDNN 7.6
+
* [1. Python Environment Setup](#1)
+ [1.1 Windows](#1.1)
+ [1.2 Mac](#1.2)
+ [1.3 Linux](#1.3)
* [2. Install PaddlePaddle 2.0](#2)
+
## 1. Python Environment Setup
@@ -38,7 +47,7 @@
- Check conda to add environment variables and ignore the warning that
-
+
#### 1.1.2 Opening the terminal and creating the conda environment
@@ -69,7 +78,7 @@
# View the current location of python
where python
```
-
+
The above anaconda environment and python environment are installed
@@ -133,13 +142,13 @@ The above anaconda environment and python environment are installed
# !!! Contents within this block are managed by 'conda init' !!!
__conda_setup="$('/Users/xxx/opt/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
- eval "$__conda_setup"
+ eval "$__conda_setup"
else
- if [ -f "/Users/xxx/opt/anaconda3/etc/profile.d/conda.sh" ]; then
- . "/Users/xxx/opt/anaconda3/etc/profile.d/conda.sh"
- else
- export PATH="/Users/xxx/opt/anaconda3/bin:$PATH"
- fi
+ if [ -f "/Users/xxx/opt/anaconda3/etc/profile.d/conda.sh" ]; then
+ . "/Users/xxx/opt/anaconda3/etc/profile.d/conda.sh"
+ else
+ export PATH="/Users/xxx/opt/anaconda3/bin:$PATH"
+ fi
fi
unset __conda_setup
# <<< conda initialize <<<
@@ -197,11 +206,10 @@ Linux users can choose to run either Anaconda or Docker. If you are familiar wit
- **Download Anaconda**.
- Download at: https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/?C=M&O=D
-
+
-
- Select the appropriate version for your operating system
- Type `uname -m` in the terminal to check the command set used by your system
@@ -216,12 +224,12 @@ Linux users can choose to run either Anaconda or Docker. If you are familiar wit
sudo yum install wget # CentOS
```
```bash
- # Then use wget to download from Tsinghua source
+ # Then use wget to download from Tsinghua source
# If you want to download Anaconda3-2021.05-Linux-x86_64.sh, the download command is as follows
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2021.05-Linux-x86_64.sh
# If you want to download another version, you need to change the file name after the last 1 / to the version you want to download
```
-
+
- To install Anaconda.
- Type `sh Anaconda3-2021.05-Linux-x86_64.sh` at the command line
@@ -309,7 +317,18 @@ cd /home/Projects
# Create a docker container named ppocr and map the current directory to the /paddle directory of the container
# If using CPU, use docker instead of nvidia-docker to create docker
-sudo docker run --name ppocr -v $PWD:/paddle --network=host -it paddlepaddle/paddle:latest-dev-cuda10.1-cudnn7-gcc82 /bin/bash
+sudo docker run --name ppocr -v $PWD:/paddle --network=host -it registry.baidubce.com/paddlepaddle/paddle:2.1.3-gpu-cuda10.2-cudnn7 /bin/bash
+
+# If using GPU, use nvidia-docker to create docker
+# docker image registry.baidubce.com/paddlepaddle/paddle:2.1.3-gpu-cuda11.2-cudnn8 is recommended for CUDA11.2 + CUDNN8.
+sudo nvidia-docker run --name ppocr -v $PWD:/paddle --shm-size=64G --network=host -it registry.baidubce.com/paddlepaddle/paddle:2.1.3-gpu-cuda10.2-cudnn7 /bin/bash
+
+```
+You can also visit [DockerHub](https://hub.docker.com/r/paddlepaddle/paddle/tags/) to get the image that fits your machine.
+
+```
+# ctrl+P+Q to exit docker, to re-enter docker using the following command:
+sudo docker container exec -it ppocr /bin/bash
```
@@ -329,4 +348,3 @@ python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
```
For more software version requirements, please refer to the instructions in [Installation Document](https://www.paddlepaddle.org.cn/install/quick) for operation.
-
diff --git a/doc/doc_en/inference_en.md b/doc/doc_en/inference_en.md
index b445232feeefadc355e0f38b329050e26ccc0368..019ac4d0ac15aceed89286048d2c4d88a259e501 100755
--- a/doc/doc_en/inference_en.md
+++ b/doc/doc_en/inference_en.md
@@ -21,7 +21,7 @@ Next, we first introduce how to convert a trained model into an inference model,
- [2.2 DB Text Detection Model Inference](#DB_DETECTION)
- [2.3 East Text Detection Model Inference](#EAST_DETECTION)
- [2.4 Sast Text Detection Model Inference](#SAST_DETECTION)
-
+
- [3. Text Recognition Model Inference](#RECOGNITION_MODEL_INFERENCE)
- [3.1 Lightweight Chinese Text Recognition Model Reference](#LIGHTWEIGHT_RECOGNITION)
- [3.2 CTC-Based Text Recognition Model Inference](#CTC-BASED_RECOGNITION)
@@ -281,7 +281,7 @@ python3 tools/export_model.py -c configs/det/rec_r34_vd_none_bilstm_ctc.yml -o G
For CRNN text recognition model inference, execute the following commands:
```
-python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./inference/starnet/" --rec_image_shape="3, 32, 100" --rec_char_type="en"
+python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./inference/starnet/" --rec_image_shape="3, 32, 100" --rec_char_dict_path="./ppocr/utils/ic15_dict.txt"
```
![](../imgs_words_en/word_336.png)
@@ -314,7 +314,7 @@ with the training, such as: --rec_image_shape="1, 64, 256"
python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" \
--rec_model_dir="./inference/srn/" \
--rec_image_shape="1, 64, 256" \
- --rec_char_type="en" \
+ --rec_char_dict_path="./ppocr/utils/ic15_dict.txt" \
--rec_algorithm="SRN"
```
@@ -323,7 +323,7 @@ python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png
If the text dictionary is modified during training, when using the inference model to predict, you need to specify the dictionary path used by `--rec_char_dict_path`, and set `rec_char_type=ch`
```
-python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./your inference model" --rec_image_shape="3, 32, 100" --rec_char_type="ch" --rec_char_dict_path="your text dict path"
+python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./your inference model" --rec_image_shape="3, 32, 100" --rec_char_dict_path="your text dict path"
```
@@ -333,7 +333,7 @@ If you need to predict other language models, when using inference model predict
You need to specify the visual font path through `--vis_font_path`. There are small language fonts provided by default under the `doc/fonts` path, such as Korean recognition:
```
-python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/korean/1.jpg" --rec_model_dir="./your inference model" --rec_char_type="korean" --rec_char_dict_path="ppocr/utils/dict/korean_dict.txt" --vis_font_path="doc/fonts/korean.ttf"
+python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/korean/1.jpg" --rec_model_dir="./your inference model" --rec_char_dict_path="ppocr/utils/dict/korean_dict.txt" --vis_font_path="doc/fonts/korean.ttf"
```
![](../imgs_words/korean/1.jpg)
@@ -399,7 +399,7 @@ If you want to try other detection algorithms or recognition algorithms, please
The following command uses the combination of the EAST text detection and STAR-Net text recognition:
```
-python3 tools/infer/predict_system.py --image_dir="./doc/imgs_en/img_10.jpg" --det_model_dir="./inference/det_east/" --det_algorithm="EAST" --rec_model_dir="./inference/starnet/" --rec_image_shape="3, 32, 100" --rec_char_type="en"
+python3 tools/infer/predict_system.py --image_dir="./doc/imgs_en/img_10.jpg" --det_model_dir="./inference/det_east/" --det_algorithm="EAST" --rec_model_dir="./inference/starnet/" --rec_image_shape="3, 32, 100" --rec_char_dict_path="./ppocr/utils/ic15_dict.txt"
```
After executing the command, the recognition result image is as follows:
diff --git a/doc/doc_en/inference_ppocr_en.md b/doc/doc_en/inference_ppocr_en.md
index fa3b1c88713f01e8e411cf95d107b4b58dd7f4e1..62a672885c86119ae56dc93ef76c2bb746084a05 100755
--- a/doc/doc_en/inference_ppocr_en.md
+++ b/doc/doc_en/inference_ppocr_en.md
@@ -1,17 +1,14 @@
-# Python Inference for PP-OCR Model Library
+# Python Inference for PP-OCR Model Zoo
This article introduces the use of the Python inference engine for the PP-OCR model library. The content is in order of text detection, text recognition, direction classifier and the prediction method of the three in series on the CPU and GPU.
- [Text Detection Model Inference](#DETECTION_MODEL_INFERENCE)
-
- [Text Recognition Model Inference](#RECOGNITION_MODEL_INFERENCE)
- [1. Lightweight Chinese Recognition Model Inference](#LIGHTWEIGHT_RECOGNITION)
- [2. Multilingaul Model Inference](#MULTILINGUAL_MODEL_INFERENCE)
-
- [Angle Classification Model Inference](#ANGLE_CLASS_MODEL_INFERENCE)
-
- [Text Detection Angle Classification and Recognition Inference Concatenation](#CONCATENATION)
@@ -22,10 +19,10 @@ The default configuration is based on the inference setting of the DB text detec
```
# download DB text detection inference model
-wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar
-tar xf ch_ppocr_mobile_v2.0_det_infer.tar
-# predict
-python3 tools/infer/predict_det.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/det_db/"
+wget https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar
+tar xf ch_PP-OCRv2_det_infer.tar
+# run inference
+python3 tools/infer/predict_det.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./ch_PP-OCRv2_det_infer.tar/"
```
The visual text detection results are saved to the ./inference_results folder by default, and the name of the result file is prefixed with'det_res'. Examples of results are as follows:
@@ -42,12 +39,12 @@ Set as `limit_type='min', det_limit_side_len=960`, it means that the shortest si
If the resolution of the input picture is relatively large and you want to use a larger resolution prediction, you can set det_limit_side_len to the desired value, such as 1216:
```
-python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/det_db/" --det_limit_type=max --det_limit_side_len=1216
+python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --det_limit_type=max --det_limit_side_len=1216
```
If you want to use the CPU for prediction, execute the command as follows
```
-python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/det_db/" --use_gpu=False
+python3 tools/infer/predict_det.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --use_gpu=False
```
@@ -62,9 +59,10 @@ For lightweight Chinese recognition model inference, you can execute the followi
```
# download CRNN text recognition inference model
-wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
-tar xf ch_ppocr_mobile_v2.0_rec_infer.tar
-python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_10.png" --rec_model_dir="ch_ppocr_mobile_v2.0_rec_infer"
+wget https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer.tar
+tar xf ch_PP-OCRv2_rec_infer.tar
+# run inference
+python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/ch/word_4.jpg" --rec_model_dir="./ch_PP-OCRv2_rec_infer/"
```
![](../imgs_words_en/word_10.png)
@@ -78,10 +76,12 @@ Predicts of ./doc/imgs_words_en/word_10.png:('PAIN', 0.9897658)
### 2. Multilingaul Model Inference
-If you need to predict other language models, when using inference model prediction, you need to specify the dictionary path used by `--rec_char_dict_path`. At the same time, in order to get the correct visualization results,
+If you need to predict [other language models](./models_list_en.md#Multilingual), when using inference model prediction, you need to specify the dictionary path used by `--rec_char_dict_path`. At the same time, in order to get the correct visualization results,
You need to specify the visual font path through `--vis_font_path`. There are small language fonts provided by default under the `doc/fonts` path, such as Korean recognition:
```
+wget wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/korean_mobile_v2.0_rec_infer.tar
+
python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words/korean/1.jpg" --rec_model_dir="./your inference model" --rec_char_type="korean" --rec_char_dict_path="ppocr/utils/dict/korean_dict.txt" --vis_font_path="doc/fonts/korean.ttf"
```
![](../imgs_words/korean/1.jpg)
@@ -120,13 +120,13 @@ When performing prediction, you need to specify the path of a single image or a
```shell
# use direction classifier
-python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/det_db/" --cls_model_dir="./inference/cls/" --rec_model_dir="./inference/rec_crnn/" --use_angle_cls=true
+python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --cls_model_dir="./inference/cls/" --rec_model_dir="./inference/ch_PP-OCRv2_rec_infer/" --use_angle_cls=true
# not use use direction classifier
-python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/det_db/" --rec_model_dir="./inference/rec_crnn/"
+python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --rec_model_dir="./inference/ch_PP-OCRv2_rec_infer/" --use_angle_cls=false
# use multi-process
-python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/det_db/" --rec_model_dir="./inference/rec_crnn/" --use_angle_cls=false --use_mp=True --total_process_num=6
+python3 tools/infer/predict_system.py --image_dir="./doc/imgs/00018069.jpg" --det_model_dir="./inference/ch_PP-OCRv2_det_infer/" --rec_model_dir="./inference/ch_PP-OCRv2_rec_infer/" --use_angle_cls=false --use_mp=True --total_process_num=6
```
diff --git a/doc/doc_en/models_list_en.md b/doc/doc_en/models_list_en.md
index 3b9b5518701f052079af1398a4fa3e3770eb12a1..e3cf251c3439ba009a1de0ba48f7c0aa10b117c4 100644
--- a/doc/doc_en/models_list_en.md
+++ b/doc/doc_en/models_list_en.md
@@ -1,4 +1,4 @@
-## OCR model list(V2.1, updated on 2021.9.6)
+# OCR Model List(V2.1, updated on 2021.9.6)
> **Note**
> 1. Compared with the model v2.0, the 2.1 version of the detection model has a improvement in accuracy, and the 2.1 version of the recognition model is optimized in accuracy and CPU speed.
> 2. Compared with [models 1.1](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_en/models_list_en.md), which are trained with static graph programming paradigm, models 2.0 are the dynamic graph trained version and achieve close performance.
@@ -6,9 +6,9 @@
- [1. Text Detection Model](#Detection)
- [2. Text Recognition Model](#Recognition)
- - [Chinese Recognition Model](#Chinese)
- - [English Recognition Model](#English)
- - [Multilingual Recognition Model](#Multilingual)
+ - [2.1 Chinese Recognition Model](#Chinese)
+ - [2.2 English Recognition Model](#English)
+ - [2.3 Multilingual Recognition Model](#Multilingual)
- [3. Text Angle Classification Model](#Angle)
- [4. Paddle-Lite Model](#Paddle-Lite)
@@ -25,26 +25,26 @@ Relationship of the above models is as follows.
![](../imgs_en/model_prod_flow_en.png)
-### 1. Text Detection Model
+## 1. Text Detection Model
|model name|description|config|model size|download|
| --- | --- | --- | --- | --- |
-|ch_PP-OCRv2_det_slim|slim quantization with distillation lightweight model, supporting Chinese, English, multilingual text detection|[ch_PP-OCRv2_det_cml.yml](../../configs/det/ch_PP-OCRv2/ch_PP-OCR_det_cml.yml)| 3M |[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_slim_quant_infer.tar)|
-|ch_PP-OCRv2_det|Original lightweight model, supporting Chinese, English, multilingual text detection|[ch_PP-OCRv2_det_cml.yml](../../configs/det/ch_PP-OCRv2/ch_PP-OCR_det_cml.yml)|3M|[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar)|
+|ch_PP-OCRv2_det_slim|[New] slim quantization with distillation lightweight model, supporting Chinese, English, multilingual text detection|[ch_PP-OCRv2_det_cml.yml](../../configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml)| 3M |[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_slim_quant_infer.tar)|
+|ch_PP-OCRv2_det|[New] Original lightweight model, supporting Chinese, English, multilingual text detection|[ch_PP-OCRv2_det_cml.yml](../../configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml)|3M|[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar)|
|ch_ppocr_mobile_slim_v2.0_det|Slim pruned lightweight model, supporting Chinese, English, multilingual text detection|[ch_det_mv3_db_v2.0.yml](../../configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml)|2.6M |[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_det_prune_infer.tar)|
|ch_ppocr_mobile_v2.0_det|Original lightweight model, supporting Chinese, English, multilingual text detection|[ch_det_mv3_db_v2.0.yml](../../configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml)|3M|[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar)|
|ch_ppocr_server_v2.0_det|General model, which is larger than the lightweight model, but achieved better performance|[ch_det_res18_db_v2.0.yml](../../configs/det/ch_ppocr_v2.0/ch_det_res18_db_v2.0.yml)|47M|[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_train.tar)|
-### 2. Text Recognition Model
+## 2. Text Recognition Model
-#### Chinese Recognition Model
+### 2.1 Chinese Recognition Model
|model name|description|config|model size|download|
| --- | --- | --- | --- | --- |
-|ch_PP-OCRv2_rec_slim|Slim qunatization with distillation lightweight model, supporting Chinese, English, multilingual text detection|[ch_PP-OCRv2_rec.yml](../../configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml)| 9M |[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_slim_quant_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_slim_quant_train.tar) |
-|ch_PP-OCRv2_rec|Original lightweight model, supporting Chinese, English, multilingual text detection|[ch_PP-OCRv2_rec.yml](../../configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml)|8.5M|[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_train.tar) |
+|ch_PP-OCRv2_rec_slim|[New] Slim qunatization with distillation lightweight model, supporting Chinese, English, multilingual text detection|[ch_PP-OCRv2_rec.yml](../../configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml)| 9M |[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_slim_quant_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_slim_quant_train.tar) |
+|ch_PP-OCRv2_rec|[New] Original lightweight model, supporting Chinese, English, multilingual text detection|[ch_PP-OCRv2_rec.yml](../../configs/rec/ch_PP-OCRv2/ch_PP-OCRv2_rec.yml)|8.5M|[inference model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_train.tar) |
|ch_ppocr_mobile_slim_v2.0_rec|Slim pruned and quantized lightweight model, supporting Chinese, English and number recognition|[rec_chinese_lite_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml)| 6M | [inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_slim_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_slim_train.tar) |
|ch_ppocr_mobile_v2.0_rec|Original lightweight model, supporting Chinese, English and number recognition|[rec_chinese_lite_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml)|5.2M|[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_train.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_pre.tar) |
|ch_ppocr_server_v2.0_rec|General model, supporting Chinese, English and number recognition|[rec_chinese_common_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml)|94.8M|[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_train.tar) / [pre-trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_pre.tar) |
@@ -53,7 +53,7 @@ Relationship of the above models is as follows.
**Note:** The `trained model` is finetuned on the `pre-trained model` with real data and synthsized vertical text data, which achieved better performance in real scene. The `pre-trained model` is directly trained on the full amount of real data and synthsized data, which is more suitable for finetune on your own dataset.
-#### English Recognition Model
+### 2.2 English Recognition Model
|model name|description|config|model size|download|
| --- | --- | --- | --- | --- |
@@ -61,7 +61,7 @@ Relationship of the above models is as follows.
|en_number_mobile_v2.0_rec|Original lightweight model, supporting English and number recognition|[rec_en_number_lite_train.yml](../../configs/rec/multi_language/rec_en_number_lite_train.yml)|2.6M|[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/en_number_mobile_v2.0_rec_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/en_number_mobile_v2.0_rec_train.tar) |
-#### Multilingual Recognition Model(Updating...)
+### 2.3 Multilingual Recognition Model(Updating...)
|model name| dict file | description|config|model size|download|
| --- | --- | --- |--- | --- | --- |
@@ -82,7 +82,7 @@ For more supported languages, please refer to : [Multi-language model](./multi_l
-### 3. Text Angle Classification Model
+## 3. Text Angle Classification Model
|model name|description|config|model size|download|
| --- | --- | --- | --- | --- |
@@ -90,7 +90,7 @@ For more supported languages, please refer to : [Multi-language model](./multi_l
|ch_ppocr_mobile_v2.0_cls|Original model for text angle classification|[cls_mv3.yml](../../configs/cls/cls_mv3.yml)|1.38M|[inference model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar) / [trained model](https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_train.tar) |
-### 4. Paddle-Lite Model
+## 4. Paddle-Lite Model
|Version|Introduction|Model size|Detection model|Text Direction model|Recognition model|Paddle-Lite branch|
|---|---|---|---|---|---|---|
|PP-OCRv2|extra-lightweight chinese OCR optimized model|11M|[download link](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer_opt.nb)|[download link](https://paddleocr.bj.bcebos.com/dygraph_v2.0/lite/ch_ppocr_mobile_v2.0_cls_opt.nb)|[download link](https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer_opt.nb)|v2.9|
diff --git a/doc/doc_en/pgnet_en.md b/doc/doc_en/pgnet_en.md
index 9c46802b5b5273110a80cd5da8916f43e5f4883f..d2c6b30248ebad920c41ca53ee38cce828dddb8c 100644
--- a/doc/doc_en/pgnet_en.md
+++ b/doc/doc_en/pgnet_en.md
@@ -24,9 +24,9 @@ The results of detection and recognition are as follows:
![](../imgs_results/e2e_res_img293_pgnet.png)
![](../imgs_results/e2e_res_img295_pgnet.png)
### Performance
-####Test set: Total Text
+#### Test set: Total Text
-####Test environment: NVIDIA Tesla V100-SXM2-16GB
+#### Test environment: NVIDIA Tesla V100-SXM2-16GB
|PGNetA|det_precision|det_recall|det_f_score|e2e_precision|e2e_recall|e2e_f_score|FPS|download|
| --- | --- | --- | --- | --- | --- | --- | --- | --- |
|Paper|85.30|86.80|86.1|-|-|61.7|38.20 (size=640)|-|
@@ -36,7 +36,7 @@ The results of detection and recognition are as follows:
## 2. Environment Configuration
-Please refer to [Quick Installation](./installation_en.md) Configure the PaddleOCR running environment.
+Please refer to [Operation Environment Preparation](./environment_en.md) to configure PaddleOCR operating environment first, refer to [PaddleOCR Overview and Project Clone](./paddleOCR_overview_en.md) to clone the project
## 3. Quick Use
diff --git a/doc/doc_en/quickstart_en.md b/doc/doc_en/quickstart_en.md
index 0055d8f7a89d0d218d001ea94fd4c620de5d037f..9ed83aceb9f562ac3099f22eaf264b966c0d48c7 100644
--- a/doc/doc_en/quickstart_en.md
+++ b/doc/doc_en/quickstart_en.md
@@ -53,10 +53,10 @@ If you do not use the provided test image, you can replace the following `--imag
#### 2.1.1 Chinese and English Model
-* Detection, direction classification and recognition: set the direction classifier parameter`--use_angle_cls true` to recognize vertical text.
+* Detection, direction classification and recognition: set the parameter`--use_gpu false` to disable the gpu device
```bash
- paddleocr --image_dir ./imgs_en/img_12.jpg --use_angle_cls true --lang en
+ paddleocr --image_dir ./imgs_en/img_12.jpg --use_angle_cls true --lang en --use_gpu false
```
Output will be a list, each item contains bounding box, text and recognition confidence
diff --git a/doc/doc_en/recognition_en.md b/doc/doc_en/recognition_en.md
index 84f5541562f9ce267da10abfad209ea1eb909a3e..51857ba16b7773ef38452fad6aa070f2117a9086 100644
--- a/doc/doc_en/recognition_en.md
+++ b/doc/doc_en/recognition_en.md
@@ -161,7 +161,7 @@ The current multi-language model is still in the demo stage and will continue to
If you like, you can submit the dictionary file to [dict](../../ppocr/utils/dict) and we will thank you in the Repo.
-To customize the dict file, please modify the `character_dict_path` field in `configs/rec/rec_icdar15_train.yml` and set `character_type` to `ch`.
+To customize the dict file, please modify the `character_dict_path` field in `configs/rec/rec_icdar15_train.yml` .
- Custom dictionary
@@ -172,8 +172,6 @@ If you need to customize dic file, please add character_dict_path field in confi
If you want to support the recognition of the `space` category, please set the `use_space_char` field in the yml file to `True`.
-**Note: use_space_char only takes effect when character_type=ch**
-
## 2.Training
@@ -250,7 +248,6 @@ Global:
# Add a custom dictionary, such as modify the dictionary, please point the path to the new dictionary
character_dict_path: ppocr/utils/ppocr_keys_v1.txt
# Modify character type
- character_type: ch
...
# Whether to recognize spaces
use_space_char: True
@@ -312,18 +309,18 @@ Eval:
Currently, the multi-language algorithms supported by PaddleOCR are:
-| Configuration file | Algorithm name | backbone | trans | seq | pred | language | character_type |
-| :--------: | :-------: | :-------: | :-------: | :-----: | :-----: | :-----: | :-----: |
-| rec_chinese_cht_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | chinese traditional | chinese_cht|
-| rec_en_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | English(Case sensitive) | EN |
-| rec_french_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | French | french |
-| rec_ger_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | German | german |
-| rec_japan_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Japanese | japan |
-| rec_korean_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Korean | korean |
-| rec_latin_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Latin | latin |
-| rec_arabic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | arabic | ar |
-| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | cyrillic | cyrillic |
-| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | devanagari | devanagari |
+| Configuration file | Algorithm name | backbone | trans | seq | pred | language |
+| :--------: | :-------: | :-------: | :-------: | :-----: | :-----: | :-----: |
+| rec_chinese_cht_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | chinese traditional |
+| rec_en_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | English(Case sensitive) |
+| rec_french_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | French |
+| rec_ger_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | German |
+| rec_japan_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Japanese |
+| rec_korean_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Korean |
+| rec_latin_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | Latin |
+| rec_arabic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | arabic |
+| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | cyrillic |
+| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | devanagari |
For more supported languages, please refer to : [Multi-language model](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.1/doc/doc_en/multi_languages_en.md#4-support-languages-and-abbreviations)
@@ -471,6 +468,3 @@ inference/det_db/
```
python3 tools/infer/predict_rec.py --image_dir="./doc/imgs_words_en/word_336.png" --rec_model_dir="./your inference model" --rec_image_shape="3, 32, 100" --rec_char_type="ch" --rec_char_dict_path="your text dict path"
```
-
-
-
diff --git a/doc/doc_en/training_en.md b/doc/doc_en/training_en.md
index 106e41c0183b0cb20a038e154e155a25fdc6faa6..d013f5ac706a2a2b4a5b58ba0a6dff09ab0b4654 100644
--- a/doc/doc_en/training_en.md
+++ b/doc/doc_en/training_en.md
@@ -25,11 +25,10 @@ The PaddleOCR model uses configuration files to manage network training and eval
For the complete configuration file description, please refer to [Configuration File](./config_en.md)
-# 1. Basic concepts
## 2. Basic Concepts
-The following parameters need to be paid attention to when tuning the model:
+In the process of model training, some hyperparameters need to be manually adjusted to help the model obtain the optimal index at the least loss. Different data volumes may require different hyper-parameters. When you want to finetune your own data or tune the model effect, there are several parameter adjustment strategies for reference:
### 2.1 Learning Rate
@@ -53,7 +52,7 @@ and the learning rate is the same in each stage.
warmup_epoch means that in the first 5 epochs, the learning rate will gradually increase from 0 to base_lr. For all strategies, please refer to the code [learning_rate.py](../../ppocr/optimizer/learning_rate.py).
-## 1.2 Regularization
+### 2.2 Regularization
Regularization can effectively avoid algorithm overfitting. PaddleOCR provides L1 and L2 regularization methods.
L1 and L2 regularization are the most commonly used regularization methods.
@@ -125,7 +124,7 @@ There are several experiences for reference when constructing the data set:
-# 3. FAQ
+## 4. FAQ
**Q**: How to choose a suitable network input shape when training CRNN recognition?
@@ -147,3 +146,10 @@ There are several experiences for reference when constructing the data set:
A: It is normal for the acc to be 0 at the beginning of the recognition model training, and the indicator will come up after a longer training period.
+***
+
+Click the following links for detailed training tutorial:
+
+- [text detection model training](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/doc/doc_ch/detection.md)
+- [text recognition model training](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/doc/doc_ch/recognition.md)
+- [text direction classification model training](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.3/doc/doc_ch/angle_class.md)
diff --git a/doc/doc_en/whl_en.md b/doc/doc_en/whl_en.md
index c2577e1e151e4675abab5139da099db9ad20fb4b..62aa452dcd36906c6480031375e6ca94f8a36de3 100644
--- a/doc/doc_en/whl_en.md
+++ b/doc/doc_en/whl_en.md
@@ -366,4 +366,6 @@ im_show.save('result.jpg')
| rec | Enable recognition when `ppocr.ocr` func exec | TRUE |
| cls | Enable classification when `ppocr.ocr` func exec((Use use_angle_cls in command line mode to control whether to start classification in the forward direction) | FALSE |
| show_log | Whether to print log in det and rec | FALSE |
-| type | Perform ocr or table structuring, the value is selected in ['ocr','structure'] | ocr |
\ No newline at end of file
+| type | Perform ocr or table structuring, the value is selected in ['ocr','structure'] | ocr |
+| ocr_version | OCR Model version number, the current model support list is as follows: PP-OCRv2 support Chinese detection and recognition model, PP-OCR support Chinese detection, recognition and direction classifier, multilingual recognition model | PP-OCRv2 |
+| structure_version | table structure Model version number, the current model support list is as follows: STRUCTURE support english table structure model | STRUCTURE |
diff --git a/doc/joinus.PNG b/doc/joinus.PNG
index f7bac06594caebbd481547d3415a6fc03ba0b60a..cd9de9c14beaf0be346a1f7f1d09450a0905a880 100644
Binary files a/doc/joinus.PNG and b/doc/joinus.PNG differ
diff --git a/doc/pr.png b/doc/pr.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d0d15f78d4cb5402a368f96ac79c1da74fabcb7
Binary files /dev/null and b/doc/pr.png differ
diff --git a/paddleocr.py b/paddleocr.py
index a98efd34088701d5eb5602743cf75b7d5e80157f..733c83d1b4faa23212e7186148a5a9e1154ba891 100644
--- a/paddleocr.py
+++ b/paddleocr.py
@@ -16,6 +16,9 @@ import os
import sys
__dir__ = os.path.dirname(__file__)
+
+import paddle
+
sys.path.append(os.path.join(__dir__, ''))
import cv2
@@ -29,7 +32,7 @@ from ppocr.utils.logging import get_logger
logger = get_logger()
from ppocr.utils.utility import check_and_read_gif, get_image_file_list
from ppocr.utils.network import maybe_download, download_with_progressbar, is_link, confirm_model_dir_url
-from tools.infer.utility import draw_ocr, str2bool
+from tools.infer.utility import draw_ocr, str2bool, check_gpu
from ppstructure.utility import init_args, draw_structure_result
from ppstructure.predict_system import OCRSystem, save_structure_res
@@ -39,130 +42,137 @@ __all__ = [
]
SUPPORT_DET_MODEL = ['DB']
-VERSION = '2.2.1'
+VERSION = '2.3.0.2'
SUPPORT_REC_MODEL = ['CRNN']
BASE_DIR = os.path.expanduser("~/.paddleocr/")
-DEFAULT_MODEL_VERSION = '2.0'
+DEFAULT_OCR_MODEL_VERSION = 'PP-OCR'
+DEFAULT_STRUCTURE_MODEL_VERSION = 'STRUCTURE'
MODEL_URLS = {
- '2.1': {
- 'det': {
- 'ch': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar',
- },
- },
- 'rec': {
- 'ch': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer.tar',
- 'dict_path': './ppocr/utils/ppocr_keys_v1.txt'
- }
- }
- },
- '2.0': {
- 'det': {
- 'ch': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar',
- },
- 'en': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/en_ppocr_mobile_v2.0_det_infer.tar',
+ 'OCR': {
+ 'PP-OCRv2': {
+ 'det': {
+ 'ch': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar',
+ },
},
- 'structure': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/table/en_ppocr_mobile_v2.0_table_det_infer.tar'
+ 'rec': {
+ 'ch': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_rec_infer.tar',
+ 'dict_path': './ppocr/utils/ppocr_keys_v1.txt'
+ }
}
},
- 'rec': {
- 'ch': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/ppocr_keys_v1.txt'
- },
- 'en': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/en_number_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/en_dict.txt'
- },
- 'french': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/french_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/french_dict.txt'
- },
- 'german': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/german_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/german_dict.txt'
- },
- 'korean': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/korean_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/korean_dict.txt'
- },
- 'japan': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/japan_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/japan_dict.txt'
- },
- 'chinese_cht': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/chinese_cht_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/chinese_cht_dict.txt'
- },
- 'ta': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/ta_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/ta_dict.txt'
+ DEFAULT_OCR_MODEL_VERSION: {
+ 'det': {
+ 'ch': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar',
+ },
+ 'en': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/en_ppocr_mobile_v2.0_det_infer.tar',
+ },
+ 'structure': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/table/en_ppocr_mobile_v2.0_table_det_infer.tar'
+ }
},
- 'te': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/te_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/te_dict.txt'
+ 'rec': {
+ 'ch': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/ppocr_keys_v1.txt'
+ },
+ 'en': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/en_number_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/en_dict.txt'
+ },
+ 'french': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/french_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/french_dict.txt'
+ },
+ 'german': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/german_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/german_dict.txt'
+ },
+ 'korean': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/korean_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/korean_dict.txt'
+ },
+ 'japan': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/japan_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/japan_dict.txt'
+ },
+ 'chinese_cht': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/chinese_cht_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/chinese_cht_dict.txt'
+ },
+ 'ta': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/ta_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/ta_dict.txt'
+ },
+ 'te': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/te_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/te_dict.txt'
+ },
+ 'ka': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/ka_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/ka_dict.txt'
+ },
+ 'latin': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/latin_ppocr_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/latin_dict.txt'
+ },
+ 'arabic': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/arabic_ppocr_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/arabic_dict.txt'
+ },
+ 'cyrillic': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/cyrillic_ppocr_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/cyrillic_dict.txt'
+ },
+ 'devanagari': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/devanagari_ppocr_mobile_v2.0_rec_infer.tar',
+ 'dict_path': './ppocr/utils/dict/devanagari_dict.txt'
+ },
+ 'structure': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/table/en_ppocr_mobile_v2.0_table_rec_infer.tar',
+ 'dict_path': 'ppocr/utils/dict/table_dict.txt'
+ }
},
- 'ka': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/ka_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/ka_dict.txt'
+ 'cls': {
+ 'ch': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar',
+ }
},
- 'latin': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/latin_ppocr_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/latin_dict.txt'
- },
- 'arabic': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/arabic_ppocr_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/arabic_dict.txt'
- },
- 'cyrillic': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/cyrillic_ppocr_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/cyrillic_dict.txt'
- },
- 'devanagari': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/multilingual/devanagari_ppocr_mobile_v2.0_rec_infer.tar',
- 'dict_path': './ppocr/utils/dict/devanagari_dict.txt'
- },
- 'structure': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/table/en_ppocr_mobile_v2.0_table_rec_infer.tar',
- 'dict_path': 'ppocr/utils/dict/table_dict.txt'
- }
- },
- 'cls': {
- 'ch': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar',
- }
- },
- 'table': {
- 'en': {
- 'url':
- 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/table/en_ppocr_mobile_v2.0_table_structure_infer.tar',
- 'dict_path': 'ppocr/utils/dict/table_structure_dict.txt'
+ }
+ },
+ 'STRUCTURE': {
+ DEFAULT_STRUCTURE_MODEL_VERSION: {
+ 'table': {
+ 'en': {
+ 'url':
+ 'https://paddleocr.bj.bcebos.com/dygraph_v2.0/table/en_ppocr_mobile_v2.0_table_structure_infer.tar',
+ 'dict_path': 'ppocr/utils/dict/table_structure_dict.txt'
+ }
}
}
}
@@ -177,7 +187,20 @@ def parse_args(mMain=True):
parser.add_argument("--det", type=str2bool, default=True)
parser.add_argument("--rec", type=str2bool, default=True)
parser.add_argument("--type", type=str, default='ocr')
- parser.add_argument("--version", type=str, default='2.1')
+ parser.add_argument(
+ "--ocr_version",
+ type=str,
+ default='PP-OCRv2',
+ help='OCR Model version, the current model support list is as follows: '
+ '1. PP-OCRv2 Support Chinese detection and recognition model. '
+ '2. PP-OCR support Chinese detection, recognition and direction classifier and multilingual recognition model.'
+ )
+ parser.add_argument(
+ "--structure_version",
+ type=str,
+ default='STRUCTURE',
+ help='Model version, the current model support list is as follows:'
+ ' 1. STRUCTURE Support en table structure model.')
for action in parser._actions:
if action.dest in ['rec_char_dict_path', 'table_char_dict_path']:
@@ -215,9 +238,9 @@ def parse_lang(lang):
lang = "cyrillic"
elif lang in devanagari_lang:
lang = "devanagari"
- assert lang in MODEL_URLS[DEFAULT_MODEL_VERSION][
+ assert lang in MODEL_URLS['OCR'][DEFAULT_OCR_MODEL_VERSION][
'rec'], 'param lang must in {}, but got {}'.format(
- MODEL_URLS[DEFAULT_MODEL_VERSION]['rec'].keys(), lang)
+ MODEL_URLS['OCR'][DEFAULT_OCR_MODEL_VERSION]['rec'].keys(), lang)
if lang == "ch":
det_lang = "ch"
elif lang == 'structure':
@@ -227,33 +250,41 @@ def parse_lang(lang):
return lang, det_lang
-def get_model_config(version, model_type, lang):
- if version not in MODEL_URLS:
- logger.warning('version {} not in {}, use version {} instead'.format(
- version, MODEL_URLS.keys(), DEFAULT_MODEL_VERSION))
+def get_model_config(type, version, model_type, lang):
+ if type == 'OCR':
+ DEFAULT_MODEL_VERSION = DEFAULT_OCR_MODEL_VERSION
+ elif type == 'STRUCTURE':
+ DEFAULT_MODEL_VERSION = DEFAULT_STRUCTURE_MODEL_VERSION
+ else:
+ raise NotImplementedError
+ model_urls = MODEL_URLS[type]
+ if version not in model_urls:
+ logger.warning('version {} not in {}, auto switch to version {}'.format(
+ version, model_urls.keys(), DEFAULT_MODEL_VERSION))
version = DEFAULT_MODEL_VERSION
- if model_type not in MODEL_URLS[version]:
- if model_type in MODEL_URLS[DEFAULT_MODEL_VERSION]:
+ if model_type not in model_urls[version]:
+ if model_type in model_urls[DEFAULT_MODEL_VERSION]:
logger.warning(
- 'version {} not support {} models, use version {} instead'.
+ 'version {} not support {} models, auto switch to version {}'.
format(version, model_type, DEFAULT_MODEL_VERSION))
version = DEFAULT_MODEL_VERSION
else:
logger.error('{} models is not support, we only support {}'.format(
- model_type, MODEL_URLS[DEFAULT_MODEL_VERSION].keys()))
+ model_type, model_urls[DEFAULT_MODEL_VERSION].keys()))
sys.exit(-1)
- if lang not in MODEL_URLS[version][model_type]:
- if lang in MODEL_URLS[DEFAULT_MODEL_VERSION][model_type]:
- logger.warning('lang {} is not support in {}, use {} instead'.
- format(lang, version, DEFAULT_MODEL_VERSION))
+ if lang not in model_urls[version][model_type]:
+ if lang in model_urls[DEFAULT_MODEL_VERSION][model_type]:
+ logger.warning(
+ 'lang {} is not support in {}, auto switch to version {}'.
+ format(lang, version, DEFAULT_MODEL_VERSION))
version = DEFAULT_MODEL_VERSION
else:
logger.error(
'lang {} is not support, we only support {} for {} models'.
- format(lang, MODEL_URLS[DEFAULT_MODEL_VERSION][model_type].keys(
+ format(lang, model_urls[DEFAULT_MODEL_VERSION][model_type].keys(
), model_type))
sys.exit(-1)
- return MODEL_URLS[version][model_type][lang]
+ return model_urls[version][model_type][lang]
class PaddleOCR(predict_system.TextSystem):
@@ -265,23 +296,28 @@ class PaddleOCR(predict_system.TextSystem):
"""
params = parse_args(mMain=False)
params.__dict__.update(**kwargs)
+ params.use_gpu = check_gpu(params.use_gpu)
+
if not params.show_log:
logger.setLevel(logging.INFO)
self.use_angle_cls = params.use_angle_cls
lang, det_lang = parse_lang(params.lang)
# init model dir
- det_model_config = get_model_config(params.version, 'det', det_lang)
+ det_model_config = get_model_config('OCR', params.ocr_version, 'det',
+ det_lang)
params.det_model_dir, det_url = confirm_model_dir_url(
params.det_model_dir,
os.path.join(BASE_DIR, VERSION, 'ocr', 'det', det_lang),
det_model_config['url'])
- rec_model_config = get_model_config(params.version, 'rec', lang)
+ rec_model_config = get_model_config('OCR', params.ocr_version, 'rec',
+ lang)
params.rec_model_dir, rec_url = confirm_model_dir_url(
params.rec_model_dir,
os.path.join(BASE_DIR, VERSION, 'ocr', 'rec', lang),
rec_model_config['url'])
- cls_model_config = get_model_config(params.version, 'cls', 'ch')
+ cls_model_config = get_model_config('OCR', params.ocr_version, 'cls',
+ 'ch')
params.cls_model_dir, cls_url = confirm_model_dir_url(
params.cls_model_dir,
os.path.join(BASE_DIR, VERSION, 'ocr', 'cls'),
@@ -362,22 +398,27 @@ class PPStructure(OCRSystem):
def __init__(self, **kwargs):
params = parse_args(mMain=False)
params.__dict__.update(**kwargs)
+ params.use_gpu = check_gpu(params.use_gpu)
+
if not params.show_log:
logger.setLevel(logging.INFO)
lang, det_lang = parse_lang(params.lang)
# init model dir
- det_model_config = get_model_config(params.version, 'det', det_lang)
+ det_model_config = get_model_config('OCR', params.ocr_version, 'det',
+ det_lang)
params.det_model_dir, det_url = confirm_model_dir_url(
params.det_model_dir,
os.path.join(BASE_DIR, VERSION, 'ocr', 'det', det_lang),
det_model_config['url'])
- rec_model_config = get_model_config(params.version, 'rec', lang)
+ rec_model_config = get_model_config('OCR', params.ocr_version, 'rec',
+ lang)
params.rec_model_dir, rec_url = confirm_model_dir_url(
params.rec_model_dir,
os.path.join(BASE_DIR, VERSION, 'ocr', 'rec', lang),
rec_model_config['url'])
- table_model_config = get_model_config(params.version, 'table', 'en')
+ table_model_config = get_model_config(
+ 'STRUCTURE', params.structure_version, 'table', 'en')
params.table_model_dir, table_url = confirm_model_dir_url(
params.table_model_dir,
os.path.join(BASE_DIR, VERSION, 'ocr', 'table'),
diff --git a/ppocr/data/imaug/east_process.py b/ppocr/data/imaug/east_process.py
index b1d7a5e51939af981dd62c269c930f4bf9ba4179..df08adfa1516c59229e95af193c172dfcdd5af08 100644
--- a/ppocr/data/imaug/east_process.py
+++ b/ppocr/data/imaug/east_process.py
@@ -11,7 +11,10 @@
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
-
+"""
+This code is refered from:
+https://github.com/songdejia/EAST/blob/master/data_utils.py
+"""
import math
import cv2
import numpy as np
@@ -24,10 +27,10 @@ __all__ = ['EASTProcessTrain']
class EASTProcessTrain(object):
def __init__(self,
- image_shape = [512, 512],
- background_ratio = 0.125,
- min_crop_side_ratio = 0.1,
- min_text_size = 10,
+ image_shape=[512, 512],
+ background_ratio=0.125,
+ min_crop_side_ratio=0.1,
+ min_text_size=10,
**kwargs):
self.input_size = image_shape[1]
self.random_scale = np.array([0.5, 1, 2.0, 3.0])
@@ -282,12 +285,7 @@ class EASTProcessTrain(object):
1.0 / max(min(poly_h, poly_w), 1.0)
return score_map, geo_map, training_mask
- def crop_area(self,
- im,
- polys,
- tags,
- crop_background=False,
- max_tries=50):
+ def crop_area(self, im, polys, tags, crop_background=False, max_tries=50):
"""
make random crop from the input image
:param im:
@@ -435,5 +433,4 @@ class EASTProcessTrain(object):
data['score_map'] = score_map
data['geo_map'] = geo_map
data['training_mask'] = training_mask
- # print(im.shape, score_map.shape, geo_map.shape, training_mask.shape)
- return data
\ No newline at end of file
+ return data
diff --git a/ppocr/data/imaug/iaa_augment.py b/ppocr/data/imaug/iaa_augment.py
index 9ce6bd4209034389df04334a83717142ca8c7b40..0aac7877c257f3e7532ca2806891775913d416b7 100644
--- a/ppocr/data/imaug/iaa_augment.py
+++ b/ppocr/data/imaug/iaa_augment.py
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/WenmuZhou/DBNet.pytorch/blob/master/data_loader/modules/iaa_augment.py
+"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
diff --git a/ppocr/data/imaug/label_ops.py b/ppocr/data/imaug/label_ops.py
index 36e5e27a05556f6ec7dbd1836b24d1f6fc79659a..344f596d9d7c435ec98074de6d8cc08a420d27e8 100644
--- a/ppocr/data/imaug/label_ops.py
+++ b/ppocr/data/imaug/label_ops.py
@@ -22,6 +22,8 @@ import string
from shapely.geometry import LineString, Point, Polygon
import json
+from ppocr.utils.logging import get_logger
+
class ClsLabelEncode(object):
def __init__(self, label_list, **kwargs):
@@ -93,31 +95,23 @@ class BaseRecLabelEncode(object):
def __init__(self,
max_text_length,
character_dict_path=None,
- character_type='ch',
use_space_char=False):
- support_character_type = [
- 'ch', 'en', 'EN_symbol', 'french', 'german', 'japan', 'korean',
- 'EN', 'it', 'xi', 'pu', 'ru', 'ar', 'ta', 'ug', 'fa', 'ur', 'rs',
- 'oc', 'rsc', 'bg', 'uk', 'be', 'te', 'ka', 'chinese_cht', 'hi',
- 'mr', 'ne', 'latin', 'arabic', 'cyrillic', 'devanagari'
- ]
- assert character_type in support_character_type, "Only {} are supported now but get {}".format(
- support_character_type, character_type)
self.max_text_len = max_text_length
self.beg_str = "sos"
self.end_str = "eos"
- if character_type == "en":
+ self.lower = False
+
+ if character_dict_path is None:
+ logger = get_logger()
+ logger.warning(
+ "The character_dict_path is None, model can only recognize number and lower letters"
+ )
self.character_str = "0123456789abcdefghijklmnopqrstuvwxyz"
dict_character = list(self.character_str)
- elif character_type == "EN_symbol":
- # same with ASTER setting (use 94 char).
- self.character_str = string.printable[:-6]
- dict_character = list(self.character_str)
- elif character_type in support_character_type:
+ self.lower = True
+ else:
self.character_str = ""
- assert character_dict_path is not None, "character_dict_path should not be None when character_type is {}".format(
- character_type)
with open(character_dict_path, "rb") as fin:
lines = fin.readlines()
for line in lines:
@@ -126,7 +120,6 @@ class BaseRecLabelEncode(object):
if use_space_char:
self.character_str += " "
dict_character = list(self.character_str)
- self.character_type = character_type
dict_character = self.add_special_char(dict_character)
self.dict = {}
for i, char in enumerate(dict_character):
@@ -148,7 +141,7 @@ class BaseRecLabelEncode(object):
"""
if len(text) == 0 or len(text) > self.max_text_len:
return None
- if self.character_type == "en":
+ if self.lower:
text = text.lower()
text_list = []
for char in text:
@@ -168,13 +161,11 @@ class NRTRLabelEncode(BaseRecLabelEncode):
def __init__(self,
max_text_length,
character_dict_path=None,
- character_type='EN_symbol',
use_space_char=False,
**kwargs):
- super(NRTRLabelEncode,
- self).__init__(max_text_length, character_dict_path,
- character_type, use_space_char)
+ super(NRTRLabelEncode, self).__init__(
+ max_text_length, character_dict_path, use_space_char)
def __call__(self, data):
text = data['label']
@@ -201,12 +192,10 @@ class CTCLabelEncode(BaseRecLabelEncode):
def __init__(self,
max_text_length,
character_dict_path=None,
- character_type='ch',
use_space_char=False,
**kwargs):
- super(CTCLabelEncode,
- self).__init__(max_text_length, character_dict_path,
- character_type, use_space_char)
+ super(CTCLabelEncode, self).__init__(
+ max_text_length, character_dict_path, use_space_char)
def __call__(self, data):
text = data['label']
@@ -232,12 +221,10 @@ class E2ELabelEncodeTest(BaseRecLabelEncode):
def __init__(self,
max_text_length,
character_dict_path=None,
- character_type='EN',
use_space_char=False,
**kwargs):
- super(E2ELabelEncodeTest,
- self).__init__(max_text_length, character_dict_path,
- character_type, use_space_char)
+ super(E2ELabelEncodeTest, self).__init__(
+ max_text_length, character_dict_path, use_space_char)
def __call__(self, data):
import json
@@ -468,12 +455,10 @@ class AttnLabelEncode(BaseRecLabelEncode):
def __init__(self,
max_text_length,
character_dict_path=None,
- character_type='ch',
use_space_char=False,
**kwargs):
- super(AttnLabelEncode,
- self).__init__(max_text_length, character_dict_path,
- character_type, use_space_char)
+ super(AttnLabelEncode, self).__init__(
+ max_text_length, character_dict_path, use_space_char)
def add_special_char(self, dict_character):
self.beg_str = "sos"
@@ -516,12 +501,10 @@ class SEEDLabelEncode(BaseRecLabelEncode):
def __init__(self,
max_text_length,
character_dict_path=None,
- character_type='ch',
use_space_char=False,
**kwargs):
- super(SEEDLabelEncode,
- self).__init__(max_text_length, character_dict_path,
- character_type, use_space_char)
+ super(SEEDLabelEncode, self).__init__(
+ max_text_length, character_dict_path, use_space_char)
def add_special_char(self, dict_character):
self.end_str = "eos"
@@ -548,12 +531,10 @@ class SRNLabelEncode(BaseRecLabelEncode):
def __init__(self,
max_text_length=25,
character_dict_path=None,
- character_type='en',
use_space_char=False,
**kwargs):
- super(SRNLabelEncode,
- self).__init__(max_text_length, character_dict_path,
- character_type, use_space_char)
+ super(SRNLabelEncode, self).__init__(
+ max_text_length, character_dict_path, use_space_char)
def add_special_char(self, dict_character):
dict_character = dict_character + [self.beg_str, self.end_str]
@@ -761,12 +742,10 @@ class SARLabelEncode(BaseRecLabelEncode):
def __init__(self,
max_text_length,
character_dict_path=None,
- character_type='ch',
use_space_char=False,
**kwargs):
- super(SARLabelEncode,
- self).__init__(max_text_length, character_dict_path,
- character_type, use_space_char)
+ super(SARLabelEncode, self).__init__(
+ max_text_length, character_dict_path, use_space_char)
def add_special_char(self, dict_character):
beg_end_str = ""
diff --git a/ppocr/data/imaug/make_border_map.py b/ppocr/data/imaug/make_border_map.py
index cc2c9034e147eb7bb6a70e43eda4903337a523f0..abab38368db2de84e54b060598fc509a65219296 100644
--- a/ppocr/data/imaug/make_border_map.py
+++ b/ppocr/data/imaug/make_border_map.py
@@ -1,4 +1,20 @@
-# -*- coding:utf-8 -*-
+# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+"""
+This code is refer from:
+https://github.com/WenmuZhou/DBNet.pytorch/blob/master/data_loader/modules/make_border_map.py
+"""
from __future__ import absolute_import
from __future__ import division
diff --git a/ppocr/data/imaug/make_pse_gt.py b/ppocr/data/imaug/make_pse_gt.py
index 55abc8970784fd00843d2e91f259c58b65ae8579..255d076bde848d53f3b2fb04e80594872f4ae8c7 100644
--- a/ppocr/data/imaug/make_pse_gt.py
+++ b/ppocr/data/imaug/make_pse_gt.py
@@ -1,4 +1,16 @@
-# -*- coding:utf-8 -*-
+# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
from __future__ import absolute_import
from __future__ import division
@@ -12,12 +24,8 @@ from shapely.geometry import Polygon
__all__ = ['MakePseGt']
-class MakePseGt(object):
- r'''
- Making binary mask from detection data with ICDAR format.
- Typically following the process of class `MakeICDARData`.
- '''
+class MakePseGt(object):
def __init__(self, kernel_num=7, size=640, min_shrink_ratio=0.4, **kwargs):
self.kernel_num = kernel_num
self.min_shrink_ratio = min_shrink_ratio
@@ -38,16 +46,20 @@ class MakePseGt(object):
text_polys *= scale
gt_kernels = []
- for i in range(1,self.kernel_num+1):
+ for i in range(1, self.kernel_num + 1):
# s1->sn, from big to small
- rate = 1.0 - (1.0 - self.min_shrink_ratio) / (self.kernel_num - 1) * i
- text_kernel, ignore_tags = self.generate_kernel(image.shape[0:2], rate, text_polys, ignore_tags)
+ rate = 1.0 - (1.0 - self.min_shrink_ratio) / (self.kernel_num - 1
+ ) * i
+ text_kernel, ignore_tags = self.generate_kernel(
+ image.shape[0:2], rate, text_polys, ignore_tags)
gt_kernels.append(text_kernel)
training_mask = np.ones(image.shape[0:2], dtype='uint8')
for i in range(text_polys.shape[0]):
if ignore_tags[i]:
- cv2.fillPoly(training_mask, text_polys[i].astype(np.int32)[np.newaxis, :, :], 0)
+ cv2.fillPoly(training_mask,
+ text_polys[i].astype(np.int32)[np.newaxis, :, :],
+ 0)
gt_kernels = np.array(gt_kernels)
gt_kernels[gt_kernels > 0] = 1
@@ -59,16 +71,25 @@ class MakePseGt(object):
data['mask'] = training_mask.astype('float32')
return data
- def generate_kernel(self, img_size, shrink_ratio, text_polys, ignore_tags=None):
+ def generate_kernel(self,
+ img_size,
+ shrink_ratio,
+ text_polys,
+ ignore_tags=None):
+ """
+ Refer to part of the code:
+ https://github.com/open-mmlab/mmocr/blob/main/mmocr/datasets/pipelines/textdet_targets/base_textdet_targets.py
+ """
+
h, w = img_size
text_kernel = np.zeros((h, w), dtype=np.float32)
for i, poly in enumerate(text_polys):
polygon = Polygon(poly)
- distance = polygon.area * (1 - shrink_ratio * shrink_ratio) / (polygon.length + 1e-6)
+ distance = polygon.area * (1 - shrink_ratio * shrink_ratio) / (
+ polygon.length + 1e-6)
subject = [tuple(l) for l in poly]
pco = pyclipper.PyclipperOffset()
- pco.AddPath(subject, pyclipper.JT_ROUND,
- pyclipper.ET_CLOSEDPOLYGON)
+ pco.AddPath(subject, pyclipper.JT_ROUND, pyclipper.ET_CLOSEDPOLYGON)
shrinked = np.array(pco.Execute(-distance))
if len(shrinked) == 0 or shrinked.size == 0:
diff --git a/ppocr/data/imaug/make_shrink_map.py b/ppocr/data/imaug/make_shrink_map.py
index 15e8afa05bb9f7315a2e9342c78cb98718a54df9..6c65c20e5621f91a5b1fba549b059c92923fca6f 100644
--- a/ppocr/data/imaug/make_shrink_map.py
+++ b/ppocr/data/imaug/make_shrink_map.py
@@ -1,4 +1,20 @@
-# -*- coding:utf-8 -*-
+# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+"""
+This code is refer from:
+https://github.com/WenmuZhou/DBNet.pytorch/blob/master/data_loader/modules/make_shrink_map.py
+"""
from __future__ import absolute_import
from __future__ import division
diff --git a/ppocr/data/imaug/random_crop_data.py b/ppocr/data/imaug/random_crop_data.py
index 7c1c25abb56a0cf7d4d59b8523962bd5d81c873a..64aa110de4e3df950ce21e6d657877081b0fdd13 100644
--- a/ppocr/data/imaug/random_crop_data.py
+++ b/ppocr/data/imaug/random_crop_data.py
@@ -1,4 +1,20 @@
-# -*- coding:utf-8 -*-
+# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+"""
+This code is refer from:
+https://github.com/WenmuZhou/DBNet.pytorch/blob/master/data_loader/modules/random_crop_data.py
+"""
from __future__ import absolute_import
from __future__ import division
diff --git a/ppocr/data/imaug/rec_img_aug.py b/ppocr/data/imaug/rec_img_aug.py
index 71ed8976db7de24a489d1f75612a9a9a67995ba2..b4de6de95b09ced803375d9a3bb857194ef3e64b 100644
--- a/ppocr/data/imaug/rec_img_aug.py
+++ b/ppocr/data/imaug/rec_img_aug.py
@@ -87,17 +87,17 @@ class RecResizeImg(object):
def __init__(self,
image_shape,
infer_mode=False,
- character_type='ch',
+ character_dict_path='./ppocr/utils/ppocr_keys_v1.txt',
padding=True,
**kwargs):
self.image_shape = image_shape
self.infer_mode = infer_mode
- self.character_type = character_type
+ self.character_dict_path = character_dict_path
self.padding = padding
def __call__(self, data):
img = data['image']
- if self.infer_mode and self.character_type == "ch":
+ if self.infer_mode and self.character_dict_path is not None:
norm_img = resize_norm_img_chinese(img, self.image_shape)
else:
norm_img = resize_norm_img(img, self.image_shape, self.padding)
diff --git a/ppocr/data/imaug/sast_process.py b/ppocr/data/imaug/sast_process.py
index 1536dceb8ee5999226cfe7cf455d70e39b449530..08d03b194dcfab92ab59329857d4a1326531218e 100644
--- a/ppocr/data/imaug/sast_process.py
+++ b/ppocr/data/imaug/sast_process.py
@@ -11,7 +11,10 @@
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
-
+"""
+This part code is refered from:
+https://github.com/songdejia/EAST/blob/master/data_utils.py
+"""
import math
import cv2
import numpy as np
diff --git a/ppocr/data/imaug/text_image_aug/augment.py b/ppocr/data/imaug/text_image_aug/augment.py
index 1aeff3733a4521c56dd5972fc058f6e0c245e4b7..2d15dd5f353c72a6cc3876481c423d81a8175c95 100644
--- a/ppocr/data/imaug/text_image_aug/augment.py
+++ b/ppocr/data/imaug/text_image_aug/augment.py
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/RubanSeven/Text-Image-Augmentation-python/blob/master/augment.py
+"""
import numpy as np
from .warp_mls import WarpMLS
diff --git a/ppocr/data/imaug/text_image_aug/warp_mls.py b/ppocr/data/imaug/text_image_aug/warp_mls.py
index d6cbe749b61aa4cf3163927c096868c83f4a4cdd..75de11115cf9ba824a7cd62b8b880ea7f99e4cb2 100644
--- a/ppocr/data/imaug/text_image_aug/warp_mls.py
+++ b/ppocr/data/imaug/text_image_aug/warp_mls.py
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/RubanSeven/Text-Image-Augmentation-python/blob/master/warp_mls.py
+"""
import numpy as np
@@ -161,4 +165,4 @@ class WarpMLS:
dst = np.clip(dst, 0, 255)
dst = np.array(dst, dtype=np.uint8)
- return dst
\ No newline at end of file
+ return dst
diff --git a/ppocr/losses/ace_loss.py b/ppocr/losses/ace_loss.py
index 9c868520e5bd7b398c7f248c416b70427baee0a6..915b99e6ec1d6cb4641d8032fa188c61006dfbb3 100644
--- a/ppocr/losses/ace_loss.py
+++ b/ppocr/losses/ace_loss.py
@@ -11,6 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+
+# This code is refer from: https://github.com/viig99/LS-ACELoss
+
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
@@ -32,6 +35,7 @@ class ACELoss(nn.Layer):
def __call__(self, predicts, batch):
if isinstance(predicts, (list, tuple)):
predicts = predicts[-1]
+
B, N = predicts.shape[:2]
div = paddle.to_tensor([N]).astype('float32')
@@ -42,9 +46,7 @@ class ACELoss(nn.Layer):
length = batch[2].astype("float32")
batch = batch[3].astype("float32")
batch[:, 0] = paddle.subtract(div, length)
-
batch = paddle.divide(batch, div)
loss = self.loss_func(aggregation_preds, batch)
-
return {"loss_ace": loss}
diff --git a/ppocr/losses/center_loss.py b/ppocr/losses/center_loss.py
index 72149df19f9e9a864ec31239177dc574648da3d5..f62b8af373ed065a2fedbfa182f9692d6decefda 100644
--- a/ppocr/losses/center_loss.py
+++ b/ppocr/losses/center_loss.py
@@ -12,6 +12,8 @@
#See the License for the specific language governing permissions and
#limitations under the License.
+# This code is refer from: https://github.com/KaiyangZhou/pytorch-center-loss
+
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
@@ -28,22 +30,17 @@ class CenterLoss(nn.Layer):
Reference: Wen et al. A Discriminative Feature Learning Approach for Deep Face Recognition. ECCV 2016.
"""
- def __init__(self,
- num_classes=6625,
- feat_dim=96,
- init_center=False,
- center_file_path=None):
+ def __init__(self, num_classes=6625, feat_dim=96, center_file_path=None):
super().__init__()
self.num_classes = num_classes
self.feat_dim = feat_dim
self.centers = paddle.randn(
- shape=[self.num_classes, self.feat_dim]).astype(
- "float64") #random center
+ shape=[self.num_classes, self.feat_dim]).astype("float64")
- if init_center:
+ if center_file_path is not None:
assert os.path.exists(
center_file_path
- ), f"center path({center_file_path}) must exist when init_center is set as True."
+ ), f"center path({center_file_path}) must exist when it is not None."
with open(center_file_path, 'rb') as f:
char_dict = pickle.load(f)
for key in char_dict.keys():
@@ -60,22 +57,23 @@ class CenterLoss(nn.Layer):
batch_size = feats_reshape.shape[0]
- #calc feat * feat
- dist1 = paddle.sum(paddle.square(feats_reshape), axis=1, keepdim=True)
- dist1 = paddle.expand(dist1, [batch_size, self.num_classes])
+ #calc l2 distance between feats and centers
+ square_feat = paddle.sum(paddle.square(feats_reshape),
+ axis=1,
+ keepdim=True)
+ square_feat = paddle.expand(square_feat, [batch_size, self.num_classes])
- #dist2 of centers
- dist2 = paddle.sum(paddle.square(self.centers), axis=1,
- keepdim=True) #num_classes
- dist2 = paddle.expand(dist2,
- [self.num_classes, batch_size]).astype("float64")
- dist2 = paddle.transpose(dist2, [1, 0])
+ square_center = paddle.sum(paddle.square(self.centers),
+ axis=1,
+ keepdim=True)
+ square_center = paddle.expand(
+ square_center, [self.num_classes, batch_size]).astype("float64")
+ square_center = paddle.transpose(square_center, [1, 0])
- #first x * x + y * y
- distmat = paddle.add(dist1, dist2)
- tmp = paddle.matmul(feats_reshape,
- paddle.transpose(self.centers, [1, 0]))
- distmat = distmat - 2.0 * tmp
+ distmat = paddle.add(square_feat, square_center)
+ feat_dot_center = paddle.matmul(feats_reshape,
+ paddle.transpose(self.centers, [1, 0]))
+ distmat = distmat - 2.0 * feat_dot_center
#generate the mask
classes = paddle.arange(self.num_classes).astype("int64")
@@ -83,7 +81,8 @@ class CenterLoss(nn.Layer):
paddle.unsqueeze(label, 1), (batch_size, self.num_classes))
mask = paddle.equal(
paddle.expand(classes, [batch_size, self.num_classes]),
- label).astype("float64") #get mask
+ label).astype("float64")
dist = paddle.multiply(distmat, mask)
+
loss = paddle.sum(paddle.clip(dist, min=1e-12, max=1e+12)) / batch_size
return {'loss_center': loss}
diff --git a/ppocr/losses/det_basic_loss.py b/ppocr/losses/det_basic_loss.py
index 7017236c284e55710f242275a413d56d32158d34..61ea579b41d3cdf7831c168f563a1e3cd72463a0 100644
--- a/ppocr/losses/det_basic_loss.py
+++ b/ppocr/losses/det_basic_loss.py
@@ -11,7 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-
+"""
+This code is refer from:
+https://github.com/WenmuZhou/DBNet.pytorch/blob/master/models/losses/basic_loss.py
+"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
@@ -147,4 +150,4 @@ class BCELoss(nn.Layer):
def forward(self, input, label, mask=None, weight=None, name=None):
loss = F.binary_cross_entropy(input, label, reduction=self.reduction)
- return loss
\ No newline at end of file
+ return loss
diff --git a/ppocr/losses/det_db_loss.py b/ppocr/losses/det_db_loss.py
index b079aabff7c7deccc7e365b91c9407f7e894bcb9..708ffbdb47f349304e2bfd781a836e79348475f4 100755
--- a/ppocr/losses/det_db_loss.py
+++ b/ppocr/losses/det_db_loss.py
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/WenmuZhou/DBNet.pytorch/blob/master/models/losses/DB_loss.py
+"""
from __future__ import absolute_import
from __future__ import division
diff --git a/ppocr/losses/det_pse_loss.py b/ppocr/losses/det_pse_loss.py
index 78423091f841f29b1217f73f79beb26fe1575844..9b8ac4b5a5dfac176c398dd0a9e490e5ca67ad5f 100644
--- a/ppocr/losses/det_pse_loss.py
+++ b/ppocr/losses/det_pse_loss.py
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/whai362/PSENet/blob/python3/models/head/psenet_head.py
+"""
import paddle
from paddle import nn
diff --git a/ppocr/losses/rec_ctc_loss.py b/ppocr/losses/rec_ctc_loss.py
index 5d09802b46d7ddfa802461760b917267155b3923..063d68e30861e092e10fa3068e4b7f4755b6197f 100755
--- a/ppocr/losses/rec_ctc_loss.py
+++ b/ppocr/losses/rec_ctc_loss.py
@@ -38,7 +38,7 @@ class CTCLoss(nn.Layer):
if self.use_focal_loss:
weight = paddle.exp(-loss)
weight = paddle.subtract(paddle.to_tensor([1.0]), weight)
- weight = paddle.square(weight) * self.focal_loss_alpha
+ weight = paddle.square(weight)
loss = paddle.multiply(loss, weight)
- loss = loss.mean() # sum
+ loss = loss.mean()
return {'loss': loss}
diff --git a/ppocr/losses/rec_enhanced_ctc_loss.py b/ppocr/losses/rec_enhanced_ctc_loss.py
new file mode 100644
index 0000000000000000000000000000000000000000..b57be6468e2ec75811442e7449525267e7d9e82e
--- /dev/null
+++ b/ppocr/losses/rec_enhanced_ctc_loss.py
@@ -0,0 +1,70 @@
+# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
+import paddle
+from paddle import nn
+from .ace_loss import ACELoss
+from .center_loss import CenterLoss
+from .rec_ctc_loss import CTCLoss
+
+
+class EnhancedCTCLoss(nn.Layer):
+ def __init__(self,
+ use_focal_loss=False,
+ use_ace_loss=False,
+ ace_loss_weight=0.1,
+ use_center_loss=False,
+ center_loss_weight=0.05,
+ num_classes=6625,
+ feat_dim=96,
+ init_center=False,
+ center_file_path=None,
+ **kwargs):
+ super(EnhancedCTCLoss, self).__init__()
+ self.ctc_loss_func = CTCLoss(use_focal_loss=use_focal_loss)
+
+ self.use_ace_loss = False
+ if use_ace_loss:
+ self.use_ace_loss = use_ace_loss
+ self.ace_loss_func = ACELoss()
+ self.ace_loss_weight = ace_loss_weight
+
+ self.use_center_loss = False
+ if use_center_loss:
+ self.use_center_loss = use_center_loss
+ self.center_loss_func = CenterLoss(
+ num_classes=num_classes,
+ feat_dim=feat_dim,
+ init_center=init_center,
+ center_file_path=center_file_path)
+ self.center_loss_weight = center_loss_weight
+
+ def __call__(self, predicts, batch):
+ loss = self.ctc_loss_func(predicts, batch)["loss"]
+
+ if self.use_center_loss:
+ center_loss = self.center_loss_func(
+ predicts, batch)["loss_center"] * self.center_loss_weight
+ loss = loss + center_loss
+
+ if self.use_ace_loss:
+ ace_loss = self.ace_loss_func(
+ predicts, batch)["loss_ace"] * self.ace_loss_weight
+ loss = loss + ace_loss
+
+ return {'enhanced_ctc_loss': loss}
diff --git a/ppocr/losses/rec_nrtr_loss.py b/ppocr/losses/rec_nrtr_loss.py
index 41714dd2a3ae15eeedc62521d97935f68271c598..200a6d0486dbf6f76dd674eb58f641b31a70f31c 100644
--- a/ppocr/losses/rec_nrtr_loss.py
+++ b/ppocr/losses/rec_nrtr_loss.py
@@ -22,7 +22,7 @@ class NRTRLoss(nn.Layer):
log_prb = F.log_softmax(pred, axis=1)
non_pad_mask = paddle.not_equal(
tgt, paddle.zeros(
- tgt.shape, dtype='int64'))
+ tgt.shape, dtype=tgt.dtype))
loss = -(one_hot * log_prb).sum(axis=1)
loss = loss.masked_select(non_pad_mask).mean()
else:
diff --git a/ppocr/losses/rec_sar_loss.py b/ppocr/losses/rec_sar_loss.py
index 9e1c6495fb5ffa274662a3d1031b174d7297ee30..c8bd8bb0ca395fa4658e57b8dcac52a3e94aadce 100644
--- a/ppocr/losses/rec_sar_loss.py
+++ b/ppocr/losses/rec_sar_loss.py
@@ -9,11 +9,14 @@ from paddle import nn
class SARLoss(nn.Layer):
def __init__(self, **kwargs):
super(SARLoss, self).__init__()
- self.loss_func = paddle.nn.loss.CrossEntropyLoss(reduction="mean", ignore_index=96)
+ self.loss_func = paddle.nn.loss.CrossEntropyLoss(
+ reduction="mean", ignore_index=92)
def forward(self, predicts, batch):
- predict = predicts[:, :-1, :] # ignore last index of outputs to be in same seq_len with targets
- label = batch[1].astype("int64")[:, 1:] # ignore first index of target in loss calculation
+ predict = predicts[:, :
+ -1, :] # ignore last index of outputs to be in same seq_len with targets
+ label = batch[1].astype(
+ "int64")[:, 1:] # ignore first index of target in loss calculation
batch_size, num_steps, num_classes = predict.shape[0], predict.shape[
1], predict.shape[2]
assert len(label.shape) == len(list(predict.shape)) - 1, \
diff --git a/ppocr/modeling/architectures/distillation_model.py b/ppocr/modeling/architectures/distillation_model.py
index 1e95fe574433eaca6f322ff47c8547cc1a29a248..5e867940e796841111fc668a0b3eb12547807d76 100644
--- a/ppocr/modeling/architectures/distillation_model.py
+++ b/ppocr/modeling/architectures/distillation_model.py
@@ -21,7 +21,7 @@ from ppocr.modeling.backbones import build_backbone
from ppocr.modeling.necks import build_neck
from ppocr.modeling.heads import build_head
from .base_model import BaseModel
-from ppocr.utils.save_load import init_model, load_pretrained_params
+from ppocr.utils.save_load import load_pretrained_params
__all__ = ['DistillationModel']
diff --git a/ppocr/modeling/backbones/rec_mv1_enhance.py b/ppocr/modeling/backbones/rec_mv1_enhance.py
index fe874fac1af439bfb47ba9050a61f02db302e224..d8a7f4b5646eb70b5202aa3b3ac6494318b424ad 100644
--- a/ppocr/modeling/backbones/rec_mv1_enhance.py
+++ b/ppocr/modeling/backbones/rec_mv1_enhance.py
@@ -1,4 +1,4 @@
-# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
+# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -12,30 +12,23 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+# This code is refer from: https://github.com/PaddlePaddle/PaddleClas/blob/develop/ppcls/arch/backbone/legendary_models/pp_lcnet.py
+
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
-import numpy as np
-import paddle
-from paddle import ParamAttr
-import paddle.nn as nn
-import paddle.nn.functional as F
-from paddle.nn import Conv2D, BatchNorm, Linear, Dropout
-from paddle.nn import AdaptiveAvgPool2D, MaxPool2D, AvgPool2D
-from paddle.nn.initializer import KaimingNormal
import math
import numpy as np
import paddle
-from paddle import ParamAttr, reshape, transpose, concat, split
+from paddle import ParamAttr, reshape, transpose
import paddle.nn as nn
import paddle.nn.functional as F
from paddle.nn import Conv2D, BatchNorm, Linear, Dropout
from paddle.nn import AdaptiveAvgPool2D, MaxPool2D, AvgPool2D
from paddle.nn.initializer import KaimingNormal
-import math
-from paddle.nn.functional import hardswish, hardsigmoid
from paddle.regularizer import L2Decay
+from paddle.nn.functional import hardswish, hardsigmoid
class ConvBNLayer(nn.Layer):
diff --git a/ppocr/modeling/backbones/rec_resnet_31.py b/ppocr/modeling/backbones/rec_resnet_31.py
index f60729cdcced2af7626e5615ca323e32c99432ec..965170138d00a53fca720b3b5f535a3dd34272d9 100644
--- a/ppocr/modeling/backbones/rec_resnet_31.py
+++ b/ppocr/modeling/backbones/rec_resnet_31.py
@@ -1,3 +1,22 @@
+# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+"""
+This code is refer from:
+https://github.com/open-mmlab/mmocr/blob/main/mmocr/models/textrecog/layers/conv_layer.py
+https://github.com/open-mmlab/mmocr/blob/main/mmocr/models/textrecog/backbones/resnet31_ocr.py
+"""
+
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
@@ -18,12 +37,12 @@ def conv3x3(in_channel, out_channel, stride=1):
kernel_size=3,
stride=stride,
padding=1,
- bias_attr=False
- )
+ bias_attr=False)
class BasicBlock(nn.Layer):
expansion = 1
+
def __init__(self, in_channels, channels, stride=1, downsample=False):
super().__init__()
self.conv1 = conv3x3(in_channels, channels, stride)
@@ -34,9 +53,13 @@ class BasicBlock(nn.Layer):
self.downsample = downsample
if downsample:
self.downsample = nn.Sequential(
- nn.Conv2D(in_channels, channels * self.expansion, 1, stride, bias_attr=False),
- nn.BatchNorm2D(channels * self.expansion),
- )
+ nn.Conv2D(
+ in_channels,
+ channels * self.expansion,
+ 1,
+ stride,
+ bias_attr=False),
+ nn.BatchNorm2D(channels * self.expansion), )
else:
self.downsample = nn.Sequential()
self.stride = stride
@@ -57,7 +80,7 @@ class BasicBlock(nn.Layer):
out += residual
out = self.relu(out)
- return out
+ return out
class ResNet31(nn.Layer):
@@ -69,12 +92,13 @@ class ResNet31(nn.Layer):
out_indices (None | Sequence[int]): Indices of output stages.
last_stage_pool (bool): If True, add `MaxPool2d` layer to last stage.
'''
- def __init__(self,
- in_channels=3,
- layers=[1, 2, 5, 3],
- channels=[64, 128, 256, 256, 512, 512, 512],
- out_indices=None,
- last_stage_pool=False):
+
+ def __init__(self,
+ in_channels=3,
+ layers=[1, 2, 5, 3],
+ channels=[64, 128, 256, 256, 512, 512, 512],
+ out_indices=None,
+ last_stage_pool=False):
super(ResNet31, self).__init__()
assert isinstance(in_channels, int)
assert isinstance(last_stage_pool, bool)
@@ -83,46 +107,56 @@ class ResNet31(nn.Layer):
self.last_stage_pool = last_stage_pool
# conv 1 (Conv Conv)
- self.conv1_1 = nn.Conv2D(in_channels, channels[0], kernel_size=3, stride=1, padding=1)
+ self.conv1_1 = nn.Conv2D(
+ in_channels, channels[0], kernel_size=3, stride=1, padding=1)
self.bn1_1 = nn.BatchNorm2D(channels[0])
self.relu1_1 = nn.ReLU()
- self.conv1_2 = nn.Conv2D(channels[0], channels[1], kernel_size=3, stride=1, padding=1)
+ self.conv1_2 = nn.Conv2D(
+ channels[0], channels[1], kernel_size=3, stride=1, padding=1)
self.bn1_2 = nn.BatchNorm2D(channels[1])
self.relu1_2 = nn.ReLU()
# conv 2 (Max-pooling, Residual block, Conv)
- self.pool2 = nn.MaxPool2D(kernel_size=2, stride=2, padding=0, ceil_mode=True)
+ self.pool2 = nn.MaxPool2D(
+ kernel_size=2, stride=2, padding=0, ceil_mode=True)
self.block2 = self._make_layer(channels[1], channels[2], layers[0])
- self.conv2 = nn.Conv2D(channels[2], channels[2], kernel_size=3, stride=1, padding=1)
+ self.conv2 = nn.Conv2D(
+ channels[2], channels[2], kernel_size=3, stride=1, padding=1)
self.bn2 = nn.BatchNorm2D(channels[2])
self.relu2 = nn.ReLU()
# conv 3 (Max-pooling, Residual block, Conv)
- self.pool3 = nn.MaxPool2D(kernel_size=2, stride=2, padding=0, ceil_mode=True)
+ self.pool3 = nn.MaxPool2D(
+ kernel_size=2, stride=2, padding=0, ceil_mode=True)
self.block3 = self._make_layer(channels[2], channels[3], layers[1])
- self.conv3 = nn.Conv2D(channels[3], channels[3], kernel_size=3, stride=1, padding=1)
+ self.conv3 = nn.Conv2D(
+ channels[3], channels[3], kernel_size=3, stride=1, padding=1)
self.bn3 = nn.BatchNorm2D(channels[3])
self.relu3 = nn.ReLU()
# conv 4 (Max-pooling, Residual block, Conv)
- self.pool4 = nn.MaxPool2D(kernel_size=(2, 1), stride=(2, 1), padding=0, ceil_mode=True)
+ self.pool4 = nn.MaxPool2D(
+ kernel_size=(2, 1), stride=(2, 1), padding=0, ceil_mode=True)
self.block4 = self._make_layer(channels[3], channels[4], layers[2])
- self.conv4 = nn.Conv2D(channels[4], channels[4], kernel_size=3, stride=1, padding=1)
+ self.conv4 = nn.Conv2D(
+ channels[4], channels[4], kernel_size=3, stride=1, padding=1)
self.bn4 = nn.BatchNorm2D(channels[4])
self.relu4 = nn.ReLU()
# conv 5 ((Max-pooling), Residual block, Conv)
self.pool5 = None
if self.last_stage_pool:
- self.pool5 = nn.MaxPool2D(kernel_size=2, stride=2, padding=0, ceil_mode=True)
+ self.pool5 = nn.MaxPool2D(
+ kernel_size=2, stride=2, padding=0, ceil_mode=True)
self.block5 = self._make_layer(channels[4], channels[5], layers[3])
- self.conv5 = nn.Conv2D(channels[5], channels[5], kernel_size=3, stride=1, padding=1)
+ self.conv5 = nn.Conv2D(
+ channels[5], channels[5], kernel_size=3, stride=1, padding=1)
self.bn5 = nn.BatchNorm2D(channels[5])
self.relu5 = nn.ReLU()
self.out_channels = channels[-1]
-
+
def _make_layer(self, input_channels, output_channels, blocks):
layers = []
for _ in range(blocks):
@@ -130,19 +164,19 @@ class ResNet31(nn.Layer):
if input_channels != output_channels:
downsample = nn.Sequential(
nn.Conv2D(
- input_channels,
- output_channels,
- kernel_size=1,
- stride=1,
+ input_channels,
+ output_channels,
+ kernel_size=1,
+ stride=1,
bias_attr=False),
- nn.BatchNorm2D(output_channels),
- )
-
- layers.append(BasicBlock(input_channels, output_channels, downsample=downsample))
+ nn.BatchNorm2D(output_channels), )
+
+ layers.append(
+ BasicBlock(
+ input_channels, output_channels, downsample=downsample))
input_channels = output_channels
return nn.Sequential(*layers)
-
def forward(self, x):
x = self.conv1_1(x)
x = self.bn1_1(x)
@@ -166,11 +200,11 @@ class ResNet31(nn.Layer):
x = block_layer(x)
x = conv_layer(x)
x = bn_layer(x)
- x= relu_layer(x)
+ x = relu_layer(x)
outs.append(x)
-
+
if self.out_indices is not None:
return tuple([outs[i] for i in self.out_indices])
-
+
return x
diff --git a/ppocr/modeling/backbones/rec_resnet_aster.py b/ppocr/modeling/backbones/rec_resnet_aster.py
index bdecaf46af98f9b967d9a339f82d4e938abdc6d9..6a2710dfa079b4d910146c10ca2cff31321b2513 100644
--- a/ppocr/modeling/backbones/rec_resnet_aster.py
+++ b/ppocr/modeling/backbones/rec_resnet_aster.py
@@ -11,7 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-
+"""
+This code is refer from:
+https://github.com/ayumiymk/aster.pytorch/blob/master/lib/models/resnet_aster.py
+"""
import paddle
import paddle.nn as nn
diff --git a/ppocr/modeling/heads/det_pse_head.py b/ppocr/modeling/heads/det_pse_head.py
index db800f57a216ab437b724988ce692a9ac0c545d9..32a5b48e190b7566411b19841b6aa14455b5d41d 100644
--- a/ppocr/modeling/heads/det_pse_head.py
+++ b/ppocr/modeling/heads/det_pse_head.py
@@ -1,4 +1,4 @@
-# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
+# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -11,22 +11,24 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/whai362/PSENet/blob/python3/models/head/psenet_head.py
+"""
+
from paddle import nn
class PSEHead(nn.Layer):
- def __init__(self,
- in_channels,
- hidden_dim=256,
- out_channels=7,
- **kwargs):
+ def __init__(self, in_channels, hidden_dim=256, out_channels=7, **kwargs):
super(PSEHead, self).__init__()
- self.conv1 = nn.Conv2D(in_channels, hidden_dim, kernel_size=3, stride=1, padding=1)
+ self.conv1 = nn.Conv2D(
+ in_channels, hidden_dim, kernel_size=3, stride=1, padding=1)
self.bn1 = nn.BatchNorm2D(hidden_dim)
self.relu1 = nn.ReLU()
- self.conv2 = nn.Conv2D(hidden_dim, out_channels, kernel_size=1, stride=1, padding=0)
-
+ self.conv2 = nn.Conv2D(
+ hidden_dim, out_channels, kernel_size=1, stride=1, padding=0)
def forward(self, x, **kwargs):
out = self.conv1(x)
diff --git a/ppocr/modeling/heads/rec_aster_head.py b/ppocr/modeling/heads/rec_aster_head.py
index 4961897b409020fe6cff72eb96f3257156fa33ac..9240f002d3a8bcbde517142be6b45559430de610 100644
--- a/ppocr/modeling/heads/rec_aster_head.py
+++ b/ppocr/modeling/heads/rec_aster_head.py
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/ayumiymk/aster.pytorch/blob/master/lib/models/attention_recognition_head.py
+"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
diff --git a/ppocr/modeling/heads/rec_att_head.py b/ppocr/modeling/heads/rec_att_head.py
index 4286d7691d1abcf80c283d1c1ab76f8cd1f4a634..ab8b119fe08ac79a6b98a449bb117da018df2ff3 100644
--- a/ppocr/modeling/heads/rec_att_head.py
+++ b/ppocr/modeling/heads/rec_att_head.py
@@ -53,7 +53,6 @@ class AttentionHead(nn.Layer):
output_hiddens.append(paddle.unsqueeze(outputs, axis=1))
output = paddle.concat(output_hiddens, axis=1)
probs = self.generator(output)
-
else:
targets = paddle.zeros(shape=[batch_size], dtype="int32")
probs = None
@@ -75,7 +74,8 @@ class AttentionHead(nn.Layer):
probs_step, axis=1)], axis=1)
next_input = probs_step.argmax(axis=1)
targets = next_input
-
+ if not self.training:
+ probs = paddle.nn.functional.softmax(probs, axis=2)
return probs
diff --git a/ppocr/modeling/heads/rec_sar_head.py b/ppocr/modeling/heads/rec_sar_head.py
index 7107788d9ef3b49ac6d4dcd4a8133a9603ada19b..a46cce7de2c8e59cf797db96fc6fcb7e25fa549a 100644
--- a/ppocr/modeling/heads/rec_sar_head.py
+++ b/ppocr/modeling/heads/rec_sar_head.py
@@ -1,3 +1,22 @@
+# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+"""
+This code is refer from:
+https://github.com/open-mmlab/mmocr/blob/main/mmocr/models/textrecog/encoders/sar_encoder.py
+https://github.com/open-mmlab/mmocr/blob/main/mmocr/models/textrecog/decoders/sar_decoder.py
+"""
+
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
@@ -275,7 +294,6 @@ class ParallelSARDecoder(BaseDecoder):
if img_metas is not None and self.mask:
valid_ratios = img_metas[-1]
- label = label.cuda()
lab_embedding = self.embedding(label)
# bsz * seq_len * emb_dim
out_enc = out_enc.unsqueeze(1)
diff --git a/ppocr/modeling/heads/table_att_head.py b/ppocr/modeling/heads/table_att_head.py
index 155f036d15673135eae9e5ee493648603609535d..e354f40d6518c1f7ca22e93694b1c6668fc003d2 100644
--- a/ppocr/modeling/heads/table_att_head.py
+++ b/ppocr/modeling/heads/table_att_head.py
@@ -23,32 +23,40 @@ import numpy as np
class TableAttentionHead(nn.Layer):
- def __init__(self, in_channels, hidden_size, loc_type, in_max_len=488, **kwargs):
+ def __init__(self,
+ in_channels,
+ hidden_size,
+ loc_type,
+ in_max_len=488,
+ max_text_length=100,
+ max_elem_length=800,
+ max_cell_num=500,
+ **kwargs):
super(TableAttentionHead, self).__init__()
self.input_size = in_channels[-1]
self.hidden_size = hidden_size
self.elem_num = 30
- self.max_text_length = 100
- self.max_elem_length = 500
- self.max_cell_num = 500
+ self.max_text_length = max_text_length
+ self.max_elem_length = max_elem_length
+ self.max_cell_num = max_cell_num
self.structure_attention_cell = AttentionGRUCell(
self.input_size, hidden_size, self.elem_num, use_gru=False)
self.structure_generator = nn.Linear(hidden_size, self.elem_num)
self.loc_type = loc_type
self.in_max_len = in_max_len
-
+
if self.loc_type == 1:
self.loc_generator = nn.Linear(hidden_size, 4)
else:
if self.in_max_len == 640:
- self.loc_fea_trans = nn.Linear(400, self.max_elem_length+1)
+ self.loc_fea_trans = nn.Linear(400, self.max_elem_length + 1)
elif self.in_max_len == 800:
- self.loc_fea_trans = nn.Linear(625, self.max_elem_length+1)
+ self.loc_fea_trans = nn.Linear(625, self.max_elem_length + 1)
else:
- self.loc_fea_trans = nn.Linear(256, self.max_elem_length+1)
+ self.loc_fea_trans = nn.Linear(256, self.max_elem_length + 1)
self.loc_generator = nn.Linear(self.input_size + hidden_size, 4)
-
+
def _char_to_onehot(self, input_char, onehot_dim):
input_ont_hot = F.one_hot(input_char, onehot_dim)
return input_ont_hot
@@ -60,16 +68,16 @@ class TableAttentionHead(nn.Layer):
if len(fea.shape) == 3:
pass
else:
- last_shape = int(np.prod(fea.shape[2:])) # gry added
+ last_shape = int(np.prod(fea.shape[2:])) # gry added
fea = paddle.reshape(fea, [fea.shape[0], fea.shape[1], last_shape])
fea = fea.transpose([0, 2, 1]) # (NTC)(batch, width, channels)
batch_size = fea.shape[0]
-
+
hidden = paddle.zeros((batch_size, self.hidden_size))
output_hiddens = []
if self.training and targets is not None:
structure = targets[0]
- for i in range(self.max_elem_length+1):
+ for i in range(self.max_elem_length + 1):
elem_onehots = self._char_to_onehot(
structure[:, i], onehot_dim=self.elem_num)
(outputs, hidden), alpha = self.structure_attention_cell(
@@ -96,7 +104,7 @@ class TableAttentionHead(nn.Layer):
alpha = None
max_elem_length = paddle.to_tensor(self.max_elem_length)
i = 0
- while i < max_elem_length+1:
+ while i < max_elem_length + 1:
elem_onehots = self._char_to_onehot(
temp_elem, onehot_dim=self.elem_num)
(outputs, hidden), alpha = self.structure_attention_cell(
@@ -105,7 +113,7 @@ class TableAttentionHead(nn.Layer):
structure_probs_step = self.structure_generator(outputs)
temp_elem = structure_probs_step.argmax(axis=1, dtype="int32")
i += 1
-
+
output = paddle.concat(output_hiddens, axis=1)
structure_probs = self.structure_generator(output)
structure_probs = F.softmax(structure_probs)
@@ -119,9 +127,9 @@ class TableAttentionHead(nn.Layer):
loc_concat = paddle.concat([output, loc_fea], axis=2)
loc_preds = self.loc_generator(loc_concat)
loc_preds = F.sigmoid(loc_preds)
- return {'structure_probs':structure_probs, 'loc_preds':loc_preds}
+ return {'structure_probs': structure_probs, 'loc_preds': loc_preds}
+
-
class AttentionGRUCell(nn.Layer):
def __init__(self, input_size, hidden_size, num_embeddings, use_gru=False):
super(AttentionGRUCell, self).__init__()
diff --git a/ppocr/modeling/necks/fpn.py b/ppocr/modeling/necks/fpn.py
index 8728a5c9ded5b9c174fd34f088d8012961f65ec0..48c85b1e53bd889bc887e8fedcd33b1b12cb734b 100644
--- a/ppocr/modeling/necks/fpn.py
+++ b/ppocr/modeling/necks/fpn.py
@@ -11,64 +11,102 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/whai362/PSENet/blob/python3/models/neck/fpn.py
+"""
import paddle.nn as nn
import paddle
import math
import paddle.nn.functional as F
+
class Conv_BN_ReLU(nn.Layer):
- def __init__(self, in_planes, out_planes, kernel_size=1, stride=1, padding=0):
+ def __init__(self,
+ in_planes,
+ out_planes,
+ kernel_size=1,
+ stride=1,
+ padding=0):
super(Conv_BN_ReLU, self).__init__()
- self.conv = nn.Conv2D(in_planes, out_planes, kernel_size=kernel_size, stride=stride, padding=padding,
- bias_attr=False)
+ self.conv = nn.Conv2D(
+ in_planes,
+ out_planes,
+ kernel_size=kernel_size,
+ stride=stride,
+ padding=padding,
+ bias_attr=False)
self.bn = nn.BatchNorm2D(out_planes, momentum=0.1)
self.relu = nn.ReLU()
for m in self.sublayers():
if isinstance(m, nn.Conv2D):
n = m._kernel_size[0] * m._kernel_size[1] * m._out_channels
- m.weight = paddle.create_parameter(shape=m.weight.shape, dtype='float32', default_initializer=paddle.nn.initializer.Normal(0, math.sqrt(2. / n)))
+ m.weight = paddle.create_parameter(
+ shape=m.weight.shape,
+ dtype='float32',
+ default_initializer=paddle.nn.initializer.Normal(
+ 0, math.sqrt(2. / n)))
elif isinstance(m, nn.BatchNorm2D):
- m.weight = paddle.create_parameter(shape=m.weight.shape, dtype='float32', default_initializer=paddle.nn.initializer.Constant(1.0))
- m.bias = paddle.create_parameter(shape=m.bias.shape, dtype='float32', default_initializer=paddle.nn.initializer.Constant(0.0))
+ m.weight = paddle.create_parameter(
+ shape=m.weight.shape,
+ dtype='float32',
+ default_initializer=paddle.nn.initializer.Constant(1.0))
+ m.bias = paddle.create_parameter(
+ shape=m.bias.shape,
+ dtype='float32',
+ default_initializer=paddle.nn.initializer.Constant(0.0))
def forward(self, x):
return self.relu(self.bn(self.conv(x)))
+
class FPN(nn.Layer):
def __init__(self, in_channels, out_channels):
super(FPN, self).__init__()
# Top layer
- self.toplayer_ = Conv_BN_ReLU(in_channels[3], out_channels, kernel_size=1, stride=1, padding=0)
+ self.toplayer_ = Conv_BN_ReLU(
+ in_channels[3], out_channels, kernel_size=1, stride=1, padding=0)
# Lateral layers
- self.latlayer1_ = Conv_BN_ReLU(in_channels[2], out_channels, kernel_size=1, stride=1, padding=0)
+ self.latlayer1_ = Conv_BN_ReLU(
+ in_channels[2], out_channels, kernel_size=1, stride=1, padding=0)
- self.latlayer2_ = Conv_BN_ReLU(in_channels[1], out_channels, kernel_size=1, stride=1, padding=0)
+ self.latlayer2_ = Conv_BN_ReLU(
+ in_channels[1], out_channels, kernel_size=1, stride=1, padding=0)
- self.latlayer3_ = Conv_BN_ReLU(in_channels[0], out_channels, kernel_size=1, stride=1, padding=0)
+ self.latlayer3_ = Conv_BN_ReLU(
+ in_channels[0], out_channels, kernel_size=1, stride=1, padding=0)
# Smooth layers
- self.smooth1_ = Conv_BN_ReLU(out_channels, out_channels, kernel_size=3, stride=1, padding=1)
-
- self.smooth2_ = Conv_BN_ReLU(out_channels, out_channels, kernel_size=3, stride=1, padding=1)
+ self.smooth1_ = Conv_BN_ReLU(
+ out_channels, out_channels, kernel_size=3, stride=1, padding=1)
- self.smooth3_ = Conv_BN_ReLU(out_channels, out_channels, kernel_size=3, stride=1, padding=1)
+ self.smooth2_ = Conv_BN_ReLU(
+ out_channels, out_channels, kernel_size=3, stride=1, padding=1)
+ self.smooth3_ = Conv_BN_ReLU(
+ out_channels, out_channels, kernel_size=3, stride=1, padding=1)
self.out_channels = out_channels * 4
for m in self.sublayers():
if isinstance(m, nn.Conv2D):
n = m._kernel_size[0] * m._kernel_size[1] * m._out_channels
- m.weight = paddle.create_parameter(shape=m.weight.shape, dtype='float32',
- default_initializer=paddle.nn.initializer.Normal(0,
- math.sqrt(2. / n)))
+ m.weight = paddle.create_parameter(
+ shape=m.weight.shape,
+ dtype='float32',
+ default_initializer=paddle.nn.initializer.Normal(
+ 0, math.sqrt(2. / n)))
elif isinstance(m, nn.BatchNorm2D):
- m.weight = paddle.create_parameter(shape=m.weight.shape, dtype='float32',
- default_initializer=paddle.nn.initializer.Constant(1.0))
- m.bias = paddle.create_parameter(shape=m.bias.shape, dtype='float32',
- default_initializer=paddle.nn.initializer.Constant(0.0))
+ m.weight = paddle.create_parameter(
+ shape=m.weight.shape,
+ dtype='float32',
+ default_initializer=paddle.nn.initializer.Constant(1.0))
+ m.bias = paddle.create_parameter(
+ shape=m.bias.shape,
+ dtype='float32',
+ default_initializer=paddle.nn.initializer.Constant(0.0))
def _upsample(self, x, scale=1):
return F.upsample(x, scale_factor=scale, mode='bilinear')
@@ -81,15 +119,15 @@ class FPN(nn.Layer):
p5 = self.toplayer_(f5)
f4 = self.latlayer1_(f4)
- p4 = self._upsample_add(p5, f4,2)
+ p4 = self._upsample_add(p5, f4, 2)
p4 = self.smooth1_(p4)
f3 = self.latlayer2_(f3)
- p3 = self._upsample_add(p4, f3,2)
+ p3 = self._upsample_add(p4, f3, 2)
p3 = self.smooth2_(p3)
f2 = self.latlayer3_(f2)
- p2 = self._upsample_add(p3, f2,2)
+ p2 = self._upsample_add(p3, f2, 2)
p2 = self.smooth3_(p2)
p3 = self._upsample(p3, 2)
@@ -97,4 +135,4 @@ class FPN(nn.Layer):
p5 = self._upsample(p5, 8)
fuse = paddle.concat([p2, p3, p4, p5], axis=1)
- return fuse
\ No newline at end of file
+ return fuse
diff --git a/ppocr/modeling/necks/rnn.py b/ppocr/modeling/necks/rnn.py
index de87b3d9895168657f8c9722177c026b992c2966..86e649028f8fbb76cb5a1fd85381bd361277c6ee 100644
--- a/ppocr/modeling/necks/rnn.py
+++ b/ppocr/modeling/necks/rnn.py
@@ -51,7 +51,7 @@ class EncoderWithFC(nn.Layer):
super(EncoderWithFC, self).__init__()
self.out_channels = hidden_size
weight_attr, bias_attr = get_para_bias_attr(
- l2_decay=0.00001, k=in_channels, name='reduce_encoder_fea')
+ l2_decay=0.00001, k=in_channels)
self.fc = nn.Linear(
in_channels,
hidden_size,
diff --git a/ppocr/modeling/transforms/stn.py b/ppocr/modeling/transforms/stn.py
index 215895f4c4c719f407f4998f7429d965e0529ddc..6f2bdda050f217d8253740001901fbff4065782a 100644
--- a/ppocr/modeling/transforms/stn.py
+++ b/ppocr/modeling/transforms/stn.py
@@ -11,7 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-
+"""
+This code is refer from:
+https://github.com/ayumiymk/aster.pytorch/blob/master/lib/models/stn_head.py
+"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
diff --git a/ppocr/modeling/transforms/tps.py b/ppocr/modeling/transforms/tps.py
index 6cd68555369dd1ddbd6ccf5236688a4b957b8525..9bdab0f85112b90d8da959dce4e258188a812052 100644
--- a/ppocr/modeling/transforms/tps.py
+++ b/ppocr/modeling/transforms/tps.py
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/clovaai/deep-text-recognition-benchmark/blob/master/modules/transformation.py
+"""
from __future__ import absolute_import
from __future__ import division
diff --git a/ppocr/modeling/transforms/tps_spatial_transformer.py b/ppocr/modeling/transforms/tps_spatial_transformer.py
index b510acb0d4012c9a4d90c7ca07cac895f0bf242e..4db34f7b4833c1c9b2901c68899bfb294b5843c4 100644
--- a/ppocr/modeling/transforms/tps_spatial_transformer.py
+++ b/ppocr/modeling/transforms/tps_spatial_transformer.py
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/ayumiymk/aster.pytorch/blob/master/lib/models/tps_spatial_transformer.py
+"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
diff --git a/ppocr/postprocess/__init__.py b/ppocr/postprocess/__init__.py
index dd549e17d883b737506805059f478cef70e82048..37dadd12d3f628b1802b6a31f611f49f3ac600c2 100644
--- a/ppocr/postprocess/__init__.py
+++ b/ppocr/postprocess/__init__.py
@@ -18,7 +18,6 @@ from __future__ import print_function
from __future__ import unicode_literals
import copy
-import platform
__all__ = ['build_post_process']
@@ -26,24 +25,24 @@ from .db_postprocess import DBPostProcess, DistillationDBPostProcess
from .east_postprocess import EASTPostProcess
from .sast_postprocess import SASTPostProcess
from .rec_postprocess import CTCLabelDecode, AttnLabelDecode, SRNLabelDecode, DistillationCTCLabelDecode, \
- TableLabelDecode, NRTRLabelDecode, SARLabelDecode , SEEDLabelDecode
+ TableLabelDecode, NRTRLabelDecode, SARLabelDecode, SEEDLabelDecode
from .cls_postprocess import ClsPostProcess
from .pg_postprocess import PGPostProcess
-if platform.system() != "Windows":
- # pse is not support in Windows
- from .pse_postprocess import PSEPostProcess
-
def build_post_process(config, global_config=None):
support_dict = [
- 'DBPostProcess', 'PSEPostProcess', 'EASTPostProcess', 'SASTPostProcess',
- 'CTCLabelDecode', 'AttnLabelDecode', 'ClsPostProcess', 'SRNLabelDecode',
- 'PGPostProcess', 'DistillationCTCLabelDecode', 'TableLabelDecode',
+ 'DBPostProcess', 'EASTPostProcess', 'SASTPostProcess', 'CTCLabelDecode',
+ 'AttnLabelDecode', 'ClsPostProcess', 'SRNLabelDecode', 'PGPostProcess',
+ 'DistillationCTCLabelDecode', 'TableLabelDecode',
'DistillationDBPostProcess', 'NRTRLabelDecode', 'SARLabelDecode',
'SEEDLabelDecode'
]
+ if config['name'] == 'PSEPostProcess':
+ from .pse_postprocess import PSEPostProcess
+ support_dict.append('PSEPostProcess')
+
config = copy.deepcopy(config)
module_name = config.pop('name')
if module_name == "None":
diff --git a/ppocr/postprocess/db_postprocess.py b/ppocr/postprocess/db_postprocess.py
index d9c9869dfcd35cb9b491db826f3bff5f766723f4..27b428ef2e73c9abf81d3881b23979343c8595b2 100755
--- a/ppocr/postprocess/db_postprocess.py
+++ b/ppocr/postprocess/db_postprocess.py
@@ -11,7 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-
+"""
+This code is refered from:
+https://github.com/WenmuZhou/DBNet.pytorch/blob/master/post_processing/seg_detector_representer.py
+"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
@@ -190,7 +193,8 @@ class DBPostProcess(object):
class DistillationDBPostProcess(object):
- def __init__(self, model_name=["student"],
+ def __init__(self,
+ model_name=["student"],
key=None,
thresh=0.3,
box_thresh=0.6,
@@ -201,12 +205,13 @@ class DistillationDBPostProcess(object):
**kwargs):
self.model_name = model_name
self.key = key
- self.post_process = DBPostProcess(thresh=thresh,
- box_thresh=box_thresh,
- max_candidates=max_candidates,
- unclip_ratio=unclip_ratio,
- use_dilation=use_dilation,
- score_mode=score_mode)
+ self.post_process = DBPostProcess(
+ thresh=thresh,
+ box_thresh=box_thresh,
+ max_candidates=max_candidates,
+ unclip_ratio=unclip_ratio,
+ use_dilation=use_dilation,
+ score_mode=score_mode)
def __call__(self, predicts, shape_list):
results = {}
diff --git a/ppocr/postprocess/east_postprocess.py b/ppocr/postprocess/east_postprocess.py
index ceee727aa3df052041aee925c6c856773c8a288e..ec6bf663854d3391bf8c584aa749dc6d1805d344 100755
--- a/ppocr/postprocess/east_postprocess.py
+++ b/ppocr/postprocess/east_postprocess.py
@@ -20,6 +20,7 @@ import numpy as np
from .locality_aware_nms import nms_locality
import cv2
import paddle
+import lanms
import os
import sys
@@ -29,6 +30,7 @@ class EASTPostProcess(object):
"""
The post process for EAST.
"""
+
def __init__(self,
score_thresh=0.8,
cover_thresh=0.1,
@@ -38,11 +40,6 @@ class EASTPostProcess(object):
self.score_thresh = score_thresh
self.cover_thresh = cover_thresh
self.nms_thresh = nms_thresh
-
- # c++ la-nms is faster, but only support python 3.5
- self.is_python35 = False
- if sys.version_info.major == 3 and sys.version_info.minor == 5:
- self.is_python35 = True
def restore_rectangle_quad(self, origin, geometry):
"""
@@ -79,11 +76,8 @@ class EASTPostProcess(object):
boxes = np.zeros((text_box_restored.shape[0], 9), dtype=np.float32)
boxes[:, :8] = text_box_restored.reshape((-1, 8))
boxes[:, 8] = score_map[xy_text[:, 0], xy_text[:, 1]]
- if self.is_python35:
- import lanms
- boxes = lanms.merge_quadrangle_n9(boxes, nms_thresh)
- else:
- boxes = nms_locality(boxes.astype(np.float64), nms_thresh)
+ boxes = lanms.merge_quadrangle_n9(boxes, nms_thresh)
+ # boxes = nms_locality(boxes.astype(np.float64), nms_thresh)
if boxes.shape[0] == 0:
return []
# Here we filter some low score boxes by the average score map,
@@ -139,4 +133,4 @@ class EASTPostProcess(object):
continue
boxes_norm.append(box)
dt_boxes_list.append({'points': np.array(boxes_norm)})
- return dt_boxes_list
\ No newline at end of file
+ return dt_boxes_list
diff --git a/ppocr/postprocess/locality_aware_nms.py b/ppocr/postprocess/locality_aware_nms.py
index 53280cc13ed7e41859e23e2517938d4f6eb07076..d305ef681882b4a393a73190bcbd20a65d1f0c15 100644
--- a/ppocr/postprocess/locality_aware_nms.py
+++ b/ppocr/postprocess/locality_aware_nms.py
@@ -1,5 +1,6 @@
"""
Locality aware nms.
+This code is refered from: https://github.com/songdejia/EAST/blob/master/locality_aware_nms.py
"""
import numpy as np
diff --git a/ppocr/postprocess/pse_postprocess/pse/README.md b/ppocr/postprocess/pse_postprocess/pse/README.md
index 9c2d9eaeaa5f93550358ebdd4d9161330b78a86f..6a19d5d1b6b1d8e6952eb054d74c6672ed10bc48 100644
--- a/ppocr/postprocess/pse_postprocess/pse/README.md
+++ b/ppocr/postprocess/pse_postprocess/pse/README.md
@@ -1,5 +1,6 @@
## 编译
-code from https://github.com/whai362/pan_pp.pytorch
+This code is refer from:
+https://github.com/whai362/PSENet/blob/python3/models/post_processing/pse
```python
python3 setup.py build_ext --inplace
```
diff --git a/ppocr/postprocess/pse_postprocess/pse/__init__.py b/ppocr/postprocess/pse_postprocess/pse/__init__.py
index 97b8d8aff0cf229a4e3ec1961638273bd201822a..1903a9149a7703ac7ae9a66273eca620e0d77272 100644
--- a/ppocr/postprocess/pse_postprocess/pse/__init__.py
+++ b/ppocr/postprocess/pse_postprocess/pse/__init__.py
@@ -17,7 +17,13 @@ import subprocess
python_path = sys.executable
-if subprocess.call('cd ppocr/postprocess/pse_postprocess/pse;{} setup.py build_ext --inplace;cd -'.format(python_path), shell=True) != 0:
- raise RuntimeError('Cannot compile pse: {}'.format(os.path.dirname(os.path.realpath(__file__))))
+ori_path = os.getcwd()
+os.chdir('ppocr/postprocess/pse_postprocess/pse')
+if subprocess.call(
+ '{} setup.py build_ext --inplace'.format(python_path), shell=True) != 0:
+ raise RuntimeError(
+ 'Cannot compile pse: {}, if your system is windows, you need to install all the default components of `desktop development using C++` in visual studio 2019+'.
+ format(os.path.dirname(os.path.realpath(__file__))))
+os.chdir(ori_path)
-from .pse import pse
\ No newline at end of file
+from .pse import pse
diff --git a/ppocr/postprocess/pse_postprocess/pse_postprocess.py b/ppocr/postprocess/pse_postprocess/pse_postprocess.py
index 4b89d221d284602933ab3d4f21468fcae79ef310..0234d592d6dde8419b1d623e33b9ca5bb251fb97 100755
--- a/ppocr/postprocess/pse_postprocess/pse_postprocess.py
+++ b/ppocr/postprocess/pse_postprocess/pse_postprocess.py
@@ -1,16 +1,20 @@
-# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
+# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/whai362/PSENet/blob/python3/models/head/psenet_head.py
+"""
from __future__ import absolute_import
from __future__ import division
@@ -47,7 +51,8 @@ class PSEPostProcess(object):
pred = outs_dict['maps']
if not isinstance(pred, paddle.Tensor):
pred = paddle.to_tensor(pred)
- pred = F.interpolate(pred, scale_factor=4 // self.scale, mode='bilinear')
+ pred = F.interpolate(
+ pred, scale_factor=4 // self.scale, mode='bilinear')
score = F.sigmoid(pred[:, 0, :, :])
@@ -60,7 +65,9 @@ class PSEPostProcess(object):
boxes_batch = []
for batch_index in range(pred.shape[0]):
- boxes, scores = self.boxes_from_bitmap(score[batch_index], kernels[batch_index], shape_list[batch_index])
+ boxes, scores = self.boxes_from_bitmap(score[batch_index],
+ kernels[batch_index],
+ shape_list[batch_index])
boxes_batch.append({'points': boxes, 'scores': scores})
return boxes_batch
@@ -98,15 +105,14 @@ class PSEPostProcess(object):
mask = np.zeros((box_height, box_width), np.uint8)
mask[points[:, 1], points[:, 0]] = 255
- contours, _ = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
+ contours, _ = cv2.findContours(mask, cv2.RETR_EXTERNAL,
+ cv2.CHAIN_APPROX_SIMPLE)
bbox = np.squeeze(contours[0], 1)
else:
raise NotImplementedError
- bbox[:, 0] = np.clip(
- np.round(bbox[:, 0] / ratio_w), 0, src_w)
- bbox[:, 1] = np.clip(
- np.round(bbox[:, 1] / ratio_h), 0, src_h)
+ bbox[:, 0] = np.clip(np.round(bbox[:, 0] / ratio_w), 0, src_w)
+ bbox[:, 1] = np.clip(np.round(bbox[:, 1] / ratio_h), 0, src_h)
boxes.append(bbox)
scores.append(score_i)
return boxes, scores
diff --git a/ppocr/postprocess/rec_postprocess.py b/ppocr/postprocess/rec_postprocess.py
index c06159ca55600e7afe01a68ab43acd1919cf742c..ef1a43fd0ee65f3e55a8f72dfd2f96c478da1a9a 100644
--- a/ppocr/postprocess/rec_postprocess.py
+++ b/ppocr/postprocess/rec_postprocess.py
@@ -21,33 +21,15 @@ import re
class BaseRecLabelDecode(object):
""" Convert between text-label and text-index """
- def __init__(self,
- character_dict_path=None,
- character_type='ch',
- use_space_char=False):
- support_character_type = [
- 'ch', 'en', 'EN_symbol', 'french', 'german', 'japan', 'korean',
- 'it', 'xi', 'pu', 'ru', 'ar', 'ta', 'ug', 'fa', 'ur', 'rs', 'oc',
- 'rsc', 'bg', 'uk', 'be', 'te', 'ka', 'chinese_cht', 'hi', 'mr',
- 'ne', 'EN', 'latin', 'arabic', 'cyrillic', 'devanagari'
- ]
- assert character_type in support_character_type, "Only {} are supported now but get {}".format(
- support_character_type, character_type)
-
+ def __init__(self, character_dict_path=None, use_space_char=False):
self.beg_str = "sos"
self.end_str = "eos"
- if character_type == "en":
+ self.character_str = []
+ if character_dict_path is None:
self.character_str = "0123456789abcdefghijklmnopqrstuvwxyz"
dict_character = list(self.character_str)
- elif character_type == "EN_symbol":
- # same with ASTER setting (use 94 char).
- self.character_str = string.printable[:-6]
- dict_character = list(self.character_str)
- elif character_type in support_character_type:
- self.character_str = []
- assert character_dict_path is not None, "character_dict_path should not be None when character_type is {}".format(
- character_type)
+ else:
with open(character_dict_path, "rb") as fin:
lines = fin.readlines()
for line in lines:
@@ -57,9 +39,6 @@ class BaseRecLabelDecode(object):
self.character_str.append(" ")
dict_character = list(self.character_str)
- else:
- raise NotImplementedError
- self.character_type = character_type
dict_character = self.add_special_char(dict_character)
self.dict = {}
for i, char in enumerate(dict_character):
@@ -102,13 +81,10 @@ class BaseRecLabelDecode(object):
class CTCLabelDecode(BaseRecLabelDecode):
""" Convert between text-label and text-index """
- def __init__(self,
- character_dict_path=None,
- character_type='ch',
- use_space_char=False,
+ def __init__(self, character_dict_path=None, use_space_char=False,
**kwargs):
super(CTCLabelDecode, self).__init__(character_dict_path,
- character_type, use_space_char)
+ use_space_char)
def __call__(self, preds, label=None, *args, **kwargs):
if isinstance(preds, tuple):
@@ -136,13 +112,12 @@ class DistillationCTCLabelDecode(CTCLabelDecode):
def __init__(self,
character_dict_path=None,
- character_type='ch',
use_space_char=False,
model_name=["student"],
key=None,
**kwargs):
- super(DistillationCTCLabelDecode, self).__init__(
- character_dict_path, character_type, use_space_char)
+ super(DistillationCTCLabelDecode, self).__init__(character_dict_path,
+ use_space_char)
if not isinstance(model_name, list):
model_name = [model_name]
self.model_name = model_name
@@ -162,13 +137,9 @@ class DistillationCTCLabelDecode(CTCLabelDecode):
class NRTRLabelDecode(BaseRecLabelDecode):
""" Convert between text-label and text-index """
- def __init__(self,
- character_dict_path=None,
- character_type='EN_symbol',
- use_space_char=True,
- **kwargs):
+ def __init__(self, character_dict_path=None, use_space_char=True, **kwargs):
super(NRTRLabelDecode, self).__init__(character_dict_path,
- character_type, use_space_char)
+ use_space_char)
def __call__(self, preds, label=None, *args, **kwargs):
@@ -230,13 +201,10 @@ class NRTRLabelDecode(BaseRecLabelDecode):
class AttnLabelDecode(BaseRecLabelDecode):
""" Convert between text-label and text-index """
- def __init__(self,
- character_dict_path=None,
- character_type='ch',
- use_space_char=False,
+ def __init__(self, character_dict_path=None, use_space_char=False,
**kwargs):
super(AttnLabelDecode, self).__init__(character_dict_path,
- character_type, use_space_char)
+ use_space_char)
def add_special_char(self, dict_character):
self.beg_str = "sos"
@@ -313,13 +281,10 @@ class AttnLabelDecode(BaseRecLabelDecode):
class SEEDLabelDecode(BaseRecLabelDecode):
""" Convert between text-label and text-index """
- def __init__(self,
- character_dict_path=None,
- character_type='ch',
- use_space_char=False,
+ def __init__(self, character_dict_path=None, use_space_char=False,
**kwargs):
super(SEEDLabelDecode, self).__init__(character_dict_path,
- character_type, use_space_char)
+ use_space_char)
def add_special_char(self, dict_character):
self.beg_str = "sos"
@@ -394,13 +359,10 @@ class SEEDLabelDecode(BaseRecLabelDecode):
class SRNLabelDecode(BaseRecLabelDecode):
""" Convert between text-label and text-index """
- def __init__(self,
- character_dict_path=None,
- character_type='en',
- use_space_char=False,
+ def __init__(self, character_dict_path=None, use_space_char=False,
**kwargs):
super(SRNLabelDecode, self).__init__(character_dict_path,
- character_type, use_space_char)
+ use_space_char)
self.max_text_length = kwargs.get('max_text_length', 25)
def __call__(self, preds, label=None, *args, **kwargs):
@@ -616,13 +578,10 @@ class TableLabelDecode(object):
class SARLabelDecode(BaseRecLabelDecode):
""" Convert between text-label and text-index """
- def __init__(self,
- character_dict_path=None,
- character_type='ch',
- use_space_char=False,
+ def __init__(self, character_dict_path=None, use_space_char=False,
**kwargs):
super(SARLabelDecode, self).__init__(character_dict_path,
- character_type, use_space_char)
+ use_space_char)
self.rm_symbol = kwargs.get('rm_symbol', False)
diff --git a/ppocr/utils/EN_symbol_dict.txt b/ppocr/utils/EN_symbol_dict.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1aef43d6b842731a54cbe682ccda5c2dbfa694d9
--- /dev/null
+++ b/ppocr/utils/EN_symbol_dict.txt
@@ -0,0 +1,94 @@
+0
+1
+2
+3
+4
+5
+6
+7
+8
+9
+a
+b
+c
+d
+e
+f
+g
+h
+i
+j
+k
+l
+m
+n
+o
+p
+q
+r
+s
+t
+u
+v
+w
+x
+y
+z
+A
+B
+C
+D
+E
+F
+G
+H
+I
+J
+K
+L
+M
+N
+O
+P
+Q
+R
+S
+T
+U
+V
+W
+X
+Y
+Z
+!
+"
+#
+$
+%
+&
+'
+(
+)
+*
++
+,
+-
+.
+/
+:
+;
+<
+=
+>
+?
+@
+[
+\
+]
+^
+_
+`
+{
+|
+}
+~
\ No newline at end of file
diff --git a/ppocr/utils/dict90.txt b/ppocr/utils/dict90.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a945ae9c526e4faa68852eb3fb47d078a2f3f6ce
--- /dev/null
+++ b/ppocr/utils/dict90.txt
@@ -0,0 +1,90 @@
+0
+1
+2
+3
+4
+5
+6
+7
+8
+9
+a
+b
+c
+d
+e
+f
+g
+h
+i
+j
+k
+l
+m
+n
+o
+p
+q
+r
+s
+t
+u
+v
+w
+x
+y
+z
+A
+B
+C
+D
+E
+F
+G
+H
+I
+J
+K
+L
+M
+N
+O
+P
+Q
+R
+S
+T
+U
+V
+W
+X
+Y
+Z
+!
+"
+#
+$
+%
+&
+'
+(
+)
+*
++
+,
+-
+.
+/
+:
+;
+<
+=
+>
+?
+@
+[
+\
+]
+_
+`
+~
\ No newline at end of file
diff --git a/ppocr/utils/iou.py b/ppocr/utils/iou.py
index 20529dee2d14083f3de4ac034668d004136c56e2..35459f5f053cde0a74f76c5652bfb723a48ca890 100644
--- a/ppocr/utils/iou.py
+++ b/ppocr/utils/iou.py
@@ -1,4 +1,4 @@
-# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
+# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -11,18 +11,23 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/whai362/PSENet/blob/python3/models/loss/iou.py
+"""
import paddle
EPS = 1e-6
+
def iou_single(a, b, mask, n_class):
valid = mask == 1
a = a.masked_select(valid)
b = b.masked_select(valid)
miou = []
for i in range(n_class):
- if a.shape == [0] and a.shape==b.shape:
+ if a.shape == [0] and a.shape == b.shape:
inter = paddle.to_tensor(0.0)
union = paddle.to_tensor(0.0)
else:
@@ -32,6 +37,7 @@ def iou_single(a, b, mask, n_class):
miou = sum(miou) / len(miou)
return miou
+
def iou(a, b, mask, n_class=2, reduce=True):
batch_size = a.shape[0]
@@ -39,10 +45,10 @@ def iou(a, b, mask, n_class=2, reduce=True):
b = b.reshape([batch_size, -1])
mask = mask.reshape([batch_size, -1])
- iou = paddle.zeros((batch_size,), dtype='float32')
+ iou = paddle.zeros((batch_size, ), dtype='float32')
for i in range(batch_size):
iou[i] = iou_single(a[i], b[i], mask[i], n_class)
if reduce:
iou = paddle.mean(iou)
- return iou
\ No newline at end of file
+ return iou
diff --git a/ppocr/utils/logging.py b/ppocr/utils/logging.py
index 11896c37d9285e19a9526caa9c637d7eda7b1979..ce827e8b10c4b63b736886a2f72106c7570576b1 100644
--- a/ppocr/utils/logging.py
+++ b/ppocr/utils/logging.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
+# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -11,6 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This code is refer from:
+https://github.com/WenmuZhou/PytorchOCR/blob/master/torchocr/utils/logging.py
+"""
import os
import sys
diff --git a/ppocr/utils/network.py b/ppocr/utils/network.py
index 453abb693d4c0ed370c1031b677d5bf51661add9..118d1be364925d9416134cffe21d636fcac753e9 100644
--- a/ppocr/utils/network.py
+++ b/ppocr/utils/network.py
@@ -24,15 +24,17 @@ from ppocr.utils.logging import get_logger
def download_with_progressbar(url, save_path):
logger = get_logger()
response = requests.get(url, stream=True)
- total_size_in_bytes = int(response.headers.get('content-length', 0))
- block_size = 1024 # 1 Kibibyte
- progress_bar = tqdm(total=total_size_in_bytes, unit='iB', unit_scale=True)
- with open(save_path, 'wb') as file:
- for data in response.iter_content(block_size):
- progress_bar.update(len(data))
- file.write(data)
- progress_bar.close()
- if total_size_in_bytes == 0 or progress_bar.n != total_size_in_bytes:
+ if response.status_code == 200:
+ total_size_in_bytes = int(response.headers.get('content-length', 1))
+ block_size = 1024 # 1 Kibibyte
+ progress_bar = tqdm(
+ total=total_size_in_bytes, unit='iB', unit_scale=True)
+ with open(save_path, 'wb') as file:
+ for data in response.iter_content(block_size):
+ progress_bar.update(len(data))
+ file.write(data)
+ progress_bar.close()
+ else:
logger.error("Something went wrong while downloading models")
sys.exit(0)
@@ -45,7 +47,7 @@ def maybe_download(model_storage_directory, url):
if not os.path.exists(
os.path.join(model_storage_directory, 'inference.pdiparams')
) or not os.path.exists(
- os.path.join(model_storage_directory, 'inference.pdmodel')):
+ os.path.join(model_storage_directory, 'inference.pdmodel')):
assert url.endswith('.tar'), 'Only supports tar compressed package'
tmp_path = os.path.join(model_storage_directory, url.split('/')[-1])
print('download {} to {}'.format(url, tmp_path))
diff --git a/ppocr/utils/save_load.py b/ppocr/utils/save_load.py
index a7d24dd71a6e35ca619c2a3f90df3a202b8ad94b..4b890f6fa352772e6ebe1614b798e1ce69cdd17c 100644
--- a/ppocr/utils/save_load.py
+++ b/ppocr/utils/save_load.py
@@ -25,7 +25,7 @@ import paddle
from ppocr.utils.logging import get_logger
-__all__ = ['init_model', 'save_model', 'load_dygraph_params']
+__all__ = ['load_model']
def _mkdir_if_not_exist(path, logger):
@@ -44,7 +44,7 @@ def _mkdir_if_not_exist(path, logger):
raise OSError('Failed to mkdir {}'.format(path))
-def init_model(config, model, optimizer=None, lr_scheduler=None):
+def load_model(config, model, optimizer=None):
"""
load model from checkpoint or pretrained_model
"""
@@ -54,15 +54,31 @@ def init_model(config, model, optimizer=None, lr_scheduler=None):
pretrained_model = global_config.get('pretrained_model')
best_model_dict = {}
if checkpoints:
+ if checkpoints.endswith('.pdparams'):
+ checkpoints = checkpoints.replace('.pdparams', '')
assert os.path.exists(checkpoints + ".pdparams"), \
- "Given dir {}.pdparams not exist.".format(checkpoints)
- assert os.path.exists(checkpoints + ".pdopt"), \
- "Given dir {}.pdopt not exist.".format(checkpoints)
- para_dict = paddle.load(checkpoints + '.pdparams')
- opti_dict = paddle.load(checkpoints + '.pdopt')
- model.set_state_dict(para_dict)
+ "The {}.pdparams does not exists!".format(checkpoints)
+
+ # load params from trained model
+ params = paddle.load(checkpoints + '.pdparams')
+ state_dict = model.state_dict()
+ new_state_dict = {}
+ for key, value in state_dict.items():
+ if key not in params:
+ logger.warning("{} not in loaded params {} !".format(
+ key, params.keys()))
+ pre_value = params[key]
+ if list(value.shape) == list(pre_value.shape):
+ new_state_dict[key] = pre_value
+ else:
+ logger.warning(
+ "The shape of model params {} {} not matched with loaded params shape {} !".
+ format(key, value.shape, pre_value.shape))
+ model.set_state_dict(new_state_dict)
+
+ optim_dict = paddle.load(checkpoints + '.pdopt')
if optimizer is not None:
- optimizer.set_state_dict(opti_dict)
+ optimizer.set_state_dict(optim_dict)
if os.path.exists(checkpoints + '.states'):
with open(checkpoints + '.states', 'rb') as f:
@@ -73,70 +89,31 @@ def init_model(config, model, optimizer=None, lr_scheduler=None):
best_model_dict['start_epoch'] = states_dict['epoch'] + 1
logger.info("resume from {}".format(checkpoints))
elif pretrained_model:
- if not isinstance(pretrained_model, list):
- pretrained_model = [pretrained_model]
- for pretrained in pretrained_model:
- if not (os.path.isdir(pretrained) or
- os.path.exists(pretrained + '.pdparams')):
- raise ValueError("Model pretrain path {} does not "
- "exists.".format(pretrained))
- param_state_dict = paddle.load(pretrained + '.pdparams')
- model.set_state_dict(param_state_dict)
- logger.info("load pretrained model from {}".format(
- pretrained_model))
+ load_pretrained_params(model, pretrained_model)
else:
logger.info('train from scratch')
return best_model_dict
-def load_dygraph_params(config, model, logger, optimizer):
- ckp = config['Global']['checkpoints']
- if ckp and os.path.exists(ckp + ".pdparams"):
- pre_best_model_dict = init_model(config, model, optimizer)
- return pre_best_model_dict
- else:
- pm = config['Global']['pretrained_model']
- if pm is None:
- return {}
- if not os.path.exists(pm) and not os.path.exists(pm + ".pdparams"):
- logger.info(f"The pretrained_model {pm} does not exists!")
- return {}
- pm = pm if pm.endswith('.pdparams') else pm + '.pdparams'
- params = paddle.load(pm)
- state_dict = model.state_dict()
- new_state_dict = {}
- for k1, k2 in zip(state_dict.keys(), params.keys()):
- if list(state_dict[k1].shape) == list(params[k2].shape):
- new_state_dict[k1] = params[k2]
- else:
- logger.info(
- f"The shape of model params {k1} {state_dict[k1].shape} not matched with loaded params {k2} {params[k2].shape} !"
- )
- model.set_state_dict(new_state_dict)
- logger.info(f"loaded pretrained_model successful from {pm}")
- return {}
-
-
def load_pretrained_params(model, path):
- if path is None:
- return False
- if not os.path.exists(path) and not os.path.exists(path + ".pdparams"):
- print(f"The pretrained_model {path} does not exists!")
- return False
-
- path = path if path.endswith('.pdparams') else path + '.pdparams'
- params = paddle.load(path)
+ logger = get_logger()
+ if path.endswith('.pdparams'):
+ path = path.replace('.pdparams', '')
+ assert os.path.exists(path + ".pdparams"), \
+ "The {}.pdparams does not exists!".format(path)
+
+ params = paddle.load(path + '.pdparams')
state_dict = model.state_dict()
new_state_dict = {}
for k1, k2 in zip(state_dict.keys(), params.keys()):
if list(state_dict[k1].shape) == list(params[k2].shape):
new_state_dict[k1] = params[k2]
else:
- print(
- f"The shape of model params {k1} {state_dict[k1].shape} not matched with loaded params {k2} {params[k2].shape} !"
- )
+ logger.warning(
+ "The shape of model params {} {} not matched with loaded params {} {} !".
+ format(k1, state_dict[k1].shape, k2, params[k2].shape))
model.set_state_dict(new_state_dict)
- print(f"load pretrain successful from {path}")
+ logger.info("load pretrain successful from {}".format(path))
return model
diff --git a/ppstructure/layout/train_layoutparser_model.md b/ppstructure/layout/train_layoutparser_model.md
index 08f5ebbf1aa276e4a3ecf27af46442161afcda1f..58975d71606e45b2f68a7f68565459042ef32775 100644
--- a/ppstructure/layout/train_layoutparser_model.md
+++ b/ppstructure/layout/train_layoutparser_model.md
@@ -4,9 +4,9 @@
[1.1 Requirements](#Requirements)
- [1.2 Install PaddleDetection](#Install PaddleDetection)
+ [1.2 Install PaddleDetection](#Install_PaddleDetection)
-[2. Data preparation](#Data preparation)
+[2. Data preparation](#Data_reparation)
[3. Configuration](#Configuration)
@@ -16,7 +16,7 @@
[6. Deployment](#Deployment)
- [6.1 Export model](#Export model)
+ [6.1 Export model](#Export_model)
[6.2 Inference](#Inference)
@@ -35,7 +35,7 @@
- CUDA >= 10.1
- cuDNN >= 7.6
-
+
### 1.2 Install PaddleDetection
@@ -51,7 +51,7 @@ pip install -r requirements.txt
For more installation tutorials, please refer to: [Install doc](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.1/docs/tutorials/INSTALL_cn.md)
-
+
## 2. Data preparation
@@ -165,7 +165,7 @@ python tools/infer.py -c configs/ppyolo/ppyolov2_r50vd_dcn_365e_coco.yml --infer
Use your trained model in Layout Parser
-
+
### 6.1 Export model
diff --git a/requirements.txt b/requirements.txt
index 30c7613be3f906baaa1d02cf7a4aa47e2ca07acb..1d9522aa0167c60ffce263a35b86640efb1438b2 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,5 +1,5 @@
shapely
-scikit-image==0.17.2
+scikit-image
imgaug==0.4.0
pyclipper
lmdb
@@ -12,4 +12,4 @@ cython
lxml
premailer
openpyxl
-fasttext
+fasttext==0.9.1
diff --git a/test_tipc/common_func.sh b/test_tipc/common_func.sh
new file mode 100644
index 0000000000000000000000000000000000000000..85dfe217253bb1d4c8b92f17d26f138121a2a198
--- /dev/null
+++ b/test_tipc/common_func.sh
@@ -0,0 +1,66 @@
+#!/bin/bash
+
+function func_parser_key(){
+ strs=$1
+ IFS=":"
+ array=(${strs})
+ tmp=${array[0]}
+ echo ${tmp}
+}
+
+function func_parser_value(){
+ strs=$1
+ IFS=":"
+ array=(${strs})
+ tmp=${array[1]}
+ echo ${tmp}
+}
+
+function func_set_params(){
+ key=$1
+ value=$2
+ if [ ${key}x = "null"x ];then
+ echo " "
+ elif [[ ${value} = "null" ]] || [[ ${value} = " " ]] || [ ${#value} -le 0 ];then
+ echo " "
+ else
+ echo "${key}=${value}"
+ fi
+}
+
+function func_parser_params(){
+ strs=$1
+ MODE=$2
+ IFS=":"
+ array=(${strs})
+ key=${array[0]}
+ tmp=${array[1]}
+ IFS="|"
+ res=""
+ for _params in ${tmp[*]}; do
+ IFS="="
+ array=(${_params})
+ mode=${array[0]}
+ value=${array[1]}
+ if [[ ${mode} = ${MODE} ]]; then
+ IFS="|"
+ #echo $(func_set_params "${mode}" "${value}")
+ echo $value
+ break
+ fi
+ IFS="|"
+ done
+ echo ${res}
+}
+
+function status_check(){
+ last_status=$1 # the exit code
+ run_command=$2
+ run_log=$3
+ if [ $last_status -eq 0 ]; then
+ echo -e "\033[33m Run successfully with command - ${run_command}! \033[0m" | tee -a ${run_log}
+ else
+ echo -e "\033[33m Run failed with command - ${run_command}! \033[0m" | tee -a ${run_log}
+ fi
+}
+
diff --git a/tests/compare_results.py b/test_tipc/compare_results.py
similarity index 99%
rename from tests/compare_results.py
rename to test_tipc/compare_results.py
index 35af38809fe7d564707d0d538f7d0159cb6edfbd..e28410ed6cb26aab7557025c06b2541a7d27c2c1 100644
--- a/tests/compare_results.py
+++ b/test_tipc/compare_results.py
@@ -32,6 +32,7 @@ def run_shell_command(cmd):
else:
return None
+
def parser_results_from_log_by_name(log_path, names_list):
if not os.path.exists(log_path):
raise ValueError("The log file {} does not exists!".format(log_path))
@@ -52,6 +53,7 @@ def parser_results_from_log_by_name(log_path, names_list):
parser_results[name] = result
return parser_results
+
def load_gt_from_file(gt_file):
if not os.path.exists(gt_file):
raise ValueError("The log file {} does not exists!".format(gt_file))
diff --git a/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2cd2ba5f1e8198cacadab653d3979d5a1662f9ea
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
@@ -0,0 +1,19 @@
+===========================ch_ppocr_mobile_v2.0===========================
+model_name:ch_PP-OCRv2
+python:python3.7
+infer_model:./inference/ch_PP-OCRv2_det_infer/
+infer_export:null
+infer_quant:True
+inference:tools/infer/predict_system.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False
+--precision:int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+--rec_model_dir:./inference/ch_PP-OCRv2_rec_infer/
+--benchmark:True
+null:null
+null:null
diff --git a/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt b/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d03ee1e8b0493ab0f3ca2b8c4bb55b6b0cfecdcc
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
@@ -0,0 +1,13 @@
+===========================lite_params===========================
+inference:./ocr_db_crnn system
+runtime_device:ARM_CPU
+det_infer_model:ch_PP-OCRv2_det_infer|ch_PP-OCRv2_det_slim_quant_infer
+rec_infer_model:ch_PP-OCRv2_rec_infer|ch_PP-OCRv2_rec_slim_quant_infer
+cls_infer_model:ch_ppocr_mobile_v2.0_cls_infer|ch_ppocr_mobile_v2.0_cls_slim_infer
+--cpu_threads:1|4
+--det_batch_size:1
+--rec_batch_size:1
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/
+--config_dir:./config.txt
+--rec_dict_dir:./ppocr_keys_v1.txt
+--benchmark:True
diff --git a/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt b/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a9fcafbf17878ec7ea42691359aa6ae36ccd522e
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
@@ -0,0 +1,13 @@
+===========================lite_params===========================
+inference:./ocr_db_crnn system
+runtime_device:ARM_GPU_OPENCL
+det_infer_model:ch_PP-OCRv2_det_infer|ch_PP-OCRv2_det_slim_quant_infer
+rec_infer_model:ch_PP-OCRv2_rec_infer|ch_PP-OCRv2_rec_slim_quant_infer
+cls_infer_model:ch_ppocr_mobile_v2.0_cls_infer|ch_ppocr_mobile_v2.0_cls_slim_infer
+--cpu_threads:1|4
+--det_batch_size:1
+--rec_batch_size:1
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/
+--config_dir:./config.txt
+--rec_dict_dir:./ppocr_keys_v1.txt
+--benchmark:True
diff --git a/test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt b/test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..37ad2380e35014ad2dd8cc5467a04f958505947a
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
@@ -0,0 +1,13 @@
+===========================lite_params===========================
+inference:./ocr_db_crnn det
+runtime_device:ARM_CPU
+det_infer_model:ch_PP-OCRv2_det_infer|ch_PP-OCRv2_det_slim_quant_infer
+null:null
+null:null
+--cpu_threads:1|4
+--det_batch_size:1
+null:null
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/
+--config_dir:./config.txt
+null:null
+--benchmark:True
\ No newline at end of file
diff --git a/test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt b/test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a0b5569a631d03230a1a318c95f16f488ebb8b7d
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
@@ -0,0 +1,13 @@
+===========================lite_params===========================
+inference:./ocr_db_crnn det
+runtime_device:ARM_GPU_OPENCL
+det_infer_model:ch_PP-OCRv2_det_infer|ch_PP-OCRv2_det_slim_quant_infer
+null:null
+null:null
+--cpu_threads:1|4
+--det_batch_size:1
+null:null
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/
+--config_dir:./config.txt
+null:null
+--benchmark:True
diff --git a/test_tipc/configs/ch_PP-OCRv2_det/train_infer_python.txt b/test_tipc/configs/ch_PP-OCRv2_det/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9520ede3acd33b0e12300ee2de1b715605c9a0eb
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_det/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ch_PPOCRv2_det
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:fp32
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=500
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train|pact_train
+norm_train:tools/train.py -c configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml -o
+pact_train:deploy/slim/quantization/quant.py -c configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml -o
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml -o
+quant_export:deploy/slim/quantization/export_model.py -c configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml -o
+fpgm_export:
+distill_export:null
+export1:null
+export2:null
+inference_dir:Student
+infer_model:./inference/ch_PP-OCRv2_det_infer/
+infer_export:null
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/ch_PP-OCRv2_det_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_PP-OCRv2_det_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0ff24cbccfe282c12982714b5d079b0031703a04
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_det_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
@@ -0,0 +1,19 @@
+===========================kl_quant_params===========================
+model_name:PPOCRv2_ocr_det_kl
+python:python3.7
+infer_model:./inference/ch_PP-OCRv2_det_infer/
+infer_export:deploy/slim/quantization/quant_kl.py -c configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml -o
+infer_quant:True
+inference:tools/infer/predict_det.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False
+--precision:int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
+null:null
diff --git a/test_tipc/configs/ch_PP-OCRv2_det_PACT/train_infer_python.txt b/test_tipc/configs/ch_PP-OCRv2_det_PACT/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b567c08185e084384c3883f1d602cec3f312ea53
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_det_PACT/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:PPOCRv2_ocr_det
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:fp32
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=500
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:pact_train
+norm_train:null
+pact_train:deploy/slim/quantization/quant.py -c configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml -o
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:null
+quant_export:deploy/slim/quantization/export_model.py -c configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml -o
+fpgm_export:
+distill_export:null
+export1:null
+export2:null
+inference_dir:Student
+infer_model:./inference/ch_PP-OCRv2_det_infer/
+infer_export:null
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/ch_PP-OCRv2_rec/ch_PP-OCRv2_rec_distillation.yml b/test_tipc/configs/ch_PP-OCRv2_rec/ch_PP-OCRv2_rec_distillation.yml
new file mode 100644
index 0000000000000000000000000000000000000000..6c63af6ae8d62e098dec35d5918291291f654e32
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_rec/ch_PP-OCRv2_rec_distillation.yml
@@ -0,0 +1,159 @@
+Global:
+ debug: false
+ use_gpu: true
+ epoch_num: 800
+ log_smooth_window: 20
+ print_batch_step: 10
+ save_model_dir: ./output/rec_pp-OCRv2_distillation
+ save_epoch_step: 3
+ eval_batch_step: [0, 2000]
+ cal_metric_during_train: true
+ pretrained_model:
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: false
+ infer_img: doc/imgs_words/ch/word_1.jpg
+ character_dict_path: ppocr/utils/ppocr_keys_v1.txt
+ max_text_length: 25
+ infer_mode: false
+ use_space_char: true
+ distributed: true
+ save_res_path: ./output/rec/predicts_pp-OCRv2_distillation.txt
+
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ name: Piecewise
+ decay_epochs : [700, 800]
+ values : [0.001, 0.0001]
+ warmup_epoch: 5
+ regularizer:
+ name: L2
+ factor: 2.0e-05
+
+Architecture:
+ model_type: &model_type "rec"
+ name: DistillationModel
+ algorithm: Distillation
+ Models:
+ Teacher:
+ pretrained:
+ freeze_params: false
+ return_all_feats: true
+ model_type: *model_type
+ algorithm: CRNN
+ Transform:
+ Backbone:
+ name: MobileNetV1Enhance
+ scale: 0.5
+ Neck:
+ name: SequenceEncoder
+ encoder_type: rnn
+ hidden_size: 64
+ Head:
+ name: CTCHead
+ mid_channels: 96
+ fc_decay: 0.00002
+ Student:
+ pretrained:
+ freeze_params: false
+ return_all_feats: true
+ model_type: *model_type
+ algorithm: CRNN
+ Transform:
+ Backbone:
+ name: MobileNetV1Enhance
+ scale: 0.5
+ Neck:
+ name: SequenceEncoder
+ encoder_type: rnn
+ hidden_size: 64
+ Head:
+ name: CTCHead
+ mid_channels: 96
+ fc_decay: 0.00002
+
+
+Loss:
+ name: CombinedLoss
+ loss_config_list:
+ - DistillationCTCLoss:
+ weight: 1.0
+ model_name_list: ["Student", "Teacher"]
+ key: head_out
+ - DistillationDMLLoss:
+ weight: 1.0
+ act: "softmax"
+ use_log: true
+ model_name_pairs:
+ - ["Student", "Teacher"]
+ key: head_out
+ - DistillationDistanceLoss:
+ weight: 1.0
+ mode: "l2"
+ model_name_pairs:
+ - ["Student", "Teacher"]
+ key: backbone_out
+
+PostProcess:
+ name: DistillationCTCLabelDecode
+ model_name: ["Student", "Teacher"]
+ key: head_out
+
+Metric:
+ name: DistillationMetric
+ base_metric_name: RecMetric
+ main_indicator: acc
+ key: "Student"
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data/
+ label_file_list:
+ - ./train_data/ic15_data/rec_gt_train.txt
+ transforms:
+ - DecodeImage:
+ img_mode: BGR
+ channel_first: false
+ - RecAug:
+ - CTCLabelEncode:
+ - RecResizeImg:
+ image_shape: [3, 32, 320]
+ - KeepKeys:
+ keep_keys:
+ - image
+ - label
+ - length
+ loader:
+ shuffle: true
+ batch_size_per_card: 128
+ drop_last: true
+ num_sections: 1
+ num_workers: 8
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data
+ label_file_list:
+ - ./train_data/ic15_data/rec_gt_test.txt
+ transforms:
+ - DecodeImage:
+ img_mode: BGR
+ channel_first: false
+ - CTCLabelEncode:
+ - RecResizeImg:
+ image_shape: [3, 32, 320]
+ - KeepKeys:
+ keep_keys:
+ - image
+ - label
+ - length
+ loader:
+ shuffle: false
+ drop_last: false
+ batch_size_per_card: 128
+ num_workers: 8
diff --git a/test_tipc/configs/ch_PP-OCRv2_rec/train_infer_python.txt b/test_tipc/configs/ch_PP-OCRv2_rec/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b61dc8bbe36ac5b21ec5f3561d39997f992d6c58
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_rec/train_infer_python.txt
@@ -0,0 +1,53 @@
+===========================train_params===========================
+model_name:PPOCRv2_ocr_rec
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:fp32
+Global.epoch_num:lite_train_lite_infer=3|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/ch_PP-OCRv2_rec/ch_PP-OCRv2_rec_distillation.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/ch_PP-OCRv2_rec/ch_PP-OCRv2_rec_distillation.yml -o
+quant_export:
+fpgm_export:
+distill_export:null
+export1:null
+export2:null
+inference_dir:Student
+infer_model:./inference/ch_PP-OCRv2_rec_infer/
+infer_export:null
+infer_quant:False
+inference:tools/infer/predict_rec.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:/inference/rec_inference
+null:null
+--benchmark:True
+null:null
+
+
diff --git a/test_tipc/configs/ch_PP-OCRv2_rec_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_PP-OCRv2_rec_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8826bb4f078d518a79748f9cb305268c5ec2c198
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_rec_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
@@ -0,0 +1,19 @@
+===========================kl_quant_params===========================
+model_name:PPOCRv2_ocr_rec_kl
+python:python3.7
+infer_model:./inference/ch_PP-OCRv2_rec_infer/
+infer_export:deploy/slim/quantization/quant_kl.py -c test_tipc/configs/ch_PP-OCRv2_rec/ch_PP-OCRv2_rec_distillation.yml -o
+infer_quant:True
+inference:tools/infer/predict_rec.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:False
+--precision:int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+null:null
+--benchmark:True
+null:null
+null:null
diff --git a/test_tipc/configs/ch_PP-OCRv2_rec_PACT/train_infer_python.txt b/test_tipc/configs/ch_PP-OCRv2_rec_PACT/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..914c1bc7575dfee3309493b9110afe8b9cb7e59b
--- /dev/null
+++ b/test_tipc/configs/ch_PP-OCRv2_rec_PACT/train_infer_python.txt
@@ -0,0 +1,53 @@
+===========================train_params===========================
+model_name:PPOCRv2_ocr_rec_pact
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:fp32
+Global.epoch_num:lite_train_lite_infer=3|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:pact_train
+norm_train:deploy/slim/quantization/quant.py -c test_tipc/configs/ch_PP-OCRv2_rec/ch_PP-OCRv2_rec_distillation.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:deploy/slim/quantization/export_model.py -c test_tipc/configs/ch_PP-OCRv2_rec/ch_PP-OCRv2_rec_distillation.yml -o
+quant_export:
+fpgm_export:
+distill_export:null
+export1:null
+export2:null
+inference_dir:Student
+infer_model:./inference/ch_PP-OCRv2_rec_infer/
+infer_export:null
+infer_quant:True
+inference:tools/infer/predict_rec.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:/inference/rec_inference
+null:null
+--benchmark:True
+null:null
+
+
diff --git a/test_tipc/configs/ch_ppocr_mobile_V2.0_det_FPGM/train_infer_python.txt b/test_tipc/configs/ch_ppocr_mobile_V2.0_det_FPGM/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..77889729e61a4b859895ee0de52c92ed258ace31
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_V2.0_det_FPGM/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ocr_det
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:fpgm_train
+norm_train:null
+pact_train:null
+fpgm_train:deploy/slim/prune/sensitivity_anal.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/det_mv3_db_v2.0_train/best_accuracy
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:null
+quant_export:null
+fpgm_export:deploy/slim/prune/export_prune_model.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:null
+infer_export:null
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..eea9d789dd4919fe8112d337e48b82fabacfc57a
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
@@ -0,0 +1,19 @@
+===========================ch_ppocr_mobile_v2.0===========================
+model_name:ch_ppocr_mobile_v2.0
+python:python3.7
+infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
+infer_export:null
+infer_quant:True
+inference:tools/infer/predict_system.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False
+--precision:int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+--rec_model_dir:./inference/ch_ppocr_mobile_v2.0_rec_infer/
+--benchmark:True
+null:null
+null:null
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..95943683d6e8aa8f4765335fb9f03ad7688eedc7
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
@@ -0,0 +1,13 @@
+===========================lite_params===========================
+inference:./ocr_db_crnn system
+runtime_device:ARM_CPU
+det_infer_model:ch_ppocr_mobile_v2.0_det_infer|ch_ppocr_db_mobile_v2.0_det_quant_infer
+rec_infer_model:ch_ppocr_mobile_v2.0_rec_infer|ch_ppocr_mobile_v2.0_rec_slim_infer
+cls_infer_model:ch_ppocr_mobile_v2.0_cls_infer|ch_ppocr_mobile_v2.0_cls_slim_infer
+--cpu_threads:1|4
+--det_batch_size:1
+--rec_batch_size:1
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/
+--config_dir:./config.txt
+--rec_dict_dir:./ppocr_keys_v1.txt
+--benchmark:True
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c13b9bee471ecb7fb5bfa56a5236f2a5bd9af98d
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
@@ -0,0 +1,13 @@
+===========================lite_params===========================
+inference:./ocr_db_crnn system
+runtime_device:ARM_GPU_OPENCL
+det_infer_model:ch_ppocr_mobile_v2.0_det_infer|ch_ppocr_db_mobile_v2.0_det_quant_infer
+rec_infer_model:ch_ppocr_mobile_v2.0_rec_infer|ch_ppocr_mobile_v2.0_rec_slim_infer
+cls_infer_model:ch_ppocr_mobile_v2.0_cls_infer|ch_ppocr_mobile_v2.0_cls_slim_infer
+--cpu_threads:1|4
+--det_batch_size:1
+--rec_batch_size:1
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/
+--config_dir:./config.txt
+--rec_dict_dir:./ppocr_keys_v1.txt
+--benchmark:True
diff --git a/tests/configs/det_mv3_db.yml b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/det_mv3_db.yml
similarity index 100%
rename from tests/configs/det_mv3_db.yml
rename to test_tipc/configs/ch_ppocr_mobile_v2.0_det/det_mv3_db.yml
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0b4139876976f0f1c34619a8fb4e0b3b6c35c9e0
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
@@ -0,0 +1,16 @@
+===========================cpp_infer_params===========================
+model_name:ocr_det
+use_opencv:True
+infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
+infer_quant:False
+inference:./deploy/cpp_infer/build/ppocr det
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_python_jetson.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_python_jetson.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7d3f60bd42aad18c045aeee70fc60d2c17a2af13
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_python_jetson.txt
@@ -0,0 +1,18 @@
+===========================infer_params===========================
+model_name:ocr_det
+python:python
+infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer
+infer_export:null
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp16|fp32
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e83534b540e25a1bcbabdc44e9dea035bf5f406c
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
@@ -0,0 +1,13 @@
+===========================lite_params===========================
+inference:./ocr_db_crnn det
+runtime_device:ARM_CPU
+det_infer_model:ch_ppocr_mobile_v2.0_det_infer|ch_ppocr_db_mobile_v2.0_det_quant_infer
+null:null
+null:null
+--cpu_threads:1|4
+--det_batch_size:1
+null:null
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/
+--config_dir:./config.txt
+null:null
+--benchmark:True
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2ce8aec5b3db06a1ccb29f25d20d75c6a9adca85
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
@@ -0,0 +1,13 @@
+===========================lite_params===========================
+inference:./ocr_db_crnn det
+runtime_device:ARM_GPU_OPENCL
+det_infer_model:ch_ppocr_mobile_v2.0_det_infer|ch_ppocr_db_mobile_v2.0_det_quant_infer
+null:null
+null:null
+--cpu_threads:1|4
+--det_batch_size:1
+null:null
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/
+--config_dir:./config.txt
+null:null
+--benchmark:True
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..160bcdbd88661c3d795eb2faf6b93965598c3e22
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
@@ -0,0 +1,14 @@
+===========================paddle2onnx_params===========================
+model_name:ocr_det_mobile
+python:python3.7
+2onnx: paddle2onnx
+--model_dir:./inference/ch_ppocr_mobile_v2.0_det_infer/
+--model_filename:inference.pdmodel
+--params_filename:inference.pdiparams
+--save_file:./inference/det_mobile_onnx/model.onnx
+--opset_version:10
+--enable_onnx_checker:True
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a19c8ee3355b010b55d1dbf16aa0e21940ba546c
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
@@ -0,0 +1,18 @@
+===========================serving_params===========================
+model_name:ocr_det_mobile
+python:python3.7|cpp
+trans_model:-m paddle_serving_client.convert
+--dirname:./inference/ch_ppocr_mobile_v2.0_det_infer/
+--model_filename:inference.pdmodel
+--params_filename:inference.pdiparams
+--serving_server:./deploy/pdserving/ppocr_det_mobile_2.0_serving/
+--serving_client:./deploy/pdserving/ppocr_det_mobile_2.0_client/
+serving_dir:./deploy/pdserving
+web_service:web_service_det.py --config=config.yml --opt op.det.concurrency=1
+op.det.local_service_conf.devices:null|0
+op.det.local_service_conf.use_mkldnn:True|False
+op.det.local_service_conf.thread_num:1|6
+op.det.local_service_conf.use_trt:False|True
+op.det.local_service_conf.precision:fp32|fp16|int8
+pipline:pipeline_rpc_client.py|pipeline_http_client.py
+--image_dir:../../doc/imgs
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..46093302972aec7f0e0443b33482af06d98bbf4f
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ch_ppocr_mobile_v2.0_det
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:./inference/ch_ppocr_mobile_v2.0_det_train/best_accuracy
+infer_export:tools/export_model.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_linux_dcu_normal_normal_infer_python_dcu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_linux_dcu_normal_normal_infer_python_dcu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_linux_gpu_fleet_amp_infer_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_linux_gpu_fleet_amp_infer_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bfb71b781039493b12875ed4e99c8cd004a2e295
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_linux_gpu_fleet_amp_infer_python_linux_gpu_cpu.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ocr_det
+python:python3.7
+gpu_list:xx.xx.xx.xx,yy.yy.yy.yy;0,1
+Global.use_gpu:True
+Global.auto_cast:fp32|amp
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train|pact_train|fpgm_train
+norm_train:tools/train.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+pact_train:deploy/slim/quantization/quant.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+fpgm_train:deploy/slim/prune/sensitivity_anal.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/det_mv3_db_v2.0_train/best_accuracy
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+quant_export:deploy/slim/quantization/export_model.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+fpgm_export:deploy/slim/prune/export_prune_model.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:./inference/ch_ppocr_mobile_v2.0_det_train/best_accuracy
+infer_export:tools/export_model.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_linux_gpu_normal_amp_infer_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_linux_gpu_normal_amp_infer_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ff1c7432df75f78fd6c45d995f50a9642d44637c
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_linux_gpu_normal_amp_infer_python_linux_gpu_cpu.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ocr_det
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:amp
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train|pact_train|fpgm_train
+norm_train:tools/train.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+pact_train:deploy/slim/quantization/quant.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+fpgm_train:deploy/slim/prune/sensitivity_anal.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/det_mv3_db_v2.0_train/best_accuracy
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+quant_export:deploy/slim/quantization/export_model.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+fpgm_export:deploy/slim/prune/export_prune_model.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:./inference/ch_ppocr_mobile_v2.0_det_train/best_accuracy
+infer_export:tools/export_model.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4001ca18284b703b92a6998d2218df3f003c74d3
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ocr_det
+python:python
+gpu_list:-1
+Global.use_gpu:False
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train|pact_train|fpgm_train
+norm_train:tools/train.py -c test_tipc/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+pact_train:deploy/slim/quantization/quant.py -c test_tipc/configs/det_mv3_db.yml -o
+fpgm_train:deploy/slim/prune/sensitivity_anal.py -c test_tipc/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/det_mv3_db_v2.0_train/best_accuracy
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/det_mv3_db.yml -o
+quant_export:deploy/slim/quantization/export_model.py -c test_tipc/configs/det_mv3_db.yml -o
+fpgm_export:deploy/slim/prune/export_prune_model.py -c test_tipc/configs/det_mv3_db.yml -o
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:./inference/ch_ppocr_mobile_v2.0_det_train/best_accuracy
+infer_export:tools/export_model.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False
+--precision:fp32
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/tests/ocr_det_params.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt
similarity index 51%
rename from tests/ocr_det_params.txt
rename to test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt
index 6fd22e409a5219574b2f29285ff5ee5d2e1cf7ca..0f4faee4b32925b4d0780ece6838c176238c7000 100644
--- a/tests/ocr_det_params.txt
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt
@@ -1,21 +1,21 @@
===========================train_params===========================
model_name:ocr_det
-python:python3.7
-gpu_list:0|0,1
-Global.use_gpu:True|True
-Global.auto_cast:null
-Global.epoch_num:lite_train_infer=1|whole_train_infer=300
+python:python
+gpu_list:0
+Global.use_gpu:True
+Global.auto_cast:fp32|amp
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=300
Global.save_model_dir:./output/
-Train.loader.batch_size_per_card:lite_train_infer=2|whole_train_infer=4
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
Global.pretrained_model:null
train_model_name:latest
train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
null:null
##
trainer:norm_train|pact_train|fpgm_train
-norm_train:tools/train.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
-pact_train:deploy/slim/quantization/quant.py -c tests/configs/det_mv3_db.yml -o
-fpgm_train:deploy/slim/prune/sensitivity_anal.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/det_mv3_db_v2.0_train/best_accuracy
+norm_train:tools/train.py -c test_tipc/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+pact_train:deploy/slim/quantization/quant.py -c test_tipc/configs/det_mv3_db.yml -o
+fpgm_train:deploy/slim/prune/sensitivity_anal.py -c test_tipc/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/det_mv3_db_v2.0_train/best_accuracy
distill_train:null
null:null
null:null
@@ -27,26 +27,26 @@ null:null
===========================infer_params===========================
Global.save_inference_dir:./output/
Global.pretrained_model:
-norm_export:tools/export_model.py -c tests/configs/det_mv3_db.yml -o
-quant_export:deploy/slim/quantization/export_model.py -c tests/configs/det_mv3_db.yml -o
-fpgm_export:deploy/slim/prune/export_prune_model.py -c tests/configs/det_mv3_db.yml -o
+norm_export:tools/export_model.py -c test_tipc/configs/det_mv3_db.yml -o
+quant_export:deploy/slim/quantization/export_model.py -c test_tipc/configs/det_mv3_db.yml -o
+fpgm_export:deploy/slim/prune/export_prune_model.py -c test_tipc/configs/det_mv3_db.yml -o
distill_export:null
export1:null
export2:null
-##
+inference_dir:null
train_model:./inference/ch_ppocr_mobile_v2.0_det_train/best_accuracy
infer_export:tools/export_model.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
infer_quant:False
inference:tools/infer/predict_det.py
--use_gpu:True|False
--enable_mkldnn:True|False
---cpu_threads:6
+--cpu_threads:1|6
--rec_batch_num:1
--use_tensorrt:False|True
--precision:fp32|fp16|int8
--det_model_dir:
--image_dir:./inference/ch_det_data_50/all-sum-510/
---save_log_path:null
+null:null
--benchmark:True
null:null
===========================cpp_infer_params===========================
@@ -65,6 +65,8 @@ inference:./deploy/cpp_infer/build/ppocr det
null:null
--benchmark:True
===========================serving_params===========================
+model_name:ocr_det
+python:python3.7
trans_model:-m paddle_serving_client.convert
--dirname:./inference/ch_ppocr_mobile_v2.0_det_infer/
--model_filename:inference.pdmodel
@@ -78,5 +80,32 @@ op.det.local_service_conf.use_mkldnn:True|False
op.det.local_service_conf.thread_num:1|6
op.det.local_service_conf.use_trt:False|True
op.det.local_service_conf.precision:fp32|fp16|int8
-pipline:pipeline_http_client.py --image_dir=../../doc/imgs
-
+pipline:pipeline_http_client.py|pipeline_rpc_client.py
+--image_dir=../../doc/imgs
+===========================kl_quant_params===========================
+infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
+infer_export:tools/export_model.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+infer_quant:True
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
+null:null
+===========================lite_params===========================
+inference:./ocr_db_crnn det
+infer_model:./models/ch_ppocr_mobile_v2.0_det_opt.nb|./models/ch_ppocr_mobile_v2.0_det_slim_opt.nb
+--cpu_threads:1|4
+--batch_size:1
+--power_mode:LITE_POWER_HIGH|LITE_POWER_LOW
+--image_dir:./test_data/icdar2015_lite/text_localization/ch4_test_images/|./test_data/icdar2015_lite/text_localization/ch4_test_images/img_233.jpg
+--config_dir:./config.txt
+--rec_dict_dir:./ppocr_keys_v1.txt
+--benchmark:True
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bd58e964033243c00e7a270d642f97ced7659114
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
@@ -0,0 +1,19 @@
+===========================kl_quant_params===========================
+model_name:PPOCRv2_ocr_det
+python:python3.7
+infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
+infer_export:deploy/slim/quantization/quant_kl.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+infer_quant:True
+inference:tools/infer/predict_det.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False
+--precision:int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
+null:null
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_mac_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_mac_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ea74b7fe762aea9e47b18b3c31015524c22b088c
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_mac_cpu.txt
@@ -0,0 +1,17 @@
+===========================kl_quant_params===========================
+infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
+infer_export:deploy/slim/quantization/quant_kl.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+infer_quant:True
+inference:tools/infer/predict_det.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False
+--precision:int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
+null:null
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_windows_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_windows_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ea74b7fe762aea9e47b18b3c31015524c22b088c
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_windows_gpu_cpu.txt
@@ -0,0 +1,17 @@
+===========================kl_quant_params===========================
+infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
+infer_export:deploy/slim/quantization/quant_kl.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
+infer_quant:True
+inference:tools/infer/predict_det.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False
+--precision:int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
+null:null
diff --git a/tests/ocr_det_server_params.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det_PACT/train_infer_python.txt
similarity index 64%
rename from tests/ocr_det_server_params.txt
rename to test_tipc/configs/ch_ppocr_mobile_v2.0_det_PACT/train_infer_python.txt
index 4a17fa683439fdc4716b4ed6b067a572fa3a5057..7328be25ffd0ffa0abac83ec80e46be42ff93185 100644
--- a/tests/ocr_det_server_params.txt
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_det_PACT/train_infer_python.txt
@@ -1,40 +1,40 @@
===========================train_params===========================
-model_name:ocr_server_det
+model_name:ocr_det
python:python3.7
gpu_list:0|0,1
Global.use_gpu:True|True
Global.auto_cast:null
-Global.epoch_num:lite_train_infer=2|whole_train_infer=300
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=300
Global.save_model_dir:./output/
-Train.loader.batch_size_per_card:lite_train_infer=2|whole_train_infer=4
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
Global.pretrained_model:null
train_model_name:latest
train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
null:null
##
-trainer:norm_train|pact_train
-norm_train:tools/train.py -c tests/configs/det_r50_vd_db.yml -o Global.pretrained_model=""
-pact_train:null
+trainer:pact_train
+norm_train:null
+pact_train:deploy/slim/quantization/quant.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
fpgm_train:null
distill_train:null
null:null
null:null
##
===========================eval_params===========================
-eval:tools/eval.py -c tests/configs/det_r50_vd_db.yml -o
+eval:null
null:null
##
===========================infer_params===========================
Global.save_inference_dir:./output/
Global.pretrained_model:
-norm_export:tools/export_model.py -c tests/configs/det_r50_vd_db.yml -o
-quant_export:null
+norm_export:null
+quant_export:deploy/slim/quantization/export_model.py -c test_tipc/configs/ppocr_det_mobile/det_mv3_db.yml -o
fpgm_export:null
distill_export:null
export1:null
export2:null
-##
-infer_model:./inference/ch_ppocr_server_v2.0_det_infer/
+inference_dir:null
+train_model:null
infer_export:null
infer_quant:False
inference:tools/infer/predict_det.py
@@ -46,7 +46,6 @@ inference:tools/infer/predict_det.py
--precision:fp32|fp16|int8
--det_model_dir:
--image_dir:./inference/ch_det_data_50/all-sum-510/
---save_log_path:null
---benchmark:True
null:null
-
+--benchmark:True
+null:null
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f29b303879f555eaa9a392633aed6e0095f05cfb
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
@@ -0,0 +1,14 @@
+===========================paddle2onnx_params===========================
+model_name:ocr_rec_mobile
+python:python3.7
+2onnx: paddle2onnx
+--model_dir:./inference/ch_ppocr_mobile_v2.0_rec_infer/
+--model_filename:inference.pdmodel
+--params_filename:inference.pdiparams
+--save_file:./inference/rec_mobile_onnx/model.onnx
+--opset_version:10
+--enable_onnx_checker:True
+inference:tools/infer/predict_rec.py
+--use_gpu:True|False
+--rec_model_dir:
+--image_dir:./inference/rec_inference
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7351e5bd6d5d8ffc5d49b313ad662b1e2fd55bd2
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
@@ -0,0 +1,18 @@
+===========================serving_params===========================
+model_name:ocr_rec_mobile
+python:python3.7|cpp
+trans_model:-m paddle_serving_client.convert
+--dirname:./inference/ch_ppocr_mobile_v2.0_rec_infer/
+--model_filename:inference.pdmodel
+--params_filename:inference.pdiparams
+--serving_server:./deploy/pdserving/ppocr_rec_mobile_2.0_serving/
+--serving_client:./deploy/pdserving/ppocr_rec_mobile_2.0_client/
+serving_dir:./deploy/pdserving
+web_service:web_service_rec.py --config=config.yml --opt op.rec.concurrency=1
+op.rec.local_service_conf.devices:null|0
+op.rec.local_service_conf.use_mkldnn:True|False
+op.rec.local_service_conf.thread_num:1|6
+op.rec.local_service_conf.use_trt:False|True
+op.rec.local_service_conf.precision:fp32|fp16|int8
+pipline:pipeline_rpc_client.py|pipeline_http_client.py
+--image_dir:../../doc/imgs_words_en
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/train_infer_python.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c93b83e5dcab1aab56ea5fa1a178e3dc7ec3c2e4
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_mobile_v2.0_rec/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ch_ppocr_mobile_v2.0_rec
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_infer=2|whole_train_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_infer=128|whole_train_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c configs/rec/rec_icdar15_train.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c configs/rec/rec_icdar15_train.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c configs/rec/rec_icdar15_train.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+infer_model:null
+infer_export:tools/export_model.py -c configs/rec/rec_icdar15_train.yml -o
+infer_quant:False
+inference:tools/infer/predict_rec.py --rec_char_dict_path=./ppocr/utils/ic15_dict.txt --rec_image_shape="3,32,100" --rec_algorithm="RARE"
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:True|False
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+--save_log_path:./test/output/
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/ch_ppocr_server_v2.0/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_server_v2.0/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5a93571a76366de191d2fb1736aa3ff4c71b1737
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_server_v2.0/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt
@@ -0,0 +1,19 @@
+===========================ch_ppocr_mobile_v2.0===========================
+model_name:ch_ppocr_server_v2.0
+python:python3.7
+infer_model:./inference/ch_ppocr_server_v2.0_det_infer/
+infer_export:null
+infer_quant:True
+inference:tools/infer/predict_system.py
+--use_gpu:False
+--enable_mkldnn:False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False
+--precision:int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+--rec_model_dir:./inference/ch_ppocr_server_v2.0_rec_infer/
+--benchmark:True
+null:null
+null:null
diff --git a/tests/configs/det_r50_vd_db.yml b/test_tipc/configs/ch_ppocr_server_v2.0_det/det_r50_vd_db.yml
similarity index 100%
rename from tests/configs/det_r50_vd_db.yml
rename to test_tipc/configs/ch_ppocr_server_v2.0_det/det_r50_vd_db.yml
diff --git a/test_tipc/configs/ch_ppocr_server_v2.0_det/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt b/test_tipc/configs/ch_ppocr_server_v2.0_det/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..40fdc11241f3ac966ff01d4c51173f990cc594c5
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_server_v2.0_det/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
@@ -0,0 +1,14 @@
+===========================paddle2onnx_params===========================
+model_name:ocr_det_server
+python:python3.7
+2onnx: paddle2onnx
+--model_dir:./inference/ch_ppocr_server_v2.0_det_infer/
+--model_filename:inference.pdmodel
+--params_filename:inference.pdiparams
+--save_file:./inference/det_server_onnx/model.onnx
+--opset_version:10
+--enable_onnx_checker:True
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--det_model_dir:
+--image_dir:./inference/det_inference
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_server_v2.0_det/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_server_v2.0_det/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..09b7ab750408a54fa292f1168d8de01bd962ca43
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_server_v2.0_det/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
@@ -0,0 +1,18 @@
+===========================serving_params===========================
+model_name:ocr_det_server
+python:python3.7|cpp
+trans_model:-m paddle_serving_client.convert
+--dirname:./inference/ch_ppocr_server_v2.0_det_infer/
+--model_filename:inference.pdmodel
+--params_filename:inference.pdiparams
+--serving_server:./deploy/pdserving/ppocr_det_server_2.0_serving/
+--serving_client:./deploy/pdserving/ppocr_det_server_2.0_client/
+serving_dir:./deploy/pdserving
+web_service:web_service_det.py --config=config.yml --opt op.det.concurrency=1
+op.det.local_service_conf.devices:null|0
+op.det.local_service_conf.use_mkldnn:True|False
+op.det.local_service_conf.thread_num:1|6
+op.det.local_service_conf.use_trt:False|True
+op.det.local_service_conf.precision:fp32|fp16|int8
+pipline:pipeline_rpc_client.py|pipeline_http_client.py
+--image_dir:../../doc/imgs_words_en
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_server_v2.0_det/train_infer_python.txt b/test_tipc/configs/ch_ppocr_server_v2.0_det/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bea918a7f366548056d7d62a5785353a4e689d01
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_server_v2.0_det/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ch_ppocr_server_v2.0_det
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=2|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_lite_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train|pact_train|fpgm_export
+norm_train:tools/train.py -c test_tipc/configs/ppocr_det_server/det_r50_vd_db.yml -o
+quant_export:deploy/slim/quantization/export_model.py -c test_tipc/configs/ppocr_det_server/det_r50_vd_db.yml -o
+fpgm_export:deploy/slim/prune/export_prune_model.py -c test_tipc/configs/ppocr_det_server/det_r50_vd_db.yml -o
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c test_tipc/configs/ppocr_det_server/det_r50_vd_db.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/ppocr_det_server/det_r50_vd_db.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+train_model:./inference/ch_ppocr_server_v2.0_det_train/best_accuracy
+infer_export:tools/export_model.py -c configs/det/ch_ppocr_v2.0/ch_det_res18_db_v2.0.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+--save_log_path:null
+--benchmark:True
+null:null
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_server_v2.0_rec/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt b/test_tipc/configs/ch_ppocr_server_v2.0_rec/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..05542332e94eab38d8a433a727e04bf0be15f423
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_server_v2.0_rec/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
@@ -0,0 +1,14 @@
+===========================paddle2onnx_params===========================
+model_name:ocr_rec_server
+python:python3.7
+2onnx: paddle2onnx
+--model_dir:./inference/ch_ppocr_server_v2.0_rec_infer/
+--model_filename:inference.pdmodel
+--params_filename:inference.pdiparams
+--save_file:./inference/rec_server_onnx/model.onnx
+--opset_version:10
+--enable_onnx_checker:True
+inference:tools/infer/predict_rec.py
+--use_gpu:True|False
+--rec_model_dir:
+--image_dir:./inference/rec_inference
\ No newline at end of file
diff --git a/test_tipc/configs/ch_ppocr_server_v2.0_rec/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_server_v2.0_rec/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..24e7a8f3e0364f2a0a14c74a27da7372508cd414
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_server_v2.0_rec/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
@@ -0,0 +1,18 @@
+===========================serving_params===========================
+model_name:ocr_rec_server
+python:python3.7
+trans_model:-m paddle_serving_client.convert
+--dirname:./inference/ch_ppocr_server_v2.0_rec_infer/
+--model_filename:inference.pdmodel
+--params_filename:inference.pdiparams
+--serving_server:./deploy/pdserving/ppocr_rec_server_2.0_serving/
+--serving_client:./deploy/pdserving/ppocr_rec_server_2.0_client/
+serving_dir:./deploy/pdserving
+web_service:web_service_rec.py --config=config.yml --opt op.rec.concurrency=1
+op.rec.local_service_conf.devices:null|0
+op.rec.local_service_conf.use_mkldnn:True|False
+op.rec.local_service_conf.thread_num:1|6
+op.rec.local_service_conf.use_trt:False|True
+op.rec.local_service_conf.precision:fp32|fp16|int8
+pipline:pipeline_rpc_client.py|pipeline_http_client.py
+--image_dir:../../doc/imgs_words_en
\ No newline at end of file
diff --git a/tests/configs/rec_icdar15_r34_train.yml b/test_tipc/configs/ch_ppocr_server_v2.0_rec/rec_icdar15_train.yml
similarity index 100%
rename from tests/configs/rec_icdar15_r34_train.yml
rename to test_tipc/configs/ch_ppocr_server_v2.0_rec/rec_icdar15_train.yml
diff --git a/test_tipc/configs/ch_ppocr_server_v2.0_rec/train_infer_python.txt b/test_tipc/configs/ch_ppocr_server_v2.0_rec/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f35bb3876737606f58949968d5b43f3bd796be30
--- /dev/null
+++ b/test_tipc/configs/ch_ppocr_server_v2.0_rec/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:ch_ppocr_server_v2.0_rec
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=5|whole_train_whole_infer=100
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/ch_ppocr_server_v2.0_rec/rec_icdar15_train.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c test_tipc/configs/ch_ppocr_server_v2.0_rec/rec_icdar15_train.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/ch_ppocr_server_v2.0_rec/rec_icdar15_train.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+infer_model:null
+infer_export:tools/export_model.py -c test_tipc/configs/ch_ppocr_server_v2.0_rec/rec_icdar15_train.yml -o
+infer_quant:False
+inference:tools/infer/predict_rec.py --rec_char_dict_path=./ppocr/utils/ic15_dict.txt --rec_image_shape="3,32,100"
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:True|False
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+--save_log_path:./test/output/
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/det_mv3_db_v2.0/train_infer_python.txt b/test_tipc/configs/det_mv3_db_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..de9df227722c8813fc8a21757b118875157a8a56
--- /dev/null
+++ b/test_tipc/configs/det_mv3_db_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:det_mv3_db_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c configs/det/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c configs/det/det_mv3_db.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:./inference/det_mv3_db_v2.0_train/best_accuracy
+infer_export:tools/export_model.py -c configs/det/det_mv3_db.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
\ No newline at end of file
diff --git a/test_tipc/configs/det_mv3_east_v2.0/det_mv3_east.yml b/test_tipc/configs/det_mv3_east_v2.0/det_mv3_east.yml
new file mode 100644
index 0000000000000000000000000000000000000000..4ae32ab004684f040b5939be7f348d468b4b8024
--- /dev/null
+++ b/test_tipc/configs/det_mv3_east_v2.0/det_mv3_east.yml
@@ -0,0 +1,109 @@
+Global:
+ use_gpu: true
+ epoch_num: 10000
+ log_smooth_window: 20
+ print_batch_step: 2
+ save_model_dir: ./output/east_mv3/
+ save_epoch_step: 1000
+ # evaluation is run every 5000 iterations after the 4000th iteration
+ eval_batch_step: [4000, 5000]
+ cal_metric_during_train: False
+ pretrained_model: ./pretrain_models/MobileNetV3_large_x0_5_pretrained
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img:
+ save_res_path: ./output/det_east/predicts_east.txt
+
+Architecture:
+ model_type: det
+ algorithm: EAST
+ Transform:
+ Backbone:
+ name: MobileNetV3
+ scale: 0.5
+ model_name: large
+ Neck:
+ name: EASTFPN
+ model_name: small
+ Head:
+ name: EASTHead
+ model_name: small
+
+Loss:
+ name: EASTLoss
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ # name: Cosine
+ learning_rate: 0.001
+ # warmup_epoch: 0
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+PostProcess:
+ name: EASTPostProcess
+ score_thresh: 0.8
+ cover_thresh: 0.1
+ nms_thresh: 0.2
+
+Metric:
+ name: DetMetric
+ main_indicator: hmean
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/icdar2015/text_localization/
+ label_file_list:
+ - ./train_data/icdar2015/text_localization/train_icdar2015_label.txt
+ ratio_list: [1.0]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - DetLabelEncode: # Class handling label
+ - EASTProcessTrain:
+ image_shape: [512, 512]
+ background_ratio: 0.125
+ min_crop_side_ratio: 0.1
+ min_text_size: 10
+ - KeepKeys:
+ keep_keys: ['image', 'score_map', 'geo_map', 'training_mask'] # dataloader will return list in this order
+ loader:
+ shuffle: True
+ drop_last: False
+ batch_size_per_card: 16
+ num_workers: 8
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/icdar2015/text_localization/
+ label_file_list:
+ - ./train_data/icdar2015/text_localization/test_icdar2015_label.txt
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - DetLabelEncode: # Class handling label
+ - DetResizeForTest:
+ limit_side_len: 2400
+ limit_type: max
+ - NormalizeImage:
+ scale: 1./255.
+ mean: [0.485, 0.456, 0.406]
+ std: [0.229, 0.224, 0.225]
+ order: 'hwc'
+ - ToCHWImage:
+ - KeepKeys:
+ keep_keys: ['image', 'shape', 'polys', 'ignore_tags']
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 1 # must be 1
+ num_workers: 2
\ No newline at end of file
diff --git a/tests/ocr_kl_quant_params.txt b/test_tipc/configs/det_mv3_east_v2.0/train_infer_python.txt
similarity index 50%
rename from tests/ocr_kl_quant_params.txt
rename to test_tipc/configs/det_mv3_east_v2.0/train_infer_python.txt
index c6ee97dca49bb7d942a339783af44053e6c79b00..7a3aced57aaf31bb54075d8ba3119d1626a2c58a 100644
--- a/tests/ocr_kl_quant_params.txt
+++ b/test_tipc/configs/det_mv3_east_v2.0/train_infer_python.txt
@@ -1,19 +1,19 @@
===========================train_params===========================
-model_name:ocr_system
+model_name:det_mv3_east_v2.0
python:python3.7
-gpu_list:null
-Global.use_gpu:null
-Global.auto_cast:null
-Global.epoch_num:null
+gpu_list:0
+Global.use_gpu:True|True
+Global.auto_cast:fp32
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=500
Global.save_model_dir:./output/
-Train.loader.batch_size_per_card:null
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
Global.pretrained_model:null
-train_model_name:null
-train_infer_img_dir:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
null:null
##
-trainer:
-norm_train:null
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/det_mv3_east_v2.0/det_mv3_east.yml -o
pact_train:null
fpgm_train:null
distill_train:null
@@ -27,18 +27,18 @@ null:null
===========================infer_params===========================
Global.save_inference_dir:./output/
Global.pretrained_model:
-norm_export:null
+norm_export:tools/export_model.py -c test_tipc/configs/det_mv3_east_v2.0/det_mv3_east.yml -o
quant_export:null
-fpgm_export:null
+fpgm_export:null
distill_export:null
export1:null
export2:null
##
-infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
-kl_quant:deploy/slim/quantization/quant_kl.py -c configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -o
-infer_quant:True
+train_model:./inference/det_mv3_east/best_accuracy
+infer_export:tools/export_model.py -c test_tipc/cconfigs/det_mv3_east_v2.0/det_mv3_east.yml -o
+infer_quant:False
inference:tools/infer/predict_det.py
---use_gpu:TrueFalse
+--use_gpu:True|False
--enable_mkldnn:True|False
--cpu_threads:1|6
--rec_batch_num:1
@@ -48,4 +48,4 @@ inference:tools/infer/predict_det.py
--image_dir:./inference/ch_det_data_50/all-sum-510/
--save_log_path:null
--benchmark:True
-null:null
+--det_algorithm:EAST
diff --git a/test_tipc/configs/det_r50_db_v2.0/train_infer_python.txt b/test_tipc/configs/det_r50_db_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..72b5ede15d27a33477b5ecd8302aaccc0ab56413
--- /dev/null
+++ b/test_tipc/configs/det_r50_db_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:det_r50_db_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=2|whole_train_whole_infer=300
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_lite_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c configs/det/det_r50_vd_db.yml -o
+quant_export:null
+fpgm_export:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c configs/det/det_r50_vd_db.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c configs/det/det_r50_vd_db.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+train_model:./inference/ch_ppocr_server_v2.0_det_train/best_accuracy
+infer_export:tools/export_model.py -c configs/det/det_r50_vd_db.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+--save_log_path:null
+--benchmark:True
+null:null
\ No newline at end of file
diff --git a/test_tipc/configs/det_r50_vd_east_v2.0/det_r50_vd_east.yml b/test_tipc/configs/det_r50_vd_east_v2.0/det_r50_vd_east.yml
new file mode 100644
index 0000000000000000000000000000000000000000..c6b6fc3ed79d0d717fe3dbd4cb9c8559ff8f07c4
--- /dev/null
+++ b/test_tipc/configs/det_r50_vd_east_v2.0/det_r50_vd_east.yml
@@ -0,0 +1,108 @@
+Global:
+ use_gpu: true
+ epoch_num: 10000
+ log_smooth_window: 20
+ print_batch_step: 2
+ save_model_dir: ./output/east_r50_vd/
+ save_epoch_step: 1000
+ # evaluation is run every 5000 iterations after the 4000th iteration
+ eval_batch_step: [4000, 5000]
+ cal_metric_during_train: False
+ pretrained_model:
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img:
+ save_res_path: ./output/det_east/predicts_east.txt
+
+Architecture:
+ model_type: det
+ algorithm: EAST
+ Transform:
+ Backbone:
+ name: ResNet
+ layers: 50
+ Neck:
+ name: EASTFPN
+ model_name: large
+ Head:
+ name: EASTHead
+ model_name: large
+
+Loss:
+ name: EASTLoss
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ # name: Cosine
+ learning_rate: 0.001
+ # warmup_epoch: 0
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+PostProcess:
+ name: EASTPostProcess
+ score_thresh: 0.8
+ cover_thresh: 0.1
+ nms_thresh: 0.2
+
+Metric:
+ name: DetMetric
+ main_indicator: hmean
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/icdar2015/text_localization/
+ label_file_list:
+ - ./train_data/icdar2015/text_localization/train_icdar2015_label.txt
+ ratio_list: [1.0]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - DetLabelEncode: # Class handling label
+ - EASTProcessTrain:
+ image_shape: [512, 512]
+ background_ratio: 0.125
+ min_crop_side_ratio: 0.1
+ min_text_size: 10
+ - KeepKeys:
+ keep_keys: ['image', 'score_map', 'geo_map', 'training_mask'] # dataloader will return list in this order
+ loader:
+ shuffle: True
+ drop_last: False
+ batch_size_per_card: 8
+ num_workers: 8
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/icdar2015/text_localization/
+ label_file_list:
+ - ./train_data/icdar2015/text_localization/test_icdar2015_label.txt
+ transforms:
+ - DecodeImage: # load image
+ Fa: BGR
+ channel_first: False
+ - DetLabelEncode: # Class handling label
+ - DetResizeForTest:
+ limit_side_len: 2400
+ limit_type: max
+ - NormalizeImage:
+ scale: 1./255.
+ mean: [0.485, 0.456, 0.406]
+ std: [0.229, 0.224, 0.225]
+ order: 'hwc'
+ - ToCHWImage:
+ - KeepKeys:
+ keep_keys: ['image', 'shape', 'polys', 'ignore_tags']
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 1 # must be 1
+ num_workers: 2
\ No newline at end of file
diff --git a/test_tipc/configs/det_r50_vd_east_v2.0/train_infer_python.txt b/test_tipc/configs/det_r50_vd_east_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e9eaa779520f78622509153482fd6a84322c9cc5
--- /dev/null
+++ b/test_tipc/configs/det_r50_vd_east_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:det_r50_vd_east_v2.0
+python:python3.7
+gpu_list:0
+Global.use_gpu:True|True
+Global.auto_cast:fp32
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=500
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/det_r50_vd_east_v2.0/det_r50_vd_east.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/det_r50_vd_east_v2.0/det_r50_vd_east.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+train_model:./inference/det_mv3_east/best_accuracy
+infer_export:tools/export_model.py -c test_tipc/cconfigs/det_r50_vd_east_v2.0/det_r50_vd_east.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+--save_log_path:null
+--benchmark:True
+--det_algorithm:EAST
diff --git a/test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/det_r50_vd_sast_icdar2015.yml b/test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/det_r50_vd_sast_icdar2015.yml
new file mode 100644
index 0000000000000000000000000000000000000000..8e9315d2488ad187eb12708d094c5be57cb48eac
--- /dev/null
+++ b/test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/det_r50_vd_sast_icdar2015.yml
@@ -0,0 +1,111 @@
+Global:
+ use_gpu: true
+ epoch_num: 5000
+ log_smooth_window: 20
+ print_batch_step: 2
+ save_model_dir: ./output/sast_r50_vd_ic15/
+ save_epoch_step: 1000
+ # evaluation is run every 5000 iterations after the 4000th iteration
+ eval_batch_step: [4000, 5000]
+ cal_metric_during_train: False
+ pretrained_model: ./pretrain_models/ResNet50_vd_ssld_pretrained
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img:
+ save_res_path: ./output/sast_r50_vd_ic15/predicts_sast.txt
+
+
+Architecture:
+ model_type: det
+ algorithm: SAST
+ Transform:
+ Backbone:
+ name: ResNet_SAST
+ layers: 50
+ Neck:
+ name: SASTFPN
+ with_cab: True
+ Head:
+ name: SASTHead
+
+Loss:
+ name: SASTLoss
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ # name: Cosine
+ learning_rate: 0.001
+ # warmup_epoch: 0
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+PostProcess:
+ name: SASTPostProcess
+ score_thresh: 0.5
+ sample_pts_num: 2
+ nms_thresh: 0.2
+ expand_scale: 1.0
+ shrink_ratio_of_width: 0.3
+
+Metric:
+ name: DetMetric
+ main_indicator: hmean
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/icdar2015/text_localization/
+ label_file_list:
+ - ./train_data/icdar2015/text_localization/train_icdar2015_label.txt
+ ratio_list: [0.1, 0.45, 0.3, 0.15]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - DetLabelEncode: # Class handling label
+ - SASTProcessTrain:
+ image_shape: [512, 512]
+ min_crop_side_ratio: 0.3
+ min_crop_size: 24
+ min_text_size: 4
+ max_text_size: 512
+ - KeepKeys:
+ keep_keys: ['image', 'score_map', 'border_map', 'training_mask', 'tvo_map', 'tco_map'] # dataloader will return list in this order
+ loader:
+ shuffle: True
+ drop_last: False
+ batch_size_per_card: 4
+ num_workers: 4
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/icdar2015/text_localization/
+ label_file_list:
+ - ./train_data/icdar2015/text_localization/test_icdar2015_label.txt
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - DetLabelEncode: # Class handling label
+ - DetResizeForTest:
+ resize_long: 1536
+ - NormalizeImage:
+ scale: 1./255.
+ mean: [0.485, 0.456, 0.406]
+ std: [0.229, 0.224, 0.225]
+ order: 'hwc'
+ - ToCHWImage:
+ - KeepKeys:
+ keep_keys: ['image', 'shape', 'polys', 'ignore_tags']
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 1 # must be 1
+ num_workers: 2
+
diff --git a/test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/train_infer_python.txt b/test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d9f15dded4b920cb93b2180aeb9e14e93ebab5cc
--- /dev/null
+++ b/test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:det_r50_vd_sast_icdar15_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=5000
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/det_r50_vd_sast_icdar2015.yml -o Global.pretrained_model=./pretrain_models/ResNet50_vd_ssld_pretrained
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/det_r50_vd_sast_icdar2015.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:./inference/det_r50_vd_sast_icdar15_v2.0_train/best_accuracy
+infer_export:tools/export_model.py -c test_tipc/configs/det_r50_vd_sast_icdar15_v2.0/det_r50_vd_sast_icdar2015.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/det_r50_vd_sast_totaltext.yml b/test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/det_r50_vd_sast_totaltext.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ef2b8845588386f9722189b58db8eae346a40ca9
--- /dev/null
+++ b/test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/det_r50_vd_sast_totaltext.yml
@@ -0,0 +1,108 @@
+Global:
+ use_gpu: true
+ epoch_num: 5000
+ log_smooth_window: 20
+ print_batch_step: 2
+ save_model_dir: ./output/sast_r50_vd_tt/
+ save_epoch_step: 1000
+ # evaluation is run every 5000 iterations after the 4000th iteration
+ eval_batch_step: [4000, 5000]
+ cal_metric_during_train: False
+ pretrained_model: ./pretrain_models/ResNet50_vd_ssld_pretrained
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img:
+ save_res_path: ./output/sast_r50_vd_tt/predicts_sast.txt
+
+Architecture:
+ model_type: det
+ algorithm: SAST
+ Transform:
+ Backbone:
+ name: ResNet_SAST
+ layers: 50
+ Neck:
+ name: SASTFPN
+ with_cab: True
+ Head:
+ name: SASTHead
+
+Loss:
+ name: SASTLoss
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ # name: Cosine
+ learning_rate: 0.001
+ # warmup_epoch: 0
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+PostProcess:
+ name: SASTPostProcess
+ score_thresh: 0.5
+ sample_pts_num: 6
+ nms_thresh: 0.2
+ expand_scale: 1.2
+ shrink_ratio_of_width: 0.2
+
+Metric:
+ name: DetMetric
+ main_indicator: hmean
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/total_text/train
+ label_file_list: [./train_data/total_text/train/train.txt]
+ ratio_list: [1.0]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - DetLabelEncode: # Class handling label
+ - SASTProcessTrain:
+ image_shape: [512, 512]
+ min_crop_side_ratio: 0.3
+ min_crop_size: 24
+ min_text_size: 4
+ max_text_size: 512
+ - KeepKeys:
+ keep_keys: ['image', 'score_map', 'border_map', 'training_mask', 'tvo_map', 'tco_map'] # dataloader will return list in this order
+ loader:
+ shuffle: True
+ drop_last: False
+ batch_size_per_card: 4
+ num_workers: 4
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/
+ label_file_list:
+ - ./train_data/total_text/test/test.txt
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - DetLabelEncode: # Class handling label
+ - DetResizeForTest:
+ resize_long: 768
+ - NormalizeImage:
+ scale: 1./255.
+ mean: [0.485, 0.456, 0.406]
+ std: [0.229, 0.224, 0.225]
+ order: 'hwc'
+ - ToCHWImage:
+ - KeepKeys:
+ keep_keys: ['image', 'shape', 'polys', 'ignore_tags']
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 1 # must be 1
+ num_workers: 2
\ No newline at end of file
diff --git a/test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/train_infer_python.txt b/test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..602254f2f3b7eb6f5b1fc72fbaf212fbea43ca49
--- /dev/null
+++ b/test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:det_r50_vd_sast_totaltext_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=5000
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=4
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/icdar2015/text_localization/ch4_test_images/
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/det_r50_vd_sast_totaltext.yml -o Global.pretrained_model=./pretrain_models/ResNet50_vd_ssld_pretrained
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/det_r50_vd_sast_totaltext.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:./inference/det_r50_vd_sast_totaltext_v2.0/best_accuracy
+infer_export:tools/export_model.py -c test_tipc/configs/det_r50_vd_sast_totaltext_v2.0/det_r50_vd_sast_totaltext.yml -o
+infer_quant:False
+inference:tools/infer/predict_det.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/en_server_pgnetA/train_infer_python.txt b/test_tipc/configs/en_server_pgnetA/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c7b2d1b0a712693b666cd0b40cff4a8871084aa6
--- /dev/null
+++ b/test_tipc/configs/en_server_pgnetA/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:en_server_pgnetA
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=1|whole_train_whole_infer=500
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=2|whole_train_whole_infer=14
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./train_data/total_text/test/rgb/
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c configs/e2e/e2e_r50_vd_pg.yml -o Global.pretrained_model=./pretrain_models/en_server_pgnetA/best_accuracy
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:null
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c configs/e2e/e2e_r50_vd_pg.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+inference_dir:null
+train_model:./inference/en_server_pgnetA/best_accuracy
+infer_export:tools/export_model.py -c configs/e2e/e2e_r50_vd_pg.yml -o
+infer_quant:False
+inference:tools/infer/predict_e2e.py
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1
+--use_tensorrt:False|True
+--precision:fp32|fp16|int8
+--det_model_dir:
+--image_dir:./inference/ch_det_data_50/all-sum-510/
+null:null
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/rec_icdar15_train.yml b/test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/rec_icdar15_train.yml
new file mode 100644
index 0000000000000000000000000000000000000000..463e8d1d7d7f43ba7b48810e2a2e8552eb5e4fe3
--- /dev/null
+++ b/test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/rec_icdar15_train.yml
@@ -0,0 +1,97 @@
+Global:
+ use_gpu: True
+ epoch_num: 72
+ log_smooth_window: 20
+ print_batch_step: 10
+ save_model_dir: ./output/rec/mv3_none_bilstm_ctc/
+ save_epoch_step: 3
+ # evaluation is run every 2000 iterations
+ eval_batch_step: [0, 2000]
+ cal_metric_during_train: True
+ pretrained_model:
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img: doc/imgs_words_en/word_10.png
+ # for data or label process
+ character_dict_path:
+ max_text_length: 25
+ infer_mode: False
+ use_space_char: False
+ save_res_path: ./output/rec/predicts_mv3_none_bilstm_ctc.txt
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ learning_rate: 0.0005
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+Architecture:
+ model_type: rec
+ algorithm: CRNN
+ Transform:
+ Backbone:
+ name: MobileNetV3
+ scale: 0.5
+ model_name: large
+ Neck:
+ name: SequenceEncoder
+ encoder_type: rnn
+ hidden_size: 96
+ Head:
+ name: CTCHead
+ fc_decay: 0
+
+Loss:
+ name: CTCLoss
+
+PostProcess:
+ name: CTCLabelDecode
+
+Metric:
+ name: RecMetric
+ main_indicator: acc
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data/
+ label_file_list: ["./train_data/ic15_data/rec_gt_train.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ batch_size_per_card: 256
+ drop_last: True
+ num_workers: 8
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data
+ label_file_list: ["./train_data/ic15_data/rec_gt_test.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 256
+ num_workers: 4
diff --git a/test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/train_infer_python.txt b/test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..698c14ee66914bea7a6926650234ad7a979d01b4
--- /dev/null
+++ b/test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:rec_mv3_none_bilstm_ctc_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=5|whole_train_whole_infer=100
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+infer_model:null
+infer_export:tools/export_model.py -c test_tipc/configs/rec_mv3_none_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+infer_quant:False
+inference:tools/infer/predict_rec.py --rec_char_dict_path=./ppocr/utils/ic15_dict.txt --rec_image_shape="3,32,100"
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:True|False
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+--save_log_path:./test/output/
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/rec_mv3_none_none_ctc_v2.0/rec_icdar15_train.yml b/test_tipc/configs/rec_mv3_none_none_ctc_v2.0/rec_icdar15_train.yml
new file mode 100644
index 0000000000000000000000000000000000000000..06a2b71efac771f6c765e07f5e8815dabfd76c81
--- /dev/null
+++ b/test_tipc/configs/rec_mv3_none_none_ctc_v2.0/rec_icdar15_train.yml
@@ -0,0 +1,96 @@
+Global:
+ use_gpu: True
+ epoch_num: 72
+ log_smooth_window: 20
+ print_batch_step: 10
+ save_model_dir: ./output/rec/mv3_none_none_ctc/
+ save_epoch_step: 3
+ # evaluation is run every 2000 iterations
+ eval_batch_step: [0, 2000]
+ cal_metric_during_train: True
+ pretrained_model:
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img: doc/imgs_words_en/word_10.png
+ # for data or label process
+ character_dict_path:
+ max_text_length: 25
+ infer_mode: False
+ use_space_char: False
+ save_res_path: ./output/rec/predicts_mv3_none_none_ctc.txt
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ learning_rate: 0.0005
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+Architecture:
+ model_type: rec
+ algorithm: Rosetta
+ Transform:
+ Backbone:
+ name: MobileNetV3
+ scale: 0.5
+ model_name: large
+ Neck:
+ name: SequenceEncoder
+ encoder_type: reshape
+ Head:
+ name: CTCHead
+ fc_decay: 0.0004
+
+Loss:
+ name: CTCLoss
+
+PostProcess:
+ name: CTCLabelDecode
+
+Metric:
+ name: RecMetric
+ main_indicator: acc
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data/
+ label_file_list: ["./train_data/ic15_data/rec_gt_train.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ batch_size_per_card: 256
+ drop_last: True
+ num_workers: 8
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data
+ label_file_list: ["./train_data/ic15_data/rec_gt_test.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 256
+ num_workers: 8
diff --git a/test_tipc/configs/rec_mv3_none_none_ctc_v2.0/train_infer_python.txt b/test_tipc/configs/rec_mv3_none_none_ctc_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..53250c57e49967b9816b62dae07c64c0d22d58af
--- /dev/null
+++ b/test_tipc/configs/rec_mv3_none_none_ctc_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:rec_mv3_none_none_ctc_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=5|whole_train_whole_infer=100
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/rec_mv3_none_none_ctc_v2.0/rec_icdar15_train.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c test_tipc/configs/rec_mv3_none_none_ctc_v2.0/rec_icdar15_train.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/rec_mv3_none_none_ctc_v2.0/rec_icdar15_train.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+infer_model:null
+infer_export:tools/export_model.py -c test_tipc/configs/rec_mv3_none_none_ctc_v2.0/rec_icdar15_train.yml -o
+infer_quant:False
+inference:tools/infer/predict_rec.py --rec_char_dict_path=./ppocr/utils/ic15_dict.txt --rec_image_shape="3,32,100"
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:True|False
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+--save_log_path:./test/output/
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml b/test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e20ea00f335bbb7996689c6836c5cc2f355bcbf1
--- /dev/null
+++ b/test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml
@@ -0,0 +1,101 @@
+Global:
+ use_gpu: True
+ epoch_num: 72
+ log_smooth_window: 20
+ print_batch_step: 10
+ save_model_dir: ./output/rec/mv3_tps_bilstm_ctc/
+ save_epoch_step: 3
+ # evaluation is run every 2000 iterations
+ eval_batch_step: [0, 2000]
+ cal_metric_during_train: True
+ pretrained_model:
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img: doc/imgs_words_en/word_10.png
+ # for data or label process
+ character_dict_path:
+ max_text_length: 25
+ infer_mode: False
+ use_space_char: False
+ save_res_path: ./output/rec/predicts_mv3_tps_bilstm_ctc.txt
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ learning_rate: 0.0005
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+Architecture:
+ model_type: rec
+ algorithm: STARNet
+ Transform:
+ name: TPS
+ num_fiducial: 20
+ loc_lr: 0.1
+ model_name: small
+ Backbone:
+ name: MobileNetV3
+ scale: 0.5
+ model_name: large
+ Neck:
+ name: SequenceEncoder
+ encoder_type: rnn
+ hidden_size: 96
+ Head:
+ name: CTCHead
+ fc_decay: 0.0004
+
+Loss:
+ name: CTCLoss
+
+PostProcess:
+ name: CTCLabelDecode
+
+Metric:
+ name: RecMetric
+ main_indicator: acc
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data/
+ label_file_list: ["./train_data/ic15_data/rec_gt_train.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ batch_size_per_card: 256
+ drop_last: True
+ num_workers: 8
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data
+ label_file_list: ["./train_data/ic15_data/rec_gt_test.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 256
+ num_workers: 4
diff --git a/test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/train_infer_python.txt b/test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5de24ae5835f91ee2b4a6d7f816197ce694002f6
--- /dev/null
+++ b/test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:rec_mv3_tps_bilstm_ctc_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=5|whole_train_whole_infer=100
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+infer_model:null
+infer_export:tools/export_model.py -c test_tipc/configs/rec_mv3_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+infer_quant:False
+inference:tools/infer/predict_rec.py --rec_char_dict_path=./ppocr/utils/ic15_dict.txt --rec_image_shape="3,32,100"
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:True|False
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+--save_log_path:./test/output/
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/rec_icdar15_train.yml b/test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/rec_icdar15_train.yml
new file mode 100644
index 0000000000000000000000000000000000000000..3e9ea4865831462e7351b718944bfe8cb0f9812f
--- /dev/null
+++ b/test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/rec_icdar15_train.yml
@@ -0,0 +1,96 @@
+Global:
+ use_gpu: true
+ epoch_num: 72
+ log_smooth_window: 20
+ print_batch_step: 10
+ save_model_dir: ./output/rec/r34_vd_none_bilstm_ctc/
+ save_epoch_step: 3
+ # evaluation is run every 2000 iterations
+ eval_batch_step: [0, 2000]
+ cal_metric_during_train: True
+ pretrained_model:
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img: doc/imgs_words_en/word_10.png
+ # for data or label process
+ character_dict_path:
+ max_text_length: 25
+ infer_mode: False
+ use_space_char: False
+ save_res_path: ./output/rec/predicts_r34_vd_none_bilstm_ctc.txt
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ learning_rate: 0.0005
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+Architecture:
+ model_type: rec
+ algorithm: CRNN
+ Transform:
+ Backbone:
+ name: ResNet
+ layers: 34
+ Neck:
+ name: SequenceEncoder
+ encoder_type: rnn
+ hidden_size: 256
+ Head:
+ name: CTCHead
+ fc_decay: 0
+
+Loss:
+ name: CTCLoss
+
+PostProcess:
+ name: CTCLabelDecode
+
+Metric:
+ name: RecMetric
+ main_indicator: acc
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data/
+ label_file_list: ["./train_data/ic15_data/rec_gt_train.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: True
+ batch_size_per_card: 256
+ drop_last: True
+ num_workers: 8
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data
+ label_file_list: ["./train_data/ic15_data/rec_gt_test.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 256
+ num_workers: 4
diff --git a/test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/train_infer_python.txt b/test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..baf306e1897c9f0f65ebe45747738b18173dd286
--- /dev/null
+++ b/test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:rec_r34_vd_none_bilstm_ctc_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=5|whole_train_whole_infer=100
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+infer_model:null
+infer_export:tools/export_model.py -c test_tipc/configs/rec_r34_vd_none_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+infer_quant:False
+inference:tools/infer/predict_rec.py --rec_char_dict_path=./ppocr/utils/ic15_dict.txt --rec_image_shape="3,32,100"
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:True|False
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+--save_log_path:./test/output/
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/rec_icdar15_train.yml b/test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/rec_icdar15_train.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ce15e27753c27ce318e65e17e2aeafd4f480817e
--- /dev/null
+++ b/test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/rec_icdar15_train.yml
@@ -0,0 +1,94 @@
+Global:
+ use_gpu: true
+ epoch_num: 72
+ log_smooth_window: 20
+ print_batch_step: 10
+ save_model_dir: ./output/rec/r34_vd_none_none_ctc/
+ save_epoch_step: 3
+ # evaluation is run every 2000 iterations
+ eval_batch_step: [0, 2000]
+ cal_metric_during_train: True
+ pretrained_model:
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img: doc/imgs_words_en/word_10.png
+ # for data or label process
+ character_dict_path:
+ max_text_length: 25
+ infer_mode: False
+ use_space_char: False
+ save_res_path: ./output/rec/predicts_r34_vd_none_none_ctc.txt
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ learning_rate: 0.0005
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+Architecture:
+ model_type: rec
+ algorithm: Rosetta
+ Backbone:
+ name: ResNet
+ layers: 34
+ Neck:
+ name: SequenceEncoder
+ encoder_type: reshape
+ Head:
+ name: CTCHead
+ fc_decay: 0.0004
+
+Loss:
+ name: CTCLoss
+
+PostProcess:
+ name: CTCLabelDecode
+
+Metric:
+ name: RecMetric
+ main_indicator: acc
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data/
+ label_file_list: ["./train_data/ic15_data/rec_gt_train.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: True
+ batch_size_per_card: 256
+ drop_last: True
+ num_workers: 8
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data
+ label_file_list: ["./train_data/ic15_data/rec_gt_test.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 256
+ num_workers: 4
diff --git a/test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/train_infer_python.txt b/test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0d54bd5647d9cd4d8b1ffec5b2baa99874cff7f6
--- /dev/null
+++ b/test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:rec_r34_vd_none_none_ctc_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=5|whole_train_whole_infer=100
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/rec_icdar15_train.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/rec_icdar15_train.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/rec_icdar15_train.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+infer_model:null
+infer_export:tools/export_model.py -c test_tipc/configs/rec_r34_vd_none_none_ctc_v2.0/rec_icdar15_train.yml -o
+infer_quant:False
+inference:tools/infer/predict_rec.py --rec_char_dict_path=./ppocr/utils/ic15_dict.txt --rec_image_shape="3,32,100"
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:True|False
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+--save_log_path:./test/output/
+--benchmark:True
+null:null
diff --git a/test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml b/test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2dcba81e5be4ade1a344307e3a56d4c41601eba5
--- /dev/null
+++ b/test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml
@@ -0,0 +1,100 @@
+Global:
+ use_gpu: true
+ epoch_num: 72
+ log_smooth_window: 20
+ print_batch_step: 10
+ save_model_dir: ./output/rec/r34_vd_tps_bilstm_ctc/
+ save_epoch_step: 3
+ # evaluation is run every 2000 iterations
+ eval_batch_step: [0, 2000]
+ cal_metric_during_train: True
+ pretrained_model:
+ checkpoints:
+ save_inference_dir:
+ use_visualdl: False
+ infer_img: doc/imgs_words_en/word_10.png
+ # for data or label process
+ character_dict_path:
+ max_text_length: 25
+ infer_mode: False
+ use_space_char: False
+ save_res_path: ./output/rec/predicts_r34_vd_tps_bilstm_ctc.txt
+
+Optimizer:
+ name: Adam
+ beta1: 0.9
+ beta2: 0.999
+ lr:
+ learning_rate: 0.0005
+ regularizer:
+ name: 'L2'
+ factor: 0
+
+Architecture:
+ model_type: rec
+ algorithm: STARNet
+ Transform:
+ name: TPS
+ num_fiducial: 20
+ loc_lr: 0.1
+ model_name: large
+ Backbone:
+ name: ResNet
+ layers: 34
+ Neck:
+ name: SequenceEncoder
+ encoder_type: rnn
+ hidden_size: 256
+ Head:
+ name: CTCHead
+ fc_decay: 0
+
+Loss:
+ name: CTCLoss
+
+PostProcess:
+ name: CTCLabelDecode
+
+Metric:
+ name: RecMetric
+ main_indicator: acc
+
+Train:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data/
+ label_file_list: ["./train_data/ic15_data/rec_gt_train.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: True
+ batch_size_per_card: 256
+ drop_last: True
+ num_workers: 8
+
+Eval:
+ dataset:
+ name: SimpleDataSet
+ data_dir: ./train_data/ic15_data
+ label_file_list: ["./train_data/ic15_data/rec_gt_test.txt"]
+ transforms:
+ - DecodeImage: # load image
+ img_mode: BGR
+ channel_first: False
+ - CTCLabelEncode: # Class handling label
+ - RecResizeImg:
+ image_shape: [3, 32, 100]
+ - KeepKeys:
+ keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
+ loader:
+ shuffle: False
+ drop_last: False
+ batch_size_per_card: 256
+ num_workers: 4
diff --git a/test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/train_infer_python.txt b/test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/train_infer_python.txt
new file mode 100644
index 0000000000000000000000000000000000000000..666c7d159b4cecb262197b3373ba3df125037d67
--- /dev/null
+++ b/test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/train_infer_python.txt
@@ -0,0 +1,51 @@
+===========================train_params===========================
+model_name:rec_r34_vd_tps_bilstm_ctc_v2.0
+python:python3.7
+gpu_list:0|0,1
+Global.use_gpu:True|True
+Global.auto_cast:null
+Global.epoch_num:lite_train_lite_infer=5|whole_train_whole_infer=100
+Global.save_model_dir:./output/
+Train.loader.batch_size_per_card:lite_train_lite_infer=128|whole_train_whole_infer=128
+Global.pretrained_model:null
+train_model_name:latest
+train_infer_img_dir:./inference/rec_inference
+null:null
+##
+trainer:norm_train
+norm_train:tools/train.py -c test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+pact_train:null
+fpgm_train:null
+distill_train:null
+null:null
+null:null
+##
+===========================eval_params===========================
+eval:tools/eval.py -c test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+null:null
+##
+===========================infer_params===========================
+Global.save_inference_dir:./output/
+Global.pretrained_model:
+norm_export:tools/export_model.py -c test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+quant_export:null
+fpgm_export:null
+distill_export:null
+export1:null
+export2:null
+##
+infer_model:null
+infer_export:tools/export_model.py -c test_tipc/configs/rec_r34_vd_tps_bilstm_ctc_v2.0/rec_icdar15_train.yml -o
+infer_quant:False
+inference:tools/infer/predict_rec.py --rec_char_dict_path=./ppocr/utils/ic15_dict.txt --rec_image_shape="3,32,100"
+--use_gpu:True|False
+--enable_mkldnn:True|False
+--cpu_threads:1|6
+--rec_batch_num:1|6
+--use_tensorrt:True|False
+--precision:fp32|fp16|int8
+--rec_model_dir:
+--image_dir:./inference/rec_inference
+--save_log_path:./test/output/
+--benchmark:True
+null:null
diff --git a/test_tipc/docs/compare_cpp_right.png b/test_tipc/docs/compare_cpp_right.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9d0ba8ef8007ebc95ebffe2d593ff9e90066343
Binary files /dev/null and b/test_tipc/docs/compare_cpp_right.png differ
diff --git a/test_tipc/docs/compare_cpp_wrong.png b/test_tipc/docs/compare_cpp_wrong.png
new file mode 100644
index 0000000000000000000000000000000000000000..621d446bbbe9ba10c3069ef5e59c463b714d42ad
Binary files /dev/null and b/test_tipc/docs/compare_cpp_wrong.png differ
diff --git a/test_tipc/docs/compare_right.png b/test_tipc/docs/compare_right.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d74ef1cd5c5506b759886b5cfa541acac50f493
Binary files /dev/null and b/test_tipc/docs/compare_right.png differ
diff --git a/test_tipc/docs/compare_wrong.png b/test_tipc/docs/compare_wrong.png
new file mode 100644
index 0000000000000000000000000000000000000000..26ad576d2f341072be81b99af154a2499d1ba05f
Binary files /dev/null and b/test_tipc/docs/compare_wrong.png differ
diff --git a/test_tipc/docs/guide.png b/test_tipc/docs/guide.png
new file mode 100644
index 0000000000000000000000000000000000000000..319ac819daff38ed77e84cdff2b122e8bc4a8e5f
Binary files /dev/null and b/test_tipc/docs/guide.png differ
diff --git a/test_tipc/docs/install.md b/test_tipc/docs/install.md
new file mode 100644
index 0000000000000000000000000000000000000000..c1cd163e061b146fe0f25f9e3ef7f409992e2f91
--- /dev/null
+++ b/test_tipc/docs/install.md
@@ -0,0 +1,121 @@
+## 1. 环境准备
+
+本教程适用于test_tipc目录下基础功能测试的运行环境搭建。
+
+推荐环境:
+- CUDA 10.1/10.2
+- CUDNN 7.6/cudnn8.1
+- TensorRT 6.1.0.5 / 7.1 / 7.2
+
+环境配置可以选择docker镜像安装,或者在本地环境Python搭建环境。推荐使用docker镜像安装,避免不必要的环境配置。
+
+## 2. Docker 镜像安装
+
+推荐docker镜像安装,按照如下命令创建镜像,当前目录映射到镜像中的`/paddle`目录下
+```
+nvidia-docker run --name paddle -it -v $PWD:/paddle paddlepaddle/paddle:latest-dev-cuda10.1-cudnn7-gcc82 /bin/bash
+cd /paddle
+
+# 安装带TRT的paddle
+pip3.7 install https://paddle-wheel.bj.bcebos.com/with-trt/2.1.3/linux-gpu-cuda10.1-cudnn7-mkl-gcc8.2-trt6-avx/paddlepaddle_gpu-2.1.3.post101-cp37-cp37m-linux_x86_64.whl
+```
+
+## 3 Python 环境构建
+
+非docker环境下,环境配置比较灵活,推荐环境组合配置:
+- CUDA10.1 + CUDNN7.6 + TensorRT 6
+- CUDA10.2 + CUDNN8.1 + TensorRT 7
+- CUDA11.1 + CUDNN8.1 + TensorRT 7
+
+下面以 CUDA10.2 + CUDNN8.1 + TensorRT 7 配置为例,介绍环境配置的流程。
+
+### 3.1 安装CUDNN
+
+如果当前环境满足CUDNN版本的要求,可以跳过此步骤。
+
+以CUDNN8.1 安装安装为例,安装步骤如下,首先下载CUDNN,从[Nvidia官网](https://developer.nvidia.com/rdp/cudnn-archive)下载CUDNN8.1版本,下载符合当前系统版本的三个deb文件,分别是:
+- cuDNN Runtime Library ,如:libcudnn8_8.1.0.77-1+cuda10.2_amd64.deb
+- cuDNN Developer Library ,如:libcudnn8-dev_8.1.0.77-1+cuda10.2_amd64.deb
+- cuDNN Code Samples,如:libcudnn8-samples_8.1.0.77-1+cuda10.2_amd64.deb
+
+deb安装可以参考[官方文档](https://docs.nvidia.com/deeplearning/cudnn/install-guide/index.html#installlinux-deb),安装方式如下
+```
+# x.x.x表示下载的版本号
+# $HOME为工作目录
+sudo dpkg -i libcudnn8_x.x.x-1+cudax.x_arm64.deb
+sudo dpkg -i libcudnn8-dev_8.x.x.x-1+cudax.x_arm64.deb
+sudo dpkg -i libcudnn8-samples_8.x.x.x-1+cudax.x_arm64.deb
+
+# 验证是否正确安装
+cp -r /usr/src/cudnn_samples_v8/ $HOME
+cd $HOME/cudnn_samples_v8/mnistCUDNN
+
+# 编译
+make clean && make
+./mnistCUDNN
+```
+如果运行mnistCUDNN完后提示运行成功,则表示安装成功。如果运行后出现freeimage相关的报错,需要按照提示安装freeimage库:
+```
+sudo apt-get install libfreeimage-dev
+sudo apt-get install libfreeimage
+```
+
+### 3.2 安装TensorRT
+
+首先,从[Nvidia官网TensorRT板块](https://developer.nvidia.com/tensorrt-getting-started)下载TensorRT,这里选择7.1.3.4版本的TensorRT,注意选择适合自己系统版本和CUDA版本的TensorRT,另外建议下载TAR package的安装包。
+
+以Ubuntu16.04+CUDA10.2为例,下载并解压后可以参考[官方文档](https://docs.nvidia.com/deeplearning/tensorrt/archives/tensorrt-713/install-guide/index.html#installing-tar)的安装步骤,按照如下步骤安装:
+```
+# 以下安装命令中 '${version}' 为下载的TensorRT版本,如7.1.3.4
+# 设置环境变量, 为解压后的TensorRT的lib目录
+export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:
+
+# 安装TensorRT
+cd TensorRT-${version}/python
+pip3.7 install tensorrt-*-cp3x-none-linux_x86_64.whl
+
+# 安装graphsurgeon
+cd TensorRT-${version}/graphsurgeon
+```
+
+
+### 3.3 安装PaddlePaddle
+
+下载支持TensorRT版本的Paddle安装包,注意安装包的TensorRT版本需要与本地TensorRT一致,下载[链接](https://paddleinference.paddlepaddle.org.cn/user_guides/download_lib.html#python)
+选择下载 linux-cuda10.2-trt7-gcc8.2 Python3.7版本的Paddle:
+```
+# 从下载链接中可以看到是paddle2.1.1-cuda10.2-cudnn8.1版本
+wget https://paddle-wheel.bj.bcebos.com/with-trt/2.1.1-gpu-cuda10.2-cudnn8.1-mkl-gcc8.2/paddlepaddle_gpu-2.1.1-cp37-cp37m-linux_x86_64.whl
+pip3.7 install -U paddlepaddle_gpu-2.1.1-cp37-cp37m-linux_x86_64.whl
+```
+
+## 4. 安装PaddleOCR依赖
+```
+# 安装AutoLog
+git clone https://github.com/LDOUBLEV/AutoLog
+cd AutoLog
+pip3.7 install -r requirements.txt
+python3.7 setup.py bdist_wheel
+pip3.7 install ./dist/auto_log-1.0.0-py3-none-any.whl
+
+# 下载OCR代码
+cd ../
+git clone https://github.com/PaddlePaddle/PaddleOCR
+
+```
+
+安装PaddleOCR依赖:
+```
+cd PaddleOCR
+pip3.7 install -r requirements.txt
+```
+
+## FAQ :
+Q. You are using Paddle compiled with TensorRT, but TensorRT dynamic library is not found. Ignore this if TensorRT is not needed.
+
+A. 问题一般是当前安装paddle版本带TRT,但是本地环境找不到TensorRT的预测库,需要下载TensorRT库,解压后设置环境变量LD_LIBRARY_PATH;
+如:
+```
+export LD_LIBRARY_PATH=/usr/local/python3.7.0/lib:/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/paddle/package/TensorRT-6.0.1.5/lib
+```
+或者问题是下载的TensorRT版本和当前paddle中编译的TRT版本不匹配,需要下载版本相符的TensorRT重新安装。
diff --git a/test_tipc/docs/jeston_test_train_inference_python.md b/test_tipc/docs/jeston_test_train_inference_python.md
new file mode 100644
index 0000000000000000000000000000000000000000..e23aa7651da8b57c9f5e92338bb21dbde2ccda05
--- /dev/null
+++ b/test_tipc/docs/jeston_test_train_inference_python.md
@@ -0,0 +1,118 @@
+# Jeston端基础训练预测功能测试
+
+Jeston端基础训练预测功能测试的主程序为`test_train_inference_python.sh`,由于Jeston端CPU较差,Jeston只需要测试TIPC关于GPU和TensorRT预测推理的部分即可。
+
+## 1. 测试结论汇总
+
+- 预测相关:基于训练是否使用量化,可以将训练产出的模型可以分为`正常模型`和`量化模型`,这两类模型对应的预测功能汇总如下:
+
+| 模型类型 |device | batchsize | tensorrt | mkldnn | cpu多线程 |
+| ---- | ---- | ---- | :----: | :----: | :----: |
+| 正常模型 | GPU | 1/6 | fp32/fp16 | - | - |
+| 量化模型 | GPU | 1/6 | int8 | - | - |
+
+
+## 2. 测试流程
+
+环境准备只需要Python环境即可,安装PaddlePaddle等依赖参考下述文档。
+
+### 2.1 安装依赖
+- 安装PaddlePaddle >= 2.0
+- 安装PaddleOCR依赖
+ ```
+ pip install -r ../requirements.txt
+ ```
+- 安装autolog(规范化日志输出工具)
+ ```
+ git clone https://github.com/LDOUBLEV/AutoLog
+ cd AutoLog
+ pip install -r requirements.txt
+ python setup.py bdist_wheel
+ pip install ./dist/auto_log-1.0.0-py3-none-any.whl
+ cd ../
+ ```
+- 安装PaddleSlim (可选)
+ ```
+ # 如果要测试量化、裁剪等功能,需要安装PaddleSlim
+ pip install paddleslim
+ ```
+
+
+### 2.2 功能测试
+
+先运行`prepare.sh`准备数据和模型,然后运行`test_train_inference_python.sh`进行测试,最终在```test_tipc/output```目录下生成`python_infer_*.log`格式的日志文件。
+
+`test_train_inference_python.sh`包含5种[运行模式](./test_train_inference_python.md),在Jeston端,仅需要测试预测推理的模式即可:
+
+```
+- 模式3:whole_infer,不训练,全量数据预测,走通开源模型评估、动转静,检查inference model预测时间和精度;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_python_jetson.txt 'whole_infer'
+# 用法1:
+bash test_tipc/test_inference_jeston.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_python_jetson.txt 'whole_infer'
+# 用法2: 指定GPU卡预测,第三个传入参数为GPU卡号
+bash test_tipc/test_inference_jeston.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_python_jetson.txt 'whole_infer' '1'
+```
+
+运行相应指令后,在`test_tipc/output`文件夹下自动会保存运行日志。如`lite_train_lite_infer`模式下,会运行训练+inference的链条,因此,在`test_tipc/output`文件夹有以下文件:
+```
+test_tipc/output/
+|- results_python.log # 运行指令状态的日志
+|- python_infer_gpu_usetensorrt_True_precision_fp32_batchsize_1.log # GPU上开启TensorRT,batch_size=1条件下的预测运行日志
+......
+```
+
+其中`results_python.log`中包含了每条指令的运行状态,如果运行成功会输出:
+```
+Run successfully with command - python tools/infer/predict_det.py --use_gpu=True --use_tensorrt=False --precision=fp32 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark=True > ./test_tipc/output/python_infer_gpu_usetrt_False_precision_fp32_batchsize_1.log 2>&1 !
+Run successfully with command - python tools/infer/predict_det.py --use_gpu=True --use_tensorrt=True --precision=fp32 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark=True > ./test_tipc/output/python_infer_gpu_usetrt_True_precision_fp32_batchsize_1.log 2>&1 !
+Run successfully with command - python tools/infer/predict_det.py --use_gpu=True --use_tensorrt=True --precision=fp16 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark=True > ./test_tipc/output/python_infer_gpu_usetrt_True_precision_fp16_batchsize_1.log 2>&1 !
+```
+如果运行失败,会输出:
+```
+Run failed with command - python tools/infer/predict_det.py --use_gpu=True --use_tensorrt=False --precision=fp32 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark=True > ./test_tipc/output/python_infer_gpu_usetrt_False_precision_fp32_batchsize_1.log 2>&1 !
+Run failed with command - python tools/infer/predict_det.py --use_gpu=True --use_tensorrt=True --precision=fp32 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark=True > ./test_tipc/output/python_infer_gpu_usetrt_True_precision_fp32_batchsize_1.log 2>&1 !
+Run failed with command - python tools/infer/predict_det.py --use_gpu=True --use_tensorrt=True --precision=fp16 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark=True > ./test_tipc/output/python_infer_gpu_usetrt_True_precision_fp16_batchsize_1.log 2>&1 !
+```
+可以很方便的根据`results_python.log`中的内容判定哪一个指令运行错误。
+
+### 2.3 精度测试
+
+使用compare_results.py脚本比较模型预测的结果是否符合预期,主要步骤包括:
+- 提取日志中的预测坐标;
+- 从本地文件中提取保存好的坐标结果;
+- 比较上述两个结果是否符合精度预期,误差大于设置阈值时会报错。
+
+#### 使用方式
+运行命令:
+```shell
+python test_tipc/compare_results.py --gt_file=./test_tipc/results/python_*.txt --log_file=./test_tipc/output/python_*.log --atol=1e-3 --rtol=1e-3
+```
+
+参数介绍:
+- gt_file: 指向事先保存好的预测结果路径,支持*.txt 结尾,会自动索引*.txt格式的文件,文件默认保存在test_tipc/result/ 文件夹下
+- log_file: 指向运行test_tipc/test_train_inference_python.sh 脚本的infer模式保存的预测日志,预测日志中打印的有预测结果,比如:文本框,预测文本,类别等等,同样支持python_infer_*.log格式传入
+- atol: 设置的绝对误差
+- rtol: 设置的相对误差
+
+#### 运行结果
+
+正常运行效果如下:
+```
+Assert allclose passed! The results of python_infer_gpu_usetrt_True_precision_fp32_batchsize_1.log and ./test_tipc/results/python_ppocr_det_mobile_results_fp32.txt are consistent!
+```
+
+出现不一致结果时的运行输出:
+```
+......
+Traceback (most recent call last):
+ File "test_tipc/compare_results.py", line 140, in
+ format(filename, gt_filename))
+ValueError: The results of python_infer_gpu_usetrt_True_precision_fp32_batchsize_1.log and the results of ./test_tipc/results/python_ppocr_det_mobile_results_fp32.txt are inconsistent!
+```
+
+
+## 3. 更多教程
+本文档为功能测试用,更丰富的训练预测使用教程请参考:
+[模型训练](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/doc/doc_ch/training.md)
+[基于Python预测引擎推理](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/doc/doc_ch/inference.md)
diff --git a/test_tipc/docs/lite_auto_log.png b/test_tipc/docs/lite_auto_log.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5b6b450d445d0047fb3836bfd9c726adebb7b9f
Binary files /dev/null and b/test_tipc/docs/lite_auto_log.png differ
diff --git a/test_tipc/docs/lite_log.png b/test_tipc/docs/lite_log.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b3e40b3fa2700a4c715269229cdfe582d29f90a
Binary files /dev/null and b/test_tipc/docs/lite_log.png differ
diff --git a/test_tipc/docs/mac_test_train_inference_python.md b/test_tipc/docs/mac_test_train_inference_python.md
new file mode 100644
index 0000000000000000000000000000000000000000..ea6e0218b12b342347677ea512d3afd89053261a
--- /dev/null
+++ b/test_tipc/docs/mac_test_train_inference_python.md
@@ -0,0 +1,155 @@
+# Mac端基础训练预测功能测试
+
+Mac端基础训练预测功能测试的主程序为`test_train_inference_python.sh`,可以测试基于Python的模型CPU训练,包括裁剪、量化、蒸馏训练,以及评估、CPU推理等基本功能。
+
+注:Mac端测试用法同linux端测试方法类似,但是无需测试需要在GPU上运行的测试。
+
+## 1. 测试结论汇总
+
+- 训练相关:
+
+| 算法名称 | 模型名称 | 单机单卡(CPU) | 单机多卡 | 多机多卡 | 模型压缩(CPU) |
+| :---- | :---- | :---- | :---- | :---- | :---- |
+| DB | ch_ppocr_mobile_v2.0_det| 正常训练 | - | - | 正常训练:FPGM裁剪、PACT量化
离线量化(无需训练) |
+
+
+- 预测相关:基于训练是否使用量化,可以将训练产出的模型可以分为`正常模型`和`量化模型`,这两类模型对应的预测功能汇总如下,
+
+| 模型类型 |device | batchsize | tensorrt | mkldnn | cpu多线程 |
+| ---- | ---- | ---- | :----: | :----: | :----: |
+| 正常模型 | CPU | 1/6 | - | fp32 | 支持 |
+| 量化模型 | CPU | 1/6 | - | int8 | 支持 |
+
+
+## 2. 测试流程
+
+Mac端无GPU,环境准备只需要Python环境即可,安装PaddlePaddle等依赖参考下述文档。
+
+### 2.1 安装依赖
+- 安装PaddlePaddle >= 2.0
+- 安装PaddleOCR依赖
+ ```
+ pip install -r ../requirements.txt
+ ```
+- 安装autolog(规范化日志输出工具)
+ ```
+ git clone https://github.com/LDOUBLEV/AutoLog
+ cd AutoLog
+ pip install -r requirements.txt
+ python setup.py bdist_wheel
+ pip install ./dist/auto_log-1.0.0-py3-none-any.whl
+ cd ../
+ ```
+- 安装PaddleSlim (可选)
+ ```
+ # 如果要测试量化、裁剪等功能,需要安装PaddleSlim
+ pip install paddleslim
+ ```
+
+
+### 2.2 功能测试
+
+先运行`prepare.sh`准备数据和模型,然后运行`test_train_inference_python.sh`进行测试,最终在```test_tipc/output```目录下生成`python_infer_*.log`格式的日志文件。
+
+`test_train_inference_python.sh`包含5种运行模式,每种模式的运行数据不同,分别用于测试速度和精度,分别是:
+
+- 模式1:lite_train_lite_infer,使用少量数据训练,用于快速验证训练到预测的走通流程,不验证精度和速度;
+```shell
+# 同linux端运行不同的是,Mac端测试使用新的配置文件mac_ppocr_det_mobile_params.txt,
+# 配置文件中默认去掉了GPU和mkldnn相关的测试链条
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'lite_train_lite_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'lite_train_lite_infer'
+```
+
+- 模式2:lite_train_whole_infer,使用少量数据训练,一定量数据预测,用于验证训练后的模型执行预测,预测速度是否合理;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'lite_train_whole_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'lite_train_whole_infer'
+```
+
+- 模式3:whole_infer,不训练,全量数据预测,走通开源模型评估、动转静,检查inference model预测时间和精度;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'whole_infer'
+# 用法1:
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'whole_infer'
+# 用法2: 指定GPU卡预测,第三个传入参数为GPU卡号
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'whole_infer' '1'
+```
+
+- 模式4:whole_train_whole_infer,CE: 全量数据训练,全量数据预测,验证模型训练精度,预测精度,预测速度;(Mac端不建议运行此模式)
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'whole_train_whole_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_mac_cpu_normal_normal_infer_python_mac_cpu.txt 'whole_train_whole_infer'
+```
+
+- 模式5:klquant_whole_infer,测试离线量化;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_mac_cpu.txt 'klquant_whole_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_mac_cpu.txt 'klquant_whole_infer'
+```
+
+运行相应指令后,在`test_tipc/output`文件夹下自动会保存运行日志。如`lite_train_lite_infer`模式下,会运行训练+inference的链条,因此,在`test_tipc/output`文件夹有以下文件:
+```
+test_tipc/output/
+|- results_python.log # 运行指令状态的日志
+|- norm_train_gpus_-1_autocast_null/ # CPU上正常训练的训练日志和模型保存文件夹
+|- pact_train_gpus_-1_autocast_null/ # CPU上量化训练的训练日志和模型保存文件夹
+......
+|- python_infer_cpu_usemkldnn_False_threads_1_batchsize_1.log # CPU上关闭Mkldnn线程数设置为1,测试batch_size=1条件下的预测运行日志
+......
+```
+
+其中`results_python.log`中包含了每条指令的运行状态,如果运行成功会输出:
+```
+Run successfully with command - python3.7 tools/train.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained Global.use_gpu=False Global.save_model_dir=./tests/output/norm_train_gpus_-1_autocast_null Global.epoch_num=1 Train.loader.batch_size_per_card=2 !
+Run successfully with command - python3.7 tools/export_model.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./tests/output/norm_train_gpus_-1_autocast_null/latest Global.save_inference_dir=./tests/output/norm_train_gpus_-1_autocast_null!
+......
+```
+如果运行失败,会输出:
+```
+Run failed with command - python3.7 tools/train.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained Global.use_gpu=Faslse Global.save_model_dir=./tests/output/norm_train_gpus_-1_autocast_null Global.epoch_num=1 Train.loader.batch_size_per_card=2 !
+Run failed with command - python3.7 tools/export_model.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./tests/output/norm_train_gpus_0_autocast_null/latest Global.save_inference_dir=./tests/output/norm_train_gpus_-1_autocast_null!
+......
+```
+可以很方便的根据`results_python.log`中的内容判定哪一个指令运行错误。
+
+### 2.3 精度测试
+
+使用compare_results.py脚本比较模型预测的结果是否符合预期,主要步骤包括:
+- 提取日志中的预测坐标;
+- 从本地文件中提取保存好的坐标结果;
+- 比较上述两个结果是否符合精度预期,误差大于设置阈值时会报错。
+
+#### 使用方式
+运行命令:
+```shell
+python test_tipc/compare_results.py --gt_file=./test_tipc/results/python_*.txt --log_file=./test_tipc/output/python_*.log --atol=1e-3 --rtol=1e-3
+```
+
+参数介绍:
+- gt_file: 指向事先保存好的预测结果路径,支持*.txt 结尾,会自动索引*.txt格式的文件,文件默认保存在test_tipc/result/ 文件夹下
+- log_file: 指向运行test_tipc/test_train_inference_python.sh 脚本的infer模式保存的预测日志,预测日志中打印的有预测结果,比如:文本框,预测文本,类别等等,同样支持python_infer_*.log格式传入
+- atol: 设置的绝对误差
+- rtol: 设置的相对误差
+
+#### 运行结果
+
+正常运行效果如下:
+```
+Assert allclose passed! The results of python_infer_cpu_usemkldnn_False_threads_1_batchsize_1.log and ./test_tipc/results/python_ppocr_det_mobile_results_fp32.txt are consistent!
+```
+
+出现不一致结果时的运行输出:
+```
+......
+Traceback (most recent call last):
+ File "test_tipc/compare_results.py", line 140, in
+ format(filename, gt_filename))
+ValueError: The results of python_infer_cpu_usemkldnn_False_threads_1_batchsize_1.log and the results of ./test_tipc/results/python_ppocr_det_mobile_results_fp32.txt are inconsistent!
+```
+
+
+## 3. 更多教程
+本文档为功能测试用,更丰富的训练预测使用教程请参考:
+[模型训练](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/doc/doc_ch/training.md)
+[基于Python预测引擎推理](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/doc/doc_ch/inference.md)
diff --git a/test_tipc/docs/ssh_termux_ls.png b/test_tipc/docs/ssh_termux_ls.png
new file mode 100644
index 0000000000000000000000000000000000000000..2df78026b23b2bb71ac98092d7820e5d02ad611c
Binary files /dev/null and b/test_tipc/docs/ssh_termux_ls.png differ
diff --git a/test_tipc/docs/termux.jpg b/test_tipc/docs/termux.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cb87c4ccc21bab6411b87f61e76f03b5b5f6f557
Binary files /dev/null and b/test_tipc/docs/termux.jpg differ
diff --git a/test_tipc/docs/termux_for_android.md b/test_tipc/docs/termux_for_android.md
new file mode 100644
index 0000000000000000000000000000000000000000..73ecbb2e93be5a8fdef593fb492d3a27d33c6b52
--- /dev/null
+++ b/test_tipc/docs/termux_for_android.md
@@ -0,0 +1,128 @@
+# 安卓手机通过Termux连接电脑
+
+由于通过adb方式连接手机后,很多linux命令无法运行,自动化测试受阻,所以此处特此介绍另外一种通过Termux的连接方式,不仅可以运行大部分linux命令,方便开发者在手机上在线调试,甚至还可以多实现台机器同时连接手机。Termux不是真实的Linux环境,但是Termux可以安装真实的Linux,而且不会损失性能,与此同时,Termux不需要root。在配置Termux之前,请确保电脑已经安装adb工具,安装方式请参考[Lite端部署](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/deploy/lite/readme.md) 。在运行以下命令后确保可以显示安卓设备信息。
+
+```
+adb devices
+```
+连接成功信息提示:
+```
+List of devices attached
+744be294 device
+```
+
+## 1.安卓手机安装termux app
+
+### 1.1 下载termux apk文件
+
+由于目前该app目前各大商城暂无,所以可以直接下载如下apk文件。
+
+打开电脑终端,执行以下命令:
+
+```
+wget http://10.12.121.133:8911/cuicheng01/fullchain/termux-v1.0.3.apk
+```
+
+### 1.2 安装termux到手机上
+
+在手机端的开发者模式下,允许USB调试,允许USB安装。在电脑终端,执行如下命令,将termux app安装到手机上:
+
+```
+adb install termux-v1.0.3.apk
+```
+
+此处需要手机端确认安装,点击确认。
+
+### 1.3 验证是否安装成功
+
+打开手机,检验termux是否安装成功,如果没有,重新执行1.2,如果有相应的app,点击进入,会有如下显示。
+
+
+
+接下来的配置环境需要在手机上此终端运行相关命令。
+
+## 2.手机端配置termux
+
+首先将手机联网,最好可以连接外网,部分的配置需要外网。打开Termux终端,执行以下命令安装基础件`proot`,并使用`termux-chroot`命令可以模拟 root 环境与标准的 Linux 目录结构。
+
+```
+pkg i -y proot
+termux-chroot
+```
+
+Termux 默认只能访问自身内部的数据,如果要访问手机中其它的数据,输入下面的命令后,手机弹出对请求权限的窗口,允许即可(方便对部分运行出的结果在手机端可视化)。
+
+```
+termux-setup-storage
+```
+
+### 2.1 配置SSH
+
+作为 Linux 终端或者服务器,必须有SSH。不管你是 SSH 连接到 Termux还是使用Termux去连其它主机,都需要先安装openssh。如果安装失败,请重复执行命令。
+
+```
+pkg i -y openssh
+```
+
+启动 SSH 服务端,默认端口号为8022
+
+```
+sshd
+```
+
+
+### 2.2 电脑通过SSH方式连接手机
+
+1.保证手机和电脑处于同一局域网下
+手机端分别输入以下命令获得ip地址和当前用户:
+
+```
+# 获取ip地址
+ifconfig
+
+# 获取当前用户
+whoami
+```
+
+如获取到的ip地址和当前用户分别是`172.24.162.117`和`u0_a374`。
+
+2.电脑端通过SSH连接手机
+
+```
+#默认端口号为8022
+ssh u0_a374@172.24.162.117 -p 8022
+```
+
+3.运行ls命令后,会有如下显示:
+
+```
+ls
+```
+
+
+
+
+### 2.3 通过scp传输数据
+
+1.在当前目录上新建test目录
+
+```
+mkdir test
+```
+
+2.测试scp功能
+
+将电脑中的某个文件拷贝到手机上:
+```
+scp -P 8022 test.txt u0_a374@172.24.162.117:/home/storage/test
+```
+
+3.手机端查看
+
+打开手机终端,在`/home/storage/test`下查看是否存在`test.txt`
+
+
+## 3. 更多教程
+
+本教程可以完成Termux基本配置,更多关于Termux的用法,请参考:[Termux高级终端安装使用配置教程](https://www.sqlsec.com/2018/05/termux.html)。
+
diff --git a/test_tipc/docs/test.png b/test_tipc/docs/test.png
new file mode 100644
index 0000000000000000000000000000000000000000..f99f23d7050eb61879cf317c0d7728ef14531b08
Binary files /dev/null and b/test_tipc/docs/test.png differ
diff --git a/test_tipc/docs/test_inference_cpp.md b/test_tipc/docs/test_inference_cpp.md
new file mode 100644
index 0000000000000000000000000000000000000000..e662f4bacc0b69bd605a79dac0e36c99daac87d5
--- /dev/null
+++ b/test_tipc/docs/test_inference_cpp.md
@@ -0,0 +1,88 @@
+# C++预测功能测试
+
+C++预测功能测试的主程序为`test_inference_cpp.sh`,可以测试基于C++预测库的模型推理功能。
+
+## 1. 测试结论汇总
+
+基于训练是否使用量化,进行本测试的模型可以分为`正常模型`和`量化模型`,这两类模型对应的C++预测功能汇总如下:
+
+| 模型类型 |device | batchsize | tensorrt | mkldnn | cpu多线程 |
+| ---- | ---- | ---- | :----: | :----: | :----: |
+| 正常模型 | GPU | 1/6 | fp32/fp16 | - | - |
+| 正常模型 | CPU | 1/6 | - | fp32 | 支持 |
+| 量化模型 | GPU | 1/6 | int8 | - | - |
+| 量化模型 | CPU | 1/6 | - | int8 | 支持 |
+
+## 2. 测试流程
+运行环境配置请参考[文档](./install.md)的内容配置TIPC的运行环境。
+
+### 2.1 功能测试
+先运行`prepare.sh`准备数据和模型,然后运行`test_inference_cpp.sh`进行测试,最终在```test_tipc/output```目录下生成`cpp_infer_*.log`后缀的日志文件。
+
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt "cpp_infer"
+
+# 用法1:
+bash test_tipc/test_inference_cpp.sh test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
+# 用法2: 指定GPU卡预测,第三个传入参数为GPU卡号
+bash test_tipc/test_inference_cpp.sh test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt '1'
+```
+
+运行预测指令后,在`test_tipc/output`文件夹下自动会保存运行日志,包括以下文件:
+
+```shell
+test_tipc/output/
+|- results_cpp.log # 运行指令状态的日志
+|- cpp_infer_cpu_usemkldnn_False_threads_1_precision_fp32_batchsize_1.log # CPU上不开启Mkldnn,线程数设置为1,测试batch_size=1条件下的预测运行日志
+|- cpp_infer_cpu_usemkldnn_False_threads_6_precision_fp32_batchsize_1.log # CPU上不开启Mkldnn,线程数设置为6,测试batch_size=1条件下的预测运行日志
+|- cpp_infer_gpu_usetrt_False_precision_fp32_batchsize_1.log # GPU上不开启TensorRT,测试batch_size=1的fp32精度预测日志
+|- cpp_infer_gpu_usetrt_True_precision_fp16_batchsize_1.log # GPU上开启TensorRT,测试batch_size=1的fp16精度预测日志
+......
+```
+其中results_cpp.log中包含了每条指令的运行状态,如果运行成功会输出:
+
+```
+Run successfully with command - ./deploy/cpp_infer/build/ppocr det --use_gpu=False --enable_mkldnn=False --cpu_threads=6 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmar k=True > ./test_tipc/output/cpp_infer_cpu_usemkldnn_False_threads_6_precision_fp32_batchsize_1.log 2>&1 !
+Run successfully with command - ./deploy/cpp_infer/build/ppocr det --use_gpu=True --use_tensorrt=False --precision=fp32 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark =True > ./test_tipc/output/cpp_infer_gpu_usetrt_False_precision_fp32_batchsize_1.log 2>&1 !
+......
+```
+如果运行失败,会输出:
+```
+Run failed with command - ./deploy/cpp_infer/build/ppocr det --use_gpu=True --use_tensorrt=True --precision=fp32 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark=True > ./test_tipc/output/cpp_infer_gpu_usetrt_True_precision_fp32_batchsize_1.log 2>&1 !
+Run failed with command - ./deploy/cpp_infer/build/ppocr det --use_gpu=True --use_tensorrt=True --precision=fp16 --det_model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --rec_batch_num=1 --image_dir=./inference/ch_det_data_50/all-sum-510/ --benchmark=True > ./test_tipc/output/cpp_infer_gpu_usetrt_True_precision_fp16_batchsize_1.log 2>&1 !
+......
+```
+可以很方便的根据results_cpp.log中的内容判定哪一个指令运行错误。
+
+
+### 2.2 精度测试
+
+使用compare_results.py脚本比较模型预测的结果是否符合预期,主要步骤包括:
+- 提取日志中的预测坐标;
+- 从本地文件中提取保存好的坐标结果;
+- 比较上述两个结果是否符合精度预期,误差大于设置阈值时会报错。
+
+#### 使用方式
+运行命令:
+```shell
+python3.7 test_tipc/compare_results.py --gt_file=./test_tipc/results/cpp_*.txt --log_file=./test_tipc/output/cpp_*.log --atol=1e-3 --rtol=1e-3
+```
+
+参数介绍:
+- gt_file: 指向事先保存好的预测结果路径,支持*.txt 结尾,会自动索引*.txt格式的文件,文件默认保存在test_tipc/result/ 文件夹下
+- log_file: 指向运行test_tipc/test_inference_cpp.sh 脚本的infer模式保存的预测日志,预测日志中打印的有预测结果,比如:文本框,预测文本,类别等等,同样支持cpp_infer_*.log格式传入
+- atol: 设置的绝对误差
+- rtol: 设置的相对误差
+
+#### 运行结果
+
+正常运行效果如下图:
+
+
+出现不一致结果时的运行输出:
+
+
+
+## 3. 更多教程
+
+本文档为功能测试用,更详细的c++预测使用教程请参考:[服务器端C++预测](https://github.com/PaddlePaddle/PaddleOCR/tree/dygraph/deploy/cpp_infer)
diff --git a/test_tipc/docs/test_lite_arm_cpp.md b/test_tipc/docs/test_lite_arm_cpp.md
new file mode 100644
index 0000000000000000000000000000000000000000..166b5981b6fcb6d4709a4636df0f1b1af57e1d66
--- /dev/null
+++ b/test_tipc/docs/test_lite_arm_cpp.md
@@ -0,0 +1,95 @@
+# Lite\_arm\_cpp预测功能测试
+
+Lite\_arm\_cpp预测功能测试的主程序为`test_lite_arm_cpp.sh`,可以在ARM上基于Lite预测库测试模型的C++推理功能。
+
+## 1. 测试结论汇总
+
+目前Lite端的样本间支持以方式的组合:
+
+**字段说明:**
+- 模型类型:包括正常模型(FP32)和量化模型(INT8)
+- batch-size:包括1和4
+- threads:包括1和4
+- predictor数量:包括单predictor预测和多predictor预测
+- 预测库来源:包括下载方式和编译方式
+- 测试硬件:ARM\_CPU/ARM\_GPU_OPENCL
+
+| 模型类型 | batch-size | threads | predictor数量 | 预测库来源 | 测试硬件 |
+| :----: | :----: | :----: | :----: | :----: | :----: |
+| 正常模型/量化模型 | 1 | 1/4 | 单/多 | 下载方式/编译方式 | ARM\_CPU/ARM\_GPU_OPENCL |
+
+
+## 2. 测试流程
+运行环境配置请参考[文档](./install.md)的内容配置TIPC的运行环境。
+
+### 2.1 功能测试
+
+先运行`prepare_lite_cpp.sh`,运行后会在当前路径下生成`test_lite.tar`,其中包含了测试数据、测试模型和用于预测的可执行文件。将`test_lite.tar`上传到被测试的手机上,在手机的终端解压该文件,进入`test_lite`目录中,然后运行`test_lite_arm_cpp.sh`进行测试,最终在`test_lite/output`目录下生成`lite_*.log`后缀的日志文件。
+
+#### 2.1.1 基于ARM\_CPU测试
+
+```shell
+
+# 数据、模型、Paddle-Lite预测库准备
+#预测库为下载方式
+bash test_tipc/prepare_lite_cpp.sh ./test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt download
+#预测库为编译方式
+bash test_tipc/prepare_lite_cpp.sh ./test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt compile
+
+# 手机端测试:
+bash test_lite_arm_cpp.sh model_linux_gpu_normal_normal_lite_cpp_arm_cpu.txt
+
+```
+
+#### 2.1.2 基于ARM\_GPU\_OPENCL测试
+
+```shell
+
+# 数据、模型、Paddle-Lite预测库准备
+#预测库下载方式
+bash test_tipc/prepare_lite_cpp.sh ./test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt download
+#预测库编译方式
+bash test_tipc/prepare_lite_cpp.sh ./test_tipc/configs/ch_PP-OCRv2_det/model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt compile
+
+# 手机端测试:
+bash test_lite_arm_cpp.sh model_linux_gpu_normal_normal_lite_cpp_arm_gpu_opencl.txt
+
+```
+
+
+**注意**:
+
+由于运行该项目需要bash等命令,传统的adb方式不能很好的安装。所以此处推荐通在手机上开启虚拟终端的方式连接电脑,连接方式可以参考[安卓手机termux连接电脑](./termux_for_android.md)。
+
+### 2.2 运行结果
+
+各测试的运行情况会打印在 `./output/` 中:
+运行成功时会输出:
+
+```
+Run successfully with command - ./ocr_db_crnn det ch_PP-OCRv2_det_infer_opt.nb ARM_CPU FP32 1 1 ./test_data/icdar2015_lite/text_localization/ch4_test_images/ ./config.txt True > ./output/lite_ch_PP-OCRv2_det_infer_opt.nb_runtime_device_ARM_CPU_precision_FP32_batchsize_1_threads_1.log 2>&1!
+Run successfully with command xxx
+...
+```
+
+运行失败时会输出:
+
+```
+Run failed with command - ./ocr_db_crnn det ch_PP-OCRv2_det_infer_opt.nb ARM_CPU FP32 1 1 ./test_data/icdar2015_lite/text_localization/ch4_test_images/ ./config.txt True > ./output/lite_ch_PP-OCRv2_det_infer_opt.nb_runtime_device_ARM_CPU_precision_FP32_batchsize_1_threads_1.log 2>&1!
+Run failed with command xxx
+...
+```
+
+在./output/文件夹下,会存在如下日志,每一个日志都是不同配置下的log结果:
+
+
+
+在每一个log中,都会调用autolog打印如下信息:
+
+
+
+
+
+## 3. 更多教程
+
+本文档为功能测试用,更详细的Lite端预测使用教程请参考:[Lite端部署](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/deploy/lite/readme.md)。
diff --git a/test_tipc/docs/test_paddle2onnx.md b/test_tipc/docs/test_paddle2onnx.md
new file mode 100644
index 0000000000000000000000000000000000000000..df2734771e9252a40811c42ead03abbff1b7a1a3
--- /dev/null
+++ b/test_tipc/docs/test_paddle2onnx.md
@@ -0,0 +1,47 @@
+# Paddle2onnx预测功能测试
+
+PaddleServing预测功能测试的主程序为`test_paddle2onnx.sh`,可以测试Paddle2ONNX的模型转化功能,并验证正确性。
+
+## 1. 测试结论汇总
+
+基于训练是否使用量化,进行本测试的模型可以分为`正常模型`和`量化模型`,这两类模型对应的Paddle2ONNX预测功能汇总如下:
+
+| 模型类型 |device |
+| ---- | ---- |
+| 正常模型 | GPU |
+| 正常模型 | CPU |
+| 量化模型 | GPU |
+| 量化模型 | CPU |
+
+## 2. 测试流程
+### 2.1 功能测试
+先运行`prepare.sh`准备数据和模型,然后运行`test_paddle2onnx.sh`进行测试,最终在```test_tipc/output```目录下生成`paddle2onnx_infer_*.log`后缀的日志文件。
+
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ppocr_det_mobile/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt "paddle2onnx_infer"
+
+# 用法:
+bash test_tipc/test_paddle2onnx.sh ./test_tipc/configs/ppocr_det_mobile/model_linux_gpu_normal_normal_paddle2onnx_python_linux_cpu.txt
+```
+
+#### 运行结果
+
+各测试的运行情况会打印在 `test_tipc/output/results_paddle2onnx.log` 中:
+运行成功时会输出:
+
+```
+Run successfully with command - paddle2onnx --model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --model_filename=inference.pdmodel --params_filename=inference.pdiparams --save_file=./inference/det_mobile_onnx/model.onnx --opset_version=10 --enable_onnx_checker=True!
+Run successfully with command - python test_tipc/onnx_inference/predict_det.py --use_gpu=False --image_dir=./inference/ch_det_data_50/all-sum-510/ --det_model_dir=./inference/det_mobile_onnx/model.onnx 2>&1 !
+```
+
+运行失败时会输出:
+
+```
+Run failed with command - paddle2onnx --model_dir=./inference/ch_ppocr_mobile_v2.0_det_infer/ --model_filename=inference.pdmodel --params_filename=inference.pdiparams --save_file=./inference/det_mobile_onnx/model.onnx --opset_version=10 --enable_onnx_checker=True!
+...
+```
+
+
+## 3. 更多教程
+
+本文档为功能测试用,更详细的Paddle2onnx预测使用教程请参考:[Paddle2ONNX](https://github.com/PaddlePaddle/Paddle2ONNX)
diff --git a/test_tipc/docs/test_serving.md b/test_tipc/docs/test_serving.md
new file mode 100644
index 0000000000000000000000000000000000000000..1eded6f5821a5ebd9180cc4d89a1fecac61ad63d
--- /dev/null
+++ b/test_tipc/docs/test_serving.md
@@ -0,0 +1,80 @@
+# PaddleServing预测功能测试
+
+PaddleServing预测功能测试的主程序为`test_serving.sh`,可以测试基于PaddleServing的部署功能。
+
+## 1. 测试结论汇总
+
+基于训练是否使用量化,进行本测试的模型可以分为`正常模型`和`量化模型`,这两类模型对应的Serving预测功能汇总如下:
+
+| 模型类型 |device | batchsize | tensorrt | mkldnn | cpu多线程 |
+| ---- | ---- | ---- | :----: | :----: | :----: |
+| 正常模型 | GPU | 1/6 | fp32/fp16 | - | - |
+| 正常模型 | CPU | 1/6 | - | fp32 | 支持 |
+| 量化模型 | GPU | 1/6 | int8 | - | - |
+| 量化模型 | CPU | 1/6 | - | int8 | 支持 |
+
+## 2. 测试流程
+运行环境配置请参考[文档](./install.md)的内容配置TIPC的运行环境。
+
+### 2.1 功能测试
+先运行`prepare.sh`准备数据和模型,然后运行`test_serving.sh`进行测试,最终在```test_tipc/output```目录下生成`serving_infer_*.log`后缀的日志文件。
+
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ppocr_det_mobile/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt "serving_infer"
+
+# 用法:
+bash test_tipc/test_serving.sh ./test_tipc/configs/ppocr_det_mobile/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
+```
+
+#### 运行结果
+
+各测试的运行情况会打印在 `test_tipc/output/results_serving.log` 中:
+运行成功时会输出:
+
+```
+Run successfully with command - python3.7 pipeline_http_client.py --image_dir=../../doc/imgs > ../../tests/output/server_infer_cpu_usemkldnn_True_threads_1_batchsize_1.log 2>&1 !
+Run successfully with command - xxxxx
+...
+```
+
+运行失败时会输出:
+
+```
+Run failed with command - python3.7 pipeline_http_client.py --image_dir=../../doc/imgs > ../../tests/output/server_infer_cpu_usemkldnn_True_threads_1_batchsize_1.log 2>&1 !
+Run failed with command - python3.7 pipeline_http_client.py --image_dir=../../doc/imgs > ../../tests/output/server_infer_cpu_usemkldnn_True_threads_6_batchsize_1.log 2>&1 !
+Run failed with command - xxxxx
+...
+```
+
+详细的预测结果会存在 test_tipc/output/ 文件夹下,例如`server_infer_gpu_usetrt_True_precision_fp16_batchsize_1.log`中会返回检测框的坐标:
+
+```
+{'err_no': 0, 'err_msg': '', 'key': ['dt_boxes'], 'value': ['[[[ 78. 642.]\n [409. 640.]\n [409. 657.]\n
+[ 78. 659.]]\n\n [[ 75. 614.]\n [211. 614.]\n [211. 635.]\n [ 75. 635.]]\n\n
+[[103. 554.]\n [135. 554.]\n [135. 575.]\n [103. 575.]]\n\n [[ 75. 531.]\n
+[347. 531.]\n [347. 549.]\n [ 75. 549.] ]\n\n [[ 76. 503.]\n [309. 498.]\n
+[309. 521.]\n [ 76. 526.]]\n\n [[163. 462.]\n [317. 462.]\n [317. 493.]\n
+[163. 493.]]\n\n [[324. 431.]\n [414. 431.]\n [414. 452.]\n [324. 452.]]\n\n
+[[ 76. 412.]\n [208. 408.]\n [209. 424.]\n [ 76. 428.]]\n\n [[307. 409.]\n
+[428. 409.]\n [428. 426.]\n [307 . 426.]]\n\n [[ 74. 385.]\n [217. 382.]\n
+[217. 400.]\n [ 74. 403.]]\n\n [[308. 381.]\n [427. 380.]\n [427. 400.]\n
+[308. 401.]]\n\n [[ 74. 363.]\n [195. 362.]\n [195. 378.]\n [ 74. 379.]]\n\n
+[[303. 359.]\n [423. 357.]\n [423. 375.]\n [303. 377.]]\n\n [[ 70. 336.]\n
+[239. 334.]\n [239. 354.]\ n [ 70. 356.]]\n\n [[ 70. 312.]\n [204. 310.]\n
+[204. 327.]\n [ 70. 330.]]\n\n [[303. 308.]\n [419. 306.]\n [419. 326.]\n
+[303. 328.]]\n\n [[113. 2 72.]\n [246. 270.]\n [247. 299.]\n [113. 301.]]\n\n
+ [[361. 269.]\n [384. 269.]\n [384. 296.]\n [361. 296.]]\n\n [[ 70. 250.]\n
+ [243. 246.]\n [243. 265.]\n [ 70. 269.]]\n\n [[ 65. 221.]\n [187. 220.]\n
+[187. 240.]\n [ 65. 241.]]\n\n [[337. 216.]\n [382. 216.]\n [382. 240.]\n
+[337. 240.]]\n\n [ [ 65. 196.]\n [247. 193.]\n [247. 213.]\n [ 65. 216.]]\n\n
+[[296. 197.]\n [423. 191.]\n [424. 209.]\n [296. 215.]]\n\n [[ 65. 167.]\n [244. 167.]\n
+[244. 186.]\n [ 65. 186.]]\n\n [[ 67. 139.]\n [290. 139.]\n [290. 159.]\n [ 67. 159.]]\n\n
+[[ 68. 113.]\n [410. 113.]\n [410. 128.]\n [ 68. 129.] ]\n\n [[277. 87.]\n [416. 87.]\n
+[416. 108.]\n [277. 108.]]\n\n [[ 79. 28.]\n [132. 28.]\n [132. 62.]\n [ 79. 62.]]\n\n
+[[163. 17.]\n [410. 14.]\n [410. 50.]\n [163. 53.]]]']}
+```
+
+
+## 3. 更多教程
+
+本文档为功能测试用,更详细的Serving预测使用教程请参考:[PPOCR 服务化部署](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/deploy/pdserving/README_CN.md)
diff --git a/test_tipc/docs/test_train_inference_python.md b/test_tipc/docs/test_train_inference_python.md
new file mode 100644
index 0000000000000000000000000000000000000000..fa969cbe1b9b6fd524efdaad5002afcfcf40e119
--- /dev/null
+++ b/test_tipc/docs/test_train_inference_python.md
@@ -0,0 +1,156 @@
+# Linux端基础训练预测功能测试
+
+Linux端基础训练预测功能测试的主程序为`test_train_inference_python.sh`,可以测试基于Python的模型训练、评估、推理等基本功能,包括裁剪、量化、蒸馏。
+
+- Mac端基础训练预测功能测试参考[链接](./mac_test_train_inference_python.md)
+- Windows端基础训练预测功能测试参考[链接](./win_test_train_inference_python.md)
+
+## 1. 测试结论汇总
+
+- 训练相关:
+
+| 算法名称 | 模型名称 | 单机单卡 | 单机多卡 | 多机多卡 | 模型压缩(单机多卡) |
+| :---- | :---- | :---- | :---- | :---- | :---- |
+| DB | ch_ppocr_mobile_v2.0_det| 正常训练
混合精度 | 正常训练
混合精度 | 正常训练
混合精度 | 正常训练:FPGM裁剪、PACT量化
离线量化(无需训练) |
+| DB | ch_ppocr_server_v2.0_det| 正常训练
混合精度 | 正常训练
混合精度 | 正常训练
混合精度 | 正常训练:FPGM裁剪、PACT量化
离线量化(无需训练) |
+| CRNN | ch_ppocr_mobile_v2.0_rec| 正常训练
混合精度 | 正常训练
混合精度 | 正常训练
混合精度 | 正常训练:PACT量化
离线量化(无需训练) |
+| CRNN | ch_ppocr_server_v2.0_rec| 正常训练
混合精度 | 正常训练
混合精度 | 正常训练
混合精度 | 正常训练:PACT量化
离线量化(无需训练) |
+|PP-OCR| ch_ppocr_mobile_v2.0| 正常训练
混合精度 | 正常训练
混合精度 | 正常训练
混合精度 | - |
+|PP-OCR| ch_ppocr_server_v2.0| 正常训练
混合精度 | 正常训练
混合精度 | 正常训练
混合精度 | - |
+|PP-OCRv2| ch_PP-OCRv2 | 正常训练
混合精度 | 正常训练
混合精度 | 正常训练
混合精度 | - |
+
+
+- 预测相关:基于训练是否使用量化,可以将训练产出的模型可以分为`正常模型`和`量化模型`,这两类模型对应的预测功能汇总如下,
+
+| 模型类型 |device | batchsize | tensorrt | mkldnn | cpu多线程 |
+| ---- | ---- | ---- | :----: | :----: | :----: |
+| 正常模型 | GPU | 1/6 | fp32/fp16 | - | - |
+| 正常模型 | CPU | 1/6 | - | fp32/fp16 | 支持 |
+| 量化模型 | GPU | 1/6 | int8 | - | - |
+| 量化模型 | CPU | 1/6 | - | int8 | 支持 |
+
+
+## 2. 测试流程
+
+运行环境配置请参考[文档](./install.md)的内容配置TIPC的运行环境。
+
+### 2.1 安装依赖
+- 安装PaddlePaddle >= 2.0
+- 安装PaddleOCR依赖
+ ```
+ pip3 install -r ../requirements.txt
+ ```
+- 安装autolog(规范化日志输出工具)
+ ```
+ git clone https://github.com/LDOUBLEV/AutoLog
+ cd AutoLog
+ pip3 install -r requirements.txt
+ python3 setup.py bdist_wheel
+ pip3 install ./dist/auto_log-1.0.0-py3-none-any.whl
+ cd ../
+ ```
+- 安装PaddleSlim (可选)
+ ```
+ # 如果要测试量化、裁剪等功能,需要安装PaddleSlim
+ pip3 install paddleslim
+ ```
+
+
+### 2.2 功能测试
+先运行`prepare.sh`准备数据和模型,然后运行`test_train_inference_python.sh`进行测试,最终在```test_tipc/output```目录下生成`python_infer_*.log`格式的日志文件。
+
+
+`test_train_inference_python.sh`包含5种运行模式,每种模式的运行数据不同,分别用于测试速度和精度,分别是:
+
+- 模式1:lite_train_lite_infer,使用少量数据训练,用于快速验证训练到预测的走通流程,不验证精度和速度;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'lite_train_lite_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'lite_train_lite_infer'
+```
+
+- 模式2:lite_train_whole_infer,使用少量数据训练,一定量数据预测,用于验证训练后的模型执行预测,预测速度是否合理;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'lite_train_whole_infer'
+bash test_tipc/test_train_inference_python.sh ../test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'lite_train_whole_infer'
+```
+
+- 模式3:whole_infer,不训练,全量数据预测,走通开源模型评估、动转静,检查inference model预测时间和精度;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'whole_infer'
+# 用法1:
+bash test_tipc/test_train_inference_python.sh ../test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'whole_infer'
+# 用法2: 指定GPU卡预测,第三个传入参数为GPU卡号
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'whole_infer' '1'
+```
+
+- 模式4:whole_train_whole_infer,CE: 全量数据训练,全量数据预测,验证模型训练精度,预测精度,预测速度;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'whole_train_whole_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'whole_train_whole_infer'
+```
+
+- 模式5:klquant_whole_infer,测试离线量化;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt 'klquant_whole_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt 'klquant_whole_infer'
+```
+
+运行相应指令后,在`test_tipc/output`文件夹下自动会保存运行日志。如'lite_train_lite_infer'模式下,会运行训练+inference的链条,因此,在`test_tipc/output`文件夹有以下文件:
+```
+test_tipc/output/
+|- results_python.log # 运行指令状态的日志
+|- norm_train_gpus_0_autocast_null/ # GPU 0号卡上正常训练的训练日志和模型保存文件夹
+|- pact_train_gpus_0_autocast_null/ # GPU 0号卡上量化训练的训练日志和模型保存文件夹
+......
+|- python_infer_cpu_usemkldnn_True_threads_1_batchsize_1.log # CPU上开启Mkldnn线程数设置为1,测试batch_size=1条件下的预测运行日志
+|- python_infer_gpu_usetrt_True_precision_fp16_batchsize_1.log # GPU上开启TensorRT,测试batch_size=1的半精度预测日志
+......
+```
+
+其中`results_python.log`中包含了每条指令的运行状态,如果运行成功会输出:
+```
+Run successfully with command - python3.7 tools/train.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained Global.use_gpu=True Global.save_model_dir=./tests/output/norm_train_gpus_0_autocast_null Global.epoch_num=1 Train.loader.batch_size_per_card=2 !
+Run successfully with command - python3.7 tools/export_model.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./tests/output/norm_train_gpus_0_autocast_null/latest Global.save_inference_dir=./tests/output/norm_train_gpus_0_autocast_null!
+......
+```
+如果运行失败,会输出:
+```
+Run failed with command - python3.7 tools/train.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained Global.use_gpu=True Global.save_model_dir=./tests/output/norm_train_gpus_0_autocast_null Global.epoch_num=1 Train.loader.batch_size_per_card=2 !
+Run failed with command - python3.7 tools/export_model.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./tests/output/norm_train_gpus_0_autocast_null/latest Global.save_inference_dir=./tests/output/norm_train_gpus_0_autocast_null!
+......
+```
+可以很方便的根据`results_python.log`中的内容判定哪一个指令运行错误。
+
+
+### 2.3 精度测试
+
+使用compare_results.py脚本比较模型预测的结果是否符合预期,主要步骤包括:
+- 提取日志中的预测坐标;
+- 从本地文件中提取保存好的坐标结果;
+- 比较上述两个结果是否符合精度预期,误差大于设置阈值时会报错。
+
+#### 使用方式
+运行命令:
+```shell
+python3.7 test_tipc/compare_results.py --gt_file=./test_tipc/results/python_*.txt --log_file=./test_tipc/output/python_*.log --atol=1e-3 --rtol=1e-3
+```
+
+参数介绍:
+- gt_file: 指向事先保存好的预测结果路径,支持*.txt 结尾,会自动索引*.txt格式的文件,文件默认保存在test_tipc/result/ 文件夹下
+- log_file: 指向运行test_tipc/test_train_inference_python.sh 脚本的infer模式保存的预测日志,预测日志中打印的有预测结果,比如:文本框,预测文本,类别等等,同样支持python_infer_*.log格式传入
+- atol: 设置的绝对误差
+- rtol: 设置的相对误差
+
+#### 运行结果
+
+正常运行效果如下图:
+
+
+出现不一致结果时的运行输出:
+
+
+
+## 3. 更多教程
+本文档为功能测试用,更丰富的训练预测使用教程请参考:
+[模型训练](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/doc/doc_ch/training.md)
+[基于Python预测引擎推理](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/doc/doc_ch/inference.md)
diff --git a/test_tipc/docs/win_test_train_inference_python.md b/test_tipc/docs/win_test_train_inference_python.md
new file mode 100644
index 0000000000000000000000000000000000000000..95585af0380be410c230a799b7d61e607de5f654
--- /dev/null
+++ b/test_tipc/docs/win_test_train_inference_python.md
@@ -0,0 +1,159 @@
+# Windows端基础训练预测功能测试
+
+Windows端基础训练预测功能测试的主程序为`test_train_inference_python.sh`,可以测试基于Python的模型训练、评估、推理等基本功能,包括裁剪、量化、蒸馏。
+
+## 1. 测试结论汇总
+
+- 训练相关:
+
+| 算法名称 | 模型名称 | 单机单卡 | 单机多卡 | 多机多卡 | 模型压缩(单机多卡) |
+| :---- | :---- | :---- | :---- | :---- | :---- |
+| DB | ch_ppocr_mobile_v2.0_det| 正常训练
混合精度 | - | - | 正常训练:FPGM裁剪、PACT量化
离线量化(无需训练) |
+
+
+- 预测相关:基于训练是否使用量化,可以将训练产出的模型可以分为`正常模型`和`量化模型`,这两类模型对应的预测功能汇总如下:
+
+| 模型类型 |device | batchsize | tensorrt | mkldnn | cpu多线程 |
+| ---- | ---- | ---- | :----: | :----: | :----: |
+| 正常模型 | GPU | 1/6 | fp32/fp16 | - | - |
+| 正常模型 | CPU | 1/6 | - | fp32/fp16 | 支持 |
+| 量化模型 | GPU | 1/6 | int8 | - | - |
+| 量化模型 | CPU | 1/6 | - | int8 | 支持 |
+
+
+## 2. 测试流程
+
+运行环境配置请参考[文档](./install.md)的内容配置TIPC的运行环境。
+
+另外,由于Windows上和linux的路径管理方式不同,可以在win上安装gitbash终端,在gitbash中执行指令的方式和在linux端执行指令方式相同,更方便tipc测试。gitbash[下载链接](https://git-scm.com/download/win)。
+
+
+### 2.1 安装依赖
+- 安装PaddlePaddle >= 2.0
+- 安装PaddleOCR依赖
+ ```
+ pip install -r ../requirements.txt
+ ```
+- 安装autolog(规范化日志输出工具)
+ ```
+ git clone https://github.com/LDOUBLEV/AutoLog
+ cd AutoLog
+ pip install -r requirements.txt
+ python setup.py bdist_wheel
+ pip install ./dist/auto_log-1.0.0-py3-none-any.whl
+ cd ../
+ ```
+- 安装PaddleSlim (可选)
+ ```
+ # 如果要测试量化、裁剪等功能,需要安装PaddleSlim
+ pip install paddleslim
+ ```
+
+
+### 2.2 功能测试
+先运行`prepare.sh`准备数据和模型,然后运行`test_train_inference_python.sh`进行测试,最终在```test_tipc/output```目录下生成`python_infer_*.log`格式的日志文件。
+
+
+`test_train_inference_python.sh`包含5种运行模式,每种模式的运行数据不同,分别用于测试速度和精度,分别是:
+
+- 模式1:lite_train_lite_infer,使用少量数据训练,用于快速验证训练到预测的走通流程,不验证精度和速度;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'lite_train_lite_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'lite_train_lite_infer'
+```
+
+- 模式2:lite_train_whole_infer,使用少量数据训练,一定量数据预测,用于验证训练后的模型执行预测,预测速度是否合理;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'lite_train_whole_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'lite_train_whole_infer'
+```
+
+- 模式3:whole_infer,不训练,全量数据预测,走通开源模型评估、动转静,检查inference model预测时间和精度;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'whole_infer'
+# 用法1:
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'whole_infer'
+# 用法2: 指定GPU卡预测,第三个传入参数为GPU卡号
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'whole_infer' '1'
+```
+
+- 模式4:whole_train_whole_infer,CE: 全量数据训练,全量数据预测,验证模型训练精度,预测精度,预测速度;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'whole_train_whole_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_windows_gpu_normal_normal_infer_python_windows_cpu_gpu.txt 'whole_train_whole_infer'
+```
+
+- 模式5:klquant_whole_infer,测试离线量化;
+```shell
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_windows_gpu_cpu.txt 'klquant_whole_infer'
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det_KL/model_linux_gpu_normal_normal_infer_python_windows_gpu_cpu.txt 'klquant_whole_infer'
+```
+
+
+运行相应指令后,在`test_tipc/output`文件夹下自动会保存运行日志。如'lite_train_lite_infer'模式下,会运行训练+inference的链条,因此,在`test_tipc/output`文件夹有以下文件:
+```
+test_tipc/output/
+|- results_python.log # 运行指令状态的日志
+|- norm_train_gpus_0_autocast_null/ # GPU 0号卡上正常训练的训练日志和模型保存文件夹
+|- pact_train_gpus_0_autocast_null/ # GPU 0号卡上量化训练的训练日志和模型保存文件夹
+......
+|- python_infer_cpu_usemkldnn_True_threads_1_batchsize_1.log # CPU上开启Mkldnn线程数设置为1,测试batch_size=1条件下的预测运行日志
+|- python_infer_gpu_usetrt_True_precision_fp16_batchsize_1.log # GPU上开启TensorRT,测试batch_size=1的半精度预测日志
+......
+```
+
+其中`results_python.log`中包含了每条指令的运行状态,如果运行成功会输出:
+```
+Run successfully with command - python3.7 tools/train.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained Global.use_gpu=True Global.save_model_dir=./tests/output/norm_train_gpus_0_autocast_null Global.epoch_num=1 Train.loader.batch_size_per_card=2 !
+Run successfully with command - python3.7 tools/export_model.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./tests/output/norm_train_gpus_0_autocast_null/latest Global.save_inference_dir=./tests/output/norm_train_gpus_0_autocast_null!
+......
+```
+如果运行失败,会输出:
+```
+Run failed with command - python3.7 tools/train.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained Global.use_gpu=True Global.save_model_dir=./tests/output/norm_train_gpus_0_autocast_null Global.epoch_num=1 Train.loader.batch_size_per_card=2 !
+Run failed with command - python3.7 tools/export_model.py -c tests/configs/det_mv3_db.yml -o Global.pretrained_model=./tests/output/norm_train_gpus_0_autocast_null/latest Global.save_inference_dir=./tests/output/norm_train_gpus_0_autocast_null!
+......
+```
+可以很方便的根据`results_python.log`中的内容判定哪一个指令运行错误。
+
+
+### 2.3 精度测试
+
+使用compare_results.py脚本比较模型预测的结果是否符合预期,主要步骤包括:
+- 提取日志中的预测坐标;
+- 从本地文件中提取保存好的坐标结果;
+- 比较上述两个结果是否符合精度预期,误差大于设置阈值时会报错。
+
+#### 使用方式
+运行命令:
+```shell
+python test_tipc/compare_results.py --gt_file=./test_tipc/results/python_*.txt --log_file=./test_tipc/output/python_*.log --atol=1e-3 --rtol=1e-3
+```
+
+参数介绍:
+- gt_file: 指向事先保存好的预测结果路径,支持*.txt 结尾,会自动索引*.txt格式的文件,文件默认保存在test_tipc/result/ 文件夹下
+- log_file: 指向运行test_tipc/test_train_inference_python.sh 脚本的infer模式保存的预测日志,预测日志中打印的有预测结果,比如:文本框,预测文本,类别等等,同样支持python_infer_*.log格式传入
+- atol: 设置的绝对误差
+- rtol: 设置的相对误差
+
+#### 运行结果
+
+正常运行效果如下:
+```
+Assert allclose passed! The results of python_infer_cpu_usemkldnn_False_threads_1_batchsize_1.log and ./test_tipc/results/python_ppocr_det_mobile_results_fp32.txt are consistent!
+```
+
+出现不一致结果时的运行输出:
+```
+......
+Traceback (most recent call last):
+ File "test_tipc/compare_results.py", line 140, in
+ format(filename, gt_filename))
+ValueError: The results of python_infer_cpu_usemkldnn_False_threads_1_batchsize_1.log and the results of ./test_tipc/results/python_ppocr_det_mobile_results_fp32.txt are inconsistent!
+```
+
+
+## 3. 更多教程
+本文档为功能测试用,更丰富的训练预测使用教程请参考:
+[模型训练](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/doc/doc_ch/training.md)
+[基于Python预测引擎推理](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/doc/doc_ch/inference.md)
diff --git a/test_tipc/prepare.sh b/test_tipc/prepare.sh
new file mode 100644
index 0000000000000000000000000000000000000000..9854da77170e5c0a6a9ed5b8dee7c267b39ce833
--- /dev/null
+++ b/test_tipc/prepare.sh
@@ -0,0 +1,222 @@
+#!/bin/bash
+source test_tipc/common_func.sh
+
+FILENAME=$1
+
+# MODE be one of ['lite_train_lite_infer' 'lite_train_whole_infer' 'whole_train_whole_infer',
+# 'whole_infer', 'klquant_whole_infer',
+# 'cpp_infer', 'serving_infer']
+
+MODE=$2
+
+dataline=$(cat ${FILENAME})
+
+# parser params
+IFS=$'\n'
+lines=(${dataline})
+
+# The training params
+model_name=$(func_parser_value "${lines[1]}")
+
+trainer_list=$(func_parser_value "${lines[14]}")
+
+
+if [ ${MODE} = "lite_train_lite_infer" ];then
+ # pretrain lite train data
+ wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/MobileNetV3_large_x0_5_pretrained.pdparams --no-check-certificate
+ wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar --no-check-certificate
+ if [ ${model_name} == "ch_PPOCRv2_det" ]; then
+ wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar --no-check-certificate
+ cd ./pretrain_models/ && tar xf ch_PP-OCRv2_det_distill_train.tar && cd ../
+ fi
+ cd ./pretrain_models/ && tar xf det_mv3_db_v2.0_train.tar && cd ../
+ rm -rf ./train_data/icdar2015
+ rm -rf ./train_data/ic15_data
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015_lite.tar --no-check-certificate
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ic15_data.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar --no-check-certificate
+ wget -nc -P ./deploy/slim/prune https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/sen.pickle --no-check-certificate
+
+ cd ./train_data/ && tar xf icdar2015_lite.tar && tar xf ic15_data.tar
+ ln -s ./icdar2015_lite ./icdar2015
+ cd ../
+ cd ./inference && tar xf rec_inference.tar && cd ../
+ if [ ${model_name} == "en_server_pgnetA" ]; then
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/total_text_lite.tar --no-check-certificate
+ wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/pgnet/en_server_pgnetA.tar --no-check-certificate
+ cd ./pretrain_models/ && tar xf en_server_pgnetA.tar && cd ../
+ cd ./train_data && tar xf total_text_lite.tar && ln -s total_text && cd ../
+ fi
+ if [ ${model_name} == "det_r50_vd_sast_icdar15_v2.0" ] || [ ${model_name} == "det_r50_vd_sast_totaltext_v2.0" ]; then
+ wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_ssld_pretrained.pdparams --no-check-certificate
+ wget -nc -P ./train_data/ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/total_text_lite.tar --no-check-certificate
+ cd ./train_data && tar xf total_text_lite.tar && ln -s total_text && cd ../
+ fi
+ if [ ${model_name} == "det_mv3_db_v2.0" ]; then
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar --no-check-certificate
+ cd ./inference/ && tar xf det_mv3_db_v2.0_train.tar && cd ../
+ fi
+ if [ ${model_name} == "det_r50_db_v2.0" ]; then
+ wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_ssld_pretrained.pdparams --no-check-certificate
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_db_v2.0_train.tar --no-check-certificate
+ cd ./inference/ && tar xf det_r50_vd_db_v2.0_train.tar && cd ../
+ fi
+
+elif [ ${MODE} = "whole_train_whole_infer" ];then
+ wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/MobileNetV3_large_x0_5_pretrained.pdparams --no-check-certificate
+ rm -rf ./train_data/icdar2015
+ rm -rf ./train_data/ic15_data
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar --no-check-certificate
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ic15_data.tar --no-check-certificate
+ cd ./train_data/ && tar xf icdar2015.tar && tar xf ic15_data.tar && cd ../
+ if [ ${model_name} == "ch_PPOCRv2_det" ]; then
+ wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar --no-check-certificate
+ cd ./pretrain_models/ && tar xf ch_PP-OCRv2_det_distill_train.tar && cd ../
+ fi
+ if [ ${model_name} == "en_server_pgnetA" ]; then
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dataset/total_text.tar --no-check-certificate
+ wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/pgnet/en_server_pgnetA.tar --no-check-certificate
+ cd ./pretrain_models/ && tar xf en_server_pgnetA.tar && cd ../
+ cd ./train_data && tar xf total_text.tar && ln -s total_text && cd ../
+ fi
+ if [ ${model_name} == "det_r50_vd_sast_totaltext_v2.0" ]; then
+ wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_ssld_pretrained.pdparams --no-check-certificate
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dataset/total_text.tar --no-check-certificate
+ cd ./train_data && tar xf total_text.tar && ln -s total_text && cd ../
+ fi
+elif [ ${MODE} = "lite_train_whole_infer" ];then
+ wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/MobileNetV3_large_x0_5_pretrained.pdparams --no-check-certificate
+ rm -rf ./train_data/icdar2015
+ rm -rf ./train_data/ic15_data
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015_infer.tar --no-check-certificate
+ wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ic15_data.tar --no-check-certificate
+ cd ./train_data/ && tar xf icdar2015_infer.tar && tar xf ic15_data.tar
+ ln -s ./icdar2015_infer ./icdar2015
+ cd ../
+ if [ ${model_name} == "ch_PPOCRv2_det" ]; then
+ wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_distill_train.tar --no-check-certificate
+ cd ./pretrain_models/ && tar xf ch_PP-OCRv2_det_distill_train.tar && cd ../
+ fi
+elif [ ${MODE} = "whole_infer" ];then
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ if [ ${model_name} = "ch_ppocr_mobile_v2.0_det" ]; then
+ eval_model_name="ch_ppocr_mobile_v2.0_det_train"
+ rm -rf ./train_data/icdar2015
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar --no-check-certificate
+ cd ./inference && tar xf ${eval_model_name}.tar && tar xf ch_det_data_50.tar && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && cd ../
+ elif [ ${model_name} = "ch_ppocr_server_v2.0_det" ]; then
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_train.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ cd ./inference && tar xf ch_ppocr_server_v2.0_det_train.tar && tar xf ch_det_data_50.tar && cd ../
+ elif [ ${model_name} = "ch_ppocr_mobile_v2.0" ]; then
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar --no-check-certificate
+ cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf ch_det_data_50.tar && cd ../
+ elif [ ${model_name} = "ch_ppocr_server_v2.0" ]; then
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar --no-check-certificate
+ cd ./inference && tar xf ch_ppocr_server_v2.0_det_infer.tar && tar xf ch_ppocr_server_v2.0_rec_infer.tar && tar xf ch_det_data_50.tar && cd ../
+ elif [ ${model_name} = "ch_ppocr_mobile_v2.0_rec" ]; then
+ eval_model_name="ch_ppocr_mobile_v2.0_rec_infer"
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar --no-check-certificate
+ cd ./inference && tar xf ${eval_model_name}.tar && tar xf rec_inference.tar && cd ../
+ elif [ ${model_name} = "ch_ppocr_server_v2.0_rec" ]; then
+ eval_model_name="ch_ppocr_server_v2.0_rec_infer"
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar --no-check-certificate
+ cd ./inference && tar xf ${eval_model_name}.tar && tar xf rec_inference.tar && cd ../
+ fi
+ if [ ${model_name} = "ch_PPOCRv2_det" ]; then
+ eval_model_name="ch_PP-OCRv2_det_infer"
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar --no-check-certificate
+ cd ./inference && tar xf ${eval_model_name}.tar && tar xf ch_det_data_50.tar && cd ../
+ fi
+ if [ ${model_name} = "ch_PPOCRv2_det" ]; then
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/pgnet/e2e_server_pgnetA_infer.tar --no-check-certificate
+ cd ./inference && tar xf e2e_server_pgnetA_infer.tar && tar xf ch_det_data_50.tar && cd ../
+ fi
+ if [ ${model_name} == "en_server_pgnetA" ]; then
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/pgnet/en_server_pgnetA.tar --no-check-certificate
+ cd ./inference && tar xf en_server_pgnetA.tar && cd ../
+ fi
+ if [ ${model_name} == "det_r50_vd_sast_icdar15_v2.0" ]; then
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_sast_icdar15_v2.0_train.tar --no-check-certificate
+ cd ./inference/ && tar xf det_r50_vd_sast_icdar15_v2.0_train.tar && cd ../
+ fi
+ if [ ${model_name} == "det_mv3_db_v2.0" ]; then
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar --no-check-certificate
+ cd ./inference/ && tar xf det_mv3_db_v2.0_train.tar && cd ../
+ fi
+ if [ ${model_name} == "det_r50_db_v2.0" ]; then
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_db_v2.0_train.tar --no-check-certificate
+ cd ./inference/ && tar xf det_r50_vd_db_v2.0_train.tar && cd ../
+ fi
+fi
+if [ ${MODE} = "klquant_whole_infer" ]; then
+ if [ ${model_name} = "ch_ppocr_mobile_v2.0_det" ]; then
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_det_data_50.tar && cd ../
+ fi
+ if [ ${model_name} = "ch_PPOCRv2_det" ]; then
+ eval_model_name="ch_PP-OCRv2_det_infer"
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/ch_PP-OCRv2_det_infer.tar --no-check-certificate
+ cd ./inference && tar xf ${eval_model_name}.tar && tar xf ch_det_data_50.tar && cd ../
+ fi
+fi
+
+if [ ${MODE} = "cpp_infer" ];then
+ if [ ${model_name} = "ocr_det" ]; then
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar --no-check-certificate
+ cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_det_data_50.tar && cd ../
+ elif [ ${model_name} = "ch_ppocr_mobile_v2.0_rec" ]; then
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar --no-check-certificate
+ cd ./inference && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf rec_inference.tar && cd ../
+ elif [ ${model_name} = "ocr_system" ]; then
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar --no-check-certificate
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar --no-check-certificate
+ cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf ch_det_data_50.tar && cd ../
+ fi
+fi
+
+if [ ${MODE} = "serving_infer" ];then
+ # prepare serving env
+ python_name=$(func_parser_value "${lines[2]}")
+ wget https://paddle-serving.bj.bcebos.com/chain/paddle_serving_server_gpu-0.0.0.post101-py3-none-any.whl
+ ${python_name} -m pip install install paddle_serving_server_gpu-0.0.0.post101-py3-none-any.whl
+ ${python_name} -m pip install paddle_serving_client==0.6.1
+ ${python_name} -m pip install paddle-serving-app==0.6.3
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar
+ cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf ch_ppocr_server_v2.0_rec_infer.tar && tar xf ch_ppocr_server_v2.0_det_infer.tar && cd ../
+fi
+
+if [ ${MODE} = "paddle2onnx_infer" ];then
+ # prepare serving env
+ python_name=$(func_parser_value "${lines[2]}")
+ ${python_name} -m pip install install paddle2onnx
+ ${python_name} -m pip install onnxruntime==1.4.0
+ # wget model
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar
+ # wget data
+ wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
+ wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar
+ cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf ch_ppocr_server_v2.0_rec_infer.tar && tar xf ch_ppocr_server_v2.0_det_infer.tar && tar xf ch_det_data_50.tar && tar xf rec_inference.tar && cd ../
+
+fi
diff --git a/test_tipc/prepare_lite_cpp.sh b/test_tipc/prepare_lite_cpp.sh
new file mode 100644
index 0000000000000000000000000000000000000000..94af43c88d60aad706009c8bdd1e519a7b7e9acc
--- /dev/null
+++ b/test_tipc/prepare_lite_cpp.sh
@@ -0,0 +1,107 @@
+#!/bin/bash
+source ./test_tipc/common_func.sh
+FILENAME=$1
+dataline=$(cat ${FILENAME})
+# parser params
+IFS=$'\n'
+lines=(${dataline})
+IFS=$'\n'
+paddlelite_library_source=$2
+
+inference_cmd=$(func_parser_value "${lines[1]}")
+DEVICE=$(func_parser_value "${lines[2]}")
+det_lite_model_list=$(func_parser_value "${lines[3]}")
+rec_lite_model_list=$(func_parser_value "${lines[4]}")
+cls_lite_model_list=$(func_parser_value "${lines[5]}")
+
+if [[ $inference_cmd =~ "det" ]]; then
+ lite_model_list=${det_lite_model_list}
+elif [[ $inference_cmd =~ "rec" ]]; then
+ lite_model_list=(${rec_lite_model_list[*]} ${cls_lite_model_list[*]})
+elif [[ $inference_cmd =~ "system" ]]; then
+ lite_model_list=(${det_lite_model_list[*]} ${rec_lite_model_list[*]} ${cls_lite_model_list[*]})
+else
+ echo "inference_cmd is wrong, please check."
+ exit 1
+fi
+
+if [ ${DEVICE} = "ARM_CPU" ]; then
+ valid_targets="arm"
+ paddlelite_library_url="https://github.com/PaddlePaddle/Paddle-Lite/releases/download/v2.10-rc/inference_lite_lib.android.armv8.gcc.c++_shared.with_extra.with_cv.tar.gz"
+ end_index="66"
+ compile_with_opencl="OFF"
+elif [ ${DEVICE} = "ARM_GPU_OPENCL" ]; then
+ valid_targets="opencl"
+ paddlelite_library_url="https://github.com/PaddlePaddle/Paddle-Lite/releases/download/v2.10-rc/inference_lite_lib.armv8.clang.with_exception.with_extra.with_cv.opencl.tar.gz"
+ end_index="71"
+ compile_with_opencl="ON"
+else
+ echo "DEVICE only support ARM_CPU, ARM_GPU_OPENCL."
+ exit 2
+fi
+
+# prepare paddlelite model
+pip install paddlelite==2.10-rc
+current_dir=${PWD}
+IFS="|"
+model_path=./inference_models
+
+for model in ${lite_model_list[*]}; do
+ if [[ $model =~ "PP-OCRv2" ]]; then
+ inference_model_url=https://paddleocr.bj.bcebos.com/PP-OCRv2/chinese/${model}.tar
+ elif [[ $model =~ "v2.0" ]]; then
+ inference_model_url=https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/${model}.tar
+ else
+ echo "Model is wrong, please check."
+ exit 3
+ fi
+ inference_model=${inference_model_url##*/}
+ wget -nc -P ${model_path} ${inference_model_url}
+ cd ${model_path} && tar -xf ${inference_model} && cd ../
+ model_dir=${model_path}/${inference_model%.*}
+ model_file=${model_dir}/inference.pdmodel
+ param_file=${model_dir}/inference.pdiparams
+ paddle_lite_opt --model_dir=${model_dir} --model_file=${model_file} --param_file=${param_file} --valid_targets=${valid_targets} --optimize_out=${model_dir}_opt
+done
+
+# prepare test data
+data_url=https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015_lite.tar
+data_file=${data_url##*/}
+wget -nc -P ./test_data ${data_url}
+cd ./test_data && tar -xf ${data_file} && rm ${data_file} && cd ../
+
+# prepare paddlelite predict library
+if [[ ${paddlelite_library_source} = "download" ]]; then
+ paddlelite_library_zipfile=$(echo $paddlelite_library_url | awk -F "/" '{print $NF}')
+ paddlelite_library_file=${paddlelite_library_zipfile:0:${end_index}}
+ wget ${paddlelite_library_url} && tar -xf ${paddlelite_library_zipfile}
+ cd ${paddlelite_library_zipfile}
+elif [[ ${paddlelite_library_source} = "compile" ]]; then
+ git clone -b release/v2.10 https://github.com/PaddlePaddle/Paddle-Lite.git
+ cd Paddle-Lite
+ ./lite/tools/build_android.sh --arch=armv8 --with_cv=ON --with_extra=ON --toolchain=clang --with_opencl=${compile_with_opencl}
+ cd ../
+ cp -r Paddle-Lite/build.lite.android.armv8.clang/inference_lite_lib.android.armv8/ .
+ paddlelite_library_file=inference_lite_lib.android.armv8
+else
+ echo "paddlelite_library_source only support 'download' and 'compile'"
+ exit 3
+fi
+
+# organize the required files
+mkdir -p ${paddlelite_library_file}/demo/cxx/ocr/test_lite
+cp -r ${model_path}/*_opt.nb test_data ${paddlelite_library_file}/demo/cxx/ocr/test_lite
+cp ppocr/utils/ppocr_keys_v1.txt deploy/lite/config.txt ${paddlelite_library_file}/demo/cxx/ocr/test_lite
+cp -r ./deploy/lite/* ${paddlelite_library_file}/demo/cxx/ocr/
+cp ${paddlelite_library_file}/cxx/lib/libpaddle_light_api_shared.so ${paddlelite_library_file}/demo/cxx/ocr/test_lite
+cp ${FILENAME} test_tipc/test_lite_arm_cpp.sh test_tipc/common_func.sh ${paddlelite_library_file}/demo/cxx/ocr/test_lite
+cd ${paddlelite_library_file}/demo/cxx/ocr/
+git clone https://github.com/cuicheng01/AutoLog.git
+
+# compile and do some postprocess
+make -j
+sleep 1
+make -j
+cp ocr_db_crnn test_lite && cp test_lite/libpaddle_light_api_shared.so test_lite/libc++_shared.so
+tar -cf test_lite.tar ./test_lite && cp test_lite.tar ${current_dir} && cd ${current_dir}
+rm -rf ${paddlelite_library_file}* && rm -rf ${model_path}
diff --git a/test_tipc/readme.md b/test_tipc/readme.md
new file mode 100644
index 0000000000000000000000000000000000000000..a188b675a90a651588fdda08694bc30ca9e0f301
--- /dev/null
+++ b/test_tipc/readme.md
@@ -0,0 +1,144 @@
+
+# 飞桨训推一体认证(TIPC)
+
+## 1. 简介
+
+飞桨除了基本的模型训练和预测,还提供了支持多端多平台的高性能推理部署工具。本文档提供了PaddleOCR中所有模型的飞桨训推一体认证 (Training and Inference Pipeline Certification(TIPC)) 信息和测试工具,方便用户查阅每种模型的训练推理部署打通情况,并可以进行一键测试。
+
+
+
+
+
+## 2. 汇总信息
+
+打通情况汇总如下,已填写的部分表示可以使用本工具进行一键测试,未填写的表示正在支持中。
+
+**字段说明:**
+- 基础训练预测:包括模型训练、Paddle Inference Python预测。
+- 更多训练方式:包括多机多卡、混合精度。
+- 模型压缩:包括裁剪、离线/在线量化、蒸馏。
+- 其他预测部署:包括Paddle Inference C++预测、Paddle Serving部署、Paddle-Lite部署等。
+
+更详细的mkldnn、Tensorrt等预测加速相关功能的支持情况可以查看各测试工具的[更多教程](#more)。
+
+| 算法论文 | 模型名称 | 模型类型 | 基础
训练预测 | 更多
训练方式 | 模型压缩 | 其他预测部署 |
+| :--- | :--- | :----: | :--------: | :---- | :---- | :---- |
+| DB |ch_ppocr_mobile_v2.0_det | 检测 | 支持 | 多机多卡
混合精度 | - | Paddle Inference: C++
Paddle Serving: Python, C++
Paddle-Lite:
(1) ARM CPU(C++) |
+| DB |ch_ppocr_mobile_v2.0_det_FPGM | 检测 | 支持 | 多机多卡
混合精度 | FPGM裁剪 | Paddle Inference: C++
Paddle Serving: Python, C++
Paddle-Lite:
(1) ARM CPU(C++) |
+| DB |ch_ppocr_mobile_v2.0_det_PACT | 检测 | 支持 | 多机多卡
混合精度 | PACT量化 | Paddle Inference: C++
Paddle Serving: Python, C++
Paddle-Lite:
(1) ARM CPU(C++) |
+| DB |ch_ppocr_mobile_v2.0_det_KL | 检测 | 支持 | 多机多卡
混合精度 | 离线量化| Paddle Inference: C++
Paddle Serving: Python, C++
Paddle-Lite:
(1) ARM CPU(C++) |
+| DB |ch_ppocr_server_v2.0_det | 检测 | 支持 | 多机多卡
混合精度 | - | Paddle Inference: C++
Paddle Serving: Python, C++ |
+| DB |ch_PP-OCRv2_det | 检测 |
+| CRNN |ch_ppocr_mobile_v2.0_rec | 识别 | 支持 | 多机多卡
混合精度 | - | Paddle Inference: C++
Paddle Serving: Python, C++
Paddle-Lite:
(1) ARM CPU(C++) |
+| CRNN |ch_ppocr_server_v2.0_rec | 识别 | 支持 | 多机多卡
混合精度 | - | Paddle Inference: C++
Paddle Serving: Python, C++ |
+| CRNN |ch_PP-OCRv2_rec | 识别 |
+| PP-OCR |ch_ppocr_mobile_v2.0 | 检测+识别 | 支持 | 多机多卡
混合精度 | - | Paddle Inference: C++
Paddle Serving: Python, C++
Paddle-Lite:
(1) ARM CPU(C++) |
+| PP-OCR |ch_ppocr_server_v2.0 | 检测+识别 | 支持 | 多机多卡
混合精度 | - | Paddle Inference: C++
Paddle Serving: Python, C++ |
+|PP-OCRv2|ch_PP-OCRv2 | 检测+识别 |
+| DB |det_mv3_db_v2.0 | 检测 |
+| DB |det_r50_vd_db_v2.0 | 检测 |
+| EAST |det_mv3_east_v2.0 | 检测 |
+| EAST |det_r50_vd_east_v2.0 | 检测 |
+| PSENet |det_mv3_pse_v2.0 | 检测 |
+| PSENet |det_r50_vd_pse_v2.0 | 检测 |
+| SAST |det_r50_vd_sast_totaltext_v2.0 | 检测 |
+| Rosetta|rec_mv3_none_none_ctc_v2.0 | 识别 |
+| Rosetta|rec_r34_vd_none_none_ctc_v2.0 | 识别 |
+| CRNN |rec_mv3_none_bilstm_ctc_v2.0 | 识别 |
+| CRNN |rec_r34_vd_none_bilstm_ctc_v2.0| 识别 |
+| StarNet|rec_mv3_tps_bilstm_ctc_v2.0 | 识别 |
+| StarNet|rec_r34_vd_tps_bilstm_ctc_v2.0 | 识别 |
+| RARE |rec_mv3_tps_bilstm_att_v2.0 | 识别 |
+| RARE |rec_r34_vd_tps_bilstm_att_v2.0 | 识别 |
+| SRN |rec_r50fpn_vd_none_srn | 识别 |
+| NRTR |rec_mtb_nrtr | 识别 |
+| SAR |rec_r31_sar | 识别 |
+| PGNet |rec_r34_vd_none_none_ctc_v2.0 | 端到端|
+
+
+
+## 3. 测试工具简介
+### 目录介绍
+
+```shell
+test_tipc/
+├── configs/ # 配置文件目录
+ ├── ch_ppocr_mobile_v2.0_det # ch_ppocr_mobile_v2.0_det模型的测试配置文件目录
+ ├── train_infer_python.txt # 测试Linux上python训练预测(基础训练预测)的配置文件
+ ├── model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt # 测试Linux上c++预测的配置文件
+ ├── model_linux_gpu_normal_normal_infer_python_jetson.txt # 测试Jetson上python预测的配置文件
+ ├── train_linux_gpu_fleet_amp_infer_python_linux_gpu_cpu.txt # 测试Linux上多机多卡、混合精度训练和python预测的配置文件
+ ├── ...
+ ├── ch_ppocr_server_v2.0_det # ch_ppocr_server_v2.0_det模型的测试配置文件目录
+ ├── ...
+ ├── ch_ppocr_mobile_v2.0_rec # ch_ppocr_mobile_v2.0_rec模型的测试配置文件目录
+ ├── ...
+ ├── ch_ppocr_server_v2.0_det # ch_ppocr_server_v2.0_det模型的测试配置文件目录
+ ├── ...
+ ├── ...
+├── results/ # 预先保存的预测结果,用于和实际预测结果进行精读比对
+ ├── python_ppocr_det_mobile_results_fp32.txt # 预存的mobile版ppocr检测模型python预测fp32精度的结果
+ ├── python_ppocr_det_mobile_results_fp16.txt # 预存的mobile版ppocr检测模型python预测fp16精度的结果
+ ├── cpp_ppocr_det_mobile_results_fp32.txt # 预存的mobile版ppocr检测模型c++预测的fp32精度的结果
+ ├── cpp_ppocr_det_mobile_results_fp16.txt # 预存的mobile版ppocr检测模型c++预测的fp16精度的结果
+ ├── ...
+├── prepare.sh # 完成test_*.sh运行所需要的数据和模型下载
+├── test_train_inference_python.sh # 测试python训练预测的主程序
+├── test_inference_cpp.sh # 测试c++预测的主程序
+├── test_serving.sh # 测试serving部署预测的主程序
+├── test_lite_arm_cpu_cpp.sh # 测试lite在arm_cpu上部署的C++预测的主程序
+├── compare_results.py # 用于对比log中的预测结果与results中的预存结果精度误差是否在限定范围内
+└── readme.md # 使用文档
+```
+
+### 测试流程概述
+
+使用本工具,可以测试不同功能的支持情况,以及预测结果是否对齐,测试流程概括如下:
+
+
+
+
+1. 运行prepare.sh准备测试所需数据和模型;
+2. 运行要测试的功能对应的测试脚本`test_*.sh`,产出log,由log可以看到不同配置是否运行成功;
+3. 用`compare_results.py`对比log中的预测结果和预存在results目录下的结果,判断预测精度是否符合预期(在误差范围内)。
+
+测试单项功能仅需两行命令,**如需测试不同模型/功能,替换配置文件即可**,命令格式如下:
+```shell
+# 功能:准备数据
+# 格式:bash + 运行脚本 + 参数1: 配置文件选择 + 参数2: 模式选择
+bash test_tipc/prepare.sh configs/[model_name]/[params_file_name] [Mode]
+
+# 功能:运行测试
+# 格式:bash + 运行脚本 + 参数1: 配置文件选择 + 参数2: 模式选择
+bash test_tipc/test_train_inference_python.sh configs/[model_name]/[params_file_name] [Mode]
+```
+
+例如,测试基本训练预测功能的`lite_train_lite_infer`模式,运行:
+```shell
+# 准备数据
+bash test_tipc/prepare.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'lite_train_lite_infer'
+# 运行测试
+bash test_tipc/test_train_inference_python.sh ./test_tipc/configs/ch_ppocr_mobile_v2.0_det/train_infer_python.txt 'lite_train_lite_infer'
+```
+关于本示例命令的更多信息可查看[基础训练预测使用文档](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/test_tipc/docs/test_train_inference_python.md#22-%E5%8A%9F%E8%83%BD%E6%B5%8B%E8%AF%95)。
+
+### 配置文件命名规范
+在`configs`目录下,**按模型名称划分为子目录**,子目录中存放所有该模型测试需要用到的配置文件,配置文件的命名遵循如下规范:
+
+1. 基础训练预测配置简单命名为:`train_infer_python.txt`,表示**Linux环境下单机、不使用混合精度训练+python预测**,其完整命名对应`train_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt`,由于本配置文件使用频率较高,这里进行了名称简化。
+
+2. 其他带训练配置命名格式为:`train_训练硬件环境(linux_gpu/linux_dcu/…)_是否多机(fleet/normal)_是否混合精度(amp/normal)_预测模式(infer/lite/serving/js)_语言(cpp/python/java)_预测硬件环境(linux_gpu/mac/jetson/opencl_arm_gpu/...).txt`。如,linux gpu下多机多卡+混合精度链条测试对应配置 `train_linux_gpu_fleet_amp_infer_python_linux_gpu_cpu.txt`,linux dcu下基础训练预测对应配置 `train_linux_dcu_normal_normal_infer_python_linux_dcu.txt`。
+
+3. 仅预测的配置(如serving、lite等)命名格式:`model_训练硬件环境(linux_gpu/linux_dcu/…)_是否多机(fleet/normal)_是否混合精度(amp/normal)_(infer/lite/serving/js)_语言(cpp/python/java)_预测硬件环境(linux_gpu/mac/jetson/opencl_arm_gpu/...).txt`,即,与2相比,仅第一个字段从train换为model,测试时模型直接下载获取,这里的“训练硬件环境”表示所测试的模型是在哪种环境下训练得到的。
+
+**根据上述命名规范,可以直接从子目录名称和配置文件名找到需要测试的场景和功能对应的配置文件。**
+
+
+
+## 4. 开始测试
+各功能测试中涉及混合精度、裁剪、量化等训练相关,及mkldnn、Tensorrt等多种预测相关参数配置,请点击下方相应链接了解更多细节和使用教程:
+- [test_train_inference_python 使用](docs/test_train_inference_python.md) :测试基于Python的模型训练、评估、推理等基本功能,包括裁剪、量化、蒸馏。
+- [test_inference_cpp 使用](docs/test_inference_cpp.md):测试基于C++的模型推理。
+- [test_serving 使用](docs/test_serving.md):测试基于Paddle Serving的服务化部署功能。
+- [test_lite_arm_cpu_cpp 使用](docs/test_lite_arm_cpu_cpp.md):测试基于Paddle-Lite的ARM CPU端c++预测部署功能。
+- [test_paddle2onnx 使用](docs/test_paddle2onnx.md):测试Paddle2ONNX的模型转化功能,并验证正确性。
diff --git a/tests/results/det_results_gpu_trt_fp16_cpp.txt b/test_tipc/results/cpp_ppocr_det_mobile_results_fp16.txt
similarity index 100%
rename from tests/results/det_results_gpu_trt_fp16_cpp.txt
rename to test_tipc/results/cpp_ppocr_det_mobile_results_fp16.txt
diff --git a/tests/results/det_results_gpu_trt_fp32_cpp.txt b/test_tipc/results/cpp_ppocr_det_mobile_results_fp32.txt
similarity index 100%
rename from tests/results/det_results_gpu_trt_fp32_cpp.txt
rename to test_tipc/results/cpp_ppocr_det_mobile_results_fp32.txt
diff --git a/tests/results/det_results_gpu_trt_fp16.txt b/test_tipc/results/python_ppocr_det_mobile_results_fp16.txt
similarity index 100%
rename from tests/results/det_results_gpu_trt_fp16.txt
rename to test_tipc/results/python_ppocr_det_mobile_results_fp16.txt
diff --git a/tests/results/det_results_gpu_fp32.txt b/test_tipc/results/python_ppocr_det_mobile_results_fp32.txt
similarity index 100%
rename from tests/results/det_results_gpu_fp32.txt
rename to test_tipc/results/python_ppocr_det_mobile_results_fp32.txt
diff --git a/test_tipc/test_inference_cpp.sh b/test_tipc/test_inference_cpp.sh
new file mode 100644
index 0000000000000000000000000000000000000000..d26954353ef1e81ae49364b7f9d20357768cff85
--- /dev/null
+++ b/test_tipc/test_inference_cpp.sh
@@ -0,0 +1,208 @@
+#!/bin/bash
+source test_tipc/common_func.sh
+
+FILENAME=$1
+dataline=$(awk 'NR==1, NR==16{print}' $FILENAME)
+
+# parser params
+IFS=$'\n'
+lines=(${dataline})
+
+# parser cpp inference model
+model_name=$(func_parser_value "${lines[1]}")
+use_opencv=$(func_parser_value "${lines[2]}")
+cpp_infer_model_dir_list=$(func_parser_value "${lines[3]}")
+cpp_infer_is_quant=$(func_parser_value "${lines[4]}")
+# parser cpp inference
+inference_cmd=$(func_parser_value "${lines[5]}")
+cpp_use_gpu_key=$(func_parser_key "${lines[6]}")
+cpp_use_gpu_list=$(func_parser_value "${lines[6]}")
+cpp_use_mkldnn_key=$(func_parser_key "${lines[7]}")
+cpp_use_mkldnn_list=$(func_parser_value "${lines[7]}")
+cpp_cpu_threads_key=$(func_parser_key "${lines[8]}")
+cpp_cpu_threads_list=$(func_parser_value "${lines[8]}")
+cpp_batch_size_key=$(func_parser_key "${lines[9]}")
+cpp_batch_size_list=$(func_parser_value "${lines[9]}")
+cpp_use_trt_key=$(func_parser_key "${lines[10]}")
+cpp_use_trt_list=$(func_parser_value "${lines[10]}")
+cpp_precision_key=$(func_parser_key "${lines[11]}")
+cpp_precision_list=$(func_parser_value "${lines[11]}")
+cpp_infer_model_key=$(func_parser_key "${lines[12]}")
+cpp_image_dir_key=$(func_parser_key "${lines[13]}")
+cpp_infer_img_dir=$(func_parser_value "${lines[13]}")
+cpp_infer_key1=$(func_parser_key "${lines[14]}")
+cpp_infer_value1=$(func_parser_value "${lines[14]}")
+cpp_benchmark_key=$(func_parser_key "${lines[15]}")
+cpp_benchmark_value=$(func_parser_value "${lines[15]}")
+
+LOG_PATH="./test_tipc/output"
+mkdir -p ${LOG_PATH}
+status_log="${LOG_PATH}/results_cpp.log"
+
+
+function func_cpp_inference(){
+ IFS='|'
+ _script=$1
+ _model_dir=$2
+ _log_path=$3
+ _img_dir=$4
+ _flag_quant=$5
+ # inference
+ for use_gpu in ${cpp_use_gpu_list[*]}; do
+ if [ ${use_gpu} = "False" ] || [ ${use_gpu} = "cpu" ]; then
+ for use_mkldnn in ${cpp_use_mkldnn_list[*]}; do
+ if [ ${use_mkldnn} = "False" ] && [ ${_flag_quant} = "True" ]; then
+ continue
+ fi
+ for threads in ${cpp_cpu_threads_list[*]}; do
+ for batch_size in ${cpp_batch_size_list[*]}; do
+ precision="fp32"
+ if [ ${use_mkldnn} = "False" ] && [ ${_flag_quant} = "True" ]; then
+ precison="int8"
+ fi
+ _save_log_path="${_log_path}/cpp_infer_cpu_usemkldnn_${use_mkldnn}_threads_${threads}_precision_${precision}_batchsize_${batch_size}.log"
+ set_infer_data=$(func_set_params "${cpp_image_dir_key}" "${_img_dir}")
+ set_benchmark=$(func_set_params "${cpp_benchmark_key}" "${cpp_benchmark_value}")
+ set_batchsize=$(func_set_params "${cpp_batch_size_key}" "${batch_size}")
+ set_cpu_threads=$(func_set_params "${cpp_cpu_threads_key}" "${threads}")
+ set_model_dir=$(func_set_params "${cpp_infer_model_key}" "${_model_dir}")
+ set_infer_params1=$(func_set_params "${cpp_infer_key1}" "${cpp_infer_value1}")
+ command="${_script} ${cpp_use_gpu_key}=${use_gpu} ${cpp_use_mkldnn_key}=${use_mkldnn} ${set_cpu_threads} ${set_model_dir} ${set_batchsize} ${set_infer_data} ${set_benchmark} ${set_infer_params1} > ${_save_log_path} 2>&1 "
+ eval $command
+ last_status=${PIPESTATUS[0]}
+ eval "cat ${_save_log_path}"
+ status_check $last_status "${command}" "${status_log}"
+ done
+ done
+ done
+ elif [ ${use_gpu} = "True" ] || [ ${use_gpu} = "gpu" ]; then
+ for use_trt in ${cpp_use_trt_list[*]}; do
+ for precision in ${cpp_precision_list[*]}; do
+ if [[ ${_flag_quant} = "False" ]] && [[ ${precision} =~ "int8" ]]; then
+ continue
+ fi
+ if [[ ${precision} =~ "fp16" || ${precision} =~ "int8" ]] && [ ${use_trt} = "False" ]; then
+ continue
+ fi
+ if [[ ${use_trt} = "False" || ${precision} =~ "int8" ]] && [ ${_flag_quant} = "True" ]; then
+ continue
+ fi
+ for batch_size in ${cpp_batch_size_list[*]}; do
+ _save_log_path="${_log_path}/cpp_infer_gpu_usetrt_${use_trt}_precision_${precision}_batchsize_${batch_size}.log"
+ set_infer_data=$(func_set_params "${cpp_image_dir_key}" "${_img_dir}")
+ set_benchmark=$(func_set_params "${cpp_benchmark_key}" "${cpp_benchmark_value}")
+ set_batchsize=$(func_set_params "${cpp_batch_size_key}" "${batch_size}")
+ set_tensorrt=$(func_set_params "${cpp_use_trt_key}" "${use_trt}")
+ set_precision=$(func_set_params "${cpp_precision_key}" "${precision}")
+ set_model_dir=$(func_set_params "${cpp_infer_model_key}" "${_model_dir}")
+ set_infer_params1=$(func_set_params "${cpp_infer_key1}" "${cpp_infer_value1}")
+ command="${_script} ${cpp_use_gpu_key}=${use_gpu} ${set_tensorrt} ${set_precision} ${set_model_dir} ${set_batchsize} ${set_infer_data} ${set_benchmark} ${set_infer_params1} > ${_save_log_path} 2>&1 "
+ eval $command
+ last_status=${PIPESTATUS[0]}
+ eval "cat ${_save_log_path}"
+ status_check $last_status "${command}" "${status_log}"
+
+ done
+ done
+ done
+ else
+ echo "Does not support hardware other than CPU and GPU Currently!"
+ fi
+ done
+}
+
+
+cd deploy/cpp_infer
+if [ ${use_opencv} = "True" ]; then
+ if [ -d "opencv-3.4.7/opencv3/" ] && [ $(md5sum opencv-3.4.7.tar.gz | awk -F ' ' '{print $1}') = "faa2b5950f8bee3f03118e600c74746a" ];then
+ echo "################### build opencv skipped ###################"
+ else
+ echo "################### build opencv ###################"
+ rm -rf opencv-3.4.7.tar.gz opencv-3.4.7/
+ wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/opencv-3.4.7.tar.gz
+ tar -xf opencv-3.4.7.tar.gz
+
+ cd opencv-3.4.7/
+ install_path=$(pwd)/opencv3
+
+ rm -rf build
+ mkdir build
+ cd build
+
+ cmake .. \
+ -DCMAKE_INSTALL_PREFIX=${install_path} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DBUILD_SHARED_LIBS=OFF \
+ -DWITH_IPP=OFF \
+ -DBUILD_IPP_IW=OFF \
+ -DWITH_LAPACK=OFF \
+ -DWITH_EIGEN=OFF \
+ -DCMAKE_INSTALL_LIBDIR=lib64 \
+ -DWITH_ZLIB=ON \
+ -DBUILD_ZLIB=ON \
+ -DWITH_JPEG=ON \
+ -DBUILD_JPEG=ON \
+ -DWITH_PNG=ON \
+ -DBUILD_PNG=ON \
+ -DWITH_TIFF=ON \
+ -DBUILD_TIFF=ON
+
+ make -j
+ make install
+ cd ../
+ echo "################### build opencv finished ###################"
+ fi
+fi
+
+
+echo "################### build PaddleOCR demo ####################"
+if [ ${use_opencv} = "True" ]; then
+ OPENCV_DIR=$(pwd)/opencv-3.4.7/opencv3/
+else
+ OPENCV_DIR=''
+fi
+LIB_DIR=$(pwd)/Paddle/build/paddle_inference_install_dir/
+CUDA_LIB_DIR=$(dirname `find /usr -name libcudart.so`)
+CUDNN_LIB_DIR=$(dirname `find /usr -name libcudnn.so`)
+
+BUILD_DIR=build
+rm -rf ${BUILD_DIR}
+mkdir ${BUILD_DIR}
+cd ${BUILD_DIR}
+cmake .. \
+ -DPADDLE_LIB=${LIB_DIR} \
+ -DWITH_MKL=ON \
+ -DWITH_GPU=OFF \
+ -DWITH_STATIC_LIB=OFF \
+ -DWITH_TENSORRT=OFF \
+ -DOPENCV_DIR=${OPENCV_DIR} \
+ -DCUDNN_LIB=${CUDNN_LIB_DIR} \
+ -DCUDA_LIB=${CUDA_LIB_DIR} \
+ -DTENSORRT_DIR=${TENSORRT_DIR} \
+
+make -j
+cd ../../../
+echo "################### build PaddleOCR demo finished ###################"
+
+
+# set cuda device
+GPUID=$2
+if [ ${#GPUID} -le 0 ];then
+ env=" "
+else
+ env="export CUDA_VISIBLE_DEVICES=${GPUID}"
+fi
+set CUDA_VISIBLE_DEVICES
+eval $env
+
+
+echo "################### run test ###################"
+export Count=0
+IFS="|"
+infer_quant_flag=(${cpp_infer_is_quant})
+for infer_model in ${cpp_infer_model_dir_list[*]}; do
+ #run inference
+ is_quant=${infer_quant_flag[Count]}
+ func_cpp_inference "${inference_cmd}" "${infer_model}" "${LOG_PATH}" "${cpp_infer_img_dir}" ${is_quant}
+ Count=$(($Count + 1))
+done
diff --git a/test_tipc/test_inference_jeston.sh b/test_tipc/test_inference_jeston.sh
new file mode 100644
index 0000000000000000000000000000000000000000..2fd76e1e9e7e8c7b52d0b6838cd15840a59fe5c4
--- /dev/null
+++ b/test_tipc/test_inference_jeston.sh
@@ -0,0 +1,87 @@
+#!/bin/bash
+source test_tipc/common_func.sh
+source test_tipc/test_train_inference_python.sh
+
+FILENAME=$1
+# MODE be one of ['whole_infer']
+MODE=$2
+
+dataline=$(awk 'NR==1, NR==17{print}' $FILENAME)
+
+# parser params
+IFS=$'\n'
+lines=(${dataline})
+
+model_name=$(func_parser_value "${lines[1]}")
+python=$(func_parser_value "${lines[2]}")
+
+infer_model_dir_list=$(func_parser_value "${lines[3]}")
+infer_export_list=$(func_parser_value "${lines[4]}")
+infer_is_quant=$(func_parser_value "${lines[5]}")
+# parser inference
+inference_py=$(func_parser_value "${lines[6]}")
+use_gpu_key=$(func_parser_key "${lines[7]}")
+use_gpu_list=$(func_parser_value "${lines[7]}")
+use_mkldnn_key=$(func_parser_key "${lines[8]}")
+use_mkldnn_list=$(func_parser_value "${lines[8]}")
+cpu_threads_key=$(func_parser_key "${lines[9]}")
+cpu_threads_list=$(func_parser_value "${lines[9]}")
+batch_size_key=$(func_parser_key "${lines[10]}")
+batch_size_list=$(func_parser_value "${lines[10]}")
+use_trt_key=$(func_parser_key "${lines[11]}")
+use_trt_list=$(func_parser_value "${lines[11]}")
+precision_key=$(func_parser_key "${lines[12]}")
+precision_list=$(func_parser_value "${lines[12]}")
+infer_model_key=$(func_parser_key "${lines[13]}")
+image_dir_key=$(func_parser_key "${lines[14]}")
+infer_img_dir=$(func_parser_value "${lines[14]}")
+save_log_key=$(func_parser_key "${lines[15]}")
+benchmark_key=$(func_parser_key "${lines[16]}")
+benchmark_value=$(func_parser_value "${lines[16]}")
+infer_key1=$(func_parser_key "${lines[17]}")
+infer_value1=$(func_parser_value "${lines[17]}")
+
+
+LOG_PATH="./test_tipc/output"
+mkdir -p ${LOG_PATH}
+status_log="${LOG_PATH}/results_python.log"
+
+
+if [ ${MODE} = "whole_infer" ]; then
+ GPUID=$3
+ if [ ${#GPUID} -le 0 ];then
+ env=" "
+ else
+ env="export CUDA_VISIBLE_DEVICES=${GPUID}"
+ fi
+ # set CUDA_VISIBLE_DEVICES
+ eval $env
+ export Count=0
+ IFS="|"
+ infer_run_exports=(${infer_export_list})
+ infer_quant_flag=(${infer_is_quant})
+ for infer_model in ${infer_model_dir_list[*]}; do
+ # run export
+ if [ ${infer_run_exports[Count]} != "null" ];then
+ save_infer_dir=$(dirname $infer_model)
+ set_export_weight=$(func_set_params "${export_weight}" "${infer_model}")
+ set_save_infer_key=$(func_set_params "${save_infer_key}" "${save_infer_dir}")
+ export_cmd="${python} ${infer_run_exports[Count]} ${set_export_weight} ${set_save_infer_key}"
+ echo ${infer_run_exports[Count]}
+ echo $export_cmd
+ eval $export_cmd
+ status_export=$?
+ status_check $status_export "${export_cmd}" "${status_log}"
+ else
+ save_infer_dir=${infer_model}
+ fi
+ #run inference
+ is_quant=${infer_quant_flag[Count]}
+ if [ ${MODE} = "klquant_infer" ]; then
+ is_quant="True"
+ fi
+ func_inference "${python}" "${inference_py}" "${save_infer_dir}" "${LOG_PATH}" "${infer_img_dir}" ${is_quant}
+ Count=$(($Count + 1))
+ done
+fi
+
diff --git a/test_tipc/test_lite_arm_cpp.sh b/test_tipc/test_lite_arm_cpp.sh
new file mode 100644
index 0000000000000000000000000000000000000000..c071a236bb7ea35b86b32bfc3b22e87a5aabbb93
--- /dev/null
+++ b/test_tipc/test_lite_arm_cpp.sh
@@ -0,0 +1,159 @@
+#!/bin/bash
+source ./common_func.sh
+export LD_LIBRARY_PATH=${PWD}:$LD_LIBRARY_PATH
+
+FILENAME=$1
+dataline=$(cat $FILENAME)
+# parser params
+IFS=$'\n'
+lines=(${dataline})
+
+# parser lite inference
+inference_cmd=$(func_parser_value "${lines[1]}")
+runtime_device=$(func_parser_value "${lines[2]}")
+det_model_list=$(func_parser_value "${lines[3]}")
+rec_model_list=$(func_parser_value "${lines[4]}")
+cls_model_list=$(func_parser_value "${lines[5]}")
+cpu_threads_list=$(func_parser_value "${lines[6]}")
+det_batch_size_list=$(func_parser_value "${lines[7]}")
+rec_batch_size_list=$(func_parser_value "${lines[8]}")
+infer_img_dir_list=$(func_parser_value "${lines[9]}")
+config_dir=$(func_parser_value "${lines[10]}")
+rec_dict_dir=$(func_parser_value "${lines[11]}")
+benchmark_value=$(func_parser_value "${lines[12]}")
+
+if [[ $inference_cmd =~ "det" ]]; then
+ lite_model_list=${det_lite_model_list}
+elif [[ $inference_cmd =~ "rec" ]]; then
+ lite_model_list=(${rec_lite_model_list[*]} ${cls_lite_model_list[*]})
+elif [[ $inference_cmd =~ "system" ]]; then
+ lite_model_list=(${det_lite_model_list[*]} ${rec_lite_model_list[*]} ${cls_lite_model_list[*]})
+else
+ echo "inference_cmd is wrong, please check."
+ exit 1
+fi
+
+LOG_PATH="./output"
+mkdir -p ${LOG_PATH}
+status_log="${LOG_PATH}/results.log"
+
+
+function func_test_det(){
+ IFS='|'
+ _script=$1
+ _det_model=$2
+ _log_path=$3
+ _img_dir=$4
+ _config=$5
+ if [[ $_det_model =~ "slim" ]]; then
+ precision="INT8"
+ else
+ precision="FP32"
+ fi
+
+ # lite inference
+ for num_threads in ${cpu_threads_list[*]}; do
+ for det_batchsize in ${det_batch_size_list[*]}; do
+ _save_log_path="${_log_path}/lite_${_det_model}_runtime_device_${runtime_device}_precision_${precision}_det_batchsize_${det_batchsize}_threads_${num_threads}.log"
+ command="${_script} ${_det_model} ${runtime_device} ${precision} ${num_threads} ${det_batchsize} ${_img_dir} ${_config} ${benchmark_value} > ${_save_log_path} 2>&1"
+ eval ${command}
+ status_check $? "${command}" "${status_log}"
+ done
+ done
+}
+
+function func_test_rec(){
+ IFS='|'
+ _script=$1
+ _rec_model=$2
+ _cls_model=$3
+ _log_path=$4
+ _img_dir=$5
+ _config=$6
+ _rec_dict_dir=$7
+
+ if [[ $_det_model =~ "slim" ]]; then
+ _precision="INT8"
+ else
+ _precision="FP32"
+ fi
+
+ # lite inference
+ for num_threads in ${cpu_threads_list[*]}; do
+ for rec_batchsize in ${rec_batch_size_list[*]}; do
+ _save_log_path="${_log_path}/lite_${_rec_model}_${cls_model}_runtime_device_${runtime_device}_precision_${_precision}_rec_batchsize_${rec_batchsize}_threads_${num_threads}.log"
+ command="${_script} ${_rec_model} ${_cls_model} ${runtime_device} ${_precision} ${num_threads} ${rec_batchsize} ${_img_dir} ${_config} ${_rec_dict_dir} ${benchmark_value} > ${_save_log_path} 2>&1"
+ eval ${command}
+ status_check $? "${command}" "${status_log}"
+ done
+ done
+}
+
+function func_test_system(){
+ IFS='|'
+ _script=$1
+ _det_model=$2
+ _rec_model=$3
+ _cls_model=$4
+ _log_path=$5
+ _img_dir=$6
+ _config=$7
+ _rec_dict_dir=$8
+ if [[ $_det_model =~ "slim" ]]; then
+ _precision="INT8"
+ else
+ _precision="FP32"
+ fi
+
+ # lite inference
+ for num_threads in ${cpu_threads_list[*]}; do
+ for det_batchsize in ${det_batch_size_list[*]}; do
+ for rec_batchsize in ${rec_batch_size_list[*]}; do
+ _save_log_path="${_log_path}/lite_${_det_model}_${_rec_model}_${_cls_model}_runtime_device_${runtime_device}_precision_${_precision}_det_batchsize_${det_batchsize}_rec_batchsize_${rec_batchsize}_threads_${num_threads}.log"
+ command="${_script} ${_det_model} ${_rec_model} ${_cls_model} ${runtime_device} ${_precision} ${num_threads} ${det_batchsize} ${_img_dir} ${_config} ${_rec_dict_dir} ${benchmark_value} > ${_save_log_path} 2>&1"
+ eval ${command}
+ status_check $? "${command}" "${status_log}"
+ done
+ done
+ done
+}
+
+
+echo "################### run test ###################"
+
+if [[ $inference_cmd =~ "det" ]]; then
+ IFS="|"
+ det_model_list=(${det_model_list[*]})
+
+ for i in {0..1}; do
+ #run lite inference
+ for img_dir in ${infer_img_dir_list[*]}; do
+ func_test_det "${inference_cmd}" "${det_model_list[i]}_opt.nb" "${LOG_PATH}" "${img_dir}" "${config_dir}"
+ done
+ done
+
+elif [[ $inference_cmd =~ "rec" ]]; then
+ IFS="|"
+ rec_model_list=(${rec_model_list[*]})
+ cls_model_list=(${cls_model_list[*]})
+
+ for i in {0..1}; do
+ #run lite inference
+ for img_dir in ${infer_img_dir_list[*]}; do
+ func_test_rec "${inference_cmd}" "${rec_model}_opt.nb" "${cls_model_list[i]}_opt.nb" "${LOG_PATH}" "${img_dir}" "${rec_dict_dir}" "${config_dir}"
+ done
+ done
+
+elif [[ $inference_cmd =~ "system" ]]; then
+ IFS="|"
+ det_model_list=(${det_model_list[*]})
+ rec_model_list=(${rec_model_list[*]})
+ cls_model_list=(${cls_model_list[*]})
+
+ for i in {0..1}; do
+ #run lite inference
+ for img_dir in ${infer_img_dir_list[*]}; do
+ func_test_system "${inference_cmd}" "${det_model_list[i]}_opt.nb" "${rec_model_list[i]}_opt.nb" "${cls_model_list[i]}_opt.nb" "${LOG_PATH}" "${img_dir}" "${config_dir}" "${rec_dict_dir}"
+ done
+ done
+fi
diff --git a/test_tipc/test_paddle2onnx.sh b/test_tipc/test_paddle2onnx.sh
new file mode 100644
index 0000000000000000000000000000000000000000..300c61770d2519fad0502147e2cee4a3e4f50ac9
--- /dev/null
+++ b/test_tipc/test_paddle2onnx.sh
@@ -0,0 +1,78 @@
+#!/bin/bash
+source test_tipc/common_func.sh
+
+FILENAME=$1
+
+dataline=$(cat ${FILENAME})
+lines=(${dataline})
+# common params
+model_name=$(func_parser_value "${lines[1]}")
+python=$(func_parser_value "${lines[2]}")
+
+
+# parser params
+dataline=$(awk 'NR==1, NR==12{print}' $FILENAME)
+IFS=$'\n'
+lines=(${dataline})
+
+# parser paddle2onnx
+model_name=$(func_parser_value "${lines[1]}")
+python=$(func_parser_value "${lines[2]}")
+padlle2onnx_cmd=$(func_parser_value "${lines[3]}")
+infer_model_dir_key=$(func_parser_key "${lines[4]}")
+infer_model_dir_value=$(func_parser_value "${lines[4]}")
+model_filename_key=$(func_parser_key "${lines[5]}")
+model_filename_value=$(func_parser_value "${lines[5]}")
+params_filename_key=$(func_parser_key "${lines[6]}")
+params_filename_value=$(func_parser_value "${lines[6]}")
+save_file_key=$(func_parser_key "${lines[7]}")
+save_file_value=$(func_parser_value "${lines[7]}")
+opset_version_key=$(func_parser_key "${lines[8]}")
+opset_version_value=$(func_parser_value "${lines[8]}")
+enable_onnx_checker_key=$(func_parser_key "${lines[9]}")
+enable_onnx_checker_value=$(func_parser_value "${lines[9]}")
+# parser onnx inference
+inference_py=$(func_parser_value "${lines[10]}")
+use_gpu_key=$(func_parser_key "${lines[11]}")
+use_gpu_value=$(func_parser_value "${lines[11]}")
+det_model_key=$(func_parser_key "${lines[12]}")
+image_dir_key=$(func_parser_key "${lines[13]}")
+image_dir_value=$(func_parser_value "${lines[13]}")
+
+
+LOG_PATH="./test_tipc/output"
+mkdir -p ./test_tipc/output
+status_log="${LOG_PATH}/results_paddle2onnx.log"
+
+
+function func_paddle2onnx(){
+ IFS='|'
+ _script=$1
+
+ # paddle2onnx
+ _save_log_path="${LOG_PATH}/paddle2onnx_infer_cpu.log"
+ set_dirname=$(func_set_params "${infer_model_dir_key}" "${infer_model_dir_value}")
+ set_model_filename=$(func_set_params "${model_filename_key}" "${model_filename_value}")
+ set_params_filename=$(func_set_params "${params_filename_key}" "${params_filename_value}")
+ set_save_model=$(func_set_params "${save_file_key}" "${save_file_value}")
+ set_opset_version=$(func_set_params "${opset_version_key}" "${opset_version_value}")
+ set_enable_onnx_checker=$(func_set_params "${enable_onnx_checker_key}" "${enable_onnx_checker_value}")
+ trans_model_cmd="${padlle2onnx_cmd} ${set_dirname} ${set_model_filename} ${set_params_filename} ${set_save_model} ${set_opset_version} ${set_enable_onnx_checker}"
+ eval $trans_model_cmd
+ last_status=${PIPESTATUS[0]}
+ status_check $last_status "${trans_model_cmd}" "${status_log}"
+ # python inference
+ set_gpu=$(func_set_params "${use_gpu_key}" "${use_gpu_value}")
+ set_model_dir=$(func_set_params "${det_model_key}" "${save_file_value}")
+ set_img_dir=$(func_set_params "${image_dir_key}" "${image_dir_value}")
+ infer_model_cmd="${python} ${inference_py} ${set_gpu} ${set_img_dir} ${set_model_dir} --use_onnx=True > ${_save_log_path} 2>&1 "
+ eval $infer_model_cmd
+ status_check $last_status "${infer_model_cmd}" "${status_log}"
+}
+
+
+echo "################### run test ###################"
+
+export Count=0
+IFS="|"
+func_paddle2onnx
\ No newline at end of file
diff --git a/test_tipc/test_serving.sh b/test_tipc/test_serving.sh
new file mode 100644
index 0000000000000000000000000000000000000000..c36935a60fecacea672fd932773a8fb0bdcd619b
--- /dev/null
+++ b/test_tipc/test_serving.sh
@@ -0,0 +1,168 @@
+#!/bin/bash
+source test_tipc/common_func.sh
+
+FILENAME=$1
+dataline=$(awk 'NR==1, NR==18{print}' $FILENAME)
+
+# parser params
+IFS=$'\n'
+lines=(${dataline})
+
+# parser serving
+model_name=$(func_parser_value "${lines[1]}")
+python=$(func_parser_value "${lines[2]}")
+trans_model_py=$(func_parser_value "${lines[3]}")
+infer_model_dir_key=$(func_parser_key "${lines[4]}")
+infer_model_dir_value=$(func_parser_value "${lines[4]}")
+model_filename_key=$(func_parser_key "${lines[5]}")
+model_filename_value=$(func_parser_value "${lines[5]}")
+params_filename_key=$(func_parser_key "${lines[6]}")
+params_filename_value=$(func_parser_value "${lines[6]}")
+serving_server_key=$(func_parser_key "${lines[7]}")
+serving_server_value=$(func_parser_value "${lines[7]}")
+serving_client_key=$(func_parser_key "${lines[8]}")
+serving_client_value=$(func_parser_value "${lines[8]}")
+serving_dir_value=$(func_parser_value "${lines[9]}")
+web_service_py=$(func_parser_value "${lines[10]}")
+web_use_gpu_key=$(func_parser_key "${lines[11]}")
+web_use_gpu_list=$(func_parser_value "${lines[11]}")
+web_use_mkldnn_key=$(func_parser_key "${lines[12]}")
+web_use_mkldnn_list=$(func_parser_value "${lines[12]}")
+web_cpu_threads_key=$(func_parser_key "${lines[13]}")
+web_cpu_threads_list=$(func_parser_value "${lines[13]}")
+web_use_trt_key=$(func_parser_key "${lines[14]}")
+web_use_trt_list=$(func_parser_value "${lines[14]}")
+web_precision_key=$(func_parser_key "${lines[15]}")
+web_precision_list=$(func_parser_value "${lines[15]}")
+pipeline_py=$(func_parser_value "${lines[16]}")
+image_dir_key=$(func_parser_key "${lines[17]}")
+image_dir_value=$(func_parser_value "${lines[17]}")
+
+LOG_PATH="../../test_tipc/output"
+mkdir -p ./test_tipc/output
+status_log="${LOG_PATH}/results_serving.log"
+
+function func_serving(){
+ IFS='|'
+ _python=$1
+ _script=$2
+ _model_dir=$3
+ # pdserving
+ set_dirname=$(func_set_params "${infer_model_dir_key}" "${infer_model_dir_value}")
+ set_model_filename=$(func_set_params "${model_filename_key}" "${model_filename_value}")
+ set_params_filename=$(func_set_params "${params_filename_key}" "${params_filename_value}")
+ set_serving_server=$(func_set_params "${serving_server_key}" "${serving_server_value}")
+ set_serving_client=$(func_set_params "${serving_client_key}" "${serving_client_value}")
+ set_image_dir=$(func_set_params "${image_dir_key}" "${image_dir_value}")
+ trans_model_cmd="${python} ${trans_model_py} ${set_dirname} ${set_model_filename} ${set_params_filename} ${set_serving_server} ${set_serving_client}"
+ eval $trans_model_cmd
+ cd ${serving_dir_value}
+ echo $PWD
+ unset https_proxy
+ unset http_proxy
+ for python in ${python[*]}; do
+ if [ ${python} = "cpp"]; then
+ for use_gpu in ${web_use_gpu_list[*]}; do
+ if [ ${use_gpu} = "null" ]; then
+ web_service_cpp_cmd="${python} -m paddle_serving_server.serve --model ppocr_det_mobile_2.0_serving/ ppocr_rec_mobile_2.0_serving/ --port 9293"
+ eval $web_service_cmd
+ sleep 2s
+ _save_log_path="${LOG_PATH}/server_infer_cpp_cpu_pipeline_usemkldnn_False_threads_4_batchsize_1.log"
+ pipeline_cmd="${python} ocr_cpp_client.py ppocr_det_mobile_2.0_client/ ppocr_rec_mobile_2.0_client/"
+ eval $pipeline_cmd
+ status_check $last_status "${pipeline_cmd}" "${status_log}"
+ sleep 2s
+ ps ux | grep -E 'web_service|pipeline' | awk '{print $2}' | xargs kill -s 9
+ else
+ web_service_cpp_cmd="${python} -m paddle_serving_server.serve --model ppocr_det_mobile_2.0_serving/ ppocr_rec_mobile_2.0_serving/ --port 9293 --gpu_id=0"
+ eval $web_service_cmd
+ sleep 2s
+ _save_log_path="${LOG_PATH}/server_infer_cpp_cpu_pipeline_usemkldnn_False_threads_4_batchsize_1.log"
+ pipeline_cmd="${python} ocr_cpp_client.py ppocr_det_mobile_2.0_client/ ppocr_rec_mobile_2.0_client/"
+ eval $pipeline_cmd
+ status_check $last_status "${pipeline_cmd}" "${status_log}"
+ sleep 2s
+ ps ux | grep -E 'web_service|pipeline' | awk '{print $2}' | xargs kill -s 9
+ fi
+ done
+ else
+ # python serving
+ for use_gpu in ${web_use_gpu_list[*]}; do
+ echo ${ues_gpu}
+ if [ ${use_gpu} = "null" ]; then
+ for use_mkldnn in ${web_use_mkldnn_list[*]}; do
+ if [ ${use_mkldnn} = "False" ]; then
+ continue
+ fi
+ for threads in ${web_cpu_threads_list[*]}; do
+ set_cpu_threads=$(func_set_params "${web_cpu_threads_key}" "${threads}")
+ web_service_cmd="${python} ${web_service_py} ${web_use_gpu_key}=${use_gpu} ${web_use_mkldnn_key}=${use_mkldnn} ${set_cpu_threads} &"
+ eval $web_service_cmd
+ sleep 2s
+ for pipeline in ${pipeline_py[*]}; do
+ _save_log_path="${LOG_PATH}/server_infer_cpu_${pipeline%_client*}_usemkldnn_${use_mkldnn}_threads_${threads}_batchsize_1.log"
+ pipeline_cmd="${python} ${pipeline} ${set_image_dir} > ${_save_log_path} 2>&1 "
+ eval $pipeline_cmd
+ last_status=${PIPESTATUS[0]}
+ eval "cat ${_save_log_path}"
+ status_check $last_status "${pipeline_cmd}" "${status_log}"
+ sleep 2s
+ done
+ ps ux | grep -E 'web_service|pipeline' | awk '{print $2}' | xargs kill -s 9
+ done
+ done
+ elif [ ${use_gpu} = "0" ]; then
+ for use_trt in ${web_use_trt_list[*]}; do
+ for precision in ${web_precision_list[*]}; do
+ if [[ ${_flag_quant} = "False" ]] && [[ ${precision} =~ "int8" ]]; then
+ continue
+ fi
+ if [[ ${precision} =~ "fp16" || ${precision} =~ "int8" ]] && [ ${use_trt} = "False" ]; then
+ continue
+ fi
+ if [[ ${use_trt} = "False" || ${precision} =~ "int8" ]] && [[ ${_flag_quant} = "True" ]]; then
+ continue
+ fi
+ set_tensorrt=$(func_set_params "${web_use_trt_key}" "${use_trt}")
+ set_precision=$(func_set_params "${web_precision_key}" "${precision}")
+ web_service_cmd="${python} ${web_service_py} ${web_use_gpu_key}=${use_gpu} ${set_tensorrt} ${set_precision} & "
+ eval $web_service_cmd
+
+ sleep 2s
+ for pipeline in ${pipeline_py[*]}; do
+ _save_log_path="${LOG_PATH}/server_infer_gpu_${pipeline%_client*}_usetrt_${use_trt}_precision_${precision}_batchsize_1.log"
+ pipeline_cmd="${python} ${pipeline} ${set_image_dir}> ${_save_log_path} 2>&1"
+ eval $pipeline_cmd
+ last_status=${PIPESTATUS[0]}
+ eval "cat ${_save_log_path}"
+ status_check $last_status "${pipeline_cmd}" "${status_log}"
+ sleep 2s
+ done
+ ps ux | grep -E 'web_service|pipeline' | awk '{print $2}' | xargs kill -s 9
+ done
+ done
+ else
+ echo "Does not support hardware other than CPU and GPU Currently!"
+ fi
+ done
+ fi
+ done
+}
+
+
+# set cuda device
+GPUID=$2
+if [ ${#GPUID} -le 0 ];then
+ env=" "
+else
+ env="export CUDA_VISIBLE_DEVICES=${GPUID}"
+fi
+set CUDA_VISIBLE_DEVICES
+eval $env
+
+
+echo "################### run test ###################"
+
+export Count=0
+IFS="|"
+func_serving "${web_service_cmd}"
diff --git a/test_tipc/test_train_inference_python.sh b/test_tipc/test_train_inference_python.sh
new file mode 100644
index 0000000000000000000000000000000000000000..7d035256527e01f31a4a1bc113caff3c744d859d
--- /dev/null
+++ b/test_tipc/test_train_inference_python.sh
@@ -0,0 +1,375 @@
+#!/bin/bash
+source test_tipc/common_func.sh
+
+FILENAME=$1
+# MODE be one of ['lite_train_lite_infer' 'lite_train_whole_infer' 'whole_train_whole_infer', 'whole_infer', 'klquant_whole_infer']
+MODE=$2
+
+dataline=$(awk 'NR==1, NR==51{print}' $FILENAME)
+
+# parser params
+IFS=$'\n'
+lines=(${dataline})
+
+# The training params
+model_name=$(func_parser_value "${lines[1]}")
+python=$(func_parser_value "${lines[2]}")
+gpu_list=$(func_parser_value "${lines[3]}")
+train_use_gpu_key=$(func_parser_key "${lines[4]}")
+train_use_gpu_value=$(func_parser_value "${lines[4]}")
+autocast_list=$(func_parser_value "${lines[5]}")
+autocast_key=$(func_parser_key "${lines[5]}")
+epoch_key=$(func_parser_key "${lines[6]}")
+epoch_num=$(func_parser_params "${lines[6]}" "${MODE}")
+save_model_key=$(func_parser_key "${lines[7]}")
+train_batch_key=$(func_parser_key "${lines[8]}")
+train_batch_value=$(func_parser_params "${lines[8]}" "${MODE}")
+pretrain_model_key=$(func_parser_key "${lines[9]}")
+pretrain_model_value=$(func_parser_value "${lines[9]}")
+train_model_name=$(func_parser_value "${lines[10]}")
+train_infer_img_dir=$(func_parser_value "${lines[11]}")
+train_param_key1=$(func_parser_key "${lines[12]}")
+train_param_value1=$(func_parser_value "${lines[12]}")
+
+trainer_list=$(func_parser_value "${lines[14]}")
+trainer_norm=$(func_parser_key "${lines[15]}")
+norm_trainer=$(func_parser_value "${lines[15]}")
+pact_key=$(func_parser_key "${lines[16]}")
+pact_trainer=$(func_parser_value "${lines[16]}")
+fpgm_key=$(func_parser_key "${lines[17]}")
+fpgm_trainer=$(func_parser_value "${lines[17]}")
+distill_key=$(func_parser_key "${lines[18]}")
+distill_trainer=$(func_parser_value "${lines[18]}")
+trainer_key1=$(func_parser_key "${lines[19]}")
+trainer_value1=$(func_parser_value "${lines[19]}")
+trainer_key2=$(func_parser_key "${lines[20]}")
+trainer_value2=$(func_parser_value "${lines[20]}")
+
+eval_py=$(func_parser_value "${lines[23]}")
+eval_key1=$(func_parser_key "${lines[24]}")
+eval_value1=$(func_parser_value "${lines[24]}")
+
+save_infer_key=$(func_parser_key "${lines[27]}")
+export_weight=$(func_parser_key "${lines[28]}")
+norm_export=$(func_parser_value "${lines[29]}")
+pact_export=$(func_parser_value "${lines[30]}")
+fpgm_export=$(func_parser_value "${lines[31]}")
+distill_export=$(func_parser_value "${lines[32]}")
+export_key1=$(func_parser_key "${lines[33]}")
+export_value1=$(func_parser_value "${lines[33]}")
+export_key2=$(func_parser_key "${lines[34]}")
+export_value2=$(func_parser_value "${lines[34]}")
+inference_dir=$(func_parser_value "${lines[35]}")
+
+# parser inference model
+infer_model_dir_list=$(func_parser_value "${lines[36]}")
+infer_export_list=$(func_parser_value "${lines[37]}")
+infer_is_quant=$(func_parser_value "${lines[38]}")
+# parser inference
+inference_py=$(func_parser_value "${lines[39]}")
+use_gpu_key=$(func_parser_key "${lines[40]}")
+use_gpu_list=$(func_parser_value "${lines[40]}")
+use_mkldnn_key=$(func_parser_key "${lines[41]}")
+use_mkldnn_list=$(func_parser_value "${lines[41]}")
+cpu_threads_key=$(func_parser_key "${lines[42]}")
+cpu_threads_list=$(func_parser_value "${lines[42]}")
+batch_size_key=$(func_parser_key "${lines[43]}")
+batch_size_list=$(func_parser_value "${lines[43]}")
+use_trt_key=$(func_parser_key "${lines[44]}")
+use_trt_list=$(func_parser_value "${lines[44]}")
+precision_key=$(func_parser_key "${lines[45]}")
+precision_list=$(func_parser_value "${lines[45]}")
+infer_model_key=$(func_parser_key "${lines[46]}")
+image_dir_key=$(func_parser_key "${lines[47]}")
+infer_img_dir=$(func_parser_value "${lines[47]}")
+save_log_key=$(func_parser_key "${lines[48]}")
+benchmark_key=$(func_parser_key "${lines[49]}")
+benchmark_value=$(func_parser_value "${lines[49]}")
+infer_key1=$(func_parser_key "${lines[50]}")
+infer_value1=$(func_parser_value "${lines[50]}")
+
+# parser klquant_infer
+if [ ${MODE} = "klquant_whole_infer" ]; then
+ dataline=$(awk 'NR==1 NR==17{print}' $FILENAME)
+ lines=(${dataline})
+ model_name=$(func_parser_value "${lines[1]}")
+ python=$(func_parser_value "${lines[2]}")
+ # parser inference model
+ infer_model_dir_list=$(func_parser_value "${lines[3]}")
+ infer_export_list=$(func_parser_value "${lines[4]}")
+ infer_is_quant=$(func_parser_value "${lines[5]}")
+ # parser inference
+ inference_py=$(func_parser_value "${lines[6]}")
+ use_gpu_key=$(func_parser_key "${lines[7]}")
+ use_gpu_list=$(func_parser_value "${lines[7]}")
+ use_mkldnn_key=$(func_parser_key "${lines[8]}")
+ use_mkldnn_list=$(func_parser_value "${lines[8]}")
+ cpu_threads_key=$(func_parser_key "${lines[9]}")
+ cpu_threads_list=$(func_parser_value "${lines[9]}")
+ batch_size_key=$(func_parser_key "${lines[10]}")
+ batch_size_list=$(func_parser_value "${lines[10]}")
+ use_trt_key=$(func_parser_key "${lines[11]}")
+ use_trt_list=$(func_parser_value "${lines[11]}")
+ precision_key=$(func_parser_key "${lines[12]}")
+ precision_list=$(func_parser_value "${lines[12]}")
+ infer_model_key=$(func_parser_key "${lines[13]}")
+ image_dir_key=$(func_parser_key "${lines[14]}")
+ infer_img_dir=$(func_parser_value "${lines[14]}")
+ save_log_key=$(func_parser_key "${lines[15]}")
+ benchmark_key=$(func_parser_key "${lines[16]}")
+ benchmark_value=$(func_parser_value "${lines[16]}")
+ infer_key1=$(func_parser_key "${lines[17]}")
+ infer_value1=$(func_parser_value "${lines[17]}")
+fi
+
+LOG_PATH="./test_tipc/output"
+mkdir -p ${LOG_PATH}
+status_log="${LOG_PATH}/results_python.log"
+
+
+function func_inference(){
+ IFS='|'
+ _python=$1
+ _script=$2
+ _model_dir=$3
+ _log_path=$4
+ _img_dir=$5
+ _flag_quant=$6
+ # inference
+ for use_gpu in ${use_gpu_list[*]}; do
+ if [ ${use_gpu} = "False" ] || [ ${use_gpu} = "cpu" ]; then
+ for use_mkldnn in ${use_mkldnn_list[*]}; do
+ if [ ${use_mkldnn} = "False" ] && [ ${_flag_quant} = "True" ]; then
+ continue
+ fi
+ for threads in ${cpu_threads_list[*]}; do
+ for batch_size in ${batch_size_list[*]}; do
+ for precision in ${precision_list[*]}; do
+ if [ ${use_mkldnn} = "False" ] && [ ${precision} = "fp16" ]; then
+ continue
+ fi # skip when enable fp16 but disable mkldnn
+ if [ ${_flag_quant} = "True" ] && [ ${precision} != "int8" ]; then
+ continue
+ fi # skip when quant model inference but precision is not int8
+ set_precision=$(func_set_params "${precision_key}" "${precision}")
+
+ _save_log_path="${_log_path}/python_infer_cpu_usemkldnn_${use_mkldnn}_threads_${threads}_precision_${precision}_batchsize_${batch_size}.log"
+ set_infer_data=$(func_set_params "${image_dir_key}" "${_img_dir}")
+ set_benchmark=$(func_set_params "${benchmark_key}" "${benchmark_value}")
+ set_batchsize=$(func_set_params "${batch_size_key}" "${batch_size}")
+ set_cpu_threads=$(func_set_params "${cpu_threads_key}" "${threads}")
+ set_model_dir=$(func_set_params "${infer_model_key}" "${_model_dir}")
+ set_infer_params1=$(func_set_params "${infer_key1}" "${infer_value1}")
+ command="${_python} ${_script} ${use_gpu_key}=${use_gpu} ${use_mkldnn_key}=${use_mkldnn} ${set_cpu_threads} ${set_model_dir} ${set_batchsize} ${set_infer_data} ${set_benchmark} ${set_precision} ${set_infer_params1} > ${_save_log_path} 2>&1 "
+ eval $command
+ last_status=${PIPESTATUS[0]}
+ eval "cat ${_save_log_path}"
+ status_check $last_status "${command}" "${status_log}"
+ done
+ done
+ done
+ done
+ elif [ ${use_gpu} = "True" ] || [ ${use_gpu} = "gpu" ]; then
+ for use_trt in ${use_trt_list[*]}; do
+ for precision in ${precision_list[*]}; do
+ if [[ ${_flag_quant} = "False" ]] && [[ ${precision} =~ "int8" ]]; then
+ continue
+ fi
+ if [[ ${precision} =~ "fp16" || ${precision} =~ "int8" ]] && [ ${use_trt} = "False" ]; then
+ continue
+ fi
+ if [[ ${use_trt} = "False" || ${precision} =~ "int8" ]] && [ ${_flag_quant} = "True" ]; then
+ continue
+ fi
+ for batch_size in ${batch_size_list[*]}; do
+ _save_log_path="${_log_path}/python_infer_gpu_usetrt_${use_trt}_precision_${precision}_batchsize_${batch_size}.log"
+ set_infer_data=$(func_set_params "${image_dir_key}" "${_img_dir}")
+ set_benchmark=$(func_set_params "${benchmark_key}" "${benchmark_value}")
+ set_batchsize=$(func_set_params "${batch_size_key}" "${batch_size}")
+ set_tensorrt=$(func_set_params "${use_trt_key}" "${use_trt}")
+ set_precision=$(func_set_params "${precision_key}" "${precision}")
+ set_model_dir=$(func_set_params "${infer_model_key}" "${_model_dir}")
+ set_infer_params1=$(func_set_params "${infer_key1}" "${infer_value1}")
+ command="${_python} ${_script} ${use_gpu_key}=${use_gpu} ${set_tensorrt} ${set_precision} ${set_model_dir} ${set_batchsize} ${set_infer_data} ${set_benchmark} ${set_infer_params1} > ${_save_log_path} 2>&1 "
+ eval $command
+ last_status=${PIPESTATUS[0]}
+ eval "cat ${_save_log_path}"
+ status_check $last_status "${command}" "${status_log}"
+
+ done
+ done
+ done
+ else
+ echo "Does not support hardware other than CPU and GPU Currently!"
+ fi
+ done
+}
+
+if [ ${MODE} = "whole_infer" ] || [ ${MODE} = "klquant_whole_infer" ]; then
+ GPUID=$3
+ if [ ${#GPUID} -le 0 ];then
+ env=" "
+ else
+ env="export CUDA_VISIBLE_DEVICES=${GPUID}"
+ fi
+ # set CUDA_VISIBLE_DEVICES
+ eval $env
+ export Count=0
+ IFS="|"
+ infer_run_exports=(${infer_export_list})
+ infer_quant_flag=(${infer_is_quant})
+ for infer_model in ${infer_model_dir_list[*]}; do
+ # run export
+ if [ ${infer_run_exports[Count]} != "null" ];then
+ save_infer_dir=$(dirname $infer_model)
+ set_export_weight=$(func_set_params "${export_weight}" "${infer_model}")
+ set_save_infer_key=$(func_set_params "${save_infer_key}" "${save_infer_dir}")
+ export_cmd="${python} ${infer_run_exports[Count]} ${set_export_weight} ${set_save_infer_key}"
+ echo ${infer_run_exports[Count]}
+ echo $export_cmd
+ eval $export_cmd
+ status_export=$?
+ status_check $status_export "${export_cmd}" "${status_log}"
+ else
+ save_infer_dir=${infer_model}
+ fi
+ #run inference
+ is_quant=${infer_quant_flag[Count]}
+ if [ ${MODE} = "klquant_infer" ]; then
+ is_quant="True"
+ fi
+ func_inference "${python}" "${inference_py}" "${save_infer_dir}" "${LOG_PATH}" "${infer_img_dir}" ${is_quant}
+ Count=$(($Count + 1))
+ done
+else
+ IFS="|"
+ export Count=0
+ USE_GPU_KEY=(${train_use_gpu_value})
+ for gpu in ${gpu_list[*]}; do
+ train_use_gpu=${USE_GPU_KEY[Count]}
+ Count=$(($Count + 1))
+ ips=""
+ if [ ${gpu} = "-1" ];then
+ env=""
+ elif [ ${#gpu} -le 1 ];then
+ env="export CUDA_VISIBLE_DEVICES=${gpu}"
+ eval ${env}
+ elif [ ${#gpu} -le 15 ];then
+ IFS=","
+ array=(${gpu})
+ env="export CUDA_VISIBLE_DEVICES=${array[0]}"
+ IFS="|"
+ else
+ IFS=";"
+ array=(${gpu})
+ ips=${array[0]}
+ gpu=${array[1]}
+ IFS="|"
+ env=" "
+ fi
+ for autocast in ${autocast_list[*]}; do
+ if [ ${autocast} = "amp" ]; then
+ set_amp_config="Global.use_amp=True Global.scale_loss=1024.0 Global.use_dynamic_loss_scaling=True"
+ else
+ set_amp_config=" "
+ fi
+ for trainer in ${trainer_list[*]}; do
+ flag_quant=False
+ if [ ${trainer} = ${pact_key} ]; then
+ run_train=${pact_trainer}
+ run_export=${pact_export}
+ flag_quant=True
+ elif [ ${trainer} = "${fpgm_key}" ]; then
+ run_train=${fpgm_trainer}
+ run_export=${fpgm_export}
+ elif [ ${trainer} = "${distill_key}" ]; then
+ run_train=${distill_trainer}
+ run_export=${distill_export}
+ elif [ ${trainer} = ${trainer_key1} ]; then
+ run_train=${trainer_value1}
+ run_export=${export_value1}
+ elif [[ ${trainer} = ${trainer_key2} ]]; then
+ run_train=${trainer_value2}
+ run_export=${export_value2}
+ else
+ run_train=${norm_trainer}
+ run_export=${norm_export}
+ fi
+
+ if [ ${run_train} = "null" ]; then
+ continue
+ fi
+ set_autocast=$(func_set_params "${autocast_key}" "${autocast}")
+ set_epoch=$(func_set_params "${epoch_key}" "${epoch_num}")
+ set_pretrain=$(func_set_params "${pretrain_model_key}" "${pretrain_model_value}")
+ set_batchsize=$(func_set_params "${train_batch_key}" "${train_batch_value}")
+ set_train_params1=$(func_set_params "${train_param_key1}" "${train_param_value1}")
+ set_use_gpu=$(func_set_params "${train_use_gpu_key}" "${train_use_gpu}")
+ if [ ${#ips} -le 26 ];then
+ save_log="${LOG_PATH}/${trainer}_gpus_${gpu}_autocast_${autocast}"
+ nodes=1
+ else
+ IFS=","
+ ips_array=(${ips})
+ IFS="|"
+ nodes=${#ips_array[@]}
+ save_log="${LOG_PATH}/${trainer}_gpus_${gpu}_autocast_${autocast}_nodes_${nodes}"
+ fi
+
+ # load pretrain from norm training if current trainer is pact or fpgm trainer
+ if ([ ${trainer} = ${pact_key} ] || [ ${trainer} = ${fpgm_key} ]) && [ ${nodes} -le 1 ]; then
+ set_pretrain="${load_norm_train_model}"
+ fi
+
+ set_save_model=$(func_set_params "${save_model_key}" "${save_log}")
+ if [ ${#gpu} -le 2 ];then # train with cpu or single gpu
+ cmd="${python} ${run_train} ${set_use_gpu} ${set_save_model} ${set_epoch} ${set_pretrain} ${set_autocast} ${set_batchsize} ${set_train_params1} ${set_amp_config} "
+ elif [ ${#ips} -le 26 ];then # train with multi-gpu
+ cmd="${python} -m paddle.distributed.launch --gpus=${gpu} ${run_train} ${set_use_gpu} ${set_save_model} ${set_epoch} ${set_pretrain} ${set_autocast} ${set_batchsize} ${set_train_params1} ${set_amp_config}"
+ else # train with multi-machine
+ cmd="${python} -m paddle.distributed.launch --ips=${ips} --gpus=${gpu} ${run_train} ${set_use_gpu} ${set_save_model} ${set_pretrain} ${set_epoch} ${set_autocast} ${set_batchsize} ${set_train_params1} ${set_amp_config}"
+ fi
+ # run train
+ eval "unset CUDA_VISIBLE_DEVICES"
+ eval $cmd
+ status_check $? "${cmd}" "${status_log}"
+
+ set_eval_pretrain=$(func_set_params "${pretrain_model_key}" "${save_log}/${train_model_name}")
+ # save norm trained models to set pretrain for pact training and fpgm training
+ if [ ${trainer} = ${trainer_norm} ] && [ ${nodes} -le 1 ]; then
+ load_norm_train_model=${set_eval_pretrain}
+ fi
+ # run eval
+ if [ ${eval_py} != "null" ]; then
+ set_eval_params1=$(func_set_params "${eval_key1}" "${eval_value1}")
+ eval_cmd="${python} ${eval_py} ${set_eval_pretrain} ${set_use_gpu} ${set_eval_params1}"
+ eval $eval_cmd
+ status_check $? "${eval_cmd}" "${status_log}"
+ fi
+ # run export model
+ if [ ${run_export} != "null" ]; then
+ # run export model
+ save_infer_path="${save_log}"
+ set_export_weight=$(func_set_params "${export_weight}" "${save_log}/${train_model_name}")
+ set_save_infer_key=$(func_set_params "${save_infer_key}" "${save_infer_path}")
+ export_cmd="${python} ${run_export} ${set_export_weight} ${set_save_infer_key}"
+ eval $export_cmd
+ status_check $? "${export_cmd}" "${status_log}"
+
+ #run inference
+ eval $env
+ save_infer_path="${save_log}"
+ if [[ ${inference_dir} != "null" ]] && [[ ${inference_dir} != '##' ]]; then
+ infer_model_dir="${save_infer_path}/${inference_dir}"
+ else
+ infer_model_dir=${save_infer_path}
+ fi
+ func_inference "${python}" "${inference_py}" "${infer_model_dir}" "${LOG_PATH}" "${train_infer_img_dir}" "${flag_quant}"
+
+ eval "unset CUDA_VISIBLE_DEVICES"
+ fi
+ done # done with: for trainer in ${trainer_list[*]}; do
+ done # done with: for autocast in ${autocast_list[*]}; do
+ done # done with: for gpu in ${gpu_list[*]}; do
+fi # end if [ ${MODE} = "infer" ]; then
+
diff --git a/tests/ocr_ppocr_mobile_params.txt b/tests/ocr_ppocr_mobile_params.txt
deleted file mode 100644
index bb6e0960a77c946e7d452c1026368682be0c4579..0000000000000000000000000000000000000000
--- a/tests/ocr_ppocr_mobile_params.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-===========================train_params===========================
-model_name:ocr_system_mobile
-python:python3.7
-gpu_list:null
-Global.use_gpu:null
-Global.auto_cast:null
-Global.epoch_num:null
-Global.save_model_dir:./output/
-Train.loader.batch_size_per_card:null
-Global.pretrained_model:null
-train_model_name:null
-train_infer_img_dir:null
-null:null
-##
-trainer:
-norm_train:null
-pact_train:null
-fpgm_train:null
-distill_train:null
-null:null
-null:null
-##
-===========================eval_params===========================
-eval:null
-null:null
-##
-===========================infer_params===========================
-Global.save_inference_dir:./output/
-Global.pretrained_model:
-norm_export:null
-quant_export:null
-fpgm_export:null
-distill_export:null
-export1:null
-export2:null
-##
-infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
-infer_export:null
-infer_quant:False
-inference:tools/infer/predict_system.py
---use_gpu:True
---enable_mkldnn:True|False
---cpu_threads:1|6
---rec_batch_num:1
---use_tensorrt:False|True
---precision:fp32|fp16|int8
---det_model_dir:
---image_dir:./inference/ch_det_data_50/all-sum-510/
---save_log_path:null
---benchmark:True
---rec_model_dir:./inference/ch_ppocr_mobile_v2.0_rec_infer/
-===========================cpp_infer_params===========================
-use_opencv:True
-infer_model:./inference/ch_ppocr_mobile_v2.0_det_infer/
-infer_quant:False
-inference:./deploy/cpp_infer/build/ppocr system
---use_gpu:True|False
---enable_mkldnn:True|False
---cpu_threads:1|6
---rec_batch_num:1
---use_tensorrt:False|True
---precision:fp32|fp16
---det_model_dir:
---image_dir:./inference/ch_det_data_50/all-sum-510/
---rec_model_dir:./inference/ch_ppocr_mobile_v2.0_rec_infer/
---benchmark:True
-
diff --git a/tests/ocr_ppocr_server_params.txt b/tests/ocr_ppocr_server_params.txt
deleted file mode 100644
index 9c49f7ddf43dbca2562bb206d92e5aeb84e703aa..0000000000000000000000000000000000000000
--- a/tests/ocr_ppocr_server_params.txt
+++ /dev/null
@@ -1,66 +0,0 @@
-===========================train_params===========================
-model_name:ocr_system_server
-python:python3.7
-gpu_list:null
-Global.use_gpu:null
-Global.auto_cast:null
-Global.epoch_num:null
-Global.save_model_dir:./output/
-Train.loader.batch_size_per_card:null
-Global.pretrained_model:null
-train_model_name:null
-train_infer_img_dir:null
-null:null
-##
-trainer:
-norm_train:null
-pact_train:null
-fpgm_train:null
-distill_train:null
-null:null
-null:null
-##
-===========================eval_params===========================
-eval:null
-null:null
-##
-===========================infer_params===========================
-Global.save_inference_dir:./output/
-Global.pretrained_model:
-norm_export:null
-quant_export:null
-fpgm_export:null
-distill_export:null
-export1:null
-export2:null
-##
-infer_model:./inference/ch_ppocr_server_v2.0_det_infer/
-infer_export:null
-infer_quant:False
-inference:tools/infer/predict_system.py
---use_gpu:True
---enable_mkldnn:True|False
---cpu_threads:1|6
---rec_batch_num:1
---use_tensorrt:False|True
---precision:fp32|fp16|int8
---det_model_dir:
---image_dir:./inference/ch_det_data_50/all-sum-510/
---save_log_path:null
---benchmark:True
---rec_model_dir:./inference/ch_ppocr_server_v2.0_rec_infer/
-===========================cpp_infer_params===========================
-use_opencv:True
-infer_model:./inference/ch_ppocr_server_v2.0_det_infer/
-infer_quant:False
-inference:./deploy/cpp_infer/build/ppocr system
---use_gpu:True|False
---enable_mkldnn:True|False
---cpu_threads:1|6
---rec_batch_num:1
---use_tensorrt:False|True
---precision:fp32|fp16
---det_model_dir:
---image_dir:./inference/ch_det_data_50/all-sum-510/
---rec_model_dir:./inference/ch_ppocr_server_v2.0_rec_infer/
---benchmark:True
\ No newline at end of file
diff --git a/tests/ocr_rec_params.txt b/tests/ocr_rec_params.txt
deleted file mode 100644
index f9c407897269d4729b9cab7313c45fe69712c62d..0000000000000000000000000000000000000000
--- a/tests/ocr_rec_params.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-===========================train_params===========================
-model_name:ocr_rec
-python:python3.7
-gpu_list:0|0,1
-Global.use_gpu:True|True
-Global.auto_cast:null
-Global.epoch_num:lite_train_infer=2|whole_train_infer=300
-Global.save_model_dir:./output/
-Train.loader.batch_size_per_card:lite_train_infer=128|whole_train_infer=128
-Global.pretrained_model:null
-train_model_name:latest
-train_infer_img_dir:./inference/rec_inference
-null:null
-##
-trainer:norm_train|pact_train
-norm_train:tools/train.py -c configs/rec/rec_icdar15_train.yml -o
-pact_train:deploy/slim/quantization/quant.py -c configs/rec/rec_icdar15_train.yml -o
-fpgm_train:null
-distill_train:null
-null:null
-null:null
-##
-===========================eval_params===========================
-eval:tools/eval.py -c configs/rec/rec_icdar15_train.yml -o
-null:null
-##
-===========================infer_params===========================
-Global.save_inference_dir:./output/
-Global.pretrained_model:
-norm_export:tools/export_model.py -c configs/rec/rec_icdar15_train.yml -o
-quant_export:deploy/slim/quantization/export_model.py -c configs/rec/rec_icdar15_train.yml -o
-fpgm_export:null
-distill_export:null
-export1:null
-export2:null
-##
-infer_model:./inference/ch_ppocr_mobile_v2.0_rec_infer/
-infer_export:null
-infer_quant:False
-inference:tools/infer/predict_rec.py
---use_gpu:True|False
---enable_mkldnn:True|False
---cpu_threads:1|6
---rec_batch_num:1|6
---use_tensorrt:True|False
---precision:fp32|fp16|int8
---rec_model_dir:
---image_dir:./inference/rec_inference
---save_log_path:./test/output/
---benchmark:True
-null:null
-===========================cpp_infer_params===========================
-use_opencv:True
-infer_model:./inference/ch_ppocr_mobile_v2.0_rec_infer/
-infer_quant:False
-inference:./deploy/cpp_infer/build/ppocr rec
---use_gpu:True|False
---enable_mkldnn:True|False
---cpu_threads:1|6
---rec_batch_num:1
---use_tensorrt:False|True
---precision:fp32|fp16
---rec_model_dir:
---image_dir:./inference/rec_inference/
-null:null
---benchmark:True
-===========================serving_params===========================
-trans_model:-m paddle_serving_client.convert
---dirname:./inference/ch_ppocr_mobile_v2.0_rec_infer/
---model_filename:inference.pdmodel
---params_filename:inference.pdiparams
---serving_server:./deploy/pdserving/ppocr_rec_mobile_2.0_serving/
---serving_client:./deploy/pdserving/ppocr_rec_mobile_2.0_client/
-serving_dir:./deploy/pdserving
-web_service:web_service_rec.py --config=config.yml --opt op.rec.concurrency=1
-op.rec.local_service_conf.devices:null|0
-op.rec.local_service_conf.use_mkldnn:True|False
-op.rec.local_service_conf.thread_num:1|6
-op.rec.local_service_conf.use_trt:False|True
-op.rec.local_service_conf.precision:fp32|fp16|int8
-pipline:pipeline_http_client.py --image_dir=../../doc/imgs_words_en
\ No newline at end of file
diff --git a/tests/ocr_rec_server_params.txt b/tests/ocr_rec_server_params.txt
deleted file mode 100644
index 7d151fcf0b793bd0bf63ac925c9ef3cf0ff56557..0000000000000000000000000000000000000000
--- a/tests/ocr_rec_server_params.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-===========================train_params===========================
-model_name:ocr_server_rec
-python:python3.7
-gpu_list:0|0,1
-Global.use_gpu:True|True
-Global.auto_cast:null
-Global.epoch_num:lite_train_infer=2|whole_train_infer=300
-Global.save_model_dir:./output/
-Train.loader.batch_size_per_card:lite_train_infer=128|whole_train_infer=128
-Global.pretrained_model:null
-train_model_name:latest
-train_infer_img_dir:./inference/rec_inference
-null:null
-##
-trainer:norm_train|pact_train
-norm_train:tools/train.py -c tests/configs/rec_icdar15_r34_train.yml -o
-pact_train:deploy/slim/quantization/quant.py -c tests/configs/rec_icdar15_r34_train.yml -o
-fpgm_train:null
-distill_train:null
-null:null
-null:null
-##
-===========================eval_params===========================
-eval:tools/eval.py -c tests/configs/rec_icdar15_r34_train.yml -o
-null:null
-##
-===========================infer_params===========================
-Global.save_inference_dir:./output/
-Global.pretrained_model:
-norm_export:tools/export_model.py -c tests/configs/rec_icdar15_r34_train.yml -o
-quant_export:deploy/slim/quantization/export_model.py -c tests/configs/rec_icdar15_r34_train.yml -o
-fpgm_export:null
-distill_export:null
-export1:null
-export2:null
-##
-infer_model:./inference/ch_ppocr_server_v2.0_rec_infer/
-infer_export:null
-infer_quant:False
-inference:tools/infer/predict_rec.py
---use_gpu:True|False
---enable_mkldnn:True|False
---cpu_threads:1|6
---rec_batch_num:1|6
---use_tensorrt:True|False
---precision:fp32|fp16|int8
---rec_model_dir:
---image_dir:./inference/rec_inference
---save_log_path:./test/output/
---benchmark:True
-null:null
-===========================cpp_infer_params===========================
-use_opencv:True
-infer_model:./inference/ch_ppocr_server_v2.0_rec_infer/
-infer_quant:False
-inference:./deploy/cpp_infer/build/ppocr rec
---use_gpu:True|False
---enable_mkldnn:True|False
---cpu_threads:1|6
---rec_batch_num:1
---use_tensorrt:False|True
---precision:fp32|fp16
---rec_model_dir:
---image_dir:./inference/rec_inference/
-null:null
---benchmark:True
-===========================serving_params===========================
-trans_model:-m paddle_serving_client.convert
---dirname:./inference/ch_ppocr_server_v2.0_rec_infer/
---model_filename:inference.pdmodel
---params_filename:inference.pdiparams
---serving_server:./deploy/pdserving/ppocr_rec_server_2.0_serving/
---serving_client:./deploy/pdserving/ppocr_rec_server_2.0_client/
-serving_dir:./deploy/pdserving
-web_service:web_service_rec.py --config=config.yml --opt op.rec.concurrency=1
-op.rec.local_service_conf.devices:null|0
-op.rec.local_service_conf.use_mkldnn:True|False
-op.rec.local_service_conf.thread_num:1|6
-op.rec.local_service_conf.use_trt:False|True
-op.rec.local_service_conf.precision:fp32|fp16|int8
-pipline:pipeline_http_client.py --image_dir=../../doc/imgs_words_en
\ No newline at end of file
diff --git a/tests/prepare.sh b/tests/prepare.sh
deleted file mode 100644
index ef021fa385f16ae5c9c996bfcb607f73b4129f49..0000000000000000000000000000000000000000
--- a/tests/prepare.sh
+++ /dev/null
@@ -1,204 +0,0 @@
-#!/bin/bash
-FILENAME=$1
-
-# MODE be one of ['lite_train_infer' 'whole_infer' 'whole_train_infer', 'infer', 'cpp_infer', 'serving_infer']
-MODE=$2
-
-dataline=$(cat ${FILENAME})
-
-# parser params
-IFS=$'\n'
-lines=(${dataline})
-function func_parser_key(){
- strs=$1
- IFS=":"
- array=(${strs})
- tmp=${array[0]}
- echo ${tmp}
-}
-function func_parser_value(){
- strs=$1
- IFS=":"
- array=(${strs})
- tmp=${array[1]}
- echo ${tmp}
-}
-IFS=$'\n'
-# The training params
-model_name=$(func_parser_value "${lines[1]}")
-
-trainer_list=$(func_parser_value "${lines[14]}")
-
-# MODE be one of ['lite_train_infer' 'whole_infer' 'whole_train_infer']
-MODE=$2
-
-if [ ${MODE} = "lite_train_infer" ];then
- # pretrain lite train data
- wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/MobileNetV3_large_x0_5_pretrained.pdparams
- wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar
- cd ./pretrain_models/ && tar xf det_mv3_db_v2.0_train.tar && cd ../
- rm -rf ./train_data/icdar2015
- rm -rf ./train_data/ic15_data
- wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015_lite.tar
- wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ic15_data.tar # todo change to bcebos
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar
- wget -nc -P ./deploy/slim/prune https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/sen.pickle
-
- cd ./train_data/ && tar xf icdar2015_lite.tar && tar xf ic15_data.tar
- ln -s ./icdar2015_lite ./icdar2015
- cd ../
- cd ./inference && tar xf rec_inference.tar && cd ../
-elif [ ${MODE} = "whole_train_infer" ];then
- wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/MobileNetV3_large_x0_5_pretrained.pdparams
- rm -rf ./train_data/icdar2015
- rm -rf ./train_data/ic15_data
- wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar
- wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ic15_data.tar
- cd ./train_data/ && tar xf icdar2015.tar && tar xf ic15_data.tar && cd ../
-elif [ ${MODE} = "whole_infer" ];then
- wget -nc -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/MobileNetV3_large_x0_5_pretrained.pdparams
- rm -rf ./train_data/icdar2015
- rm -rf ./train_data/ic15_data
- wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015_infer.tar
- wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ic15_data.tar
- cd ./train_data/ && tar xf icdar2015_infer.tar && tar xf ic15_data.tar
- ln -s ./icdar2015_infer ./icdar2015
- cd ../
-elif [ ${MODE} = "infer" ];then
- if [ ${model_name} = "ocr_det" ]; then
- eval_model_name="ch_ppocr_mobile_v2.0_det_train"
- rm -rf ./train_data/icdar2015
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar
- cd ./inference && tar xf ${eval_model_name}.tar && tar xf ch_det_data_50.tar && cd ../
- elif [ ${model_name} = "ocr_server_det" ]; then
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
- cd ./inference && tar xf ch_ppocr_server_v2.0_det_infer.tar && tar xf ch_det_data_50.tar && cd ../
- elif [ ${model_name} = "ocr_system_mobile" ]; then
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
- cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf ch_det_data_50.tar && cd ../
- elif [ ${model_name} = "ocr_system_server" ]; then
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar
- cd ./inference && tar xf ch_ppocr_server_v2.0_det_infer.tar && tar xf ch_ppocr_server_v2.0_rec_infer.tar && tar xf ch_det_data_50.tar && cd ../
- elif [ ${model_name} = "ocr_rec" ]; then
- rm -rf ./train_data/ic15_data
- eval_model_name="ch_ppocr_mobile_v2.0_rec_infer"
- wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
- cd ./inference && tar xf ${eval_model_name}.tar && tar xf rec_inference.tar && cd ../
- elif [ ${model_name} = "ocr_server_rec" ]; then
- rm -rf ./train_data/ic15_data
- eval_model_name="ch_ppocr_server_v2.0_rec_infer"
- wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar
- cd ./inference && tar xf ${eval_model_name}.tar && tar xf rec_inference.tar && cd ../
- fi
-elif [ ${MODE} = "cpp_infer" ];then
- if [ ${model_name} = "ocr_det" ]; then
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar
- cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_det_data_50.tar && cd ../
- elif [ ${model_name} = "ocr_rec" ]; then
- wget -nc -P ./inference/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/rec_inference.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
- cd ./inference && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf rec_inference.tar && cd ../
- elif [ ${model_name} = "ocr_system" ]; then
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
- cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf ch_det_data_50.tar && cd ../
- fi
-fi
-
-if [ ${MODE} = "serving_infer" ];then
- # prepare serving env
- python_name=$(func_parser_value "${lines[2]}")
- wget https://paddle-serving.bj.bcebos.com/chain/paddle_serving_server_gpu-0.0.0.post101-py3-none-any.whl
- ${python_name} -m pip install install paddle_serving_server_gpu-0.0.0.post101-py3-none-any.whl
- ${python_name} -m pip install paddle_serving_client==0.6.1
- ${python_name} -m pip install paddle-serving-app==0.6.3
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar
- wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar
- cd ./inference && tar xf ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf ch_ppocr_server_v2.0_rec_infer.tar && tar xf ch_ppocr_server_v2.0_det_infer.tar cd ../
-fi
-
-if [ ${MODE} = "cpp_infer" ];then
- cd deploy/cpp_infer
- use_opencv=$(func_parser_value "${lines[52]}")
- if [ ${use_opencv} = "True" ]; then
- if [ -d "opencv-3.4.7/opencv3/" ] && [ $(md5sum opencv-3.4.7.tar.gz | awk -F ' ' '{print $1}') = "faa2b5950f8bee3f03118e600c74746a" ];then
- echo "################### build opencv skipped ###################"
- else
- echo "################### build opencv ###################"
- rm -rf opencv-3.4.7.tar.gz opencv-3.4.7/
- wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/opencv-3.4.7.tar.gz
- tar -xf opencv-3.4.7.tar.gz
-
- cd opencv-3.4.7/
- install_path=$(pwd)/opencv3
-
- rm -rf build
- mkdir build
- cd build
-
- cmake .. \
- -DCMAKE_INSTALL_PREFIX=${install_path} \
- -DCMAKE_BUILD_TYPE=Release \
- -DBUILD_SHARED_LIBS=OFF \
- -DWITH_IPP=OFF \
- -DBUILD_IPP_IW=OFF \
- -DWITH_LAPACK=OFF \
- -DWITH_EIGEN=OFF \
- -DCMAKE_INSTALL_LIBDIR=lib64 \
- -DWITH_ZLIB=ON \
- -DBUILD_ZLIB=ON \
- -DWITH_JPEG=ON \
- -DBUILD_JPEG=ON \
- -DWITH_PNG=ON \
- -DBUILD_PNG=ON \
- -DWITH_TIFF=ON \
- -DBUILD_TIFF=ON
-
- make -j
- make install
- cd ../
- echo "################### build opencv finished ###################"
- fi
- fi
-
-
- echo "################### build PaddleOCR demo ####################"
- if [ ${use_opencv} = "True" ]; then
- OPENCV_DIR=$(pwd)/opencv-3.4.7/opencv3/
- else
- OPENCV_DIR=''
- fi
- LIB_DIR=$(pwd)/Paddle/build/paddle_inference_install_dir/
- CUDA_LIB_DIR=$(dirname `find /usr -name libcudart.so`)
- CUDNN_LIB_DIR=$(dirname `find /usr -name libcudnn.so`)
-
- BUILD_DIR=build
- rm -rf ${BUILD_DIR}
- mkdir ${BUILD_DIR}
- cd ${BUILD_DIR}
- cmake .. \
- -DPADDLE_LIB=${LIB_DIR} \
- -DWITH_MKL=ON \
- -DWITH_GPU=OFF \
- -DWITH_STATIC_LIB=OFF \
- -DWITH_TENSORRT=OFF \
- -DOPENCV_DIR=${OPENCV_DIR} \
- -DCUDNN_LIB=${CUDNN_LIB_DIR} \
- -DCUDA_LIB=${CUDA_LIB_DIR} \
- -DTENSORRT_DIR=${TENSORRT_DIR} \
-
- make -j
- echo "################### build PaddleOCR demo finished ###################"
-fi
diff --git a/tests/readme.md b/tests/readme.md
deleted file mode 100644
index 127eef9fe34de37f5dfa608b3ed9903f2b826fa0..0000000000000000000000000000000000000000
--- a/tests/readme.md
+++ /dev/null
@@ -1,72 +0,0 @@
-
-# 从训练到推理部署工具链测试方法介绍
-
-test.sh和params.txt文件配合使用,完成OCR轻量检测和识别模型从训练到预测的流程测试。
-
-# 安装依赖
-- 安装PaddlePaddle >= 2.0
-- 安装PaddleOCR依赖
- ```
- pip3 install -r ../requirements.txt
- ```
-- 安装autolog
- ```
- git clone https://github.com/LDOUBLEV/AutoLog
- cd AutoLog
- pip3 install -r requirements.txt
- python3 setup.py bdist_wheel
- pip3 install ./dist/auto_log-1.0.0-py3-none-any.whl
- cd ../
- ```
-
-# 目录介绍
-
-```bash
-tests/
-├── ocr_det_params.txt # 测试OCR检测模型的参数配置文件
-├── ocr_rec_params.txt # 测试OCR识别模型的参数配置文件
-├── ocr_ppocr_mobile_params.txt # 测试OCR检测+识别模型串联的参数配置文件
-└── prepare.sh # 完成test.sh运行所需要的数据和模型下载
-└── test.sh # 测试主程序
-```
-
-# 使用方法
-
-test.sh包含四种运行模式,每种模式的运行数据不同,分别用于测试速度和精度,分别是:
-
-- 模式1:lite_train_infer,使用少量数据训练,用于快速验证训练到预测的走通流程,不验证精度和速度;
-```shell
-bash tests/prepare.sh ./tests/ocr_det_params.txt 'lite_train_infer'
-bash tests/test.sh ./tests/ocr_det_params.txt 'lite_train_infer'
-```
-
-- 模式2:whole_infer,使用少量数据训练,一定量数据预测,用于验证训练后的模型执行预测,预测速度是否合理;
-```shell
-bash tests/prepare.sh ./tests/ocr_det_params.txt 'whole_infer'
-bash tests/test.sh ./tests/ocr_det_params.txt 'whole_infer'
-```
-
-- 模式3:infer 不训练,全量数据预测,走通开源模型评估、动转静,检查inference model预测时间和精度;
-```shell
-bash tests/prepare.sh ./tests/ocr_det_params.txt 'infer'
-# 用法1:
-bash tests/test.sh ./tests/ocr_det_params.txt 'infer'
-# 用法2: 指定GPU卡预测,第三个传入参数为GPU卡号
-bash tests/test.sh ./tests/ocr_det_params.txt 'infer' '1'
-```
-
-- 模式4:whole_train_infer , CE: 全量数据训练,全量数据预测,验证模型训练精度,预测精度,预测速度;
-```shell
-bash tests/prepare.sh ./tests/ocr_det_params.txt 'whole_train_infer'
-bash tests/test.sh ./tests/ocr_det_params.txt 'whole_train_infer'
-```
-
-- 模式5:cpp_infer , CE: 验证inference model的c++预测是否走通;
-```shell
-bash tests/prepare.sh ./tests/ocr_det_params.txt 'cpp_infer'
-bash tests/test.sh ./tests/ocr_det_params.txt 'cpp_infer'
-```
-
-# 日志输出
-最终在```tests/output```目录下生成.log后缀的日志文件
-
diff --git a/tests/test.sh b/tests/test.sh
deleted file mode 100644
index 5649e344b76cf4485db533eee4035e1cbdd5adae..0000000000000000000000000000000000000000
--- a/tests/test.sh
+++ /dev/null
@@ -1,594 +0,0 @@
-#!/bin/bash
-FILENAME=$1
-# MODE be one of ['lite_train_infer' 'whole_infer' 'whole_train_infer', 'infer', 'cpp_infer']
-MODE=$2
-
-dataline=$(cat ${FILENAME})
-
-# parser params
-IFS=$'\n'
-lines=(${dataline})
-
-function func_parser_key(){
- strs=$1
- IFS=":"
- array=(${strs})
- tmp=${array[0]}
- echo ${tmp}
-}
-function func_parser_value(){
- strs=$1
- IFS=":"
- array=(${strs})
- tmp=${array[1]}
- echo ${tmp}
-}
-function func_set_params(){
- key=$1
- value=$2
- if [ ${key} = "null" ];then
- echo " "
- elif [[ ${value} = "null" ]] || [[ ${value} = " " ]] || [ ${#value} -le 0 ];then
- echo " "
- else
- echo "${key}=${value}"
- fi
-}
-function func_parser_params(){
- strs=$1
- IFS=":"
- array=(${strs})
- key=${array[0]}
- tmp=${array[1]}
- IFS="|"
- res=""
- for _params in ${tmp[*]}; do
- IFS="="
- array=(${_params})
- mode=${array[0]}
- value=${array[1]}
- if [[ ${mode} = ${MODE} ]]; then
- IFS="|"
- #echo $(func_set_params "${mode}" "${value}")
- echo $value
- break
- fi
- IFS="|"
- done
- echo ${res}
-}
-function status_check(){
- last_status=$1 # the exit code
- run_command=$2
- run_log=$3
- if [ $last_status -eq 0 ]; then
- echo -e "\033[33m Run successfully with command - ${run_command}! \033[0m" | tee -a ${run_log}
- else
- echo -e "\033[33m Run failed with command - ${run_command}! \033[0m" | tee -a ${run_log}
- fi
-}
-
-IFS=$'\n'
-# The training params
-model_name=$(func_parser_value "${lines[1]}")
-python=$(func_parser_value "${lines[2]}")
-gpu_list=$(func_parser_value "${lines[3]}")
-train_use_gpu_key=$(func_parser_key "${lines[4]}")
-train_use_gpu_value=$(func_parser_value "${lines[4]}")
-autocast_list=$(func_parser_value "${lines[5]}")
-autocast_key=$(func_parser_key "${lines[5]}")
-epoch_key=$(func_parser_key "${lines[6]}")
-epoch_num=$(func_parser_params "${lines[6]}")
-save_model_key=$(func_parser_key "${lines[7]}")
-train_batch_key=$(func_parser_key "${lines[8]}")
-train_batch_value=$(func_parser_params "${lines[8]}")
-pretrain_model_key=$(func_parser_key "${lines[9]}")
-pretrain_model_value=$(func_parser_value "${lines[9]}")
-train_model_name=$(func_parser_value "${lines[10]}")
-train_infer_img_dir=$(func_parser_value "${lines[11]}")
-train_param_key1=$(func_parser_key "${lines[12]}")
-train_param_value1=$(func_parser_value "${lines[12]}")
-
-trainer_list=$(func_parser_value "${lines[14]}")
-trainer_norm=$(func_parser_key "${lines[15]}")
-norm_trainer=$(func_parser_value "${lines[15]}")
-pact_key=$(func_parser_key "${lines[16]}")
-pact_trainer=$(func_parser_value "${lines[16]}")
-fpgm_key=$(func_parser_key "${lines[17]}")
-fpgm_trainer=$(func_parser_value "${lines[17]}")
-distill_key=$(func_parser_key "${lines[18]}")
-distill_trainer=$(func_parser_value "${lines[18]}")
-trainer_key1=$(func_parser_key "${lines[19]}")
-trainer_value1=$(func_parser_value "${lines[19]}")
-trainer_key2=$(func_parser_key "${lines[20]}")
-trainer_value2=$(func_parser_value "${lines[20]}")
-
-eval_py=$(func_parser_value "${lines[23]}")
-eval_key1=$(func_parser_key "${lines[24]}")
-eval_value1=$(func_parser_value "${lines[24]}")
-
-save_infer_key=$(func_parser_key "${lines[27]}")
-export_weight=$(func_parser_key "${lines[28]}")
-norm_export=$(func_parser_value "${lines[29]}")
-pact_export=$(func_parser_value "${lines[30]}")
-fpgm_export=$(func_parser_value "${lines[31]}")
-distill_export=$(func_parser_value "${lines[32]}")
-export_key1=$(func_parser_key "${lines[33]}")
-export_value1=$(func_parser_value "${lines[33]}")
-export_key2=$(func_parser_key "${lines[34]}")
-export_value2=$(func_parser_value "${lines[34]}")
-
-# parser inference model
-infer_model_dir_list=$(func_parser_value "${lines[36]}")
-infer_export_list=$(func_parser_value "${lines[37]}")
-infer_is_quant=$(func_parser_value "${lines[38]}")
-# parser inference
-inference_py=$(func_parser_value "${lines[39]}")
-use_gpu_key=$(func_parser_key "${lines[40]}")
-use_gpu_list=$(func_parser_value "${lines[40]}")
-use_mkldnn_key=$(func_parser_key "${lines[41]}")
-use_mkldnn_list=$(func_parser_value "${lines[41]}")
-cpu_threads_key=$(func_parser_key "${lines[42]}")
-cpu_threads_list=$(func_parser_value "${lines[42]}")
-batch_size_key=$(func_parser_key "${lines[43]}")
-batch_size_list=$(func_parser_value "${lines[43]}")
-use_trt_key=$(func_parser_key "${lines[44]}")
-use_trt_list=$(func_parser_value "${lines[44]}")
-precision_key=$(func_parser_key "${lines[45]}")
-precision_list=$(func_parser_value "${lines[45]}")
-infer_model_key=$(func_parser_key "${lines[46]}")
-image_dir_key=$(func_parser_key "${lines[47]}")
-infer_img_dir=$(func_parser_value "${lines[47]}")
-save_log_key=$(func_parser_key "${lines[48]}")
-benchmark_key=$(func_parser_key "${lines[49]}")
-benchmark_value=$(func_parser_value "${lines[49]}")
-infer_key1=$(func_parser_key "${lines[50]}")
-infer_value1=$(func_parser_value "${lines[50]}")
-# parser serving
-trans_model_py=$(func_parser_value "${lines[67]}")
-infer_model_dir_key=$(func_parser_key "${lines[68]}")
-infer_model_dir_value=$(func_parser_value "${lines[68]}")
-model_filename_key=$(func_parser_key "${lines[69]}")
-model_filename_value=$(func_parser_value "${lines[69]}")
-params_filename_key=$(func_parser_key "${lines[70]}")
-params_filename_value=$(func_parser_value "${lines[70]}")
-serving_server_key=$(func_parser_key "${lines[71]}")
-serving_server_value=$(func_parser_value "${lines[71]}")
-serving_client_key=$(func_parser_key "${lines[72]}")
-serving_client_value=$(func_parser_value "${lines[72]}")
-serving_dir_value=$(func_parser_value "${lines[73]}")
-web_service_py=$(func_parser_value "${lines[74]}")
-web_use_gpu_key=$(func_parser_key "${lines[75]}")
-web_use_gpu_list=$(func_parser_value "${lines[75]}")
-web_use_mkldnn_key=$(func_parser_key "${lines[76]}")
-web_use_mkldnn_list=$(func_parser_value "${lines[76]}")
-web_cpu_threads_key=$(func_parser_key "${lines[77]}")
-web_cpu_threads_list=$(func_parser_value "${lines[77]}")
-web_use_trt_key=$(func_parser_key "${lines[78]}")
-web_use_trt_list=$(func_parser_value "${lines[78]}")
-web_precision_key=$(func_parser_key "${lines[79]}")
-web_precision_list=$(func_parser_value "${lines[79]}")
-pipeline_py=$(func_parser_value "${lines[80]}")
-
-
-if [ ${MODE} = "cpp_infer" ]; then
- # parser cpp inference model
- cpp_infer_model_dir_list=$(func_parser_value "${lines[53]}")
- cpp_infer_is_quant=$(func_parser_value "${lines[54]}")
- # parser cpp inference
- inference_cmd=$(func_parser_value "${lines[55]}")
- cpp_use_gpu_key=$(func_parser_key "${lines[56]}")
- cpp_use_gpu_list=$(func_parser_value "${lines[56]}")
- cpp_use_mkldnn_key=$(func_parser_key "${lines[57]}")
- cpp_use_mkldnn_list=$(func_parser_value "${lines[57]}")
- cpp_cpu_threads_key=$(func_parser_key "${lines[58]}")
- cpp_cpu_threads_list=$(func_parser_value "${lines[58]}")
- cpp_batch_size_key=$(func_parser_key "${lines[59]}")
- cpp_batch_size_list=$(func_parser_value "${lines[59]}")
- cpp_use_trt_key=$(func_parser_key "${lines[60]}")
- cpp_use_trt_list=$(func_parser_value "${lines[60]}")
- cpp_precision_key=$(func_parser_key "${lines[61]}")
- cpp_precision_list=$(func_parser_value "${lines[61]}")
- cpp_infer_model_key=$(func_parser_key "${lines[62]}")
- cpp_image_dir_key=$(func_parser_key "${lines[63]}")
- cpp_infer_img_dir=$(func_parser_value "${lines[63]}")
- cpp_infer_key1=$(func_parser_key "${lines[64]}")
- cpp_infer_value1=$(func_parser_value "${lines[64]}")
- cpp_benchmark_key=$(func_parser_key "${lines[65]}")
- cpp_benchmark_value=$(func_parser_value "${lines[65]}")
-fi
-
-
-LOG_PATH="./tests/output"
-mkdir -p ${LOG_PATH}
-status_log="${LOG_PATH}/results.log"
-
-
-function func_inference(){
- IFS='|'
- _python=$1
- _script=$2
- _model_dir=$3
- _log_path=$4
- _img_dir=$5
- _flag_quant=$6
- # inference
- for use_gpu in ${use_gpu_list[*]}; do
- if [ ${use_gpu} = "False" ] || [ ${use_gpu} = "cpu" ]; then
- for use_mkldnn in ${use_mkldnn_list[*]}; do
- if [ ${use_mkldnn} = "False" ] && [ ${_flag_quant} = "True" ]; then
- continue
- fi
- for threads in ${cpu_threads_list[*]}; do
- for batch_size in ${batch_size_list[*]}; do
- _save_log_path="${_log_path}/infer_cpu_usemkldnn_${use_mkldnn}_threads_${threads}_batchsize_${batch_size}.log"
- set_infer_data=$(func_set_params "${image_dir_key}" "${_img_dir}")
- set_benchmark=$(func_set_params "${benchmark_key}" "${benchmark_value}")
- set_batchsize=$(func_set_params "${batch_size_key}" "${batch_size}")
- set_cpu_threads=$(func_set_params "${cpu_threads_key}" "${threads}")
- set_model_dir=$(func_set_params "${infer_model_key}" "${_model_dir}")
- set_infer_params1=$(func_set_params "${infer_key1}" "${infer_value1}")
- command="${_python} ${_script} ${use_gpu_key}=${use_gpu} ${use_mkldnn_key}=${use_mkldnn} ${set_cpu_threads} ${set_model_dir} ${set_batchsize} ${set_infer_data} ${set_benchmark} ${set_infer_params1} > ${_save_log_path} 2>&1 "
- eval $command
- last_status=${PIPESTATUS[0]}
- eval "cat ${_save_log_path}"
- status_check $last_status "${command}" "${status_log}"
- done
- done
- done
- elif [ ${use_gpu} = "True" ] || [ ${use_gpu} = "gpu" ]; then
- for use_trt in ${use_trt_list[*]}; do
- for precision in ${precision_list[*]}; do
- if [[ ${_flag_quant} = "False" ]] && [[ ${precision} =~ "int8" ]]; then
- continue
- fi
- if [[ ${precision} =~ "fp16" || ${precision} =~ "int8" ]] && [ ${use_trt} = "False" ]; then
- continue
- fi
- if [[ ${use_trt} = "False" || ${precision} =~ "int8" ]] && [ ${_flag_quant} = "True" ]; then
- continue
- fi
- for batch_size in ${batch_size_list[*]}; do
- _save_log_path="${_log_path}/infer_gpu_usetrt_${use_trt}_precision_${precision}_batchsize_${batch_size}.log"
- set_infer_data=$(func_set_params "${image_dir_key}" "${_img_dir}")
- set_benchmark=$(func_set_params "${benchmark_key}" "${benchmark_value}")
- set_batchsize=$(func_set_params "${batch_size_key}" "${batch_size}")
- set_tensorrt=$(func_set_params "${use_trt_key}" "${use_trt}")
- set_precision=$(func_set_params "${precision_key}" "${precision}")
- set_model_dir=$(func_set_params "${infer_model_key}" "${_model_dir}")
- set_infer_params1=$(func_set_params "${infer_key1}" "${infer_value1}")
- command="${_python} ${_script} ${use_gpu_key}=${use_gpu} ${set_tensorrt} ${set_precision} ${set_model_dir} ${set_batchsize} ${set_infer_data} ${set_benchmark} ${set_infer_params1} > ${_save_log_path} 2>&1 "
- eval $command
- last_status=${PIPESTATUS[0]}
- eval "cat ${_save_log_path}"
- status_check $last_status "${command}" "${status_log}"
-
- done
- done
- done
- else
- echo "Does not support hardware other than CPU and GPU Currently!"
- fi
- done
-}
-function func_serving(){
- IFS='|'
- _python=$1
- _script=$2
- _model_dir=$3
- # pdserving
- set_dirname=$(func_set_params "${infer_model_dir_key}" "${infer_model_dir_value}")
- set_model_filename=$(func_set_params "${model_filename_key}" "${model_filename_value}")
- set_params_filename=$(func_set_params "${params_filename_key}" "${params_filename_value}")
- set_serving_server=$(func_set_params "${serving_server_key}" "${serving_server_value}")
- set_serving_client=$(func_set_params "${serving_client_key}" "${serving_client_value}")
- trans_model_cmd="${python} ${trans_model_py} ${set_dirname} ${set_model_filename} ${set_params_filename} ${set_serving_server} ${set_serving_client}"
- eval $trans_model_cmd
- cd ${serving_dir_value}
- echo $PWD
- unset https_proxy
- unset http_proxy
- for use_gpu in ${web_use_gpu_list[*]}; do
- echo ${ues_gpu}
- if [ ${use_gpu} = "null" ]; then
- for use_mkldnn in ${web_use_mkldnn_list[*]}; do
- if [ ${use_mkldnn} = "False" ]; then
- continue
- fi
- for threads in ${web_cpu_threads_list[*]}; do
- _save_log_path="${_log_path}/server_cpu_usemkldnn_${use_mkldnn}_threads_${threads}_batchsize_1.log"
- set_cpu_threads=$(func_set_params "${web_cpu_threads_key}" "${threads}")
- web_service_cmd="${python} ${web_service_py} ${web_use_gpu_key}=${use_gpu} ${web_use_mkldnn_key}=${use_mkldnn} ${set_cpu_threads} &>${_save_log_path} &"
- eval $web_service_cmd
- sleep 2s
- pipeline_cmd="${python} ${pipeline_py}"
- eval $pipeline_cmd
- last_status=${PIPESTATUS[0]}
- eval "cat ${_save_log_path}"
- status_check $last_status "${pipeline_cmd}" "${status_log}"
- PID=$!
- kill $PID
- sleep 2s
- ps ux | grep -E 'web_service|pipeline' | awk '{print $2}' | xargs kill -s 9
- done
- done
- elif [ ${use_gpu} = "0" ]; then
- for use_trt in ${web_use_trt_list[*]}; do
- for precision in ${web_precision_list[*]}; do
- if [[ ${_flag_quant} = "False" ]] && [[ ${precision} =~ "int8" ]]; then
- continue
- fi
- if [[ ${precision} =~ "fp16" || ${precision} =~ "int8" ]] && [ ${use_trt} = "False" ]; then
- continue
- fi
- if [[ ${use_trt} = "False" || ${precision} =~ "int8" ]] && [[ ${_flag_quant} = "True" ]]; then
- continue
- fi
- _save_log_path="${_log_path}/infer_gpu_usetrt_${use_trt}_precision_${precision}_batchsize_1.log"
- set_tensorrt=$(func_set_params "${web_use_trt_key}" "${use_trt}")
- set_precision=$(func_set_params "${web_precision_key}" "${precision}")
- web_service_cmd="${python} ${web_service_py} ${web_use_gpu_key}=${use_gpu} ${set_tensorrt} ${set_precision} &>${_save_log_path} & "
- eval $web_service_cmd
- sleep 2s
- pipeline_cmd="${python} ${pipeline_py}"
- eval $pipeline_cmd
- last_status=${PIPESTATUS[0]}
- eval "cat ${_save_log_path}"
- status_check $last_status "${pipeline_cmd}" "${status_log}"
- PID=$!
- kill $PID
- sleep 2s
- ps ux | grep -E 'web_service|pipeline' | awk '{print $2}' | xargs kill -s 9
- done
- done
- else
- echo "Does not support hardware other than CPU and GPU Currently!"
- fi
- done
-}
-
-function func_cpp_inference(){
- IFS='|'
- _script=$1
- _model_dir=$2
- _log_path=$3
- _img_dir=$4
- _flag_quant=$5
- # inference
- for use_gpu in ${cpp_use_gpu_list[*]}; do
- if [ ${use_gpu} = "False" ] || [ ${use_gpu} = "cpu" ]; then
- for use_mkldnn in ${cpp_use_mkldnn_list[*]}; do
- if [ ${use_mkldnn} = "False" ] && [ ${_flag_quant} = "True" ]; then
- continue
- fi
- for threads in ${cpp_cpu_threads_list[*]}; do
- for batch_size in ${cpp_batch_size_list[*]}; do
- _save_log_path="${_log_path}/cpp_infer_cpu_usemkldnn_${use_mkldnn}_threads_${threads}_batchsize_${batch_size}.log"
- set_infer_data=$(func_set_params "${cpp_image_dir_key}" "${_img_dir}")
- set_benchmark=$(func_set_params "${cpp_benchmark_key}" "${cpp_benchmark_value}")
- set_batchsize=$(func_set_params "${cpp_batch_size_key}" "${batch_size}")
- set_cpu_threads=$(func_set_params "${cpp_cpu_threads_key}" "${threads}")
- set_model_dir=$(func_set_params "${cpp_infer_model_key}" "${_model_dir}")
- set_infer_params1=$(func_set_params "${cpp_infer_key1}" "${cpp_infer_value1}")
- command="${_script} ${cpp_use_gpu_key}=${use_gpu} ${cpp_use_mkldnn_key}=${use_mkldnn} ${set_cpu_threads} ${set_model_dir} ${set_batchsize} ${set_infer_data} ${set_benchmark} ${set_infer_params1} > ${_save_log_path} 2>&1 "
- eval $command
- last_status=${PIPESTATUS[0]}
- eval "cat ${_save_log_path}"
- status_check $last_status "${command}" "${status_log}"
- done
- done
- done
- elif [ ${use_gpu} = "True" ] || [ ${use_gpu} = "gpu" ]; then
- for use_trt in ${cpp_use_trt_list[*]}; do
- for precision in ${cpp_precision_list[*]}; do
- if [[ ${_flag_quant} = "False" ]] && [[ ${precision} =~ "int8" ]]; then
- continue
- fi
- if [[ ${precision} =~ "fp16" || ${precision} =~ "int8" ]] && [ ${use_trt} = "False" ]; then
- continue
- fi
- if [[ ${use_trt} = "False" || ${precision} =~ "int8" ]] && [ ${_flag_quant} = "True" ]; then
- continue
- fi
- for batch_size in ${cpp_batch_size_list[*]}; do
- _save_log_path="${_log_path}/cpp_infer_gpu_usetrt_${use_trt}_precision_${precision}_batchsize_${batch_size}.log"
- set_infer_data=$(func_set_params "${cpp_image_dir_key}" "${_img_dir}")
- set_benchmark=$(func_set_params "${cpp_benchmark_key}" "${cpp_benchmark_value}")
- set_batchsize=$(func_set_params "${cpp_batch_size_key}" "${batch_size}")
- set_tensorrt=$(func_set_params "${cpp_use_trt_key}" "${use_trt}")
- set_precision=$(func_set_params "${cpp_precision_key}" "${precision}")
- set_model_dir=$(func_set_params "${cpp_infer_model_key}" "${_model_dir}")
- set_infer_params1=$(func_set_params "${cpp_infer_key1}" "${cpp_infer_value1}")
- command="${_script} ${cpp_use_gpu_key}=${use_gpu} ${set_tensorrt} ${set_precision} ${set_model_dir} ${set_batchsize} ${set_infer_data} ${set_benchmark} ${set_infer_params1} > ${_save_log_path} 2>&1 "
- eval $command
- last_status=${PIPESTATUS[0]}
- eval "cat ${_save_log_path}"
- status_check $last_status "${command}" "${status_log}"
-
- done
- done
- done
- else
- echo "Does not support hardware other than CPU and GPU Currently!"
- fi
- done
-}
-
-if [ ${MODE} = "infer" ]; then
- GPUID=$3
- if [ ${#GPUID} -le 0 ];then
- env=" "
- else
- env="export CUDA_VISIBLE_DEVICES=${GPUID}"
- fi
- # set CUDA_VISIBLE_DEVICES
- eval $env
- export Count=0
- IFS="|"
- infer_run_exports=(${infer_export_list})
- infer_quant_flag=(${infer_is_quant})
- for infer_model in ${infer_model_dir_list[*]}; do
- # run export
- if [ ${infer_run_exports[Count]} != "null" ];then
- save_infer_dir=$(dirname $infer_model)
- set_export_weight=$(func_set_params "${export_weight}" "${infer_model}")
- set_save_infer_key=$(func_set_params "${save_infer_key}" "${save_infer_dir}")
- export_cmd="${python} ${infer_run_exports[Count]} ${set_export_weight} ${set_save_infer_key}"
- echo ${infer_run_exports[Count]}
- echo $export_cmd
- eval $export_cmd
- status_export=$?
- status_check $status_export "${export_cmd}" "${status_log}"
- else
- save_infer_dir=${infer_model}
- fi
- #run inference
- is_quant=${infer_quant_flag[Count]}
- func_inference "${python}" "${inference_py}" "${save_infer_dir}" "${LOG_PATH}" "${infer_img_dir}" ${is_quant}
- Count=$(($Count + 1))
- done
-
-elif [ ${MODE} = "cpp_infer" ]; then
- GPUID=$3
- if [ ${#GPUID} -le 0 ];then
- env=" "
- else
- env="export CUDA_VISIBLE_DEVICES=${GPUID}"
- fi
- # set CUDA_VISIBLE_DEVICES
- eval $env
- export Count=0
- IFS="|"
- infer_quant_flag=(${cpp_infer_is_quant})
- for infer_model in ${cpp_infer_model_dir_list[*]}; do
- #run inference
- is_quant=${infer_quant_flag[Count]}
- func_cpp_inference "${inference_cmd}" "${infer_model}" "${LOG_PATH}" "${cpp_infer_img_dir}" ${is_quant}
- Count=$(($Count + 1))
- done
-
-elif [ ${MODE} = "serving_infer" ]; then
- GPUID=$3
- if [ ${#GPUID} -le 0 ];then
- env=" "
- else
- env="export CUDA_VISIBLE_DEVICES=${GPUID}"
- fi
- # set CUDA_VISIBLE_DEVICES
- eval $env
- export Count=0
- IFS="|"
- #run serving
- func_serving "${web_service_cmd}"
-
-else
- IFS="|"
- export Count=0
- USE_GPU_KEY=(${train_use_gpu_value})
- for gpu in ${gpu_list[*]}; do
- use_gpu=${USE_GPU_KEY[Count]}
- Count=$(($Count + 1))
- if [ ${gpu} = "-1" ];then
- env=""
- elif [ ${#gpu} -le 1 ];then
- env="export CUDA_VISIBLE_DEVICES=${gpu}"
- eval ${env}
- elif [ ${#gpu} -le 15 ];then
- IFS=","
- array=(${gpu})
- env="export CUDA_VISIBLE_DEVICES=${array[0]}"
- IFS="|"
- else
- IFS=";"
- array=(${gpu})
- ips=${array[0]}
- gpu=${array[1]}
- IFS="|"
- env=" "
- fi
- for autocast in ${autocast_list[*]}; do
- for trainer in ${trainer_list[*]}; do
- flag_quant=False
- if [ ${trainer} = ${pact_key} ]; then
- run_train=${pact_trainer}
- run_export=${pact_export}
- flag_quant=True
- elif [ ${trainer} = "${fpgm_key}" ]; then
- run_train=${fpgm_trainer}
- run_export=${fpgm_export}
- elif [ ${trainer} = "${distill_key}" ]; then
- run_train=${distill_trainer}
- run_export=${distill_export}
- elif [ ${trainer} = ${trainer_key1} ]; then
- run_train=${trainer_value1}
- run_export=${export_value1}
- elif [[ ${trainer} = ${trainer_key2} ]]; then
- run_train=${trainer_value2}
- run_export=${export_value2}
- else
- run_train=${norm_trainer}
- run_export=${norm_export}
- fi
-
- if [ ${run_train} = "null" ]; then
- continue
- fi
-
- set_autocast=$(func_set_params "${autocast_key}" "${autocast}")
- set_epoch=$(func_set_params "${epoch_key}" "${epoch_num}")
- set_pretrain=$(func_set_params "${pretrain_model_key}" "${pretrain_model_value}")
- set_batchsize=$(func_set_params "${train_batch_key}" "${train_batch_value}")
- set_train_params1=$(func_set_params "${train_param_key1}" "${train_param_value1}")
- set_use_gpu=$(func_set_params "${train_use_gpu_key}" "${use_gpu}")
- save_log="${LOG_PATH}/${trainer}_gpus_${gpu}_autocast_${autocast}"
-
- # load pretrain from norm training if current trainer is pact or fpgm trainer
- if [ ${trainer} = ${pact_key} ] || [ ${trainer} = ${fpgm_key} ]; then
- set_pretrain="${load_norm_train_model}"
- fi
-
- set_save_model=$(func_set_params "${save_model_key}" "${save_log}")
- if [ ${#gpu} -le 2 ];then # train with cpu or single gpu
- cmd="${python} ${run_train} ${set_use_gpu} ${set_save_model} ${set_epoch} ${set_pretrain} ${set_autocast} ${set_batchsize} ${set_train_params1} "
- elif [ ${#gpu} -le 15 ];then # train with multi-gpu
- cmd="${python} -m paddle.distributed.launch --gpus=${gpu} ${run_train} ${set_save_model} ${set_epoch} ${set_pretrain} ${set_autocast} ${set_batchsize} ${set_train_params1}"
- else # train with multi-machine
- cmd="${python} -m paddle.distributed.launch --ips=${ips} --gpus=${gpu} ${run_train} ${set_save_model} ${set_pretrain} ${set_epoch} ${set_autocast} ${set_batchsize} ${set_train_params1}"
- fi
- # run train
- eval "unset CUDA_VISIBLE_DEVICES"
- eval $cmd
- status_check $? "${cmd}" "${status_log}"
-
- set_eval_pretrain=$(func_set_params "${pretrain_model_key}" "${save_log}/${train_model_name}")
- # save norm trained models to set pretrain for pact training and fpgm training
- if [ ${trainer} = ${trainer_norm} ]; then
- load_norm_train_model=${set_eval_pretrain}
- fi
- # run eval
- if [ ${eval_py} != "null" ]; then
- set_eval_params1=$(func_set_params "${eval_key1}" "${eval_value1}")
- eval_cmd="${python} ${eval_py} ${set_eval_pretrain} ${set_use_gpu} ${set_eval_params1}"
- eval $eval_cmd
- status_check $? "${eval_cmd}" "${status_log}"
- fi
- # run export model
- if [ ${run_export} != "null" ]; then
- # run export model
- save_infer_path="${save_log}"
- set_export_weight=$(func_set_params "${export_weight}" "${save_log}/${train_model_name}")
- set_save_infer_key=$(func_set_params "${save_infer_key}" "${save_infer_path}")
- export_cmd="${python} ${run_export} ${set_export_weight} ${set_save_infer_key}"
- eval $export_cmd
- status_check $? "${export_cmd}" "${status_log}"
-
- #run inference
- eval $env
- save_infer_path="${save_log}"
- func_inference "${python}" "${inference_py}" "${save_infer_path}" "${LOG_PATH}" "${train_infer_img_dir}" "${flag_quant}"
- eval "unset CUDA_VISIBLE_DEVICES"
- fi
- done # done with: for trainer in ${trainer_list[*]}; do
- done # done with: for autocast in ${autocast_list[*]}; do
- done # done with: for gpu in ${gpu_list[*]}; do
-fi # end if [ ${MODE} = "infer" ]; then
diff --git a/tools/__init__.py b/tools/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..d56c9dbaa1304b160521da03c05db2352e341bf2
--- /dev/null
+++ b/tools/__init__.py
@@ -0,0 +1,14 @@
+# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
+# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
diff --git a/tools/eval.py b/tools/eval.py
index 7290dbe9ad47ae1735427ad893345ea4f9fcfce7..13a4a0882f5a20b47e8999042713e1623b32ff5a 100755
--- a/tools/eval.py
+++ b/tools/eval.py
@@ -27,7 +27,7 @@ from ppocr.data import build_dataloader
from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
from ppocr.metrics import build_metric
-from ppocr.utils.save_load import init_model, load_dygraph_params
+from ppocr.utils.save_load import load_model
from ppocr.utils.utility import print_dict
import tools.program as program
@@ -61,7 +61,7 @@ def main():
else:
model_type = None
- best_model_dict = load_dygraph_params(config, model, logger, None)
+ best_model_dict = load_model(config, model)
if len(best_model_dict):
logger.info('metric in ckpt ***************')
for k, v in best_model_dict.items():
diff --git a/tools/export_center.py b/tools/export_center.py
new file mode 100644
index 0000000000000000000000000000000000000000..30b9c33499b8d0c8044682c6a078e00f683c1d7c
--- /dev/null
+++ b/tools/export_center.py
@@ -0,0 +1,77 @@
+# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
+import os
+import sys
+import pickle
+
+__dir__ = os.path.dirname(os.path.abspath(__file__))
+sys.path.append(__dir__)
+sys.path.append(os.path.abspath(os.path.join(__dir__, '..')))
+
+from ppocr.data import build_dataloader
+from ppocr.modeling.architectures import build_model
+from ppocr.postprocess import build_post_process
+from ppocr.utils.save_load import load_model
+from ppocr.utils.utility import print_dict
+import tools.program as program
+
+
+def main():
+ global_config = config['Global']
+ # build dataloader
+ config['Eval']['dataset']['name'] = config['Train']['dataset']['name']
+ config['Eval']['dataset']['data_dir'] = config['Train']['dataset'][
+ 'data_dir']
+ config['Eval']['dataset']['label_file_list'] = config['Train']['dataset'][
+ 'label_file_list']
+ eval_dataloader = build_dataloader(config, 'Eval', device, logger)
+
+ # build post process
+ post_process_class = build_post_process(config['PostProcess'],
+ global_config)
+
+ # build model
+ # for rec algorithm
+ if hasattr(post_process_class, 'character'):
+ char_num = len(getattr(post_process_class, 'character'))
+ config['Architecture']["Head"]['out_channels'] = char_num
+
+ #set return_features = True
+ config['Architecture']["Head"]["return_feats"] = True
+
+ model = build_model(config['Architecture'])
+
+ best_model_dict = load_model(config, model)
+ if len(best_model_dict):
+ logger.info('metric in ckpt ***************')
+ for k, v in best_model_dict.items():
+ logger.info('{}:{}'.format(k, v))
+
+ # get features from train data
+ char_center = program.get_center(model, eval_dataloader, post_process_class)
+
+ #serialize to disk
+ with open("train_center.pkl", 'wb') as f:
+ pickle.dump(char_center, f)
+ return
+
+
+if __name__ == '__main__':
+ config, device, logger, vdl_writer = program.preprocess()
+ main()
diff --git a/tools/export_model.py b/tools/export_model.py
index 64a0d4036303716a632eb93c53f2478f32b42848..9ed8e1b6ace89ded030c946870551c8e078d7340 100755
--- a/tools/export_model.py
+++ b/tools/export_model.py
@@ -26,7 +26,7 @@ from paddle.jit import to_static
from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
from ppocr.utils.logging import get_logger
from tools.program import load_config, merge_config, ArgsParser
@@ -107,7 +107,7 @@ def main():
else: # base rec model
config["Architecture"]["Head"]["out_channels"] = char_num
model = build_model(config["Architecture"])
- init_model(config, model)
+ load_model(config, model)
model.eval()
save_path = config["Global"]["save_inference_dir"]
diff --git a/tools/infer/predict_cls.py b/tools/infer/predict_cls.py
index 53e50bd6d1d1a2bd07b9f1204b9f56594c669d13..a25cac2600e67667badc76c648c1fcda12981a0f 100755
--- a/tools/infer/predict_cls.py
+++ b/tools/infer/predict_cls.py
@@ -47,6 +47,7 @@ class TextClassifier(object):
self.postprocess_op = build_post_process(postprocess_params)
self.predictor, self.input_tensor, self.output_tensors, _ = \
utility.create_predictor(args, 'cls', logger)
+ self.use_onnx = args.use_onnx
def resize_norm_img(self, img):
imgC, imgH, imgW = self.cls_image_shape
@@ -100,10 +101,16 @@ class TextClassifier(object):
norm_img_batch = np.concatenate(norm_img_batch)
norm_img_batch = norm_img_batch.copy()
- self.input_tensor.copy_from_cpu(norm_img_batch)
- self.predictor.run()
- prob_out = self.output_tensors[0].copy_to_cpu()
- self.predictor.try_shrink_memory()
+ if self.use_onnx:
+ input_dict = {}
+ input_dict[self.input_tensor.name] = norm_img_batch
+ outputs = self.predictor.run(self.output_tensors, input_dict)
+ prob_out = outputs[0]
+ else:
+ self.input_tensor.copy_from_cpu(norm_img_batch)
+ self.predictor.run()
+ prob_out = self.output_tensors[0].copy_to_cpu()
+ self.predictor.try_shrink_memory()
cls_result = self.postprocess_op(prob_out)
elapse += time.time() - starttime
for rno in range(len(cls_result)):
@@ -131,14 +138,9 @@ def main(args):
img_list.append(img)
try:
img_list, cls_res, predict_time = text_classifier(img_list)
- except:
+ except Exception as E:
logger.info(traceback.format_exc())
- logger.info(
- "ERROR!!!! \n"
- "Please read the FAQ:https://github.com/PaddlePaddle/PaddleOCR#faq \n"
- "If your model has tps module: "
- "TPS does not support variable shape.\n"
- "Please set --rec_image_shape='3,32,100' and --rec_char_type='en' ")
+ logger.info(E)
exit()
for ino in range(len(img_list)):
logger.info("Predicts of {}:{}".format(valid_image_file_list[ino],
diff --git a/tools/infer/predict_det.py b/tools/infer/predict_det.py
index b24ad2bbb504caf1f262b4e47625348ce32d6fce..5dfe8d648f06f6382e8e101a6002f7f1b7441323 100755
--- a/tools/infer/predict_det.py
+++ b/tools/infer/predict_det.py
@@ -38,6 +38,7 @@ class TextDetector(object):
def __init__(self, args):
self.args = args
self.det_algorithm = args.det_algorithm
+ self.use_onnx = args.use_onnx
pre_process_list = [{
'DetResizeForTest': {
'limit_side_len': args.det_limit_side_len,
@@ -100,7 +101,12 @@ class TextDetector(object):
else:
logger.info("unknown det_algorithm:{}".format(self.det_algorithm))
sys.exit(0)
-
+ if self.use_onnx:
+ pre_process_list[0] = {
+ 'DetResizeForTest': {
+ 'image_shape': [640, 640]
+ }
+ }
self.preprocess_op = create_operators(pre_process_list)
self.postprocess_op = build_post_process(postprocess_params)
self.predictor, self.input_tensor, self.output_tensors, self.config = utility.create_predictor(
@@ -198,15 +204,19 @@ class TextDetector(object):
if self.args.benchmark:
self.autolog.times.stamp()
-
- self.input_tensor.copy_from_cpu(img)
- self.predictor.run()
- outputs = []
- for output_tensor in self.output_tensors:
- output = output_tensor.copy_to_cpu()
- outputs.append(output)
- if self.args.benchmark:
- self.autolog.times.stamp()
+ if self.use_onnx:
+ input_dict = {}
+ input_dict[self.input_tensor.name] = img
+ outputs = self.predictor.run(self.output_tensors, input_dict)
+ else:
+ self.input_tensor.copy_from_cpu(img)
+ self.predictor.run()
+ outputs = []
+ for output_tensor in self.output_tensors:
+ output = output_tensor.copy_to_cpu()
+ outputs.append(output)
+ if self.args.benchmark:
+ self.autolog.times.stamp()
preds = {}
if self.det_algorithm == "EAST":
diff --git a/tools/infer/predict_e2e.py b/tools/infer/predict_e2e.py
index 8ff279d7437965f725082a9eb1c83e05a7ffc8a8..c00d101aa601c05230da39bc19f0e5068bc80aa2 100755
--- a/tools/infer/predict_e2e.py
+++ b/tools/infer/predict_e2e.py
@@ -38,6 +38,7 @@ class TextE2E(object):
def __init__(self, args):
self.args = args
self.e2e_algorithm = args.e2e_algorithm
+ self.use_onnx = args.use_onnx
pre_process_list = [{
'E2EResizeForTest': {}
}, {
@@ -67,7 +68,6 @@ class TextE2E(object):
postprocess_params["character_dict_path"] = args.e2e_char_dict_path
postprocess_params["valid_set"] = args.e2e_pgnet_valid_set
postprocess_params["mode"] = args.e2e_pgnet_mode
- self.e2e_pgnet_polygon = args.e2e_pgnet_polygon
else:
logger.info("unknown e2e_algorithm:{}".format(self.e2e_algorithm))
sys.exit(0)
@@ -106,21 +106,31 @@ class TextE2E(object):
img = img.copy()
starttime = time.time()
- self.input_tensor.copy_from_cpu(img)
- self.predictor.run()
- outputs = []
- for output_tensor in self.output_tensors:
- output = output_tensor.copy_to_cpu()
- outputs.append(output)
-
- preds = {}
- if self.e2e_algorithm == 'PGNet':
+ if self.use_onnx:
+ input_dict = {}
+ input_dict[self.input_tensor.name] = img
+ outputs = self.predictor.run(self.output_tensors, input_dict)
+ preds = {}
preds['f_border'] = outputs[0]
preds['f_char'] = outputs[1]
preds['f_direction'] = outputs[2]
preds['f_score'] = outputs[3]
else:
- raise NotImplementedError
+ self.input_tensor.copy_from_cpu(img)
+ self.predictor.run()
+ outputs = []
+ for output_tensor in self.output_tensors:
+ output = output_tensor.copy_to_cpu()
+ outputs.append(output)
+
+ preds = {}
+ if self.e2e_algorithm == 'PGNet':
+ preds['f_border'] = outputs[0]
+ preds['f_char'] = outputs[1]
+ preds['f_direction'] = outputs[2]
+ preds['f_score'] = outputs[3]
+ else:
+ raise NotImplementedError
post_result = self.postprocess_op(preds, shape_list)
points, strs = post_result['points'], post_result['texts']
dt_boxes = self.filter_tag_det_res_only_clip(points, ori_im.shape)
@@ -141,7 +151,6 @@ if __name__ == "__main__":
img, flag = check_and_read_gif(image_file)
if not flag:
img = cv2.imread(image_file)
- img = img[:, :, ::-1]
if img is None:
logger.info("error in loading image:{}".format(image_file))
continue
diff --git a/tools/infer/predict_rec.py b/tools/infer/predict_rec.py
index dad70281ef7604f110d29963103068bba1c8fd9d..7ec8eeadd3ac1232fc28287828a8383b258a2b3d 100755
--- a/tools/infer/predict_rec.py
+++ b/tools/infer/predict_rec.py
@@ -38,40 +38,34 @@ logger = get_logger()
class TextRecognizer(object):
def __init__(self, args):
self.rec_image_shape = [int(v) for v in args.rec_image_shape.split(",")]
- self.character_type = args.rec_char_type
self.rec_batch_num = args.rec_batch_num
self.rec_algorithm = args.rec_algorithm
postprocess_params = {
'name': 'CTCLabelDecode',
- "character_type": args.rec_char_type,
"character_dict_path": args.rec_char_dict_path,
"use_space_char": args.use_space_char
}
if self.rec_algorithm == "SRN":
postprocess_params = {
'name': 'SRNLabelDecode',
- "character_type": args.rec_char_type,
"character_dict_path": args.rec_char_dict_path,
"use_space_char": args.use_space_char
}
elif self.rec_algorithm == "RARE":
postprocess_params = {
'name': 'AttnLabelDecode',
- "character_type": args.rec_char_type,
"character_dict_path": args.rec_char_dict_path,
"use_space_char": args.use_space_char
}
elif self.rec_algorithm == 'NRTR':
postprocess_params = {
'name': 'NRTRLabelDecode',
- "character_type": args.rec_char_type,
"character_dict_path": args.rec_char_dict_path,
"use_space_char": args.use_space_char
}
elif self.rec_algorithm == "SAR":
postprocess_params = {
'name': 'SARLabelDecode',
- "character_type": args.rec_char_type,
"character_dict_path": args.rec_char_dict_path,
"use_space_char": args.use_space_char
}
@@ -79,6 +73,7 @@ class TextRecognizer(object):
self.predictor, self.input_tensor, self.output_tensors, self.config = \
utility.create_predictor(args, 'rec', logger)
self.benchmark = args.benchmark
+ self.use_onnx = args.use_onnx
if args.benchmark:
import auto_log
pid = os.getpid()
@@ -96,7 +91,7 @@ class TextRecognizer(object):
time_keys=[
'preprocess_time', 'inference_time', 'postprocess_time'
],
- warmup=2,
+ warmup=0,
logger=logger)
def resize_norm_img(self, img, max_wh_ratio):
@@ -112,8 +107,9 @@ class TextRecognizer(object):
return norm_img.astype(np.float32) / 128. - 1.
assert imgC == img.shape[2]
- max_wh_ratio = max(max_wh_ratio, imgW / imgH)
imgW = int((32 * max_wh_ratio))
+ if self.use_onnx:
+ imgW = 100
h, w = img.shape[:2]
ratio = w / float(h)
if math.ceil(imgH * ratio) > imgW:
@@ -303,51 +299,72 @@ class TextRecognizer(object):
gsrm_slf_attn_bias1_list,
gsrm_slf_attn_bias2_list,
]
- input_names = self.predictor.get_input_names()
- for i in range(len(input_names)):
- input_tensor = self.predictor.get_input_handle(input_names[
- i])
- input_tensor.copy_from_cpu(inputs[i])
- self.predictor.run()
- outputs = []
- for output_tensor in self.output_tensors:
- output = output_tensor.copy_to_cpu()
- outputs.append(output)
- if self.benchmark:
- self.autolog.times.stamp()
- preds = {"predict": outputs[2]}
+ if self.use_onnx:
+ input_dict = {}
+ input_dict[self.input_tensor.name] = norm_img_batch
+ outputs = self.predictor.run(self.output_tensors,
+ input_dict)
+ preds = {"predict": outputs[2]}
+ else:
+ input_names = self.predictor.get_input_names()
+ for i in range(len(input_names)):
+ input_tensor = self.predictor.get_input_handle(
+ input_names[i])
+ input_tensor.copy_from_cpu(inputs[i])
+ self.predictor.run()
+ outputs = []
+ for output_tensor in self.output_tensors:
+ output = output_tensor.copy_to_cpu()
+ outputs.append(output)
+ if self.benchmark:
+ self.autolog.times.stamp()
+ preds = {"predict": outputs[2]}
elif self.rec_algorithm == "SAR":
valid_ratios = np.concatenate(valid_ratios)
inputs = [
norm_img_batch,
valid_ratios,
]
- input_names = self.predictor.get_input_names()
- for i in range(len(input_names)):
- input_tensor = self.predictor.get_input_handle(input_names[
- i])
- input_tensor.copy_from_cpu(inputs[i])
- self.predictor.run()
- outputs = []
- for output_tensor in self.output_tensors:
- output = output_tensor.copy_to_cpu()
- outputs.append(output)
- if self.benchmark:
- self.autolog.times.stamp()
- preds = outputs[0]
- else:
- self.input_tensor.copy_from_cpu(norm_img_batch)
- self.predictor.run()
- outputs = []
- for output_tensor in self.output_tensors:
- output = output_tensor.copy_to_cpu()
- outputs.append(output)
- if self.benchmark:
- self.autolog.times.stamp()
- if len(outputs) != 1:
- preds = outputs
+ if self.use_onnx:
+ input_dict = {}
+ input_dict[self.input_tensor.name] = norm_img_batch
+ outputs = self.predictor.run(self.output_tensors,
+ input_dict)
+ preds = outputs[0]
else:
+ input_names = self.predictor.get_input_names()
+ for i in range(len(input_names)):
+ input_tensor = self.predictor.get_input_handle(
+ input_names[i])
+ input_tensor.copy_from_cpu(inputs[i])
+ self.predictor.run()
+ outputs = []
+ for output_tensor in self.output_tensors:
+ output = output_tensor.copy_to_cpu()
+ outputs.append(output)
+ if self.benchmark:
+ self.autolog.times.stamp()
preds = outputs[0]
+ else:
+ if self.use_onnx:
+ input_dict = {}
+ input_dict[self.input_tensor.name] = norm_img_batch
+ outputs = self.predictor.run(self.output_tensors,
+ input_dict)
+ preds = outputs[0]
+ else:
+ self.input_tensor.copy_from_cpu(norm_img_batch)
+ self.predictor.run()
+ outputs = []
+ for output_tensor in self.output_tensors:
+ output = output_tensor.copy_to_cpu()
+ outputs.append(output)
+ if self.benchmark:
+ self.autolog.times.stamp()
+ if len(outputs) != 1:
+ preds = outputs
+ else:
+ preds = outputs[0]
rec_result = self.postprocess_op(preds)
for rno in range(len(rec_result)):
rec_res[indices[beg_img_no + rno]] = rec_result[rno]
diff --git a/tools/infer/predict_system.py b/tools/infer/predict_system.py
index b5edd01589685a29a37dc20064b0d58e9d776fec..8d674809a5fe22e458fcb0c68419a7313e71d5f6 100755
--- a/tools/infer/predict_system.py
+++ b/tools/infer/predict_system.py
@@ -49,11 +49,19 @@ class TextSystem(object):
if self.use_angle_cls:
self.text_classifier = predict_cls.TextClassifier(args)
- def print_draw_crop_rec_res(self, img_crop_list, rec_res):
+ self.args = args
+ self.crop_image_res_index = 0
+
+ def draw_crop_rec_res(self, output_dir, img_crop_list, rec_res):
+ os.makedirs(output_dir, exist_ok=True)
bbox_num = len(img_crop_list)
for bno in range(bbox_num):
- cv2.imwrite("./output/img_crop_%d.jpg" % bno, img_crop_list[bno])
- logger.info(bno, rec_res[bno])
+ cv2.imwrite(
+ os.path.join(output_dir,
+ f"mg_crop_{bno+self.crop_image_res_index}.jpg"),
+ img_crop_list[bno])
+ logger.debug(f"{bno}, {rec_res[bno]}")
+ self.crop_image_res_index += bbox_num
def __call__(self, img, cls=True):
ori_im = img.copy()
@@ -80,7 +88,9 @@ class TextSystem(object):
rec_res, elapse = self.text_recognizer(img_crop_list)
logger.debug("rec_res num : {}, elapse : {}".format(
len(rec_res), elapse))
- # self.print_draw_crop_rec_res(img_crop_list, rec_res)
+ if self.args.save_crop_res:
+ self.draw_crop_rec_res(self.args.crop_res_save_dir, img_crop_list,
+ rec_res)
filter_boxes, filter_rec_res = [], []
for box, rec_reuslt in zip(dt_boxes, rec_res):
text, score = rec_reuslt
@@ -135,17 +145,17 @@ def main(args):
if not flag:
img = cv2.imread(image_file)
if img is None:
- logger.info("error in loading image:{}".format(image_file))
+ logger.debug("error in loading image:{}".format(image_file))
continue
starttime = time.time()
dt_boxes, rec_res = text_sys(img)
elapse = time.time() - starttime
total_time += elapse
- logger.info(
+ logger.debug(
str(idx) + " Predict time of %s: %.3fs" % (image_file, elapse))
for text, score in rec_res:
- logger.info("{}, {:.3f}".format(text, score))
+ logger.debug("{}, {:.3f}".format(text, score))
if is_visualize:
image = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
@@ -160,19 +170,17 @@ def main(args):
scores,
drop_score=drop_score,
font_path=font_path)
- draw_img_save = "./inference_results/"
- if not os.path.exists(draw_img_save):
- os.makedirs(draw_img_save)
+ draw_img_save_dir = args.draw_img_save_dir
+ os.makedirs(draw_img_save_dir, exist_ok=True)
if flag:
image_file = image_file[:-3] + "png"
cv2.imwrite(
- os.path.join(draw_img_save, os.path.basename(image_file)),
+ os.path.join(draw_img_save_dir, os.path.basename(image_file)),
draw_img[:, :, ::-1])
- logger.info("The visualized image saved in {}".format(
- os.path.join(draw_img_save, os.path.basename(image_file))))
+ logger.debug("The visualized image saved in {}".format(
+ os.path.join(draw_img_save_dir, os.path.basename(image_file))))
logger.info("The predict total time is {}".format(time.time() - _st))
- logger.info("\nThe predict total time is {}".format(total_time))
if args.benchmark:
text_sys.text_detector.autolog.report()
text_sys.text_recognizer.autolog.report()
diff --git a/tools/infer/utility.py b/tools/infer/utility.py
old mode 100755
new mode 100644
index 538f55c42b223f9741c5c7006dd7d1478ce1920b..bd9e14a65749f4223eeb6cf79a37546909854d17
--- a/tools/infer/utility.py
+++ b/tools/infer/utility.py
@@ -17,7 +17,7 @@ import os
import sys
import cv2
import numpy as np
-import json
+import paddle
from PIL import Image, ImageDraw, ImageFont
import math
from paddle import inference
@@ -74,7 +74,6 @@ def init_args():
parser.add_argument("--rec_algorithm", type=str, default='CRNN')
parser.add_argument("--rec_model_dir", type=str)
parser.add_argument("--rec_image_shape", type=str, default="3, 32, 320")
- parser.add_argument("--rec_char_type", type=str, default='ch')
parser.add_argument("--rec_batch_num", type=int, default=6)
parser.add_argument("--max_text_length", type=int, default=25)
parser.add_argument(
@@ -97,7 +96,6 @@ def init_args():
parser.add_argument(
"--e2e_char_dict_path", type=str, default="./ppocr/utils/ic15_dict.txt")
parser.add_argument("--e2e_pgnet_valid_set", type=str, default='totaltext')
- parser.add_argument("--e2e_pgnet_polygon", type=str2bool, default=True)
parser.add_argument("--e2e_pgnet_mode", type=str, default='fast')
# params for text classifier
@@ -111,7 +109,13 @@ def init_args():
parser.add_argument("--enable_mkldnn", type=str2bool, default=False)
parser.add_argument("--cpu_threads", type=int, default=10)
parser.add_argument("--use_pdserving", type=str2bool, default=False)
- parser.add_argument("--warmup", type=str2bool, default=True)
+ parser.add_argument("--warmup", type=str2bool, default=False)
+
+ #
+ parser.add_argument(
+ "--draw_img_save_dir", type=str, default="./inference_results")
+ parser.add_argument("--save_crop_res", type=str2bool, default=False)
+ parser.add_argument("--crop_res_save_dir", type=str, default="./output")
# multi-process
parser.add_argument("--use_mp", type=str2bool, default=False)
@@ -122,6 +126,7 @@ def init_args():
parser.add_argument("--save_log_path", type=str, default="./log_output/")
parser.add_argument("--show_log", type=str2bool, default=True)
+ parser.add_argument("--use_onnx", type=str2bool, default=False)
return parser
@@ -145,158 +150,167 @@ def create_predictor(args, mode, logger):
if model_dir is None:
logger.info("not find {} model file path {}".format(mode, model_dir))
sys.exit(0)
- model_file_path = model_dir + "/inference.pdmodel"
- params_file_path = model_dir + "/inference.pdiparams"
- if not os.path.exists(model_file_path):
- raise ValueError("not find model file path {}".format(model_file_path))
- if not os.path.exists(params_file_path):
- raise ValueError("not find params file path {}".format(
- params_file_path))
-
- config = inference.Config(model_file_path, params_file_path)
-
- if hasattr(args, 'precision'):
- if args.precision == "fp16" and args.use_tensorrt:
- precision = inference.PrecisionType.Half
- elif args.precision == "int8":
- precision = inference.PrecisionType.Int8
- else:
- precision = inference.PrecisionType.Float32
+ if args.use_onnx:
+ import onnxruntime as ort
+ model_file_path = model_dir
+ if not os.path.exists(model_file_path):
+ raise ValueError("not find model file path {}".format(
+ model_file_path))
+ sess = ort.InferenceSession(model_file_path)
+ return sess, sess.get_inputs()[0], None, None
+
else:
- precision = inference.PrecisionType.Float32
-
- if args.use_gpu:
- gpu_id = get_infer_gpuid()
- if gpu_id is None:
- raise ValueError(
- "Not found GPU in current device. Please check your device or set args.use_gpu as False"
- )
- config.enable_use_gpu(args.gpu_mem, 0)
- if args.use_tensorrt:
- config.enable_tensorrt_engine(
- precision_mode=precision,
- max_batch_size=args.max_batch_size,
- min_subgraph_size=args.min_subgraph_size)
- # skip the minmum trt subgraph
- if mode == "det":
- min_input_shape = {
- "x": [1, 3, 50, 50],
- "conv2d_92.tmp_0": [1, 120, 20, 20],
- "conv2d_91.tmp_0": [1, 24, 10, 10],
- "conv2d_59.tmp_0": [1, 96, 20, 20],
- "nearest_interp_v2_1.tmp_0": [1, 256, 10, 10],
- "nearest_interp_v2_2.tmp_0": [1, 256, 20, 20],
- "conv2d_124.tmp_0": [1, 256, 20, 20],
- "nearest_interp_v2_3.tmp_0": [1, 64, 20, 20],
- "nearest_interp_v2_4.tmp_0": [1, 64, 20, 20],
- "nearest_interp_v2_5.tmp_0": [1, 64, 20, 20],
- "elementwise_add_7": [1, 56, 2, 2],
- "nearest_interp_v2_0.tmp_0": [1, 256, 2, 2]
- }
- max_input_shape = {
- "x": [1, 3, 2000, 2000],
- "conv2d_92.tmp_0": [1, 120, 400, 400],
- "conv2d_91.tmp_0": [1, 24, 200, 200],
- "conv2d_59.tmp_0": [1, 96, 400, 400],
- "nearest_interp_v2_1.tmp_0": [1, 256, 200, 200],
- "conv2d_124.tmp_0": [1, 256, 400, 400],
- "nearest_interp_v2_2.tmp_0": [1, 256, 400, 400],
- "nearest_interp_v2_3.tmp_0": [1, 64, 400, 400],
- "nearest_interp_v2_4.tmp_0": [1, 64, 400, 400],
- "nearest_interp_v2_5.tmp_0": [1, 64, 400, 400],
- "elementwise_add_7": [1, 56, 400, 400],
- "nearest_interp_v2_0.tmp_0": [1, 256, 400, 400]
- }
- opt_input_shape = {
- "x": [1, 3, 640, 640],
- "conv2d_92.tmp_0": [1, 120, 160, 160],
- "conv2d_91.tmp_0": [1, 24, 80, 80],
- "conv2d_59.tmp_0": [1, 96, 160, 160],
- "nearest_interp_v2_1.tmp_0": [1, 256, 80, 80],
- "nearest_interp_v2_2.tmp_0": [1, 256, 160, 160],
- "conv2d_124.tmp_0": [1, 256, 160, 160],
- "nearest_interp_v2_3.tmp_0": [1, 64, 160, 160],
- "nearest_interp_v2_4.tmp_0": [1, 64, 160, 160],
- "nearest_interp_v2_5.tmp_0": [1, 64, 160, 160],
- "elementwise_add_7": [1, 56, 40, 40],
- "nearest_interp_v2_0.tmp_0": [1, 256, 40, 40]
- }
- min_pact_shape = {
- "nearest_interp_v2_26.tmp_0": [1, 256, 20, 20],
- "nearest_interp_v2_27.tmp_0": [1, 64, 20, 20],
- "nearest_interp_v2_28.tmp_0": [1, 64, 20, 20],
- "nearest_interp_v2_29.tmp_0": [1, 64, 20, 20]
- }
- max_pact_shape = {
- "nearest_interp_v2_26.tmp_0": [1, 256, 400, 400],
- "nearest_interp_v2_27.tmp_0": [1, 64, 400, 400],
- "nearest_interp_v2_28.tmp_0": [1, 64, 400, 400],
- "nearest_interp_v2_29.tmp_0": [1, 64, 400, 400]
- }
- opt_pact_shape = {
- "nearest_interp_v2_26.tmp_0": [1, 256, 160, 160],
- "nearest_interp_v2_27.tmp_0": [1, 64, 160, 160],
- "nearest_interp_v2_28.tmp_0": [1, 64, 160, 160],
- "nearest_interp_v2_29.tmp_0": [1, 64, 160, 160]
- }
- min_input_shape.update(min_pact_shape)
- max_input_shape.update(max_pact_shape)
- opt_input_shape.update(opt_pact_shape)
- elif mode == "rec":
- min_input_shape = {"x": [1, 3, 32, 10]}
- max_input_shape = {"x": [args.rec_batch_num, 3, 32, 2000]}
- opt_input_shape = {"x": [args.rec_batch_num, 3, 32, 320]}
- elif mode == "cls":
- min_input_shape = {"x": [1, 3, 48, 10]}
- max_input_shape = {"x": [args.rec_batch_num, 3, 48, 2000]}
- opt_input_shape = {"x": [args.rec_batch_num, 3, 48, 320]}
+ model_file_path = model_dir + "/inference.pdmodel"
+ params_file_path = model_dir + "/inference.pdiparams"
+ if not os.path.exists(model_file_path):
+ raise ValueError("not find model file path {}".format(
+ model_file_path))
+ if not os.path.exists(params_file_path):
+ raise ValueError("not find params file path {}".format(
+ params_file_path))
+
+ config = inference.Config(model_file_path, params_file_path)
+
+ if hasattr(args, 'precision'):
+ if args.precision == "fp16" and args.use_tensorrt:
+ precision = inference.PrecisionType.Half
+ elif args.precision == "int8":
+ precision = inference.PrecisionType.Int8
+ else:
+ precision = inference.PrecisionType.Float32
else:
- min_input_shape = {"x": [1, 3, 10, 10]}
- max_input_shape = {"x": [1, 3, 1000, 1000]}
- opt_input_shape = {"x": [1, 3, 500, 500]}
- config.set_trt_dynamic_shape_info(min_input_shape, max_input_shape,
- opt_input_shape)
+ precision = inference.PrecisionType.Float32
+
+ if args.use_gpu:
+ gpu_id = get_infer_gpuid()
+ if gpu_id is None:
+ logger.warning(
+ "GPU is not found in current device by nvidia-smi. Please check your device or ignore it if run on jeston."
+ )
+ config.enable_use_gpu(args.gpu_mem, 0)
+ if args.use_tensorrt:
+ config.enable_tensorrt_engine(
+ workspace_size=1 << 30,
+ precision_mode=precision,
+ max_batch_size=args.max_batch_size,
+ min_subgraph_size=args.min_subgraph_size)
+ # skip the minmum trt subgraph
+ if mode == "det":
+ min_input_shape = {
+ "x": [1, 3, 50, 50],
+ "conv2d_92.tmp_0": [1, 120, 20, 20],
+ "conv2d_91.tmp_0": [1, 24, 10, 10],
+ "conv2d_59.tmp_0": [1, 96, 20, 20],
+ "nearest_interp_v2_1.tmp_0": [1, 256, 10, 10],
+ "nearest_interp_v2_2.tmp_0": [1, 256, 20, 20],
+ "conv2d_124.tmp_0": [1, 256, 20, 20],
+ "nearest_interp_v2_3.tmp_0": [1, 64, 20, 20],
+ "nearest_interp_v2_4.tmp_0": [1, 64, 20, 20],
+ "nearest_interp_v2_5.tmp_0": [1, 64, 20, 20],
+ "elementwise_add_7": [1, 56, 2, 2],
+ "nearest_interp_v2_0.tmp_0": [1, 256, 2, 2]
+ }
+ max_input_shape = {
+ "x": [1, 3, 1280, 1280],
+ "conv2d_92.tmp_0": [1, 120, 400, 400],
+ "conv2d_91.tmp_0": [1, 24, 200, 200],
+ "conv2d_59.tmp_0": [1, 96, 400, 400],
+ "nearest_interp_v2_1.tmp_0": [1, 256, 200, 200],
+ "conv2d_124.tmp_0": [1, 256, 400, 400],
+ "nearest_interp_v2_2.tmp_0": [1, 256, 400, 400],
+ "nearest_interp_v2_3.tmp_0": [1, 64, 400, 400],
+ "nearest_interp_v2_4.tmp_0": [1, 64, 400, 400],
+ "nearest_interp_v2_5.tmp_0": [1, 64, 400, 400],
+ "elementwise_add_7": [1, 56, 400, 400],
+ "nearest_interp_v2_0.tmp_0": [1, 256, 400, 400]
+ }
+ opt_input_shape = {
+ "x": [1, 3, 640, 640],
+ "conv2d_92.tmp_0": [1, 120, 160, 160],
+ "conv2d_91.tmp_0": [1, 24, 80, 80],
+ "conv2d_59.tmp_0": [1, 96, 160, 160],
+ "nearest_interp_v2_1.tmp_0": [1, 256, 80, 80],
+ "nearest_interp_v2_2.tmp_0": [1, 256, 160, 160],
+ "conv2d_124.tmp_0": [1, 256, 160, 160],
+ "nearest_interp_v2_3.tmp_0": [1, 64, 160, 160],
+ "nearest_interp_v2_4.tmp_0": [1, 64, 160, 160],
+ "nearest_interp_v2_5.tmp_0": [1, 64, 160, 160],
+ "elementwise_add_7": [1, 56, 40, 40],
+ "nearest_interp_v2_0.tmp_0": [1, 256, 40, 40]
+ }
+ min_pact_shape = {
+ "nearest_interp_v2_26.tmp_0": [1, 256, 20, 20],
+ "nearest_interp_v2_27.tmp_0": [1, 64, 20, 20],
+ "nearest_interp_v2_28.tmp_0": [1, 64, 20, 20],
+ "nearest_interp_v2_29.tmp_0": [1, 64, 20, 20]
+ }
+ max_pact_shape = {
+ "nearest_interp_v2_26.tmp_0": [1, 256, 400, 400],
+ "nearest_interp_v2_27.tmp_0": [1, 64, 400, 400],
+ "nearest_interp_v2_28.tmp_0": [1, 64, 400, 400],
+ "nearest_interp_v2_29.tmp_0": [1, 64, 400, 400]
+ }
+ opt_pact_shape = {
+ "nearest_interp_v2_26.tmp_0": [1, 256, 160, 160],
+ "nearest_interp_v2_27.tmp_0": [1, 64, 160, 160],
+ "nearest_interp_v2_28.tmp_0": [1, 64, 160, 160],
+ "nearest_interp_v2_29.tmp_0": [1, 64, 160, 160]
+ }
+ min_input_shape.update(min_pact_shape)
+ max_input_shape.update(max_pact_shape)
+ opt_input_shape.update(opt_pact_shape)
+ elif mode == "rec":
+ min_input_shape = {"x": [1, 3, 32, 10]}
+ max_input_shape = {"x": [args.rec_batch_num, 3, 32, 1024]}
+ opt_input_shape = {"x": [args.rec_batch_num, 3, 32, 320]}
+ elif mode == "cls":
+ min_input_shape = {"x": [1, 3, 48, 10]}
+ max_input_shape = {"x": [args.rec_batch_num, 3, 48, 1024]}
+ opt_input_shape = {"x": [args.rec_batch_num, 3, 48, 320]}
+ else:
+ min_input_shape = {"x": [1, 3, 10, 10]}
+ max_input_shape = {"x": [1, 3, 512, 512]}
+ opt_input_shape = {"x": [1, 3, 256, 256]}
+ config.set_trt_dynamic_shape_info(min_input_shape, max_input_shape,
+ opt_input_shape)
- else:
- config.disable_gpu()
- if hasattr(args, "cpu_threads"):
- config.set_cpu_math_library_num_threads(args.cpu_threads)
else:
- # default cpu threads as 10
- config.set_cpu_math_library_num_threads(10)
- if args.enable_mkldnn:
- # cache 10 different shapes for mkldnn to avoid memory leak
- config.set_mkldnn_cache_capacity(10)
- config.enable_mkldnn()
-
- # enable memory optim
- config.enable_memory_optim()
- #config.disable_glog_info()
-
- config.delete_pass("conv_transpose_eltwiseadd_bn_fuse_pass")
- if mode == 'table':
- config.delete_pass("fc_fuse_pass") # not supported for table
- config.switch_use_feed_fetch_ops(False)
- config.switch_ir_optim(True)
-
- # create predictor
- predictor = inference.create_predictor(config)
- input_names = predictor.get_input_names()
- for name in input_names:
- input_tensor = predictor.get_input_handle(name)
- output_names = predictor.get_output_names()
- output_tensors = []
- for output_name in output_names:
- output_tensor = predictor.get_output_handle(output_name)
- output_tensors.append(output_tensor)
- return predictor, input_tensor, output_tensors, config
+ config.disable_gpu()
+ if hasattr(args, "cpu_threads"):
+ config.set_cpu_math_library_num_threads(args.cpu_threads)
+ else:
+ # default cpu threads as 10
+ config.set_cpu_math_library_num_threads(10)
+ if args.enable_mkldnn:
+ # cache 10 different shapes for mkldnn to avoid memory leak
+ config.set_mkldnn_cache_capacity(10)
+ config.enable_mkldnn()
+ if args.precision == "fp16":
+ config.enable_mkldnn_bfloat16()
+ # enable memory optim
+ config.enable_memory_optim()
+ config.disable_glog_info()
+
+ config.delete_pass("conv_transpose_eltwiseadd_bn_fuse_pass")
+ if mode == 'table':
+ config.delete_pass("fc_fuse_pass") # not supported for table
+ config.switch_use_feed_fetch_ops(False)
+ config.switch_ir_optim(True)
+
+ # create predictor
+ predictor = inference.create_predictor(config)
+ input_names = predictor.get_input_names()
+ for name in input_names:
+ input_tensor = predictor.get_input_handle(name)
+ output_names = predictor.get_output_names()
+ output_tensors = []
+ for output_name in output_names:
+ output_tensor = predictor.get_output_handle(output_name)
+ output_tensors.append(output_tensor)
+ return predictor, input_tensor, output_tensors, config
def get_infer_gpuid():
- cmd = "nvidia-smi"
- res = os.popen(cmd).readlines()
- if len(res) == 0:
- return None
cmd = "env | grep CUDA_VISIBLE_DEVICES"
env_cuda = os.popen(cmd).readlines()
if len(env_cuda) == 0:
@@ -589,5 +603,12 @@ def get_rotate_crop_image(img, points):
return dst_img
+def check_gpu(use_gpu):
+ if use_gpu and not paddle.is_compiled_with_cuda():
+
+ use_gpu = False
+ return use_gpu
+
+
if __name__ == '__main__':
pass
diff --git a/tools/infer_cls.py b/tools/infer_cls.py
index a588cab433442695e3bd395da63e35a2052de501..7522e43907b50b84cc52930ff4eeb8e537cb2c73 100755
--- a/tools/infer_cls.py
+++ b/tools/infer_cls.py
@@ -32,7 +32,7 @@ import paddle
from ppocr.data import create_operators, transform
from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
from ppocr.utils.utility import get_image_file_list
import tools.program as program
@@ -47,7 +47,7 @@ def main():
# build model
model = build_model(config['Architecture'])
- init_model(config, model)
+ load_model(config, model)
# create data ops
transforms = []
diff --git a/tools/infer_det.py b/tools/infer_det.py
index ce16da8dc5fffb3f5fdc633aeb00a386a2d60d4f..bb2cca7362e81494018aa3471664d60bef1b852c 100755
--- a/tools/infer_det.py
+++ b/tools/infer_det.py
@@ -34,7 +34,7 @@ import paddle
from ppocr.data import create_operators, transform
from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
-from ppocr.utils.save_load import init_model, load_dygraph_params
+from ppocr.utils.save_load import load_model
from ppocr.utils.utility import get_image_file_list
import tools.program as program
@@ -59,7 +59,7 @@ def main():
# build model
model = build_model(config['Architecture'])
- _ = load_dygraph_params(config, model, logger, None)
+ load_model(config, model)
# build post process
post_process_class = build_post_process(config['PostProcess'])
diff --git a/tools/infer_e2e.py b/tools/infer_e2e.py
index 1cd468b8e552237af31d985b8b68ddbeecba9c96..96dbac8e83cb8651ca19c05d5a680a4efebc6ff6 100755
--- a/tools/infer_e2e.py
+++ b/tools/infer_e2e.py
@@ -34,7 +34,7 @@ import paddle
from ppocr.data import create_operators, transform
from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
from ppocr.utils.utility import get_image_file_list
import tools.program as program
@@ -68,7 +68,7 @@ def main():
# build model
model = build_model(config['Architecture'])
- init_model(config, model)
+ load_model(config, model)
# build post process
post_process_class = build_post_process(config['PostProcess'],
diff --git a/tools/infer_rec.py b/tools/infer_rec.py
index 29d4b530dfcfb8a3201e12b38c9b9f186f34b627..adc3c1c3c49dcaad5ec8657f5d32b2eca8e10a40 100755
--- a/tools/infer_rec.py
+++ b/tools/infer_rec.py
@@ -33,7 +33,7 @@ import paddle
from ppocr.data import create_operators, transform
from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
from ppocr.utils.utility import get_image_file_list
import tools.program as program
@@ -58,7 +58,7 @@ def main():
model = build_model(config['Architecture'])
- init_model(config, model)
+ load_model(config, model)
# create data ops
transforms = []
@@ -75,9 +75,7 @@ def main():
'gsrm_slf_attn_bias1', 'gsrm_slf_attn_bias2'
]
elif config['Architecture']['algorithm'] == "SAR":
- op[op_name]['keep_keys'] = [
- 'image', 'valid_ratio'
- ]
+ op[op_name]['keep_keys'] = ['image', 'valid_ratio']
else:
op[op_name]['keep_keys'] = ['image']
transforms.append(op)
diff --git a/tools/infer_table.py b/tools/infer_table.py
index f743d87540f7fd64157a808db156c9f62a042d9c..c73e384046d1fadbbec4bf43a63e13aa8d54fc6c 100644
--- a/tools/infer_table.py
+++ b/tools/infer_table.py
@@ -34,11 +34,12 @@ from paddle.jit import to_static
from ppocr.data import create_operators, transform
from ppocr.modeling.architectures import build_model
from ppocr.postprocess import build_post_process
-from ppocr.utils.save_load import init_model
+from ppocr.utils.save_load import load_model
from ppocr.utils.utility import get_image_file_list
import tools.program as program
import cv2
+
def main(config, device, logger, vdl_writer):
global_config = config['Global']
@@ -53,7 +54,7 @@ def main(config, device, logger, vdl_writer):
model = build_model(config['Architecture'])
- init_model(config, model, logger)
+ load_model(config, model)
# create data ops
transforms = []
@@ -104,4 +105,3 @@ def main(config, device, logger, vdl_writer):
if __name__ == '__main__':
config, device, logger, vdl_writer = program.preprocess()
main(config, device, logger, vdl_writer)
-
diff --git a/tools/program.py b/tools/program.py
index ddf39e65c34012ae36efd2752946f737f365b1c1..c1547efbcebc5ee8522aa7f190c44d602b595880 100755
--- a/tools/program.py
+++ b/tools/program.py
@@ -159,7 +159,8 @@ def train(config,
eval_class,
pre_best_model_dict,
logger,
- vdl_writer=None):
+ vdl_writer=None,
+ scaler=None):
cal_metric_during_train = config['Global'].get('cal_metric_during_train',
False)
log_smooth_window = config['Global']['log_smooth_window']
@@ -211,15 +212,15 @@ def train(config,
for epoch in range(start_epoch, epoch_num + 1):
train_dataloader = build_dataloader(
config, 'Train', device, logger, seed=epoch)
- train_batch_cost = 0.0
train_reader_cost = 0.0
- batch_sum = 0
- batch_start = time.time()
+ train_run_cost = 0.0
+ total_samples = 0
+ reader_start = time.time()
max_iter = len(train_dataloader) - 1 if platform.system(
) == "Windows" else len(train_dataloader)
for idx, batch in enumerate(train_dataloader):
profiler.add_profiler_step(profiler_options)
- train_reader_cost += time.time() - batch_start
+ train_reader_cost += time.time() - reader_start
if idx >= max_iter:
break
lr = optimizer.get_lr()
@@ -230,16 +231,34 @@ def train(config,
preds = model(images, data=batch[1:])
if model_type == "kie":
preds = model(batch)
+
+ train_start = time.time()
+ # use amp
+ if scaler:
+ with paddle.amp.auto_cast():
+ if model_type == 'table' or extra_input:
+ preds = model(images, data=batch[1:])
+ else:
+ preds = model(images)
else:
- preds = model(images)
+ if model_type == 'table' or extra_input:
+ preds = model(images, data=batch[1:])
+ else:
+ preds = model(images)
loss = loss_class(preds, batch)
avg_loss = loss['loss']
- avg_loss.backward()
- optimizer.step()
+
+ if scaler:
+ scaled_avg_loss = scaler.scale(avg_loss)
+ scaled_avg_loss.backward()
+ scaler.minimize(optimizer, scaled_avg_loss)
+ else:
+ avg_loss.backward()
+ optimizer.step()
optimizer.clear_grad()
- train_batch_cost += time.time() - batch_start
- batch_sum += len(images)
+ train_run_cost += time.time() - train_start
+ total_samples += len(images)
if not isinstance(lr_scheduler, float):
lr_scheduler.step()
@@ -270,12 +289,13 @@ def train(config,
logs = train_stats.log()
strs = 'epoch: [{}/{}], iter: {}, {}, reader_cost: {:.5f} s, batch_cost: {:.5f} s, samples: {}, ips: {:.5f}'.format(
epoch, epoch_num, global_step, logs, train_reader_cost /
- print_batch_step, train_batch_cost / print_batch_step,
- batch_sum, batch_sum / train_batch_cost)
+ print_batch_step, (train_reader_cost + train_run_cost) /
+ print_batch_step, total_samples,
+ total_samples / (train_reader_cost + train_run_cost))
logger.info(strs)
- train_batch_cost = 0.0
train_reader_cost = 0.0
- batch_sum = 0
+ train_run_cost = 0.0
+ total_samples = 0
# eval
if global_step > start_eval_step and \
(global_step - start_eval_step) % eval_batch_step == 0 and dist.get_rank() == 0:
@@ -328,7 +348,7 @@ def train(config,
global_step)
global_step += 1
optimizer.clear_grad()
- batch_start = time.time()
+ reader_start = time.time()
if dist.get_rank() == 0:
save_model(
model,
@@ -369,7 +389,11 @@ def eval(model,
with paddle.no_grad():
total_frame = 0.0
total_time = 0.0
- pbar = tqdm(total=len(valid_dataloader), desc='eval model:')
+ pbar = tqdm(
+ total=len(valid_dataloader),
+ desc='eval model:',
+ position=0,
+ leave=True)
max_iter = len(valid_dataloader) - 1 if platform.system(
) == "Windows" else len(valid_dataloader)
for idx, batch in enumerate(valid_dataloader):
@@ -404,6 +428,55 @@ def eval(model,
return metric
+def update_center(char_center, post_result, preds):
+ result, label = post_result
+ feats, logits = preds
+ logits = paddle.argmax(logits, axis=-1)
+ feats = feats.numpy()
+ logits = logits.numpy()
+
+ for idx_sample in range(len(label)):
+ if result[idx_sample][0] == label[idx_sample][0]:
+ feat = feats[idx_sample]
+ logit = logits[idx_sample]
+ for idx_time in range(len(logit)):
+ index = logit[idx_time]
+ if index in char_center.keys():
+ char_center[index][0] = (
+ char_center[index][0] * char_center[index][1] +
+ feat[idx_time]) / (char_center[index][1] + 1)
+ char_center[index][1] += 1
+ else:
+ char_center[index] = [feat[idx_time], 1]
+ return char_center
+
+
+def get_center(model, eval_dataloader, post_process_class):
+ pbar = tqdm(total=len(eval_dataloader), desc='get center:')
+ max_iter = len(eval_dataloader) - 1 if platform.system(
+ ) == "Windows" else len(eval_dataloader)
+ char_center = dict()
+ for idx, batch in enumerate(eval_dataloader):
+ if idx >= max_iter:
+ break
+ images = batch[0]
+ start = time.time()
+ preds = model(images)
+
+ batch = [item.numpy() for item in batch]
+ # Obtain usable results from post-processing methods
+ post_result = post_process_class(preds, batch[1])
+
+ #update char_center
+ char_center = update_center(char_center, post_result, preds)
+ pbar.update(1)
+
+ pbar.close()
+ for key in char_center.keys():
+ char_center[key] = char_center[key][0]
+ return char_center
+
+
def preprocess(is_train=False):
FLAGS = ArgsParser().parse_args()
profiler_options = FLAGS.profiler_options
diff --git a/tools/train.py b/tools/train.py
index 05d295aa99718c25b94a123c23d08c2904fe8c6a..f3852469eb198ebfec13713fc4d8f139b2c10f2b 100755
--- a/tools/train.py
+++ b/tools/train.py
@@ -35,7 +35,7 @@ from ppocr.losses import build_loss
from ppocr.optimizer import build_optimizer
from ppocr.postprocess import build_post_process
from ppocr.metrics import build_metric
-from ppocr.utils.save_load import init_model, load_dygraph_params
+from ppocr.utils.save_load import load_model
import tools.program as program
dist.get_world_size()
@@ -97,15 +97,32 @@ def main(config, device, logger, vdl_writer):
# build metric
eval_class = build_metric(config['Metric'])
# load pretrain model
- pre_best_model_dict = load_dygraph_params(config, model, logger, optimizer)
+ pre_best_model_dict = load_model(config, model, optimizer)
logger.info('train dataloader has {} iters'.format(len(train_dataloader)))
if valid_dataloader is not None:
logger.info('valid dataloader has {} iters'.format(
len(valid_dataloader)))
+
+ use_amp = config["Global"].get("use_amp", False)
+ if use_amp:
+ AMP_RELATED_FLAGS_SETTING = {
+ 'FLAGS_cudnn_batchnorm_spatial_persistent': 1,
+ 'FLAGS_max_inplace_grad_add': 8,
+ }
+ paddle.fluid.set_flags(AMP_RELATED_FLAGS_SETTING)
+ scale_loss = config["Global"].get("scale_loss", 1.0)
+ use_dynamic_loss_scaling = config["Global"].get(
+ "use_dynamic_loss_scaling", False)
+ scaler = paddle.amp.GradScaler(
+ init_loss_scaling=scale_loss,
+ use_dynamic_loss_scaling=use_dynamic_loss_scaling)
+ else:
+ scaler = None
+
# start train
program.train(config, train_dataloader, valid_dataloader, device, model,
loss_class, optimizer, lr_scheduler, post_process_class,
- eval_class, pre_best_model_dict, logger, vdl_writer)
+ eval_class, pre_best_model_dict, logger, vdl_writer, scaler)
def test_reader(config, device, logger):