您的位置:首页技术文章
文章详情页

详解Python GUI工具取色器

【字号: 日期:2022-06-16 09:08:06浏览:2作者:猪猪

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 (资源文件),运行效果如下:

详解Python GUI工具取色器

原理有什么不懂的可以留言问,我不想讲,代码都贴出来了。资源文件就是把那三张图片用代码存起来了,并没有什么内容,

只是看起来很多。

详解Python GUI工具取色器详解Python GUI工具取色器详解Python GUI工具取色器

# MyWindow.pyfrom Qwindow import Ui_mainWindowfrom PyQt5.QtWidgets import QApplication,QMainWindow,QPushButtonimport sysfrom PyQt5.QtCore import Qtfrom ctypes import * # 获取屏幕上某个坐标的颜色import pyautogui as pagfrom threading import Timerclass 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 = Falseself.ui.t = 0self.ui.buttonrgb = [(255,255,255)]*12self.ui.buttonrgb1 = [(1,1,1)]*12self.ui.buttonrgb1 = [(’#FFFFFF’)]*12self.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 = Truex, y = pag.position() # 返回鼠标的坐标gdi32 = windll.gdi32user32 = windll.user32hdc = user32.GetDC(None) # 获取颜色值pixel = gdi32.GetPixel(hdc, x, y) # 提取RGB值r = pixel & 0x0000ffg = (pixel & 0x00ff00) >> 8b = pixel >> 16self.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: returnelif 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.rgb1if __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, QtWidgetsclass 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.translatemainWindow.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 QtCoreqt_resource_data = b'x00x00x1fx8ax89x50x4ex47x0dx0ax1ax0ax00x00x00x0dx49x48x44x52x00x00x00xc8x00x00x00xc8x08x06x00x00x00xadx58xaex9ex00x00x1fx51x49x44x41x54x78x5exedx5dx0bx98x64x45x75x3exe7xf6xccxecxb2xabxbcx04x0dx3ex80xacx18x16x23x0fx83x82x08x28x2ax2fx35x4ax50x44x05x7cx44x23x18x1fx2bx3bxd3xf7x54xcfx9ax68xfbx60xa7x6fxd5xecxacx6cx7cx80x02x01x05x34xf0x29x82x8ax28x08x8ax41x89x11x05x44x02x8ax86x28xa2x62x24x22x38xb3xb0xddxf7xe4x3bxebx9dxefx5bx96x9dxe9xbexb7xeax3exbaxbbxeaxfbxfax5bxb1xebx9cx3axe7xafxfbx4fx75xddxaax73x0ex82x6fx1ex01x8fxc0x82x08xa0xc7xc6x23xe0x11x58x18x01x4fx10xffx74x78x04x16x41xc0x13xc4x3fx1ex1ex01x4fx10xffx0cx78x04xb2x21xe0x57x90x6cxb8x79xa9x21x41xc0x13x64x48x26xdaxbbx99x0dx01x4fx90x6cxb8x79xa9x21x41xc0x13x64x48x26xdaxbbx99x0dx01x4fx90x6cxb8x79xa9x21x41xc0x13x64x48x26xdaxbbx99x0dx01x4fx90x6cxb8x79xa9x21x41xc0x13x64x48x26xdaxbbx99x0dx01x4fx90x6cxb8x79xa9x21x41xc0x13x64x48x26xdaxbbx99x0dx01x4fx90x6cxb8x79xa9x21x41xc0x13x64x48x26xdaxbbx99x0dx01x4fx90x6cxb8x79xa9x21x41xc0x13xa4xe0x89x36xc6x2cx8fxe3x78x07x00xd8xfcxa9xd5x6ax3bx30xf3xe6xffx9dxfcxbbx14x00x1exdcxfax83x88x9bxffx3fxf9x77x6cx6cxecxc1x55xabx56x3dx5cxb0xe9x43x39x9cx27x48x0exd3xdex6cx36xc7x96x2fx5fxbexb2xd3xe9xacx0cx82x60x25x00xecx0dx00xf2xafx7cx96x39x1axf2x37x00x70x2bx00xdcxccxccxb7x06x41x70x4bx18x86xb7x39xd2xedxd5x24x08x78x82x38x78x14xb4xd6x07x30xf3x11x88xf8x42x00xd8x0fx00x56x38x50x9bx45x45x07x00x6ex61xe6x5bx10xf1x96x4exa7x73xcbxe4xe4xe4x37xb3x28xf2x32x7fx46xc0x13x24xc3x93x20x84x00x80xc3x99xf9x30x44x3cx0cx00x9ex9cx41x4dx21x22xccxfcx3bx00xb8x14x00xbexa0x94xfax46x21x83x0exd0x20x9ex20x3dx4exa6xd6x5ax56x87xe3x00xe0x58x00xd8xa7x47xb1x4ax75xdbx82x2cx5fx1bx1dx1dxbdx7ax7cx7cx7cxaex52x06x56xd0x18x4fx90x45x26x25x8axa2x7dx10x51x48x21x9fxe7x55x70xfex32x9bx24x64x41xc4xafx20xe2xd5x4bx96x2cxf9xbcxdfxf4x6fx1bx4ax4fx90xadx70x99x9ex9exdexa5xd3xe9x1cx97x10xe3x15x99x9fxc0x3ex12x44xc4x9fxc4x71xfcx59x44xbcx88x88x7exdax47xa6xe7x6exaax27x48x02x71x14x45x7bx23xe2x9bx01x40x3ex7fx91x3bxf2xd5x1cx60x23x00x5cx5cxabxd5x2ex9ex98x98xf0xfbx15xbfx49x07x88xa2xe8xa0x2dx88xb1x5dx35x9fxdbx52xacxbax06x11x2fx5exb2x64xc9xc5xc3xfcxf3x6bx68x57x10x63xccx91xccx2cxabxc5xc9xa5x3cx7ex7dx32xe8xfcxcfxafxd1xd1xd1x68x18x37xf5x43x47x90x64xc5x58x93x6cxbcxfbxe4x31xadx84x99x3fx40xc4x28x0cxc3x4bx2ax61x4dx41x46x0cx0dx41x9axcdxe6xc8xb2x65xcbx84x18xf2x59x52x10xbex83x38xccx85x09x51x86xe2xd4x7ex28x08x62x8cx79xb9x10x83x99x9fx3fx88x4fx6cx09x3ex3dx00x00x7axcfx3dxf7x8cx4ex3cxf1x44x39xbdx1fxd8x36xd0x04x59xbfx7exfdx6exedx76x5bx88xf1xaex81x9dxc1x12x1dx63xe6x1bx01x20x52x4ax7dxb1x44x33x72x1dx7ax60x09xa2xb5x7ex23x22xfex33x33xefx95x2bx82x5exb9x20x70x5exbbxddx6exacx59xb3x46xaexb5x0cx54x1bx38x82xc8x75x72x66x9ex02x80x77x0fxd4x4cx55xdfx99x1fx04x41xb0xbax5exafx5fx5fx7dx53x7bxb7x70xa0x08x32x35x35x75x44xadx56x13x72x0cxd4xb5x90xdexa7xb3xf4x9ex73xccx3cxaex94x3axabx74x4bx1cx19x30x30x04xd1x5axd7x01x40xc8x31xe2x08x1bx67x6ax98xf9xe7x88x78x07x00xdcx89x88x77xb6xdbxedx3bx83x20x98x65xe6xb9xf9x7fxe3x38x9ex5bxbex7cxf9xecxfdxf7xdfxdfx19x1bx1bxdbx69x64x64x64xc7x20x08x76x8cxe3x78x27x44xdcx11x00x76x8axe3x78x47x44x94xabxf4x07x26x1fx67x36xbax54x84x88x1bxf6xd8x63x8fxf1x41xd8xc0xf7x3dx41xa6xa6xa6x56x04x41x30x85x88x27xbax9cx64x0bx5dx7fx62xe6x6fx32xf3x97x6axb5xdax0dxdbx6fxbfxfdx9dxa7x9dx76xdax26x0bx7dx0bx8ax4ex4fx4fx1fx18xc7xf1x3cx59xaax46x1ax39x89x5fxddxefx41x5cx7dx4dx10x63xccxc1xccx7cx7ex12xa9x97xc7x33xd8x93x4ex09x4ex02x80x6fxc5x71x7cxddxf7xbfxffxfdx2fx5dx7axe9xa5xa5xbdxfaxd4x5axbfx0cx00xe6x3fx7fxd9x93x03x39x75x42xc4x5fx01xc0x78x3fx1fx2exf6x2dx41xa2x28x3ax2ax08x82x2fx30xf3xe3x72x9axdfx6ex6axffx83x99xafx0ax82xe0xabx61x18xfex47xb7xcex65x7cx3fx3dx3dxfdxdcx38x8ex8fx02x80x23x01xe0x45x65xd8x20x63x32xf3x07x94x52xcdxb2xc6xb7x19xb7x2fx09x12x45xd1x09x88x28x51x72x45xb7xcax93x62x21x40xd6xadx5bxf7x57x9dx4exe7x55x00x70x12x00xecx5bx34x70x00xb0x8ex88x64x9fxd8x57xadxefx08x12x45xd1xdbx11xf1x13x05xa3xfcx79x79xd7x4fx44x57x16x3cx6ex2exc3x19x63x4ex8axe3xf8x24x44x94x1bx06x45xb6xb3x89xe8xedx45x0ex68x3bx56x5fx11x24x8axa2x4fx20x62x91x00x5fxc8xccxe7x29xa5xaexb3x05xbax8axf2xadx56xebxb0x20x08x64x45x91x8fxa4x1ex2axa2x5dx4cx44x7dx73x83xbax6fx08xa2xb5xbex06x00x5ex52xc4x0cx32xf3xa7x64xc5x50x4axc9x55x8ax81x6fxadx56x6bxf7x20x08xe4x60xb5xa8x9fx40x57x10x91x84x31x57xbexf5x05x41xb4xd6x17x03xc0xebx0bx40xf3x5bx00xd0x22xa2xabx0ax18xabx72x43xc8x41x6bx10x04x0dx44x3cxa6x00xe3xaex23xa2x17x17x30x8exd5x10x95x27x88xd6xfax23x00xf0x1ex2bx2fxbbx0bxffx41x0ex19x89x48x77xefx3axf8x3dxb4xd6xb2x9ax34x0ax48x67xf4x4dx22x2axedxedx5ax2fx33x59x69x82x68xadx65x92xe4x74x3cxcfx76x11x22xb6xfaxfdx40xcbx35x40xc9x01xacxacx26x6fx73xadx7bx2bx7dx57x11xd1x4bx73x1ex23xb3xfaxcax12x44xdexb4x30xf3x45x99x3dxebx22x88x88x0fxc5x71x1cx0exd2xbdxa1x3cxb0x32xc6x1cxcfxccxebx00x20xcfx43x47x55xd5xd5xbbx92x04x49xdexaex7cx39xafx37x2bx88xf8x9dx4exa7x13x36x1ax8dxefxe4xf1x50x0dx9ax4exadxf5x33x00x60x1ax00x5ex99x97x6fx41x10xbcxb0x8ax37x81x2bx47x90xb5x6bxd7xeex2ax59xffx98x79xffx3cx26x83x99xcfx9ax9bx9bx0bx9bxcdxe6x43x79xe8x77xa1x33x8axa2x27xd7x6axb5x7dxe3x38x96x03xbdx5fxc5x71x7cxdbx8ax15x2bx6ex2fxfbxf2x9fxd6xfax8cx24x64xd9x85x9bx8fxd1x21x17x31xc3x30xfcxefx5cx94x67x54x5ax39x82x44x51x74x0ex22xbex35xa3x3fx8bx89x75x24xb2xb0xcax3fxa9x8cx31x9ax99xe5xb4xfbxe9xdbx70x44xcax1fxdcx2ax37x65xcbxbcxdbxa4xb5x96xb7x89xb2x9axe4x91x8fxf8xb6xd9xd9xd9x67x37x9bxcdx76x0exf3x9fx49x65xa5x08x62x8cx39x4dxfexc2x67xf2x64x71xa1xffx93xdbxbex61x18xcax59x4axe5x5ax92xb4xeex02x00x38xb8x47xe3x3ex4dx44x6fxeaxb1xafxf3x6exc6x98x67x25xfbx92xa3x9dx2bx07x38x87x88xf2x7ex31xd0xb3xd9x95x21xc8xd4xd4xd4x81xb5x5axedx6ax89x7bxe8xd9xfaxdex3axfex4fx10x04xc7xd6xebx75x89xc7xa8x5cx33xc6xbcx9fx99xb3x5cxe4xfbx3dx11xedx52xa6x43x5ax6bx49x01xf4x9ax1cx6cx78x3fx11x7dx30x07xbdxa9x55x56x86x20x51x14x7dx1dx11xe5xe6xa9xcbxf6xa3xd9xd9xd9xe7x57x75xbfx31x3dx3dxfdxccx38x8ex7fx9cxd5x61x59x6dx95x52xffx98x55xdex85x5cx5ex24x41xc4xb7x84x61xf8xafx2ex6cxb4xd1x51x09x82xe4xb4xf9xbbx81x88xa4x76x47x65x9bxd6xfax26x00xf8x1bx1bx03x99xf9xc8xb2xebx7exe4x44x92x7bx66x67x67xf7x6ex36x9bxb3x36xf8xd8xcax96x4ex10x63xccx71xccxecx34x6dx0cx33xdfxa5x94x92x57x93x95x6dx0ex0fx41xbfx97x90x44x36xf1xa5xb5x3cx48xc2xccxefx56x4ax7dxb4x34xa7xcax4ex5exbdx61xc3x86x25x1bx37x6ex94x2cx18x07x39x04xe1x57x44xf4x54x87xfax72x51x15x45xd1xcdx88xe8xe4x55xb6xe4x18x56x4axc9x26xbfxd4xa6xb5xdexe0x32x9bx0cx33xffx50x29x65xb5xc2xdax02x52xeax0axa2xb5xfex00x00xbcxcfxd6x89x2dxe4xefxafxd5x6ax07x4cx4cx4cxfcxd2xa1x4exe7xaax66x66x66x76x6exb7xdbxbfx77xa8xf8x4cx22x3axddxa1xbexccxaaxb4xd6x33x00xb0x3axb3x82xadx04x89xa8xd4x67xb4xb4xc1x8dx31x87x30xb3xacx1exaexb2x90xccxc5x71xfcxeax46xa3xf1x55x57x93x93x97x9ex56xabxf5x82x20x08xe4xe6xb0x93x86x88xd7x87x61x28x25xe2x2axd1xb4xd6x72x43xe1x10x17xc6x0cx2dx41xa2x28xfaxb2xcbx88x36x66x7exb5x52xeax0bx2ex26x25x6fx1dxc6x98xf1xe4x1cxc1xc9x50xccxfcx90x52xeaxf1x4ex94x39x52xa2xb5x66x17xaax86x92x20x51x14xbdx0bx11xffxc5x05x80x89x8ex90x88xe4x74xb7x2fx5ax72x1ax2dx31x2exaexdaxcfx88xa8x52x29x56xa3x28x7ax2ax22xdaxfexd4xbdx93x88xa4xb6x7cx69xadxf0x9fx58x53x53x53x7bx05x41x70x3dx22xeexe6xc2x6bx44xfcx4cx18x86x6fx74xa1xabx28x1dxadx56x6bxdfx20x08x6ex75x38xdex65x44x24x57x54x2axd5xb4xd6x72x88x68x53x4fx44x13x91x2axd3xa9xc2x09xa2xb5x96x84x0bxaexe2xcax6fx1dx1bx1bx3bxfaxf4xd3x4fxffx6dx99x20xa6x1dxfbx92x4bx2exa9xddx7dxf7xddxffx07x00x4ex7ex16x55x39xadx8exe5xa6xfdx30x22xbax21x2dxbex2exfbx17x4ax90xa4xacxf2x0fx1dx16xb0x39x86x88xbexeex12x90xa2x74x69xadxffx1dx00x0ex75x31x1ex22xbex2ax0cxc3xcbx5cxe8xcax43x87xd6x5axaex10x49x6exaex34x4dx42x9fx27xd3x08xe4xd1xb7x50x82x68xadx23x00x20x47x8exf4xd5xbex63x6bx9fx8dx31x27x32xf3xbfx39xc0xe2x7cx22xfax7bx07x7ax72x55xa1xb5x3ex17x00xdexd2xe3x20x9fx24xa2xd3x7axecx9bx6bxb7xc2x08x22x31x0ex88x28xabxc7x13x1dx78x54xe9x30xcdx5exfdxd3x5axcbxe1x9exd5xfex69x64x64xe4x09xe3xe3xe3xf7xf7x3ax66x99xfdxb4xd6x9fx03x80xd7x2ex64x83x44x79x32xf3x05x44x54x99x82x47x85x11x44x6bx2dxb5x01x25xe0xc6x45x3bx82x88x9cx9dx23xb8x30x28xabx0exadxf5xffx02xc0x13xb2xc8x57xe1x1ex56x5axbbxd7xafx5fxbfx62xd3xa6x4dx92xf2xe7x51xd1x89xb2x9ax8ex8dx8dx7dx6exf5xeaxd5x92x40xa3x32xadx10x82x24x45x6dx64xf5x70x71x3fxaaxf4x37x1bxaex67x4fx6bx7dx61x86x72xd4x6fx22xa2x4fxbbxb6xc5xebx7bx34x02x85x10x44x6bxfdx4ex00x70x71xe9xecxb6xd1xd1xd1xc3xabxf6x57xc6xc5x43x95x9cx8dx08x46x3bx2fxa6x8fx99xbfx06x00xffxa0x94xbaxc7xc5xb8x5exc7xe2x08x14x45x10xc9x7ex6ex7dx21x11x11x4fx0exc3xd0xe5x01x5bxa5x9ex0fx63xccx7ex71x1cx4bx25xdexfdx83x20xd8x0fx00xe4xbfxefx45xc4x9bx98xf9x47x41x10xdcx1ex86xe1xe5x95x32x7axc0x8dxc9x9dx20x51x14xbdx08x11xafx75x80xe3x95x44x54x74xb2x65x07x66x7bx15xfdx8cx40xeex04x71x98x19xf1x04x22x92x2cxebxbex79x04x0ax43x20x57x82x48xbcxc7xdcxdcxdcx1dx88xb8xa7xa5x47x7dx91xc7xd5xd2x47x2fx5ex41x04x72x25x88xabxc3x30x44x7cx43x18x86xf2xa6xc7x37x8fx40xa1x08xe4x4ax10xadxb5xa4x0ex95xdax13x36xedx46x22x72x12x5bx60x63x84x97x1dx4ex04x72x23xc8xbax75xebx9exd6xe9x74xfex0bx00x96xdbx40x1bxc7xf1xa9x8dx46x43xeax75xf8xe6x11x28x1cx81xdcx08xe2x28xe6xe3xfex91x91x91x67xf4xcbx55x8axc2x67xcfx0fx98x3bx02xb9x11xc4x51x96x8bx8bx88xe8x94xdcx51xf0x03x78x04x16x40x20x4fx82x48x8dx6cxabxfcxadxccx7cx8ax52x2axb7x12x08xfexa9xf0x08x74x43x20x17x82x24x09x19x6cx4bx0bx0cxccxcfx2bx39x21x67xe6xbdx01xe0xa9xccxbcx65xb1x4cxb9x98x77x77x1cxc7x37x4fx4ex4exdexddx6dxb2xfcxf7xc5x23x90x0bx41xb4xd6x92xf6x45xd2xbfxd8xb4xbexfex79xa5xb5x7ex3ax33x8fx23xa2xdcx5cx7dx4ax0fx40xfcx88x99xbfx30x36x36x76xf6xeaxd5xabx7fxddx43x7fxdfxa5x00x04x72x21x88x31xe6x0ax66x7ex85x8dxfdxfdxfcxf3x2ax8ax22xc9x51xb5x06x11x77xcdx80xc1xbdxccx6cx94x52x52x9bxd1xb7x92x11xc8x85x20x5ax6bxc9xa7xbax9dx85x6fx1bx11x71x8fx30x0cxefxb3xd0x51x8axa8x45xb6xf6x47xd9x5bxe5x38xf3x52x80x2dx69x50xe7x04xd1x5ax4bx9cxb5xc4x5bxdbxb4xcbx89xe8xefx6cx14x94x21xebx20x8bxc7xd6x66x9fx48x44x97x96xe1x8bx1fxf3xcfx08x38x27x88x8bxbfxa0x88xf8xeex30x0cx5dxc4x8fx14x36xcfxebxd7xafxdfx6dxd3xa6x4dxdfxb7x7dx73xb7x95xc1xf7x8ex8ex8ex3exc7xefx49x0ax9bxc6xc7x0cx94x07x41x3excbxccxafxb3x71x89x99x9fxa9x94x92x53xf8xbex69x2exfex30x6cxcbx59xffx53xabxdcx47xc0x39x41xb4xd6x12x5ax7bx40x56xb7x98xf9x27x4ax29x79x25xdax37xadxd5x6axedx90x24x82xdbx3dx07xa3xefx20xa2x7dx72xd0xebx55xf6x80x40x1ex04x99x03x80xa5x3dx8cxbdxcdx2ex49x91xcaxf7x64x95x2fx43x4ex6bx2dx55x9ex3ex9exe3xd8x7bx11xd1xcfx72xd4xefx55x2fx80x80x53x82x4cx4dx4dxedx59xabxd5x6cxcbxf8xbex95x88xcexebxa7x19x4bx99xf3x29xb5x6bxccx7cxbcx52xcax69x91xa1xd4x46x0cxa9x80x53x82x68xadx8fx05x00xdbxf2x03xa5xa7x9bx4cxfbx2cx68xadx25x91x42x1ex15x5fx37x9bxc2xccxabxfdxb9x48xdax59x71xd3xdfx29x41xe4x80x0cx11xd7xdbx98x16x04xc1xaexf5x7ax5dx72x45x0dx64xcbx58x16x60x9cx88xacx70x1dx48x30x0bx70xcax29x41x1cx24xa6xfex5fx22xcax72xfax5cx00x54xf6x43x4cx4dx4dxadxa8xd5x6ax59xf6x12x3ex1exdfx1exfex4cx1ax5cx13xe4x3ax00x38x22x93x25x7fx16xaax7cx65x5ax0bxdfx20x8axa2x97x20xe2x35x69x75x04x41x70x50xbdx5exffxcfxb4x72x83xd8x7fx66x66x66xafx38x8ex77xdaxb4x69xd3x5dx93x93x93x92x21x3fxd7xe6x94x20xc6x98x1fx30xf3xb3x2dx2cx3ex8fx88xdex6ax21x5fx69x51x63xccxdbx98xf9x93x19x8cxdcx8dx88x7ex93x41x6ex20x44xb4xd6xffxc0xccxefx40x44x79xfdxbfx6cx0bxa7xe4x06xb4xe4x0bxd3xf5x7axddxf6xf6xc6x36xb1x72x4ax10xadxb5xfcx7cx58x91x75x56x10xf1x7dx61x18x7ex28xabx7cxd5xe5x8cx31x6bx99x39x6dx4axffx47x88x68x49xd5x7dxcbxcbx3exadxf5xbfx02xc0x9bxbbxe9x67xe6x19xa5xd4x44xb7x7ex69xbfx77x4dx90xccx89x98x13xc3xfbxbaxa4x41x37xf0xbbx65x37xdfx96x3cx22xdex15x86xa1x8bx9cxc6xddxccxabxdcxf7x5ax6bx59x35x9fx94xc2x30xe7x35x45x5cx13x64x93x4dxd5x5ax66x7exa7x52x2axcfx03xb7x14x58xbbxefxaaxb5xcex92x82x75x28x73x82x45x51xb4x0ex11xc7xd3xcex42x10x04xcfxa9xd7xebx37xa5x95x5bxa8xbfx33x82x24x19xdcx1fxb2x31x8cx99xdfxa2x94x92x25x75x20x9bxd6xfax77x00xb0x4bx1axe7xa4x5ex86x52xaaxebx4fx8cx34x3axabxdex57x6bxfdx37x00x70x23x00x8cx66xb0xf5x1ax22x3ax2ax83x5cxbex7bx90xa4x40x8exc4xa1xdbxb4xd7x11x91x8bxaax4bx36x36xe4x26x9bxe5x0cx84x99x3fxa4x94x7ax5fx6ex46x55x50xb1x6dx35x80x24x13xcex5dx2ex5cx73xb6x82x24xf5x07x6fxb7x31x8ax99x8fx53x4ax5dx61xa3xa3xaaxb2x33x33x33x3bxb7xdbxedxdfx67xb0xefx6dx44x74x4ex06xb9xbex15xe9x75x63xbex90x83x71x1cxbfxacxd1x68xd8xdexe8xd8xacxdex25x41x9ex87x88xdfxb5x99x15x44x3cx2ax0cxc3xd4xe7x04x36x63x16x25xabxb5x96x1bxcex72xd3x39x55x8bxe3xf8xd8x46xa3x21x57x59x86xa6x69xadxe5x3ex9fx4dx3exe7x55x44xf4x2fx2ex00xabx14x41x98xf9x68xa5x94x54x44x1dxb8x66x8cx39x5ex92x32xa4x75xacx56xabxedx3dx31x31xf1x93xb4x72xfdxdaxffxecxb3xcfx1ex7dxe0x81x07x1exb1xb4xffx9fx89xe8xc3x96x3ax9cxafx20xfbx20xa2xffx89xb5xc0xacx18x63xc6x99x79x5dxdax49x9bx9dx9dx1dx6dx36x9bxedxb4x72xfdxdax3fx89xadxb1xadx53xe8xecxb8xc0xd9x0ax92x84x9cxdex6bx33x31x88xf8xfax30x0cxa5x12xeaxc0x35xadxb5x84x10x4bx29xbax34xedx7ex22xcax54xe0x33xcdx20x55xeax7bxc6x19x67xecx36x3ax3ax6axfbx1cx39x0bxd9x76x46x90x66xb3xb9x6cxd9xb2x65x7fxb2x04xbbxefx62x41x7axf5x37x8axa2x2bx11xf1xa5xbdxf6x4fxfaxddx4cx44x36x57x77x52x0ex57x7exf7xa4x0ax6ex96x0bx9dx5bx1axefxecxc5x86x33x82x88x75x5axebx87x01x60x2cx2bxccxccxfcx6exa5x54x5fx25x6bxe8xd5x57xadxb5xc4xd8xafxecxb5x7fxd2xefx0ax22x92xc4x73x43xd3x8cx31xcfx92x7ax8cx36x0ex33xf3x1bx95x52x9fxb1xd1x31x2fxebx94x20x51x14xddx97x31x59xdaxbcx3dx8ax88xb4x0bxc7xaaxa6x23xe3x1fx8fx8fx11xd1xbbxaaxe6x4bx9exf6x44x51x74x10x22xcax8dx03x9bxe6x2cx5dx92x53x82x68xadxe5x6dx4bxe6x7bx43x83x9axc1xa3xd9x6cx8ex2dx5bxb6x4cx56xd7xb4x6dx60xffx60x2cx04xc4xd4xd4xd4x11xb5x5ax4dxc2x26x32x37x44x7cx65x18x86x5fxcaxacx60x0bx41xd7x04x91x98x85xe7x64x35x8cx99x3fxa7x94x7ax7dx56xf9xaaxcax4dx4dx4dxedx55xabxd5x7ex9axc1xbex81xbex59xb0x2dx3cx8cx31xa7x31xf3x59x19xb0xdax52xe4x18x22xfaxbaxa5x8excdxe2xaex09xf2x15x00x78x59x56xc3x98xf9x87x4ax29xb9x87x33x50xcdx18xf3x62x66xfex46x5axa7x98xf9xb9x4ax29x49x46x37x34x4dx6bx2dx49xcfx25xf9x79xe6xc6xccx07x2bxa5xbex97x59x41x5ex2bx88x31x66x9dx64x34xb7x30x6cx96x88xacx4axb6x59x8cx9dx9bxa8xd6x5ax2ex1bxa6xbex84x39x32x32xf2x84x61xabxaexa5xb5xb6xfax23x2bx93xb8x74xe9xd2x1dx56xadx5axf5x47x17x13xeax7ax05x39x15x00xcexb6x31xacx56xabxedx3ex31x31xf1x4bx1bx1dx55x93x8dxa2xa8x89x88xefx4fx63x17x22x72x18x86x41x1ax99x41xe8x1bx45xd1xcfx10x31x73xd0x1dx00xdcx4bx44xbdx94x9bxe8x09x2exa7x04x69xb5x5ax2fx08x82xe0x5bx3dx8dxbcx40xa7x41xbcx6ex62x8cxf9x34x33xbfx21x25x2exbfx20xa2x3dx52xcaxf4x75x77x47xd7x4cxaex25xa2x97xb8x02xc2x29x41x8cx31x4fx64xe6xdfxdax18x37x88x67x21xc6x98x6fx33xf3x61x69x70x61xe6x7fx57x4ax1dx9ex46xa6xdfxfbxbax38x03x41xc4x8fx87x61x98xf6xc6xc2x82xd0x39x25x88x8cxa2xb5x96x2bxddx3bx67x9dx2cx44xfcx4cx18x86x6fxccx2ax5fx45x39xadx75x96x7ax8dx17x13xd1xc9x55xf4x27x2fx9bxb2xeexd5xb6xb4x87x99xdfxa3x94xdaxe0xcax46xe7x04x31xc6xdcxc0xccxcfxcfx6ax20x22xfex3ax0cx43xabxe2x9fx59xc7xcex4bx2ex4bxa0x14x00x38x8fxafxcexcbx3fx57x7ax6dxe3x40x12x3bx9cxbdxe2x15x7dxcex09xe2x22x4fxadxebxb8x62x57x13x98x45xcfx47x3exf2x91x27x3dxf2xc8x23xa9x53xf6x20xe2xa9x61x18x7ex2axcbx98xfdx2ax63x8cxf9x2fx66x4ex7bx1dxe7x51xeexc6x71xbcx47xa3xd1xf8x85x2bx0cx9cx13xc4x18xb3x8ax99xcfxb4x34xd0xd9x75x65x4bx3bxacxc5xb3x5ex9dx40xc4x97x84x61x78xadxb5x01x7dxa2xc0x51xe2xf3x3fx10xd1x4ex2ex5dx76x4ex90xe9xe9xe9x67xc6x71xfcx63x4bx23xafx24xa2x97x5bxeaxa8x84x78x14x45x27x20x62xeax32x6ax9dx4exe7x2fx87xa9x34xb4x31xe6x14x66xb6xbdx60xf8x45x22x3axdexe5xc4x3bx27x48xb2x51xcfxb2x29xddxd2xafx4dx63x63x63x4fx3bxfdxf4xd3xadxdex88xb9x04x2axabxaexacx81x52x44x94xcbxdcx64xf5x23x6fx39x63xccx99xccxbcxcax66x9cx3cxb2xe0xe7x32x09x5axebx0bx00xc0xf6x4dxd4x9bx88xe8xd3x36x80x55x41x36x8axa2x33x11x31xedxc4x3fx48x44xdbx57xc1xfexa2x6cxc8x98x33x6cx6bxf3x9ex4dx44x37xbbxb4x39x17x82x18x63xdexcaxccxb6x99x38x2ex23xa2x57xb9x74xb6x0cx5dx5ax6bx29x7cx93x36xa6xe3xc7x44xf4xacx32xecx2dx63xccxacx49xbdxb7xb2x35x97x83xd5x5cx08xe2x68x1fx02x41x10xecx53xafxd7xefx28x63xd2x5cx8dxa9xb5xbex05x00xf6x4bxa9xefx2ax22x4ax1bx7dx98x72x88xeax74xcfx18x8exbcxb5x03xb9x9cx1bxe5x42x90x64x1fx72x1bx00xfcxb5xcdx34x30xf3x1axa5xd4x94x8dx8exb2x65xa3x28x7ax10x11x1fx97xc6x0exd7xa7xc1x69xc6x2exbax6fx14x45x8fx47x44x89xb6xb4xbdx3fxf5x0ex22xfax84x6bxfbx73x23x48x14x45xe7x20xa2x6dx29x83xefx11xd1xc1xaex9dx2ex4ax5fxd6x74xacxccx5cx57x4axa5xcex80x52x94x5fx2exc7xd1x5axcbx5ex55xf6xacx56x2dx8exe3xfdx1ax8dx86x55xa8xeexb6x0cxc8x8dx20xc6x98xd7x31xf3x67xadxbcxfex73x7dxbex23x95x52xa9x63x29x6cxc7x75x21x9fx35xdbx24x22xbex2ax0cxc3xcbx5cxd8x50x75x1dx5ax6bxc9x15x66xfbx6ax36xb7xc2x4bxb9x11x64x66x66x66xbbx76xbbx2dx4bxa7xedx8dxd4xb3x88x48xcax2cxf7x5dxcbx5axd4x14x11xf7x0fxc3xf0xd6xbex73x38xa5xc1xd3xd3xd3x07xc6x71x6cx1dx10xc6xccxa4x94x32x29x87xefxa9x7bx6ex04x91xd1x5dxbcxdbx06x80xb9x76xbbx7dxc0x9ax35x6bxfax2exbbxa0xd6x3ax53x7cxccxecxecxecxe3x9bxcdxa6x55xa6xfcx9ex66xbfxe4x4ex5ax6bx89x1dx12x8cx6cx5axdcx6exb7xf7xc9xebxf9xc8x9bx20x99x42x4dxb7x46x0bx11xcfx08xc3xf0x9fx6cx50x2cx43xd6x18xf3x61x66x7ex6fxdaxb1x87xe1x90xd0xd5xeax01x00xb9x1ex07xe4x4ax10x79x30xb4xd6x56x89x1cx92x87xebx9ex64x15xc9x92x1dx3dxedxf3xe9xacxbfxd6x5axaex4ex9cx92x46x21x33xffx5ax29x35x50xb7x99xb7xe5xbfxa3xd5x43xf6xa8x6fx56x4ax59x6fxf2x17x9axa3x22x08x22x7fxf9x5dxd4x1dxecxbbx5axe1x51x14x7dx0bx11x5fx90x86x20x00xf0x5dx22xcax1cx2ex90x72xacx52xbaxbbx5ax3dx24x38x6fx6cx6cx6cxe5xeaxd5xabx6dx73xf9x2ex88x43xeex04x69xb5x5axfbx06x41x60xbdxe1x64xe6x5bx94x52x52x42xa0x6fx5axc6x34xfex17x12x51xdaxf0xdcxbexc1x24xf9x55xe1x62xefx21xaax3ex49x44xa7xe5xe9x7cxeex04x11xe3xa3x28xfax32x22xbaxb8x9dxdbx57xd7xe0x33x06x4ax7dx90x88x52x25x78xc8xf3x01x71xadxdbxd1xb5x92x79xb3x5ex4ex44x57xbaxb6x71x4bx7dx85x10xc4x18x73x22x33xbbx28xadx76x5fxa7xd3x39x74x72x72xd2x49x79xadx3cx81x5dxb7x6exddxd3x3ax9dx4exeaxc0x9dxbcx7fx53xe7xe9x73x2fxbaxb5xd6x52xf9xe9xd8x5exfax2exd6x07x11xbfx1ax86x61xe6x1cx6cxbdx8ex5fx08x41x92x65x35x4bx85xd7x6dxf9x71x36x11xbdxbdx57x07xcbxeaxa7xb5x3ex14x00x52x17xb7x0fx82xe0xf0x7axbdx9ex5axaex2cx3fxd3x8cxebx28x6bxe2xfcx90x27x10xd1xe7xd3x8cx9fxa5x6fx61x04x89xa2xe8x5dx88xe8xa4x2cx16x00xbcx94x88xaexcaxe2x70x51x32xadx56xebxa4x20x08x2ex4ax3bx1ex33x3fx45x29x65x55x1fx23xedx98x45xf4x97x8cx37x00x20xf9x0axf6xb2x1dx0fx11xafx0dxc3xd0x59x6ax9fx45x57x2ax5bx63x7bx95xdfxb0x61xc3xf6x73x73x73xb7x20xa2x4dxedxb9xf9xe1xbex41x44x47xf6x3ax76x19xfdxb4xd6x0dx00x48x7dxd1xb2xd3xe9xbcxa8x57x7bx27x27x27xbfxd9x6bxdfxb2xfbx69xadxe5xa4xbbxeexc2x0ex44x3cx39x0cxc3x8bx5dxe8xeaxa6xa3xb0x15x24xf9x99xf5x01x00x70x55xd2xb8xd2x1bxf6x28x8axdex81x88x1fxebx36x01x16xdfx5fx4ax44x27x5axc8x17x26xaaxb5x3ex1ax00x5cx15x22xcdxedxdexd5xb6x00x29x94x20x49x96x73x89xf8x72x95x7fxd7x69x8ax17x97x4fx4cx14x45xafx44xc4xcbx5dxeaxdcx4axd7x34x11x85x39xeax77xa2x3axc9xeax22x99xd6xd3xc6xc4x6cx73x7cx44x7cx4bx18x86xa9xf3x1cx67x75xa6x50x82x24xabx88xdcxd9x77xb5xc9xbex75x6cx6cxecxe8x2axc6xaex3bxcaxd2xb1xe0xbcx32xf3x29x4axa9xd4x7bx9cxacx0fx4ax56xb9x8cx69x57x17x1axeex26x22xcax5cx5ex23x8bx0fx85x13x44x56x91x20x08xaex47xc4xddxb2x18xbcxb5x4cx95x33x31x6axadxe5x80x74x5fx17x7ex6exadxa3x1fxcax43x6bxadx65xcfxe1xf2x96xedx49x44x64x1dx42x91x66x3ex0ax27x88x18xe7xf8x8dx96xa8xacxe4x7ex24xebx46xbdx87x09xacxfcxfexc3xf1xbex03x10xf1x92x30x0cx5fxdbx03x36x4exbbx94x42x90x84x24xaex4exd7xe7x01x71x56x97xcex15xc2x1bx36x6cx58xb2x71xe3xc6xefx00x80xd3xa2x40x88xf8xfcx30x0cxbfxebxcax4exd7x7ax92x4axb5xb2xffx72x95x78x62x53x10x04x87xd6xebx75xb9xf8x5ax68x2bx8dx20xc6x98x43x98xf9x7ax00x18x71xe8x71xe5x48xe2xa2xe6xdex96xf8x54xbdx8ex63xabxd5xdax21x08x02xc9xe4x72x84xc3x79x5dx4bx44xa9xc3x06x5cx8cx5fx1ax41x92x0dxbbxcbxd7xbex9bxf1x88xe3xf8xf0x46xa3x51xa9x93x68x63xccx7ex71x1cx7fx1dx11x9fx64x33x69x2excbx1bxdbxd8xb1x98xacxd6x5ax0ax70xbax24xc7xedxa3xa3xa3x87xe6x79x63x77x31x7fx4ax25x48xf2x13x44x56x91x83x5cx4ex98xebx04xc6x2ex6cx93xecx1dx00xb0x3ex4bx22x0bx44xfcx1ax22xbexb7x5exafxdfxe4xc2x96xbcx74xe4x40x0ex31xf5xefx89xe8xfcxbcx6cxeexa6xb7x54x82x88x71xc6x98xe3x98x59x96x64xa7xadxaax51x79xadx56xebx98x20x08xdex06x00xafxeexe6x30x22xcax4ax78x7ex18x86xe7x76xebx5bxf6xf7x39x91x23xd7x68xc1x5ex30x2bx9dx20xc9x4fxadx33x00x60x4dx2fx06xa7xe9xc3xccx4fx53x4axddx93x46xa6xa8xbex6bxd7xaexddx15x11x17xccx1bx36x3ax3ax7ax5fxbdx5exbfxbdx28x7bx6cxc6xc9xe9x75xf6x4fx11xf1x98x30x0cxffxdbxc6x36x5bxd9x4ax10x44x9cx88xa2x48x7exa3x1fx65xebxd0xd6xf2x55x7fxe3xe3xdaxdfxa2xf5x69xadxadx13x04x6excbx66x66x3ex4ex29x75x45xd1xfex3cxe6xf9x29xdbx80xf9xf1xa7xa6xa6x0exacxd5x6ax57x03x80xd3xfax0ex89xfexcaxbdxddxaax0axeex59xedx68xb5x5axbbx07x41x20xc1x4ax56xd9x33x17x18xffxbdx44xb4x36xabx6dx2exe5x2axb3x82x88x53x8exe3x05xb6xc6xa9xefx62xdax5dx4exb4x4bx5dx49xeexe5x4bx72x22xc7x67x89xe8x24x97xf6xdaxe8xaax14x41x92x9fx5ax2ex52x96x6ex13x13x66x3ex6bx6ex6ex2ex1cx86x9cx53x36x0fxc5x62xb2xc6x98xe3x99x59xaex8fx3cx3dx87x31x6ex63xe6x63xaax14x0fx53x39x82xc8xe6x75x74x74xf4x6ax66xdex3fx87x09x90x2bx0bxdfxe9x74x3ax61xa3xd1x90x13x6exdfx52x20x10x45x51x13x11xf3x8cx97xafxdcxedxecxcax11x24x59x45x9ex07x00x57x20xe2xaex29xe6xafxe7xaex88xf8x50x1cxc7xa1x52xeaxacx9ex85x86xb8xa3xd6x5ax56x0bx59x35x6cx73xe8x2ex88x62x91x41x50x69xa6xb2x92x04x49xf6x23xb9x9cx8fx6cx09x8exfcxe4xeax74x3axffxb4x66xcdx9axbex4ax48x97x66x82x6dxfbxe6xfcx93x6axb3x79x45xc7x78xa4xc1xa4xb2x04x11x27xa6xa7xa7xdfx10xc7x71xdex65xd8x6ex67xe6x96x52xcaxb6x80x64x1axdcx2bxdfx37xd9x88x4bx40xd6x9bx73x36x36x97xbax1exaex6cxaex34x41xc4x49xadxb5x64x76xffxb8x2bx87x17xd2xc3xccx9fx0bx82x60x6ax18xb2xaax2fx86xa5x5cxffx79xf8xe1x87xebx52xa3x04x00x76xccx13x77x66x7ex9fx52xcax45xd6xcdxdcxccxacx3cx41x12x92xb8x0exbcx59x08xd0x3fx26xabx49xeax64x0bxb9xcdx50x81x8axb5xd6x12x6fx21x58xe7x1exb5x87x88x17x84x61x98xf7xeax64x8dx5ex5fx10x24xd9x93xbcx9fx99x9bxd6x1exf7xa0x80x99x7fx88x88xe7x8ex8cx8cx9cx37x3ex3ex3exd7x83x48x5fx77xd1x5axffx2dx22x9excaxccxafx28xc8x91xebx88xe8xc5x05x8dx65x35x4cxdfx10x24x21x89xbcx83x97x8ax44x45x35x29x20x3ax4fx94xfbx8bx1axb4xa8x71x4ax20x86x6cxc8xbfx14x86xe1x2bx8bxf2xd1x76x9cxbex22x48x42x92x83x99xf9x46x5bxc7x53xcaxffx8fxacx28xedx76xfbxa2xc9xc9xc9x9fxa7x94xadx5cxf7x32x88x91x80x70x11x11xa5x2ax07x51x36x78x7dx47x10x01x6cx7ax7ax7ax65x1cxc7x5fxcexe9x34x77xb1x39x79x18x00xe4x6axfex65x4bx97x2exfdxe2xaax55xabxe4xbfxfbxa2xb5x5axadxfdx6bxb5xdaxdfxc9x59x46x5ex87xb0x8bx01xc1xccx33x4axa9x89xbex00x6bx0bx23xfbx92x20x62xffxfaxf5xebx77x7bxe4x91x47x2exc8xe3x06x70x8fx93xf8x73x89x63xa9xd5x6ax97x55x35x97xeexf4xf4xf4x2exedx76xfbxf8x20x08x84x18xb9x27x7ax5ex04x37x45x44xbax47x5cx2bxd5xadx6fx09x92xfcxdcx92x04x74xe7x33xf3x09x25xa3x2axc5x4ax25x39xf7xf7x98xf9x5axa5xd4x9dx65xd8x23xe9x5dx67x67x67x0fxa9xd5x6ax72x13x41x62xfex0fx01x80xedxcbxb0x25x19xf3x4fxccxfcxcex3cx2bx40xe5xedx5bx5fx13x64x1ex1cxadxb5xf3xd8x76x4bxe0xefx06x80xebx99x59xb2x70xdcx39x32x32x72xc7xc4xc4xc4x2fx2dx75x3ex4ax5cx56x87x38x8exf7x06x00xf9x48xf6x10xc9x26xefx34x74xd9xd2x5exd9x27xd6x89xe8x06x4bx3dxa5x8ax0fx04x41x04x41xadxf5x6bx64x7bx02x00xbbx97x8axe8xc2x83xcfx32xb3xacx2cx9bx3fx88x38x2bx15x7cxe7xffx8dxe3x58xbex9fxabxd5x6ax9bx98x79x59x1cxc7xcbx82x20x58x06x00xdbxc9x7fxcbxffx66x66x49xfcx3dx4fx8ax5dx2axeaxa7x98x75x4ex1cxc7xf5x46xa3xf1x40x85x6dxecxc9xb4x81x21x88x78x1bx45xd1x3ex88x28x24x29xf3xf7x76x4fxc0x0fx68xa7x76xb2x6ax9cx39x28xfex0dx14x41xb6xf8xc9x15x01x00x0dxcax24xf5x89x1fx37x23xe2x44x18x86xd7xf6x89xbdx3dx99x39x90x04x49x36xf0xa7x24x35xcax57xf6x84x84xefx64x83xc0x79x88x38x19x86xe1x7dx36x4axaax28x3bxb0x04x11xb0x67x66x66x76x6exb7xdbx72x23x55xeex17xb9xccxe0x58xc5xb9x2cxdcx26xc9x8cx89x88x86x88xe4x4cx6ax20xdbx40x13x64x7exc6x8cx31x07x0bx49x2axf0x3ax78x50x1ex22x29x11x27xf5x49xd6x0fx8ax43x0bxf9x31x14x04x99x77x3ex8axa2x93x25x13x3cx22xe6x12xcex3bxe8x0fx8bxf8x87x88x12x7ax30x5dx76xbexaaxa2xb0x1ex2ax82x24x7bx13x39x5cx94xd5xe4x54x00x78x72x51x40x0fxc0x38x57x30xf3x47x95x52x92x9ax69x68xdaxd0x11x64x7ex66x93xabx2axa7x21xa2xa4x01xf5x44x59xf8x91xbfx34x8exe3x73x1bx8dx86xabx1ax83x7dx45xaexa1x25xc8x96x44x69xb7xdbx12x0bxe1x57x94x47x3fxbax17x76x3ax9dx73xfbxa9x92x6ex1exccx1bx7ax82x78xa2x3cxfaxb1x62xe6x73x83x20x38xb7xcax05x7axf2x20x82xdfxa4xf7x88xaaxdcx71xeax74x3axc7x21xe2x71x00x50x54x84x5dx8fxd6xe5xd3x4dx72x85x31xf3xe5xedx76xfbx8ax35x6bxd6x48x90x98x6fx09x02x7ex05x59xe4x51x48xaexaex08x51xe4x23x37x64x07xa6x21xe2x5dx42x0ax00xb8x9cx88xbex3dx30x8ex39x76xc4x13xa4x47x40xb5xd6x2fx4cx88x72x2cx00xecxd3xa3x58xd5xbaxddxc3xccxd7x49xfdxf6xd9xd9xd9xcbx9bxcdxa6xdcx9dxf2x6dx11x04x3cx41x32x3cx1ex5axebx03x00xe0x70x66x3ex0cx11x0fxabxf0x5bxb0x07x01xe0x1ax00xf8x36x22xdexe8xf7x15xe9x27xdbx13x24x3dx66x8fx91x10xc2x30xf3x11x88x28xabxccx7ex00xb0xc2x81xdax2cx2ax7ex03x00x77x20xa2x90xe2x5ax4fx88x2cx10x3ex5axc6x13xc4x1exc3xc7x68x68x36x9bx63xcbx97x2fx5fxd9xe9x74x56x06x41x20x97x25x25x86x43xfex95x8fxc4x78xd8x36xd9x48xcfx7fxeex64xe6x3bxc6xc6xc6xeex28xabxd0xa5xadx33x55x96xf7x04x29x78x76x84x3cxdbx6dxb7xddx92x4exa7xb3xb4x56xabx2dx89xe3x78x29x22x2ex61xe6xcdxffxcaxa5x4ax44xdcx18x04xc1xc6x38x8ex1fxaexd5x6ax1bx47x46x46x36x26xedxe1x66xb3xb9xb1x60x93x87x7ax38x4fx90xa1x9ex7exefx7cx37x04x3cx41xbax21xe4xbfx1fx6ax04x3cx41x86x7axfaxbdxf3xddx10xf0x04xe9x86x90xffx7exa8x11xf0x04x19xeaxe9xf7xcex77x43xc0x13xa4x1bx42xfexfbxa1x46xc0x13x64xa8xa7xdfx3bxdfx0dx01x4fx90x6ex08xf9xefx87x1ax01x4fx90xa1x9ex7exefx7cx37x04x3cx41xbax21xe4xbfx1fx6ax04x3cx41x86x7axfaxbdxf3xddx10xf0x04xe9x86x90xffx7exa8x11xf0x04x19xeaxe9xf7xcex77x43xc0x13xa4x1bx42xfexfbxa1x46xc0x13x64xa8xa7xdfx3bxdfx0dx01x4fx90x6ex08xf9xefx87x1ax01x4fx90xa1x9ex7exefx7cx37x04x3cx41xbax21xe4xbfx1fx6ax04xfex1fx21xfbx39x6ex4ex41xbdxc8x00x00x00x00x49x45x4ex44xaex42x60x82x00x00x1ax17x89x50x4ex47x0dx0ax1ax0ax00x00x00x0dx49x48x44x52x00x00x00xc8x00x00x00xc8x08x06x00x00x00xadx58xaex9ex00x00x19xdex49x44x41x54x78x5exedx5dx0bx98x1cx55x95x3exa7x7ax06xc3x04x45xf1xedxfax44x57x97x85x15x15x11x54x90x67x0cx28x04x5cx04x11x70x45x58x08x82x22x99x99x3axb7x27xacxd2x3ex32xd3x75x6ex67x82x61x41xa2x88xf8x82x05x44x90x87xaexabx08xaexafx04xdfx20xcaxcaxa2x28xbex05x24xabx19x02x99xaexb3xdfx0dx1dx1dx26x33xe9xaexbaxb7xebxd1x7dxebxfbxf8x3exbexf4xf9xcfxe3x3fxf5x4fx77x55xddx3ax17xc1x1fx9ex01xcfxc0xbcx0cxa0xe7xc6x33xe0x19x98x9fx01x2fx10x7fx76x78x06xb6xc1x80x17x88x3fx3dx3cx03x5ex20xfex1cxf0x0cxa4x63xc0x7fx83xa4xe3xcdxa3xfax84x01x2fx90x3ex69xb4x2fx33x1dx03x5ex20xe9x78xf3xa8x3ex61xc0x0bxa4x4fx1axedxcbx4cxc7x80x17x48x3axdex3cxaax4fx18xf0x02xe9x93x46xfbx32xd3x31xe0x05x92x8ex37x8fxeax13x06xbcx40xfaxa4xd1xbexccx74x0cx78x81xa4xe3xcdxa3xfax84x01x2fx90x3ex69xb4x2fx33x1dx03x5ex20xe9x78xf3xa8x3ex61xc0x0bxa4x4fx1axedxcbx4cxc7x80x17x48x3axdex3cxaax4fx18xf0x02xe9x93x46xfbx32xd3x31xe0x05x92x8ex37x8fxeax13x06xbcx40xfaxa4xd1xbexccx74x0cx78x81xa4xe3xcdxa3xfax84x01x2fx90x3ex69xb4x2fx33x1dx03x5ex20xe9x78xf3xa8x3ex61xc0x0bxa4x4fx1axedxcbx4cxc7x80x17x48x3axdex3cxaax4fx18xf0x02xe9x93x46xfbx32xd3x31xe0x05x92x8ex37x8fxeax13x06xbcx40xfaxa4xd1xb3xcbx1cx1fx1fx7fxe2xe0xe0xe0x0bxe3x38xbex47x29xf5xabx3exa5xa1x6dxd9x5ex20x6dx29xeax2dx83x89x89x89xfdx2bx95xcax38x00xbcx72x56x65xe7xc5x71xfcx85x6axb5xfax85xdexaaxd8xaex1ax2fx10x3bxfex4ax85x66xe6x57x03xc0xd7xdbx24x3dx4ex44x67x97xaaxb0x2ex26xebx05xd2x45x72x8bxe4xfaxdcx73xcfx7dxeaxc3x0fx3fxfcxbbx0ex73xbax98x88x4exeexd0xb6xa7xcdxbcx40x7axbaxbdx7fx2bx8ex99x25x61xa9x9fx17x91x53x94x52xbfx49x88xebx29x73x2fx90x9ex6axe7xdcxc5x30xf3x2fx00xe0xd9x49x4bx45xc4xefx8axc8xa9x44xf4xbdxa4xd8x5exb1xf7x02xe9x95x4excex53x07x33xdfx08x00x07x5ax94xf9x6bx00x30x22xf9xbcx85x8fxd2x42xbdx40x4axdbxbaxf6x89x33xf3x1ax73x72xb7xb7x6cx6bx31x8dx88xa7x86x61xf8xb1xb6x96x3dx66xe0x05xd2x63x0dxddx52x4ex14x45x21x22xb2xcbxf2x44x64xb9x52x6axc2xa5xcfxa2xfbxf2x02x29x7ax87x52xe4xa7xb5x7ex83x88x7cx36x05xb4x13xc8x07x89xe8xacx4ex0cx7bxc1xc6x0bxa4x17xbax38xa3x86xc9xc9xc9x7fx9ax9ex9exbexb5xcbx65x5dx4ex44xc7x76x39x46x21xdcx7bx81x14xa2x0dx6ex92xa8xd5x6ax43x43x43x43x1bxdcx78x6bxebxe5xabx53x53x53x07xd7x6axb5xe9xb6x96x25x36xf0x02x29x71xf3x66xa7x1ex45xd1x83x88xb8x20xc3x92xeex00x80xc3x88xe8xaex0cx63x66x1axcax0bx24x53xbaxbbx17x8cx99x6fx03x80xddxbax17x61x5excfx0fx20xe2x51x61x18x7ex25x87xd8x5dx0fxe9x05xd2x75x8axbbx1fx80x99xafx06x80x23xbbx1fx69x9bx11x4ex26xa2x8bx73xcexc1x79x78x2fx10xe7x94x66xebx90x99x35x00x8cx66x1bx75xdex68xefx23xa2x73x0ax92x8bx93x34xbcx40x9cxd0x98x8fx13xadxf5x52x11xb9x30x9fxe8xf3x46xbdx88x88x4ex29x58x4exa9xd3xf1x02x49x4dx5dxbexc0x95x2bx57x1exd4x6cx36xbfx6cx9bx85x88x9cx10x04xc1x7ex66x61xa2xadxafx19xf8xebx89xe8x70x87xfex72x73xe5x05x92x1bxf5xe9x03x4fx4cx4cx3cxb7x52xa9xfcx3cxbdx87x47x90x22x32xaax94x5ax69xfex3fx8axa2x71x44x1cxb3xf5x39x03xffx1dx22xdaxd3xa1xbfx5cx5cx79x81xe4x42xbbx5dxd0x14x4bxd7xe7x0axb8x92x88x1ex75xedxc2xccxcbx00x60xd2x2exbbx47xa1xefx99x9ax9axdaxadx56xabxfdx9fx43x9fx99xbaxf2x02xc9x94x6exfbx60xccxfcx7bx00x78x8axa5xa7x4fx13xd1x09x73xf9xd0x5ax9fx20x22x17x00xc0x63x2dx63x6cx81x6fx8axe3x78x8fx6axb5x6ax6ex43x97xeexf0x02x29x51xcbxb4xd6xdfx10x91x57x59xa6x7cxe3xd4xd4xd4x6bx6bxb5x5ax3cx9fx1fx66x3ex04x00xcex07x80x9dx2dx63xcdx84x1fx4ex44xd7x3bxf4x97x89x2bx2fx90x4cx68xb6x0fxc2xccx1fx07x80x7fxb1xf4x74xfbxe0xe0xe0xa2x65xcbx96xfdxb6x9dx9fx7axbdxbex7bx10x04x66xb9xfcx5exedx6cx13x7cxfex0ex22x32xc2x2bxcdxe1x05x52x82x56x69xadxdfx2dx22xefxb3x4cxf5x7ex00x38x88x88x7exd0xa9x9fxf1xf1xf1x27x57x2ax95x8fx21xe2xebx3bxc5xb4xb3x43x44x1dx86x21xb5xb3x2bxcaxe7x5ex20x45xe9xc4x3cx79xd4xebxf5xe3x82x20xf8xb4x6dx9ax41x10x1cx32x3ax3axfaxc5x34x7ex98xd9xbcx28x75x62x1axecx5cx18x44xbcx22x0cxc3x37xb9xf2xd7x4dx3fx5ex20xddx64xd7xd2x77x14x45xafx40xc4x75x96x6exccxedxdcx13x95x52xe6x27x5axeax43x6bxcdx22x12xa6x76x30x0bx68xeax0axc3x70x6fx57xfexbaxe5xc7x0bxa4x5bxccx5axfax9dx9cx9cxdcx69x7ax7axfax3ex4bx37x06xaex88xc8xc9x9bx85xaex6fx03x8bxc8xefx95x52x4fx73x50x63xd7x5cx78x81x74x8dx5ax3bxc7x2ex9ex75x88xc8xa4x52x6axc4x2ex93x47xa3x99xd9xfcx34x32x3fxb9xb6x77xe1x57x44xfexa8x94xb2xbdx6dxedx22x95x39x7dx78x81x74x8dxdaxf4x8exb5xd6x77x8axc8x0bxd2x7bxd8x8cx9cxf7x59x87xa5x5fx60xe6x7dx8dx7fx00x78x96xadxafx16xfex4ax22x3axc6x91x2fxa7x6exbcx40x9cxd2x69xefx8cx99xcdx6cx5cxf3x1cxc2xe6xb8xb1xd9x6cx1ex3dx36x36xf6x27x1bx27xdbxc2x32xf3xf3x01xe0x0ax00x78x99xa3x18xc7x10xd1x95x8ex7cx39x73xe3x05xe2x8cx4ax7bx47x5axebxf3x44xe4x1dx96x9ex6ex17x91xa3x95x52x3fxb1xf4xd3x16x3ex39x39xb9xfdxf4xf4xb4x11xc9x61x6dx8dxdbx1bx14xf2x5bxc4x0bxa4x7dxe3x32xb1x88xa2xe8x2cx44x5cx65x19xecxfex66xb3x79xd4xd8xd8xd8xcdx96x7ex12xc1x1dxcdxdfxbax99x88x0ex48x14x38x03x63x2fx90x0cx48x6ex17x82x99xcdx5fxe0xebxdaxd9x75xf0xf9xb1x44x74x79x07x76xcex4dxb4xd6xe7x88x48xcdxc2xb1x17x88x05x79x3dx0bx6dx34x1axffx10xc7xb1xf5xcfx21x44x7cx57x18x86xabxf3x20x8ax99xdfx09x00x56xb1xe3x38x3exb5x5axadx7ex24x8fxfcxb7x15xd3x7fx83xe4xd8x91x5axadx36x30x34x34xb4xc9x41x0ax77x02x80xb9xc8xedx78x19x89x83x98x9bx5dx68xadx8fx13x11xdbx27xfdx77x07x41xb0xe7xe8xe8xe8xbdxaexf2x72xe5xc7x0bxc4x15x93x29xfcx30xf3x7ax00x78x5cx0axe8x5cx90x07x44xe4x18xa5xd4x97x1cxf9x6bxebxa6x5exafx2fx0ex82xc0x5cxa4xdbxd6x70x1cx11x5dxd6x36x60x0ex06x5ex20x39x90x6ex42x32xf3x77x1dxdex22xfdx6bx15x71x1cx1fx5fxadx56x2fxedx76x59x8dx46x63x8fx38x8excdx6dxd9xe7x59xc6x1ax26x22xdbx9bx13x96x29xccx0fxf7x02xe9x1axb5xf3x3bxd6x5ax5fx6exfexdax77x2bx74xb7xafx47xa2x28x7ax26x22x9ax51x43x2fxb7xacx81x89x48x59xfaxe8x2axdcx0bxa4xabxf4x6exedxbcx0bxefx7excfx57xc1x07x88xe8xddxaexcbx33xd7x4dx0bx17x2exbcx5ex44x16xdbxf8x46xc4x8fx87x61xe8x6cx85xb0x4dx2exdbxc2x7ax81x74x8bxd9x39xfcx32xf3x49x00xf0xd1x0cx43xaex21xa2xd3x5cxc6x63x66x73x41x7ex9cx8dx4fx44xfcxe2x86x0dx1bx0ex2bxc3x5cx5fx2fx10x9bx4ex27xc0x36x1ax8dxd7xc4x71xfcxd5x04x10x27xa6x88xf8xd9x66xb3x79x52xb5x5ax35x37x04xacx0ex66x36xb7x72xcdx2dxddxd4x07x22xfexb0xd9x6cx2exa9x56xabxbfx4cxedx24x43xa0x17x48x06x64x47x51xf4x0cx44x34x5bx99xe5x75x7cx0dx00xdex66x33x64x3ax8axa2x1ax22x5ax4dx4dx34xcbxdbx01x60x89x52xeax96xbcx88x48x1axd7x0bx24x29x63x29xecx5dx2cx5dx4fx11x76x36xe4x0ex44x3cx31x0cxc3xc4x2fx60x45x51x74x1ax22x7exc8x36x07x11x39x42x29x75xadxadx9fx2cxf1x5ex20x5dx66x9bx99xefx01x80x67x76x39x4cxa7xeexefx43xc4xb7x86x61x78x43xa7x00x87xbbx55x2dx25xa2x0fx77x1axb7x28x76x5ex20x5dxecx84xd6xfax26x11xd9xdfx32xc4x7fx02xc0x1fx1cx4cx34x99x99x86xf9xb9x75x49xbbxbcxb4xd6xafx14x11x13xdfxeax41x20x22xbex27x0cxc3xf7xb7x8bx57xc4xcfxbdx40xbaxd4x95x28x8ax2ex42xc4x93x2dxddxdfx2ax22xfbx28xa5xfexccxccx66xe2xa1x99x7cxe8xeax08x89xa8x31x9fxb3x89x89x89x9dx2bx95x8ax99xfdx6bxf5x20x10x11x2fx08xc3xf0x0cx57x49x67xedxc7x0bxa4x0bx8cx33x73x15x00x6cx77x83xbdxb7x25x8exffxd9x92xa2xd6xfax6cx11xf9x80xabx94x11x31x0axc3xd0xe4xfaxa8x63xcdx9ax35x43xebxd7xafx37x77xdcxacx1ex04x9ax3bx68x61x18x1exe5x2axdfx3cxfcx78x81x38x66x3dx8axa2x37x22xa2xf5x9bx71x22x72xa0x52xeaxa6xd9xe9x31xf3xdbx01xc0x8cx06x75x75x5cxbcx60xc1x82xd3xcfx3cxf3xccx87xb6x38x8cxa2xe8x7axdbx59x58x22xf2xcdx1dx76xd8x61xf1x19x67x9cxf1x17x57x89xe6xe1xc7x0bxc4x21xebxccxfcx12x00xf8xbexadx4bxb3x25x81x52x6axdex15xb2x5axebx63x44xc4xdcx55xdaxc9x36x56x0bx7fxedxc0xc0xc0xe9xc3xc3xc3xbfx66x66xf3x20xd3x3cxd0x4cx7dx88xc8xcfx44xc4x3cxebxb8x3dxb5x93x82x00xbdx40x1cx35xe2xfcxf3xcfxdfx61xc3x86x0dx7fxb6x75x27x22xa4x94x32xbbx46x6dxf3xd0x5ax1fx18xc7xf1x1ax44xb4x1dxeexb0x39x0ex22x7ex53x44xccx9bx88xcbxdbxc5x6exf3xf9x06x44x5cxd2x2bx7bx16x7ax81x58x9ex0dx5bxe0xccx6cx7exa2x6cx67xe9x6ex15x11x0dx77xeaxa3x5exafxefx1ax04x81xf9x8bxefx72x7ex6exa7xe1xe7xb4x43xc4xe3xc3x30xecxfax6ax62xabx24x13x80xbdx40x12x90x35x9fx29x33xffx18x00x76xb1x74x75x39x11x1dx9bxd4x47xa3xd1x78x52xb3xd9xfcx04x22x1ex9ax14xebxdax1ex11x47xc2x30x74xb9xbfx88xebx14x13xfbxf3x02x49x4cxd9xa3x01xccx6cx9ex0cxdbx6ex37xf6xb5x30x0cxf7x43x44x49x9bx0ex33x7fx12x00xe6xdcxf3x23xadxcfx24xb8xb2x0dxa5xeexb4x36x2fx90x4ex99x9axc3xcexd1xb3x89xbbx06x07x07xf7xedx64x4bx82x76xa9x32xf3xb9x00xf0xaex76x76xaex3fx47xc4x4fx86x61x68xbbx35x83xebxb4x9cxf8xf3x02x49x49x63x14x45xa7x23xa2xedx5ex17x0fx02xc0x3ex44xf4xbdx94x69x6cx05x8bxa2x68x0cx11xc7x5dxf9x6bxe7x47x44xbexa4x94x7ax6dx3bxbbxb2x7exeex05x92xa2x73xccx6cx4ex88x54x5bx09xccx0axd7x95x5dx97x32x7cxefxe4xd6xe9xe9xe9x83x97x2fx5fxfexc7x14x34x96x02xe2x05x92xb0x4dxabx56xadxdax79xd3xa6x4dx77x25x84xcdx65xdexd5xc5x7bx5axebxd7xb7xa6x8dxecxe8x20xd7xb9x5cxfcxa1x75x3bx37xf1xeaxe0x2exe5xd3x15xb7x5ex20x09x69x75xb1x74x5dx44xdexabx94xb2x19xb2xd6x51xd6x51x14xbdx1cx11xcdx20x39x97x7bx0dx6ex8ex8dx88x47x86x61xf8xb9x8ex12x29xb1x91x17x48x82xe6x31xb3x99xdbxf4xc4x04x90xadx4cx45xe4x23x4axa9x53x6dx7cx24xc1xaex5cxb9xf2x59xcdx66xd3x8cxe6x71xb6x59x0dx22x9ex16x86xa1xd9xbfxb0xe7x0fx2fx90x0ex5bxccxccx6bx6dx1fxc8x89xc8x0dx4ax29x17x83x9ex3bxccxfax11xb3x5axadxb6xddxd0xd0x90x11xc9x11x89x80x73x18x23x62x2dx0cxc3xf7xdaxfax29x0bxdex0bxa4x83x4ex31xf3xa7x00xe0xf8x0ex4cxe7x35x11x91xefx8bxc8x01x2exdex0dx4fx9ax47x14x45x8bxccxbex80x00xf0xf8xa4xd8x59xf6x1fx22xa2xd3x2dx7dx94x0axeex05xd2xa6x5dx0exdfxc5xdex4fx29xf5xd7xa5xebx59x9dx25x66x3bx67x23x0ex44x7cxa1x65xccxabx89xe8x9fx2dx7dx94x0exeex05xb2x8dx96x69xadx4fx10x11xf3x84xdaxf6xd8x9fx88x32x9fx68xb2x62xc5x8axa7x0fx0cx0cx18x71xecx63x59xc0xb7x88xe8x55x96x3ex4ax09xf7x02x99xa7x6dx2bx57xaexdcxbbxd9x6cx7excbxb6xabx71x1cxbfxb9x5axadxfex87xadx9fxa4xf8x5axadx16x2cx5cxb8xf0x4ax11xb1xfdxabxffxf3x4axa5xb2xdfxc8xc8x88x79xb7xbexefx0ex2fx90x39x5ax3ex3ex3exfexe4x81x81x01xf3x1exb8xd5x11xc7xf1x48xb5x5axcdx65xf1x1ex33x9bxf7x45x6cx87xc6x3dx88x88xafx0bxc3x30xd3x0dx79xacx48x77x0cxf6x02x99x83x50x17xcfx3ax00xa0x41x44xcexf6x15x4fxd2x77x66x36x77x99xdex93x04x33x97x2dx22xbex25x0cx43x73x83xa2x6fx0fx2fx90x59xadx67xe6x9fx39x18x54x70x69x18x86x56x77xbdxd2x9ex91xccx6cx06x24xfcx7bx5axfcx16x9cx88x8cx2axa5x56xdaxfax29x3bxdex0bx64x46x07x99xf9xbfx00x60x91x4dx53x11xf1xe6x0dx1bx36x2cxcax63xeex2cx33x1fxddxdax79xd6xa6x04x83xcdxedxdbxcfx36x71xd7x78x2fx90x16xa3xccx6cx06x21x98x81x08xa9x0fx44xfcx69x1cxc7x07x29xa5x7ex95xdax49x4ax20x33xefxd7x12xc7x53x52xbaxd8x02xfbx14x11xbdxc5xd2x47xcfxc0xbdx40x1exd9x46x6cx58x44xacx7ex4ex88x88x99xdex71x80x52xeax3bx59x9fx1dx51x14xedxd2x7ax10xb8x9bx65xecx2fx13x91xd5x37xa8x65xfcxc2xc1xfbx5ex20xf5x7axfdx88x20x08xaex71xd0x99xaex2cx5dx6fx97xd7xc4xc4xc4x13x2ax95xcax67x00xe0xc0x76xb6x6dx3exffxd1xd4xd4xd4xeexb5x5ax2dxb6xf4xd3x53xf0xbex16x48x6bxe8xc1x8fx1cx74xf4x14x22xbaxc8x81x9fxc4x2exb4xd6x97x89x48xe2x77xd9x67x05x32xefx73xbcx9ax88xccx66xa0xfex98xc1x40xdfx0ax64xf5xeaxd5x8fxd9xb8x71xe3x46xdbxb3x21xcfxb9xb3x2exf6xebx68xd5x7fx28x11x99x19xbcxfex98xc5x40xdfx0ax84x99xcdx35xc3x42xcbx33xe2x42x22xb2xbaxb0x4fx1bx9fx99xffx0dx00xacx07x42x8bxc8xdbx95x52x17xa6xcdxa3xd7x71x7dx29x10xadxf5x0fx44x64x77xcbxe6x5ex4bx44xd6xcbxc7xd3xe4xc0xccxe6x7dx12xebxf7x31xb2x7ax71x2bx4dx8dx45xc1xf4x9dx40x98xd9x5cxd0xdax0ex54xfexcexc0xc0xc0xe2xe1xe1xe1xfbxb3x6ex64x14x45x47xb6xeex58x0dx5axc6x76xbex7fxa1x65x3ex85x84xf7x95x40xb4xd6x75x11xb1xddx76xf8x37x22x72xb0x52xeax27x59x77xb4xb5x5fx87x19x8cxfdx77x96xb1x3fx47x44x47x5axfaxe8x0bx78xdfx08xa4x5exafx9fx12x04x81xf5x0ex47xf3x4dx5dxefxf6xd9xa2xb5x7ex5ex1cxc7x57x21xe2x4bx2dx63xadx25xa2x57x5axfaxe8x1bx78x5fx08x24x8axa2x03x10xf1x2bx0exbax7ax1cx11x5dxe6xc0x4fx22x17xb5x5ax6dxc1xc2x85x0bxafxb1xddx9bx1cx00xeexdex71xc7x1dx77x5dxbax74xe9x54xa2x04xfaxd8xb8xe7x05xd2x1ax5axe0x62xcbxe1x61x22x5ax95xc7xb9xa2xb5xfex84x88xd8x2exffxd8x38x30x30xf0x8axe1xe1xe1xdbxf2xa8xa1xacx31x7bx5ex20x8ex96xaex33x11xd9x5exbbxa4x3ax47x98xd9x6cx93x36x92x0ax3cx03x14x04xc1x1bx46x47x47x5dxacx18xb0x4dxa5x54xf8x9ex16x88xd6xdax5cx50x3fxddxa6x23x79xcex9dx65x66x02x80xc8x26xffx16x76x9bxfbx11x3axf0xdfxb3x2ex7ax56x20xccxfcxdfx00xb0xafx65xe7x6ex5cxb0x60xc1xebx67x6ex4fx66xe9xafx63x38x33x9fx08x00x1fxebx18x30x8fxa1x88x4cx2axa5xacxbfx81x6cxf3x28x2bxbex27x05xc2xccxe6xc4x32x27x98xcdxf1x93x20x08x0ex1dx1dx1dxfdx85x8dx93x34xd8x7axbdx7ex28x22x7ex06x11x87xd2xe0x67x60x3ex4dx44xb9x6dx89x60x99x7bx21xe0x3dx27x90x28x8axcex46x44xdbx9dx60xd7x23xe2xe2x30x0cx33x9fx3bx6bxf6x39x14x91xabx11xf1xb9x96x67xc8x8dx44x74xb0xa5x8fxbex87xf7x94x40x98xf9x4dx00x60x3dx41x24xafxb9xb3xccxfcx34x00x30xf3x6ex5fx61x79x66xdex4ex44xb6xefx86x58xa6xd0x1bxf0x9ex11x48xa3xd1xd8x23x8ex63xebx97x95xf2x9cx3bxcbxccxd7x01x80xedx68xd2xfbxa6xa7xa7x5fxb4x7cxf9xf2xfbx7axe3x14xcdxb7x8ax9ex10x48xbdx5exdfx31x08x82x07x6cxa9x14x91x9ax52x2ax97xb9xb3x2exb6x5fx36xf5x8bxc8x5ex4axa9x5bx6cxb9xf0xf8x47x18xe8x09x81x30xf3x34x00x54x6cx9ax2ax22x17x2axa5xf2x5axbax3ex01x00x55x9bxfcx5bxd8x5cx9exf4x3bxc8xbbxb0x2ex4ax2fx10x66xbex03x00x5ex64xc9x70x6ex73x67xb5xd6x67x89x88x8bx27xf4xefx26x22xdbx9bx13x96x34xf6x1exbcxd4x02x61xe6x1bx00xe0x75x96x6dx59x17x04xc1x61xa3xa3xa3x66xefx8fx4cx0fxadxf5xb1x22xe2x62x6dxd7x87x89x68x69xa6xc9xf7x49xb0xd2x0ax24x8axa2x0fx22xe2x99x96x7dxbaxa7x35x5axd3xc5x7bxe9x89x52x99x98x98xd8xbfx52xa9x5cxedx60x4bx82xdcx5exdcx4ax54x70x49x8dx4bx29x10x66x7ex27x00xacxb6xe4xbcx89x88x87x84x61xf8x65x4bx3fx89xe1x51x14xbdx28x08x82x6bx45xc4x76x4bx82x5bx88x68xafxc4x09x78x40xc7x0cx94x4ex20x8dx46xe3xd0x38x8ex3fxdfx71x85xf3x18xe6x35x77xd6xdcx71xabx54x2axd7x8bx88xedx96x04xbfx24xa2xe7xd8xf2xe0xf1xdbx66xa0x54x02x61xe6xbfx07x80x9fx3ax68x6ax6ex8bxf7xb4xd6x57x39xd8x92xe0xa1x81x81x81xe7x0fx0fx0fxffxdax01x17xdexc5x36x18x28x8dx40x44x04xb5xd6x2ex86x9axadx24xa2xd1x3cxcex0ax66x36xd3x43xacx2fxa6xe3x38xdexafx5axadx9axc5x98xfexe8x32x03xa5x11x08x33x9bx01x09x4fxb0xe4x23xb7xc5x7bx2exb6x72x33xb5x23xe2x49x61x18x5axafxf2xb5xe4xb1x6fxe0xa5x10x08x33x7fx1bx00x5ex6exd9x95x1bxa7xa6xa6x96xd4x6axb5xccx5fx37x8dxa2xe8x34x44x34x1bxdax58x1dx22xb2x42x29x65xe6x61xf9x23x23x06x0ax2fx90x28x8ax2ex43x44xdbxd1x9axb7x37x9bxcdx25x63x63x63x66xefx8fx4cx0fxadxf5x11x22xe2xe2x4dxbexcbx88xe8xb8x4cx93xf7xc1x8axbdxd4x84x99xcdxe4x40xdbxbfx98xf7xc7x71x7cx78xb5x5axfdx66xd6xfdxd6x5axefx25x22x66x01xe2x93x2dx63xdfx44x44xb6xc3xa9x2dx53xe8x4fx78x61xbfx41xa2x28x7ax2bx22x5ex62xdbx16x11x39x4ax29xf5x59x5bx3fx49xf1xf5x7axfdxd9x41x10x98xdbxd1xbbx26xc5xcexb2xffx31x11xd9xfaxb0x4cxa1x7fxe1x85x14x48xebx2fxefx5ax07x6dx39x9dx88xacx7fxfbx27xcdxa3x56xabx6dx37x34x34x64x86x41x1fx90x14x3bxcbxfex7ex22x7axa2xa5x0fx0fxb7x60xa0x90x02x89xa2xe8x4ex44x7cx81x45x5dx06xfax3ex22x3axc7xd2x47x2ax38x33x9bx97xb6xccxcbx5bxb6xc7x0bx88xe8x2ex5bx27x1ex9fx9ex81xc2x09xa4x5exafxbfx2ax08x82x6fxa4x2fx69x33x32xb7xc5x7bxccx7cx2ex00xbcxcbx32x7fx03x5fx4cx44x66xcfx44x7fxe4xc8x40xe1x04xa2xb5x3exc7xbcxb8x64xc1x49x6ex8bxf7xa2x28x52x88x58xb7xc8x7dx0bx34x97x9fx86x0exf2xeex39x17x85x13x48x14x45x17x23xe2xdbx52x32x7dxcbx76xdbx6dxb7xe4xacxb3xcexfax7dx4ax7cx6ax98xabx9bx0ax00x90xdbx93xfexd4xc5xf7x30xb0x70x02x61x66xb3xbaxf6xa0x14x9cxffx32x8exe3x25xd5x6axf5x87x29xb0x56x10x66x7exadx88xdcx80x88x03x56x8ex00xaex21xa2x37x58xfaxf0x70x87x0cx14x51x20x66x31xa2x59x94x98xe4x78xb8x25x8ex2fx26x01xb9xb0xd5x5axbfx58x44xbex00x00xcfxb0xf4xf7x6dx22xb2x9dx66x62x99x82x87xcfx66xa0x88x02x31xfbx06x3ex26x49xabx44xe4x0axa5x94x8bxbbx46x49xc2x9axedxa3x9fx22x22x46x94x2fx49x04xdcxdaxf8x1ex22x7axb6xa5x0fx0fxefx02x03x85x12xc8x8ax15x2bx9ex3ax38x38xf8xbbxa4x75x22xe2x8ax30x0cx6dx9fxb8x27x0dx0bxccx6cxbex39x0ex49x0cx7cx34x60xd3xd4xd4xd4xe3x6axb5x9axf5x86xa2x96x79x78xf8x1cx0cx14x4ax20x8dx46x63xcfx38x8exd3x8cxacx79x1bx11x59x3fx75x4fx72x86x38x1ax6fx0ax71x1cxefx56xadx56x6fx4fx12xdbxdbx66xc7x40xa1x04xc2xccx66xefx40xb3x87x60xa2x23x8exe3x7dxabxd5xeaxd7x13x81x2cx8cx99xd9xc9x98x1ex11x39x42x29x75xadx45x2ax1exdax65x06x8ax26x90x65x00x30x99xb4x66x44xdcx21x0cxc3x0dx49x71x69xecxb5xd6x67x8axc8x07xd3x60x67x62xe2x38x1exa9x56xabx89x6bxb5x8dxebxf1xc9x18x28x9ax40xd2x3cx85xfex05x11xd9x0ex7axeex88xb5x7axbdx7ex4cx10x04x97x77x64xbcx0dx23x11xb9x40x29x75x86xadx1fx8fxefx3ex03x45x13x88x59x75x9bxf4x39x40x26x53xccxebxf5xfax6bx82x20x30x17xe5x56x5bx12x98xbbx5ex4ax29xdbx0bxfbxeex9fx19x3exc2x66x06x8ax26x10x33x7cx7ax8fx84xbdxe9xfax7exdfxadx61x11x66x5dx94xedx37xd5x1dx44xb4x4bxc2xfaxbcx79x8ex0cx14x4dx20x7fx48xf1x72x51x57x27x94x44x51xf4x58x44x34xe2xd8xdbxb2x4fx0fx10x91xedx3bxf5x96x29x78x78x52x06x0ax23x90xc9xc9xc9xedxa7xa7xa7x13xbfx2fx8ex88x07x84x61x78x73xd2xc2x3bxb5x8fxa2xc8x6cx66x73x64xa7xf6xf3xd9x35x9bxcdx9dxc6xc6xc6xfex64xebxc7xe3xb3x65xa0x30x02x31xd3x06x11xd1x0cxa2x4ex74x2cx58xb0x60x41xb7xf6x10x64xe6x0bx00xc0x7axe2xbbx88xecxa9x94xb2xdexbbx24x11x31xdexd8x09x03x45x12xc8xa2xd6x4fx99x24x85x6dx20xa2x1dx92x00x3axb5x65xe6xf7x00x80x8bxbdx42x8ex25x22xebx3bx5fx9dxe6xedxedxdcx32x50x18x81x68xadx4fx16x91x8bx92x94x27x22x3fx54x4axd9xaex83xdax2axa4xd6xfax14x11xf9x70x92x5cxe6xb1x3dx9bx88xc6x1dxf8xf1x2ex72x62xa0x30x02x61x66xf3xd7xdaxfcxd5xeexf8x30x3bxc1x86x61x78x74xc7x80x0ex0cxb5xd6x87x8bx88x8bxa7xdbx17x13xd1xc9x1dx84xf4x26x05x66xa0x30x02x89xa2xe8x12x44x7cx6bx12xaex10x91xc2x30xd4x49x30xdbxb2x9dx98x98xd8xb3x52xa9x98x3bx56x8fxb7xf4xf9x55x22xdaxdfxd2x87x87x17x80x81xc2x08x84x99xbfx92x74x0ax88x8bx35x58x13x13x13xcfxadx54x2ax66x7exd5xdex66xebx67x00xb0x7dx4exf1x2bx22x7ax56x01x7axebx53x70xc0x40x91x04xf2xbfx00xf0xfcx24x35x4dx4dx4dx55x6axb5x5axa2x81xd6x8dx46xe3x1fx45xe4x65x46x10x00x60xf6xd6xb0x1dx69x3ax33xe5x69x22x1ax4cx52x83xb7x2dx36x03x45x12xc8xc3x00x90xe8xe4x22xa2x6dxe6x5fxabxd5x06xb6xdfx7exfbx97x20xa2xb9x90xdfxb3xf5xb0xefxc5xddx6axc9xa6x4dx9bx9ex71xf6xd9x67xffxb6x5bxfexbdxdfxecx19x28x84x40x56xadx5axf5xf4x4dx9bx36xfdx26x61xf9x5bxfdx94x59xbdx7axf5xe3xa6xa6xa6x36x0bx02x11x5fxdaxfax86xb0xfdxc9xd4x51x5ax2ex7exeex75x14xc8x1bx65xcax40x21x04x92x66x92xa2x88x7cx06x11xcdx56x6cxe6xdbx61xf3x7fx88xb8x87x88xd8x0ex9cx4bxdcx00x11x39x51x29xf5xf1xc4xc0x94x00x66x3ex4cx44x5cxfex34x6cx9bx49x10x04xd2xd6xc8x91x41x1cxc7x7fx01x80x5bx07x06x06xeex18x19x19xb9xc7x91xdbx54x6ex0ax21x10x66x36xb7x6axafx48x58x81x19x0ax6dx84x91xebx05xb1x88xbcx5fx29x95xe8xf6x74xc2x3ax37x9bx37x1ax8dx27xc5x71x6cxe2x98x97xcax6cx07x44xa4x49x21x17x0cx22x5ex27x22x23x44x74x67x1ex09x14x42x20x51x14x8dx20x62x23x0fx02x2cx63x5ex4ax44xc7x5bxfax68x0bx67xe6x57x03x80x59xf6xd2xb5xebxa7xb6x49xe4x6cx20x22xefx55x4axd9x0cx14x4cx55x41x21x04xc2xccx66xc7x5axf3x73xa9x4cxc7x3ax22xb2x5dxe1xdbxb6xdex96x38x32x7bx9dxb8x6dx42x39x1ax20xe2xeex61x18xdex9ax65x0ax45x11x88xd9x60xe6x88x2cx0bxb7x8cx75x2fx11xd9xeexf9xd1x51x0ax5axebx6bxccxbbxebx1dx19xf7xbexd1xcdx03x03x03xafx1bx1ex1ex7ex30xabx52x0bx21x90x28x8axbexd7xbaxebx94x55xddx56x71xdaxddx5exb6x72x3ex03xccxccx27x01xc0x47x5dxf9xebx11x3fx99xcex2dx2ex84x40x98xf9x5ex00x28xc5x3ex18x88xb8x73x18x86x3fxcfxe2x64x73x38x29x3ex8bx74xb3x8ax71x15x11xbdx31xabx60xb9x0bx44x6bxbdx50x44xccx6dxbdxa2x1fx53x95x4ax65x9fx91x91x91xefx67x95x28x33x5fx0ax00x6fxcex2ax5ex49xe2xfcx89x88x76xcax2axd7xdcx05x12x45xd1x2ex88xf8xe3xacx0ax4ex19xe7xaax66xb3x79x4axd6x6fx04x32xb3x59x38xb9x28x65xcexbdx0axbbx8fx88x9ex94x55x71xb9x0bx64x62x62x62xffx4axa5x72x53x56x05x77x10xe7x6ex44x5cx1bxc7xf1x3ax00x58xabx94x72xb1x15x5cx07x61xb7x36x89xa2x68x1cx11xc7x52x81x7bx17x74x1bx11x65x76xbbxbbxdfx05x62xe6xe1x1ax01xacx15x91x75x46x18x44x94x78x36x70xb7xcexc5x7axbdxbex38x08x02xb3xd7xa1x3fxfexc6xc0x75x44xb4x24x2bx42x72x17x88x29x94x99xcdx45xafxedx48x9dx4ex38x33xefxbcxcfx14xc3x0fx3ax01xe5x65x63xd6x96x6dxdcxb8xf1x36x00xf0x93xdfx5bx4dx40xc4x45x61x18x9ax3dx64x32x39x8ax22x90x34x13x15xdbx11xf4xc0x4cx31x0cx0ex0exaex5dxb6x6cx99xf9xb7x52x1dx51x14xbdx03x11xcfx2bx55xd2xddx4bxf6x12x22x4axbbxfbx58xaaxacx0ax21x90x35x6bxd6x0cxadx5fxbfxfex06x00xb0x79x0bxcfx7cx1bx98x9fx4bxebx82x20x58x3bx3ax3ax9ax78x42x4ax2ax06x33x00x31xb3x59xa7xe6xf4xd5xe2x0cxd2x76x1dxe2xe6x4axa5xb2x74x64x64xc4x6cxb0x94xd9x51x08x81x98x6ax1bx8dxc6x73xe2x38x36xa3x47x5fxd6x41xf5xe6x3ax61xb3x18x9axcdxe6xdax87x1ex7ax68x6dxafxefxafxc1xccxffx0ax00x1fxe9x80x9bx5ex34x39x8fx88xcexccxa3xb0xc2x08x64x4bxf1xadxe9xe9xa3xb3x56xe9xaex35x17xd0xcdx66x73x9dx88xacx1dx1bx1bxbbx3bx0fxb2xf2x8ex19x45x91x59xfbxf5x16x44x34x6fx45xeex8ax88x99x2cx77xc9xa3x6ex11xf9x23x00x5cx19xc7xf1x95x63x63x63x5dx1bx0cxd8xaexb6xc2x09xa4x5dxc2xfex73xcfx40x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cx78x81x64xc9xb6x8fx55x3ax06xbcx40x4axd7x32x9fx70x96x0cxfcx3fx35xfbxe3x32x7fx9dx69x22x00x00x00x00x49x45x4ex44xaex42x60x82x00x00x1ex02x89x50x4ex47x0dx0ax1ax0ax00x00x00x0dx49x48x44x52x00x00x00xc8x00x00x00xc8x08x06x00x00x00xadx58xaex9ex00x00x1dxc9x49x44x41x54x78x5exedx5dx0fx94x1ex55x75xbfx77xbexddx98x6cx40x43x45xa9x85x0ax52x94xa0xd6xd6xdaxe2xbfx80xa8x41x54x08x0ax07xb1x2ax20x8ax88x5ax8cxc9x66xe7xbex5dx68x8fxabx47xb2x3bx6fx36xbbx4bx30xa8x88x88x20x62x0bx0ax9ax80x08x11xf9x27x20xadxadx5ax15x10x88xe2x89xa7x60xa5x50x21x21x66xf7xfbx6excfx5dx26x34x24xfbx67xe6xbdx37xf3xcdx7cxf3xdex39xdfxf9xf6x9cx7dxf7xbex7bx7fx6fx7exdfxbcx99x77xdfxbdx08xbex79x04x3cx02x33x22x80x1ex1bx8fx80x47x60x66x04x3cx41xfcxd5xe1x11x98x05x01x4fx10x7fx79x78x04x3cx41xfcx35xe0x11x30x43xc0xdfx41xccx70xf3x52x35x41xc0x13xa4x26x13xedxddx34x43xc0x13xc4x0cx37x2fx55x13x04x3cx41x6ax32xd1xdex4dx33x04x3cx41xccx70xf3x52x35x41xc0x13xa4x26x13xedxddx34x43xc0x13xc4x0cx37x2fx55x13x04x3cx41x6ax32xd1xdex4dx33x04x3cx41xccx70xf3x52x35x41xc0x13xa4x26x13xedxddx34x43xc0x13xc4x0cx37x2fx55x13x04x3cx41x6ax32xd1xdex4dx33x04x3cx41xccx70xf3x52x35x41xc0x13xa4x26x13xedxddx34x43xc0x13xc4x0cx37x2fx55x13x04x3cx41x6ax32xd1xdex4dx33x04x3cx41xccx70xf3x52x35x41xc0x13xa4x26x13xedxddx34x43xc0x13xc4x0cx37x23xa9xe1xe1xe1x17x32xf3x81x5dx5dx5dx7bx31xf3xd4x07x00xa6x3ex88xb8xe3x6fxd1xfdx28x33x3fx2axdfxf2x41xc4xa9xcfxe4xe4xa4x7cx6fxeaxefxefxffx8dx91x01x5ex28x33x02x9ex20x99x21x9bx5dx60x74x74x74xdfx66xb3x79x68xabxd5x3ax10x00x0ex44xc4x03x85x14xf2x0dx00x5dx8ex86x9bx64xe6x4dx42x16xf9x06x80x4dx41x10x6cx6ax34x1ax77xf5xf6xf6xfexd6xd1x18x5ex0dx00x78x82x58x5ex06x71x1cx2fx44xc4x25xadx56xebx4dx00xf0x56x00x78x85xa5x4ax5bxf1x9fx02xc0x75x41x10xdcxc8xccxb7x85x61xb8xc5x56x61x9dxe5x3dx41x0cx66x3fx8axa2x43x11xf1x70x00x58x02x00x6fx01x80x05x06x6ax8ax10x79x12x00xaex07x80xdbx98xf9x16xa5xd4x5dx45x0cxdax49x63x78x82xa4x9cxcdx28x8ax0ex46xc4x65xf2x61x66x21x47xe5x1ax22xdexc2xccxebxe5xa3x94xbaxb7x72x0exb4xc1x60x4fx90x59x40x1fx1fx1fxdfx67xfbxf6xedxcbx00xe0x58x00x90xefx4ex6axebx01xe0xdbxf3xe6xcdx5bxbfx62xc5x8ax87x3bxc9x31x97xbex78x82x4cx83xa6xd6xfaxf5x00x70x2ax22x9exc0xccx8bx5cx02x5ex36x5dx88xf8x18x33x5fx09x00x17x13xd1x0fxcax66x5fxbbxedxf1x04xd9x69x06xb4xd6x6fx17x62x00xc0xbbxdax3dx31x6dx1axffx8ax84x28xd7xb6x69xfcxd2x0dxebx09x02x00x5axebxf7x24xc4x90x07x6exdfx9ex7axb0x97x3bxcaxe5x75x07xa3xd6x04xd1x5ax7fx10x00x4ex07x80xd7xd4xfdx42x98xc1xffx3bx01xe0x8bx44x74x51x5dxf1xa9x25x41xe4x19x03x11x43x66x7ex47x5dx27x3ex8bxdfx88xf8x2dx66x8exebxf8x8cx52x2bx82x8cx8cx8cxecxddx6axb5x42x00xa0x2cx17x88xefxfbx34x02x3ax08x82xb8xafxafxefxf7x75xc1xa4x36x04x49x96x53x42x8cx83xebx32xb9x39xf9x29xfbx27xbax2excbxaex8ex27x48xb2xc1x37x04x00xc7xe5x74xc1xd4x55xedx55xccx3cxd0xe9x1bx8ex1dx4dx90x38x8ex4fx62x66x21xc7x7ex25xbcx8ax27x00x60x0bx22x6ex61xe6xadxf2x77xf2x11x53x17xcax07x11x7bx98x79xeax6fx00xe8x2exa1x0fx9bx11x71x20x0cxc3xafx96xd0x36x27x26x75x24x41x46x47x47x17x4cx4ex4ex0ax31x3exe1x04x25x3bx25x0fx32xf3x3dx00x70x37x22xdex2dxdfx41x10xdcx9dx75x1dx9fx3cx3fx1dx02x00x87x30xf3xd4x37x22x2ex06x80xfdxedxccx73x22x7dx6ex57x57xd7x40x6fx6fxafxc4x7ex75x54xebx38x82x0cx0fx0fx1fxdex68x34x86x98xf9x75x6dx9axa9x1fx23xe2x4dxadx56xebxe6x79xf3xe6xddxb4x72xe5xcaxc7xf2xb4x63x6cx6cx6cxd1xf6xedxdbx8fx08x82xe0x0dxccx7cx04x00xfcx75x9exe3xcdxa4x1bx11x6fx6fx36x9bx03xfdxfdxfdxb7xb4x63xfcxbcxc6xecx28x82xc4x71xdcx9bx2cxa9xe6xe5x05xd8x34x7axffx00x00x1bx98x79x63xabxd5xbax75x60x60xe0xfex02xc7xdex6dxa8xa1xa1xa1x83x82x20x38x0cx11x97x02xc0x31x00xf0xecx02xedxd9x9ex2cxb9x46x0bx1cx33xd7xa1x3ax86x20x5axebxb5x00xf0xf1x5cxd1xfax7fxe5xf2xfcx70x0dx22x0ax31xaex21xa2x87x0ax1ax37xd3x30x5axebx3fx45xc4xa3x99x59x88x72x74x81xcfx31xe7x11xd1xf2x4cxc6x96xb4x73x47x10x44x6bxfdx2fx05xc5x4fxddx01x00x97x0bx31xc2x30xfcx55x49xe7x74x5axb3xe2x38x7ex51x42x14x09xabx79x6dx01xb6x5fx41x44x27x16x30x4exaex43x54x9ex20x5ax6bx59xf3x1ex96x2bx4ax00x1bx00xe0x12x22x92x60xbexcax37xadxb5x04x63x9ex92x2cxc1xf2xf4xe7x56x22xaaxe4xd9x99x1dxa0x54x9ax20x51x14xddx87x88x07xe5x35xc3x88xf8x15x21x46x18x86x37xe6x35x46x3bxf5xc6x71x2cxc7x84x4fx61xe6xf7xe7x65x07x33xdfxafx94x7ax71x5exfaxf3xd6x5bx59x82x44x51xf4x38x22xeex91x13x40xd7x06x41x30xd4xd7xd7x77x5bx4exfax4bxa5x76x64x64x44xcexd4x0fx00x80x84xfbx3bx6fxccxfcx84x52x6ax4fxe7x8ax0bx50x58x49x82x68xadx25x16xe8xb9x39xe0xb3x19x00x86x89x68x5dx0exbax4bxafx52x6bxfdx0fx00xd0x9fxd3xc6xeax23x44xb4x77xe9x41xd8xc5xc0xcax11x44x6bx2dx0fxcax79x84xa7x5fxd0xddxddx3dxb4x72xe5xcax5fx57x6dx12x5dxdax3bx36x36x76xc0xc4xc4x84xdcx4dx3execx52x6fxa2xebx4ex22x2axe2x05x81x33xd3x2bx45x90x28x8ax2ex41xc4x93x9dx79xffx94xa2x07x24xf4x3dx0cxc3xabx1cxebxadxb4xbax38x8ex8fx93x10x77x00xf8x0bx97x8ex30xf3xa5x4ax29x79x41x50x89x56x19x82x44x51xb4x06x11x7bx1dxa3x2axa4x08x89xe8x01xc7x7ax3bx42x9dxd6x5axc8x21x24x71x1axe8xc9xccxa3x4axa9x55x55x00xa9x12x04xd1x5ax9fx03x00x67xb9x04x94x99x3fxa5x94x1ax74xa9xb3x53x75xc5x71xfcx49x66x76x8dxd5x6ax22x3axbbxecx98x95x9ex20x49xf8xc8x1ax87x40xfax25x95x01x98x79x2cxb9x10x71x55x18x86xa5x0ex4bx29x35x41x24xf0x30x08x82x1bx00xc0x49x6cx15x22xfexa8xd5x6ax9dxacx94x92xa8x5axdfx32x22x10x45xd1x21x41x10x5cxcaxccxafxcax28x3ax53xf7xedxadx56xebxc8x32x07x38x96x96x20x12xb2xdex6cx36x37xbax8axcax95x3cxb5x4fx3exf9xe4xdbx06x07x07x9fx70x34xb9xb5x54x33x38x38xb8xc7x82x05x0bxbex23xf9x88x5dx00x20x51xc0x8dx46x63x69x59x43xe5x4bx4bx10xadxf5xb8xc3xf3x1cxd7x13xd1x51x2ex26xd4xebx78x0ax01xadxf5x77x93xbcxc4x2ex20x39x97x88x56xb8x50xe4x5ax47x29x09x92x9cx04xbcxd4x85xb3xccxfcx79xa5xd4x47x5dxe8xf2x3ax9ex89x40x14x45x9fx43xc4x8fxb8xc0x45x5exdfx97xf1x64x62xe9x08x92x9cx21xdfxe8x68x37x57x76xc5x65xd3xcbxb7x9cx10xd0x5axcbxc9x4dxd9x7dxb7x6dx9bx99x79x69xd9xcexb8x97x8ex20x5axebx6fxbax78xefx8ex88xe7x87x61x28xa1x13xbexe5x8cx40x1cxc7xebx98xf9x63x0ex86xb9x8ax88x8ex77xa0xc7x99x8ax52x11x24x49xcdxf3x25x07xdex5dx46x44x27x39xd0xe3x55xa4x44x40x6bx2dx89x1bxdex97xb2xfbx6cxddx4ex2bx53x4axa1xd2x10x24x49x4ax20xd1xb3xb6x79xabx36xcex9fx3fxffx98xe5xcbx97xffxd1xc1x64x79x15x29x11x58xbbx76xedxb3xb6x6dxdbx26xe7x66xe4xa8xafx4dxbbx37x08x82x25x59x93x5axd8x0cx38x9bx6cx69x08xa2xb5x8ex1cx64x3cx94x90x91xb7x11xd1x7dx79x01xe6xf5xcex8cx80xd6x5axcex7dx7cxc7x41xfcx96x24xa6x53x65xc0xbax14x04x49xeax71x58x9fxbdx40xc4xe3x7dxd0x61x7bx2fxabx64xc7x5dx9ex23x6dxdbx92x32xe4x02x2ex05x41xe2x38xbexdax36

标签: Python 编程
相关文章: