diff --git a/dialogs/posttelemacpropertiesdialog.py b/dialogs/posttelemacpropertiesdialog.py index 393269a..4dda97d 100644 --- a/dialogs/posttelemacpropertiesdialog.py +++ b/dialogs/posttelemacpropertiesdialog.py @@ -227,7 +227,7 @@ def __init__(self, layer1, parent=None): #********************************************************************************* def update(self): """ - update dialog when selafin layer changed + update dialog when selafin layer changes """ if self.layer.hydraufilepath is not None: paramtemp = self.layer.param_displayed #param_gachete deleted with clear - so save it @@ -282,6 +282,9 @@ def update(self): #********************************************************************************* def errorMessage(self,str): + """ + Show message str in main textbrowser + """ self.textBrowser_main.setTextColor(QColor("red")) self.textBrowser_main.setFontWeight(QFont.Bold) self.textBrowser_main.append(ctime() + ' - '+ str) @@ -290,6 +293,9 @@ def errorMessage(self,str): self.textBrowser_main.verticalScrollBar().setValue(self.textBrowser_main.verticalScrollBar().maximum()) def normalMessage(self,str): + """ + Show message error str in main textbrowser + """ self.textBrowser_main.append(ctime() + ' - '+ str) self.textBrowser_main.setTextColor(QColor("black")) self.textBrowser_main.setFontWeight(QFont.Normal) @@ -300,6 +306,9 @@ def normalMessage(self,str): #********************************************************************************* def loadSelafin(self): + """ + Called when clicking on load selafin button + """ str1 = self.tr("Result file chooser") str2 = self.tr("Telemac files") str3 = self.tr("All files") @@ -316,6 +325,9 @@ def loadSelafin(self): def set_layercrs(self): + """ + Called when clicking on selafin'crs button + """ source = self.sender() self.crsselector.exec_() crs = self.crsselector.selectedAuthId() @@ -336,7 +348,7 @@ def set_layercrs(self): #Display tools - time *********************************************** def change_timetxt(self,intitmetireation): - """Associated with time modification""" + """Associated with time modification buttons""" self.layer.changeTime(intitmetireation) time2 = time.strftime("%j:%H:%M:%S", time.gmtime(self.layer.hydrauparser.getTimes()[intitmetireation])) @@ -345,12 +357,12 @@ def change_timetxt(self,intitmetireation): self.tr("time (seconds)") + " : " + str(self.layer.hydrauparser.getTimes()[intitmetireation])) def sliderReleased(self): - """Associated with slider behaviour""" + """Associated with time slider behaviour""" self.layer.draw=True self.layer.triggerRepaint() def sliderPressed(self): - """Associated with slider behaviour""" + """Associated with time slider behaviour""" self.layer.draw=False #********************************************************************************* @@ -376,6 +388,7 @@ def change_param(self,int1=None): def open_def_variables(self, lst_param): """ Create or edit virtual parameter, based on raw parameter of selafin file + appears when clicking on new virtual parameter """ source = self.sender() if source == self.pushButton_param_add: @@ -412,6 +425,7 @@ def open_def_variables(self, lst_param): def delete_def_variables(self): """ Delete virtual parameter + When clicking on delete virtual parameter """ index = self.getTreeWidgetSelectedIndex(self.treeWidget_parameters)[1] if self.layer.parametres[index][2]: @@ -604,7 +618,7 @@ def change_cmchoosergenericlvl_vel(self): def enablecheckbox(self,int1): """ - Enable checkboxes for activating buttons when atoher buttons are activated + Enable checkboxes for activating buttons when another buttons are activated """ source = self.sender() if source == self.checkBox_contourcrs: @@ -657,7 +671,7 @@ def populatecombobox_time(self): def populatecombobox_param(self): """ - Populate parameters combobox on dialog update + Populate parameters comboboxes on dialog update """ self.comboBox_parametreschooser.clear() for i in range(len(self.layer.parametres)): @@ -761,8 +775,6 @@ def mapToolChooser(self,int=None): itemname = self.treewidgettoolsindextab[indextabtemp.index(position)][2] else: itemname = None - - if (len(self.treeWidget_utils.selectedItems())>0 and itemname == 'Values' @@ -862,16 +874,17 @@ def initCompare(self): str1 = self.tr("Selafin file chooser") str2 = self.tr("Telemac files") str3 = self.tr("All files") - self.reset_dialog() fname = self.qfiledlg.getOpenFileName(None,str1,self.loaddirectory, str2 + " (*.res *.geo *.init *.slf);;" + str3 + " (*)") #Things - self.lineEdit_5.setText(fname) - hydrauparser = PostTelemacSelafinParser() - hydrauparser.loadHydrauFile(fname) - self.writeSelafinCaracteristics(self.textEdit_3,hydrauparser) - #Launch thread - self.checkBox_6.setEnabled(False) - self.postutils.compareselafin() + if fname: + self.reset_dialog() + self.lineEdit_5.setText(fname) + hydrauparser = PostTelemacSelafinParser() + hydrauparser.loadHydrauFile(fname) + self.writeSelafinCaracteristics(self.textEdit_3,hydrauparser) + #Launch thread + self.checkBox_6.setEnabled(False) + self.postutils.compareselafin() def reset_dialog(self): #self.textEdit_2.clear() @@ -955,7 +968,8 @@ def eventFilter(self,target,event): def getTreeWidgetSelectedIndex(self,widget): - + """ + """ getSelected = widget.selectedItems() if getSelected: baseNode = getSelected[0] diff --git a/icons/tools/Files_Copy.png b/icons/tools/Files_Copy.png new file mode 100644 index 0000000..8fb9fea Binary files /dev/null and b/icons/tools/Files_Copy.png differ diff --git a/icons/tools/Information_48x48.png b/icons/tools/Information_48x48.png new file mode 100644 index 0000000..e99ab22 Binary files /dev/null and b/icons/tools/Information_48x48.png differ diff --git a/icons/tools/Line_Graph_48x48.png b/icons/tools/Line_Graph_48x48.png new file mode 100644 index 0000000..5b4ec3d Binary files /dev/null and b/icons/tools/Line_Graph_48x48.png differ diff --git a/icons/tools/Line_Graph_48x48_flow.png b/icons/tools/Line_Graph_48x48_flow.png new file mode 100644 index 0000000..27be050 Binary files /dev/null and b/icons/tools/Line_Graph_48x48_flow.png differ diff --git a/icons/tools/Line_Graph_48x48_spatial.png b/icons/tools/Line_Graph_48x48_spatial.png new file mode 100644 index 0000000..ed979d3 Binary files /dev/null and b/icons/tools/Line_Graph_48x48_spatial.png differ diff --git a/icons/tools/Line_Graph_48x48_time.png b/icons/tools/Line_Graph_48x48_time.png new file mode 100644 index 0000000..96656c2 Binary files /dev/null and b/icons/tools/Line_Graph_48x48_time.png differ diff --git a/icons/tools/Video_48x48.png b/icons/tools/Video_48x48.png new file mode 100644 index 0000000..61db6f5 Binary files /dev/null and b/icons/tools/Video_48x48.png differ diff --git a/icons/tools/Wizard_48x48.png b/icons/tools/Wizard_48x48.png new file mode 100644 index 0000000..6ee0a02 Binary files /dev/null and b/icons/tools/Wizard_48x48.png differ diff --git a/icons/tools/layer_add.png b/icons/tools/layer_add.png new file mode 100644 index 0000000..933f1f5 Binary files /dev/null and b/icons/tools/layer_add.png differ diff --git a/icons/tools/layer_add_mesh.bmp b/icons/tools/layer_add_mesh.bmp new file mode 100644 index 0000000..1ddc73a Binary files /dev/null and b/icons/tools/layer_add_mesh.bmp differ diff --git a/icons/tools/layer_add_points.bmp b/icons/tools/layer_add_points.bmp new file mode 100644 index 0000000..fc62e0f Binary files /dev/null and b/icons/tools/layer_add_points.bmp differ diff --git a/icons/tools/layer_shaded_relief_add.png b/icons/tools/layer_shaded_relief_add.png new file mode 100644 index 0000000..46f4e2c Binary files /dev/null and b/icons/tools/layer_shaded_relief_add.png differ diff --git a/icons/tools/map_add.png b/icons/tools/map_add.png new file mode 100644 index 0000000..a2135a6 Binary files /dev/null and b/icons/tools/map_add.png differ diff --git a/libs/post_telemac_pluginlayer.py b/libs/post_telemac_pluginlayer.py index c3529e4..4ec9481 100644 --- a/libs/post_telemac_pluginlayer.py +++ b/libs/post_telemac_pluginlayer.py @@ -30,9 +30,9 @@ from numpy import * import numpy as np #import scipy -from scipy.spatial import cKDTree +#from scipy.spatial import cKDTree #import matplotlib -from matplotlib import tri +#from matplotlib import tri from matplotlib import colors #import PyQT from PyQt4.QtCore import * @@ -105,9 +105,9 @@ def __init__(self,nom1 = None): self.canvas = iface.mapCanvas() self.propertiesdialog = PostTelemacPropertiesDialog(self) #matplotlib things and others - self.triangulation = None #matplotlib triangulation of the mesh + #self.triangulation = None #matplotlib triangulation of the mesh self.triinterp = None #triinterp for plotting tools - self.trifind = None + #self.trifind = None #viewer parameters self.selafinqimage = Selafin2QImage(self,self.instancecount) self.affichagevitesse = False @@ -155,7 +155,7 @@ def draw(self, rendererContext): """ implementation of method from QgsPluginLayer to draw on he mapcanvas return True if successful - image 2 is used to display mesh (make the render faster) + image 2 is used to display only mesh (make the render faster) """ if self.hydrauparser !=None and self.hydrauparser.hydraufile !=None : bool1,image1,image2 = self.selafinqimage.getimage(self,rendererContext) @@ -243,7 +243,7 @@ def initSelafinParameters(self): Called load_selafin by when changing selafin file Set selafin variables """ - self.initTriangul() + #self.initTriangul() self.parametres = [] #load parametres in self.parametres for i,name in enumerate(self.hydrauparser.getVarnames()): @@ -275,12 +275,9 @@ def clearParameters(self): self.lvl_contour = None self.time_displayed = None self.alpha_displayed = 100.0 - + + """ def initTriangul(self,ct=None): - """ - Called set_selafin by when changing selafin file - set matplotlib's triangulation variables - """ if ct: pass if self.hydrauparser.hydraufile: @@ -293,7 +290,7 @@ def initTriangul(self,ct=None): print 'bug with trifinder ' + str(e) print 'regenerate selafin file please' #TODO : disable utils dependant trifind (valeurs,?) - + """ #**************************************************************************************************** @@ -309,7 +306,7 @@ def updateSelafinValues(self, onlyparamtimeunchanged = -1 ): """ self.updatevalue.emit(onlyparamtimeunchanged) - updatevalue = pyqtSignal(int,bool) + updatevalue = pyqtSignal(int) def updateSelafinValues1(self, onlyparamtimeunchanged = -1): """ @@ -579,7 +576,7 @@ def identify(self,qgspointfromcanvas,multiparam = False): return (True,d) def initTriinterpolator(self): - self.triinterp = [tri.LinearTriInterpolator(self.triangulation, self.values[i]) for i in range(len(self.parametres))] + self.triinterp = [tri.LinearTriInterpolator(self.hydrauparser.triangulation, self.values[i]) for i in range(len(self.parametres))] #**************************************************************************************************** #************Method for saving/loading project with selafinlayer file*********************************** diff --git a/libs/posttelemac_util.py b/libs/posttelemac_util.py index c56c306..0ca05ce 100644 --- a/libs/posttelemac_util.py +++ b/libs/posttelemac_util.py @@ -65,6 +65,7 @@ def __init__(self,layer): self.graphflowdatac = [] self.skdtree = None #Object that enables nearest point query self.compareprocess = None + self.initclassgraphtemp = InitGraphTemp() #self.xformutil = None #for vector crs transformation @@ -316,7 +317,8 @@ def launchThread(self,geom): if self.graphtodo ==0: if not self.selafinlayer.propertiesdialog.checkBox.isChecked() and self.rubberband : self.rubberband.reset(QGis.Point) - self.initclass=InitGraphTemp() + #self.initclass=InitGraphTemp() + self.initclass = self.initclassgraphtemp elif self.graphtodo ==1: self.initclass=InitComputeFlow() self.initclass.status.connect(self.selafinlayer.propertiesdialog.textBrowser_2.append) @@ -325,7 +327,7 @@ def launchThread(self,geom): self.initclass.finished1.connect(self.workerFinished) if self.graphtodo ==0: - self.initclass.start(geom,self.selafinlayer) + self.initclass.start(self.selafinlayer, geom) self.graphtempactive = True self.selafinlayer.propertiesdialog.pushButton_limni.setEnabled(False) elif self.graphtodo ==1: @@ -469,6 +471,7 @@ def compare1(self,int1): self.selafinlayer.updatevalue.connect(self.compareprocess.updateSelafinValue) except Exception, e: pass + self.initclassgraphtemp.compare = True self.selafinlayer.triinterp = None #desactive non matching parameters for i in range(len(self.selafinlayer.parametres)): @@ -485,6 +488,7 @@ def compare1(self,int1): self.selafinlayer.updatevalue.connect(self.selafinlayer.updateSelafinValues1) except Exception, e: pass + self.initclassgraphtemp.compare = False self.selafinlayer.triinterp = None self.selafinlayer.forcerefresh = True self.reinitCorrespondingParameters() @@ -527,7 +531,8 @@ def calculMaxRes(self): def chargerSelafin(self, path): if path and self.selafinlayer.propertiesdialog.checkBox_8.isChecked(): slf = QgsPluginLayerRegistry.instance().pluginLayerType('selafin_viewer').createLayer() - slf.setCrs(iface.mapCanvas().mapSettings().destinationCrs()) + #slf.setRealCrs(iface.mapCanvas().mapSettings().destinationCrs()) + slf.setRealCrs(self.selafinlayer.crs()) slf.load_selafin(path) QgsMapLayerRegistry.instance().addMapLayer(slf) @@ -732,6 +737,8 @@ def tr(self, message): """Used for translation""" return QCoreApplication.translate('PostTelemacUtils', message, None, QApplication.UnicodeUTF8) + "" + def getNearest(self,pointfromcanvas): """ Get the nearest point in selafin mesh @@ -746,3 +753,64 @@ def getNearest(self,pointfromcanvas): self.skdtree = cKDTree(self.arraymesh,leafsize=100) numfinal = self.skdtree.query(point1,k=1)[1][0] return numfinal + + + +class ThreadLaucnher(QtCore.QObject): + + def __init__(self): + QtCore.QObject.__init__(self) + self.thread = None + self.worker = None + self.processtype = 0 + #self.selafin = selafin + #self.graphtemp = graphTemp(selafin) + self.compare = False + self.method = None + + def start(self, selafin, method, + qgspoints ): + + #Launch worker + self.thread = QtCore.QThread() + self.worker = graphTemp(selafin, qgspoints,self.compare) + #self.graphtemp.points = qgspoints + #self.worker = self.graphtemp + + self.worker.moveToThread(self.thread) + self.thread.started.connect(self.worker.createGraphTemp) + self.worker.status.connect(self.writeOutput) + self.worker.error.connect(self.raiseError) + self.worker.emitpoint.connect(self.emitPoint) + self.worker.finished.connect(self.workerFinished) + self.worker.finished.connect(self.worker.deleteLater) + self.thread.finished.connect(self.thread.deleteLater) + self.worker.finished.connect(self.thread.quit) + self.thread.start() + + + + def raiseError(self,str): + if self.processtype ==0: + self.status.emit(str) + elif self.processtype in [1,2,3]: + raise GeoAlgorithmExecutionException(str) + elif self.processtype == 4: + print str + sys.exit(0) + + def writeOutput(self,str1): + self.status.emit(str(str1)) + + def workerFinished(self,list1,list2): + self.finished1.emit(list1,list2) + + def emitPoint(self,x,y): + self.emitpoint.emit(x,y) + + + + status = QtCore.pyqtSignal(str) + error = QtCore.pyqtSignal(str) + finished1 = QtCore.pyqtSignal(list,list) + emitpoint = QtCore.pyqtSignal(float,float) diff --git a/libs/posttelemac_util_flow.py b/libs/posttelemac_util_flow.py index f68dcec..6bb4aa7 100644 --- a/libs/posttelemac_util_flow.py +++ b/libs/posttelemac_util_flow.py @@ -65,7 +65,7 @@ def computeFlowMain(self): if METHOD == 0 : if not self.selafinlayer.networkxgraph: G=nx.Graph() - G.add_edges_from([(edge[0],edge[1]) for edge in self.selafinlayer.triangulation.edges]) + G.add_edges_from([(edge[0],edge[1]) for edge in self.selafinlayer.hydrauparser.triangulation.edges]) self.selafinlayer.networkxgraph = G else: G = self.selafinlayer.networkxgraph @@ -81,10 +81,10 @@ def computeFlowMain(self): flow = None for points in range(len(linetemp)-1): try: - triangle = self.selafinlayer.trifind.__call__(linetemp[points][0],linetemp[points][1]) + triangle = self.selafinlayer.hydrauparser.trifind.__call__(linetemp[points][0],linetemp[points][1]) if triangle != -1: enumpointdebut = self.getNearestPointEdge(linetemp[points][0],linetemp[points][1],triangle) - triangle = self.selafinlayer.trifind.__call__(linetemp[points + 1][0],linetemp[points + 1][1]) + triangle = self.selafinlayer.hydrauparser.trifind.__call__(linetemp[points + 1][0],linetemp[points + 1][1]) if triangle != -1: enumpointfin = self.getNearestPointEdge(linetemp[points + 1][0],linetemp[points + 1][1],triangle) diff --git a/libs/posttelemac_util_graphtemp.py b/libs/posttelemac_util_graphtemp.py index e36f61f..3ca22f9 100644 --- a/libs/posttelemac_util_graphtemp.py +++ b/libs/posttelemac_util_graphtemp.py @@ -29,45 +29,50 @@ class graphTemp(QtCore.QObject): - def __init__(self, - qgspoints, - selafin): + def __init__(self, selafin, qgspoints, compare): QtCore.QObject.__init__(self) self.selafinlayer = selafin self.points = qgspoints - self.skdtree = None + #self.skdtree = None + self.compare = compare def createGraphTemp(self): - list1=[] - list2=[] - for i in range(len(self.points)): - abscisse = [] - ordonnees=[] - #triangle = self.selafinlayer.trifind.__call__(self.points[i][0],self.points[i][1]) - #if triangle != -1: - enumpoint = self.getNearest(self.points[i]) - if enumpoint: - x,y = self.selafinlayer.hydrauparser.getXYFromNumPoint([enumpoint])[0] - - self.emitpoint.emit(x,y) - #abscisse = self.selafinlayer.slf.tags["times"].tolist() - abscisse = self.selafinlayer.hydrauparser.getTimes().tolist() - - param=self.selafinlayer.propertiesdialog.comboBox_parametreschooser.currentIndex() - #param = self.selafinlayer.propertiesdialog.getTreeWidgetSelectedIndex(self.selafinlayer.propertiesdialog.treeWidget_parameters)[1] - if self.selafinlayer.parametres[param][2]: - dico = self.getDico(self.selafinlayer.parametres[param][2], self.selafinlayer.parametres, self.selafinlayer.values,enumpoint) - tempordonees = eval(self.selafinlayer.parametres[param][2],{}, dico) - else: - #tempordonees = self.selafinlayer.slf.getSERIES([enumpoint + 1],[param],False) #points in getseries bein with 1 - tempordonees = self.selafinlayer.hydrauparser.getTimeSerie([enumpoint + 1],[param]) #points in getseries bein with 1 - ordonnees = tempordonees[0][0].tolist() - list1.append(abscisse) - list2.append(ordonnees) - self.finished.emit(list1,list2) - + try: + list1=[] + list2=[] + for i in range(len(self.points)): + abscisse = [] + ordonnees=[] + #triangle = self.selafinlayer.trifind.__call__(self.points[i][0],self.points[i][1]) + #if triangle != -1: + #enumpoint = self.getNearest(self.points[i]) + enumpoint = self.selafinlayer.hydrauparser.getNearestPoint(self.points[i][0],self.points[i][1] ) + if enumpoint: + x,y = self.selafinlayer.hydrauparser.getXYFromNumPoint([enumpoint])[0] + + self.emitpoint.emit(x,y) + #abscisse = self.selafinlayer.slf.tags["times"].tolist() + abscisse = self.selafinlayer.hydrauparser.getTimes().tolist() + + param=self.selafinlayer.propertiesdialog.comboBox_parametreschooser.currentIndex() + #param = self.selafinlayer.propertiesdialog.getTreeWidgetSelectedIndex(self.selafinlayer.propertiesdialog.treeWidget_parameters)[1] + if self.selafinlayer.parametres[param][2]: + dico = self.getDico(self.selafinlayer.parametres[param][2], self.selafinlayer.parametres, self.selafinlayer.values,enumpoint) + tempordonees = eval(self.selafinlayer.parametres[param][2],{}, dico) + else: + #tempordonees = self.selafinlayer.slf.getSERIES([enumpoint + 1],[param],False) #points in getseries begin with 1 + #tempordonees = self.selafinlayer.hydrauparser.getTimeSerie([enumpoint + 1],[param]) #points in getseries begin with 1 + tempordonees = self.getGraphTempSeries([enumpoint + 1],[param]) #points in getseries bein with 1 + ordonnees = tempordonees[0][0].tolist() + list1.append(abscisse) + list2.append(ordonnees) + self.finished.emit(list1,list2) + except Exception, e: + self.status.emit(str(e)) + self.finished.emit([],[]) + def getDico(self,expr, parametres, values,enumpoint): dico = {} @@ -84,25 +89,28 @@ def getDico(self,expr, parametres, values,enumpoint): num_var = 0 while num_var < nb_var: if not parametres[i][2]: - dico[a.format(i)] = self.selafinlayer.hydrauparser.getTimeSerie([enumpoint + 1],[i]) + #dico[a.format(i)] = self.selafinlayer.hydrauparser.getTimeSerie([enumpoint + 1],[i]) + dico[a.format(i)] = self.getGraphTempSeries([enumpoint + 1],[i]) num_var += 1 i += 1 except Exception, e: print str(e) return dico + def getGraphTempSeries(self,num,param): + if self.compare : + x,y = self.selafinlayer.hydrauparser.getXYFromNumPoint(num)[0] + triangles,numpointsfinal,pointsfinal,coef = self.selafinlayer.propertiesdialog.postutils.compareprocess.hydrauparsercompared.getInterpFactorInTriangleFromPoint([x],[y]) + layer2serie = 0 + for i, numpoint in enumerate(numpointsfinal[0]): + layer2serie += float(coef[0][i]) * self.selafinlayer.propertiesdialog.postutils.compareprocess.hydrauparsercompared.getTimeSerie([numpoint],[self.selafinlayer.parametres[param[0]][3]]) + layer1serie = self.selafinlayer.hydrauparser.getTimeSerie(num,param) + return layer2serie - layer1serie + else: + return self.selafinlayer.hydrauparser.getTimeSerie(num,param) - def getNearest(self,point): - point1 = [[point[0],point[1]]] - if not self.skdtree : - meshx, meshy = self.selafinlayer.hydrauparser.getMesh() - self.arraymesh = np.array([[meshx[i], meshy[i] ] for i in range(self.selafinlayer.hydrauparser.pointcount) ]) - #self.arraymesh = np.array([[self.selafinlayer.slf.MESHX[i],self.selafinlayer.slf.MESHY[i]] for i in range(len(self.selafinlayer.slf.MESHX)) ]) - self.skdtree = cKDTree(self.arraymesh,leafsize=100) - numfinal = self.skdtree.query(point1,k=1)[1][0] - return numfinal - + progress = QtCore.pyqtSignal(int) @@ -123,16 +131,22 @@ class InitGraphTemp(QtCore.QObject): def __init__(self): QtCore.QObject.__init__(self) - self.thread = QtCore.QThread() + self.thread = None self.worker = None self.processtype = 0 + #self.selafin = selafin + #self.graphtemp = graphTemp(selafin) + self.compare = False - def start(self, - qgspoints, - selafin): + def start(self, selafin, + qgspoints ): #Launch worker - self.worker = graphTemp(qgspoints,selafin) + self.thread = QtCore.QThread() + self.worker = graphTemp(selafin, qgspoints,self.compare) + #self.graphtemp.points = qgspoints + #self.worker = self.graphtemp + self.worker.moveToThread(self.thread) self.thread.started.connect(self.worker.createGraphTemp) self.worker.status.connect(self.writeOutput) diff --git a/posttelemacparsers/posttelemac_selafin_parser.py b/posttelemacparsers/posttelemac_selafin_parser.py index 8f61607..29d2b63 100644 --- a/posttelemacparsers/posttelemac_selafin_parser.py +++ b/posttelemacparsers/posttelemac_selafin_parser.py @@ -20,8 +20,10 @@ ***************************************************************************/ """ - - +import matplotlib +from matplotlib import tri +import numpy as np +from scipy.spatial import cKDTree from ..libs_telemac.parsers.parserSELAFIN import SELAFIN class PostTelemacSelafinParser(): @@ -33,6 +35,11 @@ def __init__(self,layer = None): self.pointcount = None self.meshcount = None self.itertimecount = None + self.skdtree = None + self.triangulation = None + self.trifind = None + + #Real Parser part to be modified def loadHydrauFile(self,path): self.path = path @@ -40,6 +47,9 @@ def loadHydrauFile(self,path): self.pointcount = len(self.hydraufile.MESHX) self.meshcount = len(self.hydraufile.IKLE3) self.itertimecount = len(self.hydraufile.tags["times"]) - 1 + #ckdtree + self.initCkdTree() + self.initMplTriangulation() def getValues(self,time): @@ -56,9 +66,6 @@ def getTimeSerie(self,arraynumpoint,arrayparam): def getMesh(self): return (self.hydraufile.MESHX, self.hydraufile.MESHY) - def getXYFromNumPoint(self,arraynumpoint): - return [(self.hydraufile.MESHX[i], self.hydraufile.MESHY[i]) for i in arraynumpoint] - def getVarnames(self): return self.hydraufile.VARNAMES @@ -69,7 +76,75 @@ def getIkle(self): def getTimes(self): return self.hydraufile.tags["times"] - + #Others method - don't touch it + + def getXYFromNumPoint(self,arraynumpoint): + meshx,meshy = self.getMesh() + #return [(self.hydraufile.MESHX[i], self.hydraufile.MESHY[i]) for i in arraynumpoint] + return [(meshx[i], meshy[i]) for i in arraynumpoint] + + def initCkdTree(self): + meshx, meshy = self.getMesh() + arraymesh = np.array([[meshx[i], meshy[i] ] for i in range(self.pointcount) ]) + self.skdtree = cKDTree(arraymesh,leafsize=100) + def initMplTriangulation(self): + meshx, meshy = self.getMesh() + ikle = self.getIkle() + self.triangulation = matplotlib.tri.Triangulation(meshx,meshy,np.array(ikle)) + try: + self.trifind = self.triangulation.get_trifinder() + except Exception, e: + print 'bug with trifinder ' + str(e) + print 'regenerate selafin file please' + #TODO : disable utils dependant trifind (valeurs,?) + def getNearestPoint(self,x,y): + """ + Get the nearest point in selafin mesh + point is an array [x,y] + return num of selafin MESH point + """ + point1 = [[x,y]] + numfinal = self.skdtree.query(point1,k=1)[1][0] + return numfinal + + def getInterpFactorInTriangleFromPoint(self,x,y): + """ + get interpolator factors factors form points + x,y : array of x, y points + return + triangle : triangle in wich points are + numpointsfinal : associated num point of triangle + pointsfinal : associated point of triangle + coef : interpolation coefficients + """ + numpointsfinal = [] + pointsfinal = [] + coef=[] + meshx,meshy = self.getMesh() + ikle = self.getIkle() + triangles = self.trifind.__call__(x,y) + for i, triangle in enumerate(triangles): + inputpoint = np.array([x[i],y[i]]) + numpoints = ikle[triangle] + numpointsfinal.append(numpoints) + points = np.array( self.getXYFromNumPoint(numpoints) ) + pointsfinal.append(points) + #caculate vectors - triangle is ABC and point is P + vab = points[1] - points[0] + vac = points[2] - points[0] + vpa = points[0] - inputpoint + vpb = points[1] - inputpoint + vpc = points[2] - inputpoint + + a = np.linalg.norm( np.cross(vab,vac) ) #ABC area + aa = np.linalg.norm( np.cross(vpb,vpc) ) / a #PBC relative area + ab = np.linalg.norm( np.cross(vpa,vpc) ) / a #PAC relative area + ac = np.linalg.norm( np.cross(vpa,vpb) ) / a #PAB relative area + coef.append([aa,ab,ac]) + + return triangles,numpointsfinal,pointsfinal,coef + + \ No newline at end of file diff --git a/resources.qrc b/resources.qrc index 216e6e0..922dd32 100644 --- a/resources.qrc +++ b/resources.qrc @@ -15,5 +15,16 @@ icons/Stock Index Down_48x48.png icons/Stock Index Up_48x48.png icons/ARTELIA.jpg + icons/tools/Information_48x48.png + icons/tools/Line_Graph_48x48.png + icons/tools/Line_Graph_48x48_time.png + icons/tools/Line_Graph_48x48_spatial.png + icons/tools/Line_Graph_48x48_flow.png + icons/tools/Video_48x48.png + icons/tools/layer_add_mesh.bmp + icons/tools/layer_add_points.bmp + icons/tools/layer_shaded_relief_add.png + icons/tools/Files_Copy.png + icons/tools/Wizard_48x48.png diff --git a/resources_rc.py b/resources_rc.py index 32142cf..b52d1c8 100644 --- a/resources_rc.py +++ b/resources_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: mar. 5. janv. 15:12:21 2016 +# Created: lun. 18. janv. 11:25:43 2016 # by: The Resource Compiler for PyQt (Qt v4.8.5) # # WARNING! All changes made in this file will be lost! @@ -3598,6 +3598,1835 @@ \x32\x30\x30\x20\x40\xe8\x0f\x24\xe0\x82\xe5\xfa\xff\x1d\xff\x0d\ \xc5\x7a\xda\x86\xb7\xd9\x2e\x4f\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ +\x00\x00\x06\x4e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x1b\x00\x00\x00\x20\x08\x06\x00\x00\x00\xe3\x69\x03\x3b\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x03\x91\x69\x54\x58\x74\x58\x4d\x4c\ +\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ +\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ +\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ +\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ +\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ +\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ +\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ +\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ +\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\ +\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\ +\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\ +\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ +\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ +\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ +\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ +\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ +\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ +\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ +\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\ +\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\ +\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ +\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\ +\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x31\x37\x33\ +\x42\x39\x35\x32\x41\x43\x34\x42\x39\x44\x46\x31\x31\x39\x41\x43\ +\x41\x45\x46\x43\x33\x46\x36\x30\x31\x38\x30\x30\x33\x22\x20\x78\ +\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\ +\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x46\x30\x43\x31\x31\x37\x34\ +\x33\x42\x35\x41\x36\x31\x31\x45\x31\x41\x46\x30\x46\x39\x31\x32\ +\x44\x44\x38\x35\x38\x39\x31\x35\x34\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x46\x30\x43\x31\x31\x37\x34\x32\x42\x35\x41\ +\x36\x31\x31\x45\x31\x41\x46\x30\x46\x39\x31\x32\x44\x44\x38\x35\ +\x38\x39\x31\x35\x34\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\ +\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\ +\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x31\x33\x2e\ +\x30\x20\x32\x30\x31\x32\x30\x33\x30\x35\x2e\x6d\x2e\x34\x31\x35\ +\x20\x32\x30\x31\x32\x2f\x30\x33\x2f\x30\x35\x3a\x32\x31\x3a\x30\ +\x30\x3a\x30\x30\x29\x20\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\ +\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\x65\ +\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\x74\ +\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\ +\x43\x38\x41\x34\x41\x38\x41\x32\x45\x45\x38\x45\x45\x31\x31\x31\ +\x38\x35\x46\x38\x43\x35\x46\x45\x36\x33\x36\x45\x41\x45\x31\x44\ +\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x31\x37\x33\x42\ +\x39\x35\x32\x41\x43\x34\x42\x39\x44\x46\x31\x31\x39\x41\x43\x41\ +\x45\x46\x43\x33\x46\x36\x30\x31\x38\x30\x30\x33\x22\x2f\x3e\x20\ +\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\ +\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\x2f\ +\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\x61\ +\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\x0a\xc4\ +\xc5\x84\x00\x00\x02\x53\x49\x44\x41\x54\x78\xda\xac\x56\xbd\x6e\ +\x02\x31\x0c\xce\x41\x00\x21\xb1\x30\xa1\x4e\xbc\x41\x9f\x00\x89\ +\xce\xbc\x09\x2f\xd4\xbe\x49\x67\x90\x58\xbb\x31\x75\xa0\x12\x4b\ +\x41\x02\x89\x01\xf1\x7f\x77\xf5\x87\xea\x93\x93\x4b\x72\xc7\x8f\ +\x25\xcb\xb9\x5c\xe2\xcf\x76\xec\xc4\xd1\x68\x34\x52\x25\x69\x48\ +\x3c\x50\xf7\xd3\xa7\xbe\x61\xf1\xa0\xd7\xeb\xdd\x8d\x34\x99\x4c\ +\x06\xfa\xd6\x4d\xfb\xfd\x3e\x1b\x47\x51\x64\x48\x50\x9a\xa6\x86\ +\x94\x04\xb0\x77\x84\x28\x49\x12\x75\xb9\x5c\x32\x3e\x9f\xcf\x06\ +\x77\x3a\x1d\x35\x9f\xcf\x33\x30\x00\x54\x2a\x15\xa5\xb5\xfe\x6d\ +\x36\x9b\xdf\xf4\x9d\x56\xab\xd5\x84\x64\x4c\xf3\x29\xc9\x84\x64\ +\xf2\x3f\x4e\x19\x6c\xd8\xef\xf7\x0b\x3d\x9a\x4e\xa7\xaa\xdb\xed\ +\xaa\xe3\xf1\x68\x78\xb4\x5e\xaf\x5f\xda\xed\xf6\x97\xcb\x33\x66\ +\xe9\xd9\x95\xb6\xdb\x6d\x30\x3c\xd2\x6b\xcc\xcb\x7f\x45\xc4\x80\ +\x5a\x4e\xb0\x12\xc9\xa1\xcd\xf6\x5e\x97\x57\xd2\x3b\x03\x4c\x32\ +\xce\x90\x25\xd8\xe5\xad\x6d\x54\x91\x71\xda\xb5\xd1\xb5\x79\xb1\ +\x58\x18\x1b\xd9\x13\xe6\x90\x67\xb9\x33\xe3\x0d\x4c\xc8\x34\xa9\ +\xd4\x17\x42\x5f\x62\xb8\x92\xc4\xa8\x33\x0e\x9d\x0c\x25\xb3\x54\ +\xca\x86\xd8\xca\x5d\x75\xe6\x05\xe3\xda\xb1\x43\x89\xc5\x08\xa3\ +\x2b\x34\x21\xb0\xa0\x67\x76\xda\xdb\x80\xbe\x90\x97\xa5\x0c\x2c\ +\x8e\xe3\xab\x02\xd4\x91\xcc\x46\x1e\x17\xa5\xf9\xcd\x9e\xc9\x30\ +\xfa\x52\xd9\x56\x6e\x27\x4d\x29\x30\x99\xf6\x32\x13\x7d\x80\x0f\ +\x9d\x19\xc2\xe8\x0a\x9d\xcc\x46\x9f\x57\x4f\x0f\xe3\x72\xb9\x34\ +\x0a\xf8\x1e\x72\x66\x23\x2b\x93\xe1\x7c\xea\x99\xd9\x61\xb4\x0b\ +\x5b\x2a\xe3\xbb\xb2\xa8\xee\xa4\xbe\x5c\x82\xb8\x0a\x9a\x69\xb5\ +\x5a\xe5\x14\x32\xa0\x04\x2f\x75\xeb\xfb\x2e\x64\x06\x74\x79\xe1\ +\x9b\x2f\x04\x43\x18\xc1\xec\xbe\x0c\x59\x28\x1b\x8b\xde\x33\x6f\ +\x82\xb0\x27\xd4\x4b\xe4\xae\x2a\x7a\xfe\x9d\xb7\xbe\x7d\x2e\xbe\ +\xdb\xdf\x0b\x16\x3a\x3b\xf9\x90\xfa\xae\x33\x5f\x97\xa5\xa5\x12\ +\x84\x51\x2e\x62\xab\x79\x5e\xfe\x0b\x65\xa3\xef\xed\x2b\x5d\xd4\ +\x9b\xcd\xc6\x6b\x71\xe8\x3d\x73\x82\x41\x31\xf5\x80\x57\x30\x9c\ +\x99\x64\xcc\x51\xbb\xa6\x6a\xb5\x9a\x6a\xb5\x5a\x99\xb7\xf0\xfc\ +\x74\x3a\x61\xcd\x2b\x7d\x1f\xe8\xc5\x38\x90\x3c\x62\x4c\x7c\x22\ +\x3e\xd3\x9a\x4b\x0e\x0c\x9b\x76\xbb\x9d\xd1\xa0\x62\x0e\x8c\x31\ +\x12\x04\xed\x1e\xfe\x03\x08\x46\xc0\x38\x7c\x53\x2f\xf9\x53\xaf\ +\xd7\xd3\x46\xa3\x91\x90\x8c\x31\x26\xc6\x38\x21\x03\x23\x5a\x9b\ +\x1a\xbd\x3e\xac\xa7\x9f\x57\xbe\xa5\xad\x9e\xcd\x66\x10\x6f\xae\ +\xbb\xd0\x6e\x7e\x75\x99\x83\x7d\x16\x01\xec\x63\x3c\x1e\x0f\x1f\ +\xd0\xf1\x51\x76\xe1\x9f\x00\x03\x00\xd3\xff\x4e\x5e\xf1\xfe\xc0\ +\xd9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x13\x8f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x03\x66\x69\x54\x58\x74\x58\x4d\x4c\ +\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ +\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ +\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ +\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ +\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ +\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ +\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ +\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ +\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\ +\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\ +\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\ +\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ +\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ +\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ +\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ +\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ +\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ +\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ +\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\ +\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\ +\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ +\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\ +\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x43\x42\x42\ +\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\x31\x41\x31\x32\ +\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\x43\x22\x20\x78\ +\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\ +\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x31\x37\x39\x37\x32\x32\x34\ +\x34\x46\x45\x37\x42\x31\x31\x45\x32\x38\x44\x44\x36\x41\x43\x45\ +\x37\x39\x42\x30\x41\x34\x41\x32\x36\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x31\x37\x39\x37\x32\x32\x34\x33\x46\x45\x37\ +\x42\x31\x31\x45\x32\x38\x44\x44\x36\x41\x43\x45\x37\x39\x42\x30\ +\x41\x34\x41\x32\x36\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\ +\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\ +\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x57\x69\x6e\ +\x64\x6f\x77\x73\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\ +\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\ +\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x32\x43\x39\x45\x38\x32\x32\x43\x37\x37\x46\ +\x45\x45\x32\x31\x31\x39\x39\x35\x37\x46\x30\x41\x38\x31\x39\x44\ +\x33\x35\x32\x43\x33\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ +\x3a\x43\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\ +\x31\x41\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\ +\x43\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\ +\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\ +\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\ +\x22\x3f\x3e\xfe\x10\x36\x9d\x00\x00\x0f\xbf\x49\x44\x41\x54\x78\ +\xda\xd4\x59\x5b\x90\x1c\x57\x79\xfe\x4f\xdf\x67\x7a\x66\xf6\x32\ +\x7b\xb1\x2e\x96\x91\x25\x0b\x0b\x0b\x0b\x78\x32\xc4\x65\xc7\x55\ +\x96\xfd\x04\xae\x32\x09\x21\x15\x28\xe0\x01\x5c\x32\x95\xe7\xd8\ +\x31\x76\x48\x5c\x04\xc3\x0b\x0f\x81\xa8\xcc\x4b\x5c\xa9\x10\x41\ +\xa5\x0c\x21\x54\x51\x18\x5c\x40\x59\x60\x1c\x13\xa9\x62\x01\x46\ +\x96\x25\x5b\x32\xb2\xf7\xbe\x3b\x3b\xd3\x3d\x7d\x3f\x27\xdf\xe9\ +\xdb\x74\xf7\x2e\x2e\xf2\xc8\x6c\x9d\x9d\x99\x9e\xee\xd3\xff\xe5\ +\xfb\xbf\xff\xd2\x4c\x08\x41\x7f\xcc\x2f\x85\xfe\xc8\x5f\x9a\xfc\ +\xf7\xf9\x57\x5d\x9a\x33\x14\x9a\xc7\xa2\xd4\x21\x99\x57\x04\x23\ +\xe2\x58\x42\x25\x8a\x13\x4e\xee\xaa\x4b\xe4\xc7\x64\xa8\x8c\xae\ +\x0c\x02\x5a\x0a\x12\x72\x38\x51\xdb\x54\xed\x8e\xc2\x6e\x37\x15\ +\x76\xa7\xce\xd8\xbb\xf0\xf3\x11\x5c\xb6\x88\x9f\x3a\x5c\xc8\xdd\ +\x84\x93\x08\x5a\x89\x85\xb8\xe8\x73\x7a\xd9\x17\xe2\x39\x87\x8b\ +\x33\x03\x2f\x74\x13\xec\x11\xbb\x11\x85\x31\x27\x27\x4c\x28\xb1\ +\x0d\x9a\xde\x33\x43\x06\x87\x2c\x38\x26\x70\x21\x4f\xb0\x07\x90\ +\xc2\x25\x5a\xb0\x04\x36\x7d\xe1\x2f\x0f\x4e\x14\x10\x94\xfd\x20\ +\x57\xaa\x04\xb1\x54\x78\xa1\x64\x2b\xf4\x22\x8a\x20\xf0\x9c\xa5\ +\xd2\x06\xe7\xf4\x9b\xcd\x80\x22\x85\xb1\xfd\x5d\xe3\x5e\x08\xfd\ +\x29\x4d\x61\x1f\x9c\xb3\xf5\xd6\x3c\x6e\xde\x31\x35\xea\xe8\x2a\ +\x19\x1a\x23\xa6\x30\x8a\xb1\x6d\x98\xf0\x59\x3f\xe2\xb3\xdb\x7e\ +\x72\x74\x3b\x88\xee\x5b\x75\xa2\x87\xd7\xdc\xd0\xf3\x75\xeb\x7b\ +\x50\xe4\x5f\x36\xba\xc9\x33\xc3\x51\x20\x5a\xe3\x88\xbc\x28\xa1\ +\xe1\x6b\x6b\xd4\xda\xdb\xa3\x96\x69\x11\xc1\x70\xa9\x8c\x52\xf0\ +\x72\x35\x3c\x40\x8d\x30\x98\x33\x95\x52\x81\x18\xc2\x0b\x6c\x12\ +\xb4\x54\x7a\x69\x65\x4c\x6b\x7e\x42\x7d\x4b\xbd\x5f\x65\xec\xb1\ +\xbd\x3d\xf3\xf8\xe1\x59\x8b\x16\xba\x06\x6d\xc5\x44\xab\x5e\x42\ +\x2b\x21\xa7\x57\xc6\x31\x8d\x93\x54\xf0\x74\x6b\xe8\x42\x16\xf6\ +\x6a\xab\x0a\xd9\x96\x49\xef\xea\xb6\xe4\xf7\xd6\x8a\x13\x7e\xe4\ +\xf5\x2d\xef\x23\xb6\x13\xbc\x34\x36\xdb\x9f\x5f\xf5\xa2\xff\x64\ +\x03\x9f\xda\xd8\x63\xb0\x34\x24\x67\x26\xa2\x4e\xaf\x03\xaf\x43\ +\x09\x9e\x0b\xcf\x7f\x8f\x02\x22\xd7\x23\x15\x1c\xab\x0f\x4f\x24\ +\x21\xa4\xc2\x4d\xaf\xc1\x8c\x2f\xbe\xe5\x48\xcf\x1c\x9a\x31\x94\ +\x53\x07\x67\x5a\x27\x8e\xef\xb1\x49\xd3\x35\x7a\x03\xc2\x3e\xbb\ +\x1a\xd1\x9b\x90\x38\x80\xbb\xe5\x8a\x70\x93\x04\x0b\xce\x4a\x6f\ +\xaa\xe4\xc1\xa6\x32\x41\x3a\xf0\x65\x62\xff\x96\xae\xd0\x02\xee\ +\x71\x74\xb1\x4b\x47\xe6\xdb\xc7\x5f\x59\x1f\x7f\x47\x27\xfa\x91\ +\x63\x6a\x27\x57\x36\xbd\xcb\xb3\x8a\x42\xce\xd0\x27\x07\x46\xe8\ +\x4c\x77\x52\xa1\x99\xdc\x13\xef\x9c\x8b\xba\x02\x35\xe1\xf3\xbb\ +\x71\x08\xdf\x37\x54\xfa\xe5\xda\x88\xce\xc3\xf2\x1a\x63\x7f\x31\ +\x65\x69\x5f\xbf\xe3\x86\xa9\x5e\xbf\x63\xd0\x35\x58\xfb\xe5\x8d\ +\x80\xae\x3a\x09\xbc\xc2\x69\x2b\xcc\x14\x90\x1e\x8f\x45\x86\x5b\ +\x9e\xbb\x1b\x80\x24\x86\x0f\x2c\xf7\x06\xe2\x84\x4c\x35\xa1\x55\ +\x28\xd3\x19\x31\xe9\x51\x3a\xd4\xb7\x69\xdf\x94\x75\xe2\xfc\xb2\ +\x73\x4e\xef\xb7\x1e\x58\x19\x85\xdf\xa4\x6d\x28\xec\xc5\xe4\xe2\ +\xaf\xdd\xb5\x29\x46\x4c\xb0\x14\xf0\x0d\x05\xa8\x70\x43\x2e\xbc\ +\x84\x0d\x69\x0a\x3d\xff\xc6\x90\x2e\x6e\x78\x0c\xf7\x79\xfc\x70\ +\xbf\xf5\xc8\x1d\xef\x98\xa6\x00\xda\x5f\x1c\xc5\xf4\x9a\x1b\xd3\ +\x12\xac\xbe\x1e\xc8\xc5\x69\x08\xb7\x4b\xab\xc7\x7c\x22\x78\xb6\ +\x72\x42\xe0\x22\xbd\xb9\x92\x2a\xc3\x52\x45\x64\xb8\x59\x88\x93\ +\x01\xf6\x58\x1b\xc3\x23\x6d\x95\xde\xb7\xbf\xd7\xbb\xb8\xee\x9e\ +\xc6\x55\xc7\xb6\x54\xf6\xa8\xb2\xe5\x0b\x35\x88\xc8\x55\xc6\x64\ +\x58\x16\x0c\x93\xa4\x86\xa8\x2b\x90\x33\x8d\x5c\x49\x10\x13\x83\ +\x19\xcf\xc2\xea\x6f\x0c\x03\x29\xfc\x3f\xdd\x76\x7d\xef\xb3\xef\ +\xdd\xd3\xa1\x11\xa4\xbb\x0a\xa1\xd7\x70\xc3\x61\xc4\xd3\xe5\x44\ +\x82\xc6\x38\xee\x63\x49\xc1\x93\x42\xf0\x8c\x7e\x2a\x41\x97\xb1\ +\x08\x93\x1e\xc9\x95\x52\xf0\x0e\x02\x00\xfb\x10\x39\x3a\xde\xb1\ +\xef\x20\x50\xe9\xfa\x69\xc4\x88\xae\x3e\x72\x41\x8c\xe7\x70\xfd\ +\x49\x1c\x14\xe4\x85\xe4\x83\x1c\x98\x86\x15\x37\x21\xa4\xe0\x26\ +\xc0\xba\x00\x68\xf9\x30\xa0\x0b\xc0\xf5\x32\x76\xd5\x15\xf6\x8f\ +\x77\xbc\x63\xea\xb3\xb7\x2c\xd8\xe4\x41\x32\x69\xe9\x31\x2e\x1e\ +\xe7\x58\x0f\x70\x7e\x94\xaf\x38\x0f\xae\xaa\xf5\xa9\xfc\x9c\x1d\ +\xc8\x68\xb0\xf0\x46\x1a\x97\xa4\xc8\x7d\xf0\xc5\x87\xd3\xc7\x1a\ +\x27\x0f\x86\x18\x03\x8e\x7b\xa7\x0c\x7a\xe7\x42\xfb\x81\xdf\xae\ +\xd2\x16\x8f\xc4\xc3\x0a\x18\x8a\x8f\x3c\x4a\xa6\x3a\x94\x68\x0d\ +\x0f\x70\x58\x81\x49\xae\xdf\xf0\x68\x03\x17\x5f\x1b\x86\xd4\xd6\ +\x95\x8f\xbe\xff\xfa\xde\x43\x37\xcf\xb7\x69\x53\xb2\x02\x56\x4a\ +\x89\x39\x4c\xc0\x76\xa9\xb5\xd3\x40\xdd\x05\x36\x82\xe7\x04\x5d\ +\x7a\x24\x8f\x33\x9e\x23\xb8\x50\x18\xdf\x64\xcc\x40\x7e\x18\x85\ +\x51\x80\xcd\xc3\x58\x81\x51\x08\x4a\x68\x74\xb0\x6f\x3d\x74\x89\ +\xc4\xf9\xed\x30\x39\x6d\x43\x51\x67\xec\x91\x69\xb5\x1a\x10\xc2\ +\x7f\xee\x86\x94\x20\x60\xae\xc2\x03\x3d\x53\x3b\x74\xa4\xdf\x7a\ +\xf2\xd8\x75\x36\x2d\x23\x40\x97\x10\xb0\xa1\x0c\x4e\xc9\x02\x24\ +\x61\x22\x4a\x21\x79\x85\x9b\x8b\x63\x22\xcf\x2d\xa9\x17\x72\x81\ +\xd3\x44\x44\x75\x58\x95\x94\x28\xa1\x87\xb7\x04\x16\x89\x13\x99\ +\x34\x45\x76\x2f\x6c\xb6\x67\xc6\xa0\x05\x3b\x79\x32\x89\xf9\x8b\ +\xdb\xab\xde\xe5\x2e\xe2\xc6\x49\xcf\xae\x28\x20\xa9\x8d\x56\x7d\ +\xba\x06\xd8\x48\x7a\x9b\x6e\x69\xa7\xde\x0f\xb6\x59\x82\xf0\xaf\ +\x8c\xa2\x14\x3e\x99\xc5\x2b\x16\x2d\x85\xc9\x16\x2f\x30\x4f\x85\ +\x12\xf9\x7b\x0e\x9b\x42\xd1\x02\x42\x99\x6e\x13\x05\x78\x1e\x1b\ +\x09\x52\xbf\x0c\x54\x0e\xd7\x0a\x6c\xc0\xc0\x58\x8b\x7d\xab\xbb\ +\x1d\xc6\xa7\xa2\xae\x7e\x8f\x0f\x28\xb5\xa2\xa8\x01\x21\x58\xdf\ +\x85\xf0\x52\x73\xcd\x54\xee\xff\xc0\x0d\xbd\x13\x9b\x08\xce\xb3\ +\xc8\xb8\x83\x28\xc3\x7b\x9c\x73\x70\x35\x13\xa6\x9f\x69\x02\x0f\ +\x12\x13\x6b\x8b\xea\xb9\x45\x02\x4a\x35\xa1\x4a\xac\x88\x52\x78\ +\x91\x7a\x97\x52\xc1\x63\xca\xa0\x29\x4f\x46\xc2\x47\xbe\x21\xda\ +\x3f\xdb\x3a\x31\x0e\x92\xfb\xc3\x71\xfc\x6d\x9d\x37\x62\x40\xdd\ +\x0e\x68\x13\x35\xce\xa2\x6d\xb0\x83\x33\xd6\x63\x16\xca\x81\xff\ +\xd9\x0a\xe8\x0a\x18\xc7\x8d\x78\x96\x98\x72\x1c\x13\x55\x05\xab\ +\x40\x84\x8b\x5a\xd0\x22\x53\xd3\x83\xb7\x4c\xd1\x9d\x7b\x5a\x64\ +\xc3\xab\xbf\x58\xf6\xe8\x4b\xe7\x36\x69\x08\xa6\xa9\x2a\xd7\x7c\ +\x2f\xea\x9d\x20\x8d\x2d\xc4\xa6\x88\x48\x07\xe7\xee\x6d\xa1\x46\ +\xea\x19\x7f\x17\x3b\xd1\x77\x7c\x2f\x12\x35\x05\x96\x96\x1d\x9a\ +\xb1\x34\x52\x54\x76\xcf\x4d\x8b\xf6\xf1\x0b\xdb\x31\xfd\x6a\x10\ +\x83\xdb\x45\x4a\x8f\x91\xb4\x12\x2f\xa0\x50\xa4\x8d\x2a\x84\x26\ +\x75\x4a\x71\xec\xd3\x47\xbb\x74\xff\xc1\x4e\x69\xa9\xbb\xf6\xb5\ +\x81\x71\x4e\x8f\xfe\xf7\x7a\x6e\xdd\x89\x57\x32\x22\xc8\x36\x96\ +\xb8\x4f\x63\x8b\x89\x54\x01\x47\xe6\x0b\xc0\xc6\x72\x14\xea\x4f\ +\x1b\xb7\x6e\x6e\xfa\xf7\x2a\x5e\xfc\x83\x9a\x02\x92\xd2\x24\xf6\ +\x51\xdb\x7c\x6a\x08\xac\x9f\x1b\x44\xb4\x8c\x80\x76\x72\xf8\xf0\ +\x4a\xb0\x89\x0a\xee\x27\x2c\xd3\xa0\x4e\x08\xf0\xc1\x03\xed\x1d\ +\xa5\xef\x9f\xee\xb7\x49\xbc\xb0\x5e\x42\x47\x88\x3a\x2c\xab\x71\ +\x23\xdf\x43\x28\xc1\x64\xbe\xf1\x04\x59\x23\xd4\x51\x1d\x14\x8a\ +\xd3\xe6\x27\xe3\x61\x58\x57\x40\x26\x13\x60\xcd\x5e\x9c\xb2\xee\ +\xbb\xe0\xc4\x74\xc5\x89\x68\x53\x72\x7e\xca\x0a\x75\x2e\x17\x0d\ +\x16\xa1\x32\x06\x44\x19\x9c\xa5\x37\x1a\x2f\x3f\x8a\x73\x63\x54\ +\x0a\x33\x9a\xb0\x91\xa8\xb2\x9b\xcc\xd8\x52\x09\xb8\x67\xcc\x14\ +\x1a\x02\xce\x03\xe4\xa7\x6e\x47\xbf\x6f\xa8\xab\x36\x2e\x73\xcb\ +\x86\xa6\x67\xaa\xa4\x69\xca\xed\x5c\x57\xad\xdf\xa1\xb6\x91\x82\ +\x87\x69\x5d\xc3\x4b\x4b\x95\x5c\x5e\x56\x84\xf5\x9b\xf2\x4a\xb5\ +\x28\x71\xfc\xf4\xb9\xcb\x3b\x14\xf8\xd6\x2f\x2f\xd5\xe0\xc6\x1b\ +\xd8\x2f\x17\x15\x7b\x66\x09\x32\x80\x17\x5c\xd4\x66\x23\x28\xa0\ +\x1a\x8a\xc5\x4c\xe5\xf6\x9a\x07\x14\x59\x7d\xb6\xf5\x3b\x65\x81\ +\xb6\x06\xe8\x04\xb1\xa8\x67\xd6\x82\xdb\x8b\xba\x46\xd4\x03\xb9\ +\xca\x28\x85\x67\xfe\xf9\xdc\x0a\x21\x37\xd2\x87\xde\x73\x30\x3d\ +\xf6\xdd\xff\xbd\x4c\x5f\xc3\x31\xd6\xbf\xbe\xcc\xca\x4d\x6f\x16\ +\xf1\x40\x15\x28\xc9\xd2\x43\x26\x3a\x3f\x54\xd2\x52\xc3\x07\xac\ +\x5b\x1d\xfd\x4e\x9c\xf4\x4c\xad\x1a\x05\xf3\x1c\x5b\x0e\x44\x6e\ +\x7d\x9e\x05\x53\x32\x11\x3c\x87\x77\xdd\x23\xbb\x64\xdf\x32\x81\ +\xcd\xed\xa7\x2f\xff\xe2\x35\x7a\xfc\xfb\x67\xd3\x28\xd3\xa7\xe6\ +\xc9\xb8\xee\x86\x7c\xaf\xaa\xd0\x19\x75\x12\x55\x13\x1b\xa5\x39\ +\x80\xe7\x19\x1b\xc9\x20\xed\xd8\x3c\x28\xe0\x62\x99\xb6\x7e\xac\ +\x9e\x07\x70\x4e\xa4\xb2\x9b\xb6\x51\xc8\x85\x49\x66\x05\xce\x0b\ +\xb7\x4e\xac\x4c\xb5\xba\x66\x42\xa1\x45\x7d\x5e\x40\x63\x1a\x65\ +\xf8\x7c\x4b\xa3\x41\xfb\x08\x2d\x8d\x6e\x6c\xc0\x45\x34\x12\x58\ +\x3d\x99\x55\xeb\x26\x91\x27\x37\xa9\x48\x8c\xfa\x3c\x08\x55\x78\ +\x80\x93\xd5\x51\x6f\xaa\x17\x73\x38\x31\x51\x95\xf9\x31\xd2\x6d\ +\x9c\x37\x23\x49\x6d\xc3\x86\xf5\xab\x96\xce\x6f\xb4\x80\x9a\xfe\ +\x5e\x30\xcf\xbd\x07\x3a\x74\x63\x4f\x2f\x71\xff\x0a\xf2\xc9\xe7\ +\x7e\xbe\x42\x97\xb6\xc2\x0a\x75\xee\x52\xad\x36\x0a\xbf\xe2\x1e\ +\x69\xc1\x07\x15\x78\x82\xfa\x28\xc9\xaa\x5e\xd2\xf5\xf9\xda\x54\ +\x42\x5e\x34\x8a\x44\x57\x26\xac\x88\x8b\x4a\xc9\x20\xea\xab\xca\ +\x16\xbc\x62\x4d\x7c\xfe\xe2\x6d\x7d\xfa\xb3\x83\x36\xcd\x19\x75\ +\xf6\x79\xe7\x8c\x49\x4f\xfc\xc9\x42\x19\xe8\xbc\xb2\x4f\x0a\xd3\ +\x22\x0b\x97\xb5\x51\x4e\x08\x0d\x03\x25\x79\x40\xcb\x62\x52\x28\ +\x4a\xb7\xe6\x01\x99\x65\xfd\xb4\x87\x2d\xac\x4f\xe9\x34\x60\x52\ +\x2a\x34\x4b\xe4\x2a\xdd\x65\xc7\x1e\xfc\xb7\x9f\xd0\xd2\xe6\x76\ +\x1a\xb8\xdf\xfa\xf4\x09\x3a\xb6\xaf\x5f\x2a\x71\x68\xc6\xa2\x39\ +\xf4\xd4\xab\x6e\x54\x1a\x80\x57\x72\x06\xcf\x83\x96\xf2\xea\xb4\ +\x96\x63\x72\x3a\x25\xb4\x98\x32\x98\x8b\xb5\x23\x06\xfc\x28\x19\ +\x41\xe6\x3e\xaf\x94\x04\xbc\xe1\xda\x12\xab\x35\xcc\x67\xc7\x9c\ +\xd9\x83\xd4\x59\x30\xd2\xe0\xb9\xba\x35\xae\x29\x20\x5f\x71\x18\ +\x60\x3f\x36\x29\x47\x38\x9f\x18\x24\x37\xc2\x44\x11\x51\x23\x0f\ +\x2a\x02\x1f\x6c\x19\xcb\x76\x37\x16\xa3\x1d\x10\x72\x83\x68\x4d\ +\x50\x35\xc1\x88\x5d\x21\xc4\x6b\xbc\x3f\x99\xd7\x08\x54\x5c\xd9\ +\x75\x8c\xf6\xcd\x74\x6a\xc2\x8f\xfc\x90\xd6\xc1\xe1\x05\x35\x66\ +\x95\x66\x25\x17\xd4\xa0\xb5\x8b\xf0\xf9\xd0\x41\x8e\x8a\x64\xe3\ +\xc5\xfd\x78\xad\xae\x40\x6a\xa1\xe4\xd5\xb2\xc1\xaf\x26\xa6\x5d\ +\xb1\x5f\x11\xbc\x38\x96\x0b\x87\xce\x90\x8e\x2e\xf6\x6a\x0a\x9c\ +\xbb\xba\x86\x1b\x6b\x15\x0a\xad\x67\x6c\x21\x76\x26\xc6\x1a\x4d\ +\x67\x7d\x28\x8c\xa4\xa0\xa5\x84\x17\xbd\x4c\xd6\x8a\x07\xa0\x80\ +\x1f\xfe\x5a\xcd\xfb\xd4\x09\x06\xf3\x31\x46\x53\xa1\xaa\x17\x78\ +\x3d\x26\xde\x33\x6f\x90\xa9\xa9\x35\x05\xce\xbc\xb6\x5e\x8e\x58\ +\x0a\xcf\xf1\xca\xd8\xa5\x96\xd4\xa8\xa1\x44\x31\x25\x84\xa4\x0c\ +\xd6\x51\x4c\xd9\xd1\x44\xbf\xde\xe1\x01\x1e\x24\xcf\x31\x68\x29\ +\xb3\x32\xab\x59\xb6\x59\xee\x16\x0a\x51\x0d\x06\x59\x09\xc0\xe9\ +\xb6\x39\x6d\x47\x09\x71\xe6\x2d\x2f\x17\xbe\xee\x45\xaa\x79\xb8\ +\x61\xf5\xa2\xaf\xcb\xe1\xc3\x00\x1d\x45\x96\x3c\x68\xbe\x12\x37\ +\x7a\x6e\xc7\x58\x05\xd4\x79\x26\xf6\x23\x5f\x51\x50\x6b\xb0\x49\ +\xe3\x51\xdc\x98\xa8\x92\x03\x76\x73\x77\xce\xdb\x1f\xd8\xd7\xad\ +\x09\xff\xe6\x96\x43\xaf\x7b\xc8\x0b\xba\x98\x94\x08\xe5\x3b\xdf\ +\xa5\x19\x9a\x30\x50\x39\xee\x81\xf0\x72\x1a\xa6\xb6\x55\xb2\xc6\ +\xc0\x4a\x2c\xce\xd4\xa7\xd3\xc0\x15\xe8\xd3\x8d\xdd\xe0\xbb\x85\ +\xf7\x77\x60\x94\x53\xa5\x60\xa3\x4a\x30\x17\x30\xe0\xb4\x00\xaa\ +\x3c\x32\x5f\x0f\xe0\x9f\xbd\xba\x4c\xcc\xb0\xea\x59\x98\xe7\xa5\ +\xc2\x2e\x98\xa7\x5d\x8c\x23\xb9\x99\x21\xb3\xeb\xb6\x4a\xed\xad\ +\xe8\xbf\x90\xd0\xdc\x9a\x02\x2a\x52\xbf\x01\x9e\x0d\xdd\xf0\x29\ +\x29\x91\x2a\x71\x54\xa4\xf4\x32\xeb\xf2\x52\x70\x9e\x67\xd4\xaa\ +\x42\xf2\xfb\xbb\x67\x76\xc2\xe7\xfc\xea\x98\x0a\x6a\x9e\xec\x25\ +\xca\x3a\x47\xd0\xa4\xc7\x2e\xe0\x52\x16\x8d\xf2\x1b\xb6\x14\xc8\ +\xf2\x2a\x7a\x81\x96\xfc\x7d\x14\x3d\xc5\x2a\xa3\xad\x54\x81\xf9\ +\x69\x13\xd1\xad\xc8\x39\xd0\x33\xf1\xd0\x3b\x2f\x5b\x38\x45\xa9\ +\x54\x98\xc5\x98\x90\x26\xc2\x56\xad\x96\x65\x54\x41\x0b\xfa\xce\ +\x1e\x60\x3d\xa0\x9d\x53\x8b\xd4\x18\x3b\xad\x4e\x0d\x86\x92\x45\ +\x9c\x90\x83\x2c\x1b\xd6\xef\x69\xd4\x5d\x0b\xce\xc3\xfa\x3f\x50\ +\xd5\x86\x02\x76\xc7\x20\x45\xce\xf9\xe4\x54\xdd\x8b\xfe\x5e\xc4\ +\xa8\xbb\x71\x92\x52\x4e\x22\x77\x63\x9c\x4a\x6e\xc8\x85\x19\x07\ +\xc1\x0e\x05\xee\x3e\xb2\x00\x68\x69\x74\x00\xf5\xd1\x7b\x17\xda\ +\x69\xb0\x70\xd1\xb4\xba\xd8\xd9\xd5\x15\x83\xd4\xb6\x42\xda\x94\ +\x4e\x36\x4a\xfc\xf6\x28\xfe\x07\x54\x0b\x42\x06\x74\x4d\x01\x1f\ +\x67\xa3\xd3\xa1\x36\xfa\x62\x28\xfd\x6d\x31\x18\xff\x48\x43\x8b\ +\x99\x41\x69\x92\x35\x0b\xfa\x2b\xb0\xcc\x79\xa5\xf9\xc0\xfa\xe1\ +\xab\x1b\x69\xd2\xaa\xbe\xfe\xfc\xdd\xd7\xd1\xf3\x9f\x3c\x4a\x3f\ +\xfe\xd8\xcd\x74\x6b\x5f\xad\x55\x9c\x75\xd6\xa1\x49\x9e\xc8\x69\ +\x53\xb4\x20\xc3\xb4\x41\x56\x57\xa3\xd9\x25\xff\x59\xd4\x69\x4f\ +\xeb\x90\xcb\xd2\x1a\x1e\x58\x1e\x46\xb4\x17\xf5\x8a\x02\x4b\x69\ +\xd0\xce\x14\x74\x32\x19\xb8\x23\xd5\x4a\x4b\x90\x6c\x76\x5a\x64\ +\x4b\x6a\xf4\xc8\x15\x28\x6c\x51\x9b\x3e\xfc\xd5\xef\xd3\x4f\x2f\ +\x5c\x43\xf3\x11\xa5\xd5\xe3\x95\xf5\x21\x3d\xf9\xe3\xf3\x74\xd7\ +\x17\xfe\x83\xbe\x7e\xe6\x42\xbd\xff\xad\x34\x48\x65\x49\x91\x67\ +\x5c\x02\x65\x12\xbc\xa6\xcf\xea\x34\xbd\xec\x8f\xda\x09\x9d\x94\ +\xc5\x9c\x0a\x81\x66\x5b\x5a\xbd\x16\x92\xad\x9a\x6f\x5b\x24\xc7\ +\xe6\x91\x6c\x1c\xd6\xbd\xcb\xed\x50\x7c\x66\xe0\x85\xa7\x99\x01\ +\xaf\x24\xf2\x69\x0b\xa7\x24\xae\x37\x34\x9c\x57\xa9\x11\xdf\x35\ +\x8d\x2e\xa9\xd7\xd1\xc7\xfe\xf5\x79\xe2\xee\x08\xc7\x11\x3c\x1a\ +\xe0\xd9\x99\x25\xb5\xb7\x97\x54\xbb\x5d\x9f\x58\x97\xd2\xe7\x6f\ +\x2c\x13\x9e\xc9\xa7\x21\x53\x30\x66\xdf\xa0\xce\x30\xa6\xbe\xcb\ +\x1f\xf0\x05\xbf\x64\x02\x21\x1d\x40\x9d\x35\x1f\x70\x6c\xa3\x14\ +\xbd\x36\x08\x51\xfa\x5a\xb4\x89\x8a\xb1\xdb\x33\x68\x6b\x10\x7c\ +\xd3\x72\xc2\xe3\x51\x47\x3c\xa4\x98\x3a\x25\x1e\x87\xbb\x92\x72\ +\x1e\x5a\x34\x09\xc5\x7c\x93\xf2\xfa\x9e\x99\x36\x19\xfb\x6e\x2e\ +\x87\x58\xc5\x6f\xbc\x51\xd7\x14\xff\x8a\xcf\xb2\x5c\x10\x72\x46\ +\x0b\xc6\x11\x52\xf8\x79\x8b\x3a\x3e\xa8\x79\x3d\x7c\x82\xab\xec\ +\xb4\x64\x4a\x0d\xf8\xee\xb7\x74\x5a\x19\x06\x75\x08\x39\x50\x60\ +\x4b\xce\xfb\x9d\x98\x0e\xcf\xb7\xc9\x80\xa6\xe8\x3b\xe1\x45\xf6\ +\xb7\xd6\x76\xf0\x35\x1e\x86\xa4\xc2\x2a\x5c\x53\xb2\xba\xa4\x02\ +\x23\x5e\x16\x79\x3b\xeb\xa3\xa2\xba\xe4\xbb\x95\xe4\xd5\x00\x96\ +\x78\x97\x7b\x83\xe7\x05\x20\xa3\x2e\x58\xd4\x85\x3c\x0b\xcb\xfe\ +\x93\x52\x06\x28\x90\x4e\x4e\xf6\x02\x21\x2e\xba\xc6\x75\x2f\xae\ +\x7b\xc0\x0d\x93\x34\xe0\x65\x99\xd1\x9e\x35\xe9\xc0\xb4\x45\xaf\ +\x63\xf3\x00\xd2\xd8\x82\xfe\x9a\x3b\xe1\x60\x68\xc4\x8f\x28\x80\ +\x59\x3a\xfe\x13\x71\x69\x55\xc1\x27\x29\xbf\xe8\x65\xcb\x01\x58\ +\xfe\x7d\x62\x75\x51\x7b\x24\x97\x8e\xf5\x25\x55\x22\x30\xc9\x06\ +\x34\xe0\x79\x65\x5a\xa7\xde\x6a\x40\xf3\x6e\xf2\x05\xdb\x54\x1f\ +\x0d\xf1\xb3\x7c\xb6\x26\x99\x4c\x1a\x66\xc5\x89\x68\xc3\x6d\x28\ +\xe0\x23\xd8\x58\x90\x3d\xc3\x92\x07\x0e\xcf\x99\xb4\xb7\x6b\xa4\ +\x9d\xd9\x16\xee\x63\x0b\xf1\x39\x25\xe2\x2f\x6f\x6e\x38\xa7\xc4\ +\xb4\xd5\x53\x74\x2d\x85\x54\x3a\xf1\x95\xc2\x96\xcd\x3f\xcf\x61\ +\x53\xe1\xf4\xea\x10\x8c\x15\x70\xc9\x1f\x65\xa9\xb0\xb8\x85\x2f\ +\xf0\x36\x03\x55\x6a\xb8\xff\xd4\xeb\xce\x70\x9e\x29\x0f\xb6\x74\ +\xe5\x1b\x11\xce\x69\xc1\x33\xf2\xe9\xa8\xad\xab\xf4\xe6\x30\xa4\ +\x35\x40\x7c\x14\x34\x14\x90\x23\x6d\x0f\xd9\x4a\xf1\x45\xda\x51\ +\xb1\x75\xa2\x1b\x67\x8d\xec\x41\x1d\xee\xbe\x0d\x17\x1a\xc3\xf0\ +\xdf\x17\x14\xe5\xc5\xcd\x75\xef\xd4\xb8\xa5\xde\x8d\x68\x22\x11\ +\x69\x28\x02\x61\xe1\x74\x26\x9e\xf5\x02\xd5\xb1\x3a\x2f\xc6\x7e\ +\xe9\xf3\x66\x96\x26\x26\x4a\x1f\xa6\x64\xee\xe6\xb0\x2a\x43\x86\ +\x55\x51\x65\xb6\xd6\x02\x9a\x72\xe2\x67\x67\x5b\xfa\x49\x10\xcd\ +\xa5\x04\x5e\x69\x01\x36\xf3\x80\xf3\x34\xd6\x12\x98\x72\x79\x14\ +\xd2\xa6\x17\x91\x1b\x37\xc6\xeb\xb2\xdf\x94\xc6\x73\x93\x72\x74\ +\x9c\xbe\x1f\x00\x07\xb3\x3c\x68\xbd\x59\x85\xdc\x51\x78\x69\x9e\ +\xe9\x27\x9c\x28\xf9\xf0\xf6\xb2\xfb\x98\xdf\xd2\x6e\xe5\x6d\x6c\ +\x81\x4c\x29\x51\x25\x9f\x4a\x70\xd9\x74\xe7\x0f\xa7\x4b\x6b\x4b\ +\xc1\x65\x49\x20\x9f\x1d\xeb\xd2\xea\xe9\xc3\x31\x52\xe5\x84\x61\ +\x23\x20\xdb\x89\x5e\x9a\xb2\xb4\xc7\x3b\x6d\xfd\xe9\x18\x16\xd4\ +\xe4\x73\x66\x5c\xbe\x07\x9e\x91\x96\x5f\x1e\x45\x88\x4f\xd9\x14\ +\x45\xe9\xb0\x59\x4e\x0b\x1b\x2d\xa5\xa0\x97\x3e\x7e\x73\xf5\xd9\ +\xd9\xef\xfb\xac\xe4\xd7\xfc\x50\xb5\xec\x9f\xde\xf2\x37\x4f\xdd\ +\x1d\xf7\xf6\xfc\x55\xa8\x99\xf7\x44\x2d\xcd\x94\xca\x08\xd0\x9c\ +\x48\xdd\xa8\x67\x16\x4f\x9b\x91\x7c\x23\xe8\xa6\xc0\x7a\xda\x20\ +\x20\xd3\x89\x03\x23\x0e\x9f\xd1\x46\xcb\xdf\x78\xf9\x4b\x9f\x78\ +\x36\xf6\xe4\x93\x32\x32\x25\x20\xaa\x61\x52\xdc\xf8\x96\xaf\x9e\ +\x15\xf2\x49\x7e\x28\x15\xa8\xf4\xc4\x2c\x9d\x7e\x31\x56\x3e\xca\ +\x25\xa2\xe6\x67\xb5\xf2\x59\x1a\x66\x26\x5f\x53\x58\xb2\x76\x36\ +\xcc\xd9\x3d\xda\xc2\x5d\x1f\x3d\x60\x1e\x7a\xdf\x61\xd6\x5b\xdc\ +\x27\x4c\x7b\x1f\x67\x6a\x1f\x96\x6f\xe7\x37\x19\x2b\x22\xd9\x64\ +\x81\x7b\x4d\x38\xeb\xd7\xc2\xcb\x67\x2f\xae\xfe\xe4\xf4\x15\x7f\ +\xfd\x2d\x29\xac\x8f\x35\xc4\x1a\x60\x6d\xe4\xef\x21\x65\xa1\x24\ +\x57\x92\x2f\xbe\xf8\xc4\x0b\x3c\xce\xfb\x8f\xcd\x87\x6f\x6b\x3e\ +\x66\xfd\x83\x5e\x72\xa3\xed\x7c\xb0\xba\x2c\x1f\xee\x48\xf9\x82\ +\xcd\x25\xf6\xbb\xa7\xbf\xf2\x62\x7e\xc3\xa6\xf5\x04\x15\x71\x3d\ +\xf1\x68\xf5\xb7\xb8\xb2\xa2\xc6\xb9\xf5\xc1\x40\x31\xcd\xa8\x6e\ +\x96\x7b\xe0\xed\x60\xf3\xff\xfd\xfc\x76\x2f\xf1\x36\xdf\xc5\xdb\ +\x1c\xab\x24\xee\xfa\x16\xff\x27\xc0\x00\xad\x90\xf2\x23\x79\xe0\ +\x87\x75\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x37\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ +\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\ +\x0e\x1b\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\ +\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ +\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x97\x49\x44\x41\x54\x68\ +\x43\xed\x98\x5b\x48\x93\x61\x18\xc7\xb7\xb9\x79\x9a\x87\x34\xf3\ +\x50\x9e\xcd\xab\x68\x96\x68\xe1\x45\xd4\xad\x64\x41\xb7\x79\x21\ +\x48\x11\x5e\x75\xa1\x54\x17\xe1\x5d\x37\x65\x97\x29\x41\x78\x95\ +\xd2\x5d\x14\x88\x78\x53\x1a\xe5\x94\x79\x9c\x19\x8a\x9b\x26\x36\ +\xdd\xb7\xcf\xb5\xcd\xb5\xad\x1d\xbe\xd9\xfc\x3f\xdf\x4b\x65\x0d\ +\xe7\x50\xc6\x3e\xf7\x87\x1f\xbf\x17\x04\xe5\x7d\x9f\xef\x79\x0f\ +\xca\xb7\x43\x91\xc5\x71\x14\xa2\xe3\x36\x89\x09\xc4\x3a\x89\x09\ +\xc4\x3a\x89\x09\xc4\x3a\x89\x09\xc4\x3a\xff\x9c\xc4\x3d\x3d\x3d\ +\xe2\x28\x36\x69\x6b\x6b\x13\x47\x91\x45\xba\x15\x68\xba\x73\x1d\ +\x8e\x36\xc2\x76\x00\xe6\x82\x66\x78\xaf\x4c\xbd\x98\x82\x8f\x5c\ +\x05\x0e\x7c\x02\x3b\x05\xdd\xc1\xea\xb2\x82\xd5\xd5\x55\xb0\xb1\ +\xbe\x01\x02\xfe\x00\x38\xa8\x24\x7a\xc0\xe3\xf1\xc0\x9c\x99\x83\ +\x79\x2b\x0f\x7f\xd0\x8f\xc0\xbc\xc3\x02\xb3\xc8\xe5\x72\xb8\xae\ +\xae\x0e\x6e\x68\x68\x80\x13\x3d\x10\x69\x82\x42\x10\x2c\x1b\x97\ +\xc1\x9c\x7e\x0e\x58\x78\x0e\xc8\x04\x27\xc8\x4c\x5d\x01\x19\xa9\ +\x7e\xc0\xc2\x7a\x44\xa7\xd3\x01\xbd\x5e\x0f\xa2\x4d\xfc\xf7\x40\ +\x77\x77\x37\x7a\x80\x7d\x7b\xe1\x7a\x80\x7d\xeb\x86\x25\x03\xec\ +\xf3\xba\xe0\xe2\x5c\x37\x5c\x7a\x9c\xac\xd8\x1e\x83\xfd\x3e\x32\ +\xcb\xe8\xd2\x09\xf8\xb5\xae\x04\x66\x8d\x57\x5d\x5d\x0d\x17\x98\ +\x0a\xe0\x44\x0f\xec\x8e\xcf\xe7\x03\x0b\x0b\x0b\x20\x49\xb6\x05\ +\x2e\x9e\xde\x04\xe5\x2a\x1b\x70\x8d\xf2\x40\x7b\x6d\x00\x4c\xde\ +\x33\x03\xe3\xac\x07\x64\x79\xd7\x80\xcf\x62\x02\x9c\x81\x03\x2b\ +\x33\x2b\x20\xda\x48\xb7\x02\x6c\xb7\x30\x18\x0d\x40\x25\xf7\x80\ +\xfa\x0a\x2b\x90\x6f\x78\xc0\xb7\x7e\x3b\xf8\xf4\xe0\x15\xd0\x69\ +\x79\xf0\xfe\xa5\x1d\xcc\x0c\xfe\x00\x1c\x17\x00\x7e\x8f\x1f\x08\ +\x7e\x01\x14\x15\x15\x81\x68\x23\xdd\x0a\x38\xec\x0e\xe0\xdc\x72\ +\x82\xb3\xc5\x36\x10\xe0\xad\x60\xe1\x91\x16\x8c\x3d\x7b\x0e\xa6\ +\xe7\xe7\xc1\xce\xde\x84\xfd\x49\x19\x3a\x71\x43\xa4\x16\x29\xc1\ +\xa6\x33\x15\xd8\xdd\xc9\x20\x37\x2f\x17\xe4\xe7\xe7\x83\x68\x13\ +\xf7\x15\x08\x7b\x0e\xf0\x25\x9b\xb0\xc3\x4c\xa7\x64\xfb\xd5\x2f\ +\xb0\x65\xc0\x01\x8f\xdd\x36\xc1\x74\x2a\xfc\xde\xd7\xe5\xc9\x74\ +\xd7\xa9\xbc\x9b\x07\xa7\x9d\x49\x87\xdf\x4c\x16\xc3\x42\x72\x0e\ +\x5c\x50\x46\xfb\xbe\xc7\x47\xe7\x4b\xa4\xa9\x2a\xac\x82\x9b\xaf\ +\x34\xc3\xd2\xad\x00\x77\x8a\x6e\x97\x76\x6e\x0e\xbe\xdf\x44\x15\ +\xf0\xf2\x74\x97\x1f\x7c\x48\x3f\x5f\xff\xec\x85\xb3\x34\x29\x70\ +\x4e\x03\xad\xb8\x37\x97\xfc\x6e\xbe\x10\xf6\xcb\xa9\x22\xf9\x15\ +\xf4\xbd\x67\x67\x1c\x23\xab\xb3\x61\x65\x92\x12\x6e\xac\x69\x84\ +\x83\xc1\x20\x3c\x34\x37\x04\x07\x04\xfa\xbb\x0e\x17\x7d\x01\xea\ +\x14\xfa\xfd\xd2\xad\x80\xf2\x02\xad\xc8\xc8\xf0\x30\x7c\xa3\x7e\ +\x0d\xae\x2d\xa1\xfb\xfd\xe8\x28\xdd\x7d\xd8\x73\xc2\xf5\x53\x05\ +\xcf\x9b\x68\x45\x17\xd7\xc9\x05\x27\x4b\x61\x8d\x46\x03\x4f\x2f\ +\x4f\xc3\x9a\xf2\x1a\x58\xa1\xf8\x7b\x0d\x5b\x2f\xb7\x8a\x23\x4a\ +\xef\x48\xaf\x38\xa2\xb0\xca\xe8\xbf\xce\xc2\xd2\xad\x40\xed\xad\ +\x5a\x58\xab\xd5\xc2\x13\x13\x13\xb0\xe0\xb4\xc1\xdb\x4e\x2b\xec\ +\x16\x57\xde\x2d\x24\xc3\x25\xa7\x68\xc5\x2b\x2a\x2b\xe0\xcc\x8c\ +\x4c\x98\x65\x62\x89\x7e\xcf\xb9\xca\xf3\xf0\xee\xec\x55\x01\x96\ +\x19\xb1\x92\xd2\xaf\x00\x0b\xfb\x4f\xc2\xf8\xfb\x71\x98\xdf\xa0\ +\xb7\xaf\x3a\x43\x0d\xa7\xa7\xd1\xae\xc0\xde\xbc\xe1\xc2\x2a\xd0\ +\x7e\xad\x03\x2e\xcb\x2b\x83\x23\xcd\x9a\x95\x7a\xf1\xc9\xdb\xc7\ +\x70\xdc\x57\x20\xe2\x09\x28\x55\x4a\x90\xa2\x4a\x01\xec\x0e\xa3\ +\x4e\x57\x83\x9d\x95\xdf\x6b\xf5\xff\x8c\x6d\xeb\x3b\xf0\x79\xbd\ +\xfb\xc2\x62\x0b\xbd\xbd\x43\xb0\x48\xb7\x07\x0e\x2b\x1f\xdd\x1f\ +\xc5\xd1\xff\xd3\x75\xb3\x4b\x1c\x51\x3a\xfa\xa9\x57\xc2\x45\x7a\ +\x15\x38\xec\x34\x3f\xa5\x5b\x64\xb8\x1c\xdd\x0a\xec\x37\xd1\x56\ +\xac\xb3\xaf\x13\x36\x9a\x8d\xf0\xee\xb4\x5c\x6a\x81\x93\x14\x49\ +\x70\xb8\x93\x98\xbd\x0b\xe2\xbf\x02\xa1\xdb\x64\x54\x15\x88\x36\ +\x8b\xa6\x45\xb8\x6f\xb8\x0f\x0e\x57\x89\x70\x91\xd8\x8b\x4c\x26\ +\xfb\x05\x14\xad\x2c\x7c\xa1\x13\x39\x7a\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0c\x78\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ +\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\ +\x0e\x1b\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\ +\x72\x65\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\ +\x61\x64\x79\x71\xc9\x65\x3c\x00\x00\x03\x66\x69\x54\x58\x74\x58\ +\x4d\x4c\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\ +\x00\x00\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\ +\x65\x67\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\ +\x35\x4d\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\ +\x54\x63\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\ +\x70\x6d\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\ +\x64\x6f\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\ +\x3a\x78\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\ +\x50\x20\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\ +\x36\x36\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\ +\x30\x32\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\ +\x20\x20\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\ +\x46\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\ +\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\ +\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\ +\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\ +\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\ +\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\ +\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ +\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ +\x73\x54\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\ +\x66\x23\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\ +\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\ +\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\ +\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x43\ +\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\x31\x41\ +\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\x43\x22\ +\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\ +\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x36\x43\x42\x33\x33\ +\x45\x36\x45\x44\x31\x41\x46\x31\x31\x45\x32\x41\x42\x45\x39\x45\ +\x34\x32\x44\x38\x43\x30\x42\x43\x41\x37\x31\x22\x20\x78\x6d\x70\ +\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\ +\x6d\x70\x2e\x69\x69\x64\x3a\x36\x43\x42\x33\x33\x45\x36\x44\x44\ +\x31\x41\x46\x31\x31\x45\x32\x41\x42\x45\x39\x45\x34\x32\x44\x38\ +\x43\x30\x42\x43\x41\x37\x31\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\ +\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\ +\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x57\ +\x69\x6e\x64\x6f\x77\x73\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\ +\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\ +\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\ +\x6d\x70\x2e\x69\x69\x64\x3a\x44\x37\x35\x33\x33\x43\x46\x35\x41\ +\x44\x44\x31\x45\x32\x31\x31\x42\x45\x43\x46\x41\x34\x44\x38\x38\ +\x38\x31\x30\x43\x41\x33\x36\x22\x20\x73\x74\x52\x65\x66\x3a\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\ +\x69\x64\x3a\x43\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\ +\x32\x31\x31\x41\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\ +\x44\x31\x43\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\ +\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\ +\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\ +\x22\x72\x22\x3f\x3e\xee\x58\x0f\xf2\x00\x00\x08\x76\x49\x44\x41\ +\x54\x68\x43\xd5\x59\x0b\x70\x54\xd5\x19\xfe\xf6\x95\x07\x09\x21\ +\x10\x92\x60\x96\xf0\xd0\x52\xda\x42\x4d\x86\x48\xc7\x76\x2a\x05\ +\xeb\x83\xd6\x8e\x1d\x9d\x4e\x5b\xd1\x11\x5b\x86\x21\xc5\x8a\x65\ +\x8a\x74\xaa\x42\xa9\x82\x0c\x6d\x1d\xc5\xc1\xd2\x82\x8f\x3a\xe3\ +\x48\x61\xda\x71\xda\x80\x40\x29\x9a\x2a\x45\x22\x02\x41\x25\xa6\ +\x22\xd9\xe6\xb1\x79\x3f\x34\xd9\x98\xbd\x7b\x77\xef\xe9\xff\x9f\ +\xfb\xc8\xdd\xcd\xee\x66\x13\x93\x12\xbf\x99\x93\xff\x9c\xef\xff\ +\xcf\xe3\xbf\xe7\xff\xcf\xb9\x77\xe3\x10\x04\x7c\x86\xe1\x34\xe4\ +\x67\x16\xd6\x0e\xdc\x76\xb6\x1d\x25\x11\x15\xe9\x10\xb0\xef\x89\ +\x66\x48\x10\x6f\x0a\x53\x6d\x33\x83\x66\x6f\x10\xe2\xed\x2b\x8d\ +\x6c\xd4\x74\xd8\x37\x3f\xd6\x7c\x70\x5e\xd2\xd9\x1a\x8a\x03\xb8\ +\x98\x9e\x81\x8a\x6b\x0a\x65\xdb\x72\x60\xcb\x69\x3f\x36\x95\x5d\ +\x01\x95\x5a\xcc\x30\x19\x61\x05\x55\x22\x92\x13\x34\x28\x15\x92\ +\xac\x67\xce\x50\xeb\x93\x1b\xed\x64\x48\xc1\x84\x6c\x92\x58\x19\ +\xaa\x0d\x7f\x79\x0b\xfb\xef\xf9\xba\xac\x5b\x0e\x3c\x76\xba\x09\ +\xeb\x17\x15\xa1\x25\xa8\x21\x44\x8f\x33\x44\xab\x57\x48\x72\x09\ +\xd2\x6a\xb9\x28\x52\x1a\x7c\x44\xb7\x0b\xd3\xd3\xe1\x01\xa8\x3a\ +\x64\x85\xf6\xa7\x68\xdf\x92\xa8\xa7\x3b\xa4\x4f\x0c\x61\x80\xc7\ +\x67\xe7\x6e\x2c\x70\x61\xe7\xdf\x4e\xe3\xc0\x9a\x6f\xea\x0a\x76\ +\x80\xf1\x48\x55\xa3\x08\x84\x22\xa2\xb6\x37\x64\x30\x13\x0f\x0f\ +\x9d\xeb\x16\xc7\x9b\x7a\xc4\xf7\x76\xff\xd3\x60\x84\xb0\x76\xe0\ +\xd1\xaa\x46\xfc\x6c\x91\x17\x75\xfd\x61\x94\xe4\xa6\xa1\xba\xba\ +\x1a\xd3\xa7\x4f\x97\x4e\x9a\xe8\xec\xec\x1c\x33\xee\xae\xd5\x6d\ +\x78\x72\xbb\x2b\xe5\xbe\xa5\xa5\xa5\xd8\x78\xa6\x1b\xd7\x17\x38\ +\xf0\xc7\x8a\x33\x78\x79\xed\x0d\xba\x52\xba\x41\xd8\xf2\x66\x83\ +\xe8\xa6\x18\x39\xd5\x11\x94\x6d\x9b\xca\x42\x63\x63\xa3\x51\x1b\ +\x44\x2a\x1c\x8f\x15\xcf\xee\x1b\xcb\xdf\x96\xc5\x8e\x64\xe3\xad\ +\xaf\xea\x14\x2f\xfb\x3a\xc5\x77\x77\xfd\x43\xb6\x19\xd6\x31\xca\ +\xb1\xa7\x52\xa0\xf5\x1b\xd9\x49\x9d\xe0\x70\x50\xca\x7f\x4a\xf0\ +\x18\x34\x8f\xd1\x8a\xc6\x8b\x7b\xf5\x93\x64\xe9\xb7\xce\x48\x39\ +\x1c\x28\xc2\xa1\x84\x05\x22\x32\xe1\x74\x58\x21\xb4\xf9\xcd\x06\ +\x94\x97\x14\xe1\x5c\x4f\x08\xb7\x78\x27\xa1\xa9\xa9\x09\xc5\xc5\ +\xc5\x51\x93\x33\x37\x73\xe6\x4c\xa3\xa5\x83\x39\x0e\x87\xb1\x40\ +\xe5\xe1\xb2\x84\x73\x30\xb7\xfa\x44\x07\xae\xcb\x07\x0e\x1c\x3d\ +\x87\x83\xeb\x6e\xd2\x95\xec\x00\xe3\xe1\x93\xff\x15\xbe\xbe\x90\ +\xd8\xef\x0b\xc8\xb6\xb9\x6d\x36\x93\x84\xdb\x9b\x28\x0c\x52\xe9\ +\x6b\x47\xbc\x90\x62\x98\x76\x2b\x2b\xdb\xc4\x9e\x0b\xad\xe2\xe6\ +\x27\x0e\xcb\x36\xc3\x0a\x21\x9e\x4e\xa5\x23\x92\x7c\x90\x6d\x4e\ +\x1c\xf6\x9c\x3a\xcb\x30\xe0\xba\xc9\xd9\x0b\x73\x8c\x58\x8e\xfb\ +\x70\x5f\x3b\x67\xb7\x89\xc7\x71\x48\x71\x62\x73\x48\xd9\x79\x73\ +\x0e\x95\xce\x6c\x45\xa3\x60\xb7\x45\x85\x15\x42\xbf\x3c\x51\x8f\ +\xbb\x16\x5e\x81\xe3\xfe\x01\xac\x5b\x30\x45\x76\xb4\x6f\xa5\xb9\ +\xa0\xf1\x0a\x21\x0e\x1f\x33\x17\xb8\x6e\x87\xb9\x96\x1f\x1e\x6d\ +\xc6\xe2\x02\xe0\x95\x57\xab\x71\xfc\xe7\xdf\xd6\x95\xec\x00\x63\ +\xe3\x1b\x3e\x71\xb6\x33\x28\xb6\x55\xf7\xc8\x76\xec\xf6\xb2\x69\ +\x2c\xc7\x88\xc7\xd9\x86\xb5\x90\xa8\xaf\x19\x36\x66\xe8\x24\x9b\ +\xe3\xf6\x8a\x26\xb1\xfd\x34\xf5\xf9\xcd\x41\xd9\x66\x44\x85\x10\ +\xdf\xb4\x01\x35\xea\xfe\xb4\x40\xb6\x32\xa9\x79\x27\xec\x25\x1e\ +\x47\x13\x1a\xbd\x92\xc3\xdc\x39\x7e\xe2\xb1\x4f\x3d\x1e\x22\x14\ +\x42\x21\x2a\xfc\x3a\x63\xc2\x72\x80\x4f\xcf\x30\x1f\xa3\xfc\x0e\ +\x91\x00\xbc\x30\x76\xc4\x5e\xe2\x71\xa9\x80\xc3\x85\x63\x3e\x95\ +\x85\x9b\x08\x85\x23\x94\xa7\x02\xbd\x41\xd5\x60\x6c\x39\xb0\xfe\ +\x5f\x3e\xdc\x7a\x55\x21\x5e\xba\xd8\x8b\xbd\xcb\x66\x8c\xfb\x4d\ +\xcc\x18\x09\xc7\x37\xf1\x8d\xfb\x7c\x58\x58\xa8\xe1\xcf\x87\xaa\ +\xd0\xf2\xf8\x0a\x5d\xc9\x0e\x30\xee\xaf\xbc\x24\x8e\xd5\x07\xc4\ +\x8f\x8e\x35\xcb\x76\xb2\x58\xb4\xe3\xff\xc9\x95\xed\xfd\x40\xac\ +\xf8\x7b\x8d\x98\xb4\xf6\x79\xd9\x66\x0c\x86\x10\x85\x3e\xc7\x96\ +\x9a\x20\x07\x2e\x27\xbc\x5e\xaf\x94\x57\xe7\xa7\x41\x89\x09\x71\ +\xcb\x81\x8e\x01\x8a\x2b\xca\x81\xb0\xf1\x2a\x31\x11\x10\xee\x69\ +\x80\xff\x0f\x37\xa1\xee\xc1\x1c\x29\xf7\x2c\x71\xe0\xab\xde\x1c\ +\x43\xab\xc3\x72\xe0\xd2\xc7\x41\x74\x2b\x1a\xda\xfa\x07\x13\xe4\ +\x72\xa3\x6d\xff\x2a\x64\x7e\x6e\x29\xe6\x6e\x69\x91\xb2\x75\xdf\ +\x4a\x2c\xbf\x2a\xcf\xd0\xea\xb0\x92\x78\xf1\xbe\xf3\xb8\xf7\xcb\ +\xb3\xb0\xf9\x44\x3b\x1a\xca\xe7\x5f\xf6\x24\xe6\xb0\xe1\x27\x7f\ +\xe5\xd6\x2e\x38\x5c\x69\xd0\x94\x00\xea\x1e\xce\xc3\x9c\x1d\x41\ +\x4c\xb9\xef\x05\xf4\x3f\x7d\x8f\xde\x41\x66\x02\xe1\x9a\x97\xaa\ +\xc5\xf3\xef\x76\x8b\xe2\xdd\xb5\xb2\x3d\x5e\x89\x68\xc7\x70\x5c\ +\xd3\xee\x1b\x44\xd7\xb1\x6d\x22\xa2\x04\xa4\x6c\x7c\x7a\xa9\x78\ +\xaf\x3d\x10\x3f\x89\x47\x0b\x33\xc1\xc6\x1a\x5a\xdf\x05\x14\xfe\ +\xe0\x59\x0c\x7c\xf8\x1a\x7c\x9b\x0b\xa5\x9c\x71\xc7\x9f\x70\xe4\ +\x52\x97\x61\xa1\x63\xd4\x0e\xc4\x26\x18\xb7\xc7\x0a\xda\x47\x6f\ +\x23\x78\xee\x4e\x44\xfc\xbf\x45\xd1\xca\x67\x70\xe5\xf6\x3e\x78\ +\xcb\x8f\x61\xd5\xab\x02\x27\x1b\x3f\x36\xac\x74\x8c\xda\x81\x78\ +\x09\x36\x16\x70\x29\x1f\x42\x79\xb7\x9c\xce\xf5\x01\x38\x3c\xd3\ +\xe0\xc8\x9c\x05\xbf\xdf\x2f\x75\x15\xb5\xd1\x8b\x67\x24\x74\x80\ +\x93\xc9\x7c\x9d\x35\x8b\xc9\x51\xe8\x21\x58\x7f\x0a\x53\x97\x6d\ +\x80\x33\x3d\x1b\xb9\xd7\xad\x43\xd0\x77\x92\x78\x2d\xca\xce\x5e\ +\x52\xe1\x5a\xea\x4e\x21\xbb\xf1\x01\x88\x70\x1f\x42\x93\x97\xa2\ +\x3d\x6b\x15\xf1\x7e\x69\x97\x08\x09\x1d\xe0\x93\x80\x5f\x61\xed\ +\xc5\xe4\xa0\x76\x21\x63\xf6\xb5\xe8\x79\xed\x77\xd0\x42\xfd\xf8\ +\xe8\x8d\xa7\x90\x31\xf7\x6b\x10\xbd\xe7\xe1\xcd\x77\x27\xed\x9b\ +\x88\xe3\x7e\xb9\xad\xbf\x80\x4b\xf4\xc2\x95\xb7\x04\xb9\x8b\x76\ +\x11\x3f\xcb\xb2\x4b\x84\x11\x87\x50\xa4\xfd\x15\x84\x2e\x3e\x1a\ +\x37\xc1\xd4\xa6\x17\xa0\xbc\xb3\x86\xce\x66\xc5\xb0\x4e\x0d\x42\ +\xed\xa6\x98\xbf\x1b\x42\x69\x45\x38\x73\x21\xd2\x17\x3c\x45\x2b\ +\xf3\x18\xda\xe4\x18\x91\x03\x69\x7d\x95\x50\x6a\x36\x90\x13\x47\ +\xe0\x50\xdf\x93\x89\x65\x26\x98\x2b\xa7\x80\x4e\x8e\x1a\x68\x81\ +\x5a\x64\xb5\x6e\x23\xeb\xd4\x6e\x74\x0e\x17\xa5\xfa\xc7\x10\x03\ +\xf5\x70\x66\x7f\x11\x7d\x45\x8f\x51\x22\x64\x1a\xda\xe1\x91\xb2\ +\x03\xfc\xe4\xb3\x79\x61\x22\x02\xcf\x9c\x9f\xc2\x55\xa0\x7f\x11\ +\x99\x09\xe6\xa0\x49\x33\x4a\xf6\xc2\xe1\x9e\x8c\xb4\xc0\xbf\xa1\ +\xd6\x3d\x21\xf9\x64\xe0\x9d\xe2\x1d\xd3\x02\xef\x53\xb2\xce\x46\ +\x7a\xe9\x73\x10\xce\x2c\x43\x9b\x1a\xdc\x86\x1c\x02\x7b\xe2\xf0\ +\x93\x97\x8b\x87\x86\x81\x69\x77\xa3\xdb\x73\x1b\x7f\xe7\x49\x5d\ +\x74\x82\xb9\xe0\x29\xfc\x15\x26\xfb\x37\x42\xad\xdf\x83\x1e\x25\ +\x8f\x92\x51\xff\x09\x70\x48\x22\x8a\x30\xd2\xeb\x1f\x84\xa6\x56\ +\x43\x73\xe7\xa3\x77\xc6\x0e\x68\x6d\x9f\xc4\x4d\x58\xe6\x38\x17\ +\xe2\x21\xa1\x03\x66\x82\xf1\x93\x57\xda\x68\x5b\x8d\xc5\xe7\x95\ +\x3c\xa4\x1b\xd8\x10\x3d\xf8\x4c\x74\xa8\x8d\xc8\x6a\xdf\x89\xec\ +\xf6\xc7\x91\xe1\x2d\x85\x33\xa7\x44\xd7\x98\x76\xb4\x8b\x4a\xcd\ +\x03\x88\xd0\xe2\xf9\xa8\xcc\x5a\xf4\x22\xb2\x27\xcd\xd1\x75\x84\ +\x44\x8b\x8d\x87\x21\x21\xb4\x7c\x6e\xb6\x94\x7c\xc3\x8a\x50\x27\ +\xc2\x14\xef\x66\xd8\x0c\xe4\xa5\x76\xd6\x2b\x53\x6e\x85\xdb\x7b\ +\x07\xf9\xac\x20\xdc\xbc\x9f\x64\xc8\x76\x63\x0b\x84\x3e\x78\x84\ +\x1e\xcc\x21\x19\x2e\xe9\xa5\xcf\xc2\x61\x5b\xfc\x48\x11\xe5\xc0\ +\xec\x1c\x0f\x7e\xff\x95\x88\x75\xc3\x36\x3f\xb7\x02\x2e\xef\x06\ +\x3a\x15\x76\xc2\x33\xf7\x3e\xc3\x2a\x35\xa4\xcd\xdb\x24\x9d\x76\ +\x16\x96\xc3\xbf\xe7\x3b\xb6\x1b\x9b\x3e\x41\xc3\x74\x21\x51\xce\ +\xf4\x15\x6d\xa5\xc4\xfd\x92\xd1\x63\x74\x88\x72\x60\xfe\xb4\xf4\ +\xb8\x37\xac\xab\x60\xb9\x61\x31\x02\x38\x28\x1f\xe6\xac\x8d\x3b\ +\x9e\xdb\x7b\x27\x3d\x94\x27\xe9\xc8\xbc\xda\x30\x1e\x3d\xa2\x72\ +\x20\x7f\x92\x1b\x0d\x74\xc3\x16\xad\x3e\x24\x5f\x61\xf9\x86\xed\ +\x3e\xfa\x6b\x79\xf3\xf2\x69\x93\x28\xc1\x62\x61\x72\x1c\x36\x7c\ +\x63\xc7\x8e\xe7\x9c\x52\x46\xe3\x35\x8f\x68\xbc\x94\x92\xb8\xe3\ +\x93\xb0\x75\xc3\xe6\x2e\xb9\xdf\xba\x61\xf9\xa7\x12\x73\x80\x78\ +\x03\x25\xe3\xe2\x8f\xe7\x1c\xf1\x78\x89\x10\x15\x42\xff\xe9\x56\ +\xe2\xde\xb0\x9f\x06\x63\x3d\x5e\x2c\xa2\x1c\xa8\xef\x55\x71\xef\ +\x5b\xee\xa8\x1b\xd6\x3d\x75\xb6\xa1\x1d\x1d\xdc\x53\x67\x8d\xe9\ +\x78\xb1\x18\x72\x8c\x1e\xf6\xf5\x49\x69\xde\xb0\x63\x85\xb1\x1e\ +\xcf\xc4\x84\xfd\x26\xb6\x83\x39\xfe\x61\x6b\xda\xb6\xf3\x58\xf6\ +\x79\x27\x8e\x54\x9e\x19\xfe\x9b\x78\x22\x62\xea\xd6\x6a\x71\xfb\ +\x81\x77\xa2\xbe\x89\xa3\x76\xe0\x27\x0b\x8a\xb1\xe9\xf5\x36\x72\ +\x8a\x1d\xa3\xc2\xff\xca\xa1\x8a\xb4\xa0\xba\xce\x0f\x72\x5c\x97\ +\x92\x7f\x0b\xe3\x3a\x0f\x34\x9e\xa0\x35\x5c\xff\x05\x17\x8e\xbe\ +\x7e\x16\x81\x5d\x2b\xf5\x1f\x93\x23\x11\xfd\x97\xac\x6b\xff\x7a\ +\x01\x6b\xe6\x79\x71\xd0\xd7\x42\x8b\xd1\x17\x27\x11\x5b\x37\xa4\ +\xb5\x60\xe3\x8f\x34\x91\xf5\xf1\x03\x0f\xef\x71\x00\x95\x67\x6b\ +\xd0\xb5\xe3\xfb\x92\x73\x84\x42\x21\x11\x0e\x87\xb1\xb8\xe2\x7d\ +\x34\x56\xd5\x22\x1c\x0c\x49\xc5\x44\x85\x27\x33\x0d\x45\x65\xf3\ +\x70\xea\x96\xf9\x70\xb9\x5c\x83\x0e\xa8\xaa\x0a\x96\x66\xe1\x36\ +\x17\xda\x21\x4b\xda\xf5\x5c\x4c\x8e\xa5\xa6\x69\x96\x34\x0b\xef\ +\x1c\x4b\x86\xd3\xe9\x94\x5b\xce\x52\x4e\x4c\x75\xb7\xdb\x2d\xdb\ +\x2c\x99\xb3\x4b\x8f\xc7\x23\xa5\x59\xb8\x6d\xe7\xb8\x2e\xc7\xa1\ +\x49\xf5\x20\xb0\x4d\x66\x4e\x3e\x5c\x31\xed\xed\x1c\xc3\xe4\xe3\ +\x41\xc6\x2d\x15\x7b\x3d\xb6\xb0\x53\x0c\xd3\x69\x7b\xdd\xae\x03\ +\x80\xff\x01\xd2\x88\x18\xc5\x3e\x20\xdc\xe8\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x11\x71\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x03\x66\x69\x54\x58\x74\x58\x4d\x4c\ +\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ +\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ +\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ +\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ +\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ +\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ +\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ +\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ +\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\ +\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\ +\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\ +\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ +\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ +\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ +\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ +\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ +\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ +\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ +\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\ +\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\ +\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ +\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\ +\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x43\x42\x42\ +\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\x31\x41\x31\x32\ +\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\x43\x22\x20\x78\ +\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\ +\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x31\x36\x46\x42\x34\x31\x36\ +\x36\x30\x34\x30\x34\x31\x31\x45\x33\x38\x39\x31\x36\x38\x30\x41\ +\x44\x31\x35\x34\x37\x42\x34\x33\x36\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x31\x36\x46\x42\x34\x31\x36\x35\x30\x34\x30\ +\x34\x31\x31\x45\x33\x38\x39\x31\x36\x38\x30\x41\x44\x31\x35\x34\ +\x37\x42\x34\x33\x36\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\ +\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\ +\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x57\x69\x6e\ +\x64\x6f\x77\x73\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\ +\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\ +\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x37\x35\x35\x38\x35\x35\x41\x33\x30\x33\x30\ +\x34\x45\x33\x31\x31\x42\x33\x34\x31\x38\x46\x37\x46\x45\x43\x46\ +\x35\x39\x36\x32\x38\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ +\x3a\x43\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\ +\x31\x41\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\ +\x43\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\ +\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\ +\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\ +\x22\x3f\x3e\x25\xef\xd8\x0a\x00\x00\x0d\xa1\x49\x44\x41\x54\x78\ +\xda\xb4\x99\x09\x70\x1b\xd5\x19\x80\xff\xb7\xda\x95\x2c\x59\x3e\ +\x15\x1f\xb2\xe3\xc4\x09\x24\xce\x4d\x0e\xe7\x32\x26\x99\x10\xa8\ +\x4b\x1c\xda\xa1\xb4\x14\xca\x94\x63\xa0\xc0\x4c\x07\x4a\x18\xc8\ +\x14\x68\x3b\x69\x21\x09\x85\x34\x1c\x1d\x68\x81\x94\x40\x03\x21\ +\x5c\xe1\x8a\x73\x34\x0c\x14\x08\x39\x4c\x48\x20\x97\xcf\xd8\x4e\ +\x7c\x24\x3e\x64\x59\xb6\x0e\x4b\xbb\xda\xd7\xff\xad\xde\x3a\x9b\ +\x8d\xe4\x23\xd0\x37\xf3\x8f\x56\xbb\xef\xad\xfe\xef\xfd\xd7\x7b\ +\x4f\x84\x52\x0a\xac\xa9\x91\xa3\x20\x37\x6e\x80\xfe\x93\x15\xb0\ +\x65\x77\x17\xdc\xb3\x25\x0f\xe2\xb5\x45\x0b\x8a\x61\xfb\x1b\x2f\ +\x42\xb2\xc3\x0e\x23\x6d\xc1\x63\xb6\x22\xc7\xb4\x70\x0d\xfc\x80\ +\x4d\x18\xb8\x8a\x1e\x02\x69\xdc\x9d\x90\x74\x69\x39\xdc\xb8\xd4\ +\x05\x2f\xde\x7c\x26\xee\x80\x2f\xf6\x1f\x84\x65\x37\xdf\x0d\x81\ +\x60\xe8\x62\x7e\x6f\x21\xfc\xc0\x8d\xe8\x16\x08\x57\x15\x81\x54\ +\xf8\x08\x80\x65\x36\x74\xef\x58\x79\x87\xb7\x72\xef\x2a\xc1\x46\ +\xba\x84\xa4\xd4\x3b\xc7\x3f\xed\xfc\x26\x9e\x25\x76\x6c\x7e\x09\ +\x84\x86\xcb\x08\x9f\x08\x62\x10\xbd\x51\x83\xa8\x2a\x6d\x7a\x05\ +\x2d\x70\xfb\xff\x05\xa0\xef\xd3\x54\xb0\xba\xdd\xe0\x6f\x5d\xb8\ +\x22\x58\xf5\xe1\xfa\xcc\xcb\xaf\x87\x50\xcd\x27\xe0\xab\xef\xf1\ +\x09\xb6\xd4\x32\x84\x38\xa0\x0f\x0a\x7d\x12\xd5\x95\xb6\x18\x3e\ +\x89\xc1\xa2\x84\x2b\xad\x79\x27\xbf\x8e\x22\xc0\x77\x02\x29\x9c\ +\xc4\x6e\x26\x4d\xad\xa1\x3f\x28\x40\xf7\x96\x74\x08\xfb\xd5\x15\ +\xaa\x22\xae\x77\xdf\xfa\x34\x08\xf6\x5b\x21\x5c\xf3\x3b\x08\xd6\ +\x6c\x03\xef\x11\x8f\x8f\x58\x53\xcb\xdc\xe5\xf6\x4a\xae\xac\xc8\ +\x3f\x8d\x22\x18\x2c\x61\xb4\x80\xca\x85\x01\x1c\x46\x80\xf1\x78\ +\x6d\x45\x51\xd8\xbd\xef\x0b\x22\xea\x17\x81\x16\xe9\x0e\x2a\x2a\ +\xeb\x33\x66\x28\x20\x37\xad\x41\x77\x02\xb0\x15\x3d\xcb\x9f\x7e\ +\x9c\xe6\x3d\xd2\xbd\xab\x7d\x37\x59\x9e\x73\x75\xd2\x61\xbc\x21\ +\xf1\xb1\xa2\x01\x46\x30\xb9\x12\x35\x03\xe0\xe3\xef\xf8\xb3\x24\ +\x14\x99\x41\xf4\x1f\x2f\x52\x10\x22\xfa\xbd\x01\x82\x9d\x91\x55\ +\x69\xe3\xec\x20\x77\xf4\xe3\x37\x16\xc0\x66\x88\x6d\x08\xe1\xa9\ +\xf0\xec\x25\x37\xb8\x4a\x6c\x47\x38\x84\x14\x07\x22\x1e\x40\x34\ +\x36\xe3\x16\x36\xce\x86\x62\xe7\x63\x22\x6c\x0c\x42\xc8\x08\xa1\ +\x7c\x2f\x00\xa0\xa4\xcb\x5e\xa8\x8c\x0e\xb7\xe2\xbb\x3b\x42\xf1\ +\x21\xe8\xc7\xa9\xde\x63\xdd\xef\x78\x0f\x65\xdc\x96\x31\xdb\x5a\ +\xc5\x5d\x41\x32\xb9\x14\xba\x65\x57\x09\x85\xd0\xb5\xa8\x37\x66\ +\x1d\x82\x2f\x12\x4e\x60\x97\x6f\x05\x92\xbf\x89\xd2\xce\x99\xf8\ +\xa2\x31\x14\x22\x45\xc8\x36\x1b\xaf\x53\x70\x4c\x0d\x42\xdc\x87\ +\x10\xf2\x45\xc7\xc0\xc9\xbf\xb8\x8b\x95\x40\xff\x27\xa3\xaf\x95\ +\xd2\x02\x35\x16\x10\x93\x43\x20\x65\xab\x5a\x60\xb3\xec\x24\xd8\ +\x6f\x81\x70\xed\xfd\x10\xac\xc6\x98\x38\xea\xf1\x3b\x27\x64\xde\ +\x97\x3a\x55\xaa\x35\x40\x58\x4c\x56\x38\x8b\xd2\x84\x4a\xb5\xa3\ +\x72\x6c\xc6\x53\x28\xf5\x4c\x27\xc4\xd5\x8b\xd7\x4c\xd8\x2c\xf9\ +\x99\xf1\xb9\x85\x80\x07\xb7\x7c\x51\x00\x0d\x8f\x8f\x01\xaa\x2a\ +\x0b\x94\x40\x68\x67\x62\x88\x5f\x63\x60\xaf\x88\x05\xf6\x51\x4f\ +\x20\x75\xaa\xeb\x51\xe7\x04\xb1\xc9\x64\x05\xc1\xe0\x42\x06\xf7\ +\x01\x99\x52\xef\x04\x42\x32\xbe\xe4\xfd\xfa\xb9\x84\xf8\x67\x58\ +\x17\xdd\x9d\xb0\xf0\x15\x60\xda\x6d\x1e\x5e\x21\x63\xbf\x2a\x88\ +\xfb\x45\x87\xbd\xac\xe5\x63\xd9\x97\x5c\x14\x05\x25\xc0\x62\x42\ +\x80\xc8\x99\x33\x5a\x60\xab\xa1\x4d\x60\x9b\xb8\x0e\x1c\x45\xcb\ +\x21\x63\x8a\x2b\xb9\xef\x84\x67\x4d\xa0\x49\x99\x85\x43\xd3\xb8\ +\xa4\xc7\x11\xfd\x59\x2a\x32\x4c\xe3\xa0\x4e\x94\x64\x14\x07\x8f\ +\x87\x24\x1e\x1b\x5a\x5c\xa1\xc5\x2c\x5c\xa5\xc9\xc3\xaf\xc4\xbc\ +\xe5\xff\x3c\xa5\xd2\x9a\xe1\x58\x8e\x10\xbd\x71\x21\xfa\x37\x23\ +\xc4\x93\xe0\x98\xbc\x1c\xd2\xa7\xa7\x3a\x7a\xbf\xeb\x5e\x19\x6c\ +\x8e\x4e\x4f\xa0\xbc\x11\x22\x95\x42\x34\x8f\xcf\xb6\x11\x40\x87\ +\xb0\x19\x20\x44\x84\x60\x56\x5c\x32\xfc\x20\x3e\xd7\x2c\xee\x6b\ +\x9d\x87\x3b\x3f\x23\x37\xb4\x6c\x0b\xbc\x33\x7a\x39\xa4\x04\x6a\ +\xce\x05\x36\xc5\xc0\xb6\x8e\x65\x81\xbd\x16\xf1\xd1\xd2\x6a\x85\ +\xbd\xe7\xb0\xe7\x1e\x62\x71\x6d\xb1\xe7\x59\x3a\x0c\x45\x8d\x1a\ +\xdc\x87\x65\x9b\x30\x01\x41\xcf\x3c\xc9\x86\x7a\x61\x74\x35\xb3\ +\x4c\x1f\x11\x40\xde\x75\x76\xc2\xef\x49\x59\x4b\x92\x8f\x74\xef\ +\x17\x6e\x6b\xd9\xd6\xf7\x1a\x42\x38\x75\x08\x4a\xdb\xf0\xe7\x10\ +\x62\x3c\x05\xeb\xa5\x4f\xe0\xb5\x08\x82\x6d\xab\xad\xfb\xa0\xe7\ +\x26\x32\xcf\xb5\x23\x29\xd7\xe2\x31\x01\xc8\x5c\x69\x9c\x79\xc9\ +\xc7\xdd\xc5\x19\x47\x79\xc5\x24\x51\x9e\x0a\x47\x64\x01\xc1\x50\ +\x69\xa5\xcc\x05\xf6\x2a\x4b\x92\x70\x5f\xcb\x36\xdf\xdf\x11\x22\ +\xb9\xef\x78\x12\x56\x9e\x00\x50\x05\x21\x84\xb5\x60\x2d\x14\xc0\ +\x3a\x71\x15\xf6\xf6\x42\x92\x7f\x9b\xb5\xbb\xb2\x7b\x59\xe6\x02\ +\xd7\x9e\xa4\x6c\xc1\x6b\x02\x60\xc1\x29\x11\x92\x59\xc7\xbc\x94\ +\x5b\x40\x2f\x70\x4a\xac\x4f\x14\xd3\x89\x8c\x19\x4d\xc6\x67\xb4\ +\x8f\xad\x6e\x70\x1e\x3e\xc7\x40\xd6\xb3\x9b\x9e\xe9\x14\x0c\xec\ +\x60\x22\x00\x8b\x11\x80\xa5\xc8\xb4\x99\xb6\x5a\xc1\x9a\xf6\x68\ +\x6b\x85\x6f\x4d\x7e\xb9\xe4\xe8\x3d\x92\x0c\x8a\xa7\x1f\x88\xc4\ +\x2c\xb1\x1a\xac\xe3\xc2\xe8\x52\x0f\x43\xae\x58\x0f\xbd\xb9\xad\ +\xd2\x99\xff\xc8\x57\xf4\xcc\xcd\x3e\x3c\x73\xbc\xcf\xc7\x01\xf8\ +\xec\x6b\xef\x64\x13\x54\xc2\xd3\x67\xf4\x9c\xf2\x10\xa1\xd4\x57\ +\x44\x21\x88\xcf\xa2\x53\x51\x71\xac\x1b\xb0\x97\x80\xfd\x1d\xbc\ +\xc7\x80\x2f\xe1\xe3\xd8\xf5\x31\x94\x17\x2e\x48\xa3\x3c\x68\xf4\ +\x2a\x99\xcc\x25\x85\x4b\xaa\xbf\x3e\x32\xab\x7b\xbf\x6f\x65\x7e\ +\xb9\x68\xf7\x57\x5b\xd0\x6d\x02\x60\xcd\xc2\x14\x5b\x90\x03\x62\ +\x5e\x39\x48\x19\xcf\x41\xed\xba\x79\xb0\xc1\xbb\x0c\x3a\x7c\x5d\ +\xd1\x7b\xcb\x0f\xd6\x4c\x1d\xe3\xed\xe1\x00\x21\x9e\xef\x03\xb1\ +\x99\xd5\xa4\x37\x8e\x30\x97\x69\xe7\xfd\x88\x4a\x9b\x0b\x05\x52\ +\x50\x3b\xd8\x7a\x49\x88\xe3\x3e\x46\x2b\xe8\x96\x90\x9c\x97\x5a\ +\x9b\x47\x95\xa6\xbf\xd4\xba\x5d\x09\x3b\x27\x45\x41\xee\xb1\x43\ +\xa8\x15\x7d\xa3\x15\xb3\x53\xc7\x16\xa8\x7b\x6a\x0e\x4c\x7c\xb0\ +\x12\xdc\x63\xc6\xc3\x95\x97\x5f\x69\x79\xf5\xcb\xc5\x93\xaa\x5a\ +\x32\x72\xe2\xa4\x4c\x63\xda\xb4\x19\x0a\xa1\xc4\x33\x16\xcb\x54\ +\x6e\x3e\x71\x53\xe2\x65\xca\x44\x00\xc4\xb0\x24\x8e\x0b\xe3\x28\ +\x94\xce\x64\x2d\x4a\xdf\xd2\x5a\xa1\x44\xd2\x66\x51\x50\x42\x36\ +\x88\xf6\x47\xa0\xed\xdd\x54\xd8\x4a\x72\xe0\xde\x87\x57\xc3\x8a\ +\xbb\x6f\x01\xd1\x6a\x83\x45\xf3\x17\x0b\xff\xfe\xf2\xca\x71\xd5\ +\x2d\x19\xae\xf3\xf2\x3d\x1d\x50\xda\x1a\x67\x2d\x65\x5a\xd9\xd2\ +\xa2\x91\xd4\x01\xa3\xf2\x09\x21\xec\x05\x52\x47\xd6\x95\x19\x3b\ +\x5a\xb7\xcb\x72\xc6\x4c\x0b\x78\x0f\xe7\xc0\x93\x0d\x51\x78\x6b\ +\x67\x14\x3a\x3c\x1e\x78\xf2\xf9\x57\xe0\x57\xd7\x97\x03\x21\x12\ +\x94\xce\x5f\x24\x6c\xda\xbb\x74\x2c\x5a\x22\x63\x40\x69\x72\xc1\ +\x22\x30\x81\xf2\x9a\xa8\x23\x05\x00\xd3\xce\x2a\x2e\x94\x3d\x4f\ +\xf4\xe4\x96\xa5\xed\x69\xfb\x2c\xa4\xac\xae\x06\x78\x65\x97\x13\ +\x1a\x5b\x7a\x50\x5a\xa1\xf1\x74\x0b\x3c\xb7\xe1\x0d\xb8\xfe\xda\ +\xab\x70\xb4\x05\x4a\x8a\xaf\x10\x5e\xdf\xbb\x74\xdc\x89\xe6\xcc\ +\xf4\x41\xf6\x10\x42\x9c\x5d\x1d\x8a\x50\x37\xd2\x4a\x9c\x08\xe2\ +\x02\xb1\x8e\xb2\x79\xd5\xb9\x59\x87\xdf\x3d\x90\x16\x75\x08\x32\ +\x04\x43\xfd\x70\xea\x74\x2b\x1c\xad\xae\x85\xda\x86\x46\x78\x7e\ +\xe3\x9b\xf0\x93\x1f\x2f\xc1\xba\x21\xc0\xc2\xd9\xa5\xc2\xa6\x3d\ +\x4b\x8a\x8e\x9d\xce\x4c\x1b\xce\xbb\x75\x3d\x04\x32\xfa\x53\xd3\ +\x06\x69\x48\x00\x7a\xc1\x5e\x96\x9e\xb7\xaf\x3d\x4f\xc6\x16\x48\ +\xbe\x1d\x6b\x95\x1a\x90\x04\xd5\x46\xc3\xd0\xd3\xd7\x07\x75\x27\ +\x9b\xe0\xe8\x89\x1a\xa8\xae\x6f\x80\x7f\xbc\xfa\x16\x94\xff\x68\ +\x31\xae\xd4\xd1\x12\x73\x4b\x2d\xaf\x7f\xb5\x64\xd6\xb7\x8d\xae\ +\x8c\x44\xef\x33\x89\xae\xc7\xb0\x83\x98\xc6\xd9\x88\x53\xe4\x57\ +\x0d\x45\xe7\x82\x92\x5f\x3c\x8d\xf4\xec\x7c\x42\x69\x34\x42\x54\ +\xd7\x37\x6a\x10\x35\xf5\x27\xe1\xe5\x4d\xef\x40\xd9\x92\x12\x2c\ +\x53\x04\xdd\xa9\x54\xdc\xbc\x6f\x71\xe9\x37\xf5\x59\x2e\x3e\xde\ +\xfc\xee\x44\x10\xc3\x06\x18\x4c\x59\x63\x99\x97\x0d\x4b\x84\xc8\ +\xec\x29\xc4\x8b\x10\xa7\xcc\x10\xdf\x55\xd5\x42\x15\x5a\x62\xc3\ +\x1b\xef\xc1\x55\x8b\x16\x80\x12\xa5\xb0\x70\x4e\x89\xb4\x79\x5f\ +\xe9\x35\xfb\xaa\xb3\xb3\x4d\xcb\x86\xe8\x20\x50\xc3\x06\xa0\x43\ +\x28\x2f\xe3\x4e\x2b\x45\x5f\x9c\x19\xd6\xf3\x41\x84\xf0\x98\x2d\ +\xa1\xb9\x13\xc6\x44\xcd\xc9\x46\xd8\xf8\xe6\xfb\xb0\xb8\xa4\x18\ +\x21\xb0\xa4\x16\x2f\xb4\xbe\xbd\x7f\xe1\x8d\x9f\x1f\xcb\x75\x0f\ +\x01\x41\x47\x02\x90\x50\x69\xc3\x6c\x87\x81\x86\x72\xf1\xb3\x99\ +\x2b\x6e\xac\xb0\x7e\x84\x68\xdf\xbe\x46\xa9\xa6\xa2\x10\x1d\xb0\ +\x44\x5d\x03\x1c\xa9\xaa\xd1\x2c\xb1\xe9\xdd\x8f\x30\x16\x66\x82\ +\x2c\xab\x0c\xc2\xb6\xb5\x72\xde\x5d\x3b\x0f\x8d\x2e\x30\xfc\x46\ +\x22\x98\xa1\x01\xda\xde\x0f\xc5\x5b\x19\xca\x86\xd9\xd6\x66\x9c\ +\x42\x78\x2c\xdb\x81\x1a\x14\x0f\xf0\xb5\x8d\xb6\x44\xc0\x98\x68\ +\xab\x58\xad\x1c\x52\x2d\x82\xc2\x20\xfa\x02\x01\xa8\x6b\x38\x05\ +\xc7\x6b\xea\xa0\x0a\x61\xde\x78\x6f\x1b\xcc\x99\x39\x15\xc2\x1a\ +\xc4\x02\xfb\x47\x07\x2f\x7b\xe8\xbd\xbd\x63\x0b\xf9\xef\x98\x21\ +\xd4\xa1\x8e\x5d\xcc\x11\x1e\x35\x2f\xb2\x4c\xee\x82\x22\x8f\x31\ +\x00\xf8\x4d\x6b\x1b\xb6\x80\xf3\xcd\x9b\x41\x9a\x3f\x7a\x4c\xf9\ +\x32\x2a\x08\xb2\x0e\x51\xdb\xd0\x84\x10\xf5\xe8\x4e\x0d\xf0\xf6\ +\x87\xbb\x60\xda\xe4\x09\x10\x08\xc9\x70\xc5\xbc\x85\x8e\x5d\x47\ +\xa7\xad\xde\xf8\xc9\x25\x13\x4d\x10\x51\xe3\x5e\x79\xb8\x00\x6a\ +\x1c\x80\xb0\xc9\xdf\xd9\x98\x16\xae\xbc\xdf\xac\xbc\x2e\x25\xb3\ +\x48\xe3\xd6\x55\xca\x76\x45\x10\x22\x1a\x84\x3f\x08\x27\x4f\x9d\ +\x86\x13\x75\x27\x35\x88\xad\x15\xbb\x61\xd2\x84\x42\xe8\x0b\x46\ +\xa0\x74\xce\xdc\xe4\xbd\xb5\x13\x9f\xfb\xdb\x07\x93\x27\x9b\x00\ +\x46\x54\x89\x75\x37\xba\xd0\xef\x0d\xc1\x8a\x05\xb4\x8e\xf7\xe9\ +\x8b\xa3\x7c\x8f\x51\x16\xcf\x25\xb5\x6f\x3d\xaa\xbc\x29\x13\x21\ +\xcc\x8a\x1d\x83\x68\x6a\x6e\xd5\x5c\xa9\xbe\xe9\x14\x7c\xbc\xfb\ +\xbf\x30\xa6\xc0\xad\x41\x94\x14\xcf\x75\x1e\x6f\x2d\x78\xf5\x91\ +\xd7\x66\xcc\xd0\x21\xe4\xb1\x87\xe8\x48\x2d\x00\x03\x16\xa0\x17\ +\xb8\x8f\x06\x40\x40\x3c\xca\x57\x8d\x7e\xd3\x52\x38\x1e\x84\xef\ +\xea\x12\x52\xb5\x69\xa5\xf2\xcf\x30\x15\x42\x3a\xc4\xa9\xd6\x36\ +\xa8\xc6\xcc\xc4\xdc\x6a\xf7\x67\x5f\x41\x0e\x96\x85\x5e\x7f\x18\ +\x2e\x9f\x3d\x3f\xa5\xa5\x3b\xfb\xed\xdb\x9f\x99\xc7\x0e\x0a\xa2\ +\x1e\x5c\x8d\xf7\xf9\x03\xc3\x3f\x56\x31\x6c\x2d\x2d\x2a\x3d\xfd\ +\x53\xcc\x60\x77\xa1\x94\x61\x37\xcc\x3a\xc2\x71\x5c\x77\x1d\x17\ +\x88\xfb\x43\x4a\xbd\xb8\x44\x26\x97\x21\xdf\x24\xdc\x45\x4d\x8a\ +\x1d\x4e\x59\xda\x05\x70\xbf\x87\x85\xef\xdc\xb1\x0a\x45\x17\x20\ +\xb1\xa0\x7c\x6b\x07\x2d\xf8\xcd\xb3\xe2\x43\x49\x44\x75\x04\x55\ +\x09\x6c\x56\x2b\x8c\xce\xcb\x81\xb1\xf9\x79\x50\x38\x3a\x1f\x66\ +\x4d\x9f\x02\x5d\x1e\x2f\xa4\x3a\x6d\xf0\x45\x65\xa5\x2f\x18\x0c\ +\x95\xfd\x79\xe5\x03\x07\xb2\x47\xb9\xc0\x95\x91\x0e\x29\xce\xe4\ +\xe1\x03\x70\x08\x7d\xa5\x18\x45\xd7\x92\xf9\x77\x07\xa5\x5d\xb3\ +\x08\x19\x25\x1b\x02\x8c\x05\xb3\x97\xbb\x15\x5b\xeb\xcc\x4b\x74\ +\x2e\xf4\xaf\x77\x69\xe1\xfd\x2f\x8b\xab\xed\x82\x9a\xac\x43\xe4\ +\xe7\x66\xc1\x68\xb7\x1b\xf2\xdd\x39\x30\x2a\x23\x13\x9c\x0e\x3b\ +\xa4\xa7\xd8\xe1\xf3\xaf\x0f\xf8\xc2\xfd\xe1\xb2\xc7\x7e\xff\xe0\ +\xa0\x10\x09\x01\x38\x84\xc4\x97\xc1\xfa\xe6\xc3\x46\x69\xe7\xe5\ +\x84\x64\x1d\x8c\x9d\xf3\x9c\xb7\xae\xb7\x0c\x72\xb0\x35\xb0\xb9\ +\x5f\xff\xaa\x3a\xf1\x4f\x9b\xa5\xe7\x1c\x16\xd5\xc9\x20\x44\xd1\ +\x02\xb9\xa3\x46\x69\x00\xf9\x39\xd9\x90\x9e\x8e\x8a\x3a\x1c\x90\ +\xed\x4a\x85\xcf\x2b\x0f\xf8\xa2\x8a\x32\x28\xc4\xa0\x0b\x25\x36\ +\xf3\x86\x38\xd0\x0a\x17\xd6\x81\x4b\x0d\x19\xc8\x1f\x67\x7b\x68\ +\xcc\x46\xc6\xfb\xac\x9f\xff\x81\xdb\x84\xfd\xf7\x5e\x23\xdf\x1a\ +\x50\x84\x3e\x16\x13\x0a\x96\xe6\xb3\x5d\x5d\x70\x1a\xe3\xe2\x64\ +\x73\x0b\x9c\x6e\x69\x83\xb3\x9d\x5d\xd0\xda\xee\xc1\xec\x54\x9c\ +\x66\x11\xc5\x5d\x7f\x7c\x62\xdd\xfc\x8e\x2e\x0f\xc4\x8b\x09\x61\ +\xa8\x28\xe7\x10\xe1\x73\x10\xaa\x9b\x2b\x13\x30\xd5\x81\x44\xfb\ +\x5c\xe3\x73\xd6\x3f\xb0\x76\x85\xb0\xef\xa6\x05\xf2\x2f\xfc\x8a\ +\xd0\x3b\x00\xd1\xe9\x81\xd6\xb6\xb3\xd0\x72\xf6\x0c\x9c\x69\xef\ +\x80\xf6\xae\x6e\x68\xeb\xf0\x0e\x09\x31\x24\x00\x87\x50\xce\x59\ +\x82\x86\x38\x4c\xdc\x4a\x9c\x40\xfc\x86\xbe\x6c\x5c\x68\xc3\x63\ +\xc2\x9e\x45\x85\x91\xf2\x3e\x59\xf0\xc5\x20\x14\xdc\xd1\xa1\xd2\ +\x67\x3b\x70\xf6\xdb\xe1\x6c\x47\x27\x74\x76\x7b\x87\x84\x18\x16\ +\x00\x87\xd0\x8f\x48\x8e\x72\x9f\x0e\x99\x20\x02\x26\xa0\x78\xf7\ +\x83\xc6\xc3\xdc\x9d\x2f\x5b\xbe\x9a\xe1\x8a\x94\x31\x88\x14\x49\ +\x05\x16\x8f\x3d\xbd\x7d\xd0\x89\x20\x67\x3b\x3b\x2f\x84\xb0\x88\ +\xbb\xfe\xf0\xd7\x75\xf3\xdb\x0d\x10\x83\x06\x71\xa2\xc6\x4f\xf0\ +\x46\xfc\x1f\x99\x21\xa8\x55\xfb\x55\x96\x81\x22\x85\x10\xf3\x8f\ +\x78\xac\xbb\x10\x22\x0d\x61\x70\x3f\x4d\x20\x3d\x35\x05\xb2\x5c\ +\x99\x90\x9b\x95\x05\xb9\xd9\x59\x90\x95\x99\x09\x79\xd9\xe9\xb0\ +\xe7\x9b\x83\x3e\x59\x56\xae\x5a\xf3\xc8\x43\x07\x59\x60\x8b\x17\ +\xf3\xaf\x08\xaf\xd8\x5a\x76\x31\xc0\x0c\xf9\x2f\xa5\x51\x69\x63\ +\x43\xe5\x0f\x30\x4b\x18\x21\x98\x25\x8c\x6f\xd1\x37\x86\xa5\xb3\ +\xe7\xa6\x7d\xf1\xf5\x81\x97\xce\xb4\x77\xcd\x4e\x74\xb8\x3b\xac\ +\x56\xbc\xde\x4f\xd8\x4c\x39\x5e\xa4\x10\x8d\x46\x55\xe6\xc3\xaa\ +\x1a\x5b\xba\xe0\x77\x6d\x16\x45\x31\xf6\x7a\x66\x65\xf6\x2c\x03\ +\x37\xc8\xec\x5a\xb7\xba\xcf\x9e\xa7\x0e\x07\x42\x53\x9d\xc4\xc6\ +\x39\xa4\x28\xec\xf9\xfa\x58\xd6\xcf\x96\x77\xc6\x7e\x63\xa4\x8a\ +\xcf\x7a\xca\x47\x72\x73\x73\x89\xcb\x65\x63\xee\x47\x52\x52\x52\ +\x58\x00\x92\x48\x24\xc2\x94\x24\xba\xb2\x8c\x4e\x92\xa4\x81\xef\ +\xec\x19\x13\xcd\xa7\xf8\xa7\x4b\x0c\x9f\xf7\x6e\x7f\x08\x8e\x4f\ +\xcb\x8c\x5c\x77\xac\xdb\xfa\x01\x42\xa4\xea\x10\x8c\x97\xaa\xf8\ +\x9e\xa8\x0a\x3b\x3f\xfd\x02\xd6\xde\xb1\xf4\xf1\x47\x57\xfc\x96\ +\xac\x79\xe6\x05\x3a\xe2\x18\x58\xf6\xba\x43\xf3\x79\x9c\x65\x81\ +\x2b\x42\xf0\x5a\x83\xd1\x4c\x02\x30\xf0\xa9\x1d\x0f\xc6\xa0\xce\ +\xbb\x67\xec\xc3\x9e\x19\x9e\x6b\x2d\xd9\x2e\xce\xa9\xf2\xd9\x5e\ +\x47\x88\x14\x3d\x26\x88\xc0\xd6\x28\x02\xdc\x75\x45\xce\xd3\xdb\ +\xf6\xd6\xae\xf2\xf9\x7c\x01\x14\x75\xc4\x16\x60\xee\xc1\x14\x66\ +\x8d\xc6\x5c\x42\xab\xc2\xf8\x55\xe4\x55\x59\xc4\x7b\x7a\x75\xb6\ +\xc6\x4e\xa5\x89\xb1\x62\x6b\x27\x73\x7c\x9c\x76\x9f\x3f\x1f\x38\ +\x50\x0e\x60\xd6\xbe\xc4\xa1\x7e\xd8\x10\xb4\xdf\xc0\xfb\x6a\xe1\ +\xff\xcb\x29\xf2\xea\x8a\x7d\x75\x1b\xb1\xbf\x65\x44\x75\xe0\xbc\ +\xca\x27\x08\x9a\x40\x6c\x1a\x07\xfc\xd9\x14\xb4\xf1\x8e\x6a\x86\ +\xdb\x58\x7f\x49\x56\xd4\xfa\x71\x8e\xe0\x47\x22\xa1\x1e\x01\x68\ +\x5f\xc9\x28\x7f\xc5\x9e\xfa\xd0\x2b\xb1\x90\x3a\x17\x47\x17\x65\ +\x01\x0c\x4e\x95\x7d\xa2\x7b\x50\xf4\x73\x76\xad\xb9\x0a\xb7\x0a\ +\x18\x5d\x49\x77\x21\xf3\xc1\x95\xd9\xcd\xf4\xc6\x83\x5e\xbb\x8f\ +\x7b\x67\xe2\x16\x03\xda\xfd\xd3\x3d\xcc\xcd\x80\x75\x54\x98\xe0\ +\x24\xd2\x8b\x02\x68\x6b\x6b\xa3\x79\x79\x79\x2a\xe5\x53\xe0\x74\ +\x3a\xb5\x2a\x8a\x41\xcc\x62\x41\xfb\x71\x1e\xc4\xc0\x82\x98\x07\ +\x2d\x70\xc8\xf3\x9e\xe3\x44\x10\x66\x4d\x96\x04\xd8\xeb\xd8\xb5\ +\xc5\x62\x21\xfa\x0c\xeb\xc1\xae\x4f\x0a\x9b\x30\xd6\x92\x92\x92\ +\x22\xf8\x6e\x3a\xb6\x78\x29\xfd\x9f\x00\x03\x00\x56\xe0\xdf\x78\ +\xb1\x0f\x52\x18\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x0a\xb8\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x03\x66\x69\x54\x58\x74\x58\x4d\x4c\ +\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ +\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ +\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ +\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ +\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ +\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ +\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ +\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ +\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\ +\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\ +\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\ +\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ +\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ +\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ +\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ +\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ +\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ +\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ +\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\ +\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\ +\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ +\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\ +\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x43\x42\x42\ +\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\x31\x41\x31\x32\ +\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\x43\x22\x20\x78\ +\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\ +\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x31\x31\x38\x37\x32\x30\ +\x37\x46\x38\x35\x38\x31\x31\x45\x32\x42\x46\x35\x38\x38\x46\x41\ +\x34\x42\x32\x44\x41\x46\x44\x33\x43\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x30\x31\x31\x38\x37\x32\x30\x36\x46\x38\x35\ +\x38\x31\x31\x45\x32\x42\x46\x35\x38\x38\x46\x41\x34\x42\x32\x44\ +\x41\x46\x44\x33\x43\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\ +\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\ +\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x57\x69\x6e\ +\x64\x6f\x77\x73\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\ +\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\ +\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x41\x37\x32\x41\x34\x45\x30\x33\x35\x37\x46\ +\x38\x45\x32\x31\x31\x42\x43\x31\x37\x39\x45\x34\x43\x39\x46\x45\ +\x34\x39\x39\x37\x33\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ +\x3a\x43\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\ +\x31\x41\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\ +\x43\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\ +\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\ +\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\ +\x22\x3f\x3e\xd4\x19\x36\x37\x00\x00\x06\xe8\x49\x44\x41\x54\x78\ +\xda\xd4\x99\x6b\x6c\x14\x55\x14\xc7\xff\x33\x3b\xdb\x6e\xb7\x65\ +\xa9\x8a\x60\x8b\x15\x01\x05\x8c\xcf\xf0\x10\x63\xf1\x03\x9a\x90\ +\x54\xa3\x51\x43\x24\xc6\x0f\x1a\x48\xaa\x09\xd1\xf8\x08\x89\x24\ +\x60\xa2\x18\xf5\x8b\x7e\x31\x7e\x80\xa0\x7c\xd0\x18\x88\x8f\x90\ +\x94\x20\x31\xbe\xf1\x81\x21\x21\x21\x21\x2a\x05\x4a\x69\x4b\x5f\ +\xb8\xd0\xdd\xee\x7b\x1e\xd7\x7b\xef\xbc\xee\xcc\xce\xec\x6e\x4b\ +\x2d\xf4\x26\x37\xf7\xce\xd9\xbd\x33\xbf\x73\xee\xb9\xe7\x9e\xb9\ +\x23\x11\x42\x30\x93\x8b\x8c\x19\x5e\x24\xb4\x77\x9a\x3d\xa5\xbe\ +\x03\xf1\xe6\x8f\x21\x45\x5a\xae\x6a\x62\xa2\x0f\x21\x3d\xb2\x89\ +\xf6\xbe\x21\xbf\xee\x84\xf4\xe9\xa1\x23\x68\x8a\xd7\xe3\x89\x77\ +\xbf\x1e\xec\xd9\xf3\x6a\x0b\x73\x29\x55\xd3\x51\x54\xcd\x9a\x2f\ +\xa9\xc8\x17\x35\xe4\x8a\x25\x64\x8b\x2a\x72\x05\x95\xb7\xd9\x42\ +\x89\xca\x58\xab\xf2\xff\xb0\xff\xea\x86\x01\x4d\x37\xab\x6e\x10\ +\xe7\xda\xdf\x37\x5b\x5a\x75\x53\xee\x91\x19\xae\xcc\x10\xfb\xc4\ +\xbd\x1e\x1f\xee\x1d\xa2\x0a\xb4\x32\x05\x14\x49\x02\xbd\x91\x01\ +\x66\x79\x06\xfe\x57\xdf\x05\x3e\x20\x43\x01\xc7\x73\x45\xa4\x69\ +\x4d\xd1\x3a\x96\x29\x60\x2c\x6b\xd6\x14\xad\x4c\x3e\x9e\x2f\x21\ +\x43\xab\xad\xc0\x34\x16\xc7\x4b\x14\xa6\xf9\xfa\x6d\x3b\x81\x33\ +\x87\xb1\x74\xe5\x3e\x2e\xfc\x70\xef\x7e\xcc\xa2\xed\x8b\x9d\xcf\ +\x39\x23\x3a\xdf\xdb\x09\x92\xc9\xe3\xdb\xdd\xef\x38\xb2\x7b\x36\ +\xbe\x81\xcc\xa9\x73\x28\xfe\xf9\xb9\x23\x6b\x5b\xbf\x05\xfd\x3d\ +\x7d\xc0\xb1\x7d\xff\x9f\xac\x63\x23\xfa\xbb\x4f\x99\x0a\xa4\xa9\ +\x35\x79\x59\xfc\x80\xb9\x26\x68\xc9\x17\x55\x12\xd5\x35\x5b\xce\ +\x65\x74\x06\xdd\x78\x65\xc9\xc0\x65\xc4\x2b\x03\xdc\xb0\x36\x0d\ +\x32\xaa\x40\xbe\x6c\x7e\x98\x6f\xa3\x54\xf4\xae\x1d\x4e\x4b\x02\ +\x64\x57\x38\x8c\xae\x5e\x7b\x7f\x99\x90\xf9\x7f\xca\x9e\x19\x1b\ +\x96\x04\xc3\x5e\xa9\x7d\x64\xc7\xfb\xdb\xcc\x30\x7a\xa0\x27\x49\ +\xfd\x46\xc2\x0b\x1f\xec\x27\xaf\x3f\xd5\x8e\x13\xbd\xa3\xdc\x93\ +\xe4\x4c\x0a\x48\xcc\x36\x7d\x8a\xae\x74\xea\x56\xb8\x78\x7e\x18\ +\x6a\x7c\x16\x8f\x42\xec\x3a\x47\x17\xef\xd9\xee\x5e\x5c\x37\xbf\ +\x85\x2f\x7c\xbb\x30\x9f\x6d\x5b\x74\x93\xe7\x81\x53\x2a\xcb\x26\ +\xd1\xf9\xfc\x06\x69\xdb\xea\x36\x28\x05\x8d\x50\x3e\xc2\xff\x94\ +\x1d\x5d\x8a\xb1\xa1\x11\x7a\x2d\x31\x66\x48\xd9\x22\x64\xd9\x74\ +\x3b\x99\x0a\x58\x28\xcb\x8c\x5e\xa0\x51\xa9\xc0\x23\x10\x8b\x52\ +\xac\x0c\x9c\xed\xe7\x61\xd0\xff\x50\x7f\x99\x32\x59\x6a\xd0\xe9\ +\x2a\x45\xe1\xc1\xe7\x46\xc7\x78\x98\x94\xb9\x02\x2e\xb8\x24\x79\ +\xfd\x9e\x15\x16\x93\x89\xb5\x9a\xae\x64\x3a\xa2\x9c\xcc\x47\xc0\ +\x66\xbf\xe3\xb1\xb5\x48\xac\xbc\x1d\xcb\xa8\x75\xcf\x1f\x3b\x8e\ +\xc1\xf3\x23\xdc\x7d\x6e\x59\xd8\x8a\x87\x1f\x5a\x85\x78\x3c\x06\ +\xa6\xaa\xce\x36\x14\xfa\x7f\xb3\xd2\x8d\xa5\x52\xdf\xf7\x7f\xff\ +\x58\xc3\xfa\x8f\x77\xac\x69\xa4\x74\x3a\x8b\x9f\x0f\xfc\x88\x13\ +\xff\xf4\x72\xd0\x55\x77\x2c\xc4\xcb\xcf\x76\xa0\x39\xd1\x88\x83\ +\x87\x8f\xe3\xce\xd6\x6b\x4d\x03\xdb\x83\xb8\x55\x69\xab\xc4\x62\ +\xb8\x77\xcd\x0a\x67\x03\xeb\x78\x70\xa5\x03\x6f\x04\x01\x04\xf4\ +\xd9\x96\x16\xa4\x6c\xad\xf0\xac\x8d\x37\x35\xe2\x99\x0d\xeb\x1c\ +\x4b\xdb\xf0\x86\x19\xd2\x1d\x66\x85\x08\x83\xec\xda\xd0\x18\xe3\ +\x0a\xb0\x19\x68\x6c\x6c\x08\x78\x10\xb1\x2c\x5a\xde\xd7\x11\x6c\ +\x6d\xbd\x0a\x7c\x10\x47\x22\x11\x77\x14\xb0\xe1\xf9\x78\x08\x0a\ +\x18\xd6\x20\x02\xd7\x02\xec\x66\x2c\x45\x60\xbe\x1f\x66\xf9\x32\ +\x78\xb8\xf0\xc6\x24\xe0\x0d\x1f\xbc\x7f\x8f\x11\x39\x88\x75\x2f\ +\x53\x81\x00\x0b\x10\x7b\x33\x43\x30\xb0\x47\x11\x58\xf0\x95\x80\ +\x89\x60\x39\x01\x9e\x54\x80\xb7\x39\x1c\x05\x04\x0e\x62\xf5\x1d\ +\x05\x08\xbc\x83\xd8\x4d\x59\x82\xc6\xf6\x87\x20\x78\x5d\x84\x17\ +\x80\x75\x5d\x87\x4a\x2b\x61\xaf\x19\xb2\xec\x1d\x0b\x78\x21\xed\ +\xbe\x00\x1f\xc4\xe1\x2a\xe0\xde\x8b\x08\x2e\x24\x13\xb8\x42\xd7\ +\x8d\xdc\x69\x32\x82\xe0\xe1\xc2\x8b\x16\x56\x55\x15\x8f\xb6\x35\ +\x22\xa6\xe7\x69\x26\x52\xe4\x59\x6e\x39\xbc\x30\xc6\x07\xef\xb8\ +\x88\xc0\x21\x2a\x20\xba\x90\x6e\x69\x27\x1b\xc2\x74\xb8\xf0\xee\ +\x50\x3d\x08\x3e\x64\x2d\xb0\x74\x7c\x71\x73\x03\x3a\xef\x6a\xc5\ +\x9a\x39\x75\xd0\x8b\x39\x2a\x53\xad\x7c\x7e\xe2\xf0\x61\x1c\x7c\ +\xac\x9d\x0b\x05\x0d\x2a\xd7\x9c\x59\xbc\x32\x3c\xeb\xb3\x97\x0d\ +\x56\x22\x74\xf7\x6e\xbf\xe9\x1a\x6c\xbe\x7b\x1e\x6e\x8b\xd3\x99\ +\x29\x14\xa0\x51\x45\xd8\xe6\x67\xa0\x76\xf8\x30\x0e\x62\x71\x08\ +\x2e\x24\x24\x6c\xbe\x9d\xce\x74\x97\xca\x51\x48\x94\x8b\x25\x51\ +\x1f\xc5\xfa\x65\xf3\xb0\x69\x59\x33\xe6\xca\x2a\x4a\x6a\x89\xaf\ +\x93\x89\xc2\x87\x71\x78\x66\x80\xf8\xda\x50\x17\x0a\xf0\x65\x5d\ +\xf0\xcd\xa0\xb2\xa0\x39\x8e\xcd\xcb\xe7\xe3\xf1\xb6\x06\xd4\x69\ +\x05\xa8\xa5\x92\x15\x49\xc2\xe1\x2b\x71\x88\x1b\x99\x2c\xfa\x9a\ +\x7f\x90\x67\xea\x42\x14\xd1\xc5\xd8\x0e\x52\xe1\xf4\x00\xb8\x6f\ +\x7e\x33\xb6\xae\x6a\x45\xfb\x1c\x05\x5a\x21\x07\x5d\xd3\x9c\x34\ +\xbd\x12\x7c\x19\x87\x27\x0a\x09\x11\x28\xe8\xf1\x95\xe0\xfd\x1b\ +\x93\x51\x43\x4e\x17\x53\x22\x78\x72\xc9\xf5\xd8\xba\xe2\x06\xdc\ +\xda\x44\x43\x2d\x5d\x37\x46\x15\x78\x3f\x87\x27\x0a\x55\x1a\x84\ +\x2a\xf9\x8f\xee\xc0\xbb\x71\x7a\x62\x67\x3a\xd5\x2d\x1f\xc4\x61\ +\xef\x15\x42\x2e\x14\x5e\xaa\x65\x9b\xfe\xdf\xaa\x95\xa2\x66\xa0\ +\xeb\xcc\xbf\xf8\x65\xb8\x00\x43\xa9\xa3\x5a\xc8\x55\xe1\xfd\x1c\ +\x86\x27\x99\xab\xf2\xc0\xca\xf9\x4c\xf9\x6f\xa1\xe7\x51\xb4\xfe\ +\x31\x30\x86\xae\xde\x34\xc6\x89\x02\xb9\xae\xc1\x91\x57\x83\xf7\ +\x73\x78\x72\x21\x54\x1d\x18\x92\xff\x04\xb8\x54\x18\x44\xcf\xa5\ +\x1c\xbe\x3a\x7d\x11\x7d\x05\x9a\x9c\x44\x62\x34\xcb\x90\xdd\xdd\ +\xbf\x06\xf8\x72\x17\x12\x66\x00\x35\x68\x2e\xe6\xeb\x46\x00\x3c\ +\xf1\xe5\x27\xce\x9b\x5f\x41\x45\xd7\xe9\x24\x8e\x26\x55\x90\x68\ +\x14\x32\x5d\xc0\xc4\x7a\x35\x9d\x08\xbc\x9f\x83\x58\x1c\x35\x29\ +\xa0\xfb\xb2\x49\x3d\x2c\xcb\xe4\x30\xe6\xbb\xa7\x46\x2f\x7e\xea\ +\xbb\x84\x43\xfd\x19\x68\x91\x28\xa4\xfa\x18\x5f\xb2\x9e\xbc\x6b\ +\x02\xf0\x61\x1c\x35\xcf\x40\x2d\xf0\xdc\xfa\x72\x04\x7f\x27\x73\ +\xf8\xf2\x54\x12\x17\x35\x7a\xeb\x68\xcc\x5c\xa4\xc2\xae\x3b\x19\ +\x78\x3f\x87\x7d\xaf\xda\x14\x40\x6d\xf0\xfc\x86\x8a\x82\xdd\xdd\ +\x69\x0a\x5d\x0f\xa9\x4e\x16\xde\x33\x2e\x0f\x3e\x8c\x63\x82\x6b\ +\xa0\x32\x3c\xb7\x0c\xb5\xb6\x14\x91\x9d\x64\x6d\xaa\xe0\xcb\xde\ +\x07\xc4\x54\xa2\x36\xdf\xab\x0e\xef\x7f\x35\x9c\x4a\x78\x3f\x87\ +\xe8\x42\x81\x0a\x8c\x8f\xe7\xdc\x48\x92\xce\x94\xe5\xe1\xd3\x05\ +\x1f\xc6\x41\x84\xf7\x01\x65\xc9\xec\x28\xef\x24\x1b\x22\x60\xfd\ +\x54\x2a\x83\xbd\x5f\x7c\xef\x0c\x3c\xb8\xff\x07\x6c\x7a\x7a\x1d\ +\x12\xec\x54\x40\xcc\x1c\x85\xd0\x49\x84\x83\x5e\x37\x35\x77\x93\ +\xbb\xc9\xc0\x57\xe2\x38\x53\x17\xc1\x82\x26\x93\x5b\xda\x71\xc4\ +\x3c\xb2\xdb\xfe\xd6\x27\x04\x89\x9b\x81\x74\xef\xd5\xfd\x51\x8c\ +\x31\xf6\xff\xce\x0e\x77\xf9\xd9\xa8\xd7\x85\xa4\xc8\x0c\xf8\xaa\ +\xe7\x65\xe4\x51\x68\xfb\x6b\x6f\xf3\x2f\x34\xd3\xfa\x95\xe5\x32\ +\xbf\xd0\xa0\x6c\x27\x16\xbe\xd0\x4c\xf7\x57\x96\xcb\x91\xcd\xf8\ +\xef\xc4\x33\x5a\x01\xfe\x1d\xc3\x8e\x42\xbb\x3e\xfb\x8e\x60\xf6\ +\x22\x1a\xbf\x7a\xa6\xe7\x2b\xcb\x64\x65\x8c\x71\xf0\x28\xfa\xf7\ +\x6c\x91\xf9\xe6\x6f\xcf\x82\xf4\xc8\x9b\x03\x64\xee\xf2\x96\x19\ +\x61\xfa\xee\xae\x61\xfc\xb6\xeb\x46\x7b\x11\x47\xf8\x9b\xd9\xc8\ +\xc9\x97\x30\x36\xf0\x11\x55\x65\xee\xd5\x4d\x4f\x86\x90\x4f\xbf\ +\xc2\x4e\xfe\x59\x86\xc1\x66\x20\x6a\x29\x62\xb7\x8a\x70\x1d\xb5\ +\x14\xb4\x5b\xc5\x57\x23\x42\x2b\x0b\xad\x5d\x25\x61\x9d\x39\x99\ +\xb0\x75\xb4\xca\xfa\x9a\x75\xad\x59\x32\xb1\x55\xad\x56\x13\xae\ +\x55\xdf\xb5\x2e\x3e\x40\xec\xdb\x0f\xaf\x56\xc5\xb1\x92\x10\x86\ +\x2b\x05\x07\xf1\x04\x87\x84\x54\xc3\xa7\xb4\xdf\x00\xf6\x35\xfe\ +\x13\x60\x00\xed\xa6\xa5\x69\xfb\xda\xdb\xe4\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\x85\ +\x00\ +\x00\x1b\x36\x78\x9c\xed\x96\xb1\x4e\x02\x41\x10\x86\xcf\x17\xb0\ +\x26\xf1\x05\x2c\xad\x78\x00\x7a\x5e\x80\xc7\xd0\x86\x86\x42\x12\ +\x8d\x28\xb5\x9d\xb1\xb1\x30\xd1\xd0\x93\x50\x4a\x41\x14\xd0\xee\ +\xa4\x26\x57\xc9\x33\xe8\x1f\x47\xcd\xe6\x96\xd9\x9b\x5b\x76\xcf\ +\x15\xf7\xcf\xbf\x05\x37\x73\xec\x97\x9d\xb9\xdd\x6d\x34\xeb\x7b\ +\xc9\xa7\xea\x18\xfb\x18\x07\x5f\x63\x27\xa9\x51\x00\xf1\x87\x5d\ +\x1a\xdf\x7a\xf7\xa0\x74\x99\xc2\x9d\x9b\x0e\xdc\xea\xb7\x0a\x4d\ +\x99\xf4\x56\x68\x3c\x97\x62\xc9\x79\x38\x92\xe1\x64\x08\x8f\x1e\ +\x47\x30\x47\x15\x26\x4f\xf9\x9a\x98\xc4\xd5\x25\x53\xc4\xe5\x84\ +\xcc\x23\xaf\x9d\x59\xdb\xcd\x93\x6d\x2c\xfa\x67\xea\x5b\x49\x3e\ +\xf5\xf9\x7f\xe3\x99\xbd\x4e\xe1\xd5\xea\xad\xd0\xcf\x8b\x39\x6c\ +\xe6\x49\x6c\xe5\x8f\xa7\xec\xb2\xe4\x78\x2e\x06\xe7\x39\xab\x0c\ +\x7a\xb4\xb0\x5e\xa5\x90\x28\x39\x10\x9e\x9f\x4c\x95\xa7\x77\x7f\ +\x06\x4b\x78\x28\x53\xd2\xcf\x12\xa4\x5c\x0e\x7e\xfe\x22\x8f\x9e\ +\x80\x27\xed\xeb\x36\x7c\x74\x75\x08\x77\x6f\x8f\xe1\xd3\xbb\x13\ +\x78\xbe\x98\xc1\xd3\xf4\x09\xa6\x27\x14\xa5\x4c\xfd\x3c\x5d\xfb\ +\xbd\x1b\x90\xd6\x86\x02\xe4\x19\xbf\x8c\x61\xa2\xe2\xce\x05\xfd\ +\xa6\xa1\xde\xc7\xcc\xfb\x21\x37\x2f\x07\x59\x3d\x4f\xd9\x45\x53\ +\x67\x31\x4b\x78\x5e\xa8\xb3\x58\x34\xb9\x3f\x1e\x8b\x1d\xc0\x07\ +\x4f\xa6\x1c\x07\x41\xf1\xc8\x4f\x55\xaf\x3c\xc2\x32\x71\x69\x15\ +\xf3\x14\x96\xd2\x2d\x8f\xf9\xeb\x96\x2c\x9d\x9c\x47\x67\x13\xc2\ +\xc8\xdb\xdb\x2b\x0f\xd7\xb1\xd5\xf0\xe4\xb6\x41\x8b\x4b\xa3\x43\ +\x1e\x75\x0f\xb4\x26\x71\xcb\xb3\x39\x89\x2b\x1e\x57\x24\xae\x78\ +\xdc\x6a\x9b\x78\xfc\xe9\xaf\xf3\x44\x45\x45\x45\x45\x85\xa3\x0f\ +\x5d\xf0\xe3\xdc\ +\x00\x00\x0a\x0b\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x03\x66\x69\x54\x58\x74\x58\x4d\x4c\ +\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ +\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ +\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ +\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ +\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ +\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ +\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ +\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ +\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\ +\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\ +\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\ +\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ +\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ +\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ +\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ +\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ +\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ +\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ +\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\ +\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\ +\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ +\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\ +\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x43\x42\x42\ +\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\x31\x41\x31\x32\ +\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\x43\x22\x20\x78\ +\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\ +\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x36\x43\x42\x33\x33\x45\x36\ +\x45\x44\x31\x41\x46\x31\x31\x45\x32\x41\x42\x45\x39\x45\x34\x32\ +\x44\x38\x43\x30\x42\x43\x41\x37\x31\x22\x20\x78\x6d\x70\x4d\x4d\ +\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x36\x43\x42\x33\x33\x45\x36\x44\x44\x31\x41\ +\x46\x31\x31\x45\x32\x41\x42\x45\x39\x45\x34\x32\x44\x38\x43\x30\ +\x42\x43\x41\x37\x31\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\ +\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\ +\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x57\x69\x6e\ +\x64\x6f\x77\x73\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\ +\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\ +\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ +\x2e\x69\x69\x64\x3a\x44\x37\x35\x33\x33\x43\x46\x35\x41\x44\x44\ +\x31\x45\x32\x31\x31\x42\x45\x43\x46\x41\x34\x44\x38\x38\x38\x31\ +\x30\x43\x41\x33\x36\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ +\x3a\x43\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\ +\x31\x41\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\ +\x43\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\ +\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\ +\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\ +\x22\x3f\x3e\xee\x58\x0f\xf2\x00\x00\x06\x3b\x49\x44\x41\x54\x78\ +\xda\xd4\x5a\x6b\x6c\x14\x55\x14\xfe\xee\xee\x6c\xb7\x4b\xb7\xa5\ +\x76\x29\x85\x6e\xe5\x11\x21\x88\x12\xda\x48\x34\x62\x84\x90\xf8\ +\x22\xc6\x68\xfc\x65\x88\x06\x8c\x60\x24\xc6\x68\xa2\xa2\x09\x8a\ +\x6f\x49\x4c\x34\x2a\xfa\x43\xb1\x18\x8d\x26\x8a\xd1\x5f\x06\xc5\ +\xf8\x03\x13\x63\x34\x46\x63\xc5\x48\x45\x5e\x16\xba\x40\x4b\xd9\ +\xc2\x6e\xdb\xdd\xd9\x99\xb9\xd7\x73\xe7\xb1\xcc\x6e\x67\xbb\xbb\ +\xed\x92\x0e\x37\x99\x9c\x79\xed\xb9\xe7\xdc\xf3\x7d\xe7\xdc\xb9\ +\x77\x99\x10\x02\x97\x72\x0b\xe0\x12\x6f\x4a\x6f\x32\x83\x70\x80\ +\xe1\x89\xa3\x29\xd1\x69\x68\x08\x43\xc0\x1d\x14\x9e\x3f\x13\x79\ +\x21\x0a\xef\x58\xef\x15\x05\xd2\x2b\xb0\x02\xa2\xe8\x1d\x51\xac\ +\xdd\xa3\x5f\x7a\xe6\xba\x50\x19\x70\x28\x5c\x8f\xb6\x73\x69\xd6\ +\x7d\xf3\x22\x28\x4b\x5b\x22\xe6\x83\x4e\xe3\x2c\xb6\xad\x98\x0b\ +\x4d\x58\x9d\x4b\x85\x86\xad\xd9\x10\x56\x67\x9c\x2e\xb8\xb0\x1c\ +\x34\x2e\xf8\x63\x75\x5e\x01\x12\x2b\x01\xab\x98\xe8\x2d\xfb\xd1\ +\x93\x5f\xfe\x8a\xee\xfb\x6f\xb4\x22\xe0\x3c\xab\xa3\xa7\x39\x7a\ +\xe1\x54\x96\x23\x47\xc3\x99\x23\xeb\x55\x92\xf2\xc8\x1a\xd6\xa1\ +\x9a\xd2\xbe\x6f\x58\xef\xe9\xdc\xd2\xcb\xc5\x78\x0b\x79\x89\x90\ +\xf0\x09\x22\xc5\x4b\x38\xc0\x85\xe5\xdc\x2d\xb3\x83\x10\xaa\x7a\ +\x01\x42\xce\x89\x1c\x51\x4e\x9a\x35\x7a\xf3\xca\xc6\x90\x2f\xf1\ +\xfe\x6c\xcf\xb0\x39\x70\x6e\xa7\x15\xf7\x50\xc8\x91\xc9\xda\xd8\ +\xe8\xe9\xe9\xc1\xac\x59\xb3\x0a\x14\x0c\x0d\x0d\x4d\xdb\xbd\xae\ +\xae\x2e\x42\x05\x21\x83\x8c\xd4\x5d\x84\x53\xdc\x21\xd2\xe9\xc8\ +\xea\xd6\x43\xa9\xa4\xa3\xa3\x63\xdc\x28\x4c\xd7\x3d\xd9\x74\x1b\ +\xca\x6e\xf2\x2b\x6e\xec\x49\xf8\x8c\x1a\xfe\xad\x0b\x32\x02\xaa\ +\x4e\x70\xf7\x8a\x80\x74\x4a\x86\x26\xa3\x73\xdf\x3a\xa0\x9a\x89\ +\x04\xde\x1c\x90\x0c\x97\x59\x65\x54\xf3\x6f\x04\x34\x3b\x13\xea\ +\x9c\x7b\x47\x40\x23\xef\xd2\x39\x91\x27\x4e\x71\x9b\xce\x7b\x92\ +\x17\x1a\xa1\x43\xa6\x70\x4f\x0e\x50\x76\xa2\x3a\x20\x23\x60\xf8\ +\x96\xc4\x86\x74\x40\x2b\x95\x85\x24\x84\x28\x3c\x23\xba\x8f\x21\ +\x44\xf0\x96\x30\x2a\x49\x62\x89\xaf\x11\xcd\xbf\x24\x96\x11\xc8\ +\xe9\xd6\x74\x66\xdc\x6c\xd4\xb0\xb3\xd0\x68\xce\xf0\x6f\x1a\xd5\ +\x0d\x33\x02\xa9\xac\xe6\x55\xc8\x28\x3c\xe4\xdd\x98\x6a\xf8\x97\ +\xc4\x04\xa1\x11\xb2\x6f\xe0\x7c\xc6\x3b\x8d\x4a\x6c\x19\x86\x7f\ +\x2b\xf1\xf0\xa8\x8e\x41\x3a\x52\xd9\x9c\x07\x84\xb8\x1d\x05\x1f\ +\x72\x20\x1e\x8f\x9b\x72\x79\x6b\x1d\xd4\x22\x88\xe7\x1d\x38\x93\ +\xd1\xcc\x09\x91\xee\xa3\xa9\x84\x3e\x7c\x1c\x89\xf7\x6e\xc5\xd1\ +\xad\x4d\xa6\xdc\xb9\x9a\x61\x65\xbc\xc9\xdb\x81\x23\xe7\xb3\x48\ +\xaa\x1c\x03\xa3\x9a\x6f\x1c\x18\xd8\xbd\x11\x91\x45\x6b\xb0\xf0\ +\x85\x53\xa6\x3c\xfd\xd9\x06\xac\xbd\x22\x56\xf8\x49\xe9\xbe\xc8\ +\x52\x9a\x3a\x3c\x9c\xf3\x05\x89\x25\x6c\xb2\x7d\xbf\xa0\xfd\xc1\ +\x3d\x60\xc1\x3a\x34\xaf\x7a\x14\xc9\xef\x5e\xc4\x92\xd8\x8c\xd2\ +\x0e\xb8\x9b\x1f\x48\x5c\x3f\xff\x7a\x0c\xef\x7b\x1d\xcd\xab\x1f\ +\xc3\xb9\x1f\x77\xa0\x7e\xe1\x0d\x38\x78\x76\xac\xb6\xab\x12\x0e\ +\xc1\x6a\xdd\x78\xfa\x6f\xb4\xdd\xb3\x0b\x99\xc3\xfb\x70\xec\xb9\ +\x36\x53\xce\x59\xf7\x11\xf6\x1e\x39\x5b\x59\x04\x2a\x21\xd8\xc0\ +\xee\x4d\x14\xe6\x9f\x69\xa4\x56\x52\x67\xdd\x50\x2e\x9b\x57\x1b\ +\xe3\xcf\xfd\x86\xec\xfe\x4d\x08\xb6\xac\x42\xfb\x86\x6e\x0a\xc5\ +\x3c\x30\xc6\xb0\xe1\xab\xff\x30\xc2\x53\xb5\x89\x80\x17\xc1\x6a\ +\xd1\x82\xea\x61\xa8\x7f\x6d\xa6\xbc\x9e\x01\x0b\xb5\x80\x45\xe6\ +\x21\x91\x48\x98\xcf\xbe\xfe\xe7\xfc\xf8\x75\xa1\x52\x8a\x26\x43\ +\x30\x21\x38\x75\x76\x72\xd2\x24\x0e\xe6\xfa\x11\x3d\xb1\x85\xf4\ +\xa4\x91\x6b\x5c\x83\x64\xc3\x46\xa0\x3f\x91\xaf\xc4\x9e\x0b\x5b\ +\x93\x21\xb1\xc8\x0d\x79\x12\x4c\xa4\xfe\x44\xbc\x75\xae\xfc\x75\ +\xd5\x84\x15\xea\x69\x64\x7f\x7f\x9a\x8c\x4f\x21\x18\x5b\x8d\xe6\ +\x65\xef\xa2\x39\x50\x7e\x75\xa4\x6a\x08\x19\x83\xdf\x20\x77\xe8\ +\x65\x4f\x82\x69\xfd\x1f\x43\xdd\xff\x10\x98\x50\xab\xd2\x29\xb4\ +\x24\xb2\x7f\xac\x37\x9d\xd0\x23\xcb\x10\xbe\x7a\x07\x59\x56\xd9\ +\xd2\x4e\x55\x24\xae\x4b\xff\x00\x75\x60\x3b\xf5\x68\x40\x69\xbd\ +\x0d\xf1\xcd\xdf\x9b\x5f\x47\x92\x60\x82\x30\xab\x1d\x3c\x00\x91\ +\xe9\x43\xc3\xe9\x57\x81\xcb\x77\xd1\x2f\x58\x79\xe3\xf5\x34\xd4\ +\x9e\x07\xcc\xdf\x05\xa2\x4b\x91\x6e\xdb\x8e\xa6\x60\xa4\xf6\x8b\ +\xbb\x72\xe4\xa3\xd2\x30\x32\x3e\xb4\xe0\x11\x04\x67\xdf\x6e\xde\ +\x77\x08\xc6\xa8\xd3\xfa\xce\x0f\xc0\x94\x46\xd4\x8d\xfc\x04\xed\ +\xe8\x9b\x65\x75\xca\x48\xc9\x88\xf1\x91\x5e\x22\xeb\x7c\x84\xbb\ +\x3e\x84\x08\x34\x54\xb7\xb8\x5b\x09\x89\xe5\xc8\x9b\xc6\xd3\x77\ +\x5b\xa6\x65\x3d\x92\xa1\xbb\x89\x5c\xfd\x1e\x44\x0c\x22\xd4\xf6\ +\x3c\x1a\x13\x4f\x41\xeb\xdb\x89\x61\x35\x46\x64\xbc\xc9\x9b\xc4\ +\x42\x47\xb8\x6f\x2b\xb8\xd6\x03\xae\xb4\x22\x35\xe7\x35\xf0\x81\ +\xb1\x09\xa7\xd3\x93\x22\xb1\x1c\x79\x13\x36\xb6\xf1\xb1\xce\x67\ +\xca\x90\xb3\x03\x67\xb4\x13\x68\x18\x7c\x1b\xd1\xc1\x37\x50\x1f\ +\xef\x42\xa0\xa9\xb3\xf0\x3d\x8a\xa2\x7a\x60\x0b\x0c\x32\x5e\xa6\ +\xca\x86\x6b\x3e\x45\x74\xc6\x82\xb2\xd3\xe9\x8a\x20\xb4\x76\x61\ +\x34\x9f\x2a\x65\xb6\xd1\x07\xf7\xe6\x61\x93\x89\x55\x96\xeb\xd5\ +\x99\x77\x42\x89\xaf\x23\x9f\x55\xe8\x27\x77\x93\xcc\xb9\x2a\x36\ +\x7d\x7b\xff\xfb\x12\x0d\xcc\x1e\x13\x2e\xe1\xae\x5d\x60\x2e\xe3\ +\xab\x6d\x05\x11\x98\xdf\x14\xc2\x7d\x71\xc3\x9c\xba\x16\x54\x58\ +\xc2\x7b\x70\xf6\xda\x3c\x6c\x2a\x22\xfc\xe2\x6d\x34\xba\x31\xb0\ +\xe6\xbb\x90\xd8\x79\x47\x81\x3e\xa1\x53\x41\x22\xce\xa4\xe7\xbe\ +\x82\x86\xe8\x55\x53\x2a\x7c\x05\x11\x58\xd2\x12\xf6\xac\xb0\xa6\ +\xf1\xd5\x36\x46\x7c\x58\xf0\xb0\xa7\x3e\x25\x7e\x2f\xa5\xca\xb7\ +\x28\x65\x2e\x9f\x72\xe5\x2e\x88\x40\xeb\x0c\x05\xc7\x3d\x2b\xac\ +\x30\xb3\x4d\xad\xa6\xc4\x81\x99\x2b\xaa\xae\xd8\x15\x91\xf8\xcc\ +\x98\xee\x59\x61\x65\x9e\x77\x14\xd4\x62\x4a\xcc\x58\xa0\x6a\x7d\ +\x15\x41\xe8\x60\x52\xf5\xac\xb0\x53\x69\xb5\xd6\x37\x61\x04\xfa\ +\x52\x1a\x3e\xef\x55\xf0\xbe\xab\xc2\x4e\xb9\x03\x9a\x62\xc7\x6b\ +\xa8\xaf\x6c\x1a\xfd\xf6\x58\xba\xa0\xc2\xd6\xaa\xd5\x5a\xdf\x94\ +\xa6\xd3\xd3\xb5\xb0\x55\x95\x03\x72\x4f\xca\x2f\x8b\x5a\xa5\x8c\ +\x97\x90\x2c\x70\x80\xcb\x95\x39\x9d\xa3\xfd\x9d\x5e\x6b\xaf\x98\ +\x5b\x9b\xc6\xc2\xde\x47\x15\xf6\x7e\xb1\x73\x4f\x38\x92\x5b\xab\ +\xc3\x17\x7d\x45\x49\xda\xc0\x99\x63\xbc\x3c\x11\x0a\x93\x39\x8d\ +\xda\xb5\x5f\xec\x37\x0d\xb9\x2e\x6e\x6d\xfc\xe6\x37\x11\x8a\xcf\ +\x4d\xc9\x6c\x83\x59\x7e\x97\x5b\x08\x86\x8b\xed\x81\xec\x8f\x1b\ +\x02\xa1\x48\x38\xcf\x5f\xc5\x9c\x42\x92\x1c\x13\x1a\x1e\xff\x64\ +\x2f\x74\xd7\xba\xa3\x1f\x5b\x28\x52\x87\xf6\x15\x8b\x41\x93\x11\ +\x39\xef\x36\x64\x18\x42\xb6\x23\x8e\x54\x5c\xd7\x21\xdb\x41\x47\ +\x2a\x45\x47\xd0\x25\x03\x2e\xe9\x1c\xcc\x95\xe9\x38\xec\x4d\x7d\ +\x58\xff\x62\x90\xe7\xba\x7d\xad\xdb\xf7\xdc\x52\xb3\xa5\xee\xba\ +\xd6\x8a\xae\x0d\x77\x07\xee\x73\xa7\xf3\x72\x87\xfb\xb7\xcc\xf5\ +\x09\x16\x98\x10\x09\x85\xff\x17\xf1\x3a\x78\x91\xd3\xc5\x03\xe0\ +\x5c\xe3\x7f\x01\x06\x00\xba\x74\x31\xfb\xc3\x91\x66\xa4\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0e\xa5\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ +\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\ +\x0e\x1b\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\ +\x72\x65\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\ +\x61\x64\x79\x71\xc9\x65\x3c\x00\x00\x03\x66\x69\x54\x58\x74\x58\ +\x4d\x4c\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\ +\x00\x00\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\ +\x65\x67\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\ +\x35\x4d\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\ +\x54\x63\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\ +\x70\x6d\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\ +\x64\x6f\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\ +\x3a\x78\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\ +\x50\x20\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\ +\x36\x36\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\ +\x30\x32\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\ +\x20\x20\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\ +\x46\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\ +\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\ +\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\ +\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\ +\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\ +\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\ +\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ +\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ +\x73\x54\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\ +\x66\x23\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\ +\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\ +\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\ +\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x43\ +\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\x31\x41\ +\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\x43\x22\ +\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\ +\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x36\x43\x42\x33\x33\ +\x45\x36\x45\x44\x31\x41\x46\x31\x31\x45\x32\x41\x42\x45\x39\x45\ +\x34\x32\x44\x38\x43\x30\x42\x43\x41\x37\x31\x22\x20\x78\x6d\x70\ +\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\ +\x6d\x70\x2e\x69\x69\x64\x3a\x36\x43\x42\x33\x33\x45\x36\x44\x44\ +\x31\x41\x46\x31\x31\x45\x32\x41\x42\x45\x39\x45\x34\x32\x44\x38\ +\x43\x30\x42\x43\x41\x37\x31\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\ +\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\ +\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x57\ +\x69\x6e\x64\x6f\x77\x73\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\ +\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\ +\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\ +\x6d\x70\x2e\x69\x69\x64\x3a\x44\x37\x35\x33\x33\x43\x46\x35\x41\ +\x44\x44\x31\x45\x32\x31\x31\x42\x45\x43\x46\x41\x34\x44\x38\x38\ +\x38\x31\x30\x43\x41\x33\x36\x22\x20\x73\x74\x52\x65\x66\x3a\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\ +\x69\x64\x3a\x43\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\ +\x32\x31\x31\x41\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\ +\x44\x31\x43\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\ +\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\ +\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\ +\x22\x72\x22\x3f\x3e\xee\x58\x0f\xf2\x00\x00\x0a\xa3\x49\x44\x41\ +\x54\x68\x43\xd5\x59\x7b\x70\x54\xd5\x19\xff\xdd\xbd\x7b\xef\xee\ +\x26\x9b\x64\xf3\x7e\x6c\x1e\x3c\xc2\xdb\x4a\x50\x71\xd0\x22\x23\ +\x54\x2d\xa3\x8e\xd6\xfe\xa1\x15\x3b\x42\x15\x85\xfa\x1c\xa6\xd8\ +\x87\x56\xc5\xfa\xaa\x0e\x0e\xc2\xf8\xaa\x0a\x68\x91\x5a\xa4\x30\ +\x3a\xd4\x57\x6d\x95\xa2\x58\x0a\x03\x26\x60\x02\x41\x20\xe4\xfd\ +\x24\x8f\xdd\x24\xbb\x77\xef\xee\xbd\xfd\xce\xd9\xbb\x9b\xbb\xc9\ +\x6e\x20\x90\x58\xfd\xcd\x9c\x7c\x67\xbf\x73\xee\x77\xce\xef\x7c\ +\xdf\x77\xce\xb9\x37\x82\x4e\xc0\xf7\x18\x16\x43\x7e\x6f\x11\xf5\ +\xc0\x0d\x07\xda\x30\x33\xa4\xc2\x06\x1d\x66\x9f\x68\x86\x04\xe9\ +\x23\x22\xd2\x6c\xea\x06\xcd\xfc\x83\x10\xcf\xaf\x64\xd9\xa8\x85\ +\x61\x76\xfe\xe0\xee\x03\xe3\x52\x9b\xe9\x87\x22\x00\xdf\xd8\xec\ +\xd8\x71\x51\x2e\xff\x1d\x25\xb0\x6a\x5f\x23\x56\xcd\x76\x73\xe5\ +\x68\xa0\xb1\x4f\x35\x6a\x03\x88\xc3\x69\x08\x06\x93\x8c\x81\xd1\ +\xb4\xf2\x6f\x7b\xb1\x65\xc9\x5c\x5e\x8f\x12\x78\x6a\x5f\x03\x1e\ +\x9c\x5d\x88\xf2\x8a\x0a\xa8\xea\xd0\xc1\xcd\x08\x04\x02\xe8\xee\ +\xee\x46\x41\x7e\x3e\x66\xcd\x9a\x65\x68\x63\xf1\x6c\xa5\x27\x66\ +\x15\xcd\x2e\x89\x59\xdd\x41\xf3\xd5\x12\x10\x60\x1e\x66\xe4\xae\ +\xcc\x11\xb1\xf6\xbd\x7d\x78\x67\xd9\x8f\xb8\x3e\x4a\xe0\xf1\xbd\ +\x0d\x78\xf8\xe2\x42\x3e\xf9\xf6\xf6\x0e\x38\xb0\x07\x4e\xe7\x0c\ +\x6a\x51\x51\xab\x74\x42\xd2\xea\x90\xd7\x71\x00\xef\xfa\x56\xf3\ +\x51\x43\x7e\x2f\x3a\xea\x2a\x70\xdf\x2d\xf3\xd8\xe3\xdf\x0a\x7e\ +\x5f\xde\x85\x05\xd9\x02\x5e\xde\xb1\x1f\x5b\x97\x87\x09\x0c\x24\ +\xb1\xb1\x14\x82\x20\xa0\xb7\xaf\x0f\x01\xf1\x87\x68\x6e\xf1\x12\ +\x75\x1f\xdc\x56\x19\xdd\x9a\x13\xc7\x72\xae\xc0\xbe\x66\x01\xfd\ +\x14\x88\xfd\x21\x3b\xfa\xc5\x3c\x54\x57\x57\xe3\xd8\xb1\x63\xfc\ +\x59\x33\x1a\x1a\x1a\x62\x4a\x79\x79\xf9\x39\xe9\x18\x02\x21\x1d\ +\x01\x72\x45\xd0\x94\x70\x51\x02\xe6\x24\x4c\x4e\x72\x40\x51\xfc\ +\xa8\xaa\x0f\x40\x4a\xb2\xd1\x43\x02\x8a\x85\x64\x64\x39\xc7\x61\ +\x46\x21\xf9\x84\x62\x20\x64\x94\xe2\xe2\x62\x84\x42\xa1\x21\x24\ +\x0a\x0b\x0b\x63\x4a\x56\x56\xd6\x39\xe9\x18\x82\x44\xc0\x4f\x83\ +\x1a\x41\xc3\x31\x40\xc0\x14\x7b\x2e\x87\x0a\xbb\x1c\xc4\x82\xd9\ +\x19\xa8\xab\xf3\x41\x4a\x2d\x82\x35\xeb\x3c\x84\x94\x1e\x22\x50\ +\x85\xbe\x40\x98\x84\xa6\x0b\x70\x38\x1c\x09\x49\x8c\x36\x98\x07\ +\x94\x20\x85\x6f\x3c\x0f\x98\x93\x49\x0a\x55\x22\x2b\x4d\x87\x24\ +\x85\xe0\xe9\x05\x1c\x92\x44\x13\xf4\xc1\xe9\xc8\x41\x9e\xf4\x35\ +\x9a\x59\x64\xd1\xe4\x21\x88\xbc\x3f\x23\xe1\x72\xb9\xd0\xd1\xd1\ +\xc1\x7f\x8f\x15\x14\x46\x80\x8a\x79\xae\x03\x04\x4c\x1e\x10\xe4\ +\x1c\xec\xde\xdb\x84\xde\x5e\x05\x53\x4b\xb3\x79\xdc\x21\xe4\x45\ +\x8f\xbf\x0f\x8d\x35\xc9\xf8\xd9\xb4\x3e\x72\xa7\x00\xc9\x9e\x86\ +\xdb\x56\x6d\xc7\x92\x47\xb7\xe3\x9e\x75\xbb\xf1\xe6\x07\xc7\x0d\ +\x0b\x63\x03\x95\x13\xd0\x28\x07\x06\xf6\x31\xab\x21\x63\x58\xa1\ +\xef\x35\xcc\x99\x9c\x42\xad\x3f\xc6\xd1\xa3\x1a\xe4\xbc\x0d\x28\ +\xca\x5a\x8e\x14\x5b\x3f\xda\xb5\x64\x24\x65\x6c\x43\x89\xe7\x16\ +\x54\x6b\xe9\x28\xbd\xe8\x7a\x6c\xf6\x00\x8f\xf9\xd7\x63\x7a\xf6\ +\x56\xac\x59\xd3\x86\x15\x2b\x56\xf0\xe4\x33\x23\x9e\x77\x46\xa2\ +\x63\xb9\xa0\x06\x35\x28\xb4\x98\x71\x73\x80\x25\x64\x04\xed\xce\ +\x7b\x71\x2a\x6d\x05\x74\xb1\x08\xad\xae\xf7\x90\x2f\xd9\xd1\xae\ +\xa8\xe8\x56\xed\x90\xf5\x43\x70\x58\x1c\x98\xec\x7e\x01\x27\x3d\ +\x16\xdc\xd4\xed\xc4\x3f\x15\x2b\x36\xca\x77\x62\x55\xdb\x27\x7c\ +\x17\x63\x88\x97\x88\xe7\xa2\x63\x08\x31\x02\x6a\xa2\x5d\xc8\x08\ +\x21\x36\x81\x3f\x7d\xb1\x0f\x1f\xee\xff\x12\x5f\xd4\x37\x60\x5a\ +\xfe\x52\x24\x1f\xfe\x08\xb9\xbb\x17\x41\xee\xfa\x12\x79\xbe\x4d\ +\xc8\x3c\xf4\x2c\xda\x43\x4e\x3c\x74\xca\x86\x8b\x03\x3e\xfc\x56\ +\xd0\x91\x1d\xa4\x24\x53\xb8\x89\x31\x83\x4a\x93\x57\x69\xa5\x87\ +\x4d\x62\x8d\xe2\x6b\xe9\xac\x09\x98\x3f\x79\x0a\x4a\x4a\x26\xa0\ +\x57\xb7\xa0\x55\x09\xa2\x3d\x53\x83\xf8\xef\xe7\x90\x55\xef\x81\ +\xb3\xb6\x06\x73\x3e\xbd\x03\x5a\xfe\x64\x5c\x4f\x16\xd8\x9a\xb3\ +\x62\x8b\x5a\x1b\x1b\x30\x0f\x04\xa8\x68\x71\x43\x68\x40\x07\x57\ +\xea\x44\x78\x6b\x7f\x85\xbc\xd7\x4b\xd1\xf3\x79\x11\x52\xa6\xff\ +\x11\xc1\x8c\xbb\x51\x7d\xe9\x9d\x80\xa7\x1a\x3a\x9d\xcc\x8d\x57\ +\x76\x40\x9d\xbe\x99\xfb\x8d\xed\x45\xcc\x10\x1d\x19\x63\x8a\x40\ +\x30\xc4\x13\xd9\xe3\x1f\xb8\xea\x44\x93\xd8\xcc\xca\xfa\x52\x31\ +\xe4\xab\x7f\x07\xef\xa2\x7b\x31\x2d\x48\x5b\xa8\xc5\x89\x0c\xe7\ +\x54\x14\xeb\x4d\xd8\x78\xdd\x3f\xf0\xf3\xe3\xf7\x63\xfd\x2e\x19\ +\xe5\xdd\xe7\xa3\xc0\x61\x3c\x44\x08\x47\x7f\x18\x63\x92\xc4\x14\ +\x42\xbd\x4a\x08\xad\x3d\x3e\xa3\xc5\x1c\x42\xa6\x1c\x50\x7f\x51\ +\x8e\xdc\x8c\x9b\x90\x19\xf2\xa3\x39\x35\x1f\xad\xb6\x4e\x9c\xec\ +\xde\x8e\x1a\x9a\x62\x5a\xf7\x7b\xb0\xb6\x1f\xc6\x92\xcb\x74\xbc\ +\x71\xed\x21\x0a\x39\xf6\x6c\x18\x46\xfe\x72\xc4\x4b\xc4\x73\xd1\ +\x31\x74\xf5\x05\xd1\x46\xa7\xa8\xc7\x4f\x27\xa9\x81\x81\x10\x32\ +\xed\x42\x56\xcf\x87\x90\x85\x7e\x88\xd4\x6a\xa1\xcb\x9d\x45\x9d\ +\x00\x57\xee\x55\x48\xa6\x03\x2b\xc7\x3e\x1d\x5e\x8a\xfd\x5e\x32\ +\xd2\xef\xb3\xd1\xee\x34\x68\x0b\x1e\x03\xb8\xdd\xe1\x6b\xfe\xf9\ +\xd9\x32\x94\x40\x88\xd7\x23\x88\x12\x68\xf7\x99\xae\xd0\xd6\x89\ +\xd0\xbb\x2e\x85\x37\x90\x07\x97\xe8\xa7\x4e\x75\xb0\x58\xd3\x60\ +\x11\x0b\xe0\x14\xf3\xa1\xe6\xaf\x86\xcb\xff\x0d\x5e\xac\x10\xb1\ +\xfa\xca\x46\xd4\xd2\x69\xcd\x72\xc8\x62\x8e\xa1\x51\x40\xb0\xab\ +\x0e\x8d\xaf\x5c\x85\x13\x0f\xa6\x72\xf9\xea\x3c\x01\x97\xb8\x53\ +\x8d\xd6\x30\xa2\x04\x8e\xf7\xf8\x8d\x1a\x85\x82\x9c\x4f\x7f\xe6\ +\xc2\x26\x25\x41\x11\xad\x48\x0b\x74\x21\xad\xaf\x1e\x47\x95\xaf\ +\x51\x26\x97\xc0\xae\xd5\xc0\x9e\xd4\x8f\xe7\x2b\x27\x42\x46\x1f\ +\x1c\x56\x9d\x3c\x46\xe7\xdf\x28\x6f\xa3\xad\x5b\x6e\x87\xa3\xf4\ +\x72\x8c\x5f\xd5\xcc\x65\xcb\xdb\x8b\xb1\x70\x62\xa6\xd1\x1a\x46\ +\x94\x80\x19\x01\x0a\x6c\x39\x6d\x29\xd4\xf6\x65\x50\x2d\x59\xd0\ +\x73\xa7\xc0\x23\xa4\xe1\x82\x80\x05\x7f\xc5\x36\x0a\x99\x7d\x38\ +\xd8\x3a\x09\x3b\xae\x38\x8e\x23\x4d\x12\x9e\x9e\xdf\x80\x4f\x1a\ +\x01\x9f\x6c\x18\x20\x98\xaf\xc3\xac\xb0\x44\x1c\x89\x8e\x9d\xb6\ +\xfe\xda\x3d\x48\x9f\xbf\x12\x16\x9b\x13\xae\xcb\xee\x83\xbf\xe6\ +\x4b\x4c\xc9\x4c\x32\x46\x08\x63\x08\x01\x96\xc4\x95\xd5\xcd\x90\ +\x6c\x7e\x68\x99\xaf\x21\xc5\xf3\x67\x04\x7a\x8e\xc0\x22\xa7\xa0\ +\xd6\x9e\x85\x1c\xa4\xd2\xdb\xd8\x5b\xa8\xea\x48\xc3\xd6\x13\x13\ +\xe0\xd6\x9e\x42\x4a\x53\x31\xbe\x5a\xbc\x15\xef\x9e\x34\x8c\x10\ +\xe2\x25\xe2\x48\x74\x6c\x1e\xf6\x92\x39\xe8\xfa\x6c\x35\xb4\x40\ +\x1f\xba\x3f\x5f\x07\xfb\xf8\x4b\x51\x7d\xaa\xdf\x18\x21\x8c\xe8\ +\x1b\xd9\xec\xb7\x2b\xf0\xaf\x6b\xc6\x63\xf3\xe6\xcd\xf4\x2e\x70\ +\xf6\xb1\x30\x77\xee\x5c\x94\x96\x96\xf2\xdb\xa9\x19\x6c\x55\xd9\ +\xc4\xcc\x18\x4e\xa7\x79\x2b\xa1\x05\x53\x78\x18\xf9\x4f\xfe\x07\ +\xf6\x71\x97\x20\xf7\xa6\xd7\xb1\xb6\x5a\xc0\x23\x9b\x3e\x45\xdf\ +\x8b\x4b\x78\xff\x18\x02\x7b\x6e\xa4\x3b\x3f\xdd\xeb\xd9\x3b\x2f\ +\x93\xec\x54\x66\x32\x18\x0c\x46\xeb\x11\x58\x2c\x16\x5e\xac\x56\ +\x2b\x44\x51\xe4\x85\xfd\xb6\xd9\x6c\x51\xbd\x19\x23\x21\x50\xe0\ +\x6c\x81\xff\xe0\x52\x88\x19\x97\x41\x9e\xb8\x12\xb0\x17\x73\x8f\ +\x2c\xde\x76\x12\xbd\x9a\x17\x1f\xed\xdc\x1f\x25\x10\x13\x42\x9b\ +\x0e\x7b\x50\xba\xa1\x86\xde\x85\x9d\xf0\x7a\xbd\x48\x4f\x4f\xe7\ +\x2e\xcd\xcb\xcb\x43\x41\x41\x01\x37\x52\x54\x54\xc4\x0b\x76\x2c\ +\x81\xad\x72\x23\x32\x53\xe9\x24\x3b\xf0\x0a\xbc\x9b\x7f\x82\x94\ +\x94\x14\xc8\xb2\x8c\x96\x96\x16\xc3\xe2\xc8\x21\x2a\xc7\xa0\x1c\ +\x5a\x4e\xdb\x9a\x0f\x82\x94\x01\xc1\x51\x8c\xc6\x46\x4a\x30\xc2\ +\x8e\x23\x3d\x5c\x9a\x11\x37\x89\x19\xce\x26\xc1\x74\x5d\x8b\xe9\ +\x67\x2e\x67\xa2\x6b\x3e\xb1\x07\xce\xfa\x07\xa0\x07\xbd\x08\xa4\ +\x5c\x8e\xb6\xe4\xdb\x49\xdf\xc8\xfb\x25\x42\x42\x02\xc3\x25\x18\ +\xd4\x53\x71\x13\x4c\xf7\x54\xc0\x9d\x6d\x1d\xf6\xd9\x44\x3a\xf6\ +\x9c\xab\xe5\x37\x10\x75\x0f\xc4\xcc\x79\x70\x5d\xf0\x02\xe9\x8b\ +\xa3\xfd\x12\x21\x21\x81\x44\x08\xb5\x7d\x80\xc0\x37\x8f\x53\x42\ +\xad\x87\xef\xd8\x67\xa8\x79\x24\x97\xcb\xbc\x9b\xdf\x80\xda\xf0\ +\x26\x94\x83\xcb\x28\xb1\x46\xb6\x09\xe8\x6a\x27\xfc\x5f\xdd\x4a\ +\x97\xc4\x16\x04\x1d\xe7\xc1\x36\x63\x1d\xcd\x4c\x32\x5a\x87\xc7\ +\x88\x08\xc8\xde\x9d\x50\xaa\x56\x12\x89\x8f\x20\xa8\x5f\xc3\xbd\ +\xfc\x13\x4c\x78\xda\xcb\xa5\x98\x9a\x43\x3b\x47\x15\xb4\xde\x23\ +\x48\x6e\x79\x92\x7a\x9f\xd9\xfd\x82\x85\x8b\x52\x7e\x1b\x74\x5f\ +\x2d\x2c\xce\x69\xf0\x16\x3c\x45\x89\x60\xba\x21\x9e\x06\x67\x4c\ +\x80\xad\xbc\x93\x4d\x4c\x0f\x41\x1a\x77\x0f\xc4\x9c\xab\xb9\x3e\ +\x92\x60\x02\x0d\x6a\x9f\xf9\x1a\x04\x2b\x25\x72\xef\x6e\xa8\x27\ +\xd6\x70\xfd\x70\x60\x9e\x62\x1e\xd3\x7a\x0f\x53\xb2\x96\xc0\x56\ +\xb6\x01\xba\x25\xd9\x68\x3d\x33\xc4\xee\x75\x26\x98\x13\x87\xad\ +\x3c\x9f\x3c\xbd\xb7\xf9\x32\x6e\x45\xa7\x74\x03\xdb\xef\x78\x5b\ +\x6c\x82\x89\x90\x72\x1f\x45\x4a\xe3\xaf\xa1\xd6\xbe\x8a\x2e\x25\ +\x93\x92\x31\xfc\x05\x6d\x48\x22\xea\x41\xd8\x6a\x1f\x84\xa6\x96\ +\x43\xb3\x66\xc3\x93\xf7\x0c\xb4\xd6\xfe\xb8\x09\xcb\x74\x2c\x17\ +\xe2\x21\x21\x81\x48\x82\xb1\x95\x57\x5a\xc9\xad\xc6\xe4\x33\x67\ +\x3e\x14\xee\x60\x42\xac\xf1\x42\xb4\xab\xf5\x48\x6e\x5b\x0b\x67\ +\xdb\x73\xb0\xbb\xcb\x60\x49\x9d\x19\x6e\x89\xf4\x23\x2f\x2a\x55\ +\x0f\x20\x44\x93\x67\x5b\x65\xf2\x05\x6f\xc1\x99\x34\x2e\xdc\x46\ +\x48\x34\xd9\x78\x18\x12\x42\x0b\xc7\x3b\xb9\x64\x57\x58\x3d\xd0\ +\x81\x20\xc5\x7b\x24\x6c\x7c\x99\x8b\x79\xdb\xe9\xa0\xa4\x5d\x07\ +\xab\xfb\x66\xe2\xac\x20\xd8\xb4\x85\x64\x20\x7a\x25\x26\x63\x08\ +\x1c\xfd\x03\x2d\xcc\xfb\x3c\x5c\x6c\x65\xeb\x21\x98\x26\x3f\x52\ +\xc4\x10\x28\x49\x95\xf0\xd2\xc5\xa1\xe8\x15\xb6\x69\xc3\x22\x88\ +\xee\x95\xb4\x2b\xac\x85\x34\xfe\x5e\xa3\xd7\x99\x41\x9e\xf4\x30\ +\x27\x6d\xc9\x5d\x8e\xc6\x57\xaf\x8d\x5e\x89\x83\x5d\xf5\x14\x3d\ +\x74\x20\x51\xce\x78\x0b\x9e\xa0\xc4\x9d\x6e\x3c\x71\x76\x88\x21\ +\x30\x25\xc3\x16\xf7\x0a\x2b\xe6\x2c\x34\x7a\x8c\x00\x02\xe5\xc3\ +\xb8\xbb\xe2\xda\xb3\xba\x6f\xa1\x45\x79\x9e\xb6\xcc\xf3\x8d\xce\ +\x67\x8f\x98\x1c\xc8\x4e\xb2\xa2\x8e\x4e\xd8\x82\x3b\xde\xa7\xf1\ +\x65\x7e\xc2\x76\x7e\xfc\x18\x3f\x79\xd9\x6e\x93\x28\xc1\x06\x23\ +\xa2\x63\x61\xc3\x4e\xec\xc1\xf6\x2c\x69\x17\x92\xbd\xa6\x11\xd9\ +\x3b\xa3\x24\x6e\xef\x0f\x46\x4f\x58\xd7\xbc\xfb\xa3\x27\x2c\xbb\ +\x03\x45\x0c\xc4\x33\x34\x9c\x2e\xbe\x3d\xcb\x88\xed\x25\x42\x4c\ +\x08\x55\x77\x2a\x71\x4f\xd8\x73\xc1\x68\xdb\x1b\x8c\x18\x02\xb5\ +\x1e\x15\x77\xef\xb5\xc6\x9c\xb0\xd6\xf4\x12\xa3\xf5\xec\x60\x4d\ +\x2f\x1e\x55\x7b\x83\x31\x64\x1b\xfd\xb0\xc6\xcb\x65\xe4\x84\x1d\ +\x2d\x8c\xb6\xbd\x08\x62\x5e\x68\xee\xfe\x41\x31\x1e\xf9\xa2\x0d\ +\x75\xcb\xa7\xf0\x7f\xeb\x0c\xbe\x05\xb2\x64\xfa\x7f\xe9\xca\xca\ +\xca\x90\xf1\x64\x05\xe6\x4f\xb6\xc4\xbc\xd0\xb0\x1d\x86\xe3\xa2\ +\xbf\x94\xeb\x1b\x0f\x75\xea\x45\x2f\x1f\x31\x34\xdf\x3d\xa4\x3f\ +\x51\xae\xff\xf4\x9d\x83\x7a\xd2\x5d\x1b\x0d\x8d\xae\xc7\x78\xe0\ +\x97\x33\x8a\xf0\xf0\xae\x56\x22\xc5\x88\x51\x61\x5f\x81\xa9\xc2\ +\x7b\xf0\xef\xf2\x9c\x70\x54\xc7\xea\x5c\xb2\x8f\x62\xac\xce\x0c\ +\x8d\x25\x68\x0e\x0b\xa6\x8a\xf8\x78\xd7\x01\xf4\xbe\xb0\x98\xef\ +\x8e\x02\xbd\xe7\xf2\x71\xe7\x6c\xab\xc4\xb2\x49\x6e\xfc\xbd\xa6\ +\x99\x26\x13\x9e\x1c\xc7\xe0\xba\x21\xa3\x13\x36\xfe\xf0\x2e\xbc\ +\x3e\x76\x60\xe6\x25\x01\xd8\x79\xa0\x0a\xa7\x9e\xb9\x91\xeb\x04\ +\x7a\x81\xd7\xd9\x4b\xfb\xec\x1d\x87\x51\xff\xdf\x23\x08\x9a\xbe\ +\x3b\x7e\x17\x21\x39\x64\x14\x5c\x38\x09\x7b\xae\x99\xc2\x3f\x24\ +\x44\x09\xb0\x7f\x70\x33\x19\x29\xec\x37\x2b\xec\x4b\x44\x44\x9a\ +\xdb\x59\x89\xe8\x98\x8c\x7c\xb5\x60\x32\x52\x98\xe7\x98\x64\x60\ +\x5f\x2a\x98\xcb\x99\xe4\x03\x53\x9d\x7d\xb9\x30\x7f\xd9\x30\x4b\ +\x49\x92\xb8\x8c\x14\xf6\xdb\xac\x63\x75\x6e\x87\x06\x0d\x07\x81\ +\x69\xb0\xc8\xe0\xa7\x2b\x91\xfe\x66\x1d\x43\x44\x1f\x0f\x3c\x6e\ +\xa9\x98\xeb\x83\x0b\x23\xc5\x10\x21\x6d\xae\x9b\xdb\x00\xe0\x7f\ +\x50\x4d\x06\xa1\x55\x9f\xd2\x8d\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x0e\x6a\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ +\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\ +\x0e\x1b\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\ +\x72\x65\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\ +\x61\x64\x79\x71\xc9\x65\x3c\x00\x00\x03\x66\x69\x54\x58\x74\x58\ +\x4d\x4c\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\ +\x00\x00\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\ +\x65\x67\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\ +\x35\x4d\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\ +\x54\x63\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\ +\x70\x6d\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\ +\x64\x6f\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\ +\x3a\x78\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\ +\x50\x20\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\ +\x36\x36\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\ +\x30\x32\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\ +\x20\x20\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\ +\x46\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\ +\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\ +\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\ +\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\ +\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\ +\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\ +\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ +\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ +\x73\x54\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\ +\x66\x23\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\ +\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\ +\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\ +\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x43\ +\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\x32\x31\x31\x41\ +\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\x44\x31\x43\x22\ +\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\ +\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x36\x43\x42\x33\x33\ +\x45\x36\x45\x44\x31\x41\x46\x31\x31\x45\x32\x41\x42\x45\x39\x45\ +\x34\x32\x44\x38\x43\x30\x42\x43\x41\x37\x31\x22\x20\x78\x6d\x70\ +\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\ +\x6d\x70\x2e\x69\x69\x64\x3a\x36\x43\x42\x33\x33\x45\x36\x44\x44\ +\x31\x41\x46\x31\x31\x45\x32\x41\x42\x45\x39\x45\x34\x32\x44\x38\ +\x43\x30\x42\x43\x41\x37\x31\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\ +\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\ +\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x57\ +\x69\x6e\x64\x6f\x77\x73\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\ +\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\ +\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\ +\x6d\x70\x2e\x69\x69\x64\x3a\x44\x37\x35\x33\x33\x43\x46\x35\x41\ +\x44\x44\x31\x45\x32\x31\x31\x42\x45\x43\x46\x41\x34\x44\x38\x38\ +\x38\x31\x30\x43\x41\x33\x36\x22\x20\x73\x74\x52\x65\x66\x3a\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\ +\x69\x64\x3a\x43\x42\x42\x31\x44\x38\x44\x33\x46\x42\x38\x30\x45\ +\x32\x31\x31\x41\x31\x32\x46\x39\x42\x46\x37\x39\x42\x41\x36\x43\ +\x44\x31\x43\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\ +\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\ +\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\ +\x22\x72\x22\x3f\x3e\xee\x58\x0f\xf2\x00\x00\x0a\x68\x49\x44\x41\ +\x54\x68\x43\xd5\x59\x0b\x70\x54\xd5\x19\xfe\xf6\x95\xcd\x9b\x3c\ +\xc8\x83\x6c\x4c\x48\x2c\x09\x16\x4b\x22\x48\x4b\x69\xcb\x28\xc5\ +\x96\xb1\x1d\x67\x7c\x54\x6b\x9d\x11\xa7\xd0\x91\x4a\xdf\x83\x3a\ +\x43\x8b\xf5\x81\x56\xa7\xf6\xa1\xa5\x05\xf1\x55\x1d\x8b\x45\xed\ +\x54\x4b\x55\xd4\x8e\x30\x14\x14\x79\x19\x11\x10\x30\x26\xe6\x45\ +\xb2\x49\x48\x42\x76\x93\xdd\xfb\xee\xff\x9f\x7b\xef\xe6\xee\x66\ +\x83\x59\x58\xa6\xfa\xed\x9c\x9c\x73\xfe\x73\xee\x7f\xce\x7f\xfe\ +\xff\x3b\xe7\xdc\x1b\x97\x41\xc0\x67\x18\x6e\x2b\xff\xcc\x22\xe6\ +\x81\x2b\x0f\xf4\xa2\x41\x53\xe0\x87\x01\xa7\x4f\x74\x2b\x07\xc9\ +\xed\xcc\x6e\x76\x74\x83\xee\xac\x10\x92\xf9\x95\x34\x5b\x25\x13\ +\x4e\xe7\x27\x76\x1f\x1b\x97\xda\x1c\x15\xc9\x05\x7c\xe8\xcf\xc4\ +\x96\x8b\xcb\x44\x3d\x66\xc0\x9d\x7b\xbb\xb0\x66\xee\x34\x28\x54\ +\x63\x09\x0b\x35\x6e\xa0\x82\x26\x64\x06\x29\xa5\x44\x39\xb7\xb3\ +\xcc\x6a\x36\x07\xb7\xea\xa7\xc3\x24\xba\x50\x9f\xd3\xf4\xb2\x9a\ +\x56\xbd\xb0\x07\x9b\x6f\xfa\xaa\x28\xc7\x0c\xb8\x6f\x6f\x27\x7e\ +\x3e\xa7\x02\xdd\x51\x1d\xb5\x39\x5e\xd1\x78\xb6\xb8\xff\xf0\xb0\ +\x55\x22\x98\xc3\x08\xc4\xad\x6e\xc2\x7c\x79\x91\x92\x81\x3d\xcc\ +\xc6\x5d\x56\xea\xc1\x43\x2f\xed\xc5\x73\x37\x7f\x5d\xc8\x63\x06\ +\xdc\xb3\xa7\x13\xbf\xb8\xa8\x02\x9d\x51\x0d\xf5\x79\x3e\xd1\xe8\ +\x44\xf3\x60\x14\x3b\x3a\x42\xa8\x29\xca\x46\x51\x96\x17\x11\xd2\ +\x18\x0c\x29\xd8\xdb\x79\x0a\xdf\x9d\x55\x8c\x0b\x8b\xb3\xac\x9e\ +\xe7\x0e\xbf\x6a\x1a\xc4\xa2\x12\x17\xd6\x6f\xd9\x8f\xe7\x57\x24\ +\x1a\xf0\x4e\x07\x7e\x36\x27\x80\x96\x11\x15\x0d\x05\x19\xa2\xd1\ +\xc6\xbe\x01\x05\xbb\xfa\x24\xec\xea\x95\x20\xa9\x06\x34\x9a\xbc\ +\xce\x4b\xa2\xeb\xc4\x19\x20\xdf\xeb\x42\x75\xae\x8e\xbb\xbe\x34\ +\x0d\x14\xa2\x31\x74\x76\x76\x5a\x25\xa0\xbf\xbf\x1f\x53\xa7\x4e\ +\xb5\x6a\x26\x52\x91\x35\x36\x36\xe2\xb6\xfd\x03\x58\x54\xea\xc2\ +\x23\x64\xc0\x3f\x6f\x59\x2c\xda\x62\xbb\x10\xcf\x87\xe6\x86\x28\ +\xff\x71\xe0\x60\x70\x04\x6d\xa3\x2a\xfa\x24\x15\x61\x59\xa3\x76\ +\x8d\x8c\xd0\x21\x29\x1a\x22\x94\x86\xa2\x2a\xda\xc9\x13\xb2\xe6\ +\xc1\x3d\xfb\xba\xac\xa7\x4c\x54\x56\x56\xc6\x12\x4f\xca\x59\x4f\ +\x55\xc6\x50\x89\x78\x51\x8d\x82\xcc\x11\x77\x63\x06\x50\x7c\x29\ +\x64\xc5\x88\xcd\x4e\xc2\x7f\x3e\x1a\x42\x41\x5e\x26\x24\x92\xd1\ +\xbc\x21\xd3\x84\x7b\xba\x4f\xa1\xb9\xb9\x07\x2d\x2d\xbd\xe8\xeb\ +\x0b\x43\xa1\x36\x49\xd1\x71\xe8\x58\x2b\xfa\x47\xdd\x08\x8e\x2a\ +\xd6\xd3\xe9\x87\xcc\x63\x59\x11\x60\x23\x66\x00\x1b\xa5\x52\x43\ +\x84\x56\xd7\xc6\xf9\xe5\x79\x78\xbd\x27\x8a\x42\x0a\x11\x85\x56\ +\xbf\xb9\xb9\x17\x43\xa7\x46\x45\xf8\x70\x1a\x0e\x8d\xa2\xbb\x7b\ +\x10\x8a\xa2\x22\x98\x31\x15\xc7\xfb\x22\xf8\x53\xf3\xa0\xf5\x74\ +\xfa\xc1\x0b\xc9\xc9\x49\xfc\x31\x03\xe8\x27\xb3\x07\x78\x1f\x25\ +\xb4\x0e\x45\xf1\xf4\xc7\x23\x78\xf7\xa4\x8c\x4d\xc7\x87\x70\xdd\ +\x79\x7e\x78\x3d\x6e\xf8\xbc\x1e\xca\x29\x51\xce\x65\xee\xbd\xfd\ +\x9a\x6a\xe1\x9d\xfe\xb0\x8a\xfe\x90\x8a\x77\xfb\x46\x85\x8e\x74\ +\x43\x78\x9b\x42\x48\x25\xee\xd9\x88\xed\x97\x6c\x15\xcd\x01\x21\ +\xd9\x34\x60\xdb\xa0\x8a\xbd\xbd\x51\x72\x9b\x8e\xee\xf6\x61\x2c\ +\x6b\x1d\xc6\x0d\xe5\x23\x98\x51\x57\x8f\xfb\x77\x07\xc5\xc4\x1f\ +\xfd\x66\x25\x96\x3e\xbd\x13\xf3\x9e\xa2\x5d\x8b\xd8\xcb\xca\x0f\ +\x7c\x14\xc2\x23\x79\x1e\x6c\x28\xc9\x1e\x47\xe2\x44\xa4\x22\x63\ +\x2e\x28\xcc\x3d\x5a\xe4\xa4\x1c\xa0\xb1\x21\x53\xc3\x08\x5b\x41\ +\x68\x21\x62\xaa\x24\xd4\xc8\x6a\xb1\xea\x5e\x37\xfe\x15\x2a\xc6\ +\x34\x57\x18\x9b\xae\xa8\xc6\xab\xdf\xa9\x45\xae\x11\x45\xf6\xb4\ +\x5a\xe1\x0d\x9d\xfb\x92\xf2\x51\x59\xc1\xc9\xb0\xc9\x83\x44\x22\ +\x3a\xeb\xa9\xca\x18\x9a\xd8\x3c\x88\x8f\x34\x8e\x8d\x38\x12\x33\ +\x49\xc2\xd6\x2e\xb4\x76\x76\x21\xb6\x2e\x2e\x27\x03\x74\x64\x64\ +\x78\xe1\xf7\xf9\xe0\xf7\x7a\xb1\xba\x49\xc5\xcc\x42\x3f\x4a\xb2\ +\xdc\x58\xbe\x23\x44\x6d\x24\xf7\x79\xc5\xea\x70\xdf\x43\xcb\x2f\ +\xc4\xf3\x0b\x2a\x85\x8e\x74\x43\xa1\xc9\x2b\xd6\x42\xd9\x88\x23\ +\x31\x13\x24\x4c\x3b\x0a\x63\xd9\xdb\x7d\xb8\xf4\x95\x2e\xb1\xb2\ +\x5e\xf7\x58\xdc\x2f\x9f\xe1\x83\x8f\xb8\x90\x41\xf5\xe5\x75\x66\ +\x99\xe5\xec\x56\xbe\x66\xd4\xae\x3f\x88\x85\x3b\xdb\x85\x8e\x74\ +\x83\x3d\x20\x53\xe2\x71\x6c\x8c\x85\x10\xc9\xd8\x35\x23\xb4\xdb\ +\x30\x3c\x94\x74\x22\x0b\x5b\xcb\xe1\x63\x26\x0f\x9e\x69\x77\x61\ +\xfe\x86\xdd\xf8\xca\x63\xfb\xf0\xb7\x36\x88\xf0\xca\xe0\x10\xa2\ +\xbe\xbc\x33\x19\x1e\x03\x9e\x1c\x7e\x3a\xfd\x90\x69\x2f\x67\x22\ +\x0f\x47\xc7\xb6\xea\xb1\x10\x22\xab\x14\x0a\x9f\x51\xc9\x34\x60\ +\x65\x4d\x36\x74\xb2\x96\xb7\x4f\x45\x93\x51\x9a\xeb\xa7\x10\xf2\ +\x21\x93\x42\xa9\x20\x50\x8b\xfc\xf2\x2a\xf8\x39\x7c\x28\x95\xe6\ +\xf9\x4d\xbe\xe8\x1a\x7c\xd5\x39\xf8\x7d\x79\x81\xd0\xc1\x24\xb6\ +\x13\x13\xd1\x59\x4f\x55\xc6\xe0\x10\x0a\xd3\x81\x1a\x3c\x15\x11\ +\x75\xc6\x58\x08\xd1\x8f\x57\x9b\x49\xcb\x68\x28\xcf\x01\xcd\x95\ +\x42\x43\x47\x98\x2c\x3e\x31\x38\x8c\x8a\x5c\x2f\x3c\x1e\x97\x48\ +\xbc\xa5\x72\x6a\x28\xf6\xe1\x58\x5b\xaf\xb9\x33\xf8\xdc\x28\xc8\ +\xf6\xe0\xa2\x69\x39\x42\x47\x22\x11\x9d\xf5\x54\x65\x8c\x41\xba\ +\xe6\xf4\x8e\xc8\xe4\x01\x59\xd4\x19\x63\x21\x44\xa1\x2f\xbc\x60\ +\x71\x80\x91\x23\x49\x70\xd3\xf6\xc8\xe4\x1c\x1c\x91\xb0\xa7\x35\ +\x88\xba\x5c\x03\x57\xd7\x66\xe2\xea\x9a\x4c\x9c\x9f\xa5\xe1\xef\ +\x7b\x3f\xc6\x00\xb5\x69\xa4\xc9\x28\xf3\xe3\xa5\xc6\x80\xf5\x74\ +\xfa\x10\x08\x98\x3a\x67\x97\x64\x40\xb2\x42\xdc\x46\xcc\x80\xbe\ +\x08\xc5\x15\x79\x80\xef\x1b\x36\xb6\x5c\x55\x07\x97\x5b\x15\x5e\ +\x61\x23\x64\x3a\x71\xb7\x1c\x0e\x62\xed\x9b\x2d\xb8\xfb\x8d\x66\ +\xbc\x78\xf0\x04\xc5\xbd\x69\x38\x68\xf2\x05\x74\x0d\x9f\x96\x17\ +\x7f\x11\x3c\x1b\xa8\x83\xed\xe8\xda\xf0\x0d\xb4\xac\xce\x17\xf9\ +\xc6\x85\x2e\x7c\x39\x90\x6f\xb5\x9a\x88\x19\xf0\xd1\xa9\x28\x06\ +\x24\x1d\xc1\x91\xf8\xbb\xcc\xdb\x57\xd7\x43\x77\x53\x7c\xd3\x24\ +\x45\x88\x51\x9c\x0b\x83\xa8\x2c\x48\x4b\x3f\x9d\xb4\x14\xba\x5c\ +\x38\x7c\x79\x9d\xf5\x54\x7a\x10\xdc\xbc\x0c\x59\x9f\xbb\x04\x35\ +\x77\x76\x8b\xbc\xe7\xd9\xa5\x58\x72\x7e\xb1\xd5\x6a\x22\x66\x00\ +\x23\x4a\xa4\x6d\x1e\x34\xe3\x4b\x6c\x8b\xbc\xb3\x68\x1a\xf6\x5d\ +\x53\x85\x75\x0b\xa6\x40\xf7\x11\xa9\xa7\xfa\xa0\x56\x10\x69\xa7\ +\x67\x41\xab\xce\x06\x1d\x09\x78\xfa\xb2\x32\x1c\xbe\xf6\x02\x73\ +\x2f\x76\x20\x91\x88\xce\xfa\x27\xc9\x78\xfc\x68\xdb\x6e\x14\x5e\ +\xba\x0a\x6e\x7f\x2e\x0a\xbe\xf6\x13\x44\x5b\xdf\x42\x7d\x71\xb6\ +\xa5\xdd\x44\x9c\x01\x36\x78\xe2\xb2\x2c\x23\x1c\x0e\x63\x68\x68\ +\x08\xc1\x60\x10\x15\xc6\x10\x5e\x9c\x07\x6c\x9d\xa5\xe3\xf5\x99\ +\x1a\xb6\xcd\xa4\xeb\xc6\xe7\x81\x17\x16\x65\xa3\xd6\x1f\x15\x7d\ +\x23\x91\x88\x78\xd6\x46\x22\x11\x9d\xf5\x4f\x92\xb9\xc8\xa3\x99\ +\xd5\xf3\x31\xb8\xed\x41\xe8\xf2\x08\x86\xfe\xfb\x30\x32\x6b\x16\ +\xe0\xd8\xc9\x84\x7b\x16\x59\x2a\x70\xf1\xa6\x26\xe3\xc9\xf7\x07\ +\x8c\xf3\xd6\x1f\x15\xf5\x8e\x8e\x0e\x91\x3b\x91\x4c\x46\x13\xb6\ +\x4a\x63\x98\xec\xb3\xa7\x93\x69\xc3\x87\x0c\x65\xa0\xcd\xe8\x5c\ +\xbf\xd8\x68\xbe\x3d\x47\xe4\xca\xc0\xc7\xc6\x83\x6f\xb7\x19\xd9\ +\xb7\x3c\x29\xfa\x30\x92\x7a\x60\x32\x48\x24\x18\xd7\xd3\x05\x7d\ +\x68\x1f\xa2\xef\xde\x00\xad\xeb\xb7\xa8\x58\xfa\x18\x6a\x7f\x13\ +\x42\x60\xc5\x1b\x58\xf6\xa6\x81\xb7\x3a\x4e\x59\xbd\x4c\x9c\xb1\ +\x01\xc9\x08\x96\x0e\x78\xa4\x66\x48\xef\xaf\xa0\xbd\x3b\x02\x97\ +\xaf\x08\xae\xac\x2a\x74\x75\x99\x6f\x7a\x5b\x8e\xc6\x4f\x9e\x31\ +\xa1\x01\x67\x42\x30\x3e\xf4\x9c\xfd\x9c\x69\x32\xb2\xee\x96\xdd\ +\xc8\xed\xb8\x15\x86\x1a\x82\x9c\x77\x09\x7a\x73\x96\x91\xbc\x4b\ +\xf4\x9b\x08\x13\x1a\x70\x3a\x82\x41\x39\x99\x94\x60\xc6\xf0\x7b\ +\x08\x94\x78\x53\x26\x2c\x27\x7e\xae\xa0\xe7\x76\x78\x8c\x61\x78\ +\x8a\x17\xa2\x60\xce\x3a\x92\x57\xc5\xfa\x4d\x84\x94\x43\x48\xeb\ +\x7d\x05\xf2\x87\xf7\xa0\xec\xba\xc7\x11\x69\xde\x86\xd6\x3b\xca\ +\x44\x5e\x7e\xfd\x5f\xa1\x74\x3e\x05\xe9\xe0\xcd\x70\x19\x92\xd5\ +\x7b\x72\x20\x76\x52\xcc\xdf\x08\x43\xea\x81\x9a\x75\x21\xfc\xb3\ +\x1e\xa6\x99\x8d\xff\xb4\x93\x0c\x29\x19\x90\x11\xda\x0e\xe9\xc8\ +\x2a\x32\x62\x2b\x5c\xca\x21\x41\x2c\x9b\x60\x9e\xfc\x52\xe8\xa1\ +\x23\xd0\xc3\x47\x91\xd3\x73\x2f\xf5\x8e\x3f\x13\x26\x02\x87\x8b\ +\xd4\xf4\x7d\x18\x91\x36\xb8\x73\x2f\x40\xa8\xe2\x3e\x22\xc2\xe4\ +\xbf\x31\x4d\xda\x00\x5e\xf9\x5c\x9e\x98\x41\x37\xce\xe9\x3f\x82\ +\xa7\xf4\x72\x21\xb7\x09\xe6\xa2\x41\x33\x1b\x1e\x85\xcb\x9b\x87\ +\x8c\xf0\x2e\x28\x2d\x7f\x10\xf2\xd3\x81\x3d\xc5\x1e\xd3\xc3\x1f\ +\x10\x59\xab\xe1\x6f\x7c\x02\x86\xdb\xbc\x08\x4e\x16\x13\x7e\x43\ +\x74\x12\x87\x57\x5e\x4c\x9e\xde\xdb\x22\x45\x37\x62\xc0\x77\x25\ +\x1f\xb3\xa2\x2d\x9e\x60\xf4\xa2\x5f\xf6\x6b\xe4\x75\xdd\x06\xa5\ +\x6d\x23\x06\xa5\x62\x22\xa3\xf9\x05\x6d\x1c\x11\x0d\x15\xfe\xb6\ +\xd5\xd0\x95\x26\xe8\xde\x12\x0c\x97\x3f\x00\x3d\x38\x9a\x94\xb0\ +\x2c\x63\x2e\x24\xc3\x84\x06\xd8\x04\xe3\x95\x97\x82\xe4\x56\x6b\ +\xf2\xc5\x0d\xbf\x34\x3b\x38\x10\xaf\xbc\x12\x7d\x4a\x07\x72\x7a\ +\x1f\x42\x6e\xef\xef\x90\x19\x68\x84\x3b\xbf\xc1\x6c\xb1\xfb\x91\ +\x17\xa5\x23\xb7\x42\xa3\xc9\xf3\x56\x99\x33\xe7\x19\xe4\x66\x4f\ +\x37\xdb\x08\x13\x4d\x36\x19\xc6\x85\xd0\x92\x9a\x5c\x91\xf3\x15\ +\xd6\x90\xfb\xa1\x52\xbc\xdb\x61\x13\x29\x9e\xdc\x5e\x2f\x4d\xb9\ +\x02\xde\xc0\xf5\x64\xb3\x04\xf5\xc4\x66\xca\xe5\xd8\x95\x98\x94\ +\x41\x3e\x7e\x37\x2d\xcc\xcb\x22\x5c\xfc\x8d\x8f\xc3\xe5\x98\x7c\ +\xaa\x88\x33\xa0\x3a\xdf\x87\xbf\x7c\x51\x8b\x9d\xb0\x27\x9e\xf8\ +\x1e\x3c\x81\x55\xb4\x2b\x3c\x04\x5f\xcd\x8f\xad\x5e\x93\x43\xc6\ +\x8c\x35\xc2\x68\x77\xd9\x0a\x74\x6d\xfc\xb6\xe3\xc4\xee\xa0\xe8\ +\xa1\x03\x89\x38\x13\xaa\x58\x4b\xc4\xa5\x0b\xd5\x59\x20\xce\x80\ +\xfa\x22\x7f\xd2\x13\xd6\x53\xba\xc4\xea\x91\x02\x5c\xc4\x87\xe9\ +\xb7\x24\xd5\xe7\x0d\xdc\x40\x8b\xf2\x47\xda\x32\x67\x5b\x9d\xcf\ +\x1c\x71\x1c\x28\xc9\xf6\xa2\x9d\x4e\xd8\x8a\x1f\xbc\x4c\xe3\x67\ +\x88\x13\x76\xe0\xb5\xbb\xc4\xc9\xcb\xbb\xcd\x44\x04\x4b\x84\x2d\ +\xe3\xb0\xe1\x13\x3b\x51\x9f\x7b\xca\x5c\xd2\x77\x22\x25\x7d\x93\ +\x22\x71\xdf\xa8\x1a\x3b\x61\x0b\x16\xfe\x34\x76\xc2\xf2\xd5\xd6\ +\x56\x90\x4c\xd1\xe9\x64\xc9\xf5\xb9\x53\xd6\x37\x11\xe2\x42\xe8\ +\xd8\x80\x94\xf4\x84\x3d\x1b\xa4\x5b\x5f\x22\xe2\x0c\x68\x1b\x56\ +\xb0\x72\x8f\x37\xee\x84\xf5\x16\x56\x5b\xad\x67\x06\x6f\x61\x55\ +\x5a\xf5\x25\x62\xdc\x36\xfa\x6a\x6b\x48\xe4\xf6\x09\x9b\x2e\xa4\ +\x5b\x9f\x8d\xd8\xbf\x98\xe6\x3d\xfb\x1e\x56\x7e\xa1\x0a\x77\xec\ +\xec\x45\xfb\x8a\x7a\x34\x35\x35\x8d\xbb\x05\x32\x99\xfe\x5f\x32\ +\xfe\x17\x53\xd1\xbd\xef\xe1\xd2\x3a\x37\xb6\x6e\xdf\x8f\x91\x3f\ +\xdf\x64\x36\xb2\x01\x8c\xc4\x57\xca\x4f\x23\x0a\xd7\x36\x19\x57\ +\x3d\x77\x30\xee\x95\x32\xce\x03\x3f\x9c\x75\x1e\xd6\xec\x08\x92\ +\x51\x6c\x18\x25\xdd\x2c\x88\x1e\xfc\x09\x45\x54\xc7\x64\x5c\x16\ +\x39\xbf\xc7\x73\x99\x15\x9d\x4b\xd0\x1c\x16\xcd\xf4\xe0\xb5\x1d\ +\x07\x10\x5e\xb7\x54\xec\x8e\x2e\xcd\xfa\x96\x38\xff\x1f\x87\x71\ +\xf3\x8c\x00\xfe\xdd\xda\x4d\x93\x31\x27\x27\x90\x58\xb6\xf2\xd8\ +\x84\xad\x3f\xa2\x8b\x28\x9f\x3b\xb0\x7a\x9f\x0b\xd8\x7e\xe0\x08\ +\x4e\x3e\x70\xad\x90\xb9\x64\x59\x36\x54\x55\xc5\xbc\x2d\x1f\xa0\ +\xe3\x9d\xa3\x50\x1d\xdf\x1d\x3f\x8d\xf0\x65\x65\xa0\x62\xee\x0c\ +\xec\xfe\x56\x3d\x3c\x1e\xcf\x98\x01\x8a\xa2\x80\x73\x3b\x71\x9d\ +\x13\x79\x28\x96\x3b\xdb\x39\xd9\x32\xce\xf9\x7b\x90\x9d\xdb\x89\ +\x3d\xc7\x39\xc3\xed\x76\x0b\x97\x73\x2e\x06\xa6\xb2\xd7\xeb\x15\ +\x75\xce\x59\xe6\xcc\x7d\x3e\x9f\xc8\xed\xc4\x75\xa7\x8c\xcb\x42\ +\x0f\x0d\x6a\x06\x81\x63\x30\x7b\xf0\x4f\x4a\x76\x7f\xa7\x8c\x61\ +\xcb\x93\x41\xc4\x2d\x25\x67\x39\x31\xb1\x51\x0c\xdb\x68\x67\xd9\ +\xd9\x06\x00\xff\x03\x54\xa1\x0e\xb5\xb7\xb8\x0f\x22\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\x44\ +\x00\ +\x00\x1b\x36\x78\x9c\x73\xf2\x35\x93\x66\x00\x03\x33\x20\xd6\x00\ +\x62\x03\x28\x66\x64\x90\x80\x48\x00\xe5\x8f\xf0\x41\x30\x0c\xfc\ +\xa7\x01\xb8\xf1\xe4\x06\x10\xd5\x2e\xa9\x05\xa2\xa8\x9e\x28\x82\ +\x08\xa2\x12\xa2\x6b\xb0\xb9\x67\x1a\xd1\x80\x78\xf7\xe0\x72\xc9\ +\xce\x93\x3b\x81\x68\xcf\xe9\x3d\x40\x84\xcb\x55\x83\xd3\x3d\xa4\ +\xc7\x09\x3e\x80\x2b\x5e\x9e\x21\x01\x5c\x6a\x06\xb3\x7b\x88\x8f\ +\x3b\xfc\x60\x78\xbb\xe7\x19\xc5\x00\x62\x32\x24\xdd\x12\xa3\x1e\ +\x92\xce\x47\x9a\x7b\xce\xdd\x3c\x0b\x44\x6f\xdf\xbe\x21\x88\x2e\ +\xdc\x3a\x0f\x44\x43\xce\x3d\xf0\x3a\x8e\x3c\xf7\x74\xaf\xeb\x42\ +\x43\xc8\x6e\xc0\x94\xc5\xef\x1e\x06\x54\x30\x0c\xdc\xd3\xb9\xa6\ +\x03\x88\x88\x71\x0f\x44\xe5\xd0\x72\xcf\x33\xbc\xe9\x07\xbf\x3b\ +\x2b\xe6\x57\x00\x51\xf1\xdc\x22\x20\x6a\x5a\xd1\x08\x44\x6d\xab\ +\x5b\x81\xe8\xfc\xad\x73\x40\x74\xf6\xc6\x19\x20\x82\x88\x40\x64\ +\x21\x2a\x31\xeb\x53\x22\xf3\x17\xc1\xa0\x1b\x6c\xee\x39\x7a\xf1\ +\x28\x10\x41\x5c\x85\xab\x5e\xc0\x6c\x69\x20\xb7\xc7\x86\xb4\x7b\ +\x9e\x91\x5e\x34\x21\xdb\x82\x1f\xd0\xa2\x7c\x1e\x75\xcf\xa8\x7b\ +\x46\xdd\x43\x8c\x7b\xc8\x6e\x72\x90\xed\x1e\x4c\xb7\x61\x3a\x86\ +\x48\x27\xe1\x51\x49\x7f\xf7\xe0\x57\x3c\x2c\xdd\x83\x3f\x0a\x06\ +\xc4\x3d\x24\x01\x5a\xa7\x1f\x2a\x82\x51\xf7\xd0\xce\x3d\xb4\x03\ +\x43\xdd\x3d\xa3\x60\x14\x8c\x82\x51\x30\x0a\x06\x0f\x00\x00\x8e\ +\x7b\x06\xf5\ " qt_resource_name = "\ @@ -3630,6 +5459,10 @@ \x00\x49\ \x00\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x5f\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x05\ +\x00\x7b\x66\x33\ +\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\ \x00\x0d\ \x04\x2f\x19\xa7\ \x00\x41\ @@ -3677,28 +5510,87 @@ \x06\x02\x8e\x67\ \x00\x70\ \x00\x6f\x00\x73\x00\x74\x00\x74\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x61\x00\x63\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x06\x25\x63\xc7\ +\x00\x46\ +\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x1b\ +\x0f\x12\xda\x07\ +\x00\x6c\ +\x00\x61\x00\x79\x00\x65\x00\x72\x00\x5f\x00\x73\x00\x68\x00\x61\x00\x64\x00\x65\x00\x64\x00\x5f\x00\x72\x00\x65\x00\x6c\x00\x69\ +\x00\x65\x00\x66\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x19\ +\x06\x3a\x8f\x67\ +\x00\x4c\ +\x00\x69\x00\x6e\x00\x65\x00\x5f\x00\x47\x00\x72\x00\x61\x00\x70\x00\x68\x00\x5f\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\x00\x5f\ +\x00\x66\x00\x6c\x00\x6f\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x0a\x70\x9c\x87\ +\x00\x57\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x0e\xf0\x6b\x47\ +\x00\x56\ +\x00\x69\x00\x64\x00\x65\x00\x6f\x00\x5f\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x0a\xcc\x77\x00\ +\x00\x6c\ +\x00\x61\x00\x79\x00\x65\x00\x72\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x5f\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x2e\x00\x62\x00\x6d\ +\x00\x70\ +\x00\x14\ +\x0a\x83\xcb\x07\ +\x00\x4c\ +\x00\x69\x00\x6e\x00\x65\x00\x5f\x00\x47\x00\x72\x00\x61\x00\x70\x00\x68\x00\x5f\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x1c\ +\x02\x93\x2c\x07\ +\x00\x4c\ +\x00\x69\x00\x6e\x00\x65\x00\x5f\x00\x47\x00\x72\x00\x61\x00\x70\x00\x68\x00\x5f\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\x00\x5f\ +\x00\x73\x00\x70\x00\x61\x00\x74\x00\x69\x00\x61\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x19\ +\x0d\x68\x89\x87\ +\x00\x4c\ +\x00\x69\x00\x6e\x00\x65\x00\x5f\x00\x47\x00\x72\x00\x61\x00\x70\x00\x68\x00\x5f\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\x00\x5f\ +\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x02\x8c\x8e\xe0\ +\x00\x6c\ +\x00\x61\x00\x79\x00\x65\x00\x72\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x5f\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\ +\x00\x62\x00\x6d\x00\x70\ " qt_resource_struct = "\ \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\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ -\x00\x00\x00\x30\x00\x02\x00\x00\x00\x0f\x00\x00\x00\x04\ -\x00\x00\x01\x80\x00\x00\x00\x00\x00\x01\x00\x00\x54\x3f\ -\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x44\ +\x00\x00\x00\x30\x00\x02\x00\x00\x00\x10\x00\x00\x00\x04\ +\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00\x54\x3f\ +\x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x44\ +\x00\x00\x00\xdc\x00\x02\x00\x00\x00\x0b\x00\x00\x00\x14\ \x00\x00\x00\x86\x00\x00\x00\x00\x00\x01\x00\x00\x11\x42\ -\x00\x00\x00\xdc\x00\x00\x00\x00\x00\x01\x00\x00\x28\x9d\ -\x00\x00\x01\x9c\x00\x00\x00\x00\x00\x01\x00\x00\x94\x43\ -\x00\x00\x02\x66\x00\x00\x00\x00\x00\x01\x00\x00\xd3\x4c\ +\x00\x00\x00\xec\x00\x00\x00\x00\x00\x01\x00\x00\x28\x9d\ +\x00\x00\x01\xac\x00\x00\x00\x00\x00\x01\x00\x00\x94\x43\ +\x00\x00\x02\x76\x00\x00\x00\x00\x00\x01\x00\x00\xd3\x4c\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x1c\x42\ -\x00\x00\x02\x0e\x00\x00\x00\x00\x00\x01\x00\x00\xc1\x44\ -\x00\x00\x01\x20\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x5a\ -\x00\x00\x01\xc6\x00\x00\x00\x00\x00\x01\x00\x00\xa8\xca\ +\x00\x00\x02\x1e\x00\x00\x00\x00\x00\x01\x00\x00\xc1\x44\ +\x00\x00\x01\x30\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x5a\ +\x00\x00\x01\xd6\x00\x00\x00\x00\x00\x01\x00\x00\xa8\xca\ \x00\x00\x00\x40\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x05\xd4\ -\x00\x00\x01\x46\x00\x00\x00\x00\x00\x01\x00\x00\x4f\x02\ -\x00\x00\x01\xec\x00\x00\x00\x00\x00\x01\x00\x00\xb7\xd7\ -\x00\x00\x02\x30\x00\x00\x00\x00\x00\x01\x00\x00\xcc\x29\ +\x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\x4f\x02\ +\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x01\x00\x00\xb7\xd7\ +\x00\x00\x02\x40\x00\x00\x00\x00\x00\x01\x00\x00\xcc\x29\ +\x00\x00\x04\x48\x00\x01\x00\x00\x00\x01\x00\x01\x4d\xa1\ +\x00\x00\x03\xd2\x00\x00\x00\x00\x00\x01\x00\x01\x30\x8a\ +\x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\xe4\x77\ +\x00\x00\x02\x9a\x00\x00\x00\x00\x00\x01\x00\x00\xde\x25\ +\x00\x00\x02\xf8\x00\x00\x00\x00\x00\x01\x00\x00\xfc\x45\ +\x00\x00\x03\x30\x00\x00\x00\x00\x00\x01\x00\x01\x08\xc1\ +\x00\x00\x03\xa4\x00\x00\x00\x00\x00\x01\x00\x01\x26\x7b\ +\x00\x00\x03\x7a\x00\x01\x00\x00\x00\x01\x00\x01\x24\xf2\ +\x00\x00\x04\x10\x00\x00\x00\x00\x00\x01\x00\x01\x3f\x33\ +\x00\x00\x03\x56\x00\x00\x00\x00\x00\x01\x00\x01\x1a\x36\ +\x00\x00\x02\xbc\x00\x00\x00\x00\x00\x01\x00\x00\xf8\x0a\ " def qInitResources(): diff --git a/ui/properties.ui b/ui/properties.ui index 9ef10b5..26dc1e3 100644 --- a/ui/properties.ui +++ b/ui/properties.ui @@ -41,8 +41,8 @@ 0 - - + + @@ -118,7 +118,7 @@ - + :/plugins/PostTelemac/icons/Open_48x48.png:/plugins/PostTelemac/icons/Open_48x48.png @@ -184,7 +184,7 @@ - + :/plugins/PostTelemac/icons/Globe_48x48.png:/plugins/PostTelemac/icons/Globe_48x48.png @@ -515,7 +515,7 @@ - + :/plugins/PostTelemac/icons/Add_48x48.png:/plugins/PostTelemac/icons/Add_48x48.png @@ -529,7 +529,7 @@ - + :/plugins/PostTelemac/icons/Settings_48x48.png:/plugins/PostTelemac/icons/Settings_48x48.png @@ -543,7 +543,7 @@ - + :/plugins/PostTelemac/icons/Delete_48x48.png:/plugins/PostTelemac/icons/Delete_48x48.png @@ -837,7 +837,7 @@ - + :/plugins/PostTelemac/icons/Settings_48x48.png:/plugins/PostTelemac/icons/Settings_48x48.png @@ -1278,143 +1278,97 @@ Tools - + - - - - 0 - 0 - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - false - - - true - - - QFrame::Box - - - Qt::ScrollBarAsNeeded - - - QAbstractItemView::AllEditTriggers - - - false - - - false - - - QAbstractItemView::NoDragDrop - - - false + + + Qt::Horizontal - - QAbstractItemView::SelectItems - - - - 30 - 30 - - - - Qt::ElideLeft - - - true - - - true - - - false - - - - 1 + + + + 0 + 0 + + + + + 0 + 0 + + + + + 16777215 + 16777215 + + + + false - - - - Values + + true - - ItemIsSelectable|ItemIsEnabled + + QFrame::Box - - - - Temporal graph + + Qt::ScrollBarAsNeeded - - ItemIsSelectable|ItemIsEnabled + + QAbstractItemView::AllEditTriggers - - - - Spatial graph + + false - - - - Flow computation + + false - - ItemIsSelectable|ItemIsEnabled + + QAbstractItemView::NoDragDrop - - - - Compare + + false - - ItemIsSelectable|ItemIsEnabled + + QAbstractItemView::SelectItems - - - - Movie + + + 25 + 25 + - - + + Qt::ElideNone - - ItemIsSelectable|ItemIsEnabled + + 10 - - - - Create max .res + + true - - - - 2Shape + + false - - ItemIsSelectable|ItemIsEnabled + + false + + false + + + + 1 + + - Contour + Values + + + + :/plugins/PostTelemac/icons/tools/Information_48x48.png:/plugins/PostTelemac/icons/tools/Information_48x48.png ItemIsSelectable|ItemIsEnabled @@ -1422,7 +1376,11 @@ - Mesh + Temporal graph + + + + :/plugins/PostTelemac/icons/tools/Line_Graph_48x48_time.png:/plugins/PostTelemac/icons/tools/Line_Graph_48x48_time.png ItemIsSelectable|ItemIsEnabled @@ -1430,1242 +1388,1333 @@ - Points + Spatial graph + + + + :/plugins/PostTelemac/icons/tools/Line_Graph_48x48_spatial.png:/plugins/PostTelemac/icons/tools/Line_Graph_48x48_spatial.png + + + + + Flow computation + + + + :/plugins/PostTelemac/icons/tools/Line_Graph_48x48_flow.png:/plugins/PostTelemac/icons/tools/Line_Graph_48x48_flow.png ItemIsSelectable|ItemIsEnabled - - - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Plain - - - 0 - - - + + + Compare + + + + :/plugins/PostTelemac/icons/tools/Files_Copy.png:/plugins/PostTelemac/icons/tools/Files_Copy.png + + + ItemIsSelectable|ItemIsEnabled + + + + + Movie + + + + + + + :/plugins/PostTelemac/icons/tools/Video_48x48.png:/plugins/PostTelemac/icons/tools/Video_48x48.png + + + ItemIsSelectable|ItemIsEnabled + + + + + Create max .res + + + + :/plugins/PostTelemac/icons/tools/Wizard_48x48.png:/plugins/PostTelemac/icons/tools/Wizard_48x48.png + + + + + 2Shape + + + ItemIsSelectable|ItemIsEnabled + + + + Contour + + + + :/plugins/PostTelemac/icons/tools/layer_shaded_relief_add.png:/plugins/PostTelemac/icons/tools/layer_shaded_relief_add.png + + + ItemIsSelectable|ItemIsEnabled + + + + + Mesh + + + + :/plugins/PostTelemac/icons/tools/layer_add_mesh.bmp:/plugins/PostTelemac/icons/tools/layer_add_mesh.bmp + + + ItemIsSelectable|ItemIsEnabled + + + + + Points + + + + :/plugins/PostTelemac/icons/tools/layer_add_points.bmp:/plugins/PostTelemac/icons/tools/layer_add_points.bmp + + + ItemIsSelectable|ItemIsEnabled + + + + + 0 0 - - - QLayout::SetDefaultConstraint + + QFrame::StyledPanel + + + QFrame::Plain + + + 0 + + + + + + 0 + 0 + - - - - - 0 - 0 - - - - Qt::ScrollBarAlwaysOff - - - QAbstractItemView::DoubleClicked - - - false - - - QAbstractItemView::SingleSelection - - - QAbstractItemView::SelectRows - - - 2 - - - 2 - - - true - - - false - - - true - - - false - - - false - - - - - - Name + + + QLayout::SetDefaultConstraint + + + + + + 0 + 0 + - - - - Value + + Qt::ScrollBarAlwaysOff - - - - - - - Qt::Vertical - - - QSizePolicy::Minimum - - - - 20 - 40 - - - - - - - - Method - - - - - + + QAbstractItemView::DoubleClicked + + + false + + + QAbstractItemView::SingleSelection + + + QAbstractItemView::SelectRows + + + 2 + + + 2 + + + true + + + false + + + true + + + false + + + false + + + + + + Name + + + + + Value + + + + + + + + Qt::Vertical + + + QSizePolicy::Minimum + + + + 20 + 40 + + + + + + + + Method + + + + + + + Nearest point + + + + + Exact point + + + + + + + + + + + + + + + + 0 + 0 + + + + + + + + - Nearest point + Max : / + + + + + + + + 16777215 + 20 + - - - Exact point + Min : / - - - - - - - - - - - - - - - 0 - 0 - - - - - - - - - - Max : / - - - - - - - - 16777215 - 20 - - - - Min : / - - - - - - - QFrame::StyledPanel - - - QFrame::Plain - - - - - - - Copy to clipboard - - - - - - - Don't delete previous graph - - - - - frame - label_21 - label_20 - pushButton_graphtemp_pressepapier - checkBox - - - - - - - 0 - 0 - - - - - 16777215 - 90 - - - - - - - - 20 + + + + + + QFrame::StyledPanel + + + QFrame::Plain + + + + + + + Copy to clipboard + + + + + + + Don't delete previous graph + + + + + frame + label_21 + label_20 + pushButton_graphtemp_pressepapier + checkBox + + + + + + + 0 + 0 + - - - - - 0 - 0 - - - - Parameter - - - - - - - - 0 - 0 - - - - Selection - - - - - - - - 0 - 0 - - - - - - - - - 0 - 0 - - - + + + 16777215 + 90 + + + + + + + + 20 + + + + + + 0 + 0 + + - Temporary point + Parameter + + + + + + + + 0 + 0 + - - - Points of active vector layer + Selection + + + + + + + + 0 + 0 + + + + + + + + + 0 + 0 + + + + + Temporary point + + + + + Points of active vector layer + + + + + + + + false + + + + 0 + 0 + - - - - - - - false - - - - 0 - 0 - - - - Calcul - - - - :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png - - - - - - - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - - - - - - - Method - - - - - - - Closest mesh point + Calcul - - - - - - - - - - - - - - - 0 - 0 - - - - Use "profiletool" plugin to create a spatial grah - - - - - - - - - - - - 0 - 0 - - - - - 0 - 70 - - - - - 16777215 - 70 - - - - - - - - - - Selection - - - - - - + + + :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png + + + + + + + + + + + 0 + 0 + + + + + 16777215 + 16777215 + + + + + + + + - Temporary polyline + Method - - + + + + + + + Closest mesh point + + + + + + + + + + + + + + + + 0 + 0 + + + + Use "profiletool" plugin to create a spatial grah + + + + + + + + + + + + 0 + 0 + + + + + 0 + 70 + + + + + 16777215 + 70 + + + + + + + + - Selected polyline of active vector layer + Selection + + + + + + + + Temporary polyline + + + + + Selected polyline of active vector layer + + + + + Active vector layer polylines + + + + + + + + false + + + Positif flow : left bank to right bank - - - Active vector layer polylines + Flow computation - - + + + :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png + + + + + + + + + + + 0 + 0 + + + + + + + + + + + 0 + 0 + + + + + 16777215 + 20 + + + + Max : / + + + + + + + + 0 + 0 + + + + Min : / + + + + + + + QFrame::StyledPanel + + + QFrame::Plain + + + + + + + Copy to clipboard + + + + + + + Don't delete previous graph + + + + + + + + + + + 0 + 0 + + + + + 16777215 + 16777215 + + + + + + + + + + + 0 + 0 + + + + Method + + + + + + + + Shortest mesh path / vectorial computation + + + + + Exact path / vectorial computation + + + + + + + + + + + + + + + false + + + + 0 + 0 + + + + Compare + + + + + + + Selafin 2 : compared file + + + + + + + 0 + 0 + + + + true + + + + + + + + 0 + 0 + + + + + + + + :/plugins/PostTelemac/icons/Open_48x48.png:/plugins/PostTelemac/icons/Open_48x48.png + + + + 20 + 20 + + + + + + + + + 0 + 0 + + + + + + + + + 16777215 + 16777215 + + + + + 0 + 0 + + + + Correlation table + + + + + + + + + + + + + + + Selafin1 : displayed file + + + + + + + 0 + 0 + + + + Qt::NoTextInteraction + + + + + + + + + + + 2 - 1 + - - - - false - - - Positif flow : left bank to right bank - - - Flow computation - - - - :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png - - - - - - - - - - - 0 - 0 - - - - - - - - - - - 0 - 0 - - - - - 16777215 - 20 - - - - Max : / - - - - - - - - 0 - 0 - - - - Min : / - - - - - - - QFrame::StyledPanel - - - QFrame::Plain - - - - - - - Copy to clipboard - - - - - - - Don't delete previous graph - - - - - - - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - - - - - - - - 0 - 0 - - - - Method - - + + + 1 - 2 + - - - + + + + + + Compare method : + + + + + + + + + + + + 0 + 0 + + + + + + + + - Shortest mesh path / vectorial computation + Composer to use + + + + + + + + + + + + + + 0 + 0 + + + + + + + Graph insert + + + + + + + 0 + 20 + - - - Exact path / vectorial computation + Image's Id to use for graph insert - - - - - - - - - - - - - - false - - - - 0 - 0 - - - - Compare - - - - - - - Selafin 2 : compared file - - - - - - - 0 - 0 - - - - true - - - - - - - - 0 - 0 - - - - - - - - :/plugins/PostTelemac/icons/Open_48x48.png:/plugins/PostTelemac/icons/Open_48x48.png - - - - 20 - 20 - - - - - - - - - 0 - 0 - - - - - - - - - 16777215 - 16777215 - - - - - 0 - 0 - - - - Correlation table - - + + false + + + + + + + Existing graph to insert + + + + + + + + - + + Temporal graph + - - - - - - - - - - Selafin1 : displayed file - - - - - - - 0 - 0 - - - - Qt::NoTextInteraction - - - - - - - - - + + + Flow graph + + + + + + + + + + + + 0 + 0 + + + + Movie's parameters + + + + + + + + + Iteration step + + + + + + + Frame per second + + + + + + + End iteration + + + + + + + 10 + + + + + + + 5 + + + + + + + + + + Start iteration + + + + + + + + 16777215 + 20 + + + + Estimation of movie duration (s) : + + + + + + + / + + + + + + + + + + + 0 + 0 + + - 2 - 1 + Do movie (DO NOT MODIFY ANYTHING IN QGIS !) + + + + :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + true - - - 1 - 2 + Load the generated file - - - - - - - Compare method : - - - - - - - - - - - - 0 - 0 - - - - - - - - - - Composer to use - - - - - - - - - - - - - - 0 - 0 - - - - - - - Graph insert - - - - - - - 0 - 20 - - - - Image's Id to use for graph insert - - - false - - - - - - - Existing graph to insert - - - - - - - - - - - Temporal graph - - - - - Flow graph - - - - - - - - - - - - 0 - 0 - - - - Movie's parameters - - - - - - - - - Iteration step - - - - - - - Frame per second - - - - - - - End iteration - - - - - - - 10 - - - - - - - 5 - - - - - - - - - - Start iteration - - - - - - - - 16777215 - 20 - - - - Estimation of movie duration (s) : - - - - - - - / - - - - - - - - - - - 0 - 0 - - - - Do movie (DO NOT MODIFY ANYTHING IN QGIS !) - - - - :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - true - - - Load the generated file - - - true - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - 0.050000000000000 - - - - - - - File _max.res creation - - - - :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png - - - - - - - compute flood duration for H > - - - true - - - - - - - compute water arrival for H > - - - true - - - - - - - 0.050000000000000 - - - - - - - Compute real max velcity - - - true - - - - - - - - - - - Change de Selafin's CRS - - - - - - - false - - - ... - - - - - - - QFrame::NoFrame - - - Force output file name - - - true - - - - - - - - 0 - 0 - - - - - - - - Generate .shp file - - - - :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - true - - - Change de Selafin's CRS - - - - - - - false - - - ... - - - - - - - "HillShade" Creation - - - - - - - z factor - - - true - - - - - - - false - - - 20.000000000000000 - - - 5.000000000000000 - - - - - - - Hillshade - Zenith - - - true - - - - - - - false - - - 360.000000000000000 - - - 30.000000000000000 - - - - - - - Hillshade - Azimuth - - - true - - - - - - - false - - - 360.000000000000000 - - - - - - - Generate mesh - - - - :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - Change de Selafin's CRS - - - - - - - velocity vector creation - - - - - - - 1000000 - - - 100 - - - - - - - Space grid (or 0 if exact selafin's points) - - - - - - - false - - - ... - - - - - - - Create points - - - - :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - + + true + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + 0.050000000000000 + + + + + + + File _max.res creation + + + + :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png + + + + + + + compute flood duration for H > + + + true + + + + + + + compute water arrival for H > + + + true + + + + + + + 0.050000000000000 + + + + + + + Compute real max velcity + + + true + + + + + + + + + + + Change de Selafin's CRS + + + + + + + false + + + ... + + + + + + + QFrame::NoFrame + + + Force output file name + + + true + + + + + + + + 0 + 0 + + + + + + + + Generate .shp file + + + + :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + true + + + Change de Selafin's CRS + + + + + + + false + + + ... + + + + + + + "HillShade" Creation + + + + + + + z factor + + + true + + + + + + + false + + + 20.000000000000000 + + + 5.000000000000000 + + + + + + + Hillshade - Zenith + + + true + + + + + + + false + + + 360.000000000000000 + + + 30.000000000000000 + + + + + + + Hillshade - Azimuth + + + true + + + + + + + false + + + 360.000000000000000 + + + + + + + Generate mesh + + + + :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + Change de Selafin's CRS + + + + + + + velocity vector creation + + + + + + + 1000000 + + + 100 + + + + + + + Space grid (or 0 if exact selafin's points) + + + + + + + false + + + ... + + + + + + + Create points + + + + :/plugins/PostTelemac/icons/Play_48x48.png:/plugins/PostTelemac/icons/Play_48x48.png + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + @@ -2777,7 +2826,8 @@ textBrowser_2 doubleSpinBox_2 - + + comboBox_time