Python 提供了多个图形开发界面的库,几个常用 Python GUI 库如下:
Tkinter: Tkinter 模块(Tk 接口)是 Python 的标准 Tk GUI 工具包的接口 .Tk 和 Tkinter 可以在大多数的 Unix 平台下使用,同样可以应用在 Windows 和 Macintosh 系统里。Tk8.0 的后续版本可以实现本地窗口风格,并良好地运行在绝大多数平台中。
wxPython:wxPython 是一款开源软件,是 Python 语言的一套优秀的 GUI 图形库,允许 Python 程序员很方便的创建完整的、功能健全的 GUI 用户界面。
Jython:Jython 程序可以和 Java 无缝集成。除了一些标准模块,Jython 使用 Java 的模块。Jython 几乎拥有标准的Python 中不依赖于 C 语言的全部模块。比如,Jython 的用户界面将使用 Swing,AWT或者 SWT。Jython 可以被动态或静态地编译成 Java 字节码。
一共三个py文件,分别保存为MyWindow.py (主文件) Qwindow.py (Qt生成的文件) 以及res_rc.py (资源文件),运行效果如下:
原理有什么不懂的可以留言问,我不想讲,代码都贴出来了。资源文件就是把那三张图片用代码存起来了,并没有什么内容,
只是看起来很多。
# MyWindow.py from Qwindow import Ui_mainWindow from PyQt5.QtWidgets import QApplication,QMainWindow,QPushButton import sys from PyQt5.QtCore import Qt from ctypes import * # 获取屏幕上某个坐标的颜色 import pyautogui as pag from threading import Timer class RepeatingTimer(Timer): def run(self): while not self.finished.is_set(): self.function(*self.args, **self.kwargs) self.finished.wait(self.interval) class MyWindow(QMainWindow): def __init__(self): super(MyWindow, self).__init__() self.ui = Ui_mainWindow() self.ui.setupUi(self) self.ui.pushButton_25.clicked.connect(self.get_color) self.ui.pushButton_1.clicked.connect(self.slot1) self.ui.pushButton_2.clicked.connect(self.slot1) self.ui.pushButton_3.clicked.connect(self.slot1) self.ui.pushButton_4.clicked.connect(self.slot1) self.ui.pushButton_5.clicked.connect(self.slot1) self.ui.pushButton_6.clicked.connect(self.slot1) self.ui.pushButton_7.clicked.connect(self.slot1) self.ui.pushButton_8.clicked.connect(self.slot1) self.ui.pushButton_9.clicked.connect(self.slot1) self.ui.pushButton_10.clicked.connect(self.slot1) self.ui.pushButton_11.clicked.connect(self.slot1) self.ui.pushButton_12.clicked.connect(self.slot1) self.ui.start = False self.ui.t = 0 self.ui.buttonrgb = [(255,255,255)]*12 self.ui.buttonrgb1 = [(1,1,1)]*12 self.ui.buttonrgb1 = [(\'#FFFFFF\')]*12 self.ui.setcounts = 0 def get_color(self): self.ui.t = RepeatingTimer(0.2,self.Get_color) self.ui.t.start() def Get_color(self): self.ui.start = True x, y = pag.position() # 返回鼠标的坐标 gdi32 = windll.gdi32 user32 = windll.user32 hdc = user32.GetDC(None) # 获取颜色值 pixel = gdi32.GetPixel(hdc, x, y) # 提取RGB值 r = pixel & 0x0000ff g = (pixel & 0x00ff00) >> 8 b = pixel >> 16 self.ui.rgb = (r, g, b) self.ui.rgb1 = (round(r/255,2) ,round(g/255,2),round(b/255,2)) self.ui.rgb2 = (hex(r*16*16*16*16+g*16*16+b)) self.ui.toolButton.setStyleSheet(\"background-color: rgb\"+str(self.ui.rgb)) def set_colors(self): exec(\'self.ui.pushButton_\' + str(self.ui.setcounts) + \'.setStyleSheet(\'+\'\\\"background-color: rgb\'+str(self.ui.rgb)+\'\\\")\') self.ui.lineEdit.setText(str(list(self.ui.rgb))) self.ui.lineEdit_2.setText(str(list(self.ui.rgb1))) self.ui.lineEdit_3.setText((\'#\'+str(self.ui.rgb2).strip(\'0x\')).upper()) def slot1(self): def round2(x): return round(x,2) RGB = self.sender().palette().button().color().getRgb() RGB1 = self.sender().palette().button().color().getRgbF() RGB = RGB[0:3] RGB1 = RGB1[0:3] RGB1 = tuple(map(round2,RGB1)) self.ui.lineEdit.setText(str(list(RGB))) self.ui.lineEdit_2.setText(str(list(RGB1))) self.ui.lineEdit_3.setText((\'#\'+str(hex(RGB[0]*256*256+RGB[1]*256+RGB[2])).strip(\'0x\')).upper()) self.ui.toolButton.setStyleSheet(\"background-color: rgb\"+str(RGB)) def keyPressEvent(self, event): if self.ui.start ==False: return elif event.key() == Qt.Key_Enter-1: self.ui.t.cancel() self.ui.start = False self.ui.setcounts = self.ui.setcounts%12 +1 self.set_colors() self.ui.buttonrgb[self.ui.setcounts%12 -1] = self.ui.rgb self.ui.buttonrgb1[self.ui.setcounts%12 -1] = self.ui.rgb1 if __name__ == \"__main__\": app = QApplication(sys.argv) Qwindow = MyWindow() Qwindow.show() sys.exit(app.exec_())
Qwindow.py # -*- coding: utf-8 -*- # Form implementation generated from reading ui file \'mainwindow.ui\' # # Created by: PyQt5 UI code generator 5.15.4 # # WARNING: Any manual changes made to this file will be lost when pyuic5 is # run again. Do not edit this file unless you know what you are doing. from PyQt5 import QtCore, QtGui, QtWidgets class Ui_mainWindow(object): def setupUi(self, mainWindow): mainWindow.setObjectName(\"mainWindow\") mainWindow.setEnabled(True) mainWindow.resize(493, 354) palette = QtGui.QPalette() brush = QtGui.QBrush(QtGui.QColor(255, 255, 255)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Button, brush) brush = QtGui.QBrush(QtGui.QColor(255, 255, 255)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Button, brush) brush = QtGui.QBrush(QtGui.QColor(255, 255, 255)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Button, brush) mainWindow.setPalette(palette) icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(\":/icons/res/icons/edit.png\"), QtGui.QIcon.Normal, QtGui.QIcon.Off) mainWindow.setWindowIcon(icon) mainWindow.setStyleSheet(\"\") self.centralwidget = QtWidgets.QWidget(mainWindow) self.centralwidget.setObjectName(\"centralwidget\") self.toolButton = QtWidgets.QToolButton(self.centralwidget) self.toolButton.setGeometry(QtCore.QRect(20, 20, 91, 91)) self.toolButton.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.toolButton.setText(\"\") self.toolButton.setObjectName(\"toolButton\") self.formLayoutWidget = QtWidgets.QWidget(self.centralwidget) self.formLayoutWidget.setGeometry(QtCore.QRect(170, 20, 271, 91)) self.formLayoutWidget.setObjectName(\"formLayoutWidget\") self.formLayout = QtWidgets.QFormLayout(self.formLayoutWidget) self.formLayout.setContentsMargins(0, 0, 0, 0) self.formLayout.setObjectName(\"formLayout\") self.label_2 = QtWidgets.QLabel(self.formLayoutWidget) self.label_2.setAlignment(QtCore.Qt.AlignCenter) self.label_2.setObjectName(\"label_2\") self.formLayout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_2) self.label_3 = QtWidgets.QLabel(self.formLayoutWidget) self.label_3.setAlignment(QtCore.Qt.AlignCenter) self.label_3.setObjectName(\"label_3\") self.formLayout.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_3) self.label = QtWidgets.QLabel(self.formLayoutWidget) self.label.setAlignment(QtCore.Qt.AlignCenter) self.label.setObjectName(\"label\") self.formLayout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label) self.lineEdit = QtWidgets.QLineEdit(self.formLayoutWidget) self.lineEdit.setAlignment(QtCore.Qt.AlignCenter) self.lineEdit.setObjectName(\"lineEdit\") self.formLayout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.lineEdit) self.lineEdit_2 = QtWidgets.QLineEdit(self.formLayoutWidget) self.lineEdit_2.setAlignment(QtCore.Qt.AlignCenter) self.lineEdit_2.setObjectName(\"lineEdit_2\") self.formLayout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.lineEdit_2) self.lineEdit_3 = QtWidgets.QLineEdit(self.formLayoutWidget) self.lineEdit_3.setAlignment(QtCore.Qt.AlignCenter) self.lineEdit_3.setObjectName(\"lineEdit_3\") self.formLayout.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.lineEdit_3) self.pushButton_1 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_1.setGeometry(QtCore.QRect(200, 125, 40, 40)) self.pushButton_1.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_1.setText(\"\") self.pushButton_1.setObjectName(\"pushButton_1\") self.pushButton_2 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_2.setGeometry(QtCore.QRect(240, 125, 40, 40)) self.pushButton_2.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_2.setText(\"\") self.pushButton_2.setObjectName(\"pushButton_2\") self.pushButton_3 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_3.setGeometry(QtCore.QRect(280, 125, 40, 40)) self.pushButton_3.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_3.setText(\"\") self.pushButton_3.setObjectName(\"pushButton_3\") self.pushButton_6 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_6.setGeometry(QtCore.QRect(400, 125, 40, 40)) self.pushButton_6.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_6.setText(\"\") self.pushButton_6.setObjectName(\"pushButton_6\") self.pushButton_4 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_4.setGeometry(QtCore.QRect(320, 125, 40, 40)) self.pushButton_4.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_4.setText(\"\") self.pushButton_4.setObjectName(\"pushButton_4\") self.pushButton_5 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_5.setGeometry(QtCore.QRect(360, 125, 40, 40)) self.pushButton_5.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_5.setText(\"\") self.pushButton_5.setObjectName(\"pushButton_5\") self.label_4 = QtWidgets.QLabel(self.centralwidget) self.label_4.setGeometry(QtCore.QRect(60, 140, 81, 51)) self.label_4.setAlignment(QtCore.Qt.AlignCenter) self.label_4.setTextInteractionFlags(QtCore.Qt.LinksAccessibleByMouse) self.label_4.setObjectName(\"label_4\") self.pushButton_25 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_25.setGeometry(QtCore.QRect(350, 260, 111, 31)) icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(\":/icons/res/icons/ok.png\"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.pushButton_25.setIcon(icon1) self.pushButton_25.setObjectName(\"pushButton_25\") self.pushButton_26 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_26.setEnabled(False) self.pushButton_26.setFlat(True) self.pushButton_26.setGeometry(QtCore.QRect(20, 240, 321, 71)) self.pushButton_26.setStyleSheet(\"background-color: rgb(240, 240, 240)\") icon2 = QtGui.QIcon() icon2.addPixmap(QtGui.QPixmap(\":/icons/res/icons/help.png\"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.pushButton_26.setIcon(icon2) self.pushButton_26.setObjectName(\"pushButton_26\") self.pushButton_9 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_9.setGeometry(QtCore.QRect(280, 165, 40, 40)) self.pushButton_9.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_9.setText(\"\") self.pushButton_9.setObjectName(\"pushButton_9\") self.pushButton_11 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_11.setGeometry(QtCore.QRect(360, 165, 40, 40)) self.pushButton_11.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_11.setText(\"\") self.pushButton_11.setObjectName(\"pushButton_11\") self.pushButton_7 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_7.setGeometry(QtCore.QRect(200, 165, 40, 40)) self.pushButton_7.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_7.setText(\"\") self.pushButton_7.setObjectName(\"pushButton_7\") self.pushButton_10 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_10.setGeometry(QtCore.QRect(320, 165, 40, 40)) self.pushButton_10.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_10.setText(\"\") self.pushButton_10.setObjectName(\"pushButton_10\") self.pushButton_8 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_8.setGeometry(QtCore.QRect(240, 165, 40, 40)) self.pushButton_8.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_8.setText(\"\") self.pushButton_8.setObjectName(\"pushButton_8\") self.pushButton_12 = QtWidgets.QPushButton(self.centralwidget) self.pushButton_12.setGeometry(QtCore.QRect(400, 165, 40, 40)) self.pushButton_12.setStyleSheet(\"background-color: rgb(255, 255, 255)\") self.pushButton_12.setText(\"\") self.pushButton_12.setObjectName(\"pushButton_12\") mainWindow.setCentralWidget(self.centralwidget) self.statusbar = QtWidgets.QStatusBar(mainWindow) self.statusbar.setObjectName(\"statusbar\") mainWindow.setStatusBar(self.statusbar) self.retranslateUi(mainWindow) QtCore.QMetaObject.connectSlotsByName(mainWindow) def retranslateUi(self, mainWindow): _translate = QtCore.QCoreApplication.translate mainWindow.setWindowTitle(_translate(\"mainWindow\", \"取色器\")) self.label_2.setText(_translate(\"mainWindow\", \"0-1\")) self.label_3.setText(_translate(\"mainWindow\", \"#16\")) self.label.setText(_translate(\"mainWindow\", \"0-255\")) self.label_4.setText(_translate(\"mainWindow\", \"历史颜色\")) self.pushButton_25.setText(_translate(\"mainWindow\", \"开始取色\")) self.pushButton_26.setText(_translate(\"mainWindow\", \"点击开始取色后,移动光标至需要取\\n\" \"色的像素点按下回车即可完成取色。\")) import res_rc
# res_rc.py # -*- coding: utf-8 -*- # Resource object code # # 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\\x1f\\x8a\\ \\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\\x1f\\x51\\x49\\x44\\x41\\x54\\x78\\x5e\\xed\\x5d\\x0b\\x98\\x64\\x45\\ \\x75\\x3e\\xe7\\xf6\\xcc\\xec\\xb2\\xab\\xbc\\x04\\x0d\\x3e\\x80\\xac\\x18\\x16\\ \\x23\\x0f\\x83\\x82\\x08\\x28\\x2a\\x2f\\x35\\x4a\\x50\\x44\\x05\\x7c\\x44\\x23\\ \\x18\\x1f\\x2b\\x3b\\xd3\\xf7\\x54\\xcf\\x9a\\x68\\xfb\\x60\\xa7\\x6f\\xd5\\xec\\ \\xac\\x6c\\x7c\\x80\\x02\\x01\\x05\\x34\\xf0\\x29\\x82\\x8a\\x28\\x08\\x8a\\x41\\ \\x89\\x11\\x05\\x44\\x02\\x8a\\x86\\x28\\xa2\\x62\\x24\\x22\\x38\\xb3\\xb0\\xdd\\ \\xf7\\xe4\\x3b\\xeb\\x9d\\xef\\x5b\\x96\\x9d\\xe9\\xbe\\xb7\\xea\\x3e\\xba\\xbb\\ \\xea\\xfb\\xfa\\x5b\\xb1\\xeb\\x9c\\x3a\\xe7\\xaf\\xfb\\x4f\\x75\\xdd\\xaa\\x73\\ \\x0e\\x82\\x6f\\x1e\\x01\\x8f\\xc0\\x82\\x08\\xa0\\xc7\\xc6\\x23\\xe0\\x11\\x58\\ \\x18\\x01\\x4f\\x10\\xff\\x74\\x78\\x04\\x16\\x41\\xc0\\x13\\xc4\\x3f\\x1e\\x1e\\ \\x01\\x4f\\x10\\xff\\x0c\\x78\\x04\\xb2\\x21\\xe0\\x57\\x90\\x6c\\xb8\\x79\\xa9\\ \\x21\\x41\\xc0\\x13\\x64\\x48\\x26\\xda\\xbb\\x99\\x0d\\x01\\x4f\\x90\\x6c\\xb8\\ \\x79\\xa9\\x21\\x41\\xc0\\x13\\x64\\x48\\x26\\xda\\xbb\\x99\\x0d\\x01\\x4f\\x90\\ \\x6c\\xb8\\x79\\xa9\\x21\\x41\\xc0\\x13\\x64\\x48\\x26\\xda\\xbb\\x99\\x0d\\x01\\ \\x4f\\x90\\x6c\\xb8\\x79\\xa9\\x21\\x41\\xc0\\x13\\x64\\x48\\x26\\xda\\xbb\\x99\\ \\x0d\\x01\\x4f\\x90\\x6c\\xb8\\x79\\xa9\\x21\\x41\\xc0\\x13\\x64\\x48\\x26\\xda\\ \\xbb\\x99\\x0d\\x01\\x4f\\x90\\x6c\\xb8\\x79\\xa9\\x21\\x41\\xc0\\x13\\x64\\x48\\ \\x26\\xda\\xbb\\x99\\x0d\\x01\\x4f\\x90\\x6c\\xb8\\x79\\xa9\\x21\\x41\\xc0\\x13\\ \\xa4\\xe0\\x89\\x36\\xc6\\x2c\\x8f\\xe3\\x78\\x07\\x00\\xd8\\xfc\\xa9\\xd5\\x6a\\ \\x3b\\x30\\xf3\\xe6\\xff\\x9d\\xfc\\xbb\\x14\\x00\\x1e\\xdc\\xfa\\x83\\x88\\x9b\\ \\xff\\x3f\\xf9\\x77\\x6c\\x6c\\xec\\xc1\\x55\\xab\\x56\\x3d\\x5c\\xb0\\xe9\\x43\\ \\x39\\x9c\\x27\\x48\\x0e\\xd3\\xde\\x6c\\x36\\xc7\\x96\\x2f\\x5f\\xbe\\xb2\\xd3\\ \\xe9\\xac\\x0c\\x82\\x60\\x25\\x00\\xec\\x0d\\x00\\xf2\\xaf\\x7c\\x96\\x39\\x1a\\ \\xf2\\x37\\x00\\x70\\x2b\\x00\\xdc\\xcc\\xcc\\xb7\\x06\\x41\\x70\\x4b\\x18\\x86\\ \\xb7\\x39\\xd2\\xed\\xd5\\x24\\x08\\x78\\x82\\x38\\x78\\x14\\xb4\\xd6\\x07\\x30\\ \\xf3\\x11\\x88\\xf8\\x42\\x00\\xd8\\x0f\\x00\\x56\\x38\\x50\\x9b\\x45\\x45\\x07\\ \\x00\\x6e\\x61\\xe6\\x5b\\x10\\xf1\\x96\\x4e\\xa7\\x73\\xcb\\xe4\\xe4\\xe4\\x37\\ \\xb3\\x28\\xf2\\x32\\x7f\\x46\\xc0\\x13\\x24\\xc3\\x93\\x20\\x84\\x00\\x80\\xc3\\ \\x99\\xf9\\x30\\x44\\x3c\\x0c\\x00\\x9e\\x9c\\x41\\x4d\\x21\\x22\\xcc\\xfc\\x3b\\ \\x00\\xb8\\x14\\x00\\xbe\\xa0\\x94\\xfa\\x46\\x21\\x83\\x0e\\xd0\\x20\\x9e\\x20\\ \\x3d\\x4e\\xa6\\xd6\\x5a\\x56\\x87\\xe3\\x00\\xe0\\x58\\x00\\xd8\\xa7\\x47\\xb1\\ \\x4a\\x75\\xdb\\x82\\x2c\\x5f\\x1b\\x1d\\x1d\\xbd\\x7a\\x7c\\x7c\\x7c\\xae\\x52\\ \\x06\\x56\\xd0\\x18\\x4f\\x90\\x45\\x26\\x25\\x8a\\xa2\\x7d\\x10\\x51\\x48\\x21\\ \\x9f\\xe7\\x55\\x70\\xfe\\x32\\x9b\\x24\\x64\\x41\\xc4\\xaf\\x20\\xe2\\xd5\\x4b\\ \\x96\\x2c\\xf9\\xbc\\xdf\\xf4\\x6f\\x1b\\x4a\\x4f\\x90\\xad\\x70\\x99\\x9e\\x9e\\ \\xde\\xa5\\xd3\\xe9\\x1c\\x97\\x10\\xe3\\x15\\x99\\x9f\\xc0\\x3e\\x12\\x44\\xc4\\ \\x9f\\xc4\\x71\\xfc\\x59\\x44\\xbc\\x88\\x88\\x7e\\xda\\x47\\xa6\\xe7\\x6e\\xaa\\ \\x27\\x48\\x02\\x71\\x14\\x45\\x7b\\x23\\xe2\\x9b\\x01\\x40\\x3e\\x7f\\x91\\x3b\\ \\xf2\\xd5\\x1c\\x60\\x23\\x00\\x5c\\x5c\\xab\\xd5\\x2e\\x9e\\x98\\x98\\xf0\\xfb\\ \\x15\\xbf\\x49\\x07\\x88\\xa2\\xe8\\xa0\\x2d\\x88\\xb1\\x5d\\x35\\x9f\\xdb\\x52\\ \\xac\\xba\\x06\\x11\\x2f\\x5e\\xb2\\x64\\xc9\\xc5\\xc3\\xfc\\xf3\\x6b\\x68\\x57\\ \\x10\\x63\\xcc\\x91\\xcc\\x2c\\xab\\xc5\\xc9\\xa5\\x3c\\x7e\\x7d\\x32\\xe8\\xfc\\ \\xcf\\xaf\\xd1\\xd1\\xd1\\x68\\x18\\x37\\xf5\\x43\\x47\\x90\\x64\\xc5\\x58\\x93\\ \\x6c\\xbc\\xfb\\xe4\\x31\\xad\\x84\\x99\\x3f\\x40\\xc4\\x28\\x0c\\xc3\\x4b\\x2a\\ \\x61\\x4d\\x41\\x46\\x0c\\x0d\\x41\\x9a\\xcd\\xe6\\xc8\\xb2\\x65\\xcb\\x84\\x18\\ \\xf2\\x59\\x52\\x10\\xbe\\x83\\x38\\xcc\\x85\\x09\\x51\\x86\\xe2\\xd4\\x7e\\x28\\ \\x08\\x62\\x8c\\x79\\xb9\\x10\\x83\\x99\\x9f\\x3f\\x88\\x4f\\x6c\\x09\\x3e\\x3d\\ \\x00\\x00\\x7a\\xcf\\x3d\\xf7\\x8c\\x4e\\x3c\\xf1\\x44\\x39\\xbd\\x1f\\xd8\\x36\\ \\xd0\\x04\\x59\\xbf\\x7e\\xfd\\x6e\\xed\\x76\\x5b\\x88\\xf1\\xae\\x81\\x9d\\xc1\\ \\x12\\x1d\\x63\\xe6\\x1b\\x01\\x20\\x52\\x4a\\x7d\\xb1\\x44\\x33\\x72\\x1d\\x7a\\ \\x60\\x09\\xa2\\xb5\\x7e\\x23\\x22\\xfe\\x33\\x33\\xef\\x95\\x2b\\x82\\x5e\\xb9\\ \\x20\\x70\\x5e\\xbb\\xdd\\x6e\\xac\\x59\\xb3\\x46\\xae\\xb5\\x0c\\x54\\x1b\\x38\\ \\x82\\xc8\\x75\\x72\\x66\\x9e\\x02\\x80\\x77\\x0f\\xd4\\x4c\\x55\\xdf\\x99\\x1f\\ \\x04\\x41\\xb0\\xba\\x5e\\xaf\\x5f\\x5f\\x7d\\x53\\x7b\\xb7\\x70\\xa0\\x08\\x32\\ \\x35\\x35\\x75\\x44\\xad\\x56\\x13\\x72\\x0c\\xd4\\xb5\\x90\\xde\\xa7\\xb3\\xf4\\ \\x9e\\x73\\xcc\\x3c\\xae\\x94\\x3a\\xab\\x74\\x4b\\x1c\\x19\\x30\\x30\\x04\\xd1\\ \\x5a\\xd7\\x01\\x40\\xc8\\x31\\xe2\\x08\\x1b\\x67\\x6a\\x98\\xf9\\xe7\\x88\\x78\\ \\x07\\x00\\xdc\\x89\\x88\\x77\\xb6\\xdb\\xed\\x3b\\x83\\x20\\x98\\x65\\xe6\\xb9\\ \\xf9\\x7f\\xe3\\x38\\x9e\\x5b\\xbe\\x7c\\xf9\\xec\\xfd\\xf7\\xdf\\xdf\\x19\\x1b\\ \\x1b\\xdb\\x69\\x64\\x64\\x64\\xc7\\x20\\x08\\x76\\x8c\\xe3\\x78\\x27\\x44\\xdc\\ \\x11\\x00\\x76\\x8a\\xe3\\x78\\x47\\x44\\x94\\xab\\xf4\\x07\\x26\\x1f\\x67\\x36\\ \\xba\\x54\\x84\\x88\\x1b\\xf6\\xd8\\x63\\x8f\\xf1\\x41\\xd8\\xc0\\xf7\\x3d\\x41\\ \\xa6\\xa6\\xa6\\x56\\x04\\x41\\x30\\x85\\x88\\x27\\xba\\x9c\\x64\\x0b\\x5d\\x7f\\ \\x62\\xe6\\x6f\\x32\\xf3\\x97\\x6a\\xb5\\xda\\x0d\\xdb\\x6f\\xbf\\xfd\\x9d\\xa7\\ \\x9d\\x76\\xda\\x26\\x0b\\x7d\\x0b\\x8a\\x4e\\x4f\\x4f\\x1f\\x18\\xc7\\xf1\\x3c\\ \\x59\\xaa\\x46\\x1a\\x39\\x89\\x5f\\xdd\\xef\\x41\\x5c\\x7d\\x4d\\x10\\x63\\xcc\\ \\xc1\\xcc\\x7c\\x7e\\x12\\xa9\\x97\\xc7\\x33\\xd8\\x93\\x4e\\x09\\x4e\\x02\\x80\\ \\x6f\\xc5\\x71\\x7c\\xdd\\xf7\\xbf\\xff\\xfd\\x2f\\x5d\\x7a\\xe9\\xa5\\xa5\\xbd\\ \\xfa\\xd4\\x5a\\xbf\\x0c\\x00\\xe6\\x3f\\x7f\\xd9\\x93\\x03\\x39\\x75\\x42\\xc4\\ \\x5f\\x01\\xc0\\x78\\x3f\\x1f\\x2e\\xf6\\x2d\\x41\\xa2\\x28\\x3a\\x2a\\x08\\x82\\ \\x2f\\x30\\xf3\\xe3\\x72\\x9a\\xdf\\x6e\\x6a\\xff\\x83\\x99\\xaf\\x0a\\x82\\xe0\\ \\xab\\x61\\x18\\xfe\\x47\\xb7\\xce\\x65\\x7c\\x3f\\x3d\\x3d\\xfd\\xdc\\x38\\x8e\\ \\x8f\\x02\\x80\\x23\\x01\\xe0\\x45\\x65\\xd8\\x20\\x63\\x32\\xf3\\x07\\x94\\x52\\ \\xcd\\xb2\\xc6\\xb7\\x19\\xb7\\x2f\\x09\\x12\\x45\\xd1\\x09\\x88\\x28\\x51\\x72\\ \\x45\\xb7\\xca\\x93\\x62\\x21\\x40\\xd6\\xad\\x5b\\xf7\\x57\\x9d\\x4e\\xe7\\x55\\ \\x00\\x70\\x12\\x00\\xec\\x5b\\x34\\x70\\x00\\xb0\\x8e\\x88\\x64\\x9f\\xd8\\x57\\ \\xad\\xef\\x08\\x12\\x45\\xd1\\xdb\\x11\\xf1\\x13\\x05\\xa3\\xfc\\x79\\x79\\xd7\\ \\x4f\\x44\\x57\\x16\\x3c\\x6e\\x2e\\xc3\\x19\\x63\\x4e\\x8a\\xe3\\xf8\\x24\\x44\\ \\x94\\x1b\\x06\\x45\\xb6\\xb3\\x89\\xe8\\xed\\x45\\x0e\\x68\\x3b\\x56\\x5f\\x11\\ \\x24\\x8a\\xa2\\x4f\\x20\\x62\\x91\\x00\\x5f\\xc8\\xcc\\xe7\\x29\\xa5\\xae\\xb3\\ \\x05\\xba\\x8a\\xf2\\xad\\x56\\xeb\\xb0\\x20\\x08\\x64\\x45\\x91\\x8f\\xa4\\x1e\\ \\x2a\\xa2\\x5d\\x4c\\x44\\x7d\\x73\\x83\\xba\\x6f\\x08\\xa2\\xb5\\xbe\\x06\\x00\\ \\x5e\\x52\\xc4\\x0c\\x32\\xf3\\xa7\\x64\\xc5\\x50\\x4a\\xc9\\x55\\x8a\\x81\\x6f\\ \\xad\\x56\\x6b\\xf7\\x20\\x08\\xe4\\x60\\xb5\\xa8\\x9f\\x40\\x57\\x10\\x91\\x84\\ \\x31\\x57\\xbe\\xf5\\x05\\x41\\xb4\\xd6\\x17\\x03\\xc0\\xeb\\x0b\\x40\\xf3\\x5b\\ \\x00\\xd0\\x22\\xa2\\xab\\x0a\\x18\\xab\\x72\\x43\\xc8\\x41\\x6b\\x10\\x04\\x0d\\ \\x44\\x3c\\xa6\\x00\\xe3\\xae\\x23\\xa2\\x17\\x17\\x30\\x8e\\xd5\\x10\\x95\\x27\\ \\x88\\xd6\\xfa\\x23\\x00\\xf0\\x1e\\x2b\\x2f\\xbb\\x0b\\xff\\x41\\x0e\\x19\\x89\\ \\x48\\x77\\xef\\x3a\\xf8\\x3d\\xb4\\xd6\\xb2\\x9a\\x34\\x0a\\x48\\x67\\xf4\\x4d\\ \\x22\\x2a\\xed\\xed\\x5a\\x2f\\x33\\x59\\x69\\x82\\x68\\xad\\x65\\x92\\xe4\\x74\\ \\x3c\\xcf\\x76\\x11\\x22\\xb6\\xfa\\xfd\\x40\\xcb\\x35\\x40\\xc9\\x01\\xac\\xac\\ \\x26\\x6f\\x73\\xad\\x7b\\x2b\\x7d\\x57\\x11\\xd1\\x4b\\x73\\x1e\\x23\\xb3\\xfa\\ \\xca\\x12\\x44\\xde\\xb4\\x30\\xf3\\x45\\x99\\x3d\\xeb\\x22\\x88\\x88\\x0f\\xc5\\ \\x71\\x1c\\x0e\\xd2\\xbd\\xa1\\x3c\\xb0\\x32\\xc6\\x1c\\xcf\\xcc\\xeb\\x00\\x20\\ \\xcf\\x43\\x47\\x55\\xd5\\xd5\\xbb\\x92\\x04\\x49\\xde\\xae\\x7c\\x39\\xaf\\x37\\ \\x2b\\x88\\xf8\\x9d\\x4e\\xa7\\x13\\x36\\x1a\\x8d\\xef\\xe4\\xf1\\x50\\x0d\\x9a\\ \\x4e\\xad\\xf5\\x33\\x00\\x60\\x1a\\x00\\x5e\\x99\\x97\\x6f\\x41\\x10\\xbc\\xb0\\ \\x8a\\x37\\x81\\x2b\\x47\\x90\\xb5\\x6b\\xd7\\xee\\x2a\\x59\\xff\\x98\\x79\\xff\\ \\x3c\\x26\\x83\\x99\\xcf\\x9a\\x9b\\x9b\\x0b\\x9b\\xcd\\xe6\\x43\\x79\\xe8\\x77\\ \\xa1\\x33\\x8a\\xa2\\x27\\xd7\\x6a\\xb5\\x7d\\xe3\\x38\\x96\\x03\\xbd\\x5f\\xc5\\ \\x71\\x7c\\xdb\\x8a\\x15\\x2b\\x6e\\x2f\\xfb\\xf2\\x9f\\xd6\\xfa\\x8c\\x24\\x64\\ \\xd9\\x85\\x9b\\x8f\\xd1\\x21\\x17\\x31\\xc3\\x30\\xfc\\xef\\x5c\\x94\\x67\\x54\\ \\x5a\\x39\\x82\\x44\\x51\\x74\\x0e\\x22\\xbe\\x35\\xa3\\x3f\\x8b\\x89\\x75\\x24\\ \\xb2\\xb0\\xca\\x3f\\xa9\\x8c\\x31\\x9a\\x99\\xe5\\xb4\\xfb\\xe9\\xdb\\x70\\x44\\ \\xca\\x1f\\xdc\\x2a\\x37\\x65\\xcb\\xbc\\xdb\\xa4\\xb5\\x96\\xb7\\x89\\xb2\\x9a\\ \\xe4\\x91\\x8f\\xf8\\xb6\\xd9\\xd9\\xd9\\x67\\x37\\x9b\\xcd\\x76\\x0e\\xf3\\x9f\\ \\x49\\x65\\xa5\\x08\\x62\\x8c\\x39\\x4d\\xfe\\xc2\\x67\\xf2\\x64\\x71\\xa1\\xff\\ \\x93\\xdb\\xbe\\x61\\x18\\xca\\x59\\x4a\\xe5\\x5a\\x92\\xb4\\xee\\x02\\x00\\x38\\ \\xb8\\x47\\xe3\\x3e\\x4d\\x44\\x6f\\xea\\xb1\\xaf\\xf3\\x6e\\xc6\\x98\\x67\\x25\\ \\xfb\\x92\\xa3\\x9d\\x2b\\x07\\x38\\x87\\x88\\xf2\\x7e\\x31\\xd0\\xb3\\xd9\\x95\\ \\x21\\xc8\\xd4\\xd4\\xd4\\x81\\xb5\\x5a\\xed\\x6a\\x89\\x7b\\xe8\\xd9\\xfa\\xde\\ \\x3a\\xfe\\x4f\\x10\\x04\\xc7\\xd6\\xeb\\x75\\x89\\xc7\\xa8\\x5c\\x33\\xc6\\xbc\\ \\x9f\\x99\\xb3\\x5c\\xe4\\xfb\\x3d\\x11\\xed\\x52\\xa6\\x43\\x5a\\x6b\\x49\\x01\\ \\xf4\\x9a\\x1c\\x6c\\x78\\x3f\\x11\\x7d\\x30\\x07\\xbd\\xa9\\x55\\x56\\x86\\x20\\ \\x51\\x14\\x7d\\x1d\\x11\\xe5\\xe6\\xa9\\xcb\\xf6\\xa3\\xd9\\xd9\\xd9\\xe7\\x57\\ \\x75\\xbf\\x31\\x3d\\x3d\\xfd\\xcc\\x38\\x8e\\x7f\\x9c\\xd5\\x61\\x59\\x6d\\x95\\ \\x52\\xff\\x98\\x55\\xde\\x85\\x5c\\x5e\\x24\\x41\\xc4\\xb7\\x84\\x61\\xf8\\xaf\\ \\x2e\\x6c\\xb4\\xd1\\x51\\x09\\x82\\xe4\\xb4\\xf9\\xbb\\x81\\x88\\xa4\\x76\\x47\\ \\x65\\x9b\\xd6\\xfa\\x26\\x00\\xf8\\x1b\\x1b\\x03\\x99\\xf9\\xc8\\xb2\\xeb\\x7e\\ \\xe4\\x44\\x92\\x7b\\x66\\x67\\x67\\xf7\\x6e\\x36\\x9b\\xb3\\x36\\xf8\\xd8\\xca\\ \\x96\\x4e\\x10\\x63\\xcc\\x71\\xcc\\xec\\x34\\x6d\\x0c\\x33\\xdf\\xa5\\x94\\x92\\ \\x57\\x93\\x95\\x6d\\x0e\\x0f\\x41\\xbf\\x97\\x90\\x44\\x36\\xf1\\xa5\\xb5\\x3c\\ \\x48\\xc2\\xcc\\xef\\x56\\x4a\\x7d\\xb4\\x34\\xa7\\xca\\x4e\\x5e\\xbd\\x61\\xc3\\ \\x86\\x25\\x1b\\x37\\x6e\\x94\\x2c\\x18\\x07\\x39\\x04\\xe1\\x57\\x44\\xf4\\x54\\ \\x87\\xfa\\x72\\x51\\x15\\x45\\xd1\\xcd\\x88\\xe8\\xe4\\x55\\xb6\\xe4\\x18\\x56\\ \\x4a\\xc9\\x26\\xbf\\xd4\\xa6\\xb5\\xde\\xe0\\x32\\x9b\\x0c\\x33\\xff\\x50\\x29\\ \\x65\\xb5\\xc2\\xda\\x02\\x52\\xea\\x0a\\xa2\\xb5\\xfe\\x00\\x00\\xbc\\xcf\\xd6\\ \\x89\\x2d\\xe4\\xef\\xaf\\xd5\\x6a\\x07\\x4c\\x4c\\x4c\\xfc\\xd2\\xa1\\x4e\\xe7\\ \\xaa\\x66\\x66\\x66\\x76\\x6e\\xb7\\xdb\\xbf\\x77\\xa8\\xf8\\x4c\\x22\\x3a\\xdd\\ \\xa1\\xbe\\xcc\\xaa\\xb4\\xd6\\x33\\x00\\xb0\\x3a\\xb3\\x82\\xad\\x04\\x89\\xa8\\ \\xd4\\x67\\xb4\\xb4\\xc1\\x8d\\x31\\x87\\x30\\xb3\\xac\\x1e\\xae\\xb2\\x90\\xcc\\ \\xc5\\x71\\xfc\\xea\\x46\\xa3\\xf1\\x55\\x57\\x93\\x93\\x97\\x9e\\x56\\xab\\xf5\\ \\x82\\x20\\x08\\xe4\\xe6\\xb0\\x93\\x86\\x88\\xd7\\x87\\x61\\x28\\x25\\xe2\\x2a\\ \\xd1\\xb4\\xd6\\x72\\x43\\xe1\\x10\\x17\\xc6\\x0c\\x2d\\x41\\xa2\\x28\\xfa\\xb2\\ \\xcb\\x88\\x36\\x66\\x7e\\xb5\\x52\\xea\\x0b\\x2e\\x26\\x25\\x6f\\x1d\\xc6\\x98\\ \\xf1\\xe4\\x1c\\xc1\\xc9\\x50\\xcc\\xfc\\x90\\x52\\xea\\xf1\\x4e\\x94\\x39\\x52\\ \\xa2\\xb5\\x66\\x17\\xaa\\x86\\x92\\x20\\x51\\x14\\xbd\\x0b\\x11\\xff\\xc5\\x05\\ \\x80\\x89\\x8e\\x90\\x88\\xe4\\x74\\xb7\\x2f\\x5a\\x72\\x1a\\x2d\\x31\\x2e\\xae\\ \\xda\\xcf\\x88\\xa8\\x52\\x29\\x56\\xa3\\x28\\x7a\\x2a\\x22\\xda\\xfe\\xd4\\xbd\\ \\x93\\x88\\xa4\\xb6\\x7c\\x69\\xad\\xf0\\x9f\\x58\\x53\\x53\\x53\\x7b\\x05\\x41\\ \\x70\\x3d\\x22\\xee\\xe6\\xc2\\x6b\\x44\\xfc\\x4c\\x18\\x86\\x6f\\x74\\xa1\\xab\\ \\x28\\x1d\\xad\\x56\\x6b\\xdf\\x20\\x08\\x6e\\x75\\x38\\xde\\x65\\x44\\x24\\x57\\ \\x54\\x2a\\xd5\\xb4\\xd6\\x72\\x88\\x68\\x53\\x4f\\x44\\x13\\x91\\x2a\\xd3\\xa9\\ \\xc2\\x09\\xa2\\xb5\\x96\\x84\\x0b\\xae\\xe2\\xca\\x6f\\x1d\\x1b\\x1b\\x3b\\xfa\\ \\xf4\\xd3\\x4f\\xff\\x6d\\x99\\x20\\xa6\\x1d\\xfb\\x92\\x4b\\x2e\\xa9\\xdd\\x7d\\ \\xf7\\xdd\\xff\\x07\\x00\\x4e\\x7e\\x16\\x55\\x39\\xad\\x8e\\xe5\\xa6\\xfd\\x30\\ \\x22\\xba\\x21\\x2d\\xbe\\x2e\\xfb\\x17\\x4a\\x90\\xa4\\xac\\xf2\\x0f\\x1d\\x16\\ \\xb0\\x39\\x86\\x88\\xbe\\xee\\x12\\x90\\xa2\\x74\\x69\\xad\\xff\\x1d\\x00\\x0e\\ \\x75\\x31\\x1e\\x22\\xbe\\x2a\\x0c\\xc3\\xcb\\x5c\\xe8\\xca\\x43\\x87\\xd6\\x5a\\ \\xae\\x10\\x49\\x6e\\xae\\x34\\x4d\\x42\\x9f\\x27\\xd3\\x08\\xe4\\xd1\\xb7\\x50\\ \\x82\\x68\\xad\\x23\\x00\\x20\\x47\\x8e\\xf4\\xd5\\xbe\\x63\\x6b\\x9f\\x8d\\x31\\ \\x27\\x32\\xf3\\xbf\\x39\\xc0\\xe2\\x7c\\x22\\xfa\\x7b\\x07\\x7a\\x72\\x55\\xa1\\ \\xb5\\x3e\\x17\\x00\\xde\\xd2\\xe3\\x20\\x9f\\x24\\xa2\\xd3\\x7a\\xec\\x9b\\x6b\\ \\xb7\\xc2\\x08\\x22\\x31\\x0e\\x88\\x28\\xab\\xc7\\x13\\x1d\\x78\\x54\\xe9\\x30\\ \\xcd\\x5e\\xfd\\xd3\\x5a\\xcb\\xe1\\x9e\\xd5\\xfe\\x69\\x64\\x64\\xe4\\x09\\xe3\\ \\xe3\\xe3\\xf7\\xf7\\x3a\\x66\\x99\\xfd\\xb4\\xd6\\x9f\\x03\\x80\\xd7\\x2e\\x64\\ \\x83\\x44\\x79\\x32\\xf3\\x05\\x44\\x54\\x99\\x82\\x47\\x85\\x11\\x44\\x6b\\x2d\\ \\xb5\\x01\\x25\\xe0\\xc6\\x45\\x3b\\x82\\x88\\x9c\\x9d\\x23\\xb8\\x30\\x28\\xab\\ \\x0e\\xad\\xf5\\xff\\x02\\xc0\\x13\\xb2\\xc8\\x57\\xe1\\x1e\\x56\\x5a\\xbb\\xd7\\ \\xaf\\x5f\\xbf\\x62\\xd3\\xa6\\x4d\\x92\\xf2\\xe7\\x51\\xd1\\x89\\xb2\\x9a\\x8e\\ \\x8d\\x8d\\x7d\\x6e\\xf5\\xea\\xd5\\x92\\x40\\xa3\\x32\\xad\\x10\\x82\\x24\\x45\\ \\x6d\\x64\\xf5\\x70\\x71\\x3f\\xaa\\xf4\\x37\\x1b\\xae\\x67\\x4f\\x6b\\x7d\\x61\\ \\x86\\x72\\xd4\\x6f\\x22\\xa2\\x4f\\xbb\\xb6\\xc5\\xeb\\x7b\\x34\\x02\\x85\\x10\\ \\x44\\x6b\\xfd\\x4e\\x00\\x70\\x71\\xe9\\xec\\xb6\\xd1\\xd1\\xd1\\xc3\\xab\\xf6\\ \\x57\\xc6\\xc5\\x43\\x95\\x9c\\x8d\\x08\\x46\\x3b\\x2f\\xa6\\x8f\\x99\\xbf\\x06\\ \\x00\\xff\\xa0\\x94\\xba\\xc7\\xc5\\xb8\\x5e\\xc7\\xe2\\x08\\x14\\x45\\x10\\xc9\\ \\x7e\\x6e\\x7d\\x21\\x11\\x11\\x4f\\x0e\\xc3\\xd0\\xe5\\x01\\x5b\\xa5\\x9e\\x0f\\ \\x63\\xcc\\x7e\\x71\\x1c\\x4b\\x25\\xde\\xfd\\x83\\x20\\xd8\\x0f\\x00\\xe4\\xbf\\ \\xef\\x45\\xc4\\x9b\\x98\\xf9\\x47\\x41\\x10\\xdc\\x1e\\x86\\xe1\\xe5\\x95\\x32\\ \\x7a\\xc0\\x8d\\xc9\\x9d\\x20\\x51\\x14\\xbd\\x08\\x11\\xaf\\x75\\x80\\xe3\\x95\\ \\x44\\x54\\x74\\xb2\\x65\\x07\\x66\\x7b\\x15\\xfd\\x8c\\x40\\xee\\x04\\x71\\x98\\ \\x19\\xf1\\x04\\x22\\x92\\x2c\\xeb\\xbe\\x79\\x04\\x0a\\x43\\x20\\x57\\x82\\x48\\ \\xbc\\xc7\\xdc\\xdc\\xdc\\x1d\\x88\\xb8\\xa7\\xa5\\x47\\x7d\\x91\\xc7\\xd5\\xd2\\ \\x47\\x2f\\x5e\\x41\\x04\\x72\\x25\\x88\\xab\\xc3\\x30\\x44\\x7c\\x43\\x18\\x86\\ \\xf2\\xa6\\xc7\\x37\\x8f\\x40\\xa1\\x08\\xe4\\x4a\\x10\\xad\\xb5\\xa4\\x0e\\x95\\ \\xda\\x13\\x36\\xed\\x46\\x22\\x72\\x12\\x5b\\x60\\x63\\x84\\x97\\x1d\\x4e\\x04\\ \\x72\\x23\\xc8\\xba\\x75\\xeb\\x9e\\xd6\\xe9\\x74\\xfe\\x0b\\x00\\x96\\xdb\\x40\\ \\x1b\\xc7\\xf1\\xa9\\x8d\\x46\\x43\\xea\\x75\\xf8\\xe6\\x11\\x28\\x1c\\x81\\xdc\\ \\x08\\xe2\\x28\\xe6\\xe3\\xfe\\x91\\x91\\x91\\x67\\xf4\\xcb\\x55\\x8a\\xc2\\x67\\ \\xcf\\x0f\\x98\\x3b\\x02\\xb9\\x11\\xc4\\x51\\x96\\x8b\\x8b\\x88\\xe8\\x94\\xdc\\ \\x51\\xf0\\x03\\x78\\x04\\x16\\x40\\x20\\x4f\\x82\\x48\\x8d\\x6c\\xab\\xfc\\xad\\ \\xcc\\x7c\\x8a\\x52\\x2a\\xb7\\x12\\x08\\xfe\\xa9\\xf0\\x08\\x74\\x43\\x20\\x17\\ \\x82\\x24\\x09\\x19\\x6c\\x4b\\x0b\\x0c\\xcc\\xcf\\x2b\\x39\\x21\\x67\\xe6\\xbd\\ \\x01\\xe0\\xa9\\xcc\\xbc\\x65\\xb1\\x4c\\xb9\\x98\\x77\\x77\\x1c\\xc7\\x37\\x4f\\ \\x4e\\x4e\\xde\\xdd\\x6d\\xb2\\xfc\\xf7\\xc5\\x23\\x90\\x0b\\x41\\xb4\\xd6\\x92\\ \\xf6\\x45\\xd2\\xbf\\xd8\\xb4\\xbe\\xfe\\x79\\xa5\\xb5\\x7e\\x3a\\x33\\x8f\\x23\\ \\xa2\\xdc\\x5c\\x7d\\x4a\\x0f\\x40\\xfc\\x88\\x99\\xbf\\x30\\x36\\x36\\x76\\xf6\\ \\xea\\xd5\\xab\\x7f\\xdd\\x43\\x7f\\xdf\\xa5\\x00\\x04\\x72\\x21\\x88\\x31\\xe6\\ \\x0a\\x66\\x7e\\x85\\x8d\\xfd\\xfd\\xfc\\xf3\\x2a\\x8a\\x22\\xc9\\x51\\xb5\\x06\\ \\x11\\x77\\xcd\\x80\\xc1\\xbd\\xcc\\x6c\\x94\\x52\\x52\\x9b\\xd1\\xb7\\x92\\x11\\ \\xc8\\x85\\x20\\x5a\\x6b\\xc9\\xa7\\xba\\x9d\\x85\\x6f\\x1b\\x11\\x71\\x8f\\x30\\ \\x0c\\xef\\xb3\\xd0\\x51\\x8a\\xa8\\x45\\xb6\\xf6\\x47\\xd9\\x5b\\xe5\\x38\\xf3\\ \\x52\\x80\\x2d\\x69\\x50\\xe7\\x04\\xd1\\x5a\\x4b\\x9c\\xb5\\xc4\\x5b\\xdb\\xb4\\ \\xcb\\x89\\xe8\\xef\\x6c\\x14\\x94\\x21\\xeb\\x20\\x8b\\xc7\\xd6\\x66\\x9f\\x48\\ \\x44\\x97\\x96\\xe1\\x8b\\x1f\\xf3\\xcf\\x08\\x38\\x27\\x88\\x8b\\xbf\\xa0\\x88\\ \\xf8\\xee\\x30\\x0c\\x5d\\xc4\\x8f\\x14\\x36\\xcf\\xeb\\xd7\\xaf\\xdf\\x6d\\xd3\\ \\xa6\\x4d\\xdf\\xb7\\x7d\\x73\\xb7\\x95\\xc1\\xf7\\x8e\\x8e\\x8e\\x3e\\xc7\\xef\\ \\x49\\x0a\\x9b\\xc6\\xc7\\x0c\\x94\\x07\\x41\\x3e\\xcb\\xcc\\xaf\\xb3\\x71\\x89\\ \\x99\\x9f\\xa9\\x94\\x92\\x53\\xf8\\xbe\\x69\\x2e\\xfe\\x30\\x6c\\xcb\\x59\\xff\\ \\x53\\xab\\xdc\\x47\\xc0\\x39\\x41\\xb4\\xd6\\x12\\x5a\\x7b\\x40\\x56\\xb7\\x98\\ \\xf9\\x27\\x4a\\x29\\x79\\x25\\xda\\x37\\xad\\xd5\\x6a\\xed\\x90\\x24\\x82\\xdb\\ \\x3d\\x07\\xa3\\xef\\x20\\xa2\\x7d\\x72\\xd0\\xeb\\x55\\xf6\\x80\\x40\\x1e\\x04\\ \\x99\\x03\\x80\\xa5\\x3d\\x8c\\xbd\\xcd\\x2e\\x49\\x91\\xca\\xf7\\x64\\x95\\x2f\\ \\x43\\x4e\\x6b\\x2d\\x55\\x9e\\x3e\\x9e\\xe3\\xd8\\x7b\\x11\\xd1\\xcf\\x72\\xd4\\ \\xef\\x55\\x2f\\x80\\x80\\x53\\x82\\x4c\\x4d\\x4d\\xed\\x59\\xab\\xd5\\x6c\\xcb\\ \\xf8\\xbe\\x95\\x88\\xce\\xeb\\xa7\\x19\\x4b\\x99\\xf3\\x29\\xb5\\x6b\\xcc\\x7c\\ \\xbc\\x52\\xca\\x69\\x91\\xa1\\xd4\\x46\\x0c\\xa9\\x80\\x53\\x82\\x68\\xad\\x8f\\ \\x05\\x00\\xdb\\xf2\\x03\\xa5\\xa7\\x9b\\x4c\\xfb\\x2c\\x68\\xad\\x25\\x91\\x42\\ \\x1e\\x15\\x5f\\x37\\x9b\\xc2\\xcc\\xab\\xfd\\xb9\\x48\\xda\\x59\\x71\\xd3\\xdf\\ \\x29\\x41\\xe4\\x80\\x0c\\x11\\xd7\\xdb\\x98\\x16\\x04\\xc1\\xae\\xf5\\x7a\\x5d\\ \\x72\\x45\\x0d\\x64\\xcb\\x58\\x16\\x60\\x9c\\x88\\xac\\x70\\x1d\\x48\\x30\\x0b\\ \\x70\\xca\\x29\\x41\\x1c\\x24\\xa6\\xfe\\x5f\\x22\\xca\\x72\\xfa\\x5c\\x00\\x54\\ \\xf6\\x43\\x4c\\x4d\\x4d\\xad\\xa8\\xd5\\x6a\\x59\\xf6\\x12\\x3e\\x1e\\xdf\\x1e\\ \\xfe\\x4c\\x1a\\x5c\\x13\\xe4\\x3a\\x00\\x38\\x22\\x93\\x25\\x7f\\x16\\xaa\\x7c\\ \\x65\\x5a\\x0b\\xdf\\x20\\x8a\\xa2\\x97\\x20\\xe2\\x35\\x69\\x75\\x04\\x41\\x70\\ \\x50\\xbd\\x5e\\xff\\xcf\\xb4\\x72\\x83\\xd8\\x7f\\x66\\x66\\x66\\xaf\\x38\\x8e\\ \\x77\\xda\\xb4\\x69\\xd3\\x5d\\x93\\x93\\x93\\x92\\x21\\x3f\\xd7\\xe6\\x94\\x20\\ \\xc6\\x98\\x1f\\x30\\xf3\\xb3\\x2d\\x2c\\x3e\\x8f\\x88\\xde\\x6a\\x21\\x5f\\x69\\ \\x51\\x63\\xcc\\xdb\\x98\\xf9\\x93\\x19\\x8c\\xdc\\x8d\\x88\\x7e\\x93\\x41\\x6e\\ \\x20\\x44\\xb4\\xd6\\xff\\xc0\\xcc\\xef\\x40\\x44\\x79\\xfd\\xbf\\x6c\\x0b\\xa7\\ \\xe4\\x06\\xb4\\xe4\\x0b\\xd3\\xf5\\x7a\\xdd\\xf6\\xf6\\xc6\\x36\\xb1\\x72\\x4a\\ \\x10\\xad\\xb5\\xfc\\x7c\\x58\\x91\\x75\\x56\\x10\\xf1\\x7d\\x61\\x18\\x7e\\x28\\ \\xab\\x7c\\xd5\\xe5\\x8c\\x31\\x6b\\x99\\x39\\x6d\\x4a\\xff\\x47\\x88\\x68\\x49\\ \\xd5\\x7d\\xcb\\xcb\\x3e\\xad\\xf5\\xbf\\x02\\xc0\\x9b\\xbb\\xe9\\x67\\xe6\\x19\\ \\xa5\\xd4\\x44\\xb7\\x7e\\x69\\xbf\\x77\\x4d\\x90\\xcc\\x89\\x98\\x13\\xc3\\xfb\\ \\xba\\xa4\\x41\\x37\\xf0\\xbb\\x65\\x37\\xdf\\x96\\x3c\\x22\\xde\\x15\\x86\\xa1\\ \\x8b\\x9c\\xc6\\xdd\\xcc\\xab\\xdc\\xf7\\x5a\\x6b\\x59\\x35\\x9f\\x94\\xc2\\x30\\ \\xe7\\x35\\x45\\x5c\\x13\\x64\\x93\\x4d\\xd5\\x5a\\x66\\x7e\\xa7\\x52\\x2a\\xcf\\ \\x03\\xb7\\x14\\x58\\xbb\\xef\\xaa\\xb5\\xce\\x92\\x82\\x75\\x28\\x73\\x82\\x45\\ \\x51\\xb4\\x0e\\x11\\xc7\\xd3\\xce\\x42\\x10\\x04\\xcf\\xa9\\xd7\\xeb\\x37\\xa5\\ \\x95\\x5b\\xa8\\xbf\\x33\\x82\\x24\\x19\\xdc\\x1f\\xb2\\x31\\x8c\\x99\\xdf\\xa2\\ \\x94\\x92\\x25\\x75\\x20\\x9b\\xd6\\xfa\\x77\\x00\\xb0\\x4b\\x1a\\xe7\\xa4\\x5e\\ \\x86\\x52\\xaa\\xeb\\x4f\\x8c\\x34\\x3a\\xab\\xde\\x57\\x6b\\xfd\\x37\\x00\\x70\\ \\x23\\x00\\x8c\\x66\\xb0\\xf5\\x1a\\x22\\x3a\\x2a\\x83\\x5c\\xbe\\x7b\\x90\\xa4\\ \\x40\\x8e\\xc4\\xa1\\xdb\\xb4\\xd7\\x11\\x91\\x8b\\xaa\\x4b\\x36\\x36\\xe4\\x26\\ \\x9b\\xe5\\x0c\\x84\\x99\\x3f\\xa4\\x94\\x7a\\x5f\\x6e\\x46\\x55\\x50\\xb1\\x6d\\ \\x35\\x80\\x24\\x13\\xce\\x5d\\x2e\\x5c\\x73\\xb6\\x82\\x24\\xf5\\x07\\x6f\\xb7\\ \\x31\\x8a\\x99\\x8f\\x53\\x4a\\x5d\\x61\\xa3\\xa3\\xaa\\xb2\\x33\\x33\\x33\\x3b\\ \\xb7\\xdb\\xed\\xdf\\x67\\xb0\\xef\\x6d\\x44\\x74\\x4e\\x06\\xb9\\xbe\\x15\\xe9\\ \\x75\\x63\\xbe\\x90\\x83\\x71\\x1c\\xbf\\xac\\xd1\\x68\\xd8\\xde\\xe8\\xd8\\xac\\ \\xde\\x25\\x41\\x9e\\x87\\x88\\xdf\\xb5\\x99\\x15\\x44\\x3c\\x2a\\x0c\\xc3\\xd4\\ \\xe7\\x04\\x36\\x63\\x16\\x25\\xab\\xb5\\x96\\x1b\\xce\\x72\\xd3\\x39\\x55\\x8b\\ \\xe3\\xf8\\xd8\\x46\\xa3\\x21\\x57\\x59\\x86\\xa6\\x69\\xad\\xe5\\x3e\\x9f\\x4d\\ \\x3e\\xe7\\x55\\x44\\xf4\\x2f\\x2e\\x00\\xab\\x14\\x41\\x98\\xf9\\x68\\xa5\\x94\\ \\x54\\x44\\x1d\\xb8\\x66\\x8c\\x39\\x5e\\x92\\x32\\xa4\\x75\\xac\\x56\\xab\\xed\\ \\x3d\\x31\\x31\\xf1\\x93\\xb4\\x72\\xfd\\xda\\xff\\xec\\xb3\\xcf\\x1e\\x7d\\xe0\\ \\x81\\x07\\x1e\\xb1\\xb4\\xff\\x9f\\x89\\xe8\\xc3\\x96\\x3a\\x9c\\xaf\\x20\\xfb\\ \\x20\\xa2\\xff\\x89\\xb5\\xc0\\xac\\x18\\x63\\xc6\\x99\\x79\\x5d\\xda\\x49\\x9b\\ \\x9d\\x9d\\x1d\\x6d\\x36\\x9b\\xed\\xb4\\x72\\xfd\\xda\\x3f\\x89\\xad\\xb1\\xad\\ \\x53\\xe8\\xec\\xb8\\xc0\\xd9\\x0a\\x92\\x84\\x9c\\xde\\x6b\\x33\\x31\\x88\\xf8\\ \\xfa\\x30\\x0c\\xa5\\x12\\xea\\xc0\\x35\\xad\\xb5\\x84\\x10\\x4b\\x29\\xba\\x34\\ \\xed\\x7e\\x22\\xca\\x54\\xe0\\x33\\xcd\\x20\\x55\\xea\\x7b\\xc6\\x19\\x67\\xec\\ \\x36\\x3a\\x3a\\x6a\\xfb\\x1c\\x39\\x0b\\xd9\\x76\\x46\\x90\\x66\\xb3\\xb9\\x6c\\ \\xd9\\xb2\\x65\\x7f\\xb2\\x04\\xbb\\xef\\x62\\x41\\x7a\\xf5\\x37\\x8a\\xa2\\x2b\\ \\x11\\xf1\\xa5\\xbd\\xf6\\x4f\\xfa\\xdd\\x4c\\x44\\x36\\x57\\x77\\x52\\x0e\\x57\\ \\x7e\\xf7\\xa4\\x0a\\x6e\\x96\\x0b\\x9d\\x5b\\x1a\\xef\\xec\\xc5\\x86\\x33\\x82\\ \\x88\\x75\\x5a\\xeb\\x87\\x01\\x60\\x2c\\x2b\\xcc\\xcc\\xfc\\x6e\\xa5\\x54\\x5f\\ \\x25\\x6b\\xe8\\xd5\\x57\\xad\\xb5\\xc4\\xd8\\xaf\\xec\\xb5\\x7f\\xd2\\xef\\x0a\\ \\x22\\x92\\xc4\\x73\\x43\\xd3\\x8c\\x31\\xcf\\x92\\x7a\\x8c\\x36\\x0e\\x33\\xf3\\ \\x1b\\x95\\x52\\x9f\\xb1\\xd1\\x31\\x2f\\xeb\\x94\\x20\\x51\\x14\\xdd\\x97\\x31\\ \\x59\\xda\\xbc\\x3d\\x8a\\x88\\xb4\\x0b\\xc7\\xaa\\xa6\\x23\\xe3\\x1f\\x8f\\x8f\\ \\x11\\xd1\\xbb\\xaa\\xe6\\x4b\\x9e\\xf6\\x44\\x51\\x74\\x10\\x22\\xca\\x8d\\x03\\ \\x9b\\xe6\\x2c\\x5d\\x92\\x53\\x82\\x68\\xad\\xe5\\x6d\\x4b\\xe6\\x7b\\x43\\x83\\ \\x9a\\xc1\\xa3\\xd9\\x6c\\x8e\\x2d\\x5b\\xb6\\x4c\\x56\\xd7\\xb4\\x6d\\x60\\xff\\ \\x60\\x2c\\x04\\xc4\\xd4\\xd4\\xd4\\x11\\xb5\\x5a\\x4d\\xc2\\x26\\x32\\x37\\x44\\ \\x7c\\x65\\x18\\x86\\x5f\\xca\\xac\\x60\\x0b\\x41\\xd7\\x04\\x91\\x98\\x85\\xe7\\ \\x64\\x35\\x8c\\x99\\x3f\\xa7\\x94\\x7a\\x7d\\x56\\xf9\\xaa\\xca\\x4d\\x4d\\x4d\\ \\xed\\x55\\xab\\xd5\\x7e\\x9a\\xc1\\xbe\\x81\\xbe\\x59\\xb0\\x2d\\x3c\\x8c\\x31\\ \\xa7\\x31\\xf3\\x59\\x19\\xb0\\xda\\x52\\xe4\\x18\\x22\\xfa\\xba\\xa5\\x8e\\xcd\\ \\xe2\\xae\\x09\\xf2\\x15\\x00\\x78\\x59\\x56\\xc3\\x98\\xf9\\x87\\x4a\\x29\\xb9\\ \\x87\\x33\\x50\\xcd\\x18\\xf3\\x62\\x66\\xfe\\x46\\x5a\\xa7\\x98\\xf9\\xb9\\x4a\\ \\x29\\x49\\x46\\x37\\x34\\x4d\\x6b\\x2d\\x49\\xcf\\x25\\xf9\\x79\\xe6\\xc6\\xcc\\ \\x07\\x2b\\xa5\\xbe\\x97\\x59\\x41\\x5e\\x2b\\x88\\x31\\x66\\x9d\\x64\\x34\\xb7\\ \\x30\\x6c\\x96\\x88\\xac\\x4a\\xb6\\x59\\x8c\\x9d\\x9b\\xa8\\xd6\\x5a\\x2e\\x1b\\ \\xa6\\xbe\\x84\\x39\\x32\\x32\\xf2\\x84\\x61\\xab\\xae\\xa5\\xb5\\xb6\\xfa\\x23\\ \\x2b\\x93\\xb8\\x74\\xe9\\xd2\\x1d\\x56\\xad\\x5a\\xf5\\x47\\x17\\x13\\xea\\x7a\\ \\x05\\x39\\x15\\x00\\xce\\xb6\\x31\\xac\\x56\\xab\\xed\\x3e\\x31\\x31\\xf1\\x4b\\ \\x1b\\x1d\\x55\\x93\\x8d\\xa2\\xa8\\x89\\x88\\xef\\x4f\\x63\\x17\\x22\\x72\\x18\\ \\x86\\x41\\x1a\\x99\\x41\\xe8\\x1b\\x45\\xd1\\xcf\\x10\\x31\\x73\\xd0\\x1d\\x00\\ \\xdc\\x4b\\x44\\xbd\\x94\\x9b\\xe8\\x09\\x2e\\xa7\\x04\\x69\\xb5\\x5a\\x2f\\x08\\ \\x82\\xe0\\x5b\\x3d\\x8d\\xbc\\x40\\xa7\\x41\\xbc\\x6e\\x62\\x8c\\xf9\\x34\\x33\\ \\xbf\\x21\\x25\\x2e\\xbf\\x20\\xa2\\x3d\\x52\\xca\\xf4\\x75\\x77\\x47\\xd7\\x4c\\ \\xae\\x25\\xa2\\x97\\xb8\\x02\\xc2\\x29\\x41\\x8c\\x31\\x4f\\x64\\xe6\\xdf\\xda\\ \\x18\\x37\\x88\\x67\\x21\\xc6\\x98\\x6f\\x33\\xf3\\x61\\x69\\x70\\x61\\xe6\\x7f\\ \\x57\\x4a\\x1d\\x9e\\x46\\xa6\\xdf\\xfb\\xba\\x38\\x03\\x41\\xc4\\x8f\\x87\\x61\\ \\x98\\xf6\\xc6\\xc2\\x82\\xd0\\x39\\x25\\x88\\x8c\\xa2\\xb5\\x96\\x2b\\xdd\\x3b\\ \\x67\\x9d\\x2c\\x44\\xfc\\x4c\\x18\\x86\\x6f\\xcc\\x2a\\x5f\\x45\\x39\\xad\\x75\\ \\x96\\x7a\\x8d\\x17\\x13\\xd1\\xc9\\x55\\xf4\\x27\\x2f\\x9b\\xb2\\xee\\xd5\\xb6\\ \\xb4\\x87\\x99\\xdf\\xa3\\x94\\xda\\xe0\\xca\\x46\\xe7\\x04\\x31\\xc6\\xdc\\xc0\\ \\xcc\\xcf\\xcf\\x6a\\x20\\x22\\xfe\\x3a\\x0c\\x43\\xab\\xe2\\x9f\\x59\\xc7\\xce\\ \\x4b\\x2e\\x4b\\xa0\\x14\\x00\\x38\\x8f\\xaf\\xce\\xcb\\x3f\\x57\\x7a\\x6d\\xe3\\ \\x40\\x12\\x3b\\x9c\\xbd\\xe2\\x15\\x7d\\xce\\x09\\xe2\\x22\\x4f\\xad\\xeb\\xb8\\ \\x62\\x57\\x13\\x98\\x45\\xcf\\x47\\x3e\\xf2\\x91\\x27\\x3d\\xf2\\xc8\\x23\\xa9\\ \\x53\\xf6\\x20\\xe2\\xa9\\x61\\x18\\x7e\\x2a\\xcb\\x98\\xfd\\x2a\\x63\\x8c\\xf9\\ \\x2f\\x66\\x4e\\x7b\\x1d\\xe7\\x51\\xee\\xc6\\x71\\xbc\\x47\\xa3\\xd1\\xf8\\x85\\ \\x2b\\x0c\\x9c\\x13\\xc4\\x18\\xb3\\x8a\\x99\\xcf\\xb4\\x34\\xd0\\xd9\\x75\\x65\\ \\x4b\\x3b\\xac\\xc5\\xb3\\x5e\\x9d\\x40\\xc4\\x97\\x84\\x61\\x78\\xad\\xb5\\x01\\ \\x7d\\xa2\\xc0\\x51\\xe2\\xf3\\x3f\\x10\\xd1\\x4e\\x2e\\x5d\\x76\\x4e\\x90\\xe9\\ \\xe9\\xe9\\x67\\xc6\\x71\\xfc\\x63\\x4b\\x23\\xaf\\x24\\xa2\\x97\\x5b\\xea\\xa8\\ \\x84\\x78\\x14\\x45\\x27\\x20\\x62\\xea\\x32\\x6a\\x9d\\x4e\\xe7\\x2f\\x87\\xa9\\ \\x34\\xb4\\x31\\xe6\\x14\\x66\\xb6\\xbd\\x60\\xf8\\x45\\x22\\x3a\\xde\\xe5\\xc4\\ \\x3b\\x27\\x48\\xb2\\x51\\xcf\\xb2\\x29\\xdd\\xd2\\xaf\\x4d\\x63\\x63\\x63\\x4f\\ \\x3b\\xfd\\xf4\\xd3\\xad\\xde\\x88\\xb9\\x04\\x2a\\xab\\xae\\xac\\x81\\x52\\x44\\ \\x94\\xcb\\xdc\\x64\\xf5\\x23\\x6f\\x39\\x63\\xcc\\x99\\xcc\\xbc\\xca\\x66\\x9c\\ \\x3c\\xb2\\xe0\\xe7\\x32\\x09\\x5a\\xeb\\x0b\\x00\\xc0\\xf6\\x4d\\xd4\\x9b\\x88\\ \\xe8\\xd3\\x36\\x80\\x55\\x41\\x36\\x8a\\xa2\\x33\\x11\\x31\\xed\\xc4\\x3f\\x48\\ \\x44\\xdb\\x57\\xc1\\xfe\\xa2\\x6c\\xc8\\x98\\x33\\x6c\\x6b\\xf3\\x9e\\x4d\\x44\\ \\x37\\xbb\\xb4\\x39\\x17\\x82\\x18\\x63\\xde\\xca\\xcc\\xb6\\x99\\x38\\x2e\\x23\\ \\xa2\\x57\\xb9\\x74\\xb6\\x0c\\x5d\\x5a\\x6b\\x29\\x7c\\x93\\x36\\xa6\\xe3\\xc7\\ \\x44\\xf4\\xac\\x32\\xec\\x2d\\x63\\xcc\\xac\\x49\\xbd\\xb7\\xb2\\x35\\x97\\x83\\ \\xd5\\x5c\\x08\\xe2\\x68\\x1f\\x02\\x41\\x10\\xec\\x53\\xaf\\xd7\\xef\\x28\\x63\\ \\xd2\\x5c\\x8d\\xa9\\xb5\\xbe\\x05\\x00\\xf6\\x4b\\xa9\\xef\\x2a\\x22\\x4a\\x1b\\ \\x7d\\x98\\x72\\x88\\xea\\x74\\xcf\\x18\\x8e\\xbc\\xb5\\x03\\xb9\\x9c\\x1b\\xe5\\ \\x42\\x90\\x64\\x1f\\x72\\x1b\\x00\\xfc\\xb5\\xcd\\x34\\x30\\xf3\\x1a\\xa5\\xd4\\ \\x94\\x8d\\x8e\\xb2\\x65\\xa3\\x28\\x7a\\x10\\x11\\x1f\\x97\\xc6\\x0e\\xd7\\xa7\\ \\xc1\\x69\\xc6\\x2e\\xba\\x6f\\x14\\x45\\x8f\\x47\\x44\\x89\\xb6\\xb4\\xbd\\x3f\\ \\xf5\\x0e\\x22\\xfa\\x84\\x6b\\xfb\\x73\\x23\\x48\\x14\\x45\\xe7\\x20\\xa2\\x6d\\ \\x29\\x83\\xef\\x11\\xd1\\xc1\\xae\\x9d\\x2e\\x4a\\x5f\\xd6\\x74\\xac\\xcc\\x5c\\ \\x57\\x4a\\xa5\\xce\\x80\\x52\\x94\\x5f\\x2e\\xc7\\xd1\\x5a\\xcb\\x5e\\x55\\xf6\\ \\xac\\x56\\x2d\\x8e\\xe3\\xfd\\x1a\\x8d\\x86\\x55\\xa8\\xee\\xb6\\x0c\\xc8\\x8d\\ \\x20\\xc6\\x98\\xd7\\x31\\xf3\\x67\\xad\\xbc\\xfe\\x73\\x7d\\xbe\\x23\\x95\\x52\\ \\xa9\\x63\\x29\\x6c\\xc7\\x75\\x21\\x9f\\x35\\xdb\\x24\\x22\\xbe\\x2a\\x0c\\xc3\\ \\xcb\\x5c\\xd8\\x50\\x75\\x1d\\x5a\\x6b\\xc9\\x15\\x66\\xfb\\x6a\\x36\\xb7\\xc2\\ \\x4b\\xb9\\x11\\x64\\x66\\x66\\x66\\xbb\\x76\\xbb\\x2d\\x4b\\xa7\\xed\\x8d\\xd4\\ \\xb3\\x88\\x48\\xca\\x2c\\xf7\\x5d\\xcb\\x5a\\xd4\\x14\\x11\\xf7\\x0f\\xc3\\xf0\\ \\xd6\\xbe\\x73\\x38\\xa5\\xc1\\xd3\\xd3\\xd3\\x07\\xc6\\x71\\x6c\\x1d\\x10\\xc6\\ \\xcc\\xa4\\x94\\x32\\x29\\x87\\xef\\xa9\\x7b\\x6e\\x04\\x91\\xd1\\x5d\\xbc\\xdb\\ \\x06\\x80\\xb9\\x76\\xbb\\x7d\\xc0\\x9a\\x35\\x6b\\xfa\\x2e\\xbb\\xa0\\xd6\\x3a\\ \\x53\\x7c\\xcc\\xec\\xec\\xec\\xe3\\x9b\\xcd\\xa6\\x55\\xa6\\xfc\\x9e\\x66\\xbf\\ \\xe4\\x4e\\x5a\\x6b\\x89\\x1d\\x12\\x8c\\x6c\\x5a\\xdc\\x6e\\xb7\\xf7\\xc9\\xeb\\ \\xf9\\xc8\\x9b\\x20\\x99\\x42\\x4d\\xb7\\x46\\x0b\\x11\\xcf\\x08\\xc3\\xf0\\x9f\\ \\x6c\\x50\\x2c\\x43\\xd6\\x18\\xf3\\x61\\x66\\x7e\\x6f\\xda\\xb1\\x87\\xe1\\x90\\ \\xd0\\xd5\\xea\\x01\\x00\\xb9\\x1e\\x07\\xe4\\x4a\\x10\\x79\\x30\\xb4\\xd6\\x56\\ \\x89\\x1c\\x92\\x87\\xeb\\x9e\\x64\\x15\\xc9\\x92\\x1d\\x3d\\xed\\xf3\\xe9\\xac\\ \\xbf\\xd6\\x5a\\xae\\x4e\\x9c\\x92\\x46\\x21\\x33\\xff\\x5a\\x29\\x35\\x50\\xb7\\ \\x99\\xb7\\xe5\\xbf\\xa3\\xd5\\x43\\xf6\\xa8\\x6f\\x56\\x4a\\x59\\x6f\\xf2\\x17\\ \\x9a\\xa3\\x22\\x08\\x22\\x7f\\xf9\\x5d\\xd4\\x1d\\xec\\xbb\\x5a\\xe1\\x51\\x14\\ \\x7d\\x0b\\x11\\x5f\\x90\\x86\\x20\\x00\\xf0\\x5d\\x22\\xca\\x1c\\x2e\\x90\\x72\\ \\xac\\x52\\xba\\xbb\\x5a\\x3d\\x24\\x38\\x6f\\x6c\\x6c\\x6c\\xe5\\xea\\xd5\\xab\\ \\x6d\\x73\\xf9\\x2e\\x88\\x43\\xee\\x04\\x69\\xb5\\x5a\\xfb\\x06\\x41\\x60\\xbd\\ \\xe1\\x64\\xe6\\x5b\\x94\\x52\\x52\\x42\\xa0\\x6f\\x5a\\xc6\\x34\\xfe\\x17\\x12\\ \\x51\\xda\\xf0\\xdc\\xbe\\xc1\\x24\\xf9\\x55\\xe1\\x62\\xef\\x21\\xaa\\x3e\\x49\\ \\x44\\xa7\\xe5\\xe9\\x7c\\xee\\x04\\x11\\xe3\\xa3\\x28\\xfa\\x32\\x22\\xba\\xb8\\ \\x9d\\xdb\\x57\\xd7\\xe0\\x33\\x06\\x4a\\x7d\\x90\\x88\\x52\\x25\\x78\\xc8\\xf3\\ \\x01\\x71\\xad\\xdb\\xd1\\xb5\\x92\\x79\\xb3\\x5e\\x4e\\x44\\x57\\xba\\xb6\\x71\\ \\x4b\\x7d\\x85\\x10\\xc4\\x18\\x73\\x22\\x33\\xbb\\x28\\xad\\x76\\x5f\\xa7\\xd3\\ \\x39\\x74\\x72\\x72\\xd2\\x49\\x79\\xad\\x3c\\x81\\x5d\\xb7\\x6e\\xdd\\xd3\\x3a\\ \\x9d\\x4e\\xea\\xc0\\x9d\\xbc\\x7f\\x53\\xe7\\xe9\\x73\\x2f\\xba\\xb5\\xd6\\x52\\ \\xf9\\xe9\\xd8\\x5e\\xfa\\x2e\\xd6\\x07\\x11\\xbf\\x1a\\x86\\x61\\xe6\\x1c\\x6c\\ \\xbd\\x8e\\x5f\\x08\\x41\\x92\\x65\\x35\\x4b\\x85\\xd7\\x6d\\xf9\\x71\\x36\\x11\\ \\xbd\\xbd\\x57\\x07\\xcb\\xea\\xa7\\xb5\\x3e\\x14\\x00\\x52\\x17\\xb7\\x0f\\x82\\ \\xe0\\xf0\\x7a\\xbd\\x9e\\x5a\\xae\\x2c\\x3f\\xd3\\x8c\\xeb\\x28\\x6b\\xe2\\xfc\\ \\x90\\x27\\x10\\xd1\\xe7\\xd3\\x8c\\x9f\\xa5\\x6f\\x61\\x04\\x89\\xa2\\xe8\\x5d\\ \\x88\\xe8\\xa4\\x2c\\x16\\x00\\xbc\\x94\\x88\\xae\\xca\\xe2\\x70\\x51\\x32\\xad\\ \\x56\\xeb\\xa4\\x20\\x08\\x2e\\x4a\\x3b\\x1e\\x33\\x3f\\x45\\x29\\x65\\x55\\x1f\\ \\x23\\xed\\x98\\x45\\xf4\\x97\\x8c\\x37\\x00\\x20\\xf9\\x0a\\xf6\\xb2\\x1d\\x0f\\ \\x11\\xaf\\x0d\\xc3\\xd0\\x59\\x6a\\x9f\\x45\\x57\\x2a\\x5b\\x63\\x7b\\x95\\xdf\\ \\xb0\\x61\\xc3\\xf6\\x73\\x73\\x73\\xb7\\x20\\xa2\\x4d\\xed\\xb9\\xf9\\xe1\\xbe\\ \\x41\\x44\\x47\\xf6\\x3a\\x76\\x19\\xfd\\xb4\\xd6\\x0d\\x00\\x48\\x7d\\xd1\\xb2\\ \\xd3\\xe9\\xbc\\xa8\\x57\\x7b\\x27\\x27\\x27\\xbf\\xd9\\x6b\\xdf\\xb2\\xfb\\x69\\ \\xad\\xe5\\xa4\\xbb\\xee\\xc2\\x0e\\x44\\x3c\\x39\\x0c\\xc3\\x8b\\x5d\\xe8\\xea\\ \\xa6\\xa3\\xb0\\x15\\x24\\xf9\\x99\\xf5\\x01\\x00\\x70\\x55\\xd2\\xb8\\xd2\\x1b\\ \\xf6\\x28\\x8a\\xde\\x81\\x88\\x1f\\xeb\\x36\\x01\\x16\\xdf\\x5f\\x4a\\x44\\x27\\ \\x5a\\xc8\\x17\\x26\\xaa\\xb5\\x3e\\x1a\\x00\\x5c\\x15\\x22\\xcd\\xed\\xde\\xd5\\ \\xb6\\x00\\x29\\x94\\x20\\x49\\x96\\x73\\x89\\xf8\\x72\\x95\\x7f\\xd7\\x69\\x8a\\ \\x17\\x97\\x4f\\x4c\\x14\\x45\\xaf\\x44\\xc4\\xcb\\x5d\\xea\\xdc\\x4a\\xd7\\x34\\ \\x11\\x85\\x39\\xea\\x77\\xa2\\x3a\\xc9\\xea\\x22\\x99\\xd6\\xd3\\xc6\\xc4\\x6c\\ \\x73\\x7c\\x44\\x7c\\x4b\\x18\\x86\\xa9\\xf3\\x1c\\x67\\x75\\xa6\\x50\\x82\\x24\\ \\xab\\x88\\xdc\\xd9\\x77\\xb5\\xc9\\xbe\\x75\\x6c\\x6c\\xec\\xe8\\x2a\\xc6\\xae\\ \\x3b\\xca\\xd2\\xb1\\xe0\\xbc\\x32\\xf3\\x29\\x4a\\xa9\\xd4\\x7b\\x9c\\xac\\x0f\\ \\x4a\\x56\\xb9\\x8c\\x69\\x57\\x17\\x1a\\xee\\x26\\x22\\xca\\x5c\\x5e\\x23\\x8b\\ \\x0f\\x85\\x13\\x44\\x56\\x91\\x20\\x08\\xae\\x47\\xc4\\xdd\\xb2\\x18\\xbc\\xb5\\ \\x4c\\x95\\x33\\x31\\x6a\\xad\\xe5\\x80\\x74\\x5f\\x17\\x7e\\x6e\\xad\\xa3\\x1f\\ \\xca\\x43\\x6b\\xad\\x65\\xcf\\xe1\\xf2\\x96\\xed\\x49\\x44\\x64\\x1d\\x42\\x91\\ \\x66\\x3e\\x0a\\x27\\x88\\x18\\xe7\\xf8\\x8d\\x96\\xa8\\xac\\xe4\\x7e\\x24\\xeb\\ \\x46\\xbd\\x87\\x09\\xac\\xfc\\xfe\\xc3\\xf1\\xbe\\x03\\x10\\xf1\\x92\\x30\\x0c\\ \\x5f\\xdb\\x03\\x36\\x4e\\xbb\\x94\\x42\\x90\\x84\\x24\\xae\\x4e\\xd7\\xe7\\x01\\ \\x71\\x56\\x97\\xce\\x15\\xc2\\x1b\\x36\\x6c\\x58\\xb2\\x71\\xe3\\xc6\\xef\\x00\\ \\x80\\xd3\\xa2\\x40\\x88\\xf8\\xfc\\x30\\x0c\\xbf\\xeb\\xca\\x4e\\xd7\\x7a\\x92\\ \\x4a\\xb5\\xb2\\xff\\x72\\x95\\x78\\x62\\x53\\x10\\x04\\x87\\xd6\\xeb\\x75\\xb9\\ \\xf8\\x5a\\x68\\x2b\\x8d\\x20\\xc6\\x98\\x43\\x98\\xf9\\x7a\\x00\\x18\\x71\\xe8\\ \\x71\\xe5\\x48\\xe2\\xa2\\xe6\\xde\\x96\\xf8\\x54\\xbd\\x8e\\x63\\xab\\xd5\\xda\\ \\x21\\x08\\x02\\xc9\\xe4\\x72\\x84\\xc3\\x79\\x5d\\x4b\\x44\\xa9\\xc3\\x06\\x5c\\ \\x8c\\x5f\\x1a\\x41\\x92\\x0d\\xbb\\xcb\\xd7\\xbe\\x9b\\xf1\\x88\\xe3\\xf8\\xf0\\ \\x46\\xa3\\x51\\xa9\\x93\\x68\\x63\\xcc\\x7e\\x71\\x1c\\x7f\\x1d\\x11\\x9f\\x64\\ \\x33\\x69\\x2e\\xcb\\x1b\\xdb\\xd8\\xb1\\x98\\xac\\xd6\\x5a\\x0a\\x70\\xba\\x24\\ \\xc7\\xed\\xa3\\xa3\\xa3\\x87\\xe6\\x79\\x63\\x77\\x31\\x7f\\x4a\\x25\\x48\\xf2\\ \\x13\\x44\\x56\\x91\\x83\\x5c\\x4e\\x98\\xeb\\x04\\xc6\\x2e\\x6c\\x93\\xec\\x1d\\ \\x00\\xb0\\x3e\\x4b\\x22\\x0b\\x44\\xfc\\x1a\\x22\\xbe\\xb7\\x5e\\xaf\\xdf\\xe4\\ \\xc2\\x96\\xbc\\x74\\xe4\\x40\\x0e\\x31\\xf5\\xef\\x89\\xe8\\xfc\\xbc\\x6c\\xee\\ \\xa6\\xb7\\x54\\x82\\x88\\x71\\xc6\\x98\\xe3\\x98\\x59\\x96\\x64\\xa7\\xad\\xaa\\ \\x51\\x79\\xad\\x56\\xeb\\x98\\x20\\x08\\xde\\x06\\x00\\xaf\\xee\\xe6\\x30\\x22\\ \\xca\\x4a\\x78\\x7e\\x18\\x86\\xe7\\x76\\xeb\\x5b\\xf6\\xf7\\x39\\x91\\x23\\xd7\\ \\x68\\xc1\\x5e\\x30\\x2b\\x9d\\x20\\xc9\\x4f\\xad\\x33\\x00\\x60\\x4d\\x2f\\x06\\ \\xa7\\xe9\\xc3\\xcc\\x4f\\x53\\x4a\\xdd\\x93\\x46\\xa6\\xa8\\xbe\\x6b\\xd7\\xae\\ \\xdd\\x15\\x11\\x17\\xcc\\x1b\\x36\\x3a\\x3a\\x7a\\x5f\\xbd\\x5e\\xbf\\xbd\\x28\\ \\x7b\\x6c\\xc6\\xc9\\xe9\\x75\\xf6\\x4f\\x11\\xf1\\x98\\x30\\x0c\\xff\\xdb\\xc6\\ \\x36\\x5b\\xd9\\x4a\\x10\\x44\\x9c\\x88\\xa2\\x48\\x7e\\xa3\\x1f\\x65\\xeb\\xd0\\ \\xd6\\xf2\\x55\\x7f\\xe3\\xe3\\xda\\xdf\\xa2\\xf5\\x69\\xad\\xad\\x13\\x04\\x6e\\ \\xcb\\x66\\x66\\x3e\\x4e\\x29\\x75\\x45\\xd1\\xfe\\x3c\\xe6\\xf9\\x29\\xdb\\x80\\ \\xf9\\xf1\\xa7\\xa6\\xa6\\x0e\\xac\\xd5\\x6a\\x57\\x03\\x80\\xd3\\xfa\\x0e\\x89\\ \\xfe\\xca\\xbd\\xdd\\xaa\\x0a\\xee\\x59\\xed\\x68\\xb5\\x5a\\xbb\\x07\\x41\\x20\\ \\xc1\\x4a\\x56\\xd9\\x33\\x17\\x18\\xff\\xbd\\x44\\xb4\\x36\\xab\\x6d\\x2e\\xe5\\ \\x2a\\xb3\\x82\\x88\\x53\\x8e\\xe3\\x05\\xb6\\xc6\\xa9\\xef\\x62\\xda\\x5d\\x4e\\ \\xb4\\x4b\\x5d\\x49\\xee\\xe5\\x4b\\x72\\x22\\xc7\\x67\\x89\\xe8\\x24\\x97\\xf6\\ \\xda\\xe8\\xaa\\x14\\x41\\x92\\x9f\\x5a\\x2e\\x52\\x96\\x6e\\x13\\x13\\x66\\x3e\\ \\x6b\\x6e\\x6e\\x2e\\x1c\\x86\\x9c\\x53\\x36\\x0f\\xc5\\x62\\xb2\\xc6\\x98\\xe3\\ \\x99\\x59\\xae\\x8f\\x3c\\x3d\\x87\\x31\\x6e\\x63\\xe6\\x63\\xaa\\x14\\x0f\\x53\\ \\x39\\x82\\xc8\\xe6\\x75\\x74\\x74\\xf4\\x6a\\x66\\xde\\x3f\\x87\\x09\\x90\\x2b\\ \\x0b\\xdf\\xe9\\x74\\x3a\\x61\\xa3\\xd1\\x90\\x13\\x6e\\xdf\\x52\\x20\\x10\\x45\\ \\x51\\x13\\x11\\xf3\\x8c\\x97\\xaf\\xdc\\xed\\xec\\xca\\x11\\x24\\x59\\x45\\x9e\\ \\x07\\x00\\x57\\x20\\xe2\\xae\\x29\\xe6\\xaf\\xe7\\xae\\x88\\xf8\\x50\\x1c\\xc7\\ \\xa1\\x52\\xea\\xac\\x9e\\x85\\x86\\xb8\\xa3\\xd6\\x5a\\x56\\x0b\\x59\\x35\\x6c\\ \\x73\\xe8\\x2e\\x88\\x62\\x91\\x41\\x50\\x69\\xa6\\xb2\\x92\\x04\\x49\\xf6\\x23\\ \\xb9\\x9c\\x8f\\x6c\\x09\\x8e\\xfc\\xe4\\xea\\x74\\x3a\\xff\\xb4\\x66\\xcd\\x9a\\ \\xbe\\x4a\\x48\\x97\\x66\\x82\\x6d\\xfb\\xe6\\xfc\\x93\\x6a\\xb3\\x79\\x45\\xc7\\ \\x78\\xa4\\xc1\\xa4\\xb2\\x04\\x11\\x27\\xa6\\xa7\\xa7\\xdf\\x10\\xc7\\x71\\xde\\ \\x65\\xd8\\x6e\\x67\\xe6\\x96\\x52\\xca\\xb6\\x80\\x64\\x1a\\xdc\\x2b\\xdf\\x37\\ \\xd9\\x88\\x4b\\x40\\xd6\\x9b\\x73\\x36\\x36\\x97\\xba\\x1e\\xae\\x6c\\xae\\x34\\ \\x41\\xc4\\x49\\xad\\xb5\\x64\\x76\\xff\\xb8\\x2b\\x87\\x17\\xd2\\xc3\\xcc\\x9f\\ \\x0b\\x82\\x60\\x6a\\x18\\xb2\\xaa\\x2f\\x86\\xa5\\x5c\\xff\\x79\\xf8\\xe1\\x87\\ \\xeb\\x52\\xa3\\x04\\x00\\x76\\xcc\\x13\\x77\\x66\\x7e\\x9f\\x52\\xca\\x45\\xd6\\ \\xcd\\xdc\\xcc\\xac\\x3c\\x41\\x12\\x92\\xb8\\x0e\\xbc\\x59\\x08\\xd0\\x3f\\x26\\ \\xab\\x49\\xea\\x64\\x0b\\xb9\\xcd\\x50\\x81\\x8a\\xb5\\xd6\\x12\\x6f\\x21\\x58\\ \\xe7\\x1e\\xb5\\x87\\x88\\x17\\x84\\x61\\x98\\xf7\\xea\\x64\\x8d\\x5e\\x5f\\x10\\ \\x24\\xd9\\x93\\xbc\\x9f\\x99\\x9b\\xd6\\x1e\\xf7\\xa0\\x80\\x99\\x7f\\x88\\x88\\ \\xe7\\x8e\\x8c\\x8c\\x9c\\x37\\x3e\\x3e\\x3e\\xd7\\x83\\x48\\x5f\\x77\\xd1\\x5a\\ \\xff\\x2d\\x22\\x9e\\xca\\xcc\\xaf\\x28\\xc8\\x91\\xeb\\x88\\xe8\\xc5\\x05\\x8d\\ \\x65\\x35\\x4c\\xdf\\x10\\x24\\x21\\x89\\xbc\\x83\\x97\\x8a\\x44\\x45\\x35\\x29\\ \\x20\\x3a\\x4f\\x94\\xfb\\x8b\\x1a\\xb4\\xa8\\x71\\x4a\\x20\\x86\\x6c\\xc8\\xbf\\ \\x14\\x86\\xe1\\x2b\\x8b\\xf2\\xd1\\x76\\x9c\\xbe\\x22\\x48\\x42\\x92\\x83\\x99\\ \\xf9\\x46\\x5b\\xc7\\x53\\xca\\xff\\x8f\\xac\\x28\\xed\\x76\\xfb\\xa2\\xc9\\xc9\\ \\xc9\\x9f\\xa7\\x94\\xad\\x5c\\xf7\\x32\\x88\\x91\\x80\\x70\\x11\\x11\\xa5\\x2a\\ \\x07\\x51\\x36\\x78\\x7d\\x47\\x10\\x01\\x6c\\x7a\\x7a\\x7a\\x65\\x1c\\xc7\\x5f\\ \\xce\\xe9\\x34\\x77\\xb1\\x39\\x79\\x18\\x00\\xe4\\x6a\\xfe\\x65\\x4b\\x97\\x2e\\ \\xfd\\xe2\\xaa\\x55\\xab\\xe4\\xbf\\xfb\\xa2\\xb5\\x5a\\xad\\xfd\\x6b\\xb5\\xda\\ \\xdf\\xc9\\x59\\x46\\x5e\\x87\\xb0\\x8b\\x01\\xc1\\xcc\\x33\\x4a\\xa9\\x89\\xbe\\ \\x00\\x6b\\x0b\\x23\\xfb\\x92\\x20\\x62\\xff\\xfa\\xf5\\xeb\\x77\\x7b\\xe4\\x91\\ \\x47\\x2e\\xc8\\xe3\\x06\\x70\\x8f\\x93\\xf8\\x73\\x89\\x63\\xa9\\xd5\\x6a\\x97\\ \\x55\\x35\\x97\\xee\\xf4\\xf4\\xf4\\x2e\\xed\\x76\\xfb\\xf8\\x20\\x08\\x84\\x18\\ \\xb9\\x27\\x7a\\x5e\\x04\\x37\\x45\\x44\\xba\\x47\\x5c\\x2b\\xd5\\xad\\x6f\\x09\\ \\x92\\xfc\\xdc\\x92\\x04\\x74\\xe7\\x33\\xf3\\x09\\x25\\xa3\\x2a\\xc5\\x4a\\x25\\ \\x39\\xf7\\xf7\\x98\\xf9\\x5a\\xa5\\xd4\\x9d\\x65\\xd8\\x23\\xe9\\x5d\\x67\\x67\\ \\x67\\x0f\\xa9\\xd5\\x6a\\x72\\x13\\x41\\x62\\xfe\\x0f\\x01\\x80\\xed\\xcb\\xb0\\ \\x25\\x19\\xf3\\x4f\\xcc\\xfc\\xce\\x3c\\x2b\\x40\\xe5\\xed\\x5b\\x5f\\x13\\x64\\ \\x1e\\x1c\\xad\\xb5\\xf3\\xd8\\x76\\x4b\\xe0\\xef\\x06\\x80\\xeb\\x99\\x59\\xb2\\ \\x70\\xdc\\x39\\x32\\x32\\x72\\xc7\\xc4\\xc4\\xc4\\x2f\\x2d\\x75\\x3e\\x4a\\x5c\\ \\x56\\x87\\x38\\x8e\\xf7\\x06\\x00\\xf9\\x48\\xf6\\x10\\xc9\\x26\\xef\\x34\\x74\\ \\xd9\\xd2\\x5e\\xd9\\x27\\xd6\\x89\\xe8\\x06\\x4b\\x3d\\xa5\\x8a\\x0f\\x04\\x41\\ \\x04\\x41\\xad\\xf5\\x6b\\x64\\x7b\\x02\\x00\\xbb\\x97\\x8a\\xe8\\xc2\\x83\\xcf\\ \\x32\\xb3\\xac\\x2c\\x9b\\x3f\\x88\\x38\\x2b\\x15\\x7c\\xe7\\xff\\x8d\\xe3\\x58\\ \\xbe\\x9f\\xab\\xd5\\x6a\\x9b\\x98\\x79\\x59\\x1c\\xc7\\xcb\\x82\\x20\\x58\\x06\\ \\x00\\xdb\\xc9\\x7f\\xcb\\xff\\x66\\x66\\x49\\xfc\\x3d\\x4f\\x8a\\x5d\\x2a\\xea\\ \\xa7\\x98\\x75\\x4e\\x1c\\xc7\\xf5\\x46\\xa3\\xf1\\x40\\x85\\x6d\\xec\\xc9\\xb4\\ \\x81\\x21\\x88\\x78\\x1b\\x45\\xd1\\x3e\\x88\\x28\\x24\\x29\\xf3\\xf7\\x76\\x4f\\ \\xc0\\x0f\\x68\\xa7\\x76\\xb2\\x6a\\x9c\\x39\\x28\\xfe\\x0d\\x14\\x41\\xb6\\xf8\\ \\xc9\\x15\\x01\\x00\\x0d\\xca\\x24\\xf5\\x89\\x1f\\x37\\x23\\xe2\\x44\\x18\\x86\\ \\xd7\\xf6\\x89\\xbd\\x3d\\x99\\x39\\x90\\x04\\x49\\x36\\xf0\\xa7\\x24\\x35\\xca\\ \\x57\\xf6\\x84\\x84\\xef\\x64\\x83\\xc0\\x79\\x88\\x38\\x19\\x86\\xe1\\x7d\\x36\\ \\x4a\\xaa\\x28\\x3b\\xb0\\x04\\x11\\xb0\\x67\\x66\\x66\\x76\\x6e\\xb7\\xdb\\x72\\ \\x23\\x55\\xee\\x17\\xb9\\xcc\\xe0\\x58\\xc5\\xb9\\x2c\\xdc\\x26\\xc9\\x8c\\x89\\ \\x88\\x86\\x88\\xe4\\x4c\\x6a\\x20\\xdb\\x40\\x13\\x64\\x7e\\xc6\\x8c\\x31\\x07\\ \\x0b\\x49\\x2a\\xf0\\x3a\\x78\\x50\\x1e\\x22\\x29\\x11\\x27\\xf5\\x49\\xd6\\x0f\\ \\x8a\\x43\\x0b\\xf9\\x31\\x14\\x04\\x99\\x77\\x3e\\x8a\\xa2\\x93\\x25\\x13\\x3c\\ \\x22\\xe6\\x12\\xce\\x3b\\xe8\\x0f\\x8b\\xf8\\x87\\x88\\x12\\x7a\\x30\\x5d\\x76\\ \\xbe\\xaa\\xa2\\xb0\\x1e\\x2a\\x82\\x24\\x7b\\x13\\x39\\x5c\\x94\\xd5\\xe4\\x54\\ \\x00\\x78\\x72\\x51\\x40\\x0f\\xc0\\x38\\x57\\x30\\xf3\\x47\\x95\\x52\\x92\\x9a\\ \\x69\\x68\\xda\\xd0\\x11\\x64\\x7e\\x66\\x93\\xab\\x2a\\xa7\\x21\\xa2\\xa4\\x01\\ \\xf5\\x44\\x59\\xf8\\x91\\xbf\\x34\\x8e\\xe3\\x73\\x1b\\x8d\\x86\\xab\\x1a\\x83\\ \\x7d\\x45\\xae\\xa1\\x25\\xc8\\x96\\x44\\x69\\xb7\\xdb\\x12\\x0b\\xe1\\x57\\x94\\ \\x47\\x3f\\xba\\x17\\x76\\x3a\\x9d\\x73\\xfb\\xa9\\x92\\x6e\\x1e\\xcc\\x1b\\x7a\\ \\x82\\x78\\xa2\\x3c\\xfa\\xb1\\x62\\xe6\\x73\\x83\\x20\\x38\\xb7\\xca\\x05\\x7a\\ \\xf2\\x20\\x82\\xdf\\xa4\\xf7\\x88\\xaa\\xdc\\x71\\xea\\x74\\x3a\\xc7\\x21\\xe2\\ \\x71\\x00\\x50\\x54\\x84\\x5d\\x8f\\xd6\\xe5\\xd3\\x4d\\x72\\x85\\x31\\xf3\\xe5\\ \\xed\\x76\\xfb\\x8a\\x35\\x6b\\xd6\\x48\\x90\\x98\\x6f\\x09\\x02\\x7e\\x05\\x59\\ \\xe4\\x51\\x48\\xae\\xae\\x08\\x51\\xe4\\x23\\x37\\x64\\x07\\xa6\\x21\\xe2\\x5d\\ \\x42\\x0a\\x00\\xb8\\x9c\\x88\\xbe\\x3d\\x30\\x8e\\x39\\x76\\xc4\\x13\\xa4\\x47\\ \\x40\\xb5\\xd6\\x2f\\x4c\\x88\\x72\\x2c\\x00\\xec\\xd3\\xa3\\x58\\xd5\\xba\\xdd\\ \\xc3\\xcc\\xd7\\x49\\xfd\\xf6\\xd9\\xd9\\xd9\\xcb\\x9b\\xcd\\xa6\\xdc\\x9d\\xf2\\ \\x6d\\x11\\x04\\x3c\\x41\\x32\\x3c\\x1e\\x5a\\xeb\\x03\\x00\\xe0\\x70\\x66\\x3e\\ \\x0c\\x11\\x0f\\xab\\xf0\\x5b\\xb0\\x07\\x01\\xe0\\x1a\\x00\\xf8\\x36\\x22\\xde\\ \\xe8\\xf7\\x15\\xe9\\x27\\xdb\\x13\\x24\\x3d\\x66\\x8f\\x91\\x10\\xc2\\x30\\xf3\\ \\x11\\x88\\x28\\xab\\xcc\\x7e\\x00\\xb0\\xc2\\x81\\xda\\x2c\\x2a\\x7e\\x03\\x00\\ \\x77\\x20\\xa2\\x90\\xe2\\x5a\\x4f\\x88\\x2c\\x10\\x3e\\x5a\\xc6\\x13\\xc4\\x1e\\ \\xc3\\xc7\\x68\\x68\\x36\\x9b\\x63\\xcb\\x97\\x2f\\x5f\\xd9\\xe9\\x74\\x56\\x06\\ \\x41\\x20\\x97\\x25\\x25\\x86\\x43\\xfe\\x95\\x8f\\xc4\\x78\\xd8\\x36\\xd9\\x48\\ \\xcf\\x7f\\xee\\x64\\xe6\\x3b\\xc6\\xc6\\xc6\\xee\\x28\\xab\\xd0\\xa5\\xad\\x33\\ \\x55\\x96\\xf7\\x04\\x29\\x78\\x76\\x84\\x3c\\xdb\\x6d\\xb7\\xdd\\x92\\x4e\\xa7\\ \\xb3\\xb4\\x56\\xab\\x2d\\x89\\xe3\\x78\\x29\\x22\\x2e\\x61\\xe6\\xcd\\xff\\xca\\ \\xa5\\x4a\\x44\\xdc\\x18\\x04\\xc1\\xc6\\x38\\x8e\\x1f\\xae\\xd5\\x6a\\x1b\\x47\\ \\x46\\x46\\x36\\x26\\xed\\xe1\\x66\\xb3\\xb9\\xb1\\x60\\x93\\x87\\x7a\\x38\\x4f\\ \\x90\\xa1\\x9e\\x7e\\xef\\x7c\\x37\\x04\\x3c\\x41\\xba\\x21\\xe4\\xbf\\x1f\\x6a\\ \\x04\\x3c\\x41\\x86\\x7a\\xfa\\xbd\\xf3\\xdd\\x10\\xf0\\x04\\xe9\\x86\\x90\\xff\\ \\x7e\\xa8\\x11\\xf0\\x04\\x19\\xea\\xe9\\xf7\\xce\\x77\\x43\\xc0\\x13\\xa4\\x1b\\ \\x42\\xfe\\xfb\\xa1\\x46\\xc0\\x13\\x64\\xa8\\xa7\\xdf\\x3b\\xdf\\x0d\\x01\\x4f\\ \\x90\\x6e\\x08\\xf9\\xef\\x87\\x1a\\x01\\x4f\\x90\\xa1\\x9e\\x7e\\xef\\x7c\\x37\\ \\x04\\x3c\\x41\\xba\\x21\\xe4\\xbf\\x1f\\x6a\\x04\\x3c\\x41\\x86\\x7a\\xfa\\xbd\\ \\xf3\\xdd\\x10\\xf0\\x04\\xe9\\x86\\x90\\xff\\x7e\\xa8\\x11\\xf0\\x04\\x19\\xea\\ \\xe9\\xf7\\xce\\x77\\x43\\xc0\\x13\\xa4\\x1b\\x42\\xfe\\xfb\\xa1\\x46\\xc0\\x13\\ \\x64\\xa8\\xa7\\xdf\\x3b\\xdf\\x0d\\x01\\x4f\\x90\\x6e\\x08\\xf9\\xef\\x87\\x1a\\ \\x01\\x4f\\x90\\xa1\\x9e\\x7e\\xef\\x7c\\x37\\x04\\x3c\\x41\\xba\\x21\\xe4\\xbf\\ \\x1f\\x6a\\x04\\xfe\\x1f\\x21\\xfb\\x39\\x6e\\x4e\\x41\\xbd\\xc8\\x00\\x00\\x00\\ \\x00\\x49\\x45\\x4e\\x44\\xae\\x42\\x60\\x82\\ \\x00\\x00\\x1a\\x17\\ \\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\\x19\\xde\\x49\\x44\\x41\\x54\\x78\\x5e\\xed\\x5d\\x0b\\x98\\x1c\\x55\\ \\x95\\x3e\\xa7\\x7a\\x06\\xc3\\x04\\x45\\xf1\\xed\\xfa\\x44\\x57\\x97\\x85\\x15\\ \\x15\\x11\\x54\\x90\\x67\\x0c\\x28\\x04\\x5c\\x04\\x11\\x70\\x45\\x58\\x08\\x82\\ \\x22\\x99\\x99\\x3a\\xb7\\x27\\xac\\xd2\\x3e\\x32\\xd3\\x75\\x6e\\x67\\x82\\x61\\ \\x41\\xa2\\x88\\xf8\\x82\\x05\\x44\\x90\\x87\\xae\\xab\\x08\\xae\\xaf\\x04\\xdf\\ \\x20\\xca\\xca\\xa2\\x28\\xbe\\x05\\x24\\xab\\x19\\x02\\x99\\xae\\xb3\\xdf\\x0d\\ \\x1d\\x1d\\x26\\x33\\xe9\\xae\\xba\\xb7\\xeb\\xd1\\x7d\\xeb\\xfb\\xf8\\x3e\\xbe\\ \\xf4\\xf9\\xcf\\xe3\\x3f\\xf5\\x4f\\x77\\x55\\xdd\\x3a\\x17\\xc1\\x1f\\x9e\\x01\\ \\xcf\\xc0\\xbc\\x0c\\xa0\\xe7\\xc6\\x33\\xe0\\x19\\x98\\x9f\\x01\\x2f\\x10\\x7f\\ \\x76\\x78\\x06\\xb6\\xc1\\x80\\x17\\x88\\x3f\\x3d\\x3c\\x03\\x5e\\x20\\xfe\\x1c\\ \\xf0\\x0c\\xa4\\x63\\xc0\\x7f\\x83\\xa4\\xe3\\xcd\\xa3\\xfa\\x84\\x01\\x2f\\x90\\ \\x3e\\x69\\xb4\\x2f\\x33\\x1d\\x03\\x5e\\x20\\xe9\\x78\\xf3\\xa8\\x3e\\x61\\xc0\\ \\x0b\\xa4\\x4f\\x1a\\xed\\xcb\\x4c\\xc7\\x80\\x17\\x48\\x3a\\xde\\x3c\\xaa\\x4f\\ \\x18\\xf0\\x02\\xe9\\x93\\x46\\xfb\\x32\\xd3\\x31\\xe0\\x05\\x92\\x8e\\x37\\x8f\\ \\xea\\x13\\x06\\xbc\\x40\\xfa\\xa4\\xd1\\xbe\\xcc\\x74\\x0c\\x78\\x81\\xa4\\xe3\\ \\xcd\\xa3\\xfa\\x84\\x01\\x2f\\x90\\x3e\\x69\\xb4\\x2f\\x33\\x1d\\x03\\x5e\\x20\\ \\xe9\\x78\\xf3\\xa8\\x3e\\x61\\xc0\\x0b\\xa4\\x4f\\x1a\\xed\\xcb\\x4c\\xc7\\x80\\ \\x17\\x48\\x3a\\xde\\x3c\\xaa\\x4f\\x18\\xf0\\x02\\xe9\\x93\\x46\\xfb\\x32\\xd3\\ \\x31\\xe0\\x05\\x92\\x8e\\x37\\x8f\\xea\\x13\\x06\\xbc\\x40\\xfa\\xa4\\xd1\\xbe\\ \\xcc\\x74\\x0c\\x78\\x81\\xa4\\xe3\\xcd\\xa3\\xfa\\x84\\x01\\x2f\\x90\\x3e\\x69\\ \\xb4\\x2f\\x33\\x1d\\x03\\x5e\\x20\\xe9\\x78\\xf3\\xa8\\x3e\\x61\\xc0\\x0b\\xa4\\ \\x4f\\x1a\\xed\\xcb\\x4c\\xc7\\x80\\x17\\x48\\x3a\\xde\\x3c\\xaa\\x4f\\x18\\xf0\\ \\x02\\xe9\\x93\\x46\\xfb\\x32\\xd3\\x31\\xe0\\x05\\x92\\x8e\\x37\\x8f\\xea\\x13\\ \\x06\\xbc\\x40\\xfa\\xa4\\xd1\\xb3\\xcb\\x1c\\x1f\\x1f\\x7f\\xe2\\xe0\\xe0\\xe0\\ \\x0b\\xe3\\x38\\xbe\\x47\\x29\\xf5\\xab\\x3e\\xa5\\xa1\\x6d\\xd9\\x5e\\x20\\x6d\\ \\x29\\xea\\x2d\\x83\\x89\\x89\\x89\\xfd\\x2b\\x95\\xca\\x38\\x00\\xbc\\x72\\x56\\ \\x65\\xe7\\xc5\\x71\\xfc\\x85\\x6a\\xb5\\xfa\\x85\\xde\\xaa\\xd8\\xae\\x1a\\x2f\\ \\x10\\x3b\\xfe\\x4a\\x85\\x66\\xe6\\x57\\x03\\xc0\\xd7\\xdb\\x24\\x3d\\x4e\\x44\\ \\x67\\x97\\xaa\\xb0\\x2e\\x26\\xeb\\x05\\xd2\\x45\\x72\\x8b\\xe4\\xfa\\xdc\\x73\\ \\xcf\\x7d\\xea\\xc3\\x0f\\x3f\\xfc\\xbb\\x0e\\x73\\xba\\x98\\x88\\x4e\\xee\\xd0\\ \\xb6\\xa7\\xcd\\xbc\\x40\\x7a\\xba\\xbd\\x7f\\x2b\\x8e\\x99\\x25\\x61\\xa9\\x9f\\ \\x17\\x91\\x53\\x94\\x52\\xbf\\x49\\x88\\xeb\\x29\\x73\\x2f\\x90\\x9e\\x6a\\xe7\\ \\xdc\\xc5\\x30\\xf3\\x2f\\x00\\xe0\\xd9\\x49\\x4b\\x45\\xc4\\xef\\x8a\\xc8\\xa9\\ \\x44\\xf4\\xbd\\xa4\\xd8\\x5e\\xb1\\xf7\\x02\\xe9\\x95\\x4e\\xce\\x53\\x07\\x33\\ \\xdf\\x08\\x00\\x07\\x5a\\x94\\xf9\\x6b\\x00\\x30\\x22\\xf9\\xbc\\x85\\x8f\\xd2\\ \\x42\\xbd\\x40\\x4a\\xdb\\xba\\xf6\\x89\\x33\\xf3\\x1a\\x73\\x72\\xb7\\xb7\\x6c\\ \\x6b\\x31\\x8d\\x88\\xa7\\x86\\x61\\xf8\\xb1\\xb6\\x96\\x3d\\x66\\xe0\\x05\\xd2\\ \\x63\\x0d\\xdd\\x52\\x4e\\x14\\x45\\x21\\x22\\xb2\\xcb\\xf2\\x44\\x64\\xb9\\x52\\ \\x6a\\xc2\\xa5\\xcf\\xa2\\xfb\\xf2\\x02\\x29\\x7a\\x87\\x52\\xe4\\xa7\\xb5\\x7e\\ \\x83\\x88\\x7c\\x36\\x05\\xb4\\x13\\xc8\\x07\\x89\\xe8\\xac\\x4e\\x0c\\x7b\\xc1\\ \\xc6\\x0b\\xa4\\x17\\xba\\x38\\xa3\\x86\\xc9\\xc9\\xc9\\x7f\\x9a\\x9e\\x9e\\xbe\\ \\xb5\\xcb\\x65\\x5d\\x4e\\x44\\xc7\\x76\\x39\\x46\\x21\\xdc\\x7b\\x81\\x14\\xa2\\ \\x0d\\x6e\\x92\\xa8\\xd5\\x6a\\x43\\x43\\x43\\x43\\x1b\\xdc\\x78\\x6b\\xeb\\xe5\\ \\xab\\x53\\x53\\x53\\x07\\xd7\\x6a\\xb5\\xe9\\xb6\\x96\\x25\\x36\\xf0\\x02\\x29\\ \\x71\\xf3\\x66\\xa7\\x1e\\x45\\xd1\\x83\\x88\\xb8\\x20\\xc3\\x92\\xee\\x00\\x80\\ \\xc3\\x88\\xe8\\xae\\x0c\\x63\\x66\\x1a\\xca\\x0b\\x24\\x53\\xba\\xbb\\x17\\x8c\\ \\x99\\x6f\\x03\\x80\\xdd\\xba\\x17\\x61\\x5e\\xcf\\x0f\\x20\\xe2\\x51\\x61\\x18\\ \\x7e\\x25\\x87\\xd8\\x5d\\x0f\\xe9\\x05\\xd2\\x75\\x8a\\xbb\\x1f\\x80\\x99\\xaf\\ \\x06\\x80\\x23\\xbb\\x1f\\x69\\x9b\\x11\\x4e\\x26\\xa2\\x8b\\x73\\xce\\xc1\\x79\\ \\x78\\x2f\\x10\\xe7\\x94\\x66\\xeb\\x90\\x99\\x35\\x00\\x8c\\x66\\x1b\\x75\\xde\\ \\x68\\xef\\x23\\xa2\\x73\\x0a\\x92\\x8b\\x93\\x34\\xbc\\x40\\x9c\\xd0\\x98\\x8f\\ \\x13\\xad\\xf5\\x52\\x11\\xb9\\x30\\x9f\\xe8\\xf3\\x46\\xbd\\x88\\x88\\x4e\\x29\\ \\x58\\x4e\\xa9\\xd3\\xf1\\x02\\x49\\x4d\\x5d\\xbe\\xc0\\x95\\x2b\\x57\\x1e\\xd4\\ \\x6c\\x36\\xbf\\x6c\\x9b\\x85\\x88\\x9c\\x10\\x04\\xc1\\x7e\\x66\\x61\\xa2\\xad\\ \\xaf\\x19\\xf8\\xeb\\x89\\xe8\\x70\\x87\\xfe\\x72\\x73\\xe5\\x05\\x92\\x1b\\xf5\\ \\xe9\\x03\\x4f\\x4c\\x4c\\x3c\\xb7\\x52\\xa9\\xfc\\x3c\\xbd\\x87\\x47\\x90\\x22\\ \\x32\\xaa\\x94\\x5a\\x69\\xfe\\x3f\\x8a\\xa2\\x71\\x44\\x1c\\xb3\\xf5\\x39\\x03\\ \\xff\\x1d\\x22\\xda\\xd3\\xa1\\xbf\\x5c\\x5c\\x79\\x81\\xe4\\x42\\xbb\\x5d\\xd0\\ \\x14\\x4b\\xd7\\xe7\\x0a\\xb8\\x92\\x88\\x1e\\x75\\xed\\xc2\\xcc\\xcb\\x00\\x60\\ \\xd2\\x2e\\xbb\\x47\\xa1\\xef\\x99\\x9a\\x9a\\xda\\xad\\x56\\xab\\xfd\\x9f\\x43\\ \\x9f\\x99\\xba\\xf2\\x02\\xc9\\x94\\x6e\\xfb\\x60\\xcc\\xfc\\x7b\\x00\\x78\\x8a\\ \\xa5\\xa7\\x4f\\x13\\xd1\\x09\\x73\\xf9\\xd0\\x5a\\x9f\\x20\\x22\\x17\\x00\\xc0\\ \\x63\\x2d\\x63\\x6c\\x81\\x6f\\x8a\\xe3\\x78\\x8f\\x6a\\xb5\\x6a\\x6e\\x43\\x97\\ \\xee\\xf0\\x02\\x29\\x51\\xcb\\xb4\\xd6\\xdf\\x10\\x91\\x57\\x59\\xa6\\x7c\\xe3\\ \\xd4\\xd4\\xd4\\x6b\\x6b\\xb5\\x5a\\x3c\\x9f\\x1f\\x66\\x3e\\x04\\x00\\xce\\x07\\ \\x80\\x9d\\x2d\\x63\\xcd\\x84\\x1f\\x4e\\x44\\xd7\\x3b\\xf4\\x97\\x89\\x2b\\x2f\\ \\x90\\x4c\\x68\\xb6\\x0f\\xc2\\xcc\\x1f\\x07\\x80\\x7f\\xb1\\xf4\\x74\\xfb\\xe0\\ \\xe0\\xe0\\xa2\\x65\\xcb\\x96\\xfd\\xb6\\x9d\\x9f\\x7a\\xbd\\xbe\\x7b\\x10\\x04\\ \\x66\\xb9\\xfc\\x5e\\xed\\x6c\\x13\\x7c\\xfe\\x0e\\x22\\x32\\xc2\\x2b\\xcd\\xe1\\ \\x05\\x52\\x82\\x56\\x69\\xad\\xdf\\x2d\\x22\\xef\\xb3\\x4c\\xf5\\x7e\\x00\\x38\\ \\x88\\x88\\x7e\\xd0\\xa9\\x9f\\xf1\\xf1\\xf1\\x27\\x57\\x2a\\x95\\x8f\\x21\\xe2\\ \\xeb\\x3b\\xc5\\xb4\\xb3\\x43\\x44\\x1d\\x86\\x21\\xb5\\xb3\\x2b\\xca\\xe7\\x5e\\ \\x20\\x45\\xe9\\xc4\\x3c\\x79\\xd4\\xeb\\xf5\\xe3\\x82\\x20\\xf8\\xb4\\x6d\\x9a\\ \\x41\\x10\\x1c\\x32\\x3a\\x3a\\xfa\\xc5\\x34\\x7e\\x98\\xd9\\xbc\\x28\\x75\\x62\\ \\x1a\\xec\\x5c\\x18\\x44\\xbc\\x22\\x0c\\xc3\\x37\\xb9\\xf2\\xd7\\x4d\\x3f\\x5e\\ \\x20\\xdd\\x64\\xd7\\xd2\\x77\\x14\\x45\\xaf\\x40\\xc4\\x75\\x96\\x6e\\xcc\\xed\\ \\xdc\\x13\\x95\\x52\\xe6\\x27\\x5a\\xea\\x43\\x6b\\xcd\\x22\\x12\\xa6\\x76\\x30\\ \\x0b\\x68\\xea\\x0a\\xc3\\x70\\x6f\\x57\\xfe\\xba\\xe5\\xc7\\x0b\\xa4\\x5b\\xcc\\ \\x5a\\xfa\\x9d\\x9c\\x9c\\xdc\\x69\\x7a\\x7a\\xfa\\x3e\\x4b\\x37\\x06\\xae\\x88\\ \\xc8\\xc9\\x9b\\x85\\xae\\x6f\\x03\\x8b\\xc8\\xef\\x95\\x52\\x4f\\x73\\x50\\x63\\ \\xd7\\x5c\\x78\\x81\\x74\\x8d\\x5a\\x3b\\xc7\\x2e\\x9e\\x75\\x88\\xc8\\xa4\\x52\\ \\x6a\\xc4\\x2e\\x93\\x47\\xa3\\x99\\xd9\\xfc\\x34\\x32\\x3f\\xb9\\xb6\\x77\\xe1\\ \\x57\\x44\\xfe\\xa8\\x94\\xb2\\xbd\\x6d\\xed\\x22\\x95\\x39\\x7d\\x78\\x81\\x74\\ \\x8d\\xda\\xf4\\x8e\\xb5\\xd6\\x77\\x8a\\xc8\\x0b\\xd2\\x7b\\xd8\\x8c\\x9c\\xf7\\ \\x59\\x87\\xa5\\x5f\\x60\\xe6\\x7d\\x8d\\x7f\\x00\\x78\\x96\\xad\\xaf\\x16\\xfe\\ \\x4a\\x22\\x3a\\xc6\\x91\\x2f\\xa7\\x6e\\xbc\\x40\\x9c\\xd2\\x69\\xef\\x8c\\x99\\ \\xcd\\x6c\\x5c\\xf3\\x1c\\xc2\\xe6\\xb8\\xb1\\xd9\\x6c\\x1e\\x3d\\x36\\x36\\xf6\\ \\x27\\x1b\\x27\\xdb\\xc2\\x32\\xf3\\xf3\\x01\\xe0\\x0a\\x00\\x78\\x99\\xa3\\x18\\ \\xc7\\x10\\xd1\\x95\\x8e\\x7c\\x39\\x73\\xe3\\x05\\xe2\\x8c\\x4a\\x7b\\x47\\x5a\\ \\xeb\\xf3\\x44\\xe4\\x1d\\x96\\x9e\\x6e\\x17\\x91\\xa3\\x95\\x52\\x3f\\xb1\\xf4\\ \\xd3\\x16\\x3e\\x39\\x39\\xb9\\xfd\\xf4\\xf4\\xb4\\x11\\xc9\\x61\\x6d\\x8d\\xdb\\ \\x1b\\x14\\xf2\\x5b\\xc4\\x0b\\xa4\\x7d\\xe3\\x32\\xb1\\x88\\xa2\\xe8\\x2c\\x44\\ \\x5c\\x65\\x19\\xec\\xfe\\x66\\xb3\\x79\\xd4\\xd8\\xd8\\xd8\\xcd\\x96\\x7e\\x12\\ \\xc1\\x1d\\xcd\\xdf\\xba\\x99\\x88\\x0e\\x48\\x14\\x38\\x03\\x63\\x2f\\x90\\x0c\\ \\x48\\x6e\\x17\\x82\\x99\\xcd\\x5f\\xe0\\xeb\\xda\\xd9\\x75\\xf0\\xf9\\xb1\\x44\\ \\x74\\x79\\x07\\x76\\xce\\x4d\\xb4\\xd6\\xe7\\x88\\x48\\xcd\\xc2\\xb1\\x17\\x88\\ \\x05\\x79\\x3d\\x0b\\x6d\\x34\\x1a\\xff\\x10\\xc7\\xb1\\xf5\\xcf\\x21\\x44\\x7c\\ \\x57\\x18\\x86\\xab\\xf3\\x20\\x8a\\x99\\xdf\\x09\\x00\\x56\\xb1\\xe3\\x38\\x3e\\ \\xb5\\x5a\\xad\\x7e\\x24\\x8f\\xfc\\xb7\\x15\\xd3\\x7f\\x83\\xe4\\xd8\\x91\\x5a\\ \\xad\\x36\\x30\\x34\\x34\\xb4\\xc9\\x41\\x0a\\x77\\x02\\x80\\xb9\\xc8\\xed\\x78\\ \\x19\\x89\\x83\\x98\\x9b\\x5d\\x68\\xad\\x8f\\x13\\x11\\xdb\\x27\\xfd\\x77\\x07\\ \\x41\\xb0\\xe7\\xe8\\xe8\\xe8\\xbd\\xae\\xf2\\x72\\xe5\\xc7\\x0b\\xc4\\x15\\x93\\ \\x29\\xfc\\x30\\xf3\\x7a\\x00\\x78\\x5c\\x0a\\xe8\\x5c\\x90\\x07\\x44\\xe4\\x18\\ \\xa5\\xd4\\x97\\x1c\\xf9\\x6b\\xeb\\xa6\\x5e\\xaf\\x2f\\x0e\\x82\\xc0\\x5c\\xa4\\ \\xdb\\xd6\\x70\\x1c\\x11\\x5d\\xd6\\x36\\x60\\x0e\\x06\\x5e\\x20\\x39\\x90\\x6e\\ \\x42\\x32\\xf3\\x77\\x1d\\xde\\x22\\xfd\\x6b\\x15\\x71\\x1c\\x1f\\x5f\\xad\\x56\\ \\x2f\\xed\\x76\\x59\\x8d\\x46\\x63\\x8f\\x38\\x8e\\xcd\\x6d\\xd9\\xe7\\x59\\xc6\\ \\x1a\\x26\\x22\\xdb\\x9b\\x13\\x96\\x29\\xcc\\x0f\\xf7\\x02\\xe9\\x1a\\xb5\\xf3\\ \\x3b\\xd6\\x5a\\x5f\\x6e\\xfe\\xda\\x77\\x2b\\x74\\xb7\\xaf\\x47\\xa2\\x28\\x7a\\ \\x26\\x22\\x9a\\x51\\x43\\x2f\\xb7\\xac\\x81\\x89\\x48\\x59\\xfa\\xe8\\x2a\\xdc\\ \\x0b\\xa4\\xab\\xf4\\x6e\\xed\\xbc\\x0b\\xef\\x7e\\xcf\\x57\\xc1\\x07\\x88\\xe8\\ \\xdd\\xae\\xcb\\x33\\xd7\\x4d\\x0b\\x17\\x2e\\xbc\\x5e\\x44\\x16\\xdb\\xf8\\x46\\ \\xc4\\x8f\\x87\\x61\\xe8\\x6c\\x85\\xb0\\x4d\\x2e\\xdb\\xc2\\x7a\\x81\\x74\\x8b\\ \\xd9\\x39\\xfc\\x32\\xf3\\x49\\x00\\xf0\\xd1\\x0c\\x43\\xae\\x21\\xa2\\xd3\\x5c\\ \\xc6\\x63\\x66\\x73\\x41\\x7e\\x9c\\x8d\\x4f\\x44\\xfc\\xe2\\x86\\x0d\\x1b\\x0e\\ \\x2b\\xc3\\x5c\\x5f\\x2f\\x10\\x9b\\x4e\\x27\\xc0\\x36\\x1a\\x8d\\xd7\\xc4\\x71\\ \\xfc\\xd5\\x04\\x10\\x27\\xa6\\x88\\xf8\\xd9\\x66\\xb3\\x79\\x52\\xb5\\x5a\\x35\\ \\x37\\x04\\xac\\x0e\\x66\\x36\\xb7\\x72\\xcd\\x2d\\xdd\\xd4\\x07\\x22\\xfe\\xb0\\ \\xd9\\x6c\\x2e\\xa9\\x56\\xab\\xbf\\x4c\\xed\\x24\\x43\\xa0\\x17\\x48\\x06\\x64\\ \\x47\\x51\\xf4\\x0c\\x44\\x34\\x5b\\x99\\xe5\\x75\\x7c\\x0d\\x00\\xde\\x66\\x33\\ \\x64\\x3a\\x8a\\xa2\\x1a\\x22\\x5a\\x4d\\x4d\\x34\\xcb\\xdb\\x01\\x60\\x89\\x52\\ \\xea\\x96\\xbc\\x88\\x48\\x1a\\xd7\\x0b\\x24\\x29\\x63\\x29\\xec\\x5d\\x2c\\x5d\\ \\x4f\\x11\\x76\\x36\\xe4\\x0e\\x44\\x3c\\x31\\x0c\\xc3\\xc4\\x2f\\x60\\x45\\x51\\ \\x74\\x1a\\x22\\x7e\\xc8\\x36\\x07\\x11\\x39\\x42\\x29\\x75\\xad\\xad\\x9f\\x2c\\ \\xf1\\x5e\\x20\\x5d\\x66\\x9b\\x99\\xef\\x01\\x80\\x67\\x76\\x39\\x4c\\xa7\\xee\\ \\xef\\x43\\xc4\\xb7\\x86\\x61\\x78\\x43\\xa7\\x00\\x87\\xbb\\x55\\x2d\\x25\\xa2\\ \\x0f\\x77\\x1a\\xb7\\x28\\x76\\x5e\\x20\\x5d\\xec\\x84\\xd6\\xfa\\x26\\x11\\xd9\\ \\xdf\\x32\\xc4\\x7f\\x02\\xc0\\x1f\\x1c\\x4c\\x34\\x99\\x99\\x86\\xf9\\xb9\\x75\\ \\x49\\xbb\\xbc\\xb4\\xd6\\xaf\\x14\\x11\\x13\\xdf\\xea\\x41\\x20\\x22\\xbe\\x27\\ \\x0c\\xc3\\xf7\\xb7\\x8b\\x57\\xc4\\xcf\\xbd\\x40\\xba\\xd4\\x95\\x28\\x8a\\x2e\\ \\x42\\xc4\\x93\\x2d\\xdd\\xdf\\x2a\\x22\\xfb\\x28\\xa5\\xfe\\xcc\\xcc\\x66\\xe2\\ \\xa1\\x99\\x7c\\xe8\\xea\\x08\\x89\\xa8\\x31\\x9f\\xb3\\x89\\x89\\x89\\x9d\\x2b\\ \\x95\\x8a\\x99\\xfd\\x6b\\xf5\\x20\\x10\\x11\\x2f\\x08\\xc3\\xf0\\x0c\\x57\\x49\\ \\x67\\xed\\xc7\\x0b\\xa4\\x0b\\x8c\\x33\\x73\\x15\\x00\\x6c\\x77\\x83\\xbd\\xb7\\ \\x25\\x8e\\xff\\xd9\\x92\\xa2\\xd6\\xfa\\x6c\\x11\\xf9\\x80\\xab\\x94\\x11\\x31\\ \\x0a\\xc3\\xd0\\xe4\\xfa\\xa8\\x63\\xcd\\x9a\\x35\\x43\\xeb\\xd7\\xaf\\x37\\x77\\ \\xdc\\xac\\x1e\\x04\\x9a\\x3b\\x68\\x61\\x18\\x1e\\xe5\\x2a\\xdf\\x3c\\xfc\\x78\\ \\x81\\x38\\x66\\x3d\\x8a\\xa2\\x37\\x22\\xa2\\xf5\\x9b\\x71\\x22\\x72\\xa0\\x52\\ \\xea\\xa6\\xd9\\xe9\\x31\\xf3\\xdb\\x01\\xc0\\x8c\\x06\\x75\\x75\\x5c\\xbc\\x60\\ \\xc1\\x82\\xd3\\xcf\\x3c\\xf3\\xcc\\x87\\xb6\\x38\\x8c\\xa2\\xe8\\x7a\\xdb\\x59\\ \\x58\\x22\\xf2\\xcd\\x1d\\x76\\xd8\\x61\\xf1\\x19\\x67\\x9c\\xf1\\x17\\x57\\x89\\ \\xe6\\xe1\\xc7\\x0b\\xc4\\x21\\xeb\\xcc\\xfc\\x12\\x00\\xf8\\xbe\\xad\\x4b\\xb3\\ \\x25\\x81\\x52\\x6a\\xde\\x15\\xb2\\x5a\\xeb\\x63\\x44\\xc4\\xdc\\x55\\xda\\xc9\\ \\x36\\x56\\x0b\\x7f\\xed\\xc0\\xc0\\xc0\\xe9\\xc3\\xc3\\xc3\\xbf\\x66\\x66\\xf3\\ \\x20\\xd3\\x3c\\xd0\\x4c\\x7d\\x88\\xc8\\xcf\\x44\\xc4\\x3c\\xeb\\xb8\\x3d\\xb5\\ \\x93\\x82\\x00\\xbd\\x40\\x1c\\x35\\xe2\\xfc\\xf3\\xcf\\xdf\\x61\\xc3\\x86\\x0d\\ \\x7f\\xb6\\x75\\x27\\x22\\xa4\\x94\\x32\\xbb\\x46\\x6d\\xf3\\xd0\\x5a\\x1f\\x18\\ \\xc7\\xf1\\x1a\\x44\\xb4\\x1d\\xee\\xb0\\x39\\x0e\\x22\\x7e\\x53\\x44\\xcc\\x9b\\ \\x88\\xcb\\xdb\\xc5\\x6e\\xf3\\xf9\\x06\\x44\\x5c\\xd2\\x2b\\x7b\\x16\\x7a\\x81\\ \\x58\\x9e\\x0d\\x5b\\xe0\\xcc\\x6c\\x7e\\xa2\\x6c\\x67\\xe9\\x6e\\x15\\x11\\x0d\\ \\x77\\xea\\xa3\\x5e\\xaf\\xef\\x1a\\x04\\x81\\xf9\\x8b\\xef\\x72\\x7e\\x6e\\xa7\\ \\xe1\\xe7\\xb4\\x43\\xc4\\xe3\\xc3\\x30\\xec\\xfa\\x6a\\x62\\xab\\x24\\x13\\x80\\ \\xbd\\x40\\x12\\x90\\x35\\x9f\\x29\\x33\\xff\\x18\\x00\\x76\\xb1\\x74\\x75\\x39\\ \\x11\\x1d\\x9b\\xd4\\x47\\xa3\\xd1\\x78\\x52\\xb3\\xd9\\xfc\\x04\\x22\\x1e\\x9a\\ \\x14\\xeb\\xda\\x1e\\x11\\x47\\xc2\\x30\\x74\\xb9\\xbf\\x88\\xeb\\x14\\x13\\xfb\\ \\xf3\\x02\\x49\\x4c\\xd9\\xa3\\x01\\xcc\\x6c\\x9e\\x0c\\xdb\\x6e\\x37\\xf6\\xb5\\ \\x30\\x0c\\xf7\\x43\\x44\\x49\\x9b\\x0e\\x33\\x7f\\x12\\x00\\xe6\\xdc\\xf3\\x23\\ \\xad\\xcf\\x24\\xb8\\xb2\\x0d\\xa5\\xee\\xb4\\x36\\x2f\\x90\\x4e\\x99\\x9a\\xc3\\ \\xce\\xd1\\xb3\\x89\\xbb\\x06\\x07\\x07\\xf7\\xed\\x64\\x4b\\x82\\x76\\xa9\\x32\\ \\xf3\\xb9\\x00\\xf0\\xae\\x76\\x76\\xae\\x3f\\x47\\xc4\\x4f\\x86\\x61\\x68\\xbb\\ \\x35\\x83\\xeb\\xb4\\x9c\\xf8\\xf3\\x02\\x49\\x49\\x63\\x14\\x45\\xa7\\x23\\xa2\\ \\xed\\x5e\\x17\\x0f\\x02\\xc0\\x3e\\x44\\xf4\\xbd\\x94\\x69\\x6c\\x05\\x8b\\xa2\\ \\x68\\x0c\\x11\\xc7\\x5d\\xf9\\x6b\\xe7\\x47\\x44\\xbe\\xa4\\x94\\x7a\\x6d\\x3b\\ \\xbb\\xb2\\x7e\\xee\\x05\\x92\\xa2\\x73\\xcc\\x6c\\x4e\\x88\\x54\\x5b\\x09\\xcc\\ \\x0a\\xd7\\x95\\x5d\\x97\\x32\\x7c\\xef\\xe4\\xd6\\xe9\\xe9\\xe9\\x83\\x97\\x2f\\ \\x5f\\xfe\\xc7\\x14\\x34\\x96\\x02\\xe2\\x05\\x92\\xb0\\x4d\\xab\\x56\\xad\\xda\\ \\x79\\xd3\\xa6\\x4d\\x77\\x25\\x84\\xcd\\x65\\xde\\xd5\\xc5\\x7b\\x5a\\xeb\\xd7\\ \\xb7\\xa6\\x8d\\xec\\xe8\\x20\\xd7\\xb9\\x5c\\xfc\\xa1\\x75\\x3b\\x37\\xf1\\xea\\ \\xe0\\x2e\\xe5\\xd3\\x15\\xb7\\x5e\\x20\\x09\\x69\\x75\\xb1\\x74\\x5d\\x44\\xde\\ \\xab\\x94\\xb2\\x19\\xb2\\xd6\\x51\\xd6\\x51\\x14\\xbd\\x1c\\x11\\xcd\\x20\\x39\\ \\x97\\x7b\\x0d\\x6e\\x8e\\x8d\\x88\\x47\\x86\\x61\\xf8\\xb9\\x8e\\x12\\x29\\xb1\\ \\x91\\x17\\x48\\x82\\xe6\\x31\\xb3\\x99\\xdb\\xf4\\xc4\\x04\\x90\\xad\\x4c\\x45\\ \\xe4\\x23\\x4a\\xa9\\x53\\x6d\\x7c\\x24\\xc1\\xae\\x5c\\xb9\\xf2\\x59\\xcd\\x66\\ \\xd3\\x8c\\xe6\\x71\\xb6\\x59\\x0d\\x22\\x9e\\x16\\x86\\xa1\\xd9\\xbf\\xb0\\xe7\\ \\x0f\\x2f\\x90\\x0e\\x5b\\xcc\\xcc\\x6b\\x6d\\x1f\\xc8\\x89\\xc8\\x0d\\x4a\\x29\\ \\x17\\x83\\x9e\\x3b\\xcc\\xfa\\x11\\xb3\\x5a\\xad\\xb6\\xdd\\xd0\\xd0\\x90\\x11\\ \\xc9\\x11\\x89\\x80\\x73\\x18\\x23\\x62\\x2d\\x0c\\xc3\\xf7\\xda\\xfa\\x29\\x0b\\ \\xde\\x0b\\xa4\\x83\\x4e\\x31\\xf3\\xa7\\x00\\xe0\\xf8\\x0e\\x4c\\xe7\\x35\\x11\\ \\x91\\xef\\x8b\\xc8\\x01\\x2e\\xde\\x0d\\x4f\\x9a\\x47\\x14\\x45\\x8b\\xcc\\xbe\\ \\x80\\x00\\xf0\\xf8\\xa4\\xd8\\x59\\xf6\\x1f\\x22\\xa2\\xd3\\x2d\\x7d\\x94\\x0a\\ \\xee\\x05\\xd2\\xa6\\x5d\\x0e\\xdf\\xc5\\xde\\x4f\\x29\\xf5\\xd7\\xa5\\xeb\\x59\\ \\x9d\\x25\\x66\\x3b\\x67\\x23\\x0e\\x44\\x7c\\xa1\\x65\\xcc\\xab\\x89\\xe8\\x9f\\ \\x2d\\x7d\\x94\\x0e\\xee\\x05\\xb2\\x8d\\x96\\x69\\xad\\x4f\\x10\\x11\\xf3\\x84\\ \\xda\\xf6\\xd8\\x9f\\x88\\x32\\x9f\\x68\\xb2\\x62\\xc5\\x8a\\xa7\\x0f\\x0c\\x0c\\ \\x18\\x71\\xec\\x63\\x59\\xc0\\xb7\\x88\\xe8\\x55\\x96\\x3e\\x4a\\x09\\xf7\\x02\\ \\x99\\xa7\\x6d\\x2b\\x57\\xae\\xdc\\xbb\\xd9\\x6c\\x7e\\xcb\\xb6\\xab\\x71\\x1c\\ \\xbf\\xb9\\x5a\\xad\\xfe\\x87\\xad\\x9f\\xa4\\xf8\\x5a\\xad\\x16\\x2c\\x5c\\xb8\\ \\xf0\\x4a\\x11\\xb1\\xfd\\xab\\xff\\xf3\\x4a\\xa5\\xb2\\xdf\\xc8\\xc8\\x88\\x79\\ \\xb7\\xbe\\xef\\x0e\\x2f\\x90\\x39\\x5a\\x3e\\x3e\\x3e\\xfe\\xe4\\x81\\x81\\x01\\ \\xf3\\x1e\\xb8\\xd5\\x11\\xc7\\xf1\\x48\\xb5\\x5a\\xcd\\x65\\xf1\\x1e\\x33\\x9b\\ \\xf7\\x45\\x6c\\x87\\xc6\\x3d\\x88\\x88\\xaf\\x0b\\xc3\\x30\\xd3\\x0d\\x79\\xac\\ \\x48\\x77\\x0c\\xf6\\x02\\x99\\x83\\x50\\x17\\xcf\\x3a\\x00\\xa0\\x41\\x44\\xce\\ \\xf6\\x15\\x4f\\xd2\\x77\\x66\\x36\\x77\\x99\\xde\\x93\\x04\\x33\\x97\\x2d\\x22\\ \\xbe\\x25\\x0c\\x43\\x73\\x83\\xa2\\x6f\\x0f\\x2f\\x90\\x59\\xad\\x67\\xe6\\x9f\\ \\x39\\x18\\x54\\x70\\x69\\x18\\x86\\x56\\x77\\xbd\\xd2\\x9e\\x91\\xcc\\x6c\\x06\\ \\x24\\xfc\\x7b\\x5a\\xfc\\x16\\x9c\\x88\\x8c\\x2a\\xa5\\x56\\xda\\xfa\\x29\\x3b\\ \\xde\\x0b\\x64\\x46\\x07\\x99\\xf9\\xbf\\x00\\x60\\x91\\x4d\\x53\\x11\\xf1\\xe6\\ \\x0d\\x1b\\x36\\x2c\\xca\\x63\\xee\\x2c\\x33\\x1f\\xdd\\xda\\x79\\xd6\\xa6\\x04\\ \\x83\\xcd\\xed\\xdb\\xcf\\x36\\x71\\xd7\\x78\\x2f\\x90\\x16\\xa3\\xcc\\x6c\\x06\\ \\x21\\x98\\x81\\x08\\xa9\\x0f\\x44\\xfc\\x69\\x1c\\xc7\\x07\\x29\\xa5\\x7e\\x95\\ \\xda\\x49\\x4a\\x20\\x33\\xef\\xd7\\x12\\xc7\\x53\\x52\\xba\\xd8\\x02\\xfb\\x14\\ \\x11\\xbd\\xc5\\xd2\\x47\\xcf\\xc0\\xbd\\x40\\x1e\\xd9\\x46\\x6c\\x58\\x44\\xac\\ \\x7e\\x4e\\x88\\x88\\x99\\xde\\x71\\x80\\x52\\xea\\x3b\\x59\\x9f\\x1d\\x51\\x14\\ \\xed\\xd2\\x7a\\x10\\xb8\\x9b\\x65\\xec\\x2f\\x13\\x91\\xd5\\x37\\xa8\\x65\\xfc\\ \\xc2\\xc1\\xfb\\x5e\\x20\\xf5\\x7a\\xfd\\x88\\x20\\x08\\xae\\x71\\xd0\\x99\\xae\\ \\x2c\\x5d\\x6f\\x97\\xd7\\xc4\\xc4\\xc4\\x13\\x2a\\x95\\xca\\x67\\x00\\xe0\\xc0\\ \\x76\\xb6\\x6d\\x3e\\xff\\xd1\\xd4\\xd4\\xd4\\xee\\xb5\\x5a\\x2d\\xb6\\xf4\\xd3\\ \\x53\\xf0\\xbe\\x16\\x48\\x6b\\xe8\\xc1\\x8f\\x1c\\x74\\xf4\\x14\\x22\\xba\\xc8\\ \\x81\\x9f\\xc4\\x2e\\xb4\\xd6\\x97\\x89\\x48\\xe2\\x77\\xd9\\x67\\x05\\x32\\xef\\ \\x73\\xbc\\x9a\\x88\\xcc\\x66\\xa0\\xfe\\x98\\xc1\\x40\\xdf\\x0a\\x64\\xf5\\xea\\ \\xd5\\x8f\\xd9\\xb8\\x71\\xe3\\x46\\xdb\\xb3\\x21\\xcf\\xb9\\xb3\\x2e\\xf6\\xeb\\ \\x68\\xd5\\x7f\\x28\\x11\\x99\\x19\\xbc\\xfe\\x98\\xc5\\x40\\xdf\\x0a\\x84\\x99\\ \\xcd\\x35\\xc3\\x42\\xcb\\x33\\xe2\\x42\\x22\\xb2\\xba\\xb0\\x4f\\x1b\\x9f\\x99\\ \\xff\\x0d\\x00\\xac\\x07\\x42\\x8b\\xc8\\xdb\\x95\\x52\\x17\\xa6\\xcd\\xa3\\xd7\\ \\x71\\x7d\\x29\\x10\\xad\\xf5\\x0f\\x44\\x64\\x77\\xcb\\xe6\\x5e\\x4b\\x44\\xd6\\ \\xcb\\xc7\\xd3\\xe4\\xc0\\xcc\\xe6\\x7d\\x12\\xeb\\xf7\\x31\\xb2\\x7a\\x71\\x2b\\ \\x4d\\x8d\\x45\\xc1\\xf4\\x9d\\x40\\x98\\xd9\\x5c\\xd0\\xda\\x0e\\x54\\xfe\\xce\\ \\xc0\\xc0\\xc0\\xe2\\xe1\\xe1\\xe1\\xfb\\xb3\\x6e\\x64\\x14\\x45\\x47\\xb6\\xee\\ \\x58\\x0d\\x5a\\xc6\\x76\\xbe\\x7f\\xa1\\x65\\x3e\\x85\\x84\\xf7\\x95\\x40\\xb4\\ \\xd6\\x75\\x11\\xb1\\xdd\\x76\\xf8\\x37\\x22\\x72\\xb0\\x52\\xea\\x27\\x59\\x77\\ \\xb4\\xb5\\x5f\\x87\\x19\\x8c\\xfd\\x77\\x96\\xb1\\x3f\\x47\\x44\\x47\\x5a\\xfa\\ \\xe8\\x0b\\x78\\xdf\\x08\\xa4\\x5e\\xaf\\x9f\\x12\\x04\\x81\\xf5\\x0e\\x47\\xf3\\ \\x4d\\x5d\\xef\\xf6\\xd9\\xa2\\xb5\\x7e\\x5e\\x1c\\xc7\\x57\\x21\\xe2\\x4b\\x2d\\ \\x63\\xad\\x25\\xa2\\x57\\x5a\\xfa\\xe8\\x1b\\x78\\x5f\\x08\\x24\\x8a\\xa2\\x03\\ \\x10\\xf1\\x2b\\x0e\\xba\\x7a\\x1c\\x11\\x5d\\xe6\\xc0\\x4f\\x22\\x17\\xb5\\x5a\\ \\x6d\\xc1\\xc2\\x85\\x0b\\xaf\\xb1\\xdd\\x9b\\x1c\\x00\\xee\\xde\\x71\\xc7\\x1d\\ \\x77\\x5d\\xba\\x74\\xe9\\x54\\xa2\\x04\\xfa\\xd8\\xb8\\xe7\\x05\\xd2\\x1a\\x5a\\ \\xe0\\x62\\xcb\\xe1\\x61\\x22\\x5a\\x95\\xc7\\xb9\\xa2\\xb5\\xfe\\x84\\x88\\xd8\\ \\x2e\\xff\\xd8\\x38\\x30\\x30\\xf0\\x8a\\xe1\\xe1\\xe1\\xdb\\xf2\\xa8\\xa1\\xac\\ \\x31\\x7b\\x5e\\x20\\x8e\\x96\\xae\\x33\\x11\\xd9\\x5e\\xbb\\xa4\\x3a\\x47\\x98\\ \\xd9\\x6c\\x93\\x36\\x92\\x0a\\x3c\\x03\\x14\\x04\\xc1\\x1b\\x46\\x47\\x47\\x5d\\ \\xac\\x18\\xb0\\x4d\\xa5\\x54\\xf8\\x9e\\x16\\x88\\xd6\\xda\\x5c\\x50\\x3f\\xdd\\ \\xa6\\x23\\x79\\xce\\x9d\\x65\\x66\\x02\\x80\\xc8\\x26\\xff\\x16\\x76\\x9b\\xfb\\ \\x11\\x3a\\xf0\\xdf\\xb3\\x2e\\x7a\\x56\\x20\\xcc\\xfc\\xdf\\x00\\xb0\\xaf\\x65\\ \\xe7\\x6e\\x5c\\xb0\\x60\\xc1\\xeb\\x67\\x6e\\x4f\\x66\\xe9\\xaf\\x63\\x38\\x33\\ \\x9f\\x08\\x00\\x1f\\xeb\\x18\\x30\\x8f\\xa1\\x88\\x4c\\x2a\\xa5\\xac\\xbf\\x81\\ \\x6c\\xf3\\x28\\x2b\\xbe\\x27\\x05\\xc2\\xcc\\xe6\\xc4\\x32\\x27\\x98\\xcd\\xf1\\ \\x93\\x20\\x08\\x0e\\x1d\\x1d\\x1d\\xfd\\x85\\x8d\\x93\\x34\\xd8\\x7a\\xbd\\x7e\\ \\x28\\x22\\x7e\\x06\\x11\\x87\\xd2\\xe0\\x67\\x60\\x3e\\x4d\\x44\\xb9\\x6d\\x89\\ \\x60\\x99\\x7b\\x21\\xe0\\x3d\\x27\\x90\\x28\\x8a\\xce\\x46\\x44\\xdb\\x9d\\x60\\ \\xd7\\x23\\xe2\\xe2\\x30\\x0c\\x33\\x9f\\x3b\\x6b\\xf6\\x39\\x14\\x91\\xab\\x11\\ \\xf1\\xb9\\x96\\x67\\xc8\\x8d\\x44\\x74\\xb0\\xa5\\x8f\\xbe\\x87\\xf7\\x94\\x40\\ \\x98\\xf9\\x4d\\x00\\x60\\x3d\\x41\\x24\\xaf\\xb9\\xb3\\xcc\\xfc\\x34\\x00\\x30\\ \\xf3\\x6e\\x5f\\x61\\x79\\x66\\xde\\x4e\\x44\\xb6\\xef\\x86\\x58\\xa6\\xd0\\x1b\\ \\xf0\\x9e\\x11\\x48\\xa3\\xd1\\xd8\\x23\\x8e\\x63\\xeb\\x97\\x95\\xf2\\x9c\\x3b\\ \\xcb\\xcc\\xd7\\x01\\x80\\xed\\x68\\xd2\\xfb\\xa6\\xa7\\xa7\\x5f\\xb4\\x7c\\xf9\\ \\xf2\\xfb\\x7a\\xe3\\x14\\xcd\\xb7\\x8a\\x9e\\x10\\x48\\xbd\\x5e\\xdf\\x31\\x08\\ \\x82\\x07\\x6c\\xa9\\x14\\x91\\x9a\\x52\\x2a\\x97\\xb9\\xb3\\x2e\\xb6\\x5f\\x36\\ \\xf5\\x8b\\xc8\\x5e\\x4a\\xa9\\x5b\\x6c\\xb9\\xf0\\xf8\\x47\\x18\\xe8\\x09\\x81\\ \\x30\\xf3\\x34\\x00\\x54\\x6c\\x9a\\x2a\\x22\\x17\\x2a\\xa5\\xf2\\x5a\\xba\\x3e\\ \\x01\\x00\\x55\\x9b\\xfc\\x5b\\xd8\\x5c\\x9e\\xf4\\x3b\\xc8\\xbb\\xb0\\x2e\\x4a\\ \\x2f\\x10\\x66\\xbe\\x03\\x00\\x5e\\x64\\xc9\\x70\\x6e\\x73\\x67\\xb5\\xd6\\x67\\ \\x89\\x88\\x8b\\x27\\xf4\\xef\\x26\\x22\\xdb\\x9b\\x13\\x96\\x34\\xf6\\x1e\\xbc\\ \\xd4\\x02\\x61\\xe6\\x1b\\x00\\xe0\\x75\\x96\\x6d\\x59\\x17\\x04\\xc1\\x61\\xa3\\ \\xa3\\xa3\\x66\\xef\\x8f\\x4c\\x0f\\xad\\xf5\\xb1\\x22\\xe2\\x62\\x6d\\xd7\\x87\\ \\x89\\x68\\x69\\xa6\\xc9\\xf7\\x49\\xb0\\xd2\\x0a\\x24\\x8a\\xa2\\x0f\\x22\\xe2\\ \\x99\\x96\\x7d\\xba\\xa7\\x35\\x5a\\xd3\\xc5\\x7b\\xe9\\x89\\x52\\x99\\x98\\x98\\ \\xd8\\xbf\\x52\\xa9\\x5c\\xed\\x60\\x4b\\x82\\xdc\\x5e\\xdc\\x4a\\x54\\x70\\x49\\ \\x8d\\x4b\\x29\\x10\\x66\\x7e\\x27\\x00\\xac\\xb6\\xe4\\xbc\\x89\\x88\\x87\\x84\\ \\x61\\xf8\\x65\\x4b\\x3f\\x89\\xe1\\x51\\x14\\xbd\\x28\\x08\\x82\\x6b\\x45\\xc4\\ \\x76\\x4b\\x82\\x5b\\x88\\x68\\xaf\\xc4\\x09\\x78\\x40\\xc7\\x0c\\x94\\x4e\\x20\\ \\x8d\\x46\\xe3\\xd0\\x38\\x8e\\x3f\\xdf\\x71\\x85\\xf3\\x18\\xe6\\x35\\x77\\xd6\\ \\xdc\\x71\\xab\\x54\\x2a\\xd7\\x8b\\x88\\xed\\x96\\x04\\xbf\\x24\\xa2\\xe7\\xd8\\ \\xf2\\xe0\\xf1\\xdb\\x66\\xa0\\x54\\x02\\x61\\xe6\\xbf\\x07\\x80\\x9f\\x3a\\x68\\ \\x6a\\x6e\\x8b\\xf7\\xb4\\xd6\\x57\\x39\\xd8\\x92\\xe0\\xa1\\x81\\x81\\x81\\xe7\\ \\x0f\\x0f\\x0f\\xff\\xda\\x01\\x17\\xde\\xc5\\x36\\x18\\x28\\x8d\\x40\\x44\\x04\\ \\xb5\\xd6\\x2e\\x86\\x9a\\xad\\x24\\xa2\\xd1\\x3c\\xce\\x0a\\x66\\x36\\xd3\\x43\\ \\xac\\x2f\\xa6\\xe3\\x38\\xde\\xaf\\x5a\\xad\\x9a\\xc5\\x98\\xfe\\xe8\\x32\\x03\\ \\xa5\\x11\\x08\\x33\\x9b\\x01\\x09\\x4f\\xb0\\xe4\\x23\\xb7\\xc5\\x7b\\x2e\\xb6\\ \\x72\\x33\\xb5\\x23\\xe2\\x49\\x61\\x18\\x5a\\xaf\\xf2\\xb5\\xe4\\xb1\\x6f\\xe0\\ \\xa5\\x10\\x08\\x33\\x7f\\x1b\\x00\\x5e\\x6e\\xd9\\x95\\x1b\\xa7\\xa6\\xa6\\x96\\ \\xd4\\x6a\\xb5\\xcc\\x5f\\x37\\x8d\\xa2\\xe8\\x34\\x44\\x34\\x1b\\xda\\x58\\x1d\\ \\x22\\xb2\\x42\\x29\\x65\\xe6\\x61\\xf9\\x23\\x23\\x06\\x0a\\x2f\\x90\\x28\\x8a\\ \\x2e\\x43\\x44\\xdb\\xd1\\x9a\\xb7\\x37\\x9b\\xcd\\x25\\x63\\x63\\x63\\x66\\xef\\ \\x8f\\x4c\\x0f\\xad\\xf5\\x11\\x22\\xe2\\xe2\\x4d\\xbe\\xcb\\x88\\xe8\\xb8\\x4c\\ \\x93\\xf7\\xc1\\x8a\\xbd\\xd4\\x84\\x99\\xcd\\xe4\\x40\\xdb\\xbf\\x98\\xf7\\xc7\\ \\x71\\x7c\\x78\\xb5\\x5a\\xfd\\x66\\xd6\\xfd\\xd6\\x5a\\xef\\x25\\x22\\x66\\x01\\ \\xe2\\x93\\x2d\\x63\\xdf\\x44\\x44\\xb6\\xc3\\xa9\\x2d\\x53\\xe8\\x4f\\x78\\x61\\ \\xbf\\x41\\xa2\\x28\\x7a\\x2b\\x22\\x5e\\x62\\xdb\\x16\\x11\\x39\\x4a\\x29\\xf5\\ \\x59\\x5b\\x3f\\x49\\xf1\\xf5\\x7a\\xfd\\xd9\\x41\\x10\\x98\\xdb\\xd1\\xbb\\x26\\ \\xc5\\xce\\xb2\\xff\\x31\\x11\\xd9\\xfa\\xb0\\x4c\\xa1\\x7f\\xe1\\x85\\x14\\x48\\ \\xeb\\x2f\\xef\\x5a\\x07\\x6d\\x39\\x9d\\x88\\xac\\x7f\\xfb\\x27\\xcd\\xa3\\x56\\ \\xab\\x6d\\x37\\x34\\x34\\x64\\x86\\x41\\x1f\\x90\\x14\\x3b\\xcb\\xfe\\x7e\\x22\\ \\x7a\\xa2\\xa5\\x0f\\x0f\\xb7\\x60\\xa0\\x90\\x02\\x89\\xa2\\xe8\\x4e\\x44\\x7c\\ \\x81\\x45\\x5d\\x06\\xfa\\x3e\\x22\\x3a\\xc7\\xd2\\x47\\x2a\\x38\\x33\\x9b\\x97\\ \\xb6\\xcc\\xcb\\x5b\\xb6\\xc7\\x0b\\x88\\xe8\\x2e\\x5b\\x27\\x1e\\x9f\\x9e\\x81\\ \\xc2\\x09\\xa4\\x5e\\xaf\\xbf\\x2a\\x08\\x82\\x6f\\xa4\\x2f\\x69\\x33\\x32\\xb7\\ \\xc5\\x7b\\xcc\\x7c\\x2e\\x00\\xbc\\xcb\\x32\\x7f\\x03\\x5f\\x4c\\x44\\x66\\xcf\\ \\x44\\x7f\\xe4\\xc8\\x40\\xe1\\x04\\xa2\\xb5\\x3e\\xc7\\xbc\\xb8\\x64\\xc1\\x49\\ \\x6e\\x8b\\xf7\\xa2\\x28\\x52\\x88\\x58\\xb7\\xc8\\x7d\\x0b\\x34\\x97\\x9f\\x86\\ \\x0e\\xf2\\xee\\x39\\x17\\x85\\x13\\x48\\x14\\x45\\x17\\x23\\xe2\\xdb\\x52\\x32\\ \\x7d\\xcb\\x76\\xdb\\x6d\\xb7\\xe4\\xac\\xb3\\xce\\xfa\\x7d\\x4a\\x7c\\x6a\\x98\\ \\xab\\x9b\\x0a\\x00\\x90\\xdb\\x93\\xfe\\xd4\\xc5\\xf7\\x30\\xb0\\x70\\x02\\x61\\ \\x66\\xb3\\xba\\xf6\\xa0\\x14\\x9c\\xff\\x32\\x8e\\xe3\\x25\\xd5\\x6a\\xf5\\x87\\ \\x29\\xb0\\x56\\x10\\x66\\x7e\\xad\\x88\\xdc\\x80\\x88\\x03\\x56\\x8e\\x00\\xae\\ \\x21\\xa2\\x37\\x58\\xfa\\xf0\\x70\\x87\\x0c\\x14\\x51\\x20\\x66\\x31\\xa2\\x59\\ \\x94\\x98\\xe4\\x78\\xb8\\x25\\x8e\\x2f\\x26\\x01\\xb9\\xb0\\xd5\\x5a\\xbf\\x58\\ \\x44\\xbe\\x00\\x00\\xcf\\xb0\\xf4\\xf7\\x6d\\x22\\xb2\\x9d\\x66\\x62\\x99\\x82\\ \\x87\\xcf\\x66\\xa0\\x88\\x02\\x31\\xfb\\x06\\x3e\\x26\\x49\\xab\\x44\\xe4\\x0a\\ \\xa5\\x94\\x8b\\xbb\\x46\\x49\\xc2\\x9a\\xed\\xa3\\x9f\\x22\\x22\\x46\\x94\\x2f\\ \\x49\\x04\\xdc\\xda\\xf8\\x1e\\x22\\x7a\\xb6\\xa5\\x0f\\x0f\\xef\\x02\\x03\\x85\\ \\x12\\xc8\\x8a\\x15\\x2b\\x9e\\x3a\\x38\\x38\\xf8\\xbb\\xa4\\x75\\x22\\xe2\\x8a\\ \\x30\\x0c\\x6d\\x9f\\xb8\\x27\\x0d\\x0b\\xcc\\x6c\\xbe\\x39\\x0e\\x49\\x0c\\x7c\\ \\x34\\x60\\xd3\\xd4\\xd4\\xd4\\xe3\\x6a\\xb5\\x9a\\xf5\\x86\\xa2\\x96\\x79\\x78\\ \\xf8\\x1c\\x0c\\x14\\x4a\\x20\\x8d\\x46\\x63\\xcf\\x38\\x8e\\xd3\\x8c\\xac\\x79\\ \\x1b\\x11\\x59\\x3f\\x75\\x4f\\x72\\x86\\x38\\x1a\\x6f\\x0a\\x71\\x1c\\xef\\x56\\ \\xad\\x56\\x6f\\x4f\\x12\\xdb\\xdb\\x66\\xc7\\x40\\xa1\\x04\\xc2\\xcc\\x66\\xef\\ \\x40\\xb3\\x87\\x60\\xa2\\x23\\x8e\\xe3\\x7d\\xab\\xd5\\xea\\xd7\\x13\\x81\\x2c\\ \\x8c\\x99\\xd9\\xc9\\x98\\x1e\\x11\\x39\\x42\\x29\\x75\\xad\\x45\\x2a\\x1e\\xda\\ \\x65\\x06\\x8a\\x26\\x90\\x65\\x00\\x30\\x99\\xb4\\x66\\x44\\xdc\\x21\\x0c\\xc3\\ \\x0d\\x49\\x71\\x69\\xec\\xb5\\xd6\\x67\\x8a\\xc8\\x07\\xd3\\x60\\x67\\x62\\xe2\\ \\x38\\x1e\\xa9\\x56\\xab\\x89\\x6b\\xb5\\x8d\\xeb\\xf1\\xc9\\x18\\x28\\x9a\\x40\\ \\xd2\\x3c\\x85\\xfe\\x05\\x11\\xd9\\x0e\\x7a\\xee\\x88\\xb5\\x7a\\xbd\\x7e\\x4c\\ \\x10\\x04\\x97\\x77\\x64\\xbc\\x0d\\x23\\x11\\xb9\\x40\\x29\\x75\\x86\\xad\\x1f\\ \\x8f\\xef\\x3e\\x03\\x45\\x13\\x88\\x59\\x75\\x9b\\xf4\\x39\\x40\\x26\\x53\\xcc\\ \\xeb\\xf5\\xfa\\x6b\\x82\\x20\\x30\\x17\\xe5\\x56\\x5b\\x12\\x98\\xbb\\x5e\\x4a\\ \\x29\\xdb\\x0b\\xfb\\xee\\x9f\\x19\\x3e\\xc2\\x66\\x06\\x8a\\x26\\x10\\x33\\x7c\\ \\x7a\\x8f\\x84\\xbd\\xe9\\xfa\\x7e\\xdf\\xad\\x61\\x11\\x66\\x5d\\x94\\xed\\x37\\ \\xd5\\x1d\\x44\\xb4\\x4b\\xc2\\xfa\\xbc\\x79\\x8e\\x0c\\x14\\x4d\\x20\\x7f\\x48\\ \\xf1\\x72\\x51\\x57\\x27\\x94\\x44\\x51\\xf4\\x58\\x44\\x34\\xe2\\xd8\\xdb\\xb2\\ \\x4f\\x0f\\x10\\x91\\xed\\x3b\\xf5\\x96\\x29\\x78\\x78\\x52\\x06\\x0a\\x23\\x90\\ \\xc9\\xc9\\xc9\\xed\\xa7\\xa7\\xa7\\x13\\xbf\\x2f\\x8e\\x88\\x07\\x84\\x61\\x78\\ \\x73\\xd2\\xc2\\x3b\\xb5\\x8f\\xa2\\xc8\\x6c\\x66\\x73\\x64\\xa7\\xf6\\xf3\\xd9\\ \\x35\\x9b\\xcd\\x9d\\xc6\\xc6\\xc6\\xfe\\x64\\xeb\\xc7\\xe3\\xb3\\x65\\xa0\\x30\\ \\x02\\x31\\xd3\\x06\\x11\\xd1\\x0c\\xa2\\x4e\\x74\\x2c\\x58\\xb0\\x60\\x41\\xb7\\ \\xf6\\x10\\x64\\xe6\\x0b\\x00\\xc0\\x7a\\xe2\\xbb\\x88\\xec\\xa9\\x94\\xb2\\xde\\ \\xbb\\x24\\x11\\x31\\xde\\xd8\\x09\\x03\\x45\\x12\\xc8\\xa2\\xd6\\x4f\\x99\\x24\\ \\x85\\x6d\\x20\\xa2\\x1d\\x92\\x00\\x3a\\xb5\\x65\\xe6\\xf7\\x00\\x80\\x8b\\xbd\\ \\x42\\x8e\\x25\\x22\\xeb\\x3b\\x5f\\x9d\\xe6\\xed\\xed\\xdc\\x32\\x50\\x18\\x81\\ \\x68\\xad\\x4f\\x16\\x91\\x8b\\x92\\x94\\x27\\x22\\x3f\\x54\\x4a\\xd9\\xae\\x83\\ \\xda\\x2a\\xa4\\xd6\\xfa\\x14\\x11\\xf9\\x70\\x92\\x5c\\xe6\\xb1\\x3d\\x9b\\x88\\ \\xc6\\x1d\\xf8\\xf1\\x2e\\x72\\x62\\xa0\\x30\\x02\\x61\\x66\\xf3\\xd7\\xda\\xfc\\ \\xd5\\xee\\xf8\\x30\\x3b\\xc1\\x86\\x61\\x78\\x74\\xc7\\x80\\x0e\\x0c\\xb5\\xd6\\ \\x87\\x8b\\x88\\x8b\\xa7\\xdb\\x17\\x13\\xd1\\xc9\\x1d\\x84\\xf4\\x26\\x05\\x66\\ \\xa0\\x30\\x02\\x89\\xa2\\xe8\\x12\\x44\\x7c\\x6b\\x12\\xae\\x10\\x91\\xc2\\x30\\ \\xd4\\x49\\x30\\xdb\\xb2\\x9d\\x98\\x98\\xd8\\xb3\\x52\\xa9\\x98\\x3b\\x56\\x8f\\ \\xb7\\xf4\\xf9\\x55\\x22\\xda\\xdf\\xd2\\x87\\x87\\x17\\x80\\x81\\xc2\\x08\\x84\\ \\x99\\xbf\\x92\\x74\\x0a\\x88\\x8b\\x35\\x58\\x13\\x13\\x13\\xcf\\xad\\x54\\x2a\\ \\x66\\x7e\\xd5\\xde\\x66\\xeb\\x67\\x00\\xb0\\x7d\\x4e\\xf1\\x2b\\x22\\x7a\\x56\\ \\x01\\x7a\\xeb\\x53\\x70\\xc0\\x40\\x91\\x04\\xf2\\xbf\\x00\\xf0\\xfc\\x24\\x35\\ \\x4d\\x4d\\x4d\\x55\\x6a\\xb5\\x5a\\xa2\\x81\\xd6\\x8d\\x46\\xe3\\x1f\\x45\\xe4\\ \\x65\\x46\\x10\\x00\\x60\\xf6\\xd6\\xb0\\x1d\\x69\\x3a\\x33\\xe5\\x69\\x22\\x1a\\ \\x4c\\x52\\x83\\xb7\\x2d\\x36\\x03\\x45\\x12\\xc8\\xc3\\x00\\x90\\xe8\\xe4\\x22\\ \\xa2\\x6d\\xe6\\x5f\\xab\\xd5\\x06\\xb6\\xdf\\x7e\\xfb\\x97\\x20\\xa2\\xb9\\x90\\ \\xdf\\xb3\\xf5\\xb0\\xef\\xc5\\xdd\\x6a\\xc9\\xa6\\x4d\\x9b\\x9e\\x71\\xf6\\xd9\\ \\x67\\xff\\xb6\\x5b\\xfe\\xbd\\xdf\\xec\\x19\\x28\\x84\\x40\\x56\\xad\\x5a\\xf5\\ \\xf4\\x4d\\x9b\\x36\\xfd\\x26\\x61\\xf9\\x5b\\xfd\\x94\\x59\\xbd\\x7a\\xf5\\xe3\\ \\xa6\\xa6\\xa6\\x36\\x0b\\x02\\x11\\x5f\\xda\\xfa\\x86\\xb0\\xfd\\xc9\\xd4\\x51\\ \\x5a\\x2e\\x7e\\xee\\x75\\x14\\xc8\\x1b\\x65\\xca\\x40\\x21\\x04\\x92\\x66\\x92\\ \\xa2\\x88\\x7c\\x06\\x11\\xcd\\x56\\x6c\\xe6\\xdb\\x61\\xf3\\x7f\\x88\\xb8\\x87\\ \\x88\\xd8\\x0e\\x9c\\x4b\\xdc\\x00\\x11\\x39\\x51\\x29\\xf5\\xf1\\xc4\\xc0\\x94\\ \\x00\\x66\\x3e\\x4c\\x44\\x5c\\xfe\\x34\\x6c\\x9b\\x49\\x10\\x04\\xd2\\xd6\\xc8\\ \\x91\\x41\\x1c\\xc7\\x7f\\x01\\x80\\x5b\\x07\\x06\\x06\\xee\\x18\\x19\\x19\\xb9\\ \\xc7\\x91\\xdb\\x54\\x6e\\x0a\\x21\\x10\\x66\\x36\\xb7\\x6a\\xaf\\x48\\x58\\x81\\ \\x19\\x0a\\x6d\\x84\\x91\\xeb\\x05\\xb1\\x88\\xbc\\x5f\\x29\\x95\\xe8\\xf6\\x74\\ \\xc2\\x3a\\x37\\x9b\\x37\\x1a\\x8d\\x27\\xc5\\x71\\x6c\\xe2\\x98\\x97\\xca\\x6c\\ \\x07\\x44\\xa4\\x49\\x21\\x17\\x0c\\x22\\x5e\\x27\\x22\\x23\\x44\\x74\\x67\\x1e\\ \\x09\\x14\\x42\\x20\\x51\\x14\\x8d\\x20\\x62\\x23\\x0f\\x02\\x2c\\x63\\x5e\\x4a\\ \\x44\\xc7\\x5b\\xfa\\x68\\x0b\\x67\\xe6\\x57\\x03\\x80\\x59\\xf6\\xd2\\xb5\\xeb\\ \\xa7\\xb6\\x49\\xe4\\x6c\\x20\\x22\\xef\\x55\\x4a\\xd9\\x0c\\x14\\x4c\\x55\\x41\\ \\x21\\x04\\xc2\\xcc\\x66\\xc7\\x5a\\xf3\\x73\\xa9\\x4c\\xc7\\x3a\\x22\\xb2\\x5d\\ \\xe1\\xdb\\xb6\\xde\\x96\\x38\\x32\\x7b\\x9d\\xb8\\x6d\\x42\\x39\\x1a\\x20\\xe2\\ \\xee\\x61\\x18\\xde\\x9a\\x65\\x0a\\x45\\x11\\x88\\xd9\\x60\\xe6\\x88\\x2c\\x0b\\ \\xb7\\x8c\\x75\\x2f\\x11\\xd9\\xee\\xf9\\xd1\\x51\\x0a\\x5a\\xeb\\x6b\\xcc\\xbb\\ \\xeb\\x1d\\x19\\xf7\\xbe\\xd1\\xcd\\x03\\x03\\x03\\xaf\\x1b\\x1e\\x1e\\x7e\\x30\\ \\xab\\x52\\x0b\\x21\\x90\\x28\\x8a\\xbe\\xd7\\xba\\xeb\\x94\\x55\\xdd\\x56\\x71\\ \\xda\\xdd\\x5e\\xb6\\x72\\x3e\\x03\\xcc\\xcc\\x27\\x01\\xc0\\x47\\x5d\\xf9\\xeb\\ \\x11\\x3f\\x99\\xce\\x2d\\x2e\\x84\\x40\\x98\\xf9\\x5e\\x00\\x28\\xc5\\x3e\\x18\\ \\x88\\xb8\\x73\\x18\\x86\\x3f\\xcf\\xe2\\x64\\x73\\x38\\x29\\x3e\\x8b\\x74\\xb3\\ \\x8a\\x71\\x15\\x11\\xbd\\x31\\xab\\x60\\xb9\\x0b\\x44\\x6b\\xbd\\x50\\x44\\xcc\\ \\x6d\\xbd\\xa2\\x1f\\x53\\x95\\x4a\\x65\\x9f\\x91\\x91\\x91\\xef\\x67\\x95\\x28\\ \\x33\\x5f\\x0a\\x00\\x6f\\xce\\x2a\\x5e\\x49\\xe2\\xfc\\x89\\x88\\x76\\xca\\x2a\\ \\xd7\\xdc\\x05\\x12\\x45\\xd1\\x2e\\x88\\xf8\\xe3\\xac\\x0a\\x4e\\x19\\xe7\\xaa\\ \\x66\\xb3\\x79\\x4a\\xd6\\x6f\\x04\\x32\\xb3\\x59\\x38\\xb9\\x28\\x65\\xce\\xbd\\ \\x0a\\xbb\\x8f\\x88\\x9e\\x94\\x55\\x71\\xb9\\x0b\\x64\\x62\\x62\\x62\\xff\\x4a\\ \\xa5\\x72\\x53\\x56\\x05\\x77\\x10\\xe7\\x6e\\x44\\x5c\\x1b\\xc7\\xf1\\x3a\\x00\\ \\x58\\xab\\x94\\x72\\xb1\\x15\\x5c\\x07\\x61\\xb7\\x36\\x89\\xa2\\x68\\x1c\\x11\\ \\xc7\\x52\\x81\\x7b\\x17\\x74\\x1b\\x11\\x65\\x76\\xbb\\xbb\\xdf\\x05\\x62\\xe6\\ \\xe1\\x1a\\x01\\xac\\x15\\x91\\x75\\x46\\x18\\x44\\x94\\x78\\x36\\x70\\xb7\\xce\\ \\xc5\\x7a\\xbd\\xbe\\x38\\x08\\x02\\xb3\\xd7\\xa1\\x3f\\xfe\\xc6\\xc0\\x75\\x44\\ \\xb4\\x24\\x2b\\x42\\x72\\x17\\x88\\x29\\x94\\x99\\xcd\\x45\\xaf\\xed\\x48\\x9d\\ \\x4e\\x38\\x33\\xef\\xbc\\xcf\\x14\\xc3\\x0f\\x3a\\x01\\xe5\\x65\\x63\\xd6\\x96\\ \\x6d\\xdc\\xb8\\xf1\\x36\\x00\\xf0\\x93\\xdf\\x5b\\x4d\\x40\\xc4\\x45\\x61\\x18\\ \\x9a\\x3d\\x64\\x32\\x39\\x8a\\x22\\x90\\x34\\x13\\x15\\xdb\\x11\\xf4\\xc0\\x4c\\ \\x31\\x0c\\x0e\\x0e\\xae\\x5d\\xb6\\x6c\\x99\\xf9\\xb7\\x52\\x1d\\x51\\x14\\xbd\\ \\x03\\x11\\xcf\\x2b\\x55\\xd2\\xdd\\x4b\\xf6\\x12\\x22\\x4a\\xbb\\xfb\\x58\\xaa\\ \\xac\\x0a\\x21\\x90\\x35\\x6b\\xd6\\x0c\\xad\\x5f\\xbf\\xfe\\x06\\x00\\xb0\\x79\\ \\x0b\\xcf\\x7c\\x1b\\x98\\x9f\\x4b\\xeb\\x82\\x20\\x58\\x3b\\x3a\\x3a\\x9a\\x78\\ \\x42\\x4a\\x2a\\x06\\x33\\x00\\x31\\xb3\\x59\\xa7\\xe6\\xf4\\xd5\\xe2\\x0c\\xd2\\ \\x76\\x1d\\xe2\\xe6\\x4a\\xa5\\xb2\\x74\\x64\\x64\\xc4\\x6c\\xb0\\x94\\xd9\\x51\\ \\x08\\x81\\x98\\x6a\\x1b\\x8d\\xc6\\x73\\xe2\\x38\\x36\\xa3\\x47\\x5f\\xd6\\x41\\ \\xf5\\xe6\\x3a\\x61\\xb3\\x18\\x9a\\xcd\\xe6\\xda\\x87\\x1e\\x7a\\x68\\x6d\\xaf\\ \\xef\\xaf\\xc1\\xcc\\xff\\x0a\\x00\\x1f\\xe9\\x80\\x9b\\x5e\\x34\\x39\\x8f\\x88\\ \\xce\\xcc\\xa3\\xb0\\xc2\\x08\\x64\\x4b\\xf1\\xad\\xe9\\xe9\\xa3\\xb3\\x56\\xe9\\ \\xae\\x35\\x17\\xd0\\xcd\\x66\\x73\\x9d\\x88\\xac\\x1d\\x1b\\x1b\\xbb\\x3b\\x0f\\ \\xb2\\xf2\\x8e\\x19\\x45\\x91\\x59\\xfb\\xf5\\x16\\x44\\x34\\x6f\\x45\\xee\\x8a\\ \\x88\\x99\\x2c\\x77\\xc9\\xa3\\x6e\\x11\\xf9\\x23\\x00\\x5c\\x19\\xc7\\xf1\\x95\\ \\x63\\x63\\x63\\x5d\\x1b\\x0c\\xd8\\xae\\xb6\\xc2\\x09\\xa4\\x5d\\xc2\\xfe\\x73\\ \\xcf\\x40\\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\x55\\x3a\\x06\\xbc\\x40\\x4a\\ \\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\x55\\x3a\\x06\\xbc\\ \\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\x55\\x3a\\ \\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\ \\x55\\x3a\\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\ \\xb6\\x8f\\x55\\x3a\\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\ \\x64\\xc9\\xb6\\x8f\\x55\\x3a\\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\ \\x78\\x81\\x64\\xc9\\xb6\\x8f\\x55\\x3a\\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\ \\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\x55\\x3a\\x06\\xbc\\x40\\x4a\\xd7\\x32\\ \\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\x55\\x3a\\x06\\xbc\\x40\\x4a\\ \\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\x55\\x3a\\x06\\xbc\\ \\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\x55\\x3a\\ \\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\xb6\\x8f\\ \\x55\\x3a\\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\x64\\xc9\\ \\xb6\\x8f\\x55\\x3a\\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\x78\\x81\\ \\x64\\xc9\\xb6\\x8f\\x55\\x3a\\x06\\xbc\\x40\\x4a\\xd7\\x32\\x9f\\x70\\x96\\x0c\\ \\xfc\\x3f\\x35\\xfb\\xe3\\x32\\x7f\\x9d\\x69\\x22\\x00\\x00\\x00\\x00\\x49\\x45\\ \\x4e\\x44\\xae\\x42\\x60\\x82\\ \\x00\\x00\\x1e\\x02\\ \\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\\x1d\\xc9\\x49\\x44\\x41\\x54\\x78\\x5e\\xed\\x5d\\x0f\\x94\\x1e\\x55\\ \\x75\\xbf\\x77\\xbe\\xdd\\x98\\x6c\\x40\\x43\\x45\\xa9\\x85\\x0a\\x52\\x94\\xa0\\ \\xd6\\xd6\\xda\\xe2\\xbf\\x80\\xa8\\x41\\x54\\x08\\x0a\\x07\\xb1\\x2a\\x20\\x8a\\ \\x88\\x5a\\x8c\\xc9\\x66\\xe7\\xbe\\x5d\\x68\\x8f\\xab\\x47\\xb2\\x3b\\x6f\\x36\\ \\xbb\\x4b\\x30\\xa8\\x88\\x88\\x20\\x62\\x0b\\x0a\\x9a\\x80\\x08\\x11\\xf9\\x27\\ \\x20\\xad\\xad\\x5a\\x15\\x10\\x88\\xe2\\x89\\xa7\\x60\\xa5\\x50\\x21\\x21\\x66\\ \\xf7\\xfb\\x6e\\xcf\\x5d\\x26\\x34\\x24\\xfb\\x67\\xe6\\xbd\\x37\\xf3\\xcd\\x7c\\ \\xf3\\xde\\x39\\xdf\\xf9\\xf6\\x9c\\x7d\\xf7\\xbe\\x7b\\x7f\\x6f\\x7e\\xdf\\xbc\\ \\x99\\x77\\xdf\\xbd\\x08\\xbe\\x79\\x04\\x3c\\x02\\x33\\x22\\x80\\x1e\\x1b\\x8f\\ \\x80\\x47\\x60\\x66\\x04\\x3c\\x41\\xfc\\xd5\\xe1\\x11\\x98\\x05\\x01\\x4f\\x10\\ \\x7f\\x79\\x78\\x04\\x3c\\x41\\xfc\\x35\\xe0\\x11\\x30\\x43\\xc0\\xdf\\x41\\xcc\\ \\x70\\xf3\\x52\\x35\\x41\\xc0\\x13\\xa4\\x26\\x13\\xed\\xdd\\x34\\x43\\xc0\\x13\\ \\xc4\\x0c\\x37\\x2f\\x55\\x13\\x04\\x3c\\x41\\x6a\\x32\\xd1\\xde\\x4d\\x33\\x04\\ \\x3c\\x41\\xcc\\x70\\xf3\\x52\\x35\\x41\\xc0\\x13\\xa4\\x26\\x13\\xed\\xdd\\x34\\ \\x43\\xc0\\x13\\xc4\\x0c\\x37\\x2f\\x55\\x13\\x04\\x3c\\x41\\x6a\\x32\\xd1\\xde\\ \\x4d\\x33\\x04\\x3c\\x41\\xcc\\x70\\xf3\\x52\\x35\\x41\\xc0\\x13\\xa4\\x26\\x13\\ \\xed\\xdd\\x34\\x43\\xc0\\x13\\xc4\\x0c\\x37\\x2f\\x55\\x13\\x04\\x3c\\x41\\x6a\\ \\x32\\xd1\\xde\\x4d\\x33\\x04\\x3c\\x41\\xcc\\x70\\xf3\\x52\\x35\\x41\\xc0\\x13\\ \\xa4\\x26\\x13\\xed\\xdd\\x34\\x43\\xc0\\x13\\xc4\\x0c\\x37\\x2f\\x55\\x13\\x04\\ \\x3c\\x41\\x6a\\x32\\xd1\\xde\\x4d\\x33\\x04\\x3c\\x41\\xcc\\x70\\xf3\\x52\\x35\\ \\x41\\xc0\\x13\\xa4\\x26\\x13\\xed\\xdd\\x34\\x43\\xc0\\x13\\xc4\\x0c\\x37\\x23\\ \\xa9\\xe1\\xe1\\xe1\\x17\\x32\\xf3\\x81\\x5d\\x5d\\x5d\\x7b\\x31\\xf3\\xd4\\x07\\ \\x00\\xa6\\x3e\\x88\\xb8\\xe3\\x6f\\xd1\\xfd\\x28\\x33\\x3f\\x2a\\xdf\\xf2\\x41\\ \\xc4\\xa9\\xcf\\xe4\\xe4\\xa4\\x7c\\x6f\\xea\\xef\\xef\\xff\\x8d\\x91\\x01\\x5e\\ \\x28\\x33\\x02\\x9e\\x20\\x99\\x21\\x9b\\x5d\\x60\\x74\\x74\\x74\\xdf\\x66\\xb3\\ \\x79\\x68\\xab\\xd5\\x3a\\x10\\x00\\x0e\\x44\\xc4\\x03\\x85\\x14\\xf2\\x0d\\x00\\ \\x5d\\x8e\\x86\\x9b\\x64\\xe6\\x4d\\x42\\x16\\xf9\\x06\\x80\\x4d\\x41\\x10\\x6c\\ \\x6a\\x34\\x1a\\x77\\xf5\\xf6\\xf6\\xfe\\xd6\\xd1\\x18\\x5e\\x0d\\x00\\x78\\x82\\ \\x58\\x5e\\x06\\x71\\x1c\\x2f\\x44\\xc4\\x25\\xad\\x56\\xeb\\x4d\\x00\\xf0\\x56\\ \\x00\\x78\\x85\\xa5\\x4a\\x5b\\xf1\\x9f\\x02\\xc0\\x75\\x41\\x10\\xdc\\xc8\\xcc\\ \\xb7\\x85\\x61\\xb8\\xc5\\x56\\x61\\x9d\\xe5\\x3d\\x41\\x0c\\x66\\x3f\\x8a\\xa2\\ \\x43\\x11\\xf1\\x70\\x00\\x58\\x02\\x00\\x6f\\x01\\x80\\x05\\x06\\x6a\\x8a\\x10\\ \\x79\\x12\\x00\\xae\\x07\\x80\\xdb\\x98\\xf9\\x16\\xa5\\xd4\\x5d\\x45\\x0c\\xda\\ \\x49\\x63\\x78\\x82\\xa4\\x9c\\xcd\\x28\\x8a\\x0e\\x46\\xc4\\x65\\xf2\\x61\\x66\\ \\x21\\x47\\xe5\\x1a\\x22\\xde\\xc2\\xcc\\xeb\\xe5\\xa3\\x94\\xba\\xb7\\x72\\x0e\\ \\xb4\\xc1\\x60\\x4f\\x90\\x59\\x40\\x1f\\x1f\\x1f\\xdf\\x67\\xfb\\xf6\\xed\\xcb\\ \\x00\\xe0\\x58\\x00\\x90\\xef\\x4e\\x6a\\xeb\\x01\\xe0\\xdb\\xf3\\xe6\\xcd\\x5b\\ \\xbf\\x62\\xc5\\x8a\\x87\\x3b\\xc9\\x31\\x97\\xbe\\x78\\x82\\x4c\\x83\\xa6\\xd6\\ \\xfa\\xf5\\x00\\x70\\x2a\\x22\\x9e\\xc0\\xcc\\x8b\\x5c\\x02\\x5e\\x36\\x5d\\x88\\ \\xf8\\x18\\x33\\x5f\\x09\\x00\\x17\\x13\\xd1\\x0f\\xca\\x66\\x5f\\xbb\\xed\\xf1\\ \\x04\\xd9\\x69\\x06\\xb4\\xd6\\x6f\\x17\\x62\\x00\\xc0\\xbb\\xda\\x3d\\x31\\x6d\\ \\x1a\\xff\\x8a\\x84\\x28\\xd7\\xb6\\x69\\xfc\\xd2\\x0d\\xeb\\x09\\x02\\x00\\x5a\\ \\xeb\\xf7\\x24\\xc4\\x90\\x07\\x6e\\xdf\\x9e\\x7a\\xb0\\x97\\x3b\\xca\\xe5\\x75\\ \\x07\\xa3\\xd6\\x04\\xd1\\x5a\\x7f\\x10\\x00\\x4e\\x07\\x80\\xd7\\xd4\\xfd\\x42\\ \\x98\\xc1\\xff\\x3b\\x01\\xe0\\x8b\\x44\\x74\\x51\\x5d\\xf1\\xa9\\x25\\x41\\xe4\\ \\x19\\x03\\x11\\x43\\x66\\x7e\\x47\\x5d\\x27\\x3e\\x8b\\xdf\\x88\\xf8\\x2d\\x66\\ \\x8e\\xeb\\xf8\\x8c\\x52\\x2b\\x82\\x8c\\x8c\\x8c\\xec\\xdd\\x6a\\xb5\\x42\\x00\\ \\xa0\\x2c\\x17\\x88\\xef\\xfb\\x34\\x02\\x3a\\x08\\x82\\xb8\\xaf\\xaf\\xef\\xf7\\ \\x75\\xc1\\xa4\\x36\\x04\\x49\\x96\\x53\\x42\\x8c\\x83\\xeb\\x32\\xb9\\x39\\xf9\\ \\x29\\xfb\\x27\\xba\\x2e\\xcb\\xae\\x8e\\x27\\x48\\xb2\\xc1\\x37\\x04\\x00\\xc7\\ \\xe5\\x74\\xc1\\xd4\\x55\\xed\\x55\\xcc\\x3c\\xd0\\xe9\\x1b\\x8e\\x1d\\x4d\\x90\\ \\x38\\x8e\\x4f\\x62\\x66\\x21\\xc7\\x7e\\x25\\xbc\\x8a\\x27\\x00\\x60\\x0b\\x22\\ \\x6e\\x61\\xe6\\xad\\xf2\\x77\\xf2\\x11\\x53\\x17\\xca\\x07\\x11\\x7b\\x98\\x79\\ \\xea\\x6f\\x00\\xe8\\x2e\\xa1\\x0f\\x9b\\x11\\x71\\x20\\x0c\\xc3\\xaf\\x96\\xd0\\ \\x36\\x27\\x26\\x75\\x24\\x41\\x46\\x47\\x47\\x17\\x4c\\x4e\\x4e\\x0a\\x31\\x3e\\ \\xe1\\x04\\x25\\x3b\\x25\\x0f\\x32\\xf3\\x3d\\x00\\x70\\x37\\x22\\xde\\x2d\\xdf\\ \\x41\\x10\\xdc\\x9d\\x75\\x1d\\x9f\\x3c\\x3f\\x1d\\x02\\x00\\x87\\x30\\xf3\\xd4\\ \\x37\\x22\\x2e\\x06\\x80\\xfd\\xed\\xcc\\x73\\x22\\x7d\\x6e\\x57\\x57\\xd7\\x40\\ \\x6f\\x6f\\xaf\\xc4\\x7e\\x75\\x54\\xeb\\x38\\x82\\x0c\\x0f\\x0f\\x1f\\xde\\x68\\ \\x34\\x86\\x98\\xf9\\x75\\x6d\\x9a\\xa9\\x1f\\x23\\xe2\\x4d\\xad\\x56\\xeb\\xe6\\ \\x79\\xf3\\xe6\\xdd\\xb4\\x72\\xe5\\xca\\xc7\\xf2\\xb4\\x63\\x6c\\x6c\\x6c\\xd1\\ \\xf6\\xed\\xdb\\x8f\\x08\\x82\\xe0\\x0d\\xcc\\x7c\\x04\\x00\\xfc\\x75\\x9e\\xe3\\ \\xcd\\xa4\\x1b\\x11\\x6f\\x6f\\x36\\x9b\\x03\\xfd\\xfd\\xfd\\xb7\\xb4\\x63\\xfc\\ \\xbc\\xc6\\xec\\x28\\x82\\xc4\\x71\\xdc\\x9b\\x2c\\xa9\\xe6\\xe5\\x05\\xd8\\x34\\ \\x7a\\xff\\x00\\x00\\x1b\\x98\\x79\\x63\\xab\\xd5\\xba\\x75\\x60\\x60\\xe0\\xfe\\ \\x02\\xc7\\xde\\x6d\\xa8\\xa1\\xa1\\xa1\\x83\\x82\\x20\\x38\\x0c\\x11\\x97\\x02\\ \\xc0\\x31\\x00\\xf0\\xec\\x02\\xed\\xd9\\x9e\\x2c\\xb9\\x46\\x0b\\x1c\\x33\\xd7\\ \\xa1\\x3a\\x86\\x20\\x5a\\xeb\\xb5\\x00\\xf0\\xf1\\x5c\\xd1\\xfa\\x7f\\xe5\\xf2\\ \\xfc\\x70\\x0d\\x22\\x0a\\x31\\xae\\x21\\xa2\\x87\\x0a\\x1a\\x37\\xd3\\x30\\x5a\\ \\xeb\\x3f\\x45\\xc4\\xa3\\x99\\x59\\x88\\x72\\x74\\x81\\xcf\\x31\\xe7\\x11\\xd1\\ \\xf2\\x4c\\xc6\\x96\\xb4\\x73\\x47\\x10\\x44\\x6b\\xfd\\x2f\\x05\\xc5\\x4f\\xdd\\ \\x01\\x00\\x97\\x0b\\x31\\xc2\\x30\\xfc\\x55\\x49\\xe7\\x74\\x5a\\xb3\\xe2\\x38\\ \\x7e\\x51\\x42\\x14\\x09\\xab\\x79\\x6d\\x01\\xb6\\x5f\\x41\\x44\\x27\\x16\\x30\\ \\x4e\\xae\\x43\\x54\\x9e\\x20\\x5a\\x6b\\x59\\xf3\\x1e\\x96\\x2b\\x4a\\x00\\x1b\\ \\x00\\xe0\\x12\\x22\\x92\\x60\\xbe\\xca\\x37\\xad\\xb5\\x04\\x63\\x9e\\x92\\x2c\\ \\xc1\\xf2\\xf4\\xe7\\x56\\x22\\xaa\\xe4\\xd9\\x99\\x1d\\xa0\\x54\\x9a\\x20\\x51\\ \\x14\\xdd\\x87\\x88\\x07\\xe5\\x35\\xc3\\x88\\xf8\\x15\\x21\\x46\\x18\\x86\\x37\\ \\xe6\\x35\\x46\\x3b\\xf5\\xc6\\x71\\x2c\\xc7\\x84\\x4f\\x61\\xe6\\xf7\\xe7\\x65\\ \\x07\\x33\\xdf\\xaf\\x94\\x7a\\x71\\x5e\\xfa\\xf3\\xd6\\x5b\\x59\\x82\\x44\\x51\\ \\xf4\\x38\\x22\\xee\\x91\\x13\\x40\\xd7\\x06\\x41\\x30\\xd4\\xd7\\xd7\\x77\\x5b\\ \\x4e\\xfa\\x4b\\xa5\\x76\\x64\\x64\\x44\\xce\\xd4\\x0f\\x00\\x80\\x84\\xfb\\x3b\\ \\x6f\\xcc\\xfc\\x84\\x52\\x6a\\x4f\\xe7\\x8a\\x0b\\x50\\x58\\x49\\x82\\x68\\xad\\ \\x25\\x16\\xe8\\xb9\\x39\\xe0\\xb3\\x19\\x00\\x86\\x89\\x68\\x5d\\x0e\\xba\\x4b\\ \\xaf\\x52\\x6b\\xfd\\x0f\\x00\\xd0\\x9f\\xd3\\xc6\\xea\\x23\\x44\\xb4\\x77\\xe9\\ \\x41\\xd8\\xc5\\xc0\\xca\\x11\\x44\\x6b\\x2d\\x0f\\xca\\x79\\x84\\xa7\\x5f\\xd0\\ \\xdd\\xdd\\x3d\\xb4\\x72\\xe5\\xca\\x5f\\x57\\x6d\\x12\\x5d\\xda\\x3b\\x36\\x36\\ \\x76\\xc0\\xc4\\xc4\\x84\\xdc\\x4d\\x3e\\xec\\x52\\x6f\\xa2\\xeb\\x4e\\x22\\x2a\\ \\xe2\\x05\\x81\\x33\\xd3\\x2b\\x45\\x90\\x28\\x8a\\x2e\\x41\\xc4\\x93\\x9d\\x79\\ \\xff\\x94\\xa2\\x07\\x24\\xf4\\x3d\\x0c\\xc3\\xab\\x1c\\xeb\\xad\\xb4\\xba\\x38\\ \\x8e\\x8f\\x93\\x10\\x77\\x00\\xf8\\x0b\\x97\\x8e\\x30\\xf3\\xa5\\x4a\\x29\\x79\\ \\x41\\x50\\x89\\x56\\x19\\x82\\x44\\x51\\xb4\\x06\\x11\\x7b\\x1d\\xa3\\x2a\\xa4\\ \\x08\\x89\\xe8\\x01\\xc7\\x7a\\x3b\\x42\\x9d\\xd6\\x5a\\xc8\\x21\\x24\\x71\\x1a\\ \\xe8\\xc9\\xcc\\xa3\\x4a\\xa9\\x55\\x55\\x00\\xa9\\x12\\x04\\xd1\\x5a\\x9f\\x03\\ \\x00\\x67\\xb9\\x04\\x94\\x99\\x3f\\xa5\\x94\\x1a\\x74\\xa9\\xb3\\x53\\x75\\xc5\\ \\x71\\xfc\\x49\\x66\\x76\\x8d\\xd5\\x6a\\x22\\x3a\\xbb\\xec\\x98\\x95\\x9e\\x20\\ \\x49\\xf8\\xc8\\x1a\\x87\\x40\\xfa\\x25\\x95\\x01\\x98\\x79\\x2c\\xb9\\x10\\x71\\ \\x55\\x18\\x86\\xa5\\x0e\\x4b\\x29\\x35\\x41\\x24\\xf0\\x30\\x08\\x82\\x1b\\x00\\ \\xc0\\x49\\x6c\\x15\\x22\\xfe\\xa8\\xd5\\x6a\\x9d\\xac\\x94\\x92\\xa8\\x5a\\xdf\\ \\x32\\x22\\x10\\x45\\xd1\\x21\\x41\\x10\\x5c\\xca\\xcc\\xaf\\xca\\x28\\x3a\\x53\\ \\xf7\\xed\\xad\\x56\\xeb\\xc8\\x32\\x07\\x38\\x96\\x96\\x20\\x12\\xb2\\xde\\x6c\\ \\x36\\x37\\xba\\x8a\\xca\\x95\\x3c\\xb5\\x4f\\x3e\\xf9\\xe4\\xdb\\x06\\x07\\x07\\ \\x9f\\x70\\x34\\xb9\\xb5\\x54\\x33\\x38\\x38\\xb8\\xc7\\x82\\x05\\x0b\\xbe\\x23\\ \\xf9\\x88\\x5d\\x00\\x20\\x51\\xc0\\x8d\\x46\\x63\\x69\\x59\\x43\\xe5\\x4b\\x4b\\ \\x10\\xad\\xf5\\xb8\\xc3\\xf3\\x1c\\xd7\\x13\\xd1\\x51\\x2e\\x26\\xd4\\xeb\\x78\\ \\x0a\\x01\\xad\\xf5\\x77\\x93\\xbc\\xc4\\x2e\\x20\\x39\\x97\\x88\\x56\\xb8\\x50\\ \\xe4\\x5a\\x47\\x29\\x09\\x92\\x9c\\x04\\xbc\\xd4\\x85\\xb3\\xcc\\xfc\\x79\\xa5\\ \\xd4\\x47\\x5d\\xe8\\xf2\\x3a\\x9e\\x89\\x40\\x14\\x45\\x9f\\x43\\xc4\\x8f\\xb8\\ \\xc0\\x45\\x5e\\xdf\\x97\\xf1\\x64\\x62\\xe9\\x08\\x92\\x9c\\x21\\xdf\\xe8\\x68\\ \\x37\\x57\\x76\\xc5\\x65\\xd3\\xcb\\xb7\\x9c\\x10\\xd0\\x5a\\xcb\\xc9\\x4d\\xd9\\ \\x7d\\xb7\\x6d\\x9b\\x99\\x79\\x69\\xd9\\xce\\xb8\\x97\\x8e\\x20\\x5a\\xeb\\x6f\\ \\xba\\x78\\xef\\x8e\\x88\\xe7\\x87\\x61\\x28\\xa1\\x13\\xbe\\xe5\\x8c\\x40\\x1c\\ \\xc7\\xeb\\x98\\xf9\\x63\\x0e\\x86\\xb9\\x8a\\x88\\x8e\\x77\\xa0\\xc7\\x99\\x8a\\ \\x52\\x11\\x24\\x49\\xcd\\xf3\\x25\\x07\\xde\\x5d\\x46\\x44\\x27\\x39\\xd0\\xe3\\ \\x55\\xa4\\x44\\x40\\x6b\\x2d\\x89\\x1b\\xde\\x97\\xb2\\xfb\\x6c\\xdd\\x4e\\x2b\\ \\x53\\x4a\\xa1\\xd2\\x10\\x24\\x49\\x4a\\x20\\xd1\\xb3\\xb6\\x79\\xab\\x36\\xce\\ \\x9f\\x3f\\xff\\x98\\xe5\\xcb\\x97\\xff\\xd1\\xc1\\x64\\x79\\x15\\x29\\x11\\x58\\ \\xbb\\x76\\xed\\xb3\\xb6\\x6d\\xdb\\x26\\xe7\\x66\\xe4\\xa8\\xaf\\x4d\\xbb\\x37\\ \\x08\\x82\\x25\\x59\\x93\\x5a\\xd8\\x0c\\x38\\x9b\\x6c\\x69\\x08\\xa2\\xb5\\x8e\\ \\x1c\\x64\\x3c\\x94\\x90\\x91\\xb7\\x11\\xd1\\x7d\\x79\\x01\\xe6\\xf5\\xce\\x8c\\ \\x80\\xd6\\x5a\\xce\\x7d\\x7c\\xc7\\x41\\xfc\\x96\\x24\\xa6\\x53\\x65\\xc0\\xba\\ \\x14\\x04\\x49\\xea\\x71\\x58\\x9f\\xbd\\x40\\xc4\\xe3\\x7d\\xd0\\x61\\x7b\\x2f\\ \\xab\\x64\\xc7\\x5d\\x9e\\x23\\x6d\\xdb\\x92\\x32\\xe4\\x02\\x2e\\x05\\x41\\xe2\\ \\x38\\xbe\\xda\\x36\\x91\\xb4\\x8f\\xad\\xb2\\xbd\\x1e\\xdd\\xc9\\x47\\x51\\x34\\ \\x88\\x88\\x9f\\xb4\\xd1\\x28\\x09\\xb3\\xc3\\x30\\x7c\\xa7\\x8d\\x0e\\x17\\xb2\\ \\x6d\\x27\\x88\\xa3\\x07\\xf3\\xd2\\xbd\\xfd\\x70\\x31\\x39\\x55\\xd6\\xe1\\xe8\\ \\x6d\\x64\\xdb\\x1f\\xd8\\xcb\\x40\\x10\\xdb\\x03\\x50\\xf2\\xdc\\x71\\x94\\x0f\\ \\x59\\x2f\\x17\\x9d\\x92\\x50\\x79\\xd9\\x6d\\xb7\\x39\\x4f\\xd2\\xf6\\x03\\x56\\ \\x6d\\x25\\x48\\x52\\xd9\\xe9\\x6b\\x36\\x53\\xeb\\x9f\\x3b\\x6c\\xd0\\xcb\\x57\\ \\xd6\\xd1\\xf3\\xc8\\x7b\\xdb\\x59\\xe9\\xaa\\xdd\\x04\\xb1\\x8d\\xe7\\xb9\\x80\\ \\x88\\xce\\xc8\\x77\\x9a\\xbd\\x76\\x1b\\x04\\xb4\\xd6\\x5f\\xb0\\x3c\\xbe\\xdb\\ \\xd6\\x38\\xba\\xb6\\x11\\x24\\x29\\x98\\x79\\x8d\\x05\\xf8\\x9b\\xbb\\xbb\\xbb\\ \\x0f\\xab\\xfb\\x19\\x72\\x0b\\xfc\\x0a\\x11\\x4d\\xce\\xb8\\xdf\\x6a\\x19\\x3a\\ \\x74\\x34\\x11\\xb5\\xa5\\xb0\\x68\\x3b\\x09\\x62\\x9b\\x0d\\xf1\\xcc\\xba\\x66\\ \\x1f\\x29\\xe4\\xca\\x76\\x38\\x48\\x92\\x2d\\xe5\\xb3\\x16\\x2a\\xdb\\x96\\xa5\\ \\xb1\\x2d\\x04\\x71\\xb0\\xef\\x71\\x2d\\x11\\x49\\xae\\x59\\xdf\\x2a\\x82\\x80\\ \\xd6\\x5a\\x56\\x0b\\x36\\x79\\xb7\\xda\\xb2\\x2f\\xd2\\x2e\\x82\\x7c\\x11\\x00\\ \\x3e\\x64\\x3a\\xb7\\x92\\xbd\\xbc\\x2e\\x49\\xdd\\x4c\\x31\\xca\\x2a\\x17\\x45\\ \\xd1\\x7e\\x88\\x28\\x29\\x79\\x24\\x54\\xe4\\x39\\xcc\\xfc\\x9f\\x41\\x10\\x48\\ \\xe6\\xca\\x1b\\x5d\\x84\\x7d\\x24\\xc9\\xe9\\x64\\xa9\\x65\\xda\\x2e\\x24\\x22\\ \\xa9\\x48\\x5c\\x68\\x2b\\x9c\\x20\\xe3\\xe3\\xe3\\xfb\\x4c\\x4c\\x4c\\xdc\\xc3\\ \\xcc\\x8b\\x4c\\x3c\\x95\\x74\\xa0\\x61\\x18\\x9e\\x6a\\x22\\xeb\\x65\\xa6\\x47\\ \\x20\\x8a\\xa2\\xb3\\x11\\xf1\\x33\\x33\\xe0\\xe3\\xac\\x26\\x61\\x1c\\xc7\\x17\\ \\x9b\\xa6\\x39\\x45\\xc4\\xc7\\xba\\xbb\\xbb\\x17\\xaf\\x58\\xb1\\xe2\\xe1\\x22\\ \\xe7\\xb1\\x70\\x82\\x68\\xad\\xe5\\xce\\x21\\x77\\x10\\xa3\\x86\\x88\\x6f\\xee\\ \\xd4\\x5c\\xb9\\x46\\x80\\x58\\x08\\xc9\\x19\\x73\\x44\\xd4\\x29\\x93\\x58\\x7f\\ \\x8d\\x88\\xac\\xa2\\x75\\x25\\x17\\x30\\x33\\x7f\\xcf\\xc2\\xe4\\xd3\\x89\\xe8\\ \\x42\\x0b\\xf9\\xcc\\xa2\\xed\\x20\\xc8\\xb7\\x01\\x60\\x59\\x66\\x4b\\x9f\\x12\\ \\xd8\\x40\\x44\\xa6\\xb2\\x86\\x43\\x76\\xa6\\xd8\\xe8\\xe8\\xe8\\xbe\\x93\\x93\\ \\x93\\x12\\x7d\\x9b\\xba\\x22\\x15\\x22\\xae\\x0c\\xc3\\x50\\x8e\\x42\\x1b\\x37\\ \\xad\\xf5\\xfa\\x94\\x84\\x9c\\x6e\\x8c\\xf5\\x44\\x74\\xac\\xf1\\xe0\\x06\\x82\\ \\x85\\x12\\x24\\x39\\x2d\\x28\\xf5\\xfa\\x4c\\xdb\\x89\\x9d\\x52\\x82\\xc0\\x14\\ \\x00\\x17\\x72\\x83\\x83\\x83\\xcf\\x5e\\xb0\\x60\\xc1\\x7a\\x44\\xcc\\x5c\\x9a\\ \\xa0\\xd9\\x6c\\xbe\\x68\\x60\\x60\\xc0\\x38\\x3d\\x6b\\x52\\x7a\\x41\\xde\\x60\\ \\x1a\\x35\\x66\\x5e\\x5c\\xe4\\xa9\\xc3\\x42\\x09\\xa2\\xb5\\xee\\x4b\\x32\\xf5\\ \\x99\\x80\\x73\\x07\\x11\\xb5\\xab\\xee\\xa0\\x89\\xbd\\xa5\\x95\\xb1\\xfc\\x15\\ \\xff\\x00\\x11\\x5d\\x6c\\xe3\\x9c\\xd6\\xfa\\x76\\x8b\\x22\\x3e\\x92\\x09\\x73\\ \\xc4\\x66\\xfc\\x2c\\xb2\\x85\\x12\\x24\\x8e\\xe3\\x9b\\x99\\x39\\xf3\\xaf\\x56\\ \\xe2\\xd0\\x72\\x22\\x3a\\x2f\\x8b\\x73\\xbe\\xef\\xee\\x08\\x68\\xad\\x2f\\x03\\ \\x80\\xf7\\x5a\\x60\\x73\\x31\\x11\\x7d\\xc0\\x42\\x5e\\x32\\xa2\\x48\\xa9\\x3c\\ \\x29\\x99\\x97\\xb9\\x21\\xe2\\x2d\\x61\\x18\\xbe\\x21\\xb3\\xa0\\xa1\\x40\\x61\\ \\x04\\x89\\xa2\\xe8\\x50\\x44\\xfc\\xa1\\xa1\\x9d\\x13\\x88\\x78\\x70\\xd5\\xca\\ \\x9e\\x19\\xfa\\x9a\\x9b\\x98\\xd6\\xfa\\x73\\x00\\x60\\x9b\\x85\\xe4\\x26\\x22\\ \\x7a\\xa3\\x8d\\x91\\x49\\x39\\x38\\x79\\x3b\\x66\\x54\\xfb\\x9d\\x99\\x5f\\xad\\ \\x94\\xba\\xcb\\xc6\\x86\\xb4\\xb2\\x85\\x11\\x44\\x6b\\x2d\\x99\\x2f\\x24\\x03\\ \\x86\\x49\\xbb\\x9a\\x88\\x9c\\x26\\x50\\x36\\x31\\xa2\\xca\\x32\\x8e\\x4e\\x6c\\ \\x0a\\x04\\xd6\\x04\\x11\\x25\\x5a\\x6b\\x49\\x1c\\x6e\\x7a\\xde\\x63\\x80\\x88\\ \\x86\\x8b\\x98\\x8f\\x22\\x09\\x22\\x47\\x31\\xdf\\x6a\\xe2\\x14\\x22\\x7e\\x28\\ \\x0c\\x43\\x17\\xc9\\x1c\\x4c\\x86\\xaf\\xbc\\x4c\\x1c\\xc7\\x67\\x33\\xf3\\x4c\\ \\xfb\\x1c\\x59\\xfd\\x73\\x42\\x90\\x38\\x8e\\x4f\\x63\\x66\\xd3\\x57\\xb6\\xd7\\ \\x11\\xd1\\xdb\\xb2\\x1a\\x6e\\xd2\\xbf\\x10\\x82\\x44\\x51\\xb4\\x27\\x22\\xfe\\ \\x0e\\x00\\xe6\\x1b\\x18\\x29\\x75\\xc8\\x0f\\x2e\\x6b\\xa9\\x65\\x03\\x7f\\x0a\\ \\x15\\x89\\xa2\\x68\\x39\\x22\\x9e\\xeb\\x70\\xd0\\x13\\x88\\xe8\\x1b\\xb6\\xfa\\ \\xa4\\x44\\x35\\x00\\xc8\\x32\\xcb\\xa4\\x8e\\xfb\\x36\\x66\\x7e\\xbe\\x52\\xea\\ \\x71\\x5b\\x3b\\xe6\\x92\\x2f\\x84\\x20\\x96\\xe7\\x02\\xac\\x37\\xa8\\xe6\\x02\\ \\xa1\\x53\\xff\\xaf\\xb5\\x96\\x88\\x83\\x2f\\xbb\\xf2\\x8f\\x99\\x37\\x2d\\x5a\\ \\xb4\\x68\\xf1\\x19\\x67\\x9c\\x21\\x75\\xe2\\xad\\x9b\\xcd\\x0b\\x83\\xa2\\xce\\ \\x01\\x15\\x42\\x90\\x28\\x8a\\xd6\\x21\\xa2\\x51\\x62\\x31\\xbf\\xbc\\x32\\xbb\\ \\x0e\\xa3\\x28\\x3a\\x1e\\x11\\xad\\x7f\\xe9\\x77\\x1e\\x9d\\x99\\x3f\\xaa\\x94\\ \\xfa\\xbc\\x99\\x45\\xbb\\x4b\\xd9\\x2c\\xb3\\x98\\xf9\\x7c\\xa5\\x54\\xee\\x89\\ \\x01\\x0b\\x21\\x88\\xd6\\x5a\\xca\\x0d\\x2c\\x36\\x01\\x96\\x99\\x5f\\xea\\xcb\\ \\x15\\x64\\x43\\x2e\\x8e\\xe3\\xa5\\xcc\\x2c\\x3b\\xd6\\x26\\x4b\\xda\\x69\\x07\\ \\x43\\xc4\\xa1\\x30\\x0c\\x9d\\x16\\x31\\x4a\\x42\\x5d\\x7e\\x91\\xcd\\xbb\\xa7\\ \\x7b\\xdf\\x43\\x44\\x87\\x18\\xca\\xa6\\x16\\xcb\\x9d\\x20\\xc3\\xc3\\xc3\\x2f\\ \\x0c\\x82\\xe0\\xc1\\xd4\\x16\\x3d\\xb3\\xe3\\xcf\\x89\\xe8\\xe5\\x86\\xb2\\xb5\\ \\x14\\x1b\\x19\\x19\\xf9\\xbb\\x56\\xab\\x25\\x21\\x24\\xcf\\x77\\x08\\xc0\\x3a\\ \\x22\\x3a\\xd3\\xa1\\xbe\\xa7\\x55\\x69\\xad\\x7f\\x06\\x00\\x2f\\x33\\xd1\\xdd\\ \\x6a\\xb5\\xf6\\xef\\xef\\xef\\xff\\x8d\\x89\\x6c\\x5a\\x99\\xdc\\x09\\x62\\xf3\\ \\xfc\\xc1\\xcc\\x5f\\x52\\x4a\\x19\\x87\\xc5\\xa7\\x05\\xa1\\x53\\xfa\\x49\\x28\\ \\x4f\\x10\\x04\\x1b\\x98\\xf9\\x20\\x57\\x3e\\x21\\xe2\\xa5\\x61\\x18\\xe6\\x56\\ \\x74\\x33\\x8a\\xa2\\x0b\\x11\\xf1\\x34\\x13\\x7b\\x8b\\x78\\x0e\\xc9\\x9d\\x20\\ \\x51\\x14\\xad\\x42\\x44\\xd3\\xd0\\x80\\xbf\\x27\\xa2\\x7f\\x36\\x01\\xaf\\x6e\\ \\x32\\xc9\\x5b\\x21\\x39\\x94\\xf4\\x37\\x0e\\x7d\\xff\\x16\\x11\\x99\\xee\\x55\\ \\xa4\\x32\\x43\\x6b\\xfd\\x6e\\x00\\xf8\\x7a\\xaa\\xce\\xbb\\x74\\x62\\xe6\\x3e\\ \\xa5\\x94\\xcb\\xf2\\x7c\\xbb\\x99\\x51\\x04\\x41\\x8c\\x1f\\xd0\\x9b\\xcd\\xe6\\ \\x9f\\x0c\\x0c\\x0c\\x3c\\x6a\\x02\\x5e\\x9d\\x64\\x06\\x07\\x07\\x7b\\x7a\\x7a\\ \\x7a\\xe4\\xcc\\xb6\\xcb\\x10\\x8c\\xef\\x6f\\xdd\\xba\\xf5\\x98\\xc1\\xc1\\xc1\\ \\xad\\x79\\x62\\x39\\x34\\x34\\xb4\\x57\\xa3\\xd1\\xf8\\x1f\\x93\\x31\\x8a\\x78\\ \\x50\\xcf\\x9d\\x20\\x5a\\x6b\\xd3\\x0d\\xc2\\x07\\x89\\xe8\\x00\\x13\\xe0\\xd2\\ \\xca\\x8c\\x8c\\x8c\\xbc\\x94\\x99\\x5f\\xcb\\xcc\\x3b\\x36\\x9d\\x1e\\x62\\xe6\\ \\xdf\\x07\\x41\\x20\\x87\\xb2\\x7e\\x95\\x56\\x4f\\xbb\\xfb\\x69\\xad\\x6d\\x8e\\ \\x10\\x4c\\x67\\xfe\\xbf\\x31\\xf3\\x71\\x4a\\xa9\\xcd\\x45\\xf8\\xa6\\xb5\\x96\\ \\xe8\\xe0\\xfd\\x0d\\xc6\\xca\\x7d\\xc3\\x30\\x77\\x82\\x44\\x51\\x74\\x2f\\x22\\ \\xbe\\x24\\xab\\xf3\\xcc\\xfc\\x5d\\xa5\\x94\\xd1\\xce\\x7b\\x9a\\xb1\\xb4\\xd6\\ \\xb2\\xec\\x9b\\xa9\\x56\\xb7\\x6c\\x4e\\x7e\\x05\\x00\\x2e\\x22\\xa2\\x1f\\xa7\\ \\xd1\\xd7\\xae\\x3e\\x0e\\xcb\\x0e\\x4c\\xb9\\x80\\x88\\xbf\\x6c\\x36\\x9b\\xc7\\ \\xf7\\xf7\\xf7\\xff\\xbc\\x28\\x9f\\xa2\\x28\\xba\\x0e\\x11\\x33\\x97\\xc8\\x63\\ \\xe6\\x5f\\x2a\\xa5\\x6c\\xab\\x01\\xcc\\xea\\x66\\xee\\x04\\xd1\\x5a\\xcb\\xa6\\ \\x52\\x57\\x56\\xb0\\x99\\x79\\x5c\\x29\\xb5\\x32\\xab\\x5c\\x9a\\xfe\\x5a\\x6b\\ \\x29\\xef\\x96\\xa6\\x7e\\xc8\\x63\\x44\\xb4\\x57\\x1a\\x9d\\xed\\xe8\\xa3\\xb5\\ \\x3e\\x1f\\x00\\x5c\\x96\\x97\\x7b\\xa8\\xd1\\x68\\x1c\\xb7\\x6a\\xd5\\xaa\\x3b\\ \\x8b\\xf4\\x27\\x8a\\xa2\\x31\\x44\\x34\\xa9\\x51\\x38\\x49\\x44\\x46\\x01\\x8f\\ \\x69\\xfd\\xcb\\x95\\x20\\x96\\xaf\\x78\\xcf\\x20\\xa2\\x0b\\xd2\\x3a\\x92\\xb6\\ \\x9f\\xd6\\x9a\\x00\\x40\\x4a\\x2d\\xa4\\x6d\\x7f\\x24\\x22\\x67\\xfb\\x09\\x69\\ \\x07\\x9d\\xab\\x5f\\x1c\\xc7\\xc3\\xcc\\xec\\xac\\x44\\x00\\x33\\x6f\\x45\\xc4\\ \\xe3\\x88\\xe8\\xfa\\xb9\\xc6\\x76\\xfd\\x7f\\xad\\xf5\\x87\\x01\\x40\\x12\\xcc\\ \\x65\\x6e\\x79\\xbf\\xea\\xcd\\x95\\x20\\x43\\x43\\x43\\x47\\x34\\x1a\\x8d\\xef\\ \\x67\\xf6\\xfa\\x29\\x81\\xc3\\x89\\xc8\\x26\\x0b\\xc6\\x6e\\xc3\\x26\\x27\\x1a\\ \\xa5\\xcc\\xc2\\xde\\x19\\x6d\\x2a\\xd5\\x9d\\x44\\x6b\\x2d\\x1b\\x76\\xe7\\x64\\ \\xf4\\x61\\xd6\\xee\\x41\\x10\\xbc\\xab\\xaf\\xaf\\xef\\x4a\\x97\\x3a\\xd3\\xea\\ \\xd2\\x5a\\x1f\\x06\\x00\\xb7\\xa4\\xed\\xbf\\x73\\xbf\\x66\\xb3\\xf9\\xc6\\x81\\ \\x81\\x81\\x9b\\x4c\\x64\\xd3\\xc8\\xe4\\x4a\\x10\\x9b\\x3d\\x90\\x20\\x08\\x9e\\ \\xe7\\x22\\xdd\\xcc\\xce\\x20\\x68\\xad\\x63\\x00\\x90\\x53\\x8d\\x99\\x1b\\x33\\ \\xff\\x97\\x52\\xea\\xcf\\x32\\x0b\\x3a\\x16\\x88\\xa2\\xe8\\x4c\\x44\\x74\\x7d\\ \\x70\\xac\\xad\\x59\\xd4\\x93\\xea\\x62\\xff\\x6d\\x02\\x55\\xde\\x7b\\x21\\xb9\\ \\x12\\xc4\\xa2\\xb4\\xc1\\x04\\x11\\xcd\\x33\\x01\\x6c\\x36\\x19\\xdb\\xda\\xde\\ \\x12\\xac\\xa7\\x94\\xb2\\xc9\\x56\\x6e\\xe5\\x52\\x14\\x45\\x27\\x23\\xe2\\x25\\ \\x56\\x4a\\x76\\x11\\x66\\xe6\\x95\\x4a\\x29\\xab\\x44\\x0c\\x2e\\xec\\xd1\\x5a\\ \\x6f\\x37\\x3c\\x40\\x95\\x2b\\xb9\\x73\\x25\\x88\\xc5\\x26\\x61\\x2e\\x4b\\x9a\\ \\x28\\x8a\\x1e\\x42\\xc4\\x7d\\x2c\\x27\\xf4\\x67\\x44\\xf4\\x97\\x96\\x3a\\x32\\ \\x8b\\xc7\\x71\\xfc\\x0e\\x66\\xbe\\x3a\\xb3\\xe0\\xec\\x02\\x9f\\x24\\xa2\\x4f\\ \\x3b\\xd6\\x69\\xa4\\x4e\\x6b\\x2d\\xfb\\x5d\\x99\\x73\\xa5\\xe5\\xbd\\x59\\x98\\ \\x37\\x41\\x3e\\x83\\x88\\x67\\x67\\x45\\x0c\\x11\\x7f\\x1b\\x86\\xe1\\x7e\\x59\\ \\xe5\\xe6\\xea\\x6f\\xfa\\xca\\x79\\x1a\\xbd\\xff\\x4a\\x44\\x87\\xce\\x35\\x9e\\ \\xab\\xff\\xc7\\x71\\x7c\\x04\\x33\\xcb\\x46\\xe0\\x02\\x57\\x3a\\x01\\x60\\x84\\ \\x88\\x42\\x87\\xfa\\xac\\x54\\xc5\\x71\\x2c\\x75\\xd2\\xf7\\xcd\\xaa\\x84\\x99\\ \\xcf\\x51\\x4a\\xfd\\x63\\x56\\xb9\\xb4\\xfd\\xf3\\x26\\x88\\xe9\\x2e\\xfa\\x7d\\ \\x44\\x94\\x79\\xef\\x64\\x2e\\xa7\\xb5\\xd6\\xa3\\x00\\xe0\\xe4\\xd5\\x71\\x51\\ \\xc9\\x03\\xb4\\xd6\\x12\\x3a\\x22\\xe4\\xb0\\xbd\\xf3\\xed\\x0c\\x4f\\xe9\\xca\\ \\x46\\x68\\xad\\x7f\\x09\\x00\\x52\\x04\\x34\\x53\\xcb\\x7b\\x37\\x3d\\x57\\x82\\ \\x68\\xad\\xa5\\x38\\xce\\x7b\\x32\\x79\\xfc\\x54\\xe7\\x1f\\x13\\xd1\\x2b\\x0d\\ \\xe4\\x66\\x15\\xb1\\xcd\\xc9\\xb4\\xab\\x72\\x44\\xfc\\x6e\\x18\\x86\\x79\\x6e\\ \\x66\\xca\\xf3\\x8e\\x44\\x22\\x64\\xbe\\x70\\x66\\x02\\x82\\x99\\xbf\\xae\\x94\\ \\x32\\x99\\x13\\xd7\\xd3\\xf1\\x0c\\x7d\\x5a\\xeb\\xff\\xc8\\x92\\xc4\\x6e\\x27\\ \\xe1\\xcb\\x89\\xc8\\x26\\x4b\\xcb\\xac\\x7e\\xe5\\x4d\\x10\\xd3\\x30\\x93\\x1f\\ \\x10\\xd1\\x92\\x3c\\x66\\x44\\x6b\\x2d\\xef\\xf9\\x8f\\x74\\xa8\\x3b\\x97\\x84\\ \\x12\\xab\\x57\\xaf\\x7e\\x5e\\x77\\x77\\xf7\\x77\\x98\\xf9\\x55\\x0e\\x6d\\x2d\\ \\x6d\\x56\\x7c\\xad\\xb5\\xbc\\x7e\\x7f\\xbd\\x81\\xaf\\xb9\\x86\\x9b\\xd4\\x8e\\ \\x20\\x51\\x14\\x1d\\x89\\x88\\xae\\x37\\xc3\\x9c\\xfe\\x8a\\x0d\\x0e\\x0e\\xce\\ \\xeb\\xe9\\xe9\\x91\\xea\\x5b\\x47\\x18\\x5c\\x30\\x33\\x89\\xdc\\x4a\\x44\\xa6\\ \\x39\\xc9\\x1c\\x9a\\x31\\xbd\\xaa\\xba\\x12\\xa4\\x54\\x4b\\xac\\x1d\\x53\\xe3\\ \\xa2\\x4c\\xf1\\x34\\xd3\\x2c\\x71\\x5b\\x46\\xe7\\x1a\\x76\\xd5\\xa5\\xb5\\x96\\ \\xb7\\x55\\xef\\x70\\x75\\x55\\x22\\xe2\\x4f\\xc2\\x30\\x4c\\x9d\\x83\\xd7\\xd5\\ \\xb8\\x59\\xf4\\xd4\\x72\\x89\\x65\\x71\\x16\\x3d\\x97\\x87\\xf4\\x9d\\x27\\x2c\\ \\x8a\\x22\\xa3\\x37\\x6c\\xb3\\x4d\\x3a\\x22\\x7e\\x36\\x0c\\x43\\xc9\\x1a\\x68\\ \\xdc\\xe2\\x38\\xbe\\x84\\x99\\x4f\\x36\\x56\\xb0\\xbb\\xe0\\xaf\\x5a\\xad\\xd6\\ \\x2b\\xfb\\xfb\\xfb\\xff\\xd7\\xa1\\x4e\\xe7\\xaa\\x6a\\xf9\\x90\\x6e\\x7a\\x11\\ \\xe6\\xf5\\x9a\\x77\\x9a\\x5f\\x6a\\x49\\x64\\x27\\x09\\xed\\x5c\\xb6\\x73\\x89\\ \\xc8\\x24\\xf0\\x0e\\xe2\\x38\\x3e\\x8f\\x99\\x5d\\x1e\\x6d\\x7d\\xa4\\xbb\\xbb\\ \\xfb\\x6f\\xab\\x50\\xc7\\xb1\\xae\\xaf\\x79\\x4d\\x4f\\x13\\xe6\\xb2\\x51\\x38\\ \\x1d\\x0b\\xe2\\x38\\xd6\\xcc\\xec\\x7a\\x3f\\x60\\x8c\\x88\\x7a\\xb3\\xb0\\x4e\\ \\x6b\\x2d\\xb1\\x55\\x2e\\x93\\x22\\x48\\x14\\xf5\\x6b\\x88\\xe8\\xdf\\xb3\\xd8\\ \\xd1\\xae\\xbe\\xb5\\xdc\\x28\\x2c\\x5b\\xa8\\xc9\\x4c\\x93\\x1f\\xc7\\xf1\\x1a\\ \\x66\\xce\\x74\\x41\\xa7\\xb8\\x90\\xd6\\x10\\x51\\xaa\\xb8\\x2f\\x83\\x08\\xe3\\ \\x39\\x87\\x47\\xc4\\x23\\xc3\\x30\\xdc\\x38\\x67\\xc7\\x92\\x74\\xa8\\x65\\xa8\\ \\x49\\xd9\\x82\\x15\\x67\\xbb\\x16\\xa2\\x28\\x3a\\x17\\x11\\x97\\xbb\\xbc\\x5e\\ \\x98\\x39\\x56\\x4a\\x49\\x78\\xfd\\x8c\\x2d\\x8a\\xa2\\x8f\\x20\\xa2\\x24\\x95\\ \\x76\\xd6\\x10\\xf1\\xdd\\x61\\x18\\x1a\\xd7\\xe0\\x70\\x66\\x48\\x4a\\x45\\xb5\\ \\x0d\\x56\\x2c\\x5b\\xb8\\xfb\\x5c\\xf3\\xa5\\xb5\\x96\\x52\\xc5\\xae\\x93\\x91\\ \\x0d\\x13\\xd1\\xc0\\x74\\x63\\x6b\\xad\\x65\\xc3\\x4e\\xde\\xf4\\x39\\x6b\\xae\\ \\x93\\xbb\\x39\\x33\\x6c\\x16\\x45\\xb5\\x0d\\x77\\x2f\\xe3\\x81\\xa9\\xb9\\x26\\ \\xdc\\x51\\x89\\x80\\x5d\\x87\\x59\\x4d\\x44\\xcf\\x88\\x49\\x8b\\xe3\\xf8\\x68\\ \\x66\\x96\\xfc\\x55\\x2e\\xdb\\xd9\\x44\\xb4\\xda\\xa5\\xc2\\x22\\x74\\xd5\\xf6\\ \\xc0\\x94\\x80\\x5b\\xc6\\x23\\xb7\\x73\\x4d\\xba\\xd6\\xda\\xaa\\x4c\\xf5\\x0c\\ \\xfa\\x3f\\x43\\x44\\xff\\x94\\x60\\x72\\x18\\x33\\xcb\\x39\\xec\\x9e\\xb9\\x6c\\ \\xc9\\xf0\\xff\\xd4\\xcf\\x3c\\x19\\x74\\x16\\xd2\\xb5\\xb6\\x47\\x6e\\x05\\x5d\\ \\xd3\\x08\\xda\\xbc\\x93\\x36\\xcc\\x35\\xf3\\x51\\x14\\x5d\\x84\\x88\\x56\\x95\\ \\x94\\xa6\\x19\\xe3\\xd3\\x49\\xbe\\xdc\\xeb\\x98\\xf9\\x05\\x73\\xd9\\x90\\xf6\\ \\xff\\xcc\\xfc\\x65\\xa5\\xd4\\x07\\xd3\\xf6\\x2f\\x5b\\xbf\\xba\\x27\\x6d\\x30\\ \\x8d\\xc7\\xca\\x3d\\xed\\xcf\\x5c\\x17\\x8a\\xd6\\x5a\\x32\\x9b\\xb8\\xce\\x2a\\ \\x28\\x29\\xff\\x5d\\x66\\xe2\\xf8\\x06\\x11\\x9d\\x30\\x97\\x2f\\x65\\xfe\\x7f\\ \\xdd\\xd3\\xfe\\x98\\x86\\xbc\\x43\\x77\\x77\\xf7\\x5e\\x2b\\x57\\xae\\x7c\\xac\\ \\x9d\\x93\\xeb\\x3a\\xad\\x8e\\x4b\\x5f\\x98\\xf9\\x06\\xa5\\xd4\\x5b\\x5c\\xea\\ \\x2c\\x5a\\xd7\\xd8\\xd8\\xd8\\xa2\\x89\\x89\\x09\\xa3\\xe4\\x80\\x79\\x87\\xba\\ \\x0b\\x16\\xb9\\x06\\x2b\\x26\\x4b\\x2c\\xd3\\xcd\\x42\\x48\\x92\\x97\\xb9\\x3e\\ \\x45\\x97\\xf9\\x1a\\xd0\\x5a\\x4b\\x6a\\x4c\\x49\\x91\\x59\\xa6\\x76\\x27\\x11\\ \\xbd\\xb6\\x4c\\x06\\x99\\xd8\\x12\\x45\\xd1\\x3b\\x11\\x51\\xca\\xb1\\x65\\x6e\\ \\x79\\x9f\\x26\\x2c\\x84\\x20\\x36\\x7b\\x21\\x88\\x38\\x1e\\x86\\xa1\\x93\\x03\\ \\x4e\\x99\\xd1\\xdf\\x45\\x20\\x8e\\xe3\\x2b\\x98\\xb9\\x2c\\x4b\\x99\\x5f\\x10\\ \\x91\\x51\\x46\\x74\\x5b\\x1c\\x5c\\xcb\\xc7\\x71\\x3c\\xc6\\xcc\\x46\\xa1\\x39\\ \\x79\\x27\\x6c\\x28\\x84\\x20\\xa3\\xa3\\xa3\\xfb\\x4e\\x4e\\x4e\\x9a\\xa6\\xb0\\ \\xcc\\xe5\\xe0\\x94\\xc9\\x24\\x0f\\x0e\\x0e\\x06\\x3d\\x3d\\x3d\\x92\\x16\\xa7\\ \\xdd\\xc5\\x44\\x37\\x13\\xd1\\x9f\\x9b\\xf8\\x50\\x46\\x19\\x8b\\x28\\x5e\\xe8\\ \\xea\\xea\\xda\\xaf\\xb7\\xb7\\xf7\\xb7\\x79\\xfa\\x95\\xfb\\x12\\x4b\\x8c\\xd7\\ \\x5a\\xff\\x04\\x00\\x5e\\x61\\xe2\\x48\\xb3\\xd9\\x7c\\xf1\\xc0\\xc0\\xc0\\xfd\\ \\x26\\xb2\\xae\\x65\\x92\\x73\\x1a\\x42\\x92\\x65\\xae\\x75\\xa7\\xd4\\xf7\\x87\\ \\x30\\x0c\\x17\\x21\\x22\\xa7\\xec\\x5f\\xea\\x6e\\x43\\x43\\x43\\x07\\x35\\x1a\\ \\x8d\\xfb\\x0c\\x8d\\xfc\\x29\\x11\\xfd\\x95\\xa1\\x6c\\x6a\\xb1\\xa2\\x08\\x22\\ \\x99\\x0c\\x67\\x0d\\xb9\\x98\\xc9\\x62\\x66\\xfe\\xa0\\x52\\xca\\x59\\x9d\\xbd\\ \\xd4\\xc8\\xcc\\xd0\\x71\\x74\\x74\\x74\\xc1\\xe4\\xe4\\xa4\\x90\\xe4\\xed\\xb6\\ \\xba\\xb2\\xca\\x4f\\x4e\\x4e\\xee\\x7d\\xd6\\x59\\x67\\x3d\\x92\\x55\\xae\\xac\\ \\xfd\\xa3\\x28\\xfa\\x00\\x22\\x5e\\x64\\x68\\x9f\\x26\\x22\\x67\\x99\\x25\\x67\\ \\xb2\\xa1\\x10\\x82\\x8c\\x8c\\x8c\\x1c\\xd5\\x6a\\xb5\\xae\\x33\\x04\\xa2\\x74\\ \\x45\\x3c\\xd7\\xad\\x5b\\xb7\\xc7\\xd6\\xad\\x5b\\xaf\\x64\\xe6\\xcc\\x09\\x97\\ \\x0d\\x31\\x10\\xb1\\x97\\x10\\x91\\xe9\\xaf\\xad\\xc5\\xb0\\xf9\\x89\\xda\\x14\\ \\xf1\\x0c\\x82\\xe0\\xad\\x7d\\x7d\\x7d\\x72\\xea\\x32\\xd7\\x56\\x08\\x41\\xe2\\ \\x38\\x5e\\xc8\\xcc\\x92\\x39\\xcf\\x24\\x6d\\x4d\\x29\\xcb\\x40\\x0f\\x0f\\x0f\\ \\x3f\\x47\\x36\\xfd\\x10\\xf1\\xcd\\xb9\\xce\\xd0\\x53\\x19\\xd7\\x5f\\x13\\x86\\ \\xe1\\x0f\\xf3\\x1e\\xa7\\x48\\xfd\\x96\\x65\\xa0\\x9f\\x44\\xc4\\xe7\\x85\\x61\\ \\xb8\\x25\\x6f\\x9b\\x0b\\x21\\x88\\x38\\x61\\x73\\x8c\\xb4\\xac\\x95\\x6e\\x57\\ \\xaf\\x5e\\xfd\\xdc\\xae\\xae\\x2e\\x59\\x6e\\xb9\\x3c\\x3b\\xfe\\x8c\\x39\\x6f\\ \\xb5\\x5a\\x6f\\xef\\xef\\xef\\x97\\xcd\\xd6\\x8e\\x6a\\x36\\x15\\x6e\\x01\\x20\\ \\xf7\\xca\\x57\\x3b\\xc0\\x2e\\x92\\x20\\x72\\x36\\x42\\x72\\xe3\\x9a\\xb4\\x5c\\ \\x32\\x87\\x98\\x18\\xb2\\xab\\x4c\\x1c\\xc7\\xcf\\x67\\x66\\x21\\x89\\x24\\x60\\ \\x76\\xda\\x98\\xf9\\x24\\xa5\\xd4\\x65\\x4e\\x95\\x96\\x44\\x99\\xd6\\x5a\\xf6\\ \\x3e\\x4c\\xcb\\xbb\\x85\\x44\\x64\\x5a\\xd6\\x2f\\x13\\x02\\x85\\x11\\x24\\x8a\\ \\xa2\\x43\\x11\\xd1\\x74\\x99\\x30\\x81\\x88\\x07\\x97\\xb5\\xea\\xd3\\xd8\\xd8\\ \\xd8\\x0b\\xe4\\xc1\\x9d\\x99\\x5f\\x97\\x09\\xfd\\x59\\x3a\\x23\\xe2\\xc7\\xc3\\ \\x30\\x94\\xf0\\xfb\\x8e\\x6b\\x71\\x1c\\xbf\\x88\\x99\\x25\\xe4\\xc6\\xa8\\xb6\\ \\x07\\x33\\xbf\\x5a\\x29\\x75\\x57\\x11\\xc0\\x14\\x46\\x10\\x71\\x26\\x8e\\xe3\\ \\x9b\\x99\\xd9\\x34\\xf5\\xcc\\x72\\x22\\x72\\x9d\\xd5\\xdc\\x19\\xc6\\x51\\x14\\ \\xed\\x97\\x04\\x22\\xba\\x48\\x49\\x5a\\x9a\\x9c\\xb9\\xce\\x00\\xda\\x49\\x91\\ \\xd6\\x5a\\x12\\x5b\\xac\\x35\\xd1\\x5d\\x54\\x46\\xcb\\xc2\\x97\\x58\\x32\\xa0\\ \\xd6\\xda\\x66\\x99\\x75\\x07\\x11\\x39\\xfb\\x85\\x36\\x99\\x9c\\xb9\\x64\\x86\\ \\x86\\x86\\x0e\\x68\\x34\\x1a\\xb2\\xdc\\xb2\\x49\\xf6\\x66\\x9c\\xf4\\x61\\x2e\\ \\xfb\\xca\\xf2\\x7f\\xad\\xf5\\xed\\x00\\x60\\x1a\\x26\\x53\\xd8\\xf2\\x4a\\xf0\\ \\x2a\\xf4\\x0e\\x92\\x14\\xb0\\xb9\\xc7\\x62\\xa2\\x4e\\x24\\xa2\\x2b\\x2c\\xe4\\ \\x73\\x17\\xd5\\x5a\\x4b\\xba\\x50\\x21\\x49\\xe6\\x3c\\x54\\x79\\xd7\\x24\\xcf\\ \\xdd\\xf9\\x14\\x03\\xd8\\xa6\\x7f\\x65\\xe6\\xc5\\x4a\\x29\\x59\\x9e\\x15\\xd2\\ \\x0a\\x25\\x48\\x72\\x17\\xb1\\xa9\\xc8\\xba\\x81\\x88\\xda\\xb5\\x8b\\x9d\\x7a\\ \\x42\\xd6\\xac\\x59\\xf3\\x92\\x66\\xb3\\x29\\x24\\x49\\x5d\\x26\\x81\\x99\\xaf\\ \\x51\\x4a\\x1d\\x93\\x7a\\x90\\x8a\\x76\\xd4\\x5a\\xaf\\x07\\x00\\x53\\x3f\\xd7\\ \\x13\\xd1\\xb1\\x45\\xba\\xde\\x0e\\x82\\x7c\\x08\\x00\\xe4\\xc4\\x9e\\x51\\x93\\ \\x7d\\x87\\x30\\x0c\\x6f\\x34\\x12\\x2e\\x50\\x28\\x8a\\xa2\\x43\\x82\\x20\\xb8\\ \\x30\\xe5\\x83\\x7b\\xe9\\xb2\\xad\\xe7\\x01\\x55\\x1c\\xc7\\x6f\\x62\\xe6\\xef\\ \\x59\\xe8\\x3e\\x9d\\x88\\x2e\\xb4\\x90\\xcf\\x2c\\x5a\\x38\\x41\\xc6\\xc7\\xc7\\ \\xf7\\x99\\x98\\x98\\xb8\\x87\\x99\\x33\\x17\\x4b\\x99\\x5a\\x13\\x22\\x4a\\x0d\\ \\xf3\\x53\\x33\\x7b\\xda\\x06\\x81\\xc1\\xc1\\xc1\\x3d\\x7a\\x7a\\x7a\\x24\\x61\\ \\xc3\\x27\\x00\\x60\\xe1\\x0c\\x26\\xe4\\x5a\\x21\\xa9\\x0d\\x6e\\xcf\\x38\\x64\\ \\x1c\\xc7\\x17\\x33\\xf3\\xfb\\x4d\\x6c\\x42\\xc4\\xc7\\xba\\xbb\\xbb\\x17\\xaf\\ \\x58\\xb1\\xe2\\x61\\x13\\x79\\x53\\x99\\xc2\\x09\\x92\\x2c\\xb3\\xac\\xce\\x7c\\ \\x07\\x41\\x70\\x58\\x5f\\x5f\\x9f\\x64\\x03\\xaf\\x44\\x8b\\xe3\\xf8\\xe5\\xcc\\ \\xfc\\x1e\\x39\\x66\\x9b\\x54\\xb8\\xfa\\x1d\\x00\\xdc\\xdc\\x6c\\x36\\x6f\\x1a\\ \\x18\\x18\\xf8\\x75\\x25\\x9c\\xb0\\x34\\x72\\x64\\x64\\x64\\x49\\xab\\xd5\\xb2\\ \\x29\\xca\\x7a\\x21\\x11\\x9d\\x6e\\x69\\x46\\x66\\xf1\\x76\\x11\\x44\\xd2\\xdc\\ \\xdb\\x5c\\xe0\\xa5\\x4d\\xe3\\x9f\\x79\\x06\\x6a\\x22\\xa0\\xb5\\xbe\\xc6\\x32\\ \\xc0\\x73\\x09\\x11\\xfd\\xa0\\x68\\xb8\\xda\\x42\\x90\\xe4\\x2e\\x22\\x89\\xcd\\ \\xde\\x65\\xe1\\xf0\\x99\\x44\\xb4\\xce\\x42\\xde\\x8b\\x16\\x84\\x80\\xd6\\x5a\\ \\x72\\x8d\\xd9\\x6c\\x7a\\x5e\\x41\\x44\\x27\\x16\\x64\\xee\\x33\\x86\\x69\\x27\\ \\x41\\x24\\x5c\\x5c\\x7e\\x55\\x4c\\xdb\\xe6\\xee\\xee\\xee\\xc3\\xaa\\x90\\x98\\ \\xd9\\xd4\\xc1\\x4e\\x90\\x1b\\x1b\\x1b\\x3b\\x60\\x62\\x62\\x42\\x96\\x56\\x36\\ \\x35\\x27\\x8f\\x26\\x22\\x29\\x43\\x57\\x78\\x6b\\x1b\\x41\\x92\\xbb\\x88\\x84\\ \\x2b\\xdb\\x24\\x1d\\xa8\\xc5\\xdb\\x9f\\xc2\\xaf\\x0a\\x87\\x03\\x6a\\xad\\xbf\\ \\x00\\x00\\x1f\\xb6\\x50\\x79\\x3d\\x11\\x15\\x79\\xac\\xa0\\x1c\\x77\\x90\\x84\\ \\x20\\xd6\\xa9\\x37\\x8b\\x38\\x97\\x6c\\x31\\xb9\\xb5\\x16\\xb5\\xc9\\x47\\xb0\\ \\x13\\x70\\xef\\x25\\xa2\\xcb\\xdb\\x05\\x64\\x5b\\xef\\x20\\x09\\x49\\xee\\x90\\ \\x34\\xfd\\x16\\x00\\x3c\\x00\\x00\\x47\\x11\\x91\\x7c\\xfb\\x56\\x12\\x04\\x92\\ \\x88\\x02\\x59\\x21\\x48\\x64\\x81\\x69\\x6b\\x7b\\xe6\\x96\\x32\\x10\\x44\\x32\\ \\x02\\x7e\\xc9\\x14\\xc1\\x44\\xee\\x2a\\x22\\x3a\\xde\\x52\\x87\\x17\\x77\\x88\\ \\x80\\xd6\\xfa\\x9b\\x0e\\x12\\x5c\\xb4\\x7d\\x8f\\xa8\\xed\\x04\\x91\\x39\\x89\\ \\xe3\\xf8\\x6a\\x66\\xb6\\xaa\\xc9\\xc7\\xcc\\x9f\\x52\\x4a\\x0d\\x3a\\x9c\\x63\\ \\xaf\\xca\\x10\\x01\\x17\\x35\\x20\\x11\\xf1\\x5b\\x61\\x18\\x9a\\x9e\\x17\\x31\\ \\xb4\\x7c\\x77\\xb1\\x52\\x10\\x44\\x6b\\x6d\\xbb\\x2f\\x32\\xe5\\x99\\x7f\\x1e\\ \\x71\\x76\\x5d\\x18\\x2b\\x72\\xf4\\xdc\\x21\\xe3\\xb7\\x65\\xdf\\x63\\x57\\xc7\\ \\x4b\\x41\\x90\\xe4\\x59\\xc4\\x38\\xf3\\xc9\\x4e\\x4e\\x3d\\xc0\\xcc\\xcb\\x94\\ \\x52\\x77\\x1b\\xcf\\xb0\\x17\\x34\\x46\\x40\\xe2\\xcf\\x10\\x51\\x82\\x11\\x6d\\ \\x9e\\x3b\\xa6\\x2e\\x87\\x22\\x32\\x96\\xa4\\x71\\xb4\\x34\\x04\\x49\\xaa\\x0c\\ \\xc9\\xee\\xba\\x55\\x62\\x67\\x44\\xfc\\xd1\\x96\\x2d\\x5b\\x8e\\x18\\x1c\\x1c\\ \\x7c\\x22\\x0d\\x00\\xbe\\x8f\\x1b\\x04\\x24\\xee\\x6c\\xe1\\xc2\\x85\\x37\\x31\\ \\xb3\\xcd\\x59\\x18\\x31\\xe6\\xde\\x20\\x08\\x96\\xf4\\xf5\\xf5\\xfd\\xde\\x8d\\ \\x65\\x76\\x5a\\x4a\\x43\\x90\\xe4\\x2e\\xe2\\xe2\\x81\\x5d\\x72\\xfa\\xde\\xa6\\ \\x94\\x72\\x7e\\x46\\xdc\\x0e\\xea\\xce\\x96\\x8e\\xa2\\xe8\\x56\\x44\\x5c\\xe2\\ \\xc0\\xcb\\xb6\\x3f\\x98\\xef\\xec\\x43\\xa9\\x08\\x92\\x90\\xc4\\xc5\\xdb\\x0f\\ \\x51\\xd5\\xd6\\x0d\\x26\\x07\\x17\\x4a\\x65\\x54\\x68\\xad\\x6d\\x37\\x7c\\x77\\ \\xf8\\x5a\\xba\\xb7\\x91\\xa5\\x23\\x48\\x72\\xea\\x50\\xaa\\xb3\\xda\\x84\\x26\\ \\x4c\\x01\\xce\\xcc\\x9f\\x57\\x4a\\x7d\\xb4\\x32\\x57\\x5a\\x05\\x0d\\x8d\\xa2\\ \\xe8\\x73\\x88\\xf8\\x11\\x07\\xa6\\x6f\\x66\\xe6\\xa5\\x45\\x9e\\x16\\x4c\\x63\\ \\x73\\xe9\\x08\\x22\\x46\\xc7\\x71\\x7c\\x12\\x33\\x5f\\x9a\\xc6\\x81\\x14\\x7d\\ \\x66\\x2c\\xa2\\x99\\x42\\xd6\\x77\\x99\\x05\\x01\\xad\\xf5\\x10\\x00\\xf4\\xbb\\ \\x00\\x09\\x11\\x4f\\x0e\\xc3\\xf0\\xab\\x2e\\x74\\xb9\\xd4\\x51\\x4a\\x82\\x24\\ \\x4b\\xad\\xf1\\xe4\\xa0\\x91\\xb5\\xbf\\x88\\x78\\x7e\\x18\\x86\\xae\\xab\\xd7\\ \\x5a\\xdb\\x55\\x65\\x05\\x71\\x1c\\xaf\\x63\\xe6\\x8f\\x39\\xf2\\xa1\\xb4\\x89\\ \\x2a\\x4a\\x4b\\x10\\x49\\x12\\xdd\\x6c\\x36\\x37\\xa6\\x3c\\xb2\\x9a\\x66\\x9e\\ \\x2e\\x9b\\x3f\\x7f\\xfe\\x69\\xcb\\x97\\x2f\\xff\\x63\\x9a\\xce\\xbe\\xcf\\xf4\\ \\x08\\xac\\x5d\\xbb\\xf6\\x59\\xdb\\xb6\\x6d\\x93\\xc8\\x87\\xf7\\xb9\\xc0\\x08\\ \\x11\\x6f\\x6f\\x34\\x1a\\x4b\\x7b\\x7b\\x7b\\x9f\\x74\\xa1\\xcf\\xb5\\x8e\\xd2\\ \\x12\\x44\\x1c\\x1d\\x1e\\x1e\\x3e\\x3c\\x08\\x82\\x1b\\x00\\x60\\x9e\\x23\\xc7\\ \\xe5\\xd9\\xe6\\x63\\x9d\\x96\\x04\\xda\\x11\\x36\\x73\\xaa\\xd1\\x5a\\xbf\\x18\\ \\x00\\xce\\x07\\x80\\xa5\\x73\\x76\\x4e\\xd7\\x61\\x7b\\xab\\xd5\\x3a\\xb2\\xbf\\ \\xbf\\xff\\x96\\x74\\xdd\\x8b\\xef\\x55\\x6a\\x82\\x24\\xcf\\x23\\xbd\\xcc\\xbc\\ \\xc6\\x21\\x34\\x0f\\x20\\x62\\x18\\x86\\xa1\\x51\\xd9\\x2f\\x87\\x76\\x54\\x4a\\ \\x55\\xb2\\x43\\x2e\\xa9\\x63\\x6d\\x37\\x01\\x9f\\xf6\\x1b\\x11\\x57\\x85\\x61\\ \\x38\\x5a\\x66\\x20\\x4a\\x4f\\x90\\xe4\\x79\\x44\\xb2\\xf0\\x49\\x36\\x3e\\x67\\ \\xcd\\xc7\\x6e\\xa5\\x87\\xd2\\x45\\x6c\\xd5\\x34\\xa3\\x9d\\x47\\x44\\xcb\\xd3\\ \\x5b\\xd1\\x9e\\x9e\\x95\\x20\\x48\\x42\\x12\\xdb\\x23\\xba\\xd3\\x21\\x2c\\x77\\ \\x11\\xc9\\xd4\\xe7\\x43\\xe5\\xa7\\x41\\x27\\x09\\x59\\x97\\xbb\\x86\\xeb\\xb2\\ \\x73\\x6d\\x3b\\x42\\x9b\\x95\\x66\\x95\\x21\\x48\\x42\\x12\\x59\\xab\\xba\\xde\\ \\x21\\xf7\\x4b\\xae\\x69\\xae\\x9a\\x3c\\x96\\x54\\xc9\\x30\\xb7\\x12\\x91\\x69\\ \\x7e\\xe6\\xac\\xd7\\xb7\\x75\\xff\\x4a\\x11\\x44\\xbc\\x8d\\xa2\\xe8\\x3e\\x44\\ \\x3c\\xc8\\xda\\xf3\\xdd\\x15\\x5c\\xd0\\xdd\\xdd\\x3d\\x54\\xf7\\x33\\xee\\xc9\\ \\x19\\x72\\xc9\\xe5\\x65\\x73\\x4c\\x76\\xda\\xe9\\x61\\xe6\\xfb\\x95\\x52\\xf2\\ \\xa0\\x5f\\x99\\x56\\x39\\x82\\x24\\x24\\x79\\x1c\\x11\\xf7\\xc8\\x01\\x65\\xa9\\ \\xc6\\x2b\\x1b\\x8b\\xb5\\xcc\\x96\\x92\\x64\\x1f\\x91\\x8d\\x3f\\xeb\\x28\\x86\\ \\x5d\\xe7\\x86\\x99\\x9f\\x50\\x4a\\xed\\x99\\xc3\\x9c\\xe5\\xaa\\xb2\\x92\\x04\\ \\x49\\x96\\x5b\\x12\\xed\\xf9\\xdc\\x9c\\xd0\\xb9\\x36\\x08\\x82\\xa1\\x2a\\x25\\ \\xa7\\xb3\\xc1\\x21\\x49\\xea\\x26\\x77\\x8d\\xbc\\x0a\\x93\\x3e\\x42\\x44\\x7b\\ \\xdb\\xd8\\xd8\\x2e\\xd9\\xca\\x12\\x24\\x21\\x89\\xed\\x79\\xf6\\x59\\x71\\x97\\ \\x34\\xa7\\x00\\x70\\x49\\x15\\x72\\x01\\x9b\\x5c\\x40\\x92\\x2b\\x17\\x00\\x4e\\ \\x31\\x4d\\x07\\x9a\\x72\\xcc\\xb6\\x9f\\x2b\\x4f\\x69\\xe7\\xb4\\xdd\\x2a\\x4d\\ \\x90\\x64\\xb9\\x75\\x89\\xc4\\xf1\\xd8\\x80\\x90\\x42\\x76\\x83\\x10\\xa5\\xec\\ \\xa5\\x17\\x52\\xf8\\x31\\xd5\\x25\\x29\\x41\\x70\\x8a\\x45\\x96\\xf5\\x54\\x43\\ \\x49\\x3c\\x9d\\x52\\x4a\\xc6\\xa9\\x6c\\xab\\x3c\\x41\\x12\\x92\\xac\\x41\\xc4\\ \\xde\\x02\\x66\\x41\\xee\\x58\\x97\\x23\\xe2\\x86\\xb2\\x96\\x83\\x9b\\x09\\x83\\ \\xa4\\xec\\x99\\x94\\x1d\\x90\\x54\\x4b\\xa6\\xc5\\x6b\\x52\\x43\\xcc\\xcc\\xa3\\ \\x4a\\xa9\\x55\\xa9\\x05\\x4a\\xda\\xb1\\x23\\x08\\x92\\xfc\\x2a\\x9e\\x03\\x00\\ \\x67\\x15\\x84\\xf3\\x84\\x64\\x85\\x14\\xa2\\x48\\x5d\\x0f\\x22\\x7a\\xa8\\xa0\\ \\x71\\x33\\x0d\\x23\\xa5\\x96\\x11\\xf1\\x68\\x66\\x16\\x62\\x1c\\x6d\\x5a\\x13\\ \\x30\\xd3\\xa0\\x4f\\x75\\x5e\\x4d\\x44\\x67\\x1b\\xc8\\x95\\x4e\\xa4\\x63\\x08\\ \\x22\\xc8\\xc6\\x71\\x2c\\x61\\x29\\x12\\x82\\xed\\x2a\\x76\\x2b\\xcd\\x84\\x49\\ \\x1d\\xf7\\x0d\\x88\\x78\\x63\\xab\\xd5\\xba\\xbd\\xdd\\xe7\\xe1\\x93\\xba\\x24\\ \\xaf\\x63\\x66\\x79\\xbe\\x10\\x62\\x3c\\x3b\\x8d\\x13\\x8e\\xfa\\x6c\\x47\\xc4\\ \\x81\\xb2\\x87\\x8f\\x64\\xf1\\xb5\\xa3\\x08\\x22\\x8e\\x4b\\x80\\x63\\xa3\\xd1\\ \\x18\\x72\\x18\\x05\\x9c\\x05\\x4f\\xe9\\xfb\\x73\\x66\\xbe\\x13\\x11\\x6f\\x68\\ \\x36\\x9b\\xd7\\x0f\\x0c\\x0c\\x3c\\x9a\\x55\\x41\\x96\\xfe\\x43\\x43\\x43\\x7b\\ \\x35\\x1a\\x8d\\xb7\\x30\\xf3\\x91\\x88\\x28\\x09\\xf8\\x5e\\x96\\x45\\xde\\x55\\ \\x5f\\x89\\xca\\x6d\\x36\\x9b\\x03\\x65\\x0e\\x3c\\x34\\xf1\\xb5\\xe3\\x08\\x22\\ \\x20\\x48\\xa8\\xfc\\xe4\\xe4\\xa4\\xdc\\x49\\xa4\\x70\\x4d\\xbb\\xdb\\x83\\xcc\\ \\x2c\\x75\\x19\\xef\\x46\\x44\\xc9\\xb6\\x72\\x77\\x10\\x04\\x77\\x67\\x4d\\x4a\\ \\x90\\x24\\xb5\\x38\\x04\\x00\\x0e\\x61\\xe6\\xa9\\x6f\\x44\\x5c\\x0c\\x00\\xfb\\ \\xb7\\xdb\\x41\\x00\\x38\\xb7\\xab\\xab\\x6b\\xa0\\xac\\x21\\xeb\\x36\\xf8\\x74\\ \\x24\\x41\\x76\\x00\\x92\\x9c\\x4c\\x14\\xa2\\x38\\xdf\\xf8\\xb2\\x01\\x3d\\x91\\ \\x95\\xe7\\x98\\x2d\\x88\\xb8\\x85\\x99\\xb7\\xca\\xdf\\xc9\\x47\\xfe\\x2d\\xd5\\ \\xa8\\x16\\x22\\x62\\x0f\\x33\\x4f\\xfd\\x5d\\xe0\\xf3\\x43\\x16\\xd7\\x36\\x27\\ \\x4b\\xaa\\xd2\\x9d\\x04\\xcc\\xe2\\xc4\\x6c\\x7d\\x3b\\x9a\\x20\\xe2\\x78\\x72\\ \\xc6\\x5d\\x48\\xe2\\x3a\\xe0\\xce\\xd5\\x1c\\x54\\x55\\xcf\\x55\\xcc\\x3c\\x50\\ \\xb6\\x33\\xe4\\xae\\xc1\\xec\\x78\\x82\\xec\\x00\\x4c\\x6b\\x2d\\x29\\x85\\xc8\\ \\x36\\xef\\x96\\xeb\\x09\\xa8\\xa0\\x3e\\x29\\xc1\\x2c\\x89\\xdd\\x2e\\xaa\\xa0\\ \\xed\\x99\\x4d\\xae\\x0d\\x41\\x04\\x99\\x64\\x1d\\x1f\\x26\\x44\\xc9\\x0c\\x96\\ \\x17\\x00\\x1d\\x04\\x41\\x9c\\xf5\\xf9\\xa9\\xca\\xb8\\xd5\\x8a\\x20\\x3b\\xdd\\ \\x4d\\x5e\\x2f\\xa7\\x0a\\x6d\\x13\\x66\\x57\\x79\\xe2\\xb3\\xd8\\x2e\\x89\\xa4\\ \\x99\\x39\\x6e\\x47\\x8d\\xc0\\x2c\\x76\\xe6\\xd1\\xb7\\x96\\x04\\xd9\\x65\\xd9\\ \\x25\\x95\\x53\\x6d\\xea\\x93\\xe4\\x31\\x2f\\x65\\xd1\\x79\\xa7\\xd4\\xb4\\xaf\\ \\xcb\\x72\\x6a\\x3a\\xd0\\x6b\\x4d\\x90\\x9d\\x88\\x22\\xe1\\x17\\x52\\x7b\\xdd\\ \\xa6\\x1c\\x5c\\x59\\x2e\\x6a\\x17\\x76\\x5c\\x0f\\x00\\x17\\xb7\\xb3\\xb2\\x93\\ \\x0b\\x27\\x5c\\xe8\\xf0\\x04\\xd9\\x09\\x45\\xad\\xb5\\x84\\x7b\\x0b\\x51\\x6c\\ \\xaa\\xef\\xba\\x98\\x97\\x76\\xe9\\xb8\\x22\\x21\\x46\\x5b\\x0a\\x66\\xb6\\xcb\\ \\xe9\\x5a\\xbf\\xe6\\x35\\x01\\x3d\\xa9\\x57\\x72\\x2a\\x22\\x9e\\xc0\\xcc\\x8b\\ \\x4c\\x74\\x54\\x45\\x06\\x11\\x1f\\x63\\xe6\\x2b\\x13\\x62\\x14\\x5e\\x87\\xbc\\ \\xec\\x38\\xf9\\x3b\\xc8\\x2c\\x33\\x34\\x3e\\x3e\\xbe\\xcf\\xf6\\xed\\xdb\\x97\\ \\x01\\xc0\\xb1\\x00\\x20\\xdf\\x9d\\xd4\\xa4\\x8e\\xc7\\xb7\\xe7\\xcd\\x9b\\xb7\\ \\x7e\\xc5\\x8a\\x15\\x0f\\x77\\x92\\x63\\x2e\\x7d\\xf1\\x04\\x49\\x89\\x66\\xb2\\ \\xe1\\xb8\\x0c\\x11\\x97\\x31\\x73\\x65\\x92\\x0e\\xec\\xec\\x1e\\x22\\xde\\xc2\\ \\xcc\\xeb\\xe5\\xd3\\xe9\\x1b\\x7c\\x29\\xa7\\x75\\xce\\x6e\\x9e\\x20\\x73\\x42\\ \\xb4\\x7b\\x87\\x28\\x8a\\x0e\\x45\\x44\\x89\\x96\\x7d\\x03\\x00\\x1c\\x01\\x00\\ \\xf3\\x0d\\xd4\\x14\\x21\\xb2\\x0d\\x00\\x6e\\x02\\x80\\x9b\\x99\\xf9\\x46\\xa5\\ \\xd4\\x5d\\x45\\x0c\\xda\\x49\\x63\\x78\\x82\\x58\\xce\\x66\\x14\\x45\\x7b\\x06\\ \\x41\\xb0\\xb4\\xd5\\x6a\\x2d\\x4d\\x48\\x23\\x01\\x84\\xed\\x6c\\xf7\\x08\\x19\\ \\x82\\x20\\xd8\\xd8\\x6a\\xb5\\x36\\x2a\\xa5\\x1e\\x6f\\xa7\\x31\\x55\\x1f\\xdb\\ \\x13\\xc4\\xf1\\x0c\\x0e\\x0f\\x0f\\xbf\\xb0\\xd1\\x68\\xbc\\xaa\\xd5\\x6a\\x1d\\ \\x08\\x00\\x07\\x22\\xe2\\x81\\xcc\\x3c\\xf5\\x0d\\x00\\x5d\\x8e\\x86\\x9b\\x64\\ \\xe6\\x4d\\x88\\xb8\\x49\\xbe\\x01\\x60\\x53\\x10\\x04\\x9b\\x9a\\xcd\\xe6\\x8f\\ \\xfa\\xfb\\xfb\\x7f\\xe3\\x68\\x0c\\xaf\\x46\\x0a\\xc3\\x7a\\x14\\x8a\\x43\\x40\\ \\xc8\\x23\\x64\\xe9\\xea\\xea\\xda\\x8b\\x99\\xa7\\x3e\\x00\\x30\\xf5\\x41\\xc4\\ \\x1d\\x7f\\x8b\\x41\\x8f\\x32\\xb3\\x9c\\x23\\x99\\xfa\\x20\\xe2\\xd4\\x67\\x72\\ \\x72\\x52\\xbe\\x37\\x79\\x12\\x14\\x37\\x67\\x9e\\x20\\xc5\\x61\\xed\\x47\\xaa\\ \\x20\\x02\\x9e\\x20\\x15\\x9c\\x34\\x6f\\x72\\x71\\x08\\x78\\x82\\x14\\x87\\xb5\\ \\x1f\\xa9\\x82\\x08\\x78\\x82\\x54\\x70\\xd2\\xbc\\xc9\\xc5\\x21\\xe0\\x09\\x52\\ \\x1c\\xd6\\x7e\\xa4\\x0a\\x22\\xe0\\x09\\x52\\xc1\\x49\\xf3\\x26\\x17\\x87\\x80\\ \\x27\\x48\\x71\\x58\\xfb\\x91\\x2a\\x88\\x80\\x27\\x48\\x05\\x27\\xcd\\x9b\\x5c\\ \\x1c\\x02\\x9e\\x20\\xc5\\x61\\xed\\x47\\xaa\\x20\\x02\\x9e\\x20\\x15\\x9c\\x34\\ \\x6f\\x72\\x71\\x08\\x78\\x82\\x14\\x87\\xb5\\x1f\\xa9\\x82\\x08\\x78\\x82\\x54\\ \\x70\\xd2\\xbc\\xc9\\xc5\\x21\\xe0\\x09\\x52\\x1c\\xd6\\x7e\\xa4\\x0a\\x22\\xe0\\ \\x09\\x52\\xc1\\x49\\xf3\\x26\\x17\\x87\\x80\\x27\\x48\\x71\\x58\\xfb\\x91\\x2a\\ \\x88\\x80\\x27\\x48\\x05\\x27\\xcd\\x9b\\x5c\\x1c\\x02\\x9e\\x20\\xc5\\x61\\xed\\ \\x47\\xaa\\x20\\x02\\x9e\\x20\\x15\\x9c\\x34\\x6f\\x72\\x71\\x08\\x78\\x82\\x14\\ \\x87\\xb5\\x1f\\xa9\\x82\\x08\\x78\\x82\\x54\\x70\\xd2\\xbc\\xc9\\xc5\\x21\\xe0\\ \\x09\\x52\\x1c\\xd6\\x7e\\xa4\\x0a\\x22\\xe0\\x09\\x52\\xc1\\x49\\xf3\\x26\\x17\\ \\x87\\x80\\x27\\x48\\x71\\x58\\xfb\\x91\\x2a\\x88\\xc0\\xff\\x01\\x3a\\x84\\xc5\\ \\x5f\\xb9\\x73\\xde\\x0a\\x00\\x00\\x00\\x00\\x49\\x45\\x4e\\x44\\xae\\x42\\x60\\ \\x82\\ \" qt_resource_name = b\"\\ \\x00\\x05\\ \\x00\\x6f\\xa6\\x53\\ \\x00\\x69\\ \\x00\\x63\\x00\\x6f\\x00\\x6e\\x00\\x73\\ \\x00\\x03\\ \\x00\\x00\\x78\\xc3\\ \\x00\\x72\\ \\x00\\x65\\x00\\x73\\ \\x00\\x08\\ \\x0c\\x33\\x5a\\x87\\ \\x00\\x68\\ \\x00\\x65\\x00\\x6c\\x00\\x70\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\ \\x00\\x08\\ \\x0b\\x07\\x5a\\x27\\ \\x00\\x65\\ \\x00\\x64\\x00\\x69\\x00\\x74\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\ \\x00\\x06\\ \\x07\\x5e\\x57\\x47\\ \\x00\\x6f\\ \\x00\\x6b\\x00\\x2e\\x00\\x70\\x00\\x6e\\x00\\x67\\ \" qt_resource_struct_v1 = b\"\\ \\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\ \\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\ \\x00\\x00\\x00\\x10\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x03\\ \\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x04\\ \\x00\\x00\\x00\\x48\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x39\\xa9\\ \\x00\\x00\\x00\\x32\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x1f\\x8e\\ \\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\ \" qt_resource_struct_v2 = b\"\\ \\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x01\\ \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\ \\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\ \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\ \\x00\\x00\\x00\\x10\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x03\\ \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\ \\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x04\\ \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\ \\x00\\x00\\x00\\x48\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x39\\xa9\\ \\x00\\x00\\x01\\x7a\\x1e\\x5d\\x29\\x2c\\ \\x00\\x00\\x00\\x32\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x1f\\x8e\\ \\x00\\x00\\x01\\x7a\\x1e\\x3c\\xe5\\x4a\\ \\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\ \\x00\\x00\\x01\\x7a\\x1e\\x5d\\x85\\x66\\ \" 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: rcc_version = 2 qt_resource_struct = qt_resource_struct_v2 def qInitResources(): QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()