diff --git a/CHANGELOG b/CHANGELOG index a383876..9bc8960 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ Full Undo/Redo Add option to change the midi channel for a track in the tracks context menu. Add switch group places to song-structure context menus. Add View-Menu with options to maximize the two editor areas. +Add advanced feature for a global rhythm offset, meant for Jack-Transport. Allows the whole piece to begin later on the jack-timeline. 2021-01-15 Version 2.0.0 Big new features increase the MAJOR version. Old save files can still be loaded. diff --git a/engine/api.py b/engine/api.py index 5d8c3a7..0471e44 100644 --- a/engine/api.py +++ b/engine/api.py @@ -219,6 +219,18 @@ class ClientCallbacks(Callbacks): #inherits from the templates api callbacks func(_swingToPercent_Table[export]) callbacks._dataChanged() + #Override template one + def _setPlaybackTicks(self): + """This gets called very very often (~60 times per second). + Any connected function needs to watch closely + for performance issues""" + ppqn = cbox.Transport.status().pos_ppqn - session.data.cachedOffsetInTicks + status = playbackStatus() + for func in self.setPlaybackTicks: + func(ppqn, status) + self._dataChanged() #includes _historyChanged + + #Inject our derived Callbacks into the parent module template.engine.api.callbacks = ClientCallbacks() from template.engine.api import callbacks @@ -269,23 +281,27 @@ def _loopNow(): def _setLoop(loopMeasureAroundPpqn:int): """This function is used with context. The loopFactor, how many measures are looped, is saved value """ + if loopMeasureAroundPpqn < 0: _loopOff() return - loopStart, loopEnd = session.data.buildSongDuration(loopMeasureAroundPpqn) + #loopMeasureAroundPpqn = max(0, loopMeasureAroundPpqn + session.data.cachedOffsetInTicks) + loopMeasureAroundPpqn = loopMeasureAroundPpqn - session.data.cachedOffsetInTicks + + loopStart, loopEnd = session.data.buildSongDuration(loopMeasureAroundPpqn) #includes global tick offset session.data._lastLoopStart = loopStart updatePlayback() session.inLoopMode = (loopStart, loopEnd) - assert loopStart <= loopMeasureAroundPpqn < loopEnd + assert loopStart <= loopMeasureAroundPpqn+session.data.cachedOffsetInTicks < loopEnd, (loopStart, loopMeasureAroundPpqn, loopEnd) if not playbackStatus(): cbox.Transport.play() oneMeasureInTicks = (session.data.howManyUnits * session.data.whatTypeOfUnit) / session.data.subdivisions - measurenumber, rest = divmod(loopStart, oneMeasureInTicks) + measurenumber, rest = divmod(loopStart-session.data.cachedOffsetInTicks, oneMeasureInTicks) #We substract the offset from the measure number because for a GUI it is still the visible measure number callbacks._loopChanged(int(measurenumber), loopStart, loopEnd) @@ -320,8 +336,24 @@ def seek(value): value = 0 if session.inLoopMode and not session.inLoopMode[0] <= value < session.inLoopMode[1]: #if you seek outside the loop the loop will be destroyed. toggleLoop() + + value = max(0, value + session.data.cachedOffsetInTicks) cbox.Transport.seek_ppqn(value) + +def getGlobalOffset(): + """Return the current offsets in full measures + free tick value 3rd: Cached abolute tick value + gets updated everytime the time signature changes or setGlobalOffset is called""" + return session.data.globalOffsetMeasures, session.data.globalOffsetTicks, session.data.cachedOffsetInTicks + + +def setGlobalOffset(fullMeasures, absoluteTicks): + session.history.register(lambda f=session.data.globalOffsetMeasures, t=session.data.globalOffsetTicks: setGlobalOffset(f,t), descriptionString="Global Rhythm Offset") + session.data.globalOffsetMeasures = fullMeasures + session.data.globalOffsetTicks = absoluteTicks + session.data.buildAllTracks() #includes refreshing the tick offset cache + updatePlayback() + ##Score def set_quarterNotesPerMinute(value): """Transport Master is set implicitly. If value == None Patroneo will switch into diff --git a/engine/main.py b/engine/main.py index 881c95a..2ea2a52 100644 --- a/engine/main.py +++ b/engine/main.py @@ -59,6 +59,10 @@ class Data(template.engine.sequencer.Score): self.loopMeasureFactor = 1 #when looping how many at once? self.swing = 0 #-0.5 to 0.5 See pattern.buildPattern docstring. + self.globalOffsetMeasures = 0 #relative to the current measure length. Parsed every export. + self.globalOffsetTicks = 0 #absolute + self.cachedOffsetInTicks = 0 + #Create three tracks with their first pattern activated, so 'play' after startup already produces sounding notes. This is less confusing for a new user. self.addTrack(name="Melody A", color="#ffff00") self.addTrack(name="Chords A", color="#0055ff") @@ -79,6 +83,12 @@ class Data(template.engine.sequencer.Score): def _processAfterInit(self): self._lastLoopStart = 0 #ticks. not saved + def cacheOffsetInTicks(self): + oneMeasureInTicks = (self.howManyUnits * self.whatTypeOfUnit) / self.subdivisions + oneMeasureInTicks = int(oneMeasureInTicks) + self.cachedOffsetInTicks = oneMeasureInTicks * self.globalOffsetMeasures + self.globalOffsetTicks + return self.cachedOffsetInTicks + def addTrack(self, name="", scale=None, color=None, simpleNoteNames=None): """Overrides the simpler template version""" track = Track(parentData=self, name=name, scale=scale, color=color, simpleNoteNames=simpleNoteNames) @@ -161,6 +171,8 @@ class Data(template.engine.sequencer.Score): If True it will reset the loop. The api calls buildSongDuration directly when it sets the loop. """ + self.cacheOffsetInTicks() + for track in self.tracks: track.pattern.buildExportCache() track.buildTrack() @@ -174,15 +186,18 @@ class Data(template.engine.sequencer.Score): An optional loopMeasureFactor can loop more than one measure. This is especially useful is track multiplicators are used. This is a saved context value in self. """ + self.cacheOffsetInTicks() oneMeasureInTicks = (self.howManyUnits * self.whatTypeOfUnit) / self.subdivisions oneMeasureInTicks = int(oneMeasureInTicks) - maxTrackDuration = self.numberOfMeasures * oneMeasureInTicks + maxTrackDuration = self.numberOfMeasures * oneMeasureInTicks + self.cachedOffsetInTicks if loopMeasureAroundPpqn is None: #could be 0 cbox.Document.get_song().set_loop(maxTrackDuration, maxTrackDuration) #set playback length for the entire score. Why is the first value not zero? That would create an actual loop from the start to end. We want the song to play only once. The cbox way of doing that is to set the loop range to zero at the end of the track. Zero length is stop. else: loopMeasure = int(loopMeasureAroundPpqn / oneMeasureInTicks) #0 based start = loopMeasure * oneMeasureInTicks end = start + oneMeasureInTicks * self.loopMeasureFactor + start = start + self.cachedOffsetInTicks + end = end + self.cachedOffsetInTicks cbox.Document.get_song().set_loop(start, end) #set playback length for the entire score. Why is the first value not zero? That would create an actual loop from the start to end. We want the song to play only once. The cbox way of doing that is to set the loop range to zero at the end of the track. Zero length is stop. return start, end @@ -199,6 +214,8 @@ class Data(template.engine.sequencer.Score): "lastUsedNotenames" : self.lastUsedNotenames, "loopMeasureFactor" : self.loopMeasureFactor, "swing" : self.swing, + "globalOffsetMeasures" : self.globalOffsetMeasures, + "globalOffsetTicks" : self.globalOffsetTicks, }) return dictionary @@ -211,15 +228,26 @@ class Data(template.engine.sequencer.Score): self.measuresPerGroup = serializedData["measuresPerGroup"] self.subdivisions = serializedData["subdivisions"] self.lastUsedNotenames = serializedData["lastUsedNotenames"] - if "loopMeasureFactor" in serializedData: #2.0 + #v2.0 + if "loopMeasureFactor" in serializedData: self.loopMeasureFactor = serializedData["loopMeasureFactor"] else: self.loopMeasureFactor = 1 - if "swing" in serializedData: #2.0 + if "swing" in serializedData: self.swing = serializedData["swing"] else: self.swing = 0 + #v2.1 + if "globalOffsetMeasures" in serializedData: + self.globalOffsetMeasures = serializedData["globalOffsetMeasures"] + else: + self.globalOffsetMeasures = 0 + if "globalOffsetTicks" in serializedData: + self.globalOffsetTicks = serializedData["globalOffsetTicks"] + else: + self.globalOffsetTicks = 0 + #Tracks depend on the rest of the data already in place because they create a cache on creation. super().copyFromSerializedData(parentSession, serializedData, self) #Tracks, parentSession and tempoMap @@ -237,6 +265,8 @@ class Data(template.engine.sequencer.Score): "loopMeasureFactor" : self.loopMeasureFactor, "isTransportMaster" : self.tempoMap.export()["isTransportMaster"], "swing" : self.swing, + "globalOffsetMeasures" : self.globalOffsetMeasures, + "globalOffsetTicks" : self.globalOffsetTicks, } diff --git a/engine/track.py b/engine/track.py index 463d90c..9019103 100644 --- a/engine/track.py +++ b/engine/track.py @@ -83,13 +83,15 @@ class Track(object): #injection at the bottom of this file! filteredStructure = [index for index in sorted(self.structure) if index < self.parentData.numberOfMeasures] #not <= because we compare count with range cboxclips = [o.clip for o in self.sequencerInterface.calfboxTrack.status().clips] + globalOffset = self.parentData.cachedOffsetInTicks + for cboxclip in cboxclips: cboxclip.delete() #removes itself from the track for index in filteredStructure: scaleTransposition = self.whichPatternsAreScaleTransposed[index] if index in self.whichPatternsAreScaleTransposed else 0 halftoneTransposition = self.whichPatternsAreHalftoneTransposed[index] if index in self.whichPatternsAreHalftoneTransposed else 0 cboxPattern = self.pattern.buildPattern(scaleTransposition, halftoneTransposition, self.parentData.howManyUnits, self.parentData.whatTypeOfUnit, self.parentData.subdivisions, self.patternLengthMultiplicator) - r = self.sequencerInterface.calfboxTrack.add_clip(index*oneMeasureInTicks, 0, oneMeasureInTicks, cboxPattern) #pos, pattern-internal offset, length, pattern. + r = self.sequencerInterface.calfboxTrack.add_clip(globalOffset + index*oneMeasureInTicks, 0, oneMeasureInTicks, cboxPattern) #pos, pattern-internal offset, length, pattern. ######Old optimisations. Keep for later#### ########################################## diff --git a/qtgui/mainwindow.py b/qtgui/mainwindow.py index 9ca3e20..d7d1fb9 100644 --- a/qtgui/mainwindow.py +++ b/qtgui/mainwindow.py @@ -37,6 +37,7 @@ from .songeditor import SongEditor, TrackLabelEditor from .timeline import Timeline from .pattern_grid import PatternGrid, VelocityControls, TransposeControls from .resources import * +from .submenus import convertSubdivisionsSubMenu, globalOffsetSubmenu MAX_QT_SIZE = 2147483647-1 @@ -88,6 +89,7 @@ class MainWindow(TemplateMainWindow): QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Change Row Velocity") QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Change Pattern Velocity") QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Number of Notes in Pattern") + QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Global Rhythm Offset") @@ -546,50 +548,8 @@ class MainWindow(TemplateMainWindow): self.ui.timelineView.scale(self.zoomFactor, 1) #view.centerOn(event.scenePos()) - def convertSubdivisionsSubMenu(self): - class Submenu(QtWidgets.QDialog): - def __init__(self, mainWindow): - super().__init__(mainWindow) #if you don't set the parent to the main window the whole screen will be the root and the dialog pops up in the middle of it. - #self.setModal(True) #we don't need this when called with self.exec() instead of self.show() - self.layout = QtWidgets.QFormLayout() - self.setLayout(self.layout) - self.numberOfSubdivisions = QtWidgets.QSpinBox() - self.numberOfSubdivisions.setMinimum(1) - self.numberOfSubdivisions.setMaximum(4)# - self.numberOfSubdivisions.setValue(mainWindow.numberOfSubdivisions.value()) - - self.layout.addRow(QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "New Grouping"), self.numberOfSubdivisions) - - self.errorHandling = QtWidgets.QComboBox() - self.errorHandling.addItems([ - QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "Do nothing"), - QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "Delete wrong steps"), - QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "Merge wrong steps"), - ]) - self.layout.addRow(QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "If not possible"), self.errorHandling) - - #self.setFocus(); #self.grabKeyboard(); #redundant for a proper modal dialog. Leave here for documentation reasons. - - buttonBox = QtWidgets.QDialogButtonBox(QtWidgets.QDialogButtonBox.Ok | QtWidgets.QDialogButtonBox.Cancel) - buttonBox.accepted.connect(self.accept) - buttonBox.rejected.connect(self.reject) - self.layout.addWidget(buttonBox) - - def __call__(self): - """This instance can be called like a function""" - self.exec() #blocks until the dialog gets closed - - s = Submenu(self) - s() - if s.result(): - value = s.numberOfSubdivisions.value() - error= ("fail", "delete", "merge")[s.errorHandling.currentIndex()] - api.convert_subdivisions(value, error) - - def _stretchXCoordinates(*args): pass #Override template function - def maximizeSongArea(self): self.ui.patternArea.setMinimumSize(1, 1) self.ui.splitter.setSizes([MAX_QT_SIZE, 1]) @@ -607,13 +567,8 @@ class MainWindow(TemplateMainWindow): #self.ui.actionUndo.setVisible(False) #self.ui.actionRedo.setVisible(False) - self.menu.addMenuEntry( - "menuEdit", - "actionConvertSubdivisions", - QtCore.QCoreApplication.translate("Menu", "Convert Grouping"), - self.convertSubdivisionsSubMenu, - tooltip=QtCore.QCoreApplication.translate("Menu", "Change step-grouping but keep your music the same"), - ) + self.menu.addMenuEntry("menuEdit", "actionConvertSubdivisions", QtCore.QCoreApplication.translate("Menu", "Convert Grouping"), lambda: convertSubdivisionsSubMenu(self), tooltip=QtCore.QCoreApplication.translate("Menu", "Change step-grouping but keep your music the same")) + self.menu.addMenuEntry("menuEdit", "actionGlobalOffsetSubmenu", QtCore.QCoreApplication.translate("Menu", "Global Rhythm Offset"), lambda: globalOffsetSubmenu(self), tooltip=QtCore.QCoreApplication.translate("Menu", "Shift the whole piece further down the timeline")) self.menu.addSubmenu("menuView", QtCore.QCoreApplication.translate("menu","View")) self.menu.addMenuEntry("menuView", "actionMaximizeSongArea", QtCore.QCoreApplication.translate("menu", "Maximize Song Area"), self.maximizeSongArea) diff --git a/qtgui/resources.py b/qtgui/resources.py index 048fa39..6dc43f6 100644 --- a/qtgui/resources.py +++ b/qtgui/resources.py @@ -46,7 +46,7 @@ qt_resource_data = b"\ \x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\ \x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ -\x00\x00\x04\xfc\ +\x00\x00\x02\xbb\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\ @@ -56,78 +56,42 @@ qt_resource_data = b"\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x0b\x74\x45\ \x58\x74\x54\x69\x74\x6c\x65\x00\x53\x68\x61\x70\x65\x26\xef\x99\ -\x91\x00\x00\x04\x62\x49\x44\x41\x54\x58\x85\xb5\x97\x5d\x4c\x5b\ -\x75\x18\xc6\x9f\xf7\x9c\xf2\x3d\xd6\x76\xa0\x63\xe8\xc2\x5a\xac\ -\x71\x94\x42\x34\xc4\xcc\x69\x08\xc4\x68\x62\x62\x30\x8e\x48\x30\ -\x3a\xe3\xe2\x85\xde\xb8\x68\x8c\xba\xb9\x0b\x13\xbd\xf1\x13\x33\ -\x2e\x4c\x8c\x66\x1a\x3f\x92\x05\x75\xd9\x84\xed\x82\xcc\x91\x90\ -\xb9\xc4\x8c\x7d\x40\x01\x49\x18\x2d\x6c\x8e\x39\x07\x96\x02\x2b\ -\x50\x7a\xce\xe3\x85\x80\xdd\xe9\x29\x3d\x94\xee\xb9\xeb\xfb\x7f\ -\xde\xf7\xfd\x35\xff\xaf\xf3\x17\x64\x40\xfe\xc0\xec\x66\x4d\x5b\ -\x28\x86\x6a\x2b\x50\x35\x4e\xce\xe4\xce\x8c\xef\xdc\xba\x75\x6e\ -\x3d\x35\x25\x9d\xa4\xae\x2e\xda\x8a\xcb\xc2\xbb\x40\x3c\x4d\x41\ -\x1d\x80\x12\x13\xdb\x65\x01\x3a\x00\x1c\xfd\xc3\x65\x3f\xd5\x24\ -\xa2\xdd\x36\x30\x92\x4a\x5f\x20\xfc\xb2\x08\xde\x01\x70\xf7\x1a\ -\x52\xfb\x85\xb2\xcf\x57\x6e\x3f\x9e\x71\xb0\xde\xd1\x29\x17\x74\ -\x7e\x27\x90\x87\xd7\x00\x64\x6c\xf7\x4b\x9e\x16\xdb\xed\xf1\x14\ -\x4d\x67\x04\xcc\x3f\x32\x55\x43\x41\x3b\xcc\xa7\x6c\x6d\x22\x07\ -\x45\x97\x06\x9f\xc7\x31\xb2\x9a\x4d\x49\x80\x08\x86\xea\x7a\x7a\ -\x98\xb5\xfc\x7b\x60\x6c\xa6\x82\x82\x5f\x33\x02\x05\x00\x22\x15\ -\x54\x71\xf2\xfc\xf0\xcc\x1d\xab\xda\x8c\x81\xbe\xe0\xd4\x21\x10\ -\x3e\x2a\x68\x12\xc1\x14\x74\x9c\x05\x51\x9e\x24\xff\x6f\x02\xdf\ -\xaa\x0a\x4f\x50\xcf\x1a\xcc\xd5\x16\xe6\x22\x59\x6a\x91\xa2\x49\ -\x05\x85\x0d\x00\x9e\x03\x50\x90\x24\xb7\x5b\x9d\xb3\x3f\xe6\xf5\ -\x4a\xd4\x6c\xd0\x96\x24\xa9\x46\x74\x5c\x00\xf1\x3b\xc4\x14\x4a\ -\x17\xe0\x53\x65\x2e\xfa\x5e\x2c\x27\x2f\x1f\x88\x6d\xf1\xb9\x37\ -\x5c\x5f\x1a\x9b\x06\x10\x04\x70\x7c\x20\x38\xfb\xae\xc6\xc5\x8f\ -\x01\x79\xde\xa4\x46\xad\x96\x1f\x7e\x0d\xc0\x47\x66\x00\x09\x53\ -\x19\x27\x3b\x04\x8f\x9b\xc4\xa3\x24\x9a\x7c\x6e\xc7\x5b\x5e\xef\ -\x9d\xb3\x36\xe8\x1b\x75\xc8\x6f\xfe\x91\xd0\x2e\xa3\xd1\xeb\xda\ -\xf0\x57\x95\xdb\xb9\x5b\x80\x37\x4d\x3b\x10\xfb\x07\xae\x84\x37\ -\xad\x15\xcc\x5c\x82\xbd\xd5\xe5\x8e\x9f\x0d\xd1\x02\x8a\xfc\xd4\ -\x37\x32\xf5\x01\xc9\x84\x9a\x3e\xb7\xe3\x13\x40\x5a\x4c\xaa\x39\ -\xb4\x45\xfd\xf5\xf5\x81\x11\x31\x08\x4e\x55\xb9\x1c\x5f\x24\x45\ -\x16\xbc\xed\x0f\x86\x0f\xf7\x8c\x8f\xe7\x1b\x07\xd5\xb9\x8d\xfb\ -\x01\x5c\x32\x49\x6b\x5c\x1f\x98\xc0\x06\xa2\xbe\x37\x10\x3a\x18\ -\xbf\x6b\x4d\xf4\x4c\xf6\x7c\xfe\x99\xc1\x40\xa8\x2c\x3e\xe8\xf5\ -\x4a\x94\xe0\xfb\x26\xfe\xed\x17\x47\xa6\xef\x4d\x1f\x6c\x09\x4f\ -\x20\x7b\x73\x36\x85\x4f\x5f\x08\x86\xb6\xad\xe2\xab\xd6\x20\x3d\ -\x7d\x81\x50\x6d\x7c\x30\x5f\xd3\x8f\x02\x48\xd8\x85\xa2\x68\x0f\ -\x59\x01\x63\x2a\x3a\x02\x0f\xda\x28\x67\xfb\x47\x43\xf5\xab\x78\ -\x8a\x01\xe9\xec\x0b\x86\x5e\x5c\x8e\x2d\x9d\xf8\x7d\x09\x10\xba\ -\x94\x5a\x01\x4b\x75\x1b\x04\x08\xb6\x92\x78\x76\x7e\xc2\x71\x3a\ -\x85\x37\x07\x94\xaf\x7b\x03\xa1\x83\x6d\xa4\xba\x54\x7e\xdc\x68\ -\xa2\x30\x01\x2c\xd9\x39\x16\xaf\x08\x80\x33\x14\x76\x28\x9a\x7e\ -\xc4\x77\x4f\xd1\x95\xf8\xc1\x81\x4b\x61\x0b\x25\xe2\x24\xb4\x25\ -\xcc\x89\x28\x8b\x56\xc1\x02\x00\x4e\x12\x7a\x47\xbe\xe6\xec\xf4\ -\x78\x64\x61\x6d\xdd\x57\xb4\x00\xe1\x2b\xd5\x2e\xe7\x37\x2b\x11\ -\xe2\x2e\xa3\x89\xe4\xb5\x94\x60\xcc\x9b\x7f\xb5\xba\xa4\xe4\x66\ -\x9a\x20\x2b\x12\x60\x82\x60\x63\x95\xcb\xd9\xbd\x1c\xfb\xef\x7e\ -\xd4\x2a\x13\xbc\x94\xab\x29\xc1\x32\x01\x05\xa0\x57\x05\x9f\xaa\ -\x70\x3b\xc7\xe2\x83\x59\xaa\xde\x4c\x40\x35\x78\x49\x3d\xd6\x6d\ -\x88\xa5\x71\xf2\xa7\xd6\x8f\xd1\xdc\xc8\x4e\x23\xd4\xd0\xd0\x8d\ -\x42\x82\x07\x12\xdc\x82\xf3\xd5\x9e\xa2\x3f\x6f\x27\x18\x41\x7c\ -\xe8\x73\xd9\x9b\x6b\x4a\x4b\x23\xb7\x0c\x90\x12\xcd\xce\xfa\x0a\ -\xc0\xe6\x04\x2e\xe2\xb0\x59\x31\x2b\xbb\xf2\x96\x06\xfe\xc0\x74\ -\x0b\x04\xff\x54\xb9\xed\xf1\xa7\xf8\x4d\x21\x5f\xf0\x95\x3b\x8f\ -\x18\x73\xba\xba\x68\xeb\x1f\x0d\xb7\x02\x68\x32\xf9\x2b\x57\x17\ -\xf2\x22\x9f\x9b\xf5\xb2\xfc\x69\xdd\x46\xaa\xf7\x8d\x86\xbf\x04\ -\xb1\x67\x29\xf5\x98\x68\x7c\x43\x17\x75\x46\x55\x62\x5b\x2a\xdd\ -\xce\x5e\x63\xce\xc5\xd1\xd0\xfd\xaa\xae\xb4\x12\x7c\xc4\xb4\x39\ -\xf9\x92\xaf\xdc\x79\x28\x6d\xb0\xe1\x61\xe6\xcc\xab\xe1\x1f\x08\ -\x18\x2f\xdc\x28\xc1\x4e\x11\x69\x57\x84\xc3\x42\x84\x62\xba\x14\ -\x29\x8a\x78\x49\x36\x00\xa8\x47\xf2\xe5\xd2\xe6\x73\xd9\x9b\x45\ -\xc4\xf4\xa6\xb1\x04\xb6\xf4\x55\xbb\xc7\x8a\xd7\x92\x04\xe7\xa2\ -\x39\x91\x5a\xe3\x5a\x8c\x97\xa5\xc5\x6f\x93\xac\x03\x10\x9c\xcb\ -\x10\x56\x77\x2c\xa6\x3e\xb1\x1a\x14\x60\x11\xac\x62\x5b\xc1\x35\ -\x35\x12\xad\x03\xf8\x3d\x2c\x5c\xf2\x49\xa4\x01\xd2\x32\x39\x66\ -\x7f\xf4\x01\x4f\xe1\x8d\x54\xe6\x35\xbf\xc4\x7b\x83\xe1\x1d\x42\ -\x7e\x06\x60\x87\xd5\x1c\x81\xb4\x2b\xaa\xb2\xcf\x5b\x56\x38\x68\ -\x3d\x27\x4d\xf9\x47\x67\xb6\x53\xd7\x1b\x01\x3e\x09\xa0\x12\xff\ -\xbf\x86\x74\x80\xd7\x49\x19\x12\xb0\x43\x74\x39\x96\xea\x0d\x99\ -\x51\xb0\x78\x91\x14\xff\xe5\xb0\x43\x34\x5b\xf6\xc4\x58\xc1\x64\ -\x7d\xbd\xc4\xd6\x5b\xf3\x5f\x2e\x0a\xbd\x45\xc2\xd5\x25\x47\x00\ -\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x91\x00\x00\x02\x21\x49\x44\x41\x54\x58\x85\xcd\xd7\x3d\x68\x13\ +\x71\x18\xc7\xf1\xdf\xf3\xbf\x88\x16\xdb\x26\xb1\x20\x22\x08\xf1\ +\x42\x17\x4d\xd2\x2a\x75\x10\xba\x58\x70\x71\x89\x08\x82\x83\xae\ +\x5d\xec\xe0\x26\xb8\x58\x9c\xc4\xd9\x0a\x8e\x22\x14\x37\x11\x71\ +\xe9\xa0\xe0\x6b\xa0\x8b\xb9\x4b\xa7\x34\x97\x48\x41\x07\xb9\xe6\ +\xce\x06\x94\x36\x77\x8f\x43\xcf\xe6\x4f\x68\x2f\x2f\x77\x97\xf8\ +\x5d\x92\x70\x2f\xf9\xdc\x93\x67\x09\x69\x86\xf5\x74\x7b\x33\xbe\ +\x30\x33\x43\x3b\x08\x98\x6e\x58\x97\x19\x58\xf1\x39\xa5\x94\x53\ +\x13\xd9\xb5\x6a\xe3\x84\xc3\xcd\x1f\x7e\xf7\x12\x00\xe6\x0f\x1f\ +\xfb\xf5\xb6\xb8\xbe\x75\x3c\x28\x0c\x00\xf9\x1f\x25\xf2\x5e\xfc\ +\xcf\xf3\x60\x60\xf0\x2c\x09\xe7\xcb\xd7\xb2\x79\x36\x04\x5c\x28\ +\x09\xe9\xbd\x2a\x14\xa5\xa0\x55\xeb\xf9\xa1\x69\xa4\x44\xdb\xe7\ +\x51\x30\xbd\x2c\x56\xea\x8b\xcc\xdc\x71\xdc\x51\xd6\x0e\x03\x76\ +\x57\xe0\x7e\xc9\xb0\x97\x3f\x6f\x6c\x8c\x0c\x5c\xe4\xb5\x1f\x0c\ +\x00\xc0\x84\x1b\xa3\x3b\x63\x9f\xf4\x75\xf3\xd4\x20\x41\xff\x3a\ +\x10\xe6\x75\x8e\x45\xac\x50\xaa\xd8\x17\x06\xa2\x91\xea\x04\x03\ +\xc0\x27\x5d\xe2\xf7\xba\x61\xdf\x8a\x9e\xd3\xaa\x0b\x18\x00\xe0\ +\x08\x83\x9f\x69\x15\xeb\x21\x33\x77\x7b\x4d\xa0\x7a\xf9\x12\x02\ +\xe1\xae\x5e\xb3\x5f\x97\xcb\xe6\x78\x64\x22\xaf\xde\x9f\x9e\x71\ +\xe5\xb7\xa2\x7c\x2c\xd6\xac\xd3\x11\x78\xf6\xea\xf7\x67\xc9\x92\ +\x8b\xd5\x52\xad\x7e\x29\x54\x8d\x54\x90\x7d\x99\x70\x5d\x5a\xd1\ +\x0c\xfb\x76\x68\x1a\xa9\x58\xf0\xeb\xf9\xb1\x66\x58\xb9\xed\xcd\ +\xf8\x02\x60\x87\x82\x02\x82\x4d\x2c\xd2\x82\x4e\xac\x09\xd0\x9d\ +\x9c\x1a\x5f\x02\x00\xdd\xb0\x42\x20\xed\x16\x04\x66\x0a\xc1\xd7\ +\x33\xa9\xc4\xbb\xd0\x34\x52\xfd\xc2\x74\x16\xc8\x67\x52\xc9\x6a\ +\xa8\x1a\xa9\x3e\x76\x8c\xdf\x8c\x38\xce\xec\x54\x2a\x11\x19\x0a\ +\xe8\x6d\x62\x0c\xc6\xa3\xac\x9a\xb8\x47\x44\x6e\x64\x22\xaf\x6e\ +\x61\x7f\x08\x34\x9f\x4d\xc7\x9f\x47\xaa\x91\xea\x02\x46\xdf\x05\ +\xe3\x6a\x26\x1d\x5f\x8d\x9e\xd3\xaa\x13\xac\x10\x13\xb1\x6b\x67\ +\x52\x47\x7d\xff\x6a\x45\xd1\x81\xcb\x4f\x8c\x17\x8d\x43\x5b\x73\ +\xc3\x40\x01\xfb\x4f\x8c\x99\xf9\x41\x2e\x9d\x5c\x1c\x34\x46\xae\ +\x1d\xd6\x00\xf1\xcd\x29\x35\xf9\x6a\x28\x1a\xa9\x16\x8c\x50\x71\ +\x9b\x4e\x7e\x7a\x72\x62\x6d\x88\x9e\xbd\xbc\x1d\xa3\x0f\xcd\xa6\ +\x72\xf1\x7f\x41\x01\x80\x20\xe0\x89\xf9\x6d\x7c\xee\xfc\xe4\xd8\ +\xcf\x61\x63\xe4\xfe\x02\x9c\xf5\xa3\xbb\x96\xa3\x3a\x87\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x3c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -620,7 +584,7 @@ qt_resource_data = b"\ \x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ \x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ -\x00\x00\x02\xbb\ +\x00\x00\x04\xfc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\ @@ -630,118 +594,153 @@ qt_resource_data = b"\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x0b\x74\x45\ \x58\x74\x54\x69\x74\x6c\x65\x00\x53\x68\x61\x70\x65\x26\xef\x99\ -\x91\x00\x00\x02\x21\x49\x44\x41\x54\x58\x85\xcd\xd7\x3d\x68\x13\ -\x71\x18\xc7\xf1\xdf\xf3\xbf\x88\x16\xdb\x26\xb1\x20\x22\x08\xf1\ -\x42\x17\x4d\xd2\x2a\x75\x10\xba\x58\x70\x71\x89\x08\x82\x83\xae\ -\x5d\xec\xe0\x26\xb8\x58\x9c\xc4\xd9\x0a\x8e\x22\x14\x37\x11\x71\ -\xe9\xa0\xe0\x6b\xa0\x8b\xb9\x4b\xa7\x34\x97\x48\x41\x07\xb9\xe6\ -\xce\x06\x94\x36\x77\x8f\x43\xcf\xe6\x4f\x68\x2f\x2f\x77\x97\xf8\ -\x5d\x92\x70\x2f\xf9\xdc\x93\x67\x09\x69\x86\xf5\x74\x7b\x33\xbe\ -\x30\x33\x43\x3b\x08\x98\x6e\x58\x97\x19\x58\xf1\x39\xa5\x94\x53\ -\x13\xd9\xb5\x6a\xe3\x84\xc3\xcd\x1f\x7e\xf7\x12\x00\xe6\x0f\x1f\ -\xfb\xf5\xb6\xb8\xbe\x75\x3c\x28\x0c\x00\xf9\x1f\x25\xf2\x5e\xfc\ -\xcf\xf3\x60\x60\xf0\x2c\x09\xe7\xcb\xd7\xb2\x79\x36\x04\x5c\x28\ -\x09\xe9\xbd\x2a\x14\xa5\xa0\x55\xeb\xf9\xa1\x69\xa4\x44\xdb\xe7\ -\x51\x30\xbd\x2c\x56\xea\x8b\xcc\xdc\x71\xdc\x51\xd6\x0e\x03\x76\ -\x57\xe0\x7e\xc9\xb0\x97\x3f\x6f\x6c\x8c\x0c\x5c\xe4\xb5\x1f\x0c\ -\x00\xc0\x84\x1b\xa3\x3b\x63\x9f\xf4\x75\xf3\xd4\x20\x41\xff\x3a\ -\x10\xe6\x75\x8e\x45\xac\x50\xaa\xd8\x17\x06\xa2\x91\xea\x04\x03\ -\xc0\x27\x5d\xe2\xf7\xba\x61\xdf\x8a\x9e\xd3\xaa\x0b\x18\x00\xe0\ -\x08\x83\x9f\x69\x15\xeb\x21\x33\x77\x7b\x4d\xa0\x7a\xf9\x12\x02\ -\xe1\xae\x5e\xb3\x5f\x97\xcb\xe6\x78\x64\x22\xaf\xde\x9f\x9e\x71\ -\xe5\xb7\xa2\x7c\x2c\xd6\xac\xd3\x11\x78\xf6\xea\xf7\x67\xc9\x92\ -\x8b\xd5\x52\xad\x7e\x29\x54\x8d\x54\x90\x7d\x99\x70\x5d\x5a\xd1\ -\x0c\xfb\x76\x68\x1a\xa9\x58\xf0\xeb\xf9\xb1\x66\x58\xb9\xed\xcd\ -\xf8\x02\x60\x87\x82\x02\x82\x4d\x2c\xd2\x82\x4e\xac\x09\xd0\x9d\ -\x9c\x1a\x5f\x02\x00\xdd\xb0\x42\x20\xed\x16\x04\x66\x0a\xc1\xd7\ -\x33\xa9\xc4\xbb\xd0\x34\x52\xfd\xc2\x74\x16\xc8\x67\x52\xc9\x6a\ -\xa8\x1a\xa9\x3e\x76\x8c\xdf\x8c\x38\xce\xec\x54\x2a\x11\x19\x0a\ -\xe8\x6d\x62\x0c\xc6\xa3\xac\x9a\xb8\x47\x44\x6e\x64\x22\xaf\x6e\ -\x61\x7f\x08\x34\x9f\x4d\xc7\x9f\x47\xaa\x91\xea\x02\x46\xdf\x05\ -\xe3\x6a\x26\x1d\x5f\x8d\x9e\xd3\xaa\x13\xac\x10\x13\xb1\x6b\x67\ -\x52\x47\x7d\xff\x6a\x45\xd1\x81\xcb\x4f\x8c\x17\x8d\x43\x5b\x73\ -\xc3\x40\x01\xfb\x4f\x8c\x99\xf9\x41\x2e\x9d\x5c\x1c\x34\x46\xae\ -\x1d\xd6\x00\xf1\xcd\x29\x35\xf9\x6a\x28\x1a\xa9\x16\x8c\x50\x71\ -\x9b\x4e\x7e\x7a\x72\x62\x6d\x88\x9e\xbd\xbc\x1d\xa3\x0f\xcd\xa6\ -\x72\xf1\x7f\x41\x01\x80\x20\xe0\x89\xf9\x6d\x7c\xee\xfc\xe4\xd8\ -\xcf\x61\x63\xe4\xfe\x02\x9c\xf5\xa3\xbb\x96\xa3\x3a\x87\x00\x00\ -\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x49\x25\ +\x91\x00\x00\x04\x62\x49\x44\x41\x54\x58\x85\xb5\x97\x5d\x4c\x5b\ +\x75\x18\xc6\x9f\xf7\x9c\xf2\x3d\xd6\x76\xa0\x63\xe8\xc2\x5a\xac\ +\x71\x94\x42\x34\xc4\xcc\x69\x08\xc4\x68\x62\x62\x30\x8e\x48\x30\ +\x3a\xe3\xe2\x85\xde\xb8\x68\x8c\xba\xb9\x0b\x13\xbd\xf1\x13\x33\ +\x2e\x4c\x8c\x66\x1a\x3f\x92\x05\x75\xd9\x84\xed\x82\xcc\x91\x90\ +\xb9\xc4\x8c\x7d\x40\x01\x49\x18\x2d\x6c\x8e\x39\x07\x96\x02\x2b\ +\x50\x7a\xce\xe3\x85\x80\xdd\xe9\x29\x3d\x94\xee\xb9\xeb\xfb\x7f\ +\xde\xf7\xfd\x35\xff\xaf\xf3\x17\x64\x40\xfe\xc0\xec\x66\x4d\x5b\ +\x28\x86\x6a\x2b\x50\x35\x4e\xce\xe4\xce\x8c\xef\xdc\xba\x75\x6e\ +\x3d\x35\x25\x9d\xa4\xae\x2e\xda\x8a\xcb\xc2\xbb\x40\x3c\x4d\x41\ +\x1d\x80\x12\x13\xdb\x65\x01\x3a\x00\x1c\xfd\xc3\x65\x3f\xd5\x24\ +\xa2\xdd\x36\x30\x92\x4a\x5f\x20\xfc\xb2\x08\xde\x01\x70\xf7\x1a\ +\x52\xfb\x85\xb2\xcf\x57\x6e\x3f\x9e\x71\xb0\xde\xd1\x29\x17\x74\ +\x7e\x27\x90\x87\xd7\x00\x64\x6c\xf7\x4b\x9e\x16\xdb\xed\xf1\x14\ +\x4d\x67\x04\xcc\x3f\x32\x55\x43\x41\x3b\xcc\xa7\x6c\x6d\x22\x07\ +\x45\x97\x06\x9f\xc7\x31\xb2\x9a\x4d\x49\x80\x08\x86\xea\x7a\x7a\ +\x98\xb5\xfc\x7b\x60\x6c\xa6\x82\x82\x5f\x33\x02\x05\x00\x22\x15\ +\x54\x71\xf2\xfc\xf0\xcc\x1d\xab\xda\x8c\x81\xbe\xe0\xd4\x21\x10\ +\x3e\x2a\x68\x12\xc1\x14\x74\x9c\x05\x51\x9e\x24\xff\x6f\x02\xdf\ +\xaa\x0a\x4f\x50\xcf\x1a\xcc\xd5\x16\xe6\x22\x59\x6a\x91\xa2\x49\ +\x05\x85\x0d\x00\x9e\x03\x50\x90\x24\xb7\x5b\x9d\xb3\x3f\xe6\xf5\ +\x4a\xd4\x6c\xd0\x96\x24\xa9\x46\x74\x5c\x00\xf1\x3b\xc4\x14\x4a\ +\x17\xe0\x53\x65\x2e\xfa\x5e\x2c\x27\x2f\x1f\x88\x6d\xf1\xb9\x37\ +\x5c\x5f\x1a\x9b\x06\x10\x04\x70\x7c\x20\x38\xfb\xae\xc6\xc5\x8f\ +\x01\x79\xde\xa4\x46\xad\x96\x1f\x7e\x0d\xc0\x47\x66\x00\x09\x53\ +\x19\x27\x3b\x04\x8f\x9b\xc4\xa3\x24\x9a\x7c\x6e\xc7\x5b\x5e\xef\ +\x9d\xb3\x36\xe8\x1b\x75\xc8\x6f\xfe\x91\xd0\x2e\xa3\xd1\xeb\xda\ +\xf0\x57\x95\xdb\xb9\x5b\x80\x37\x4d\x3b\x10\xfb\x07\xae\x84\x37\ +\xad\x15\xcc\x5c\x82\xbd\xd5\xe5\x8e\x9f\x0d\xd1\x02\x8a\xfc\xd4\ +\x37\x32\xf5\x01\xc9\x84\x9a\x3e\xb7\xe3\x13\x40\x5a\x4c\xaa\x39\ +\xb4\x45\xfd\xf5\xf5\x81\x11\x31\x08\x4e\x55\xb9\x1c\x5f\x24\x45\ +\x16\xbc\xed\x0f\x86\x0f\xf7\x8c\x8f\xe7\x1b\x07\xd5\xb9\x8d\xfb\ +\x01\x5c\x32\x49\x6b\x5c\x1f\x98\xc0\x06\xa2\xbe\x37\x10\x3a\x18\ +\xbf\x6b\x4d\xf4\x4c\xf6\x7c\xfe\x99\xc1\x40\xa8\x2c\x3e\xe8\xf5\ +\x4a\x94\xe0\xfb\x26\xfe\xed\x17\x47\xa6\xef\x4d\x1f\x6c\x09\x4f\ +\x20\x7b\x73\x36\x85\x4f\x5f\x08\x86\xb6\xad\xe2\xab\xd6\x20\x3d\ +\x7d\x81\x50\x6d\x7c\x30\x5f\xd3\x8f\x02\x48\xd8\x85\xa2\x68\x0f\ +\x59\x01\x63\x2a\x3a\x02\x0f\xda\x28\x67\xfb\x47\x43\xf5\xab\x78\ +\x8a\x01\xe9\xec\x0b\x86\x5e\x5c\x8e\x2d\x9d\xf8\x7d\x09\x10\xba\ +\x94\x5a\x01\x4b\x75\x1b\x04\x08\xb6\x92\x78\x76\x7e\xc2\x71\x3a\ +\x85\x37\x07\x94\xaf\x7b\x03\xa1\x83\x6d\xa4\xba\x54\x7e\xdc\x68\ +\xa2\x30\x01\x2c\xd9\x39\x16\xaf\x08\x80\x33\x14\x76\x28\x9a\x7e\ +\xc4\x77\x4f\xd1\x95\xf8\xc1\x81\x4b\x61\x0b\x25\xe2\x24\xb4\x25\ +\xcc\x89\x28\x8b\x56\xc1\x02\x00\x4e\x12\x7a\x47\xbe\xe6\xec\xf4\ +\x78\x64\x61\x6d\xdd\x57\xb4\x00\xe1\x2b\xd5\x2e\xe7\x37\x2b\x11\ +\xe2\x2e\xa3\x89\xe4\xb5\x94\x60\xcc\x9b\x7f\xb5\xba\xa4\xe4\x66\ +\x9a\x20\x2b\x12\x60\x82\x60\x63\x95\xcb\xd9\xbd\x1c\xfb\xef\x7e\ +\xd4\x2a\x13\xbc\x94\xab\x29\xc1\x32\x01\x05\xa0\x57\x05\x9f\xaa\ +\x70\x3b\xc7\xe2\x83\x59\xaa\xde\x4c\x40\x35\x78\x49\x3d\xd6\x6d\ +\x88\xa5\x71\xf2\xa7\xd6\x8f\xd1\xdc\xc8\x4e\x23\xd4\xd0\xd0\x8d\ +\x42\x82\x07\x12\xdc\x82\xf3\xd5\x9e\xa2\x3f\x6f\x27\x18\x41\x7c\ +\xe8\x73\xd9\x9b\x6b\x4a\x4b\x23\xb7\x0c\x90\x12\xcd\xce\xfa\x0a\ +\xc0\xe6\x04\x2e\xe2\xb0\x59\x31\x2b\xbb\xf2\x96\x06\xfe\xc0\x74\ +\x0b\x04\xff\x54\xb9\xed\xf1\xa7\xf8\x4d\x21\x5f\xf0\x95\x3b\x8f\ +\x18\x73\xba\xba\x68\xeb\x1f\x0d\xb7\x02\x68\x32\xf9\x2b\x57\x17\ +\xf2\x22\x9f\x9b\xf5\xb2\xfc\x69\xdd\x46\xaa\xf7\x8d\x86\xbf\x04\ +\xb1\x67\x29\xf5\x98\x68\x7c\x43\x17\x75\x46\x55\x62\x5b\x2a\xdd\ +\xce\x5e\x63\xce\xc5\xd1\xd0\xfd\xaa\xae\xb4\x12\x7c\xc4\xb4\x39\ +\xf9\x92\xaf\xdc\x79\x28\x6d\xb0\xe1\x61\xe6\xcc\xab\xe1\x1f\x08\ +\x18\x2f\xdc\x28\xc1\x4e\x11\x69\x57\x84\xc3\x42\x84\x62\xba\x14\ +\x29\x8a\x78\x49\x36\x00\xa8\x47\xf2\xe5\xd2\xe6\x73\xd9\x9b\x45\ +\xc4\xf4\xa6\xb1\x04\xb6\xf4\x55\xbb\xc7\x8a\xd7\x92\x04\xe7\xa2\ +\x39\x91\x5a\xe3\x5a\x8c\x97\xa5\xc5\x6f\x93\xac\x03\x10\x9c\xcb\ +\x10\x56\x77\x2c\xa6\x3e\xb1\x1a\x14\x60\x11\xac\x62\x5b\xc1\x35\ +\x35\x12\xad\x03\xf8\x3d\x2c\x5c\xf2\x49\xa4\x01\xd2\x32\x39\x66\ +\x7f\xf4\x01\x4f\xe1\x8d\x54\xe6\x35\xbf\xc4\x7b\x83\xe1\x1d\x42\ +\x7e\x06\x60\x87\xd5\x1c\x81\xb4\x2b\xaa\xb2\xcf\x5b\x56\x38\x68\ +\x3d\x27\x4d\xf9\x47\x67\xb6\x53\xd7\x1b\x01\x3e\x09\xa0\x12\xff\ +\xbf\x86\x74\x80\xd7\x49\x19\x12\xb0\x43\x74\x39\x96\xea\x0d\x99\ +\x51\xb0\x78\x91\x14\xff\xe5\xb0\x43\x34\x5b\xf6\xc4\x58\xc1\x64\ +\x7d\xbd\xc4\xd6\x5b\xf3\x5f\x2e\x0a\xbd\x45\xc2\xd5\x25\x47\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x48\x9f\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\xa7\ -\x00\x00\x00\x05\x64\x65\x5f\x44\x45\x42\x00\x00\x04\x78\x00\x04\ -\xe8\x26\x00\x00\x27\x2b\x00\x04\xf6\x35\x00\x00\x0e\xb9\x00\x05\ -\xcf\xc7\x00\x00\x44\x57\x00\x39\x3c\xbe\x00\x00\x10\x84\x00\x40\ -\x71\x74\x00\x00\x22\xe9\x00\x49\x3b\xc3\x00\x00\x21\x93\x00\x49\ -\x43\x03\x00\x00\x32\x58\x00\x4b\xfe\xa8\x00\x00\x26\xf8\x00\x53\ -\x81\x62\x00\x00\x23\x7a\x00\x54\x05\x62\x00\x00\x23\x9f\x00\x5a\ -\xa8\xf5\x00\x00\x36\x89\x00\x5a\xc4\x6f\x00\x00\x1d\x83\x00\x5a\ -\xe0\x47\x00\x00\x1d\x4e\x00\x5c\xab\xee\x00\x00\x28\x04\x00\x5d\ -\xf6\x25\x00\x00\x27\xd3\x00\xbd\xce\x6c\x00\x00\x35\xaf\x00\xc4\ -\x12\x31\x00\x00\x43\x24\x01\x28\x89\xfb\x00\x00\x33\xbd\x01\x76\ -\x1a\x2e\x00\x00\x0a\xa3\x01\x86\x51\x9b\x00\x00\x15\x2e\x01\xa4\ -\x6c\x6e\x00\x00\x1e\x5f\x01\xdc\x66\xf0\x00\x00\x1f\xb9\x01\xed\ -\x7d\xb3\x00\x00\x14\x95\x01\xff\xd1\xd5\x00\x00\x41\xf1\x02\x1d\ -\x26\x98\x00\x00\x35\x39\x02\x55\x6a\xc3\x00\x00\x36\x11\x02\x5a\ -\xa8\xf5\x00\x00\x37\x04\x02\x86\xcc\xc5\x00\x00\x36\xc4\x02\x87\ -\x6c\xc5\x00\x00\x36\x49\x02\xab\x22\x91\x00\x00\x44\x02\x02\xbc\ -\x2e\x9e\x00\x00\x3d\x6b\x02\xc1\x6b\x99\x00\x00\x3b\xa7\x02\xdf\ -\xa5\xde\x00\x00\x33\x5e\x02\xf2\x1e\xee\x00\x00\x3f\xcc\x02\xfa\ -\x58\xde\x00\x00\x01\xd4\x03\x40\xab\x34\x00\x00\x22\xb4\x03\x5a\ -\x8f\x2e\x00\x00\x23\x1b\x03\x5f\x60\xe3\x00\x00\x0d\x29\x03\x5f\ -\x60\xe3\x00\x00\x18\xa7\x03\x60\xdb\x3e\x00\x00\x1a\x39\x03\x68\ -\x51\x81\x00\x00\x43\xaa\x03\xa6\x57\xb7\x00\x00\x0d\x82\x03\xa7\ -\xc4\xae\x00\x00\x1c\xf5\x03\xd0\x12\x10\x00\x00\x11\xaa\x03\xf7\ -\xab\x3b\x00\x00\x14\xe4\x03\xf7\xab\x3b\x00\x00\x34\x09\x04\x47\ -\xc6\x13\x00\x00\x25\x3c\x04\x5b\x2f\x26\x00\x00\x0b\xef\x04\x5b\ -\x2f\x26\x00\x00\x11\x01\x04\x86\xe5\x11\x00\x00\x30\x79\x04\x9f\ -\x6c\x40\x00\x00\x15\xc4\x04\xb6\x8f\x7e\x00\x00\x21\xf5\x04\xbf\ -\x6c\x40\x00\x00\x24\xda\x04\xdc\x93\x7e\x00\x00\x22\x86\x04\xe0\ -\xa3\x79\x00\x00\x39\xe3\x05\x3f\xaf\x7e\x00\x00\x23\x4c\x05\x65\ -\x36\xc9\x00\x00\x3c\x8a\x05\x6c\xdd\x32\x00\x00\x1a\xaf\x05\x6e\ -\x5f\x37\x00\x00\x41\x9e\x05\x7b\x97\x60\x00\x00\x2d\xeb\x05\xa1\ -\xae\xf7\x00\x00\x0f\xf0\x05\xa1\xae\xf7\x00\x00\x14\x35\x05\xe4\ -\x90\x0e\x00\x00\x16\xee\x06\x3a\xef\x8e\x00\x00\x23\xc6\x06\x48\ -\x42\x1d\x00\x00\x34\xb0\x06\x59\xcf\xe5\x00\x00\x1c\xa4\x06\x5b\ -\xc0\x3b\x00\x00\x0e\x26\x06\x5b\xc0\x3b\x00\x00\x10\x43\x06\x5b\ -\xc0\x3b\x00\x00\x29\xdb\x06\xcc\x7e\x81\x00\x00\x2f\x12\x06\xf6\ -\xf9\x1a\x00\x00\x37\xfd\x07\x11\xb1\xdb\x00\x00\x13\xee\x07\x39\ -\xe8\x00\x00\x00\x29\x17\x07\x43\xfd\xa3\x00\x00\x17\xfe\x07\x43\ -\xfd\xa3\x00\x00\x34\x53\x07\x51\x35\x63\x00\x00\x19\xf5\x07\x5e\ -\xc1\x5b\x00\x00\x19\xad\x07\x6c\x61\x9e\x00\x00\x08\xd1\x07\xc1\ -\x6a\xbe\x00\x00\x03\x8d\x08\x0d\xec\x64\x00\x00\x1c\x47\x08\x45\ -\xb6\x0e\x00\x00\x38\xb1\x08\x6b\x58\x49\x00\x00\x12\x55\x08\xb2\ -\x2b\xce\x00\x00\x2a\x12\x08\xb8\x9a\x92\x00\x00\x27\x5b\x09\x3f\ -\x4d\xee\x00\x00\x2b\xc7\x09\x63\xc3\x03\x00\x00\x21\xbc\x09\x9a\ -\xbd\xc0\x00\x00\x2c\x99\x09\xa5\x7b\x9b\x00\x00\x19\x59\x09\xb0\ -\x8a\xc0\x00\x00\x19\x01\x09\xc4\x50\x0d\x00\x00\x22\x23\x09\xd3\ -\x00\x45\x00\x00\x1f\x16\x09\xf6\x31\x83\x00\x00\x1b\x4c\x0a\x3e\ -\xad\x82\x00\x00\x25\xd8\x0a\x46\xc6\xd6\x00\x00\x1d\xfb\x0a\x7c\ -\x4b\x2a\x00\x00\x30\x27\x0a\xa8\x16\x93\x00\x00\x41\x2d\x0b\x03\ -\x42\x80\x00\x00\x2b\x2e\x0b\x14\x3b\x2e\x00\x00\x37\x3f\x0b\x61\ -\xa6\x2c\x00\x00\x1e\xc2\x0b\x84\x13\x47\x00\x00\x0c\x96\x0b\x84\ -\x13\x47\x00\x00\x13\x01\x0b\xa6\x9c\x12\x00\x00\x16\x20\x0c\x1a\ -\x13\xa4\x00\x00\x1b\x9e\x0c\x21\x8a\x65\x00\x00\x17\x44\x0c\x2d\ -\x6e\xa0\x00\x00\x1b\x05\x0c\x35\xb0\x79\x00\x00\x3d\xeb\x0c\x35\ -\xb2\x79\x00\x00\x3e\x2b\x0c\x3f\xf0\x41\x00\x00\x2e\xa7\x0c\x42\ -\xb8\x6a\x00\x00\x29\x66\x0c\x4e\x30\xd8\x00\x00\x22\x55\x0c\x70\ -\x26\xe9\x00\x00\x2d\x25\x0c\x8d\x62\x22\x00\x00\x31\xff\x0c\x93\ -\x5e\xa7\x00\x00\x0c\xde\x0c\x93\x5e\xa7\x00\x00\x18\x5b\x0c\xd8\ -\x3c\x94\x00\x00\x16\x90\x0c\xf5\x30\x30\x00\x00\x17\x8c\x0d\x13\ -\xe6\xf2\x00\x00\x1d\xb8\x0d\x15\x8a\xfe\x00\x00\x00\x00\x0d\x3c\ -\x42\x80\x00\x00\x12\xae\x0d\x87\x8c\x35\x00\x00\x26\x6c\x0d\xd2\ -\xe0\x39\x00\x00\x3a\xc6\x0d\xe0\x25\x89\x00\x00\x11\xfc\x0d\xfa\ -\x5d\xe6\x00\x00\x32\xfc\x0e\x03\x26\x23\x00\x00\x13\x4a\x0e\x03\ -\x26\x23\x00\x00\x24\x34\x0e\x16\xad\xf3\x00\x00\x1b\xff\x0e\x1a\ -\xa0\xfe\x00\x00\x05\x7a\x0e\x20\xfc\xa7\x00\x00\x42\xc9\x0e\x43\ -\x9b\x75\x00\x00\x21\x2a\x0e\x45\xb2\xfe\x00\x00\x0c\x45\x0e\x45\ -\xb2\xfe\x00\x00\x11\x58\x0e\x51\x65\x45\x00\x00\x20\xa1\x0e\x57\ -\xf2\xe3\x00\x00\x42\x4d\x0f\x03\xdb\x35\x00\x00\x1f\x56\x0f\x14\ -\x5c\x1b\x00\x00\x2b\x6b\x0f\x14\x5e\x1b\x00\x00\x0e\x60\x0f\x2c\ -\x8d\x9e\x00\x00\x3e\x6b\x0f\x9f\xda\x1e\x00\x00\x24\x00\x0f\xab\ -\xff\xa8\x00\x00\x27\x92\x0f\xbd\x25\xe4\x00\x00\x20\x36\x0f\xdd\ -\x91\xc5\x00\x00\x0e\xf0\x0f\xe1\x24\xea\x00\x00\x38\x5a\x0f\xe6\ -\xec\xc7\x00\x00\x2e\x3b\x69\x00\x00\x44\x82\x03\x00\x00\x01\x42\ +\x00\x00\x00\x05\x64\x65\x5f\x44\x45\x42\x00\x00\x04\x68\x00\x04\ +\xe8\x26\x00\x00\x28\xac\x00\x04\xf6\x35\x00\x00\x0e\xb9\x00\x05\ +\xcf\xc7\x00\x00\x43\xe1\x00\x39\x3c\xbe\x00\x00\x11\x95\x00\x40\ +\x71\x74\x00\x00\x24\x6a\x00\x49\x3b\xc3\x00\x00\x23\x14\x00\x49\ +\x43\x03\x00\x00\x33\xd9\x00\x4b\xfe\xa8\x00\x00\x28\x79\x00\x53\ +\x81\x62\x00\x00\x24\xfb\x00\x54\x05\x62\x00\x00\x25\x20\x00\x5a\ +\xa8\xf5\x00\x00\x38\x0a\x00\x5a\xc4\x6f\x00\x00\x1f\x04\x00\x5a\ +\xe0\x47\x00\x00\x1e\xcf\x00\x5c\xab\xee\x00\x00\x29\x85\x00\x5d\ +\xf6\x25\x00\x00\x29\x54\x00\xbd\xce\x6c\x00\x00\x37\x30\x00\xc4\ +\x12\x31\x00\x00\x42\xae\x00\xe4\x0d\x94\x00\x00\x10\x43\x00\xe4\ +\x0d\x94\x00\x00\x17\xff\x01\x28\x89\xfb\x00\x00\x35\x3e\x01\x76\ +\x1a\x2e\x00\x00\x0a\xa3\x01\x86\x51\x9b\x00\x00\x16\x3f\x01\xa4\ +\x6c\x6e\x00\x00\x1f\xe0\x01\xdc\x66\xf0\x00\x00\x21\x3a\x01\xed\ +\x7d\xb3\x00\x00\x15\xa6\x02\x1d\x26\x98\x00\x00\x36\xba\x02\x55\ +\x6a\xc3\x00\x00\x37\x92\x02\x5a\xa8\xf5\x00\x00\x38\x85\x02\x86\ +\xcc\xc5\x00\x00\x38\x45\x02\x87\x6c\xc5\x00\x00\x37\xca\x02\xab\ +\x22\x91\x00\x00\x43\x8c\x02\xbc\x2e\x9e\x00\x00\x3e\xec\x02\xc1\ +\x6b\x99\x00\x00\x3d\x28\x02\xdf\xa5\xde\x00\x00\x34\xdf\x02\xf2\ +\x1e\xee\x00\x00\x41\x4d\x02\xfa\x58\xde\x00\x00\x01\xd4\x03\x40\ +\xab\x34\x00\x00\x24\x35\x03\x5a\x8f\x2e\x00\x00\x24\x9c\x03\x5f\ +\x60\xe3\x00\x00\x0d\x29\x03\x5f\x60\xe3\x00\x00\x1a\x28\x03\x60\ +\xdb\x3e\x00\x00\x1b\xba\x03\x68\x51\x81\x00\x00\x43\x34\x03\xa6\ +\x57\xb7\x00\x00\x0d\x82\x03\xa7\xc4\xae\x00\x00\x1e\x76\x03\xd0\ +\x12\x10\x00\x00\x12\xbb\x03\xf7\xab\x3b\x00\x00\x15\xf5\x03\xf7\ +\xab\x3b\x00\x00\x35\x8a\x04\x47\xc6\x13\x00\x00\x26\xbd\x04\x5b\ +\x2f\x26\x00\x00\x0b\xef\x04\x5b\x2f\x26\x00\x00\x12\x12\x04\x86\ +\xe5\x11\x00\x00\x31\xfa\x04\x9f\x6c\x40\x00\x00\x16\xd5\x04\xb6\ +\x8f\x7e\x00\x00\x23\x76\x04\xbf\x6c\x40\x00\x00\x26\x5b\x04\xdc\ +\x93\x7e\x00\x00\x24\x07\x04\xe0\xa3\x79\x00\x00\x3b\x64\x05\x3f\ +\xaf\x7e\x00\x00\x24\xcd\x05\x65\x36\xc9\x00\x00\x3e\x0b\x05\x6c\ +\xdd\x32\x00\x00\x1c\x30\x05\x7b\x97\x60\x00\x00\x2f\x6c\x05\xa1\ +\xae\xf7\x00\x00\x0f\xf0\x05\xa1\xae\xf7\x00\x00\x15\x46\x05\xe4\ +\x90\x0e\x00\x00\x18\x6f\x06\x3a\xef\x8e\x00\x00\x25\x47\x06\x48\ +\x42\x1d\x00\x00\x36\x31\x06\x59\xcf\xe5\x00\x00\x1e\x25\x06\x5b\ +\xc0\x3b\x00\x00\x0e\x26\x06\x5b\xc0\x3b\x00\x00\x11\x54\x06\x5b\ +\xc0\x3b\x00\x00\x2b\x5c\x06\xcc\x7e\x81\x00\x00\x30\x93\x06\xf6\ +\xf9\x1a\x00\x00\x39\x7e\x07\x11\xb1\xdb\x00\x00\x14\xff\x07\x39\ +\xe8\x00\x00\x00\x2a\x98\x07\x43\xfd\xa3\x00\x00\x19\x7f\x07\x43\ +\xfd\xa3\x00\x00\x35\xd4\x07\x51\x35\x63\x00\x00\x1b\x76\x07\x5e\ +\xc1\x5b\x00\x00\x1b\x2e\x07\x6c\x61\x9e\x00\x00\x08\xd1\x07\xc1\ +\x6a\xbe\x00\x00\x03\x8d\x08\x0d\xec\x64\x00\x00\x1d\xc8\x08\x45\ +\xb6\x0e\x00\x00\x3a\x32\x08\x6b\x58\x49\x00\x00\x13\x66\x08\xb2\ +\x2b\xce\x00\x00\x2b\x93\x08\xb8\x9a\x92\x00\x00\x28\xdc\x09\x3f\ +\x4d\xee\x00\x00\x2d\x48\x09\x63\xc3\x03\x00\x00\x23\x3d\x09\x9a\ +\xbd\xc0\x00\x00\x2e\x1a\x09\xa5\x7b\x9b\x00\x00\x1a\xda\x09\xb0\ +\x8a\xc0\x00\x00\x1a\x82\x09\xc4\x50\x0d\x00\x00\x23\xa4\x09\xd3\ +\x00\x45\x00\x00\x20\x97\x09\xf6\x31\x83\x00\x00\x1c\xcd\x0a\x3e\ +\xad\x82\x00\x00\x27\x59\x0a\x46\xc6\xd6\x00\x00\x1f\x7c\x0a\x7c\ +\x4b\x2a\x00\x00\x31\xa8\x0b\x03\x42\x80\x00\x00\x2c\xaf\x0b\x14\ +\x3b\x2e\x00\x00\x38\xc0\x0b\x61\xa6\x2c\x00\x00\x20\x43\x0b\x84\ +\x13\x47\x00\x00\x0c\x96\x0b\x84\x13\x47\x00\x00\x14\x12\x0b\xa6\ +\x9c\x12\x00\x00\x17\x31\x0c\x1a\x13\xa4\x00\x00\x1d\x1f\x0c\x21\ +\x8a\x65\x00\x00\x18\xc5\x0c\x2d\x6e\xa0\x00\x00\x1c\x86\x0c\x35\ +\xb0\x79\x00\x00\x3f\x6c\x0c\x35\xb2\x79\x00\x00\x3f\xac\x0c\x3f\ +\xf0\x41\x00\x00\x30\x28\x0c\x42\xb8\x6a\x00\x00\x2a\xe7\x0c\x4e\ +\x30\xd8\x00\x00\x23\xd6\x0c\x70\x26\xe9\x00\x00\x2e\xa6\x0c\x8d\ +\x62\x22\x00\x00\x33\x80\x0c\x93\x5e\xa7\x00\x00\x0c\xde\x0c\x93\ +\x5e\xa7\x00\x00\x19\xdc\x0c\xd8\x3c\x94\x00\x00\x17\xa1\x0c\xf5\ +\x30\x30\x00\x00\x19\x0d\x0d\x06\x25\x95\x00\x00\x10\xa6\x0d\x13\ +\xe6\xf2\x00\x00\x1f\x39\x0d\x15\x8a\xfe\x00\x00\x00\x00\x0d\x3c\ +\x42\x80\x00\x00\x13\xbf\x0d\x87\x8c\x35\x00\x00\x27\xed\x0d\xd2\ +\xe0\x39\x00\x00\x3c\x47\x0d\xe0\x25\x89\x00\x00\x13\x0d\x0d\xfa\ +\x5d\xe6\x00\x00\x34\x7d\x0e\x03\x26\x23\x00\x00\x14\x5b\x0e\x03\ +\x26\x23\x00\x00\x25\xb5\x0e\x16\xad\xf3\x00\x00\x1d\x80\x0e\x1a\ +\xa0\xfe\x00\x00\x05\x7a\x0e\x43\x9b\x75\x00\x00\x22\xab\x0e\x45\ +\xb2\xfe\x00\x00\x0c\x45\x0e\x45\xb2\xfe\x00\x00\x12\x69\x0e\x51\ +\x65\x45\x00\x00\x22\x22\x0f\x03\xdb\x35\x00\x00\x20\xd7\x0f\x14\ +\x5c\x1b\x00\x00\x2c\xec\x0f\x14\x5e\x1b\x00\x00\x0e\x60\x0f\x2c\ +\x8d\x9e\x00\x00\x3f\xec\x0f\x9f\xda\x1e\x00\x00\x25\x81\x0f\xab\ +\xff\xa8\x00\x00\x29\x13\x0f\xbd\x25\xe4\x00\x00\x21\xb7\x0f\xdd\ +\x91\xc5\x00\x00\x0e\xf0\x0f\xe1\x24\xea\x00\x00\x39\xdb\x0f\xe6\ +\xec\xc7\x00\x00\x2f\xbc\x69\x00\x00\x44\x0c\x03\x00\x00\x01\x42\ \x00\x4d\x00\x49\x00\x44\x00\x49\x00\x20\x00\x43\x00\x6f\x00\x6e\ \x00\x74\x00\x72\x00\x6f\x00\x6c\x00\x20\x00\x43\x00\x68\x00\x61\ \x00\x6e\x00\x67\x00\x65\x00\x73\x00\x20\x00\x28\x00\x43\x00\x43\ @@ -1002,769 +1001,771 @@ qt_resource_data = b"\ \x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x6e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x74\x20\x47\x72\x6f\x75\ \x70\x69\x6e\x67\x07\x00\x00\x00\x04\x4d\x65\x6e\x75\x01\x03\x00\ -\x00\x00\x12\x00\x4e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x53\x00\ -\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\ -\x64\x64\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\x4f\ -\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\ -\x00\x00\x00\x40\x00\x47\x00\x65\x00\x6c\x00\xf6\x00\x73\x00\x63\ -\x00\x68\x00\x74\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\ -\x00\x20\x00\x77\x00\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\x20\ -\x00\x68\x00\x69\x00\x6e\x00\x7a\x00\x75\x00\x66\x00\xfc\x00\x67\ -\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\ -\x64\x20\x64\x65\x6c\x65\x74\x65\x64\x20\x54\x72\x61\x63\x6b\x20\ -\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\ -\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\ -\x24\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x53\x00\ -\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x20\x00\ -\x61\x00\x75\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\ -\x6c\x6c\x20\x53\x74\x65\x70\x73\x20\x4f\x66\x66\x07\x00\x00\x00\ -\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\ -\x72\x79\x01\x03\x00\x00\x00\x20\x00\x41\x00\x6c\x00\x6c\x00\x65\ -\x00\x20\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\ -\x00\x65\x00\x20\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0c\x41\x6c\x6c\x20\x53\x74\x65\x70\x73\x20\x4f\x6e\x07\x00\ -\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\ -\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x20\x00\x47\x00\x72\x00\x75\ -\x00\x70\x00\x70\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\xe4\ -\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x47\x72\x6f\x75\x70\ -\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\ -\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1c\x00\x54\x00\x61\ -\x00\x6b\x00\x74\x00\x6c\x00\x61\x00\x75\x00\x74\x00\x73\x00\x74\ -\x00\xe4\x00\x72\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x17\x43\x68\x61\x6e\x67\x65\x20\x50\x61\x74\x74\x65\x72\x6e\ -\x20\x56\x65\x6c\x6f\x63\x69\x74\x79\x07\x00\x00\x00\x11\x4e\x4f\ -\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\ -\x03\x00\x00\x00\x20\x00\x52\x00\x65\x00\x69\x00\x68\x00\x65\x00\ -\x6e\x00\x6c\x00\x61\x00\x75\x00\x74\x00\x73\x00\x74\x00\xe4\x00\ -\x72\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x43\ -\x68\x61\x6e\x67\x65\x20\x52\x6f\x77\x20\x56\x65\x6c\x6f\x63\x69\ -\x74\x79\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\ -\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x22\x00\x53\ -\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x20\x00\x76\ -\x00\x65\x00\x72\x00\xe4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x6e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x68\x61\x6e\x67\x65\ -\x20\x53\x74\x65\x70\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\ -\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\ -\x1a\x00\x52\x00\x65\x00\x69\x00\x68\x00\x65\x00\x20\x00\x6c\x00\ -\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x09\x43\x6c\x65\x61\x72\x20\x52\x6f\x77\x07\x00\ -\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\ -\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x60\x00\x41\x00\x6c\x00\x6c\ -\x00\x65\x00\x20\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x70\ -\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\ -\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x54\x00\x61\ -\x00\x6b\x00\x74\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ -\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x73\ -\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1e\x43\x6c\x65\x61\x72\x20\x61\x6c\x6c\x20\x47\x72\ -\x6f\x75\x70\x20\x54\x72\x61\x6e\x73\x70\x6f\x73\x69\x74\x69\x6f\ -\x6e\x73\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\ -\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x16\x00\x53\ -\x00\x70\x00\x75\x00\x72\x00\x20\x00\x6b\x00\x6c\x00\x6f\x00\x6e\ -\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\ -\x6f\x6e\x65\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\ +\x00\x00\x36\x00\x41\x00\x6c\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\ +\x65\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x52\x00\x68\x00\ +\x79\x00\x74\x00\x68\x00\x6d\x00\x75\x00\x73\x00\x76\x00\x65\x00\ +\x72\x00\x73\x00\x61\x00\x74\x00\x7a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x47\x6c\x6f\x62\x61\x6c\x20\x52\x68\x79\x74\x68\x6d\ +\x20\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\x4d\x65\x6e\x75\ +\x01\x03\x00\x00\x00\x66\x00\x53\x00\x63\x00\x68\x00\x69\x00\x65\ +\x00\x62\x00\x74\x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\x00\x67\ +\x00\x65\x00\x73\x00\x61\x00\x6d\x00\x74\x00\x65\x00\x20\x00\x53\ +\x00\x74\x00\xfc\x00\x63\x00\x6b\x00\x20\x00\x22\x00\x73\x00\x70\ +\x00\xe4\x00\x74\x00\x65\x00\x72\x00\x22\x00\x20\x00\x61\x00\x75\ +\x00\x66\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\x69\ +\x00\x6d\x00\x65\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2f\x53\x68\x69\x66\x74\x20\x74\x68\x65\x20\ +\x77\x68\x6f\x6c\x65\x20\x70\x69\x65\x63\x65\x20\x66\x75\x72\x74\ +\x68\x65\x72\x20\x64\x6f\x77\x6e\x20\x74\x68\x65\x20\x74\x69\x6d\ +\x65\x6c\x69\x6e\x65\x07\x00\x00\x00\x04\x4d\x65\x6e\x75\x01\x03\ +\x00\x00\x00\x12\x00\x4e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x53\ +\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x41\x64\x64\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\ \x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\ -\x03\x00\x00\x00\x2a\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\ -\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x00\x20\x00\x75\x00\ -\x6d\x00\x77\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x74\ -\x20\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x11\x4e\x4f\ -\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\ -\x03\x00\x00\x00\x1c\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\ -\x20\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x65\x00\ -\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x70\x79\x20\ -\x4d\x65\x61\x73\x75\x72\x65\x73\x07\x00\x00\x00\x11\x4e\x4f\x4f\ -\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\ -\x00\x00\x00\x18\x00\x53\x00\x70\x00\x75\x00\x72\x00\x20\x00\x6c\ +\x03\x00\x00\x00\x40\x00\x47\x00\x65\x00\x6c\x00\xf6\x00\x73\x00\ +\x63\x00\x68\x00\x74\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x68\x00\x69\x00\x6e\x00\x7a\x00\x75\x00\x66\x00\xfc\x00\ +\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\ +\x64\x64\x20\x64\x65\x6c\x65\x74\x65\x64\x20\x54\x72\x61\x63\x6b\ +\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\ +\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\ +\x00\x24\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x53\ +\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x20\ +\x00\x61\x00\x75\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x41\x6c\x6c\x20\x53\x74\x65\x70\x73\x20\x4f\x66\x66\x07\x00\x00\ +\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\ +\x6f\x72\x79\x01\x03\x00\x00\x00\x20\x00\x41\x00\x6c\x00\x6c\x00\ +\x65\x00\x20\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\ +\x74\x00\x65\x00\x20\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x41\x6c\x6c\x20\x53\x74\x65\x70\x73\x20\x4f\x6e\x07\ +\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\ +\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x20\x00\x47\x00\x72\x00\ +\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\ +\xe4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x47\x72\x6f\x75\ +\x70\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\ +\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1c\x00\x54\x00\ +\x61\x00\x6b\x00\x74\x00\x6c\x00\x61\x00\x75\x00\x74\x00\x73\x00\ +\x74\x00\xe4\x00\x72\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x43\x68\x61\x6e\x67\x65\x20\x50\x61\x74\x74\x65\x72\ +\x6e\x20\x56\x65\x6c\x6f\x63\x69\x74\x79\x07\x00\x00\x00\x11\x4e\ +\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\ +\x01\x03\x00\x00\x00\x20\x00\x52\x00\x65\x00\x69\x00\x68\x00\x65\ +\x00\x6e\x00\x6c\x00\x61\x00\x75\x00\x74\x00\x73\x00\x74\x00\xe4\ +\x00\x72\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\ +\x43\x68\x61\x6e\x67\x65\x20\x52\x6f\x77\x20\x56\x65\x6c\x6f\x63\ +\x69\x74\x79\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ +\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x22\x00\ +\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\xe4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x68\x61\x6e\x67\ +\x65\x20\x53\x74\x65\x70\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\ +\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\ +\x00\x1a\x00\x52\x00\x65\x00\x69\x00\x68\x00\x65\x00\x20\x00\x6c\ \x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0c\x44\x65\x6c\x65\x74\x65\x20\x54\x72\x61\ -\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\ -\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x4e\x00\x4c\ -\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x53\x00\x70\ -\x00\x75\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x61\ -\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x73\ -\x00\x63\x00\x68\x00\x65\x00\x20\x00\x45\x00\x72\x00\x73\x00\x61\ -\x00\x74\x00\x7a\x00\x73\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x22\x44\x65\x6c\x65\x74\x65\x20\x54\x72\x61\ -\x63\x6b\x20\x61\x6e\x64\x20\x61\x75\x74\x6f\x63\x72\x65\x61\x74\ -\x65\x64\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\x4f\ -\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\ -\x00\x00\x00\x24\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x67\x00\x72\ -\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x4c\x00\xf6\x00\x73\ -\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x77\x68\x6f\x6c\x65\x20\x47\ -\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\ -\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x36\ -\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x72\ -\x00\x65\x00\x69\x00\x68\x00\x65\x00\x6e\x00\x66\x00\x6f\x00\x6c\ -\x00\x67\x00\x65\x00\x20\x00\x74\x00\x61\x00\x75\x00\x73\x00\x63\ -\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ -\x45\x78\x63\x68\x61\x6e\x67\x65\x20\x47\x72\x6f\x75\x70\x20\x4f\ -\x72\x64\x65\x72\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\ -\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x24\ -\x00\x52\x00\x65\x00\x69\x00\x68\x00\x65\x00\x6e\x00\x77\x00\x69\ -\x00\x65\x00\x64\x00\x65\x00\x72\x00\x68\x00\x6f\x00\x6c\x00\x75\ -\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x46\x69\ -\x6c\x6c\x20\x52\x6f\x77\x20\x77\x69\x74\x68\x20\x52\x65\x70\x65\ -\x61\x74\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\ -\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x22\x00\x47\ -\x00\x72\x00\x75\x00\x70\x00\x70\x00\x69\x00\x65\x00\x72\x00\x75\ -\x00\x6e\x00\x67\x00\x73\x00\x64\x00\x61\x00\x75\x00\x65\x00\x72\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x47\x72\x6f\x75\x70\x20\ -\x44\x75\x72\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\ -\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\ -\x00\x00\x00\x18\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ -\x00\x6e\x00\x67\x00\x72\x00\xf6\x00\xdf\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0a\x47\x72\x6f\x75\x70\x20\x53\x69\x7a\x65\ -\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\ -\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x36\x00\x47\x00\x72\ -\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\ -\x00\x66\x00\xfc\x00\x67\x00\x65\x00\x6e\x00\x2f\x00\x64\x00\x75\ -\x00\x70\x00\x6c\x00\x69\x00\x7a\x00\x69\x00\x65\x00\x72\x00\x65\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x49\x6e\x73\x65\ -\x72\x74\x2f\x44\x75\x70\x6c\x69\x63\x61\x74\x65\x20\x47\x72\x6f\ -\x75\x70\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\ -\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x28\x00\x54\ -\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x75\x00\x73\x00\x77\x00\x61\ -\x00\x68\x00\x6c\x00\x20\x00\x75\x00\x6d\x00\x64\x00\x72\x00\x65\ -\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ -\x49\x6e\x76\x65\x72\x74\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x07\ +\x00\x06\x00\x00\x00\x09\x43\x6c\x65\x61\x72\x20\x52\x6f\x77\x07\ \x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\ -\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x65\x00\ -\x69\x00\x68\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x6b\x00\x65\x00\ -\x68\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0a\x49\x6e\x76\x65\x72\x74\x20\x52\x6f\x77\x07\x00\x00\x00\x11\ -\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\ -\x79\x01\x03\x00\x00\x00\x28\x00\x53\x00\x63\x00\x68\x00\x72\x00\ -\x69\x00\x74\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x76\x00\ -\x65\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6e\x76\x65\x72\x74\x20\ -\x53\x74\x65\x70\x73\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\ -\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\ -\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x70\x00\ -\x72\x00\x6f\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x65\x61\x73\x75\ -\x72\x65\x73\x20\x70\x65\x72\x20\x47\x72\x6f\x75\x70\x07\x00\x00\ -\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\ -\x6f\x72\x79\x01\x03\x00\x00\x00\x1c\x00\x54\x00\x61\x00\x6b\x00\ -\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x53\x00\ -\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\ -\x65\x61\x73\x75\x72\x65\x73\x20\x70\x65\x72\x20\x54\x72\x61\x63\ -\x6b\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\ -\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x18\x00\x53\x00\ -\x70\x00\x75\x00\x72\x00\x20\x00\x62\x00\x65\x00\x77\x00\x65\x00\ -\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4d\ -\x6f\x76\x65\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\ +\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x60\x00\x41\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\ +\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x54\x00\ +\x61\x00\x6b\x00\x74\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\ +\x65\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\ +\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1e\x43\x6c\x65\x61\x72\x20\x61\x6c\x6c\x20\x47\ +\x72\x6f\x75\x70\x20\x54\x72\x61\x6e\x73\x70\x6f\x73\x69\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ +\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x16\x00\ +\x53\x00\x70\x00\x75\x00\x72\x00\x20\x00\x6b\x00\x6c\x00\x6f\x00\ +\x6e\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ +\x6c\x6f\x6e\x65\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\ +\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\ +\x01\x03\x00\x00\x00\x2a\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\ +\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x00\x20\x00\x75\ +\x00\x6d\x00\x77\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\ +\x74\x20\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x11\x4e\ +\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\ +\x01\x03\x00\x00\x00\x1c\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\ +\x00\x20\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x70\x79\ +\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x07\x00\x00\x00\x11\x4e\x4f\ \x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\ -\x03\x00\x00\x00\x14\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\ -\x6e\x00\x61\x00\x6d\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0a\x4e\x6f\x74\x65\x20\x4e\x61\x6d\x65\x73\x07\x00\x00\ -\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\ -\x6f\x72\x79\x01\x03\x00\x00\x00\x36\x00\x41\x00\x6e\x00\x7a\x00\ -\x61\x00\x68\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\ -\x54\x00\x6f\x00\x6e\x00\x68\x00\xf6\x00\x68\x00\x65\x00\x6e\x00\ -\x20\x00\x69\x00\x6d\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x4e\x75\x6d\x62\x65\x72\x20\ -\x6f\x66\x20\x4e\x6f\x74\x65\x73\x20\x69\x6e\x20\x50\x61\x74\x74\ -\x65\x72\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ -\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1e\x00\ -\x54\x00\x61\x00\x6b\x00\x74\x00\x2d\x00\x53\x00\x6b\x00\x61\x00\ -\x6c\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x12\x50\x61\x74\x74\x65\x72\x6e\x20\x4d\ -\x75\x6c\x74\x69\x70\x6c\x69\x65\x72\x07\x00\x00\x00\x11\x4e\x4f\ +\x03\x00\x00\x00\x18\x00\x53\x00\x70\x00\x75\x00\x72\x00\x20\x00\ +\x6c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x44\x65\x6c\x65\x74\x65\x20\x54\x72\ +\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ +\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x4e\x00\ +\x4c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x53\x00\ +\x70\x00\x75\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\ +\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x45\x00\x72\x00\x73\x00\ +\x61\x00\x74\x00\x7a\x00\x73\x00\x70\x00\x75\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x22\x44\x65\x6c\x65\x74\x65\x20\x54\x72\ +\x61\x63\x6b\x20\x61\x6e\x64\x20\x61\x75\x74\x6f\x63\x72\x65\x61\ +\x74\x65\x64\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\ \x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\ -\x03\x00\x00\x00\x16\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\ -\x74\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0b\x52\x65\x6d\x6f\x76\x65\x20\x53\x74\x65\x70\ -\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\ -\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1c\x00\x54\x00\x61\ -\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x45\x00\x72\x00\x73\x00\x65\ -\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x10\x52\x65\x70\x6c\x61\x63\x65\x20\x4d\x65\x61\x73\x75\x72\ -\x65\x73\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\ -\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x28\x00\x48\ -\x00\x61\x00\x6c\x00\x62\x00\x74\x00\x6f\x00\x6e\x00\x74\x00\x72\ -\x00\x61\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\ -\x53\x65\x74\x20\x48\x61\x6c\x66\x20\x54\x6f\x6e\x65\x20\x53\x68\ -\x69\x66\x74\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ -\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x16\x00\ -\x53\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x54\x00\x61\x00\ -\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\ -\x65\x74\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x07\x00\x00\x00\x11\ -\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\ -\x79\x01\x03\x00\x00\x00\x28\x00\x4d\x00\x6f\x00\x64\x00\x61\x00\ -\x6c\x00\x65\x00\x20\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\ -\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x74\x20\x4d\x6f\x64\ -\x61\x6c\x20\x53\x68\x69\x66\x74\x07\x00\x00\x00\x11\x4e\x4f\x4f\ -\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\ -\x00\x00\x00\x22\x00\x42\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x7a\ -\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x6c\x00\x65\x00\x69\ -\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ -\x53\x65\x74\x20\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x11\x4e\x4f\ +\x03\x00\x00\x00\x24\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x4c\x00\xf6\x00\ +\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x77\x68\x6f\x6c\x65\x20\ +\x47\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\ +\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\ +\x36\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x6e\x00\ +\x72\x00\x65\x00\x69\x00\x68\x00\x65\x00\x6e\x00\x66\x00\x6f\x00\ +\x6c\x00\x67\x00\x65\x00\x20\x00\x74\x00\x61\x00\x75\x00\x73\x00\ +\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x45\x78\x63\x68\x61\x6e\x67\x65\x20\x47\x72\x6f\x75\x70\x20\ +\x4f\x72\x64\x65\x72\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\ +\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\ +\x24\x00\x52\x00\x65\x00\x69\x00\x68\x00\x65\x00\x6e\x00\x77\x00\ +\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\x68\x00\x6f\x00\x6c\x00\ +\x75\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x46\ +\x69\x6c\x6c\x20\x52\x6f\x77\x20\x77\x69\x74\x68\x20\x52\x65\x70\ +\x65\x61\x74\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ +\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x36\x00\ +\x41\x00\x6c\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x69\x00\ +\x6e\x00\x65\x00\x72\x00\x20\x00\x52\x00\x68\x00\x79\x00\x74\x00\ +\x68\x00\x6d\x00\x75\x00\x73\x00\x76\x00\x65\x00\x72\x00\x73\x00\ +\x61\x00\x74\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x47\ +\x6c\x6f\x62\x61\x6c\x20\x52\x68\x79\x74\x68\x6d\x20\x4f\x66\x66\ +\x73\x65\x74\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ +\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x22\x00\ +\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x69\x00\x65\x00\x72\x00\ +\x75\x00\x6e\x00\x67\x00\x73\x00\x64\x00\x61\x00\x75\x00\x65\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x47\x72\x6f\x75\x70\ +\x20\x44\x75\x72\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x4e\x4f\ \x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\ -\x03\x00\x00\x00\x22\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\ -\x74\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\ -\x54\x00\x61\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x11\x53\x74\x65\x70\x73\x20\x70\x65\x72\x20\x50\x61\x74\x74\x65\ -\x72\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\ -\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x0a\x00\x53\ -\x00\x77\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x53\x77\x69\x6e\x67\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\ -\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\ -\x00\x00\x0a\x00\x54\x00\x65\x00\x6d\x00\x70\x00\x6f\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x05\x54\x65\x6d\x70\x6f\x07\x00\x00\x00\ +\x03\x00\x00\x00\x18\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\ +\x65\x00\x6e\x00\x67\x00\x72\x00\xf6\x00\xdf\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x47\x72\x6f\x75\x70\x20\x53\x69\x7a\ +\x65\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\ +\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x36\x00\x47\x00\ +\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x65\x00\x69\x00\ +\x6e\x00\x66\x00\xfc\x00\x67\x00\x65\x00\x6e\x00\x2f\x00\x64\x00\ +\x75\x00\x70\x00\x6c\x00\x69\x00\x7a\x00\x69\x00\x65\x00\x72\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x49\x6e\x73\ +\x65\x72\x74\x2f\x44\x75\x70\x6c\x69\x63\x61\x74\x65\x20\x47\x72\ +\x6f\x75\x70\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ +\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x28\x00\ +\x54\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x75\x00\x73\x00\x77\x00\ +\x61\x00\x68\x00\x6c\x00\x20\x00\x75\x00\x6d\x00\x64\x00\x72\x00\ +\x65\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x49\x6e\x76\x65\x72\x74\x20\x4d\x65\x61\x73\x75\x72\x65\x73\ +\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\ +\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x65\ +\x00\x69\x00\x68\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x6b\x00\x65\ +\x00\x68\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x49\x6e\x76\x65\x72\x74\x20\x52\x6f\x77\x07\x00\x00\x00\ \x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\ -\x72\x79\x01\x03\x00\x00\x00\x12\x00\x53\x00\x70\x00\x75\x00\x72\ -\x00\x66\x00\x61\x00\x72\x00\x62\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0b\x54\x72\x61\x63\x6b\x20\x43\x6f\x6c\x6f\x72\x07\ -\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\ -\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x2c\x00\x41\x00\x6c\x00\ -\x6c\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\ -\x20\x00\x61\x00\x75\x00\x73\x00\x73\x00\x63\x00\x68\x00\x61\x00\ -\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x54\x72\x61\x63\x6b\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x20\ -\x4f\x66\x66\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ -\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x2c\x00\ -\x41\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\ -\x74\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x73\x00\x63\x00\ -\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x20\x4d\x65\x61\x73\x75\ -\x72\x65\x73\x20\x4f\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\ +\x72\x79\x01\x03\x00\x00\x00\x28\x00\x53\x00\x63\x00\x68\x00\x72\ +\x00\x69\x00\x74\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6e\x76\x65\x72\x74\ +\x20\x53\x74\x65\x70\x73\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\ \x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\ -\x00\x1c\x00\x53\x00\x70\x00\x75\x00\x72\x00\x20\x00\x4d\x00\x69\ -\x00\x64\x00\x69\x00\x6b\x00\x61\x00\x6e\x00\x61\x00\x6c\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x12\x54\x72\x61\x63\x6b\x20\x4d\x69\ -\x64\x69\x20\x43\x68\x61\x6e\x6e\x65\x6c\x07\x00\x00\x00\x11\x4e\ +\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x65\x61\x73\ +\x75\x72\x65\x73\x20\x70\x65\x72\x20\x47\x72\x6f\x75\x70\x07\x00\ +\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\ +\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1c\x00\x54\x00\x61\x00\x6b\ +\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x53\ +\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x4d\x65\x61\x73\x75\x72\x65\x73\x20\x70\x65\x72\x20\x54\x72\x61\ +\x63\x6b\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\ +\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x18\x00\x53\ +\x00\x70\x00\x75\x00\x72\x00\x20\x00\x62\x00\x65\x00\x77\x00\x65\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x4d\x6f\x76\x65\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x4e\ +\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\ +\x01\x03\x00\x00\x00\x14\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x6e\ +\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x4e\x6f\x74\x65\x20\x4e\x61\x6d\x65\x73\x07\x00\ +\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\ +\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x36\x00\x41\x00\x6e\x00\x7a\ +\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x54\x00\x6f\x00\x6e\x00\x68\x00\xf6\x00\x68\x00\x65\x00\x6e\ +\x00\x20\x00\x69\x00\x6d\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x4e\x75\x6d\x62\x65\x72\ +\x20\x6f\x66\x20\x4e\x6f\x74\x65\x73\x20\x69\x6e\x20\x50\x61\x74\ +\x74\x65\x72\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\ +\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1e\ +\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x2d\x00\x53\x00\x6b\x00\x61\ +\x00\x6c\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x50\x61\x74\x74\x65\x72\x6e\x20\ +\x4d\x75\x6c\x74\x69\x70\x6c\x69\x65\x72\x07\x00\x00\x00\x11\x4e\ \x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\ -\x01\x03\x00\x00\x00\x10\x00\x53\x00\x70\x00\x75\x00\x72\x00\x6e\ -\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ -\x54\x72\x61\x63\x6b\x20\x4e\x61\x6d\x65\x07\x00\x00\x00\x11\x4e\ +\x01\x03\x00\x00\x00\x16\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\ +\x00\x74\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x52\x65\x6d\x6f\x76\x65\x20\x53\x74\x65\ +\x70\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\ +\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x1c\x00\x54\x00\ +\x61\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x45\x00\x72\x00\x73\x00\ +\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x52\x65\x70\x6c\x61\x63\x65\x20\x4d\x65\x61\x73\x75\ +\x72\x65\x73\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ +\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x28\x00\ +\x48\x00\x61\x00\x6c\x00\x62\x00\x74\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x61\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x73\x00\x69\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x53\x65\x74\x20\x48\x61\x6c\x66\x20\x54\x6f\x6e\x65\x20\x53\ +\x68\x69\x66\x74\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\ +\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x16\ +\x00\x53\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x54\x00\x61\ +\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x53\x65\x74\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x07\x00\x00\x00\ +\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\ +\x72\x79\x01\x03\x00\x00\x00\x28\x00\x4d\x00\x6f\x00\x64\x00\x61\ +\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x74\x20\x4d\x6f\ +\x64\x61\x6c\x20\x53\x68\x69\x66\x74\x07\x00\x00\x00\x11\x4e\x4f\ +\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\ +\x03\x00\x00\x00\x22\x00\x42\x00\x65\x00\x6e\x00\x75\x00\x74\x00\ +\x7a\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x6c\x00\x65\x00\ +\x69\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x53\x65\x74\x20\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x11\x4e\ \x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\ -\x01\x03\x00\x00\x00\x2e\x00\x54\x00\x6f\x00\x6e\x00\x6c\x00\x65\ -\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x72\x00\x61\ -\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\ -\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x72\ -\x61\x6e\x73\x70\x6f\x73\x65\x20\x53\x63\x61\x6c\x65\x07\x00\x00\ +\x01\x03\x00\x00\x00\x22\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\ +\x00\x74\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\ +\x00\x54\x00\x61\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x53\x74\x65\x70\x73\x20\x70\x65\x72\x20\x50\x61\x74\x74\ +\x65\x72\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\ +\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x0a\x00\ +\x53\x00\x77\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x53\x77\x69\x6e\x67\x07\x00\x00\x00\x11\x4e\x4f\x4f\ +\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\ +\x00\x00\x00\x0a\x00\x54\x00\x65\x00\x6d\x00\x70\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x54\x65\x6d\x70\x6f\x07\x00\x00\ \x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\ -\x6f\x72\x79\x01\x03\x00\x00\x00\x3a\x00\x41\x00\x6e\x00\x7a\x00\ -\x61\x00\x68\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\ -\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\ -\x6f\x00\x20\x00\x53\x00\x63\x00\x68\x00\x6c\x00\x65\x00\x69\x00\ -\x66\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x4e\x75\x6d\ -\x62\x65\x72\x20\x6f\x66\x20\x6d\x65\x61\x73\x75\x72\x65\x73\x20\ -\x69\x6e\x20\x74\x68\x65\x20\x6c\x6f\x6f\x70\x07\x00\x00\x00\x10\ -\x50\x6c\x61\x79\x62\x61\x63\x6b\x43\x6f\x6e\x74\x72\x6f\x6c\x73\ -\x01\x03\x00\x00\x00\x32\x00\x5b\x00\x50\x00\x6f\x00\x73\x00\x31\ -\x00\x5d\x00\x20\x00\x53\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x67\ -\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x41\x00\x6e\ -\x00\x66\x00\x61\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x14\x5b\x48\x6f\x6d\x65\x5d\x20\x4a\x75\x6d\x70\x20\x74\x6f\ -\x20\x53\x74\x61\x72\x74\x07\x00\x00\x00\x10\x50\x6c\x61\x79\x62\ -\x61\x63\x6b\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\ -\x4c\x00\x5b\x00\x4c\x00\x5d\x00\x20\x00\x41\x00\x6b\x00\x74\x00\ -\x75\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x54\x00\ -\x61\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x53\x00\ -\x63\x00\x68\x00\x6c\x00\x65\x00\x69\x00\x66\x00\x65\x00\x20\x00\ -\x73\x00\x70\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x18\x5b\x4c\x5d\x20\x4c\x6f\x6f\x70\x20\ -\x63\x75\x72\x72\x65\x6e\x74\x20\x4d\x65\x61\x73\x75\x72\x65\x07\ -\x00\x00\x00\x10\x50\x6c\x61\x79\x62\x61\x63\x6b\x43\x6f\x6e\x74\ -\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x30\x00\x5b\x00\x4c\x00\x65\ -\x00\x65\x00\x72\x00\x74\x00\x61\x00\x73\x00\x74\x00\x65\x00\x5d\ -\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x2f\x00\x20\ -\x00\x50\x00\x61\x00\x75\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x14\x5b\x53\x70\x61\x63\x65\x5d\x20\x50\x6c\x61\x79\ -\x20\x2f\x20\x50\x61\x75\x73\x65\x07\x00\x00\x00\x10\x50\x6c\x61\ -\x79\x62\x61\x63\x6b\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\ -\x00\x00\x0a\x00\x42\x00\x6c\x00\x75\x00\x65\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x05\x42\x6c\x75\x65\x73\x07\x00\x00\x00\ -\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x16\x00\x43\x00\x68\ -\x00\x72\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x73\x00\x63\ -\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x43\x68\x72\x6f\ -\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\ -\x03\x00\x00\x00\x0e\x00\x44\x00\x6f\x00\x72\x00\x69\x00\x73\x00\ -\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x44\x6f\x72\ -\x69\x61\x6e\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\x03\x00\ -\x00\x00\x10\x00\x44\x00\x72\x00\x75\x00\x6d\x00\x73\x00\x20\x00\ -\x47\x00\x4d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x72\x75\ -\x6d\x73\x20\x47\x4d\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\ -\x03\x00\x00\x00\x10\x00\x45\x00\x6e\x00\x67\x00\x6c\x00\x69\x00\ -\x73\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x45\ -\x6e\x67\x6c\x69\x73\x68\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\ -\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x65\x00\x75\x00\x74\x00\x73\ -\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x47\x65\ -\x72\x6d\x61\x6e\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\x03\ -\x00\x00\x00\x12\x00\x48\x00\x6f\x00\x6c\x00\x6c\x00\x79\x00\x77\ -\x00\x6f\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ -\x48\x6f\x6c\x6c\x79\x77\x6f\x6f\x64\x07\x00\x00\x00\x05\x53\x63\ -\x61\x6c\x65\x01\x03\x00\x00\x00\x10\x00\x4c\x00\x69\x00\x6c\x00\ -\x79\x00\x70\x00\x6f\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x08\x4c\x69\x6c\x79\x70\x6f\x6e\x64\x07\x00\x00\x00\x05\ -\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x10\x00\x4c\x00\x6f\x00\ -\x6b\x00\x72\x00\x69\x00\x73\x00\x63\x00\x68\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x07\x4c\x6f\x63\x72\x69\x61\x6e\x07\x00\x00\x00\ -\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x0e\x00\x4c\x00\x79\ -\x00\x64\x00\x69\x00\x73\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x06\x4c\x79\x64\x69\x61\x6e\x07\x00\x00\x00\x05\x53\ -\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x06\x00\x44\x00\x75\x00\x72\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x4d\x61\x6a\x6f\x72\x07\ -\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x08\x00\ -\x4d\x00\x6f\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x4d\x69\x6e\x6f\x72\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\ -\x01\x03\x00\x00\x00\x16\x00\x4d\x00\x69\x00\x78\x00\x6f\x00\x6c\ -\x00\x79\x00\x64\x00\x69\x00\x73\x00\x63\x00\x68\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0a\x4d\x69\x78\x6f\x6c\x79\x64\x69\x61\x6e\ -\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x12\ -\x00\x50\x00\x68\x00\x72\x00\x79\x00\x67\x00\x69\x00\x73\x00\x63\ -\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x68\x72\x79\ -\x67\x69\x61\x6e\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\x03\ -\x00\x00\x00\x66\x00\x53\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x20\ -\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x72\x00\x61\ -\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\ -\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\ -\x00\x73\x00\x65\x00\x72\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\ -\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x7a\ -\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1e\x43\x6c\x65\x61\x72\x20\x61\x6c\x6c\x20\x67\x72\ -\x6f\x75\x70\x20\x74\x72\x61\x6e\x73\x70\x6f\x73\x69\x74\x69\x6f\ -\x6e\x73\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\x72\x75\x63\ -\x74\x75\x72\x65\x01\x03\x00\x00\x00\x2e\x00\x4c\x00\xf6\x00\x73\ -\x00\x63\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\ -\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x67\x00\x72\ -\x00\x75\x00\x70\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x77\x68\x6f\x6c\x65\x20\x67\ -\x72\x6f\x75\x70\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\x72\ -\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x52\x00\x56\x00\x65\ -\x00\x72\x00\x64\x00\x6f\x00\x70\x00\x70\x00\x6c\x00\x65\x00\x20\ -\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\x54\x00\x61\ -\x00\x6b\x00\x74\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ -\x00\x20\x00\x69\x00\x6e\x00\x6b\x00\x6c\x00\x2e\x00\x20\x00\x53\ -\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x28\x44\x75\x70\x6c\x69\x63\x61\x74\ -\x65\x20\x77\x68\x6f\x6c\x65\x20\x67\x72\x6f\x75\x70\x20\x69\x6e\ -\x63\x6c\x75\x64\x69\x6e\x67\x20\x6d\x65\x61\x73\x75\x72\x65\x73\ -\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\x72\x75\x63\x74\x75\ -\x72\x65\x01\x03\x00\x00\x00\x50\x00\x54\x00\x61\x00\x75\x00\x73\ -\x00\x63\x00\x68\x00\x65\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\ -\x00\x70\x00\x65\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x72\ -\x00\x65\x00\x63\x00\x68\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4e\ -\x00\x61\x00\x63\x00\x68\x00\x62\x00\x61\x00\x72\x00\x67\x00\x72\ -\x00\x75\x00\x70\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x22\x45\x78\x63\x68\x61\x6e\x67\x65\x20\x67\x72\x6f\x75\x70\ -\x20\x77\x69\x74\x68\x20\x72\x69\x67\x68\x74\x20\x6e\x65\x69\x67\ -\x62\x6f\x75\x72\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\x72\ -\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x48\x00\x4c\x00\x65\ -\x00\x65\x00\x72\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\ -\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x76\ -\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\ -\x00\x72\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x66\x00\xfc\x00\x67\ -\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x49\x6e\ -\x73\x65\x72\x74\x20\x65\x6d\x70\x74\x79\x20\x67\x72\x6f\x75\x70\ -\x20\x62\x65\x66\x6f\x72\x65\x20\x74\x68\x69\x73\x20\x6f\x6e\x65\ -\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\x72\x75\x63\x74\x75\ -\x72\x65\x01\x03\x00\x00\x00\x0c\x00\x41\x00\x63\x00\x68\x00\x74\ -\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x45\x69\ -\x67\x74\x68\x07\x00\x00\x00\x0d\x54\x69\x6d\x65\x53\x69\x67\x6e\ -\x61\x74\x75\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x48\x00\x61\x00\ -\x6c\x00\x62\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x48\ -\x61\x6c\x66\x07\x00\x00\x00\x0d\x54\x69\x6d\x65\x53\x69\x67\x6e\ -\x61\x74\x75\x72\x65\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x69\x00\ -\x65\x00\x72\x00\x74\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x07\x51\x75\x61\x72\x74\x65\x72\x07\x00\x00\x00\x0d\x54\ -\x69\x6d\x65\x53\x69\x67\x6e\x61\x74\x75\x72\x65\x01\x03\x00\x00\ -\x00\x16\x00\x53\x00\x65\x00\x63\x00\x68\x00\x7a\x00\x65\x00\x68\ -\x00\x6e\x00\x74\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x09\x53\x69\x78\x74\x65\x65\x6e\x74\x68\x07\x00\x00\x00\x0d\ -\x54\x69\x6d\x65\x53\x69\x67\x6e\x61\x74\x75\x72\x65\x01\x03\x00\ -\x00\x00\x0a\x00\x47\x00\x61\x00\x6e\x00\x7a\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x05\x57\x68\x6f\x6c\x65\x07\x00\x00\x00\ -\x0d\x54\x69\x6d\x65\x53\x69\x67\x6e\x61\x74\x75\x72\x65\x01\x03\ -\x00\x00\x00\xa4\x00\x4b\x00\x6c\x00\x69\x00\x63\x00\x6b\x00\x65\ -\x00\x6e\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x64\x00\x69\x00\x65\ -\x00\x20\x00\x57\x00\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\x67\ -\x00\x61\x00\x62\x00\x65\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\x00\xe4\ -\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x6e\x00\x2e\x00\x20\x00\x4d\ -\x00\x61\x00\x75\x00\x73\x00\x72\x00\x61\x00\x64\x00\x20\x00\x75\ -\x00\x6d\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\x61\ -\x00\x6b\x00\x74\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ -\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\x00\xe4\x00\x6e\x00\x64\ -\x00\x65\x00\x72\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x52\x43\x6c\x69\x63\x6b\x20\x74\x6f\x20\x73\x65\x74\x20\x70\ -\x6c\x61\x79\x62\x61\x63\x6b\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\ -\x2e\x20\x53\x63\x72\x6f\x6c\x6c\x20\x77\x69\x74\x68\x20\x6d\x6f\ -\x75\x73\x65\x77\x68\x65\x65\x6c\x20\x74\x6f\x20\x61\x64\x6a\x75\ -\x73\x74\x20\x6d\x65\x61\x73\x75\x72\x65\x20\x67\x72\x6f\x75\x70\ -\x69\x6e\x67\x2e\x07\x00\x00\x00\x08\x54\x69\x6d\x65\x6c\x69\x6e\ -\x65\x01\x03\x00\x00\x00\x24\x00\x20\x00\x67\x00\x72\x00\x75\x00\ -\x70\x00\x70\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x69\x00\ -\x6e\x00\x20\x00\x6a\x00\x65\x00\x3a\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0f\x20\x69\x6e\x20\x67\x72\x6f\x75\x70\x73\x20\ -\x6f\x66\x3a\x20\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\ -\x01\x03\x00\x00\x00\x3a\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\ -\x00\x6a\x00\x65\x00\x64\x00\x65\x00\x20\x00\x47\x00\x72\x00\x75\ -\x00\x70\x00\x70\x00\x65\x00\x20\x00\x65\x00\x72\x00\x67\x00\x69\ -\x00\x62\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x3a\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x20\x73\x6f\x20\x74\x68\ -\x61\x74\x20\x65\x61\x63\x68\x20\x67\x72\x6f\x75\x70\x20\x70\x72\ -\x6f\x64\x75\x63\x65\x73\x20\x61\x3a\x07\x00\x00\x00\x07\x54\x6f\ -\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x12\x00\x4e\x00\x65\x00\ -\x75\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x54\x72\x61\x63\x6b\ -\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\ -\x00\xb0\x00\x45\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6e\x00\x65\ -\x00\x75\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\x65\x00\x72\ -\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\x00\x2c\x00\x20\ -\x00\x62\x00\x65\x00\x69\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\ -\x00\x6d\x00\x61\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x63\x00\x68\ -\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x48\x00\x61\x00\x6e\ -\x00\x64\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x49\x00\x6e\ -\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\ -\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x4a\x00\x41\x00\x43\ -\x00\x4b\x00\x20\x00\x76\x00\x65\x00\x72\x00\x62\x00\x69\x00\x6e\ -\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x73\ -\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x50\x41\x64\x64\x20\ -\x61\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x20\x65\x6d\x70\x74\x79\ -\x20\x74\x72\x61\x63\x6b\x20\x74\x68\x61\x74\x20\x6e\x65\x65\x64\ -\x73\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\ -\x64\x20\x74\x6f\x20\x61\x6e\x20\x69\x6e\x73\x74\x72\x75\x6d\x65\ -\x6e\x74\x20\x6d\x61\x6e\x75\x61\x6c\x6c\x79\x2e\x07\x00\x00\x00\ -\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x16\x00\x42\ -\x00\x50\x00\x4d\x00\x2f\x00\x54\x00\x65\x00\x6d\x00\x70\x00\x6f\ -\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x50\ -\x4d\x2f\x54\x65\x6d\x70\x6f\x3a\x20\x07\x00\x00\x00\x07\x54\x6f\ -\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x2c\x00\x4b\x00\x6c\x00\ -\x6f\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\ -\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x20\x00\ -\x53\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x14\x43\x6c\x6f\x6e\x65\x20\x53\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\ -\x72\x01\x03\x00\x00\x00\x76\x00\x41\x00\x75\x00\x73\x00\x3a\x00\ -\x20\x00\x4a\x00\x41\x00\x43\x00\x4b\x00\x20\x00\x54\x00\x72\x00\ -\x61\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ -\x53\x00\x6c\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x20\x00\x41\x00\ -\x6e\x00\x3a\x00\x20\x00\x4a\x00\x41\x00\x43\x00\x4b\x00\x20\x00\ -\x4d\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x28\x00\ -\x65\x00\x69\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x73\x00\x20\x00\ -\x54\x00\x65\x00\x6d\x00\x70\x00\x6f\x00\x29\x00\x2e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x40\x44\x65\x61\x63\x74\x69\x76\x61\x74\ -\x65\x20\x74\x6f\x20\x62\x65\x63\x63\x6f\x6d\x65\x20\x4a\x41\x43\ -\x4b\x20\x54\x72\x61\x6e\x73\x70\x6f\x72\x74\x20\x53\x6c\x61\x76\ -\x65\x2e\x20\x41\x63\x74\x69\x76\x61\x74\x65\x20\x66\x6f\x72\x20\ -\x4d\x61\x73\x74\x65\x72\x2e\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\ -\x62\x61\x72\x01\x03\x00\x00\x00\x56\x00\x57\x00\x65\x00\x6c\x00\ -\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\ -\x65\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x74\x00\x20\x00\x72\x00\ -\x65\x00\x70\x00\x72\x00\xe4\x00\x73\x00\x65\x00\x6e\x00\x74\x00\ -\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ -\x20\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x48\x6f\x77\x20\x6c\x6f\x6e\ -\x67\x20\x69\x73\x20\x65\x61\x63\x68\x20\x6d\x61\x69\x6e\x20\x73\ -\x74\x65\x70\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\ -\x03\x00\x00\x00\x78\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\ -\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x4d\x00\x75\x00\x73\x00\ -\x74\x00\x65\x00\x72\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ -\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\ -\x6e\x00\x20\x00\x28\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ -\x65\x00\x20\x00\x48\x00\xe4\x00\x6c\x00\x66\x00\x74\x00\x65\x00\ -\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x50\x00\x72\x00\x6f\x00\ -\x67\x00\x72\x00\x61\x00\x6d\x00\x6d\x00\x73\x00\x29\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x32\x4c\x65\x6e\x67\x74\x68\x20\x6f\x66\ -\x20\x74\x68\x65\x20\x70\x61\x74\x74\x65\x72\x6e\x20\x28\x62\x6f\ -\x74\x74\x6f\x6d\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x74\x68\x65\ -\x20\x70\x72\x6f\x67\x72\x61\x6d\x29\x07\x00\x00\x00\x07\x54\x6f\ -\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x20\x00\x54\x00\x61\x00\ -\x6b\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\ -\x53\x00\x70\x00\x75\x00\x72\x00\x3a\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x14\x4d\x65\x61\x73\x75\x72\x65\x73\x20\x70\x65\ -\x72\x20\x54\x72\x61\x63\x6b\x3a\x20\x07\x00\x00\x00\x07\x54\x6f\ -\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x36\x00\x4c\x00\xe4\x00\ -\x6e\x00\x67\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\ -\x53\x00\x74\x00\xfc\x00\x63\x00\x6b\x00\x65\x00\x73\x00\x20\x00\ -\x69\x00\x6e\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\ -\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x4f\x76\x65\x72\x61\ -\x6c\x6c\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\ -\x20\x73\x6f\x6e\x67\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\ -\x72\x01\x03\x00\x00\x00\x38\x00\x42\x00\x69\x00\x74\x00\x74\x00\ -\x65\x00\x20\x00\x69\x00\x6d\x00\x20\x00\x48\x00\x61\x00\x6e\x00\ -\x64\x00\x62\x00\x75\x00\x63\x00\x68\x00\x20\x00\x6e\x00\x61\x00\ -\x63\x00\x68\x00\x6c\x00\x65\x00\x73\x00\x65\x00\x6e\x00\x21\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x17\x50\x6c\x65\x61\x73\x65\x20\ -\x72\x65\x61\x64\x20\x74\x68\x65\x20\x6d\x61\x6e\x75\x61\x6c\x21\ -\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\ -\x00\xaa\x00\x53\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x2d\x00\x41\ -\x00\x6e\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x2e\x00\x20\x00\x30\ -\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\ -\x00\x2e\x00\x20\x00\x41\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\ -\x00\x20\x00\x72\x00\x68\x00\x79\x00\x74\x00\x68\x00\x6d\x00\x69\ -\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x47\x00\x72\x00\x75\ -\x00\x70\x00\x70\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\ -\x00\x65\x00\x6e\x00\x20\x00\x68\x00\x61\x00\x62\x00\x65\x00\x6e\ -\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x61\ -\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x45\ -\x00\x66\x00\x66\x00\x65\x00\x6b\x00\x74\x00\x21\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x4f\x53\x65\x74\x20\x74\x68\x65\x20\x73\x77\ -\x69\x6e\x67\x20\x66\x61\x63\x74\x6f\x72\x2e\x20\x30\x20\x69\x73\ -\x20\x6f\x66\x66\x2e\x20\x44\x69\x66\x66\x65\x72\x65\x6e\x74\x20\ -\x65\x66\x66\x65\x63\x74\x20\x66\x6f\x72\x20\x64\x69\x66\x66\x65\ -\x72\x65\x6e\x74\x20\x72\x68\x79\x74\x68\x6d\x2d\x67\x72\x6f\x75\ -\x70\x69\x6e\x67\x21\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\ -\x72\x01\x03\x00\x00\x00\x24\x00\x53\x00\x63\x00\x68\x00\x72\x00\ -\x69\x00\x74\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ -\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x3a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x12\x53\x74\x65\x70\x73\x20\x70\x65\x72\x20\x50\ -\x61\x74\x74\x65\x72\x6e\x3a\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\ -\x62\x61\x72\x01\x03\x00\x00\x00\xfa\x00\x44\x00\x61\x00\x73\x00\ -\x20\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x62\x00\x65\x00\ -\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x6e\x00\x21\x00\x20\x00\ -\x4e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\ -\x72\x00\x2c\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x61\x00\ -\x6c\x00\x6c\x00\x65\x00\x20\x00\x45\x00\x69\x00\x67\x00\x65\x00\ -\x6e\x00\x73\x00\x63\x00\x68\x00\x61\x00\x66\x00\x74\x00\x65\x00\ -\x6e\x00\x20\x00\x61\x00\x75\x00\xdf\x00\x65\x00\x72\x00\x20\x00\ -\x64\x00\x65\x00\x72\x00\x20\x00\x4d\x00\x75\x00\x73\x00\x69\x00\ -\x6b\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x62\x00\x73\x00\x74\x00\ -\x20\x00\x76\x00\x6f\x00\x6d\x00\x20\x00\x4f\x00\x72\x00\x69\x00\ -\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x72\x00\ -\x62\x00\x74\x00\x2e\x00\x20\x00\x49\x00\x73\x00\x74\x00\x20\x00\ -\x62\x00\x65\x00\x72\x00\x65\x00\x69\x00\x74\x00\x73\x00\x20\x00\ -\x69\x00\x6e\x00\x20\x00\x4a\x00\x41\x00\x43\x00\x4b\x00\x20\x00\ -\x76\x00\x65\x00\x72\x00\x62\x00\x75\x00\x6e\x00\x64\x00\x65\x00\ -\x6e\x00\x21\x08\x00\x00\x00\x00\x06\x00\x00\x00\x70\x55\x73\x65\ -\x20\x74\x68\x69\x73\x21\x20\x43\x72\x65\x61\x74\x65\x20\x61\x20\ -\x6e\x65\x77\x20\x74\x72\x61\x63\x6b\x20\x74\x68\x61\x74\x20\x69\ -\x6e\x68\x65\x72\x69\x74\x73\x20\x65\x76\x65\x72\x79\x74\x68\x69\ -\x6e\x67\x20\x62\x75\x74\x20\x74\x68\x65\x20\x63\x6f\x6e\x74\x65\ -\x6e\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6f\x72\x69\x67\ -\x69\x6e\x61\x6c\x2e\x20\x41\x6c\x72\x65\x61\x64\x79\x20\x6a\x61\ -\x63\x6b\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x21\x07\x00\x00\ -\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x28\x00\ -\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x46\x00\x61\x00\ -\x72\x00\x62\x00\x65\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\ -\x53\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x63\x68\x61\x6e\x67\x65\x20\x74\x72\x61\x63\x6b\x20\x63\x6f\ -\x6c\x6f\x72\x07\x00\x00\x00\x0a\x54\x72\x61\x63\x6b\x4c\x61\x62\ -\x65\x6c\x01\x03\x00\x00\x00\x66\x00\x6d\x00\x69\x00\x74\x00\x20\ -\x00\x64\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x75\x00\x73\ -\x00\x20\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\ -\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x7a\x00\x69\x00\x65\x00\x68\ -\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x53\x00\x70\ -\x00\x75\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\x7a\ -\x00\x75\x00\x6f\x00\x72\x00\x64\x00\x6e\x00\x65\x00\x6e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x1f\x67\x72\x61\x62\x20\x61\x6e\x64\ -\x20\x6d\x6f\x76\x65\x20\x74\x6f\x20\x72\x65\x6f\x72\x64\x65\x72\ -\x20\x74\x72\x61\x63\x6b\x73\x07\x00\x00\x00\x0a\x54\x72\x61\x63\ -\x6b\x4c\x61\x62\x65\x6c\x01\x03\x00\x00\x00\x2c\x00\x41\x00\x6c\ +\x6f\x72\x79\x01\x03\x00\x00\x00\x12\x00\x53\x00\x70\x00\x75\x00\ +\x72\x00\x66\x00\x61\x00\x72\x00\x62\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x54\x72\x61\x63\x6b\x20\x43\x6f\x6c\x6f\x72\ +\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\ +\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x2c\x00\x41\x00\x6c\ \x00\x6c\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\ \x00\x20\x00\x61\x00\x75\x00\x73\x00\x73\x00\x63\x00\x68\x00\x61\ \x00\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x10\x41\x6c\x6c\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x20\x4f\ -\x66\x66\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\x65\ -\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\x00\x2a\x00\x41\ -\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\ -\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x73\x00\x63\x00\x68\x00\x61\ -\x00\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0f\x41\x6c\x6c\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x20\x4f\ -\x6e\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\x65\x6c\ -\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\ -\x70\x00\x75\x00\x72\x00\x20\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\ -\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6c\x6f\ -\x6e\x65\x20\x74\x68\x69\x73\x20\x54\x72\x61\x63\x6b\x07\x00\x00\ -\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\x65\x6c\x43\x6f\x6e\x74\ -\x65\x78\x74\x01\x03\x00\x00\x00\x18\x00\x53\x00\x70\x00\x75\x00\ -\x72\x00\x20\x00\x6c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\ -\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x44\x65\x6c\x65\x74\ -\x65\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x54\x72\x61\x63\ -\x6b\x4c\x61\x62\x65\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\ -\x00\x00\x28\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x75\x00\ -\x73\x00\x77\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x75\x00\x6d\x00\ -\x64\x00\x72\x00\x65\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0f\x49\x6e\x76\x65\x72\x74\x20\x4d\x65\x61\x73\ -\x75\x72\x65\x73\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\ -\x62\x65\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\x00\x42\ -\x00\xdc\x00\x62\x00\x65\x00\x72\x00\x6e\x00\x69\x00\x6d\x00\x6d\ -\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x72\x00\x67\ -\x00\xe4\x00\x6e\x00\x7a\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\ -\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x20\x00\x76\x00\x6f\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x4d\x65\x72\x67\ -\x65\x2f\x43\x6f\x70\x79\x20\x4d\x65\x61\x73\x75\x72\x65\x2d\x53\ -\x74\x72\x75\x63\x74\x75\x72\x65\x20\x66\x72\x6f\x6d\x07\x00\x00\ -\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\x65\x6c\x43\x6f\x6e\x74\ -\x65\x78\x74\x01\x03\x00\x00\x00\x3c\x00\x45\x00\x72\x00\x73\x00\ -\x65\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\ -\x65\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x54\x00\ -\x61\x00\x6b\x00\x74\x00\x65\x00\x73\x00\x20\x00\x64\x00\x75\x00\ -\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\ -\x65\x70\x6c\x61\x63\x65\x20\x50\x61\x74\x74\x65\x72\x6e\x20\x77\ -\x69\x74\x68\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\ -\x65\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\x00\x28\x00\ -\x53\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x61\x00\x75\x00\ -\x66\x00\x20\x00\x4d\x00\x49\x00\x44\x00\x49\x00\x20\x00\x4b\x00\ -\x61\x00\x6e\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x14\x53\x65\x6e\x64\x20\x6f\x6e\x20\x4d\x49\x44\x49\x20\x43\x68\ -\x61\x6e\x6e\x65\x6c\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\ +\x00\x12\x54\x72\x61\x63\x6b\x20\x4d\x65\x61\x73\x75\x72\x65\x73\ +\x20\x4f\x66\x66\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\ +\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x2c\ +\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\ +\x00\x74\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x73\x00\x63\ +\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x20\x4d\x65\x61\x73\ +\x75\x72\x65\x73\x20\x4f\x6e\x07\x00\x00\x00\x11\x4e\x4f\x4f\x50\ +\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\x79\x01\x03\x00\ +\x00\x00\x1c\x00\x53\x00\x70\x00\x75\x00\x72\x00\x20\x00\x4d\x00\ +\x69\x00\x64\x00\x69\x00\x6b\x00\x61\x00\x6e\x00\x61\x00\x6c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x54\x72\x61\x63\x6b\x20\x4d\ +\x69\x64\x69\x20\x43\x68\x61\x6e\x6e\x65\x6c\x07\x00\x00\x00\x11\ +\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\ +\x79\x01\x03\x00\x00\x00\x10\x00\x53\x00\x70\x00\x75\x00\x72\x00\ +\x6e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x54\x72\x61\x63\x6b\x20\x4e\x61\x6d\x65\x07\x00\x00\x00\x11\ +\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\x74\x6f\x72\ +\x79\x01\x03\x00\x00\x00\x2e\x00\x54\x00\x6f\x00\x6e\x00\x6c\x00\ +\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x72\x00\ +\x61\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\ +\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\ +\x72\x61\x6e\x73\x70\x6f\x73\x65\x20\x53\x63\x61\x6c\x65\x07\x00\ +\x00\x00\x11\x4e\x4f\x4f\x50\x65\x6e\x67\x69\x6e\x65\x48\x69\x73\ +\x74\x6f\x72\x79\x01\x03\x00\x00\x00\x3a\x00\x41\x00\x6e\x00\x7a\ +\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x20\x00\x53\x00\x63\x00\x68\x00\x6c\x00\x65\x00\x69\ +\x00\x66\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x4e\x75\ +\x6d\x62\x65\x72\x20\x6f\x66\x20\x6d\x65\x61\x73\x75\x72\x65\x73\ +\x20\x69\x6e\x20\x74\x68\x65\x20\x6c\x6f\x6f\x70\x07\x00\x00\x00\ +\x10\x50\x6c\x61\x79\x62\x61\x63\x6b\x43\x6f\x6e\x74\x72\x6f\x6c\ +\x73\x01\x03\x00\x00\x00\x32\x00\x5b\x00\x50\x00\x6f\x00\x73\x00\ +\x31\x00\x5d\x00\x20\x00\x53\x00\x70\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x41\x00\ +\x6e\x00\x66\x00\x61\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x5b\x48\x6f\x6d\x65\x5d\x20\x4a\x75\x6d\x70\x20\x74\ +\x6f\x20\x53\x74\x61\x72\x74\x07\x00\x00\x00\x10\x50\x6c\x61\x79\ +\x62\x61\x63\x6b\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\ +\x00\x4c\x00\x5b\x00\x4c\x00\x5d\x00\x20\x00\x41\x00\x6b\x00\x74\ +\x00\x75\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x54\ +\x00\x61\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x53\ +\x00\x63\x00\x68\x00\x6c\x00\x65\x00\x69\x00\x66\x00\x65\x00\x20\ +\x00\x73\x00\x70\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x18\x5b\x4c\x5d\x20\x4c\x6f\x6f\x70\ +\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x4d\x65\x61\x73\x75\x72\x65\ +\x07\x00\x00\x00\x10\x50\x6c\x61\x79\x62\x61\x63\x6b\x43\x6f\x6e\ +\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x30\x00\x5b\x00\x4c\x00\ +\x65\x00\x65\x00\x72\x00\x74\x00\x61\x00\x73\x00\x74\x00\x65\x00\ +\x5d\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x2f\x00\ +\x20\x00\x50\x00\x61\x00\x75\x00\x73\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x14\x5b\x53\x70\x61\x63\x65\x5d\x20\x50\x6c\x61\ +\x79\x20\x2f\x20\x50\x61\x75\x73\x65\x07\x00\x00\x00\x10\x50\x6c\ +\x61\x79\x62\x61\x63\x6b\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\ +\x00\x00\x00\x0a\x00\x42\x00\x6c\x00\x75\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x42\x6c\x75\x65\x73\x07\x00\x00\ +\x00\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x16\x00\x43\x00\ +\x68\x00\x72\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x73\x00\ +\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x43\x68\x72\ +\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\ +\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x6f\x00\x72\x00\x69\x00\x73\ +\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x44\x6f\ +\x72\x69\x61\x6e\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\x03\ +\x00\x00\x00\x10\x00\x44\x00\x72\x00\x75\x00\x6d\x00\x73\x00\x20\ +\x00\x47\x00\x4d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x72\ +\x75\x6d\x73\x20\x47\x4d\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\ +\x01\x03\x00\x00\x00\x10\x00\x45\x00\x6e\x00\x67\x00\x6c\x00\x69\ +\x00\x73\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x45\x6e\x67\x6c\x69\x73\x68\x07\x00\x00\x00\x05\x53\x63\x61\x6c\ +\x65\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x65\x00\x75\x00\x74\x00\ +\x73\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x47\ +\x65\x72\x6d\x61\x6e\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\ +\x03\x00\x00\x00\x12\x00\x48\x00\x6f\x00\x6c\x00\x6c\x00\x79\x00\ +\x77\x00\x6f\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x48\x6f\x6c\x6c\x79\x77\x6f\x6f\x64\x07\x00\x00\x00\x05\x53\ +\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x10\x00\x4c\x00\x69\x00\x6c\ +\x00\x79\x00\x70\x00\x6f\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x4c\x69\x6c\x79\x70\x6f\x6e\x64\x07\x00\x00\x00\ +\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x10\x00\x4c\x00\x6f\ +\x00\x6b\x00\x72\x00\x69\x00\x73\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x4c\x6f\x63\x72\x69\x61\x6e\x07\x00\x00\ +\x00\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x0e\x00\x4c\x00\ +\x79\x00\x64\x00\x69\x00\x73\x00\x63\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x4c\x79\x64\x69\x61\x6e\x07\x00\x00\x00\x05\ +\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x06\x00\x44\x00\x75\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x4d\x61\x6a\x6f\x72\ +\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x08\ +\x00\x4d\x00\x6f\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x4d\x69\x6e\x6f\x72\x07\x00\x00\x00\x05\x53\x63\x61\x6c\ +\x65\x01\x03\x00\x00\x00\x16\x00\x4d\x00\x69\x00\x78\x00\x6f\x00\ +\x6c\x00\x79\x00\x64\x00\x69\x00\x73\x00\x63\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x4d\x69\x78\x6f\x6c\x79\x64\x69\x61\ +\x6e\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\ +\x12\x00\x50\x00\x68\x00\x72\x00\x79\x00\x67\x00\x69\x00\x73\x00\ +\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x68\x72\ +\x79\x67\x69\x61\x6e\x07\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x01\ +\x03\x00\x00\x00\x66\x00\x53\x00\x65\x00\x74\x00\x7a\x00\x65\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x72\x00\ +\x61\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x73\x00\x65\x00\x72\x00\x20\x00\x54\x00\x61\x00\x6b\x00\ +\x74\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\ +\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1e\x43\x6c\x65\x61\x72\x20\x61\x6c\x6c\x20\x67\ +\x72\x6f\x75\x70\x20\x74\x72\x61\x6e\x73\x70\x6f\x73\x69\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x2e\x00\x4c\x00\xf6\x00\ +\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x73\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x77\x68\x6f\x6c\x65\x20\ +\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x52\x00\x56\x00\ +\x65\x00\x72\x00\x64\x00\x6f\x00\x70\x00\x70\x00\x6c\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\x54\x00\ +\x61\x00\x6b\x00\x74\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\ +\x65\x00\x20\x00\x69\x00\x6e\x00\x6b\x00\x6c\x00\x2e\x00\x20\x00\ +\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\x75\x70\x6c\x69\x63\x61\ +\x74\x65\x20\x77\x68\x6f\x6c\x65\x20\x67\x72\x6f\x75\x70\x20\x69\ +\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x6d\x65\x61\x73\x75\x72\x65\ +\x73\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x01\x03\x00\x00\x00\x50\x00\x54\x00\x61\x00\x75\x00\ +\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x47\x00\x72\x00\x75\x00\ +\x70\x00\x70\x00\x65\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\ +\x72\x00\x65\x00\x63\x00\x68\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x4e\x00\x61\x00\x63\x00\x68\x00\x62\x00\x61\x00\x72\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x22\x45\x78\x63\x68\x61\x6e\x67\x65\x20\x67\x72\x6f\x75\ +\x70\x20\x77\x69\x74\x68\x20\x72\x69\x67\x68\x74\x20\x6e\x65\x69\ +\x67\x62\x6f\x75\x72\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x48\x00\x4c\x00\ +\x65\x00\x65\x00\x72\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\ +\x74\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\ +\x76\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\ +\x65\x00\x72\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x66\x00\xfc\x00\ +\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x49\ +\x6e\x73\x65\x72\x74\x20\x65\x6d\x70\x74\x79\x20\x67\x72\x6f\x75\ +\x70\x20\x62\x65\x66\x6f\x72\x65\x20\x74\x68\x69\x73\x20\x6f\x6e\ +\x65\x07\x00\x00\x00\x0d\x53\x6f\x6e\x67\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x01\x03\x00\x00\x00\x0c\x00\x41\x00\x63\x00\x68\x00\ +\x74\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x45\ +\x69\x67\x74\x68\x07\x00\x00\x00\x0d\x54\x69\x6d\x65\x53\x69\x67\ +\x6e\x61\x74\x75\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x48\x00\x61\ +\x00\x6c\x00\x62\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x48\x61\x6c\x66\x07\x00\x00\x00\x0d\x54\x69\x6d\x65\x53\x69\x67\ +\x6e\x61\x74\x75\x72\x65\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x69\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x51\x75\x61\x72\x74\x65\x72\x07\x00\x00\x00\x0d\ +\x54\x69\x6d\x65\x53\x69\x67\x6e\x61\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\x16\x00\x53\x00\x65\x00\x63\x00\x68\x00\x7a\x00\x65\x00\ +\x68\x00\x6e\x00\x74\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x53\x69\x78\x74\x65\x65\x6e\x74\x68\x07\x00\x00\x00\ +\x0d\x54\x69\x6d\x65\x53\x69\x67\x6e\x61\x74\x75\x72\x65\x01\x03\ +\x00\x00\x00\x0a\x00\x47\x00\x61\x00\x6e\x00\x7a\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x57\x68\x6f\x6c\x65\x07\x00\x00\ +\x00\x0d\x54\x69\x6d\x65\x53\x69\x67\x6e\x61\x74\x75\x72\x65\x01\ +\x03\x00\x00\x00\xa4\x00\x4b\x00\x6c\x00\x69\x00\x63\x00\x6b\x00\ +\x65\x00\x6e\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x20\x00\x57\x00\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\ +\x67\x00\x61\x00\x62\x00\x65\x00\x70\x00\x6f\x00\x73\x00\x69\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\x00\ +\xe4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x6e\x00\x2e\x00\x20\x00\ +\x4d\x00\x61\x00\x75\x00\x73\x00\x72\x00\x61\x00\x64\x00\x20\x00\ +\x75\x00\x6d\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\ +\x61\x00\x6b\x00\x74\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\ +\x65\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\x00\xe4\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x52\x43\x6c\x69\x63\x6b\x20\x74\x6f\x20\x73\x65\x74\x20\ +\x70\x6c\x61\x79\x62\x61\x63\x6b\x20\x70\x6f\x73\x69\x74\x69\x6f\ +\x6e\x2e\x20\x53\x63\x72\x6f\x6c\x6c\x20\x77\x69\x74\x68\x20\x6d\ +\x6f\x75\x73\x65\x77\x68\x65\x65\x6c\x20\x74\x6f\x20\x61\x64\x6a\ +\x75\x73\x74\x20\x6d\x65\x61\x73\x75\x72\x65\x20\x67\x72\x6f\x75\ +\x70\x69\x6e\x67\x2e\x07\x00\x00\x00\x08\x54\x69\x6d\x65\x6c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x24\x00\x20\x00\x67\x00\x72\x00\x75\ +\x00\x70\x00\x70\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x6a\x00\x65\x00\x3a\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x20\x69\x6e\x20\x67\x72\x6f\x75\x70\x73\ +\x20\x6f\x66\x3a\x20\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\ +\x72\x01\x03\x00\x00\x00\x3a\x00\x20\x00\x75\x00\x6e\x00\x64\x00\ +\x20\x00\x6a\x00\x65\x00\x64\x00\x65\x00\x20\x00\x47\x00\x72\x00\ +\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x65\x00\x72\x00\x67\x00\ +\x69\x00\x62\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x20\x73\x6f\x20\x74\ +\x68\x61\x74\x20\x65\x61\x63\x68\x20\x67\x72\x6f\x75\x70\x20\x70\ +\x72\x6f\x64\x75\x63\x65\x73\x20\x61\x3a\x07\x00\x00\x00\x07\x54\ +\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x12\x00\x4e\x00\x65\ +\x00\x75\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x54\x72\x61\x63\ +\x6b\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\ +\x00\x00\xb0\x00\x45\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6e\x00\ +\x65\x00\x75\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\x65\x00\ +\x72\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\x00\x72\x00\x2c\x00\ +\x20\x00\x62\x00\x65\x00\x69\x00\x20\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x6d\x00\x61\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x63\x00\ +\x68\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x48\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x49\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x4a\x00\x41\x00\ +\x43\x00\x4b\x00\x20\x00\x76\x00\x65\x00\x72\x00\x62\x00\x69\x00\ +\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\x73\x00\ +\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x50\x41\x64\x64\ +\x20\x61\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x20\x65\x6d\x70\x74\ +\x79\x20\x74\x72\x61\x63\x6b\x20\x74\x68\x61\x74\x20\x6e\x65\x65\ +\x64\x73\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x6e\x65\x63\x74\ +\x65\x64\x20\x74\x6f\x20\x61\x6e\x20\x69\x6e\x73\x74\x72\x75\x6d\ +\x65\x6e\x74\x20\x6d\x61\x6e\x75\x61\x6c\x6c\x79\x2e\x07\x00\x00\ +\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x16\x00\ +\x42\x00\x50\x00\x4d\x00\x2f\x00\x54\x00\x65\x00\x6d\x00\x70\x00\ +\x6f\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\ +\x50\x4d\x2f\x54\x65\x6d\x70\x6f\x3a\x20\x07\x00\x00\x00\x07\x54\ +\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x2c\x00\x4b\x00\x6c\ +\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\ +\x00\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x20\ +\x00\x53\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x43\x6c\x6f\x6e\x65\x20\x53\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\ +\x61\x72\x01\x03\x00\x00\x00\x76\x00\x41\x00\x75\x00\x73\x00\x3a\ +\x00\x20\x00\x4a\x00\x41\x00\x43\x00\x4b\x00\x20\x00\x54\x00\x72\ +\x00\x61\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\ +\x00\x53\x00\x6c\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x20\x00\x41\ +\x00\x6e\x00\x3a\x00\x20\x00\x4a\x00\x41\x00\x43\x00\x4b\x00\x20\ +\x00\x4d\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x28\ +\x00\x65\x00\x69\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x73\x00\x20\ +\x00\x54\x00\x65\x00\x6d\x00\x70\x00\x6f\x00\x29\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x40\x44\x65\x61\x63\x74\x69\x76\x61\ +\x74\x65\x20\x74\x6f\x20\x62\x65\x63\x63\x6f\x6d\x65\x20\x4a\x41\ +\x43\x4b\x20\x54\x72\x61\x6e\x73\x70\x6f\x72\x74\x20\x53\x6c\x61\ +\x76\x65\x2e\x20\x41\x63\x74\x69\x76\x61\x74\x65\x20\x66\x6f\x72\ +\x20\x4d\x61\x73\x74\x65\x72\x2e\x07\x00\x00\x00\x07\x54\x6f\x6f\ +\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x56\x00\x57\x00\x65\x00\x6c\ +\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\ +\x00\x65\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x74\x00\x20\x00\x72\ +\x00\x65\x00\x70\x00\x72\x00\xe4\x00\x73\x00\x65\x00\x6e\x00\x74\ +\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x20\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x48\x6f\x77\x20\x6c\x6f\ +\x6e\x67\x20\x69\x73\x20\x65\x61\x63\x68\x20\x6d\x61\x69\x6e\x20\ +\x73\x74\x65\x70\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\ +\x01\x03\x00\x00\x00\x78\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x4d\x00\x75\x00\x73\ +\x00\x74\x00\x65\x00\x72\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x28\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x65\x00\x20\x00\x48\x00\xe4\x00\x6c\x00\x66\x00\x74\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x50\x00\x72\x00\x6f\ +\x00\x67\x00\x72\x00\x61\x00\x6d\x00\x6d\x00\x73\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x32\x4c\x65\x6e\x67\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x65\x20\x70\x61\x74\x74\x65\x72\x6e\x20\x28\x62\ +\x6f\x74\x74\x6f\x6d\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x70\x72\x6f\x67\x72\x61\x6d\x29\x07\x00\x00\x00\x07\x54\ +\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x20\x00\x54\x00\x61\ +\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\ +\x00\x53\x00\x70\x00\x75\x00\x72\x00\x3a\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x14\x4d\x65\x61\x73\x75\x72\x65\x73\x20\x70\ +\x65\x72\x20\x54\x72\x61\x63\x6b\x3a\x20\x07\x00\x00\x00\x07\x54\ +\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x36\x00\x4c\x00\xe4\ +\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\ +\x00\x53\x00\x74\x00\xfc\x00\x63\x00\x6b\x00\x65\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x4f\x76\x65\x72\ +\x61\x6c\x6c\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x73\x6f\x6e\x67\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\ +\x61\x72\x01\x03\x00\x00\x00\x38\x00\x42\x00\x69\x00\x74\x00\x74\ +\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x20\x00\x48\x00\x61\x00\x6e\ +\x00\x64\x00\x62\x00\x75\x00\x63\x00\x68\x00\x20\x00\x6e\x00\x61\ +\x00\x63\x00\x68\x00\x6c\x00\x65\x00\x73\x00\x65\x00\x6e\x00\x21\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x50\x6c\x65\x61\x73\x65\ +\x20\x72\x65\x61\x64\x20\x74\x68\x65\x20\x6d\x61\x6e\x75\x61\x6c\ +\x21\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\ +\x00\x00\xaa\x00\x53\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x2d\x00\ +\x41\x00\x6e\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x2e\x00\x20\x00\ +\x30\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x61\x00\x75\x00\ +\x73\x00\x2e\x00\x20\x00\x41\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x65\x00\x20\x00\x72\x00\x68\x00\x79\x00\x74\x00\x68\x00\x6d\x00\ +\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x47\x00\x72\x00\ +\x75\x00\x70\x00\x70\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\ +\x67\x00\x65\x00\x6e\x00\x20\x00\x68\x00\x61\x00\x62\x00\x65\x00\ +\x6e\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\ +\x45\x00\x66\x00\x66\x00\x65\x00\x6b\x00\x74\x00\x21\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4f\x53\x65\x74\x20\x74\x68\x65\x20\x73\ +\x77\x69\x6e\x67\x20\x66\x61\x63\x74\x6f\x72\x2e\x20\x30\x20\x69\ +\x73\x20\x6f\x66\x66\x2e\x20\x44\x69\x66\x66\x65\x72\x65\x6e\x74\ +\x20\x65\x66\x66\x65\x63\x74\x20\x66\x6f\x72\x20\x64\x69\x66\x66\ +\x65\x72\x65\x6e\x74\x20\x72\x68\x79\x74\x68\x6d\x2d\x67\x72\x6f\ +\x75\x70\x69\x6e\x67\x21\x07\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\ +\x61\x72\x01\x03\x00\x00\x00\x24\x00\x53\x00\x63\x00\x68\x00\x72\ +\x00\x69\x00\x74\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\ +\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x3a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x53\x74\x65\x70\x73\x20\x70\x65\x72\x20\ +\x50\x61\x74\x74\x65\x72\x6e\x3a\x07\x00\x00\x00\x07\x54\x6f\x6f\ +\x6c\x62\x61\x72\x01\x03\x00\x00\x00\xfa\x00\x44\x00\x61\x00\x73\ +\x00\x20\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x62\x00\x65\ +\x00\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x6e\x00\x21\x00\x20\ +\x00\x4e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x53\x00\x70\x00\x75\ +\x00\x72\x00\x2c\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x61\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x45\x00\x69\x00\x67\x00\x65\ +\x00\x6e\x00\x73\x00\x63\x00\x68\x00\x61\x00\x66\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x61\x00\x75\x00\xdf\x00\x65\x00\x72\x00\x20\ +\x00\x64\x00\x65\x00\x72\x00\x20\x00\x4d\x00\x75\x00\x73\x00\x69\ +\x00\x6b\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x62\x00\x73\x00\x74\ +\x00\x20\x00\x76\x00\x6f\x00\x6d\x00\x20\x00\x4f\x00\x72\x00\x69\ +\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x72\ +\x00\x62\x00\x74\x00\x2e\x00\x20\x00\x49\x00\x73\x00\x74\x00\x20\ +\x00\x62\x00\x65\x00\x72\x00\x65\x00\x69\x00\x74\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x4a\x00\x41\x00\x43\x00\x4b\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x62\x00\x75\x00\x6e\x00\x64\x00\x65\ +\x00\x6e\x00\x21\x08\x00\x00\x00\x00\x06\x00\x00\x00\x70\x55\x73\ +\x65\x20\x74\x68\x69\x73\x21\x20\x43\x72\x65\x61\x74\x65\x20\x61\ +\x20\x6e\x65\x77\x20\x74\x72\x61\x63\x6b\x20\x74\x68\x61\x74\x20\ +\x69\x6e\x68\x65\x72\x69\x74\x73\x20\x65\x76\x65\x72\x79\x74\x68\ +\x69\x6e\x67\x20\x62\x75\x74\x20\x74\x68\x65\x20\x63\x6f\x6e\x74\ +\x65\x6e\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6f\x72\x69\ +\x67\x69\x6e\x61\x6c\x2e\x20\x41\x6c\x72\x65\x61\x64\x79\x20\x6a\ +\x61\x63\x6b\x20\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x21\x07\x00\ +\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x01\x03\x00\x00\x00\x28\ +\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x46\x00\x61\ +\x00\x72\x00\x62\x00\x65\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x53\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x63\x68\x61\x6e\x67\x65\x20\x74\x72\x61\x63\x6b\x20\x63\ +\x6f\x6c\x6f\x72\x07\x00\x00\x00\x0a\x54\x72\x61\x63\x6b\x4c\x61\ +\x62\x65\x6c\x01\x03\x00\x00\x00\x66\x00\x6d\x00\x69\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x75\x00\ +\x73\x00\x20\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\ +\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x7a\x00\x69\x00\x65\x00\ +\x68\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x53\x00\ +\x70\x00\x75\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\ +\x7a\x00\x75\x00\x6f\x00\x72\x00\x64\x00\x6e\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x67\x72\x61\x62\x20\x61\x6e\ +\x64\x20\x6d\x6f\x76\x65\x20\x74\x6f\x20\x72\x65\x6f\x72\x64\x65\ +\x72\x20\x74\x72\x61\x63\x6b\x73\x07\x00\x00\x00\x0a\x54\x72\x61\ +\x63\x6b\x4c\x61\x62\x65\x6c\x01\x03\x00\x00\x00\x2c\x00\x41\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\ +\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\x73\x00\x63\x00\x68\x00\ +\x61\x00\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x41\x6c\x6c\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x20\ +\x4f\x66\x66\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\ +\x65\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\x00\x2a\x00\ +\x41\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x61\x00\x6b\x00\ +\x74\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x73\x00\x63\x00\x68\x00\ +\x61\x00\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x41\x6c\x6c\x20\x4d\x65\x61\x73\x75\x72\x65\x73\x20\ +\x4f\x6e\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\x65\ +\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\x00\x16\x00\x53\ +\x00\x70\x00\x75\x00\x72\x00\x20\x00\x6b\x00\x6c\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6c\ +\x6f\x6e\x65\x20\x74\x68\x69\x73\x20\x54\x72\x61\x63\x6b\x07\x00\ +\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\x65\x6c\x43\x6f\x6e\ +\x74\x65\x78\x74\x01\x03\x00\x00\x00\x18\x00\x53\x00\x70\x00\x75\ +\x00\x72\x00\x20\x00\x6c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x44\x65\x6c\x65\ +\x74\x65\x20\x54\x72\x61\x63\x6b\x07\x00\x00\x00\x11\x54\x72\x61\ +\x63\x6b\x4c\x61\x62\x65\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\ +\x00\x00\x00\x28\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x75\ +\x00\x73\x00\x77\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x75\x00\x6d\ +\x00\x64\x00\x72\x00\x65\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x49\x6e\x76\x65\x72\x74\x20\x4d\x65\x61\ +\x73\x75\x72\x65\x73\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\ \x61\x62\x65\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\x00\ -\x0c\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x06\x20\x4e\x6f\x74\x65\x73\x07\x00\x00\ -\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\ -\x6f\x6c\x73\x01\x03\x00\x00\x00\x10\x00\x2b\x00\x48\x00\x61\x00\ -\x6c\x00\x62\x00\x74\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0a\x2b\x48\x61\x6c\x66\x20\x54\x6f\x6e\x65\x07\x00\x00\ -\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\ -\x6f\x6c\x73\x01\x03\x00\x00\x00\x0e\x00\x2b\x00\x4f\x00\x6b\x00\ -\x74\x00\x61\x00\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x07\x2b\x4f\x63\x74\x61\x76\x65\x07\x00\x00\x00\x11\x54\x72\x61\ -\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\ -\x00\x00\x00\x10\x00\x2d\x00\x48\x00\x61\x00\x6c\x00\x62\x00\x74\ -\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x2d\x48\ -\x61\x6c\x66\x20\x54\x6f\x6e\x65\x07\x00\x00\x00\x11\x54\x72\x61\ -\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\ -\x00\x00\x00\x0e\x00\x2d\x00\x4f\x00\x6b\x00\x74\x00\x61\x00\x76\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x2d\x4f\x63\x74\ -\x61\x76\x65\x07\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\ -\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x5a\x00\ -\x41\x00\x6e\x00\x7a\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x64\x00\ -\x65\x00\x72\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x63\x00\ -\x68\x00\x69\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x65\x00\x6e\x00\ -\x20\x00\x54\x00\x6f\x00\x6e\x00\x68\x00\xf6\x00\x68\x00\x65\x00\ -\x6e\x00\x2d\x00\x53\x00\x74\x00\x75\x00\x66\x00\x65\x00\x6e\x00\ -\x20\x00\x61\x00\x75\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x3e\x43\x68\x6f\x6f\x73\x65\x20\x68\x6f\x77\x20\x6d\x61\ -\x6e\x79\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x6e\x6f\x74\ -\x65\x73\x20\x64\x6f\x65\x73\x20\x74\x68\x69\x73\x20\x70\x61\x74\ -\x74\x65\x72\x6e\x20\x73\x68\x6f\x75\x6c\x64\x20\x68\x61\x76\x65\ -\x2e\x07\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\ -\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x26\x00\x42\x00\ -\x65\x00\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x4e\x00\ -\x6f\x00\x74\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\ -\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x53\x65\x74\ -\x20\x4e\x6f\x74\x65\x6e\x61\x6d\x65\x73\x20\x74\x6f\x3a\x07\x00\ +\x42\x00\xdc\x00\x62\x00\x65\x00\x72\x00\x6e\x00\x69\x00\x6d\x00\ +\x6d\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x72\x00\ +\x67\x00\xe4\x00\x6e\x00\x7a\x00\x65\x00\x20\x00\x53\x00\x74\x00\ +\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x20\x00\x76\x00\ +\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x4d\x65\x72\ +\x67\x65\x2f\x43\x6f\x70\x79\x20\x4d\x65\x61\x73\x75\x72\x65\x2d\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x66\x72\x6f\x6d\x07\x00\ +\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\x62\x65\x6c\x43\x6f\x6e\ +\x74\x65\x78\x74\x01\x03\x00\x00\x00\x3c\x00\x45\x00\x72\x00\x73\ +\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x4e\x00\x6f\x00\x74\ +\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x54\ +\x00\x61\x00\x6b\x00\x74\x00\x65\x00\x73\x00\x20\x00\x64\x00\x75\ +\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x52\x65\x70\x6c\x61\x63\x65\x20\x50\x61\x74\x74\x65\x72\x6e\x20\ +\x77\x69\x74\x68\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\x4c\x61\ +\x62\x65\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\x00\x28\ +\x00\x53\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x61\x00\x75\ +\x00\x66\x00\x20\x00\x4d\x00\x49\x00\x44\x00\x49\x00\x20\x00\x4b\ +\x00\x61\x00\x6e\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x53\x65\x6e\x64\x20\x6f\x6e\x20\x4d\x49\x44\x49\x20\x43\ +\x68\x61\x6e\x6e\x65\x6c\x07\x00\x00\x00\x11\x54\x72\x61\x63\x6b\ +\x4c\x61\x62\x65\x6c\x43\x6f\x6e\x74\x65\x78\x74\x01\x03\x00\x00\ +\x00\x0c\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x20\x4e\x6f\x74\x65\x73\x07\x00\ \x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\ -\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x24\x00\x42\x00\x65\x00\x6e\ -\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\ -\x00\x6c\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x3a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x74\x20\x53\x63\x61\x6c\ -\x65\x20\x74\x6f\x3a\x07\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\ -\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\ -\xca\x00\xc4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x20\x00\ -\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x6c\x00\ -\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\ -\x73\x00\x20\x00\x4d\x00\x75\x00\x73\x00\x74\x00\x65\x00\x72\x00\ -\x73\x00\x20\x00\x61\x00\x75\x00\x66\x00\x20\x00\x64\x00\x69\x00\ -\x65\x00\x20\x00\x41\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\ -\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x52\x00\ -\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x7a\x00\x74\x00\ -\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x64\x00\ -\x69\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ -\x73\x00\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\x69\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x4d\x00\x75\x00\ -\x73\x00\x74\x00\x65\x00\x72\x00\x73\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x42\x54\x61\x6b\x65\x20\x74\x68\x65\x20\x62\x6f\ -\x74\x74\x6f\x6d\x20\x6e\x6f\x74\x65\x20\x61\x6e\x64\x20\x62\x75\ -\x69\x6c\x64\x20\x61\x20\x70\x72\x65\x64\x65\x66\x69\x6e\x65\x64\ -\x20\x73\x63\x61\x6c\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\x20\x75\ -\x70\x77\x61\x72\x64\x73\x2e\x07\x00\x00\x00\x11\x54\x72\x61\x6e\ -\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\ -\x00\x00\x84\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x70\x00\ -\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x65\x00\x20\x00\x64\x00\ -\x69\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x6c\x00\x65\x00\ -\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ -\x65\x00\x6e\x00\x20\x00\x48\x00\x61\x00\x6c\x00\x62\x00\x74\x00\ -\x6f\x00\x6e\x00\x20\x00\x61\x00\x62\x00\x77\x00\xe4\x00\x72\x00\ -\x74\x00\x73\x00\x20\x00\x28\x00\x2d\x00\x31\x00\x20\x00\x4d\x00\ -\x49\x00\x44\x00\x49\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x68\x00\ -\xf6\x00\x68\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x39\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x20\x74\x68\x65\x20\x77\ -\x68\x6f\x6c\x65\x20\x73\x63\x61\x6c\x65\x20\x64\x6f\x77\x6e\x20\ -\x61\x20\x68\x61\x6c\x66\x20\x74\x6f\x6e\x65\x20\x28\x2d\x31\x20\ -\x6d\x69\x64\x69\x20\x6e\x6f\x74\x65\x29\x07\x00\x00\x00\x11\x54\ -\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\ -\x01\x03\x00\x00\x00\x82\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\ -\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x65\x00\x20\ +\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x10\x00\x2b\x00\x48\x00\x61\ +\x00\x6c\x00\x62\x00\x74\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x2b\x48\x61\x6c\x66\x20\x54\x6f\x6e\x65\x07\x00\ +\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\ +\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x0e\x00\x2b\x00\x4f\x00\x6b\ +\x00\x74\x00\x61\x00\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x2b\x4f\x63\x74\x61\x76\x65\x07\x00\x00\x00\x11\x54\x72\ +\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\ +\x03\x00\x00\x00\x10\x00\x2d\x00\x48\x00\x61\x00\x6c\x00\x62\x00\ +\x74\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x2d\ +\x48\x61\x6c\x66\x20\x54\x6f\x6e\x65\x07\x00\x00\x00\x11\x54\x72\ +\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\ +\x03\x00\x00\x00\x0e\x00\x2d\x00\x4f\x00\x6b\x00\x74\x00\x61\x00\ +\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x2d\x4f\x63\ +\x74\x61\x76\x65\x07\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\ +\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x5a\ +\x00\x41\x00\x6e\x00\x7a\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x64\ +\x00\x65\x00\x72\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x63\ +\x00\x68\x00\x69\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x65\x00\x6e\ +\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x68\x00\xf6\x00\x68\x00\x65\ +\x00\x6e\x00\x2d\x00\x53\x00\x74\x00\x75\x00\x66\x00\x65\x00\x6e\ +\x00\x20\x00\x61\x00\x75\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x3e\x43\x68\x6f\x6f\x73\x65\x20\x68\x6f\x77\x20\x6d\ +\x61\x6e\x79\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x6e\x6f\ +\x74\x65\x73\x20\x64\x6f\x65\x73\x20\x74\x68\x69\x73\x20\x70\x61\ +\x74\x74\x65\x72\x6e\x20\x73\x68\x6f\x75\x6c\x64\x20\x68\x61\x76\ +\x65\x2e\x07\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\ +\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x26\x00\x42\ +\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x6d\x00\x65\ +\x00\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x53\x65\ +\x74\x20\x4e\x6f\x74\x65\x6e\x61\x6d\x65\x73\x20\x74\x6f\x3a\x07\ +\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\ +\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x24\x00\x42\x00\x65\x00\ +\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x54\x00\x6f\x00\ +\x6e\x00\x6c\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x74\x20\x53\x63\x61\ +\x6c\x65\x20\x74\x6f\x3a\x07\x00\x00\x00\x11\x54\x72\x61\x6e\x73\ +\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\ +\x00\xca\x00\xc4\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x20\ \x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x6c\ -\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x69\ -\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x6b\x00\x74\x00\x61\x00\x76\ -\x00\x65\x00\x20\x00\x61\x00\x62\x00\x77\x00\xe4\x00\x72\x00\x74\ -\x00\x73\x00\x20\x00\x28\x00\x2d\x00\x31\x00\x32\x00\x20\x00\x4d\ +\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x73\x00\x20\x00\x4d\x00\x75\x00\x73\x00\x74\x00\x65\x00\x72\ +\x00\x73\x00\x20\x00\x61\x00\x75\x00\x66\x00\x20\x00\x64\x00\x69\ +\x00\x65\x00\x20\x00\x41\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\ +\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x52\ +\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x7a\x00\x74\ +\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x73\x00\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\x69\x00\x68\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x4d\x00\x75\ +\x00\x73\x00\x74\x00\x65\x00\x72\x00\x73\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x42\x54\x61\x6b\x65\x20\x74\x68\x65\x20\x62\ +\x6f\x74\x74\x6f\x6d\x20\x6e\x6f\x74\x65\x20\x61\x6e\x64\x20\x62\ +\x75\x69\x6c\x64\x20\x61\x20\x70\x72\x65\x64\x65\x66\x69\x6e\x65\ +\x64\x20\x73\x63\x61\x6c\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\x20\ +\x75\x70\x77\x61\x72\x64\x73\x2e\x07\x00\x00\x00\x11\x54\x72\x61\ +\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\ +\x00\x00\x00\x84\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x70\ +\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x65\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x6c\x00\x65\ +\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x65\x00\x6e\x00\x20\x00\x48\x00\x61\x00\x6c\x00\x62\x00\x74\ +\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x62\x00\x77\x00\xe4\x00\x72\ +\x00\x74\x00\x73\x00\x20\x00\x28\x00\x2d\x00\x31\x00\x20\x00\x4d\ \x00\x49\x00\x44\x00\x49\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\x68\ \x00\xf6\x00\x68\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x39\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x20\x74\x68\x65\x20\ \x77\x68\x6f\x6c\x65\x20\x73\x63\x61\x6c\x65\x20\x64\x6f\x77\x6e\ -\x20\x61\x6e\x20\x6f\x63\x74\x61\x76\x65\x20\x28\x2d\x31\x32\x20\ -\x6d\x69\x64\x69\x20\x6e\x6f\x74\x65\x73\x29\x07\x00\x00\x00\x11\ +\x20\x61\x20\x68\x61\x6c\x66\x20\x74\x6f\x6e\x65\x20\x28\x2d\x31\ +\x20\x6d\x69\x64\x69\x20\x6e\x6f\x74\x65\x29\x07\x00\x00\x00\x11\ \x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\x6c\ -\x73\x01\x03\x00\x00\x00\x86\x00\x54\x00\x72\x00\x61\x00\x6e\x00\ +\x73\x01\x03\x00\x00\x00\x82\x00\x54\x00\x72\x00\x61\x00\x6e\x00\ \x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x65\x00\ \x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\ \x6c\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\ -\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x48\x00\x61\x00\x6c\x00\ -\x62\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x66\x00\ -\x77\x00\xe4\x00\x72\x00\x74\x00\x73\x00\x20\x00\x28\x00\x2b\x00\ -\x31\x00\x20\x00\x4d\x00\x49\x00\x44\x00\x49\x00\x20\x00\x54\x00\ -\x6f\x00\x6e\x00\x68\x00\xf6\x00\x68\x00\x65\x00\x29\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x37\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\ -\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x63\x61\x6c\x65\ -\x20\x75\x70\x20\x61\x20\x68\x61\x6c\x66\x20\x74\x6f\x6e\x65\x20\ -\x28\x2b\x31\x20\x6d\x69\x64\x69\x20\x6e\x6f\x74\x65\x29\x07\x00\ -\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\ -\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x84\x00\x54\x00\x72\x00\x61\ -\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\ -\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\x6f\ -\x00\x6e\x00\x6c\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\ -\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x6b\x00\x74\ -\x00\x61\x00\x76\x00\x65\x00\x20\x00\x61\x00\x75\x00\x66\x00\x77\ -\x00\xe4\x00\x72\x00\x74\x00\x73\x00\x20\x00\x28\x00\x2b\x00\x31\ -\x00\x32\x00\x20\x00\x4d\x00\x49\x00\x44\x00\x49\x00\x20\x00\x54\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x6b\x00\x74\x00\x61\x00\ +\x76\x00\x65\x00\x20\x00\x61\x00\x62\x00\x77\x00\xe4\x00\x72\x00\ +\x74\x00\x73\x00\x20\x00\x28\x00\x2d\x00\x31\x00\x32\x00\x20\x00\ +\x4d\x00\x49\x00\x44\x00\x49\x00\x20\x00\x54\x00\x6f\x00\x6e\x00\ +\x68\x00\xf6\x00\x68\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x39\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x20\x74\x68\x65\ +\x20\x77\x68\x6f\x6c\x65\x20\x73\x63\x61\x6c\x65\x20\x64\x6f\x77\ +\x6e\x20\x61\x6e\x20\x6f\x63\x74\x61\x76\x65\x20\x28\x2d\x31\x32\ +\x20\x6d\x69\x64\x69\x20\x6e\x6f\x74\x65\x73\x29\x07\x00\x00\x00\ +\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\x74\x72\x6f\ +\x6c\x73\x01\x03\x00\x00\x00\x86\x00\x54\x00\x72\x00\x61\x00\x6e\ +\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x65\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6e\ +\x00\x6c\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x48\x00\x61\x00\x6c\ +\x00\x62\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x66\ +\x00\x77\x00\xe4\x00\x72\x00\x74\x00\x73\x00\x20\x00\x28\x00\x2b\ +\x00\x31\x00\x20\x00\x4d\x00\x49\x00\x44\x00\x49\x00\x20\x00\x54\ \x00\x6f\x00\x6e\x00\x68\x00\xf6\x00\x68\x00\x65\x00\x29\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x37\x54\x72\x61\x6e\x73\x70\x6f\x73\ \x65\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x63\x61\x6c\ -\x65\x20\x75\x70\x20\x61\x6e\x20\x6f\x63\x74\x61\x76\x65\x20\x28\ -\x2b\x31\x32\x20\x6d\x69\x64\x69\x20\x6e\x6f\x74\x65\x73\x29\x07\ +\x65\x20\x75\x70\x20\x61\x20\x68\x61\x6c\x66\x20\x74\x6f\x6e\x65\ +\x20\x28\x2b\x31\x20\x6d\x69\x64\x69\x20\x6e\x6f\x74\x65\x29\x07\ \x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\ -\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x3c\x00\x55\x00\x73\x00\ -\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\ -\x63\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x20\x00\x61\x00\x73\x00\ -\x20\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x61\x00\ -\x6d\x00\x65\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1e\x55\x73\x65\x20\x74\x68\x69\x73\x20\x73\x63\x68\x65\x6d\x65\ -\x20\x61\x73\x20\x6e\x6f\x74\x65\x20\x6e\x61\x6d\x65\x73\x2e\x07\ -\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\x6e\ -\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x12\x00\x2b\x00\x56\x00\ -\x65\x00\x6c\x00\x6f\x00\x63\x00\x69\x00\x74\x00\x79\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x2b\x56\x65\x6c\x6f\x63\x69\x74\x79\ -\x07\x00\x00\x00\x10\x56\x65\x6c\x6f\x63\x69\x74\x79\x43\x6f\x6e\ -\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x12\x00\x2d\x00\x56\x00\ -\x65\x00\x6c\x00\x6f\x00\x63\x00\x69\x00\x74\x00\x79\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x2d\x56\x65\x6c\x6f\x63\x69\x74\x79\ -\x07\x00\x00\x00\x10\x56\x65\x6c\x6f\x63\x69\x74\x79\x43\x6f\x6e\ -\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\xf2\x00\x41\x00\x6c\x00\ -\x6c\x00\x65\x00\x20\x00\x54\x00\xf6\x00\x6e\x00\x65\x00\x20\x00\ -\x6c\x00\x61\x00\x75\x00\x74\x00\x65\x00\x72\x00\x20\x00\x6d\x00\ -\x61\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x4d\x00\ -\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6d\x00\x20\x00\x4d\x00\ -\x61\x00\x75\x00\x73\x00\x7a\x00\x65\x00\x69\x00\x67\x00\x65\x00\ -\x72\x00\x20\x00\xfc\x00\x62\x00\x65\x00\x72\x00\x20\x00\x64\x00\ -\x65\x00\x6d\x00\x20\x00\x4b\x00\x6e\x00\x6f\x00\x70\x00\x66\x00\ -\x20\x00\x62\x00\x6c\x00\x65\x00\x69\x00\x62\x00\x65\x00\x6e\x00\ -\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x61\x00\x73\x00\ -\x20\x00\x4d\x00\x61\x00\x75\x00\x73\x00\x72\x00\x61\x00\x64\x00\ -\x20\x00\x61\x00\x75\x00\x66\x00\x20\x00\x6f\x00\x64\x00\x65\x00\ -\x72\x00\x20\x00\x61\x00\x62\x00\x20\x00\x62\x00\x65\x00\x77\x00\ -\x65\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x66\x00\xfc\x00\x72\x00\ -\x20\x00\x31\x00\x30\x00\x65\x00\x72\x00\x20\x00\x53\x00\x63\x00\ -\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x2e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x4a\x4d\x61\x6b\x65\x20\x65\x76\x65\x72\ -\x79\x74\x68\x69\x6e\x67\x20\x6c\x6f\x75\x64\x65\x72\x2e\x20\x48\ -\x6f\x76\x65\x72\x20\x61\x6e\x64\x20\x6d\x6f\x75\x73\x65\x77\x68\ -\x65\x65\x6c\x20\x75\x70\x2f\x64\x6f\x77\x6e\x20\x74\x6f\x20\x67\ -\x6f\x20\x69\x6e\x20\x73\x74\x65\x70\x73\x20\x6f\x66\x20\x31\x30\ -\x2e\x07\x00\x00\x00\x10\x56\x65\x6c\x6f\x63\x69\x74\x79\x43\x6f\ +\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x84\x00\x54\x00\x72\x00\ +\x61\x00\x6e\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\ +\x72\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\ +\x6f\x00\x6e\x00\x6c\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\ +\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x6b\x00\ +\x74\x00\x61\x00\x76\x00\x65\x00\x20\x00\x61\x00\x75\x00\x66\x00\ +\x77\x00\xe4\x00\x72\x00\x74\x00\x73\x00\x20\x00\x28\x00\x2b\x00\ +\x31\x00\x32\x00\x20\x00\x4d\x00\x49\x00\x44\x00\x49\x00\x20\x00\ +\x54\x00\x6f\x00\x6e\x00\x68\x00\xf6\x00\x68\x00\x65\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x37\x54\x72\x61\x6e\x73\x70\x6f\ +\x73\x65\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x63\x61\ +\x6c\x65\x20\x75\x70\x20\x61\x6e\x20\x6f\x63\x74\x61\x76\x65\x20\ +\x28\x2b\x31\x32\x20\x6d\x69\x64\x69\x20\x6e\x6f\x74\x65\x73\x29\ +\x07\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\ +\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x3c\x00\x55\x00\x73\ +\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\ +\x00\x63\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x20\x00\x61\x00\x73\ +\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x61\ +\x00\x6d\x00\x65\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1e\x55\x73\x65\x20\x74\x68\x69\x73\x20\x73\x63\x68\x65\x6d\ +\x65\x20\x61\x73\x20\x6e\x6f\x74\x65\x20\x6e\x61\x6d\x65\x73\x2e\ +\x07\x00\x00\x00\x11\x54\x72\x61\x6e\x73\x70\x6f\x73\x65\x43\x6f\ +\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x12\x00\x2b\x00\x56\ +\x00\x65\x00\x6c\x00\x6f\x00\x63\x00\x69\x00\x74\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x2b\x56\x65\x6c\x6f\x63\x69\x74\ +\x79\x07\x00\x00\x00\x10\x56\x65\x6c\x6f\x63\x69\x74\x79\x43\x6f\ +\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x12\x00\x2d\x00\x56\ +\x00\x65\x00\x6c\x00\x6f\x00\x63\x00\x69\x00\x74\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x2d\x56\x65\x6c\x6f\x63\x69\x74\ +\x79\x07\x00\x00\x00\x10\x56\x65\x6c\x6f\x63\x69\x74\x79\x43\x6f\ \x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\xf2\x00\x41\x00\x6c\ \x00\x6c\x00\x65\x00\x20\x00\x54\x00\xf6\x00\x6e\x00\x65\x00\x20\ -\x00\x6c\x00\x65\x00\x69\x00\x73\x00\x65\x00\x72\x00\x20\x00\x6d\ +\x00\x6c\x00\x61\x00\x75\x00\x74\x00\x65\x00\x72\x00\x20\x00\x6d\ \x00\x61\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x4d\ \x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6d\x00\x20\x00\x4d\ \x00\x61\x00\x75\x00\x73\x00\x7a\x00\x65\x00\x69\x00\x67\x00\x65\ @@ -1779,93 +1780,83 @@ qt_resource_data = b"\ \x00\x20\x00\x31\x00\x30\x00\x65\x00\x72\x00\x20\x00\x53\x00\x63\ \x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x4a\x4d\x61\x6b\x65\x20\x65\x76\x65\ -\x72\x79\x74\x68\x69\x6e\x67\x20\x73\x6f\x66\x74\x65\x72\x2e\x20\ +\x72\x79\x74\x68\x69\x6e\x67\x20\x6c\x6f\x75\x64\x65\x72\x2e\x20\ \x48\x6f\x76\x65\x72\x20\x61\x6e\x64\x20\x6d\x6f\x75\x73\x65\x77\ \x68\x65\x65\x6c\x20\x75\x70\x2f\x64\x6f\x77\x6e\x20\x74\x6f\x20\ \x67\x6f\x20\x69\x6e\x20\x73\x74\x65\x70\x73\x20\x6f\x66\x20\x31\ \x30\x2e\x07\x00\x00\x00\x10\x56\x65\x6c\x6f\x63\x69\x74\x79\x43\ -\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x30\x00\x46\x00\ -\x61\x00\x6c\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x53\x00\ -\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x20\x00\ -\x6c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x77\x72\ -\x6f\x6e\x67\x20\x73\x74\x65\x70\x73\x07\x00\x00\x00\x1a\x63\x6f\ -\x6e\x76\x65\x72\x74\x53\x75\x62\x64\x69\x76\x69\x73\x69\x6f\x6e\ -\x73\x53\x75\x62\x4d\x65\x6e\x75\x01\x03\x00\x00\x00\x1a\x00\x4e\ -\x00\x69\x00\x63\x00\x68\x00\x74\x00\x73\x00\x20\x00\x6d\x00\x61\ -\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0a\x44\x6f\x20\x6e\x6f\x74\x68\x69\x6e\x67\x07\x00\x00\x00\ -\x1a\x63\x6f\x6e\x76\x65\x72\x74\x53\x75\x62\x64\x69\x76\x69\x73\ -\x69\x6f\x6e\x73\x53\x75\x62\x4d\x65\x6e\x75\x01\x03\x00\x00\x00\ -\x1e\x00\x46\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x75\x00\ -\x6e\x00\x6d\x00\xf6\x00\x67\x00\x6c\x00\x69\x00\x63\x00\x68\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x49\x66\x20\x6e\x6f\x74\x20\ -\x70\x6f\x73\x73\x69\x62\x6c\x65\x07\x00\x00\x00\x1a\x63\x6f\x6e\ -\x76\x65\x72\x74\x53\x75\x62\x64\x69\x76\x69\x73\x69\x6f\x6e\x73\ -\x53\x75\x62\x4d\x65\x6e\x75\x01\x03\x00\x00\x00\x3c\x00\x46\x00\ -\x61\x00\x6c\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x53\x00\ -\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x20\x00\ -\x6d\x00\x69\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x62\x00\ -\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x11\x4d\x65\x72\x67\x65\x20\x77\x72\x6f\x6e\x67\x20\x73\ -\x74\x65\x70\x73\x07\x00\x00\x00\x1a\x63\x6f\x6e\x76\x65\x72\x74\ -\x53\x75\x62\x64\x69\x76\x69\x73\x69\x6f\x6e\x73\x53\x75\x62\x4d\ -\x65\x6e\x75\x01\x03\x00\x00\x00\x20\x00\x4e\x00\x65\x00\x75\x00\ -\x65\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x69\x00\ -\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0c\x4e\x65\x77\x20\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\ -\x00\x00\x00\x1a\x63\x6f\x6e\x76\x65\x72\x74\x53\x75\x62\x64\x69\ -\x76\x69\x73\x69\x6f\x6e\x73\x53\x75\x62\x4d\x65\x6e\x75\x01\x03\ -\x00\x00\x00\x4c\x00\x47\x00\x6c\x00\x65\x00\x69\x00\x63\x00\x68\ -\x00\x65\x00\x20\x00\x47\x00\x72\x00\xf6\x00\xdf\x00\x65\x00\x20\ -\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\ -\x00\x2d\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x54\x00\x61\ -\x00\x6b\x00\x74\x00\x65\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x72\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x45\x71\x75\x61\x6c\x20\ -\x73\x70\x61\x63\x65\x20\x66\x6f\x72\x20\x50\x61\x74\x74\x65\x72\ -\x6e\x2f\x53\x6f\x6e\x67\x20\x41\x72\x65\x61\x07\x00\x00\x00\x04\ -\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x2a\x00\x54\x00\x61\x00\x6b\ -\x00\x74\x00\x65\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x72\x00\x20\ -\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x69\x00\x65\x00\x72\ -\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x4d\x61\ -\x78\x69\x6d\x69\x7a\x65\x20\x50\x61\x74\x74\x65\x72\x6e\x20\x41\ -\x72\x65\x61\x07\x00\x00\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\ -\x00\x2a\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x64\x00\x69\ -\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\ -\x00\x6d\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x12\x4d\x61\x78\x69\x6d\x69\x7a\x65\x20\x53\ -\x6f\x6e\x67\x20\x41\x72\x65\x61\x07\x00\x00\x00\x04\x6d\x65\x6e\ -\x75\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6e\x00\x73\x00\x69\x00\ -\x63\x00\x68\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\ -\x69\x65\x77\x07\x00\x00\x00\x04\x6d\x65\x6e\x75\x01\x88\x00\x00\ -\x00\x02\x01\x01\ +\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\xf2\x00\x41\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x54\x00\xf6\x00\x6e\x00\x65\x00\ +\x20\x00\x6c\x00\x65\x00\x69\x00\x73\x00\x65\x00\x72\x00\x20\x00\ +\x6d\x00\x61\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\ +\x4d\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6d\x00\x20\x00\ +\x4d\x00\x61\x00\x75\x00\x73\x00\x7a\x00\x65\x00\x69\x00\x67\x00\ +\x65\x00\x72\x00\x20\x00\xfc\x00\x62\x00\x65\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x6d\x00\x20\x00\x4b\x00\x6e\x00\x6f\x00\x70\x00\ +\x66\x00\x20\x00\x62\x00\x6c\x00\x65\x00\x69\x00\x62\x00\x65\x00\ +\x6e\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x61\x00\ +\x73\x00\x20\x00\x4d\x00\x61\x00\x75\x00\x73\x00\x72\x00\x61\x00\ +\x64\x00\x20\x00\x61\x00\x75\x00\x66\x00\x20\x00\x6f\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x61\x00\x62\x00\x20\x00\x62\x00\x65\x00\ +\x77\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x66\x00\xfc\x00\ +\x72\x00\x20\x00\x31\x00\x30\x00\x65\x00\x72\x00\x20\x00\x53\x00\ +\x63\x00\x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x4d\x61\x6b\x65\x20\x65\x76\ +\x65\x72\x79\x74\x68\x69\x6e\x67\x20\x73\x6f\x66\x74\x65\x72\x2e\ +\x20\x48\x6f\x76\x65\x72\x20\x61\x6e\x64\x20\x6d\x6f\x75\x73\x65\ +\x77\x68\x65\x65\x6c\x20\x75\x70\x2f\x64\x6f\x77\x6e\x20\x74\x6f\ +\x20\x67\x6f\x20\x69\x6e\x20\x73\x74\x65\x70\x73\x20\x6f\x66\x20\ +\x31\x30\x2e\x07\x00\x00\x00\x10\x56\x65\x6c\x6f\x63\x69\x74\x79\ +\x43\x6f\x6e\x74\x72\x6f\x6c\x73\x01\x03\x00\x00\x00\x4c\x00\x47\ +\x00\x6c\x00\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x20\x00\x47\ +\x00\x72\x00\xf6\x00\xdf\x00\x65\x00\x20\x00\x66\x00\xfc\x00\x72\ +\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x2d\x00\x20\x00\x75\ +\x00\x6e\x00\x64\x00\x20\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\ +\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x21\x45\x71\x75\x61\x6c\x20\x73\x70\x61\x63\x65\x20\ +\x66\x6f\x72\x20\x50\x61\x74\x74\x65\x72\x6e\x2f\x53\x6f\x6e\x67\ +\x20\x41\x72\x65\x61\x07\x00\x00\x00\x04\x6d\x65\x6e\x75\x01\x03\ +\x00\x00\x00\x2a\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x65\x00\x64\ +\x00\x69\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x78\ +\x00\x69\x00\x6d\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x4d\x61\x78\x69\x6d\x69\x7a\x65\ +\x20\x50\x61\x74\x74\x65\x72\x6e\x20\x41\x72\x65\x61\x07\x00\x00\ +\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\x2a\x00\x46\x00\x6f\ +\x00\x72\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x72\ +\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x69\x00\x65\ +\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x4d\x61\x78\x69\x6d\x69\x7a\x65\x20\x53\x6f\x6e\x67\x20\x41\x72\ +\x65\x61\x07\x00\x00\x00\x04\x6d\x65\x6e\x75\x01\x03\x00\x00\x00\ +\x0e\x00\x41\x00\x6e\x00\x73\x00\x69\x00\x63\x00\x68\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\ +\x00\x04\x6d\x65\x6e\x75\x01\x88\x00\x00\x00\x02\x01\x01\ " qt_resource_name = b"\ -\x00\x0c\ -\x0d\xfc\x11\x13\ -\x00\x74\ -\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ \x00\x0b\ \x0a\xb8\x4e\xa7\ \x00\x66\ \x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x08\ -\x06\x63\x59\x27\ -\x00\x6c\ -\x00\x6f\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0d\ +\x02\xc6\x5b\x87\ +\x00\x70\ +\x00\x6c\x00\x61\x00\x79\x00\x70\x00\x61\x00\x75\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x08\x61\x82\x07\ \x00\x74\ \x00\x6f\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0c\ +\x0d\xfc\x11\x13\ +\x00\x74\ +\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ \x00\x0d\ \x0b\x0f\xc0\xa7\ \x00\x61\ \x00\x62\x00\x6f\x00\x75\x00\x74\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0d\ -\x02\xc6\x5b\x87\ -\x00\x70\ -\x00\x6c\x00\x61\x00\x79\x00\x70\x00\x61\x00\x75\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x06\x63\x59\x27\ +\x00\x6c\ +\x00\x6f\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x05\ \x00\x6a\x85\x7d\ \x00\x64\ @@ -1874,32 +1865,32 @@ qt_resource_name = b"\ qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x01\ -\x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x25\x9e\ -\x00\x00\x00\x3a\x00\x00\x00\x00\x00\x01\x00\x00\x02\x26\ -\x00\x00\x00\x50\x00\x00\x00\x00\x00\x01\x00\x00\x07\x26\ -\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x66\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ +\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x01\x00\x00\x02\x26\ +\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x23\x5d\ +\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x04\xe5\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\x08\x25\ +\x00\x00\x00\x58\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x28\x5d\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x25\x9e\ +\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x01\x00\x00\x02\x26\ \x00\x00\x01\x77\x12\xbb\x0c\xa9\ -\x00\x00\x00\x3a\x00\x00\x00\x00\x00\x01\x00\x00\x02\x26\ +\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x23\x5d\ \x00\x00\x01\x77\x12\xbb\x0c\xa9\ -\x00\x00\x00\x50\x00\x00\x00\x00\x00\x01\x00\x00\x07\x26\ +\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x04\xe5\ \x00\x00\x01\x77\x12\xbb\x0c\xa9\ -\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x77\x12\xbb\x0c\xa5\ -\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x66\ +\x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\x08\x25\ \x00\x00\x01\x77\x12\xbb\x0c\xa5\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ +\x00\x00\x00\x58\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x28\x5d\ -\x00\x00\x01\x77\x46\x2d\xe7\x77\ +\x00\x00\x01\x77\x4b\x57\x69\xf0\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] diff --git a/qtgui/resources/translations/de.qm b/qtgui/resources/translations/de.qm index 1972bbe..61de05d 100644 Binary files a/qtgui/resources/translations/de.qm and b/qtgui/resources/translations/de.qm differ diff --git a/qtgui/resources/translations/de.ts b/qtgui/resources/translations/de.ts index 7f4fdd5..e0382ee 100644 --- a/qtgui/resources/translations/de.ts +++ b/qtgui/resources/translations/de.ts @@ -4,32 +4,32 @@ About - + Prefer clone track over adding a new empty track when creating a new pattern for an existing 'real world' instrument. Spuren zu klonen ist meist besser als eine neue, leere Spur zu erstellen. Benutze Klonen immer wenn du ein neues Pattern für ein existierendes Instrument komponieren möchtest. - + You can run multiple Patroneo instances in parallel to create complex polyrhythms. Um komplexe Rhythmen zu erstellen versuche Patroneo mehrmals zu starten und verschiedene Taktarten einzustellen. - + To revert all steps that are longer or shorter than default invert the pattern twice in a row. Alle gedehnten oder verkürzte Noten im Takt bekommst du am einfachsten zurück auf die normale Länge wenn du zweimal hintereinander die &quot;Umkehren&quot; Funktion benutzt. - + Control a synth with MIDI Control Changes (CC) by routing a Patroneo track into a midi plugin that converts notes to CC. MIDI Control Changes (CC) werden nicht direkt von Patroneo erzeugt. Route eine Extraspur in ein Konverterplugin, dass aus Pitch und Velocity CC und Value macht. - + The mouse wheel is very powerful: Use it to transpose measures (with or without Shift pressed), it resizes the measure number line, zooms when Ctrl is held down, changes row volumes in the pattern with the Alt key or sounds a preview if pressed on a step. Das Mausrad ist sehr wichtig: Es transponiert Takte (mit oder ohne Umschalttaste), verändert die Größe der Taktgruppen, zoomed wenn Strg gedrückt ist, ändert die Lautstärke einer ganzen Reihe zusammen mit der Alt-Taste oder lässt eine Note erklingen wenn man es auf einem Schritt drückt. - + Many elements have context menus with unique functions: Try right clicking on a Step, the Track name or a measure in the song editor. Die meisten Bedienelemente haben ein Kontextmenü. Versuche auf alles mit der rechten Maustaste zu klicken: Schritte, Takte, der Spurname etc. @@ -93,263 +93,278 @@ Menu - + Convert Grouping Gruppierung umwandeln - + Change step-grouping but keep your music the same Taktartaufspaltung durch Gruppierung umwandeln, versucht die Musik gleich klingen zu lassen + + + Global Rhythm Offset + Allgemeiner Rhythmusversatz + + + + Shift the whole piece further down the timeline + Schiebt das gesamte Stück "später" auf die Timeline + NOOPengineHistory - + Tempo Tempo - + Group Duration Gruppierungsdauer - + Steps per Pattern Schritte pro Takt - + Group Size Gruppengröße - + Convert Grouping Gruppierung umwandeln - + Swing Swing - + Measures per Track Takte pro Spur - + Measures per Group Takte pro Gruppe - + Track Name Spurname - + Track Color Spurfarbe - + Track Midi Channel Spur Midikanal - + Add Track Neue Spur - + Clone Track Spur klonen - + Add deleted Track again Gelöschte Spur wieder hinzufügen - + Delete Track and autocreated Track Lösche Spur und automatische Ersatzspur - + Delete Track Spur löschen - + Move Track Spur bewegen - + Pattern Multiplier Takt-Skalierung - + Set Measures Setze Takte - + Invert Measures Taktauswahl umdrehen - + Track Measures Off Alle Takte ausschalten - + Track Measures On Alle Takte einschalten - + Copy Measures Takte Kopieren - + Replace Measures Takte Ersetzen - + Set Modal Shift Modale Transposition - + Set Half Tone Shift Halbtontransposition - + Change Group Gruppe verändern - + Insert/Duplicate Group Gruppe einfügen/duplizieren - + Clear all Group Transpositions Alle Transpositionen der Taktgruppe zurücksetzen - + Delete whole Group Taktgruppe Löschen - + Change Step Schritt verändern - + Remove Step Schritt aus - + Set Scale Benutze Tonleiter - + Note Names Notennamen - + Transpose Scale Tonleiter transponieren - + Invert Steps Schritte invertieren - + All Steps On Alle Schritte an - + All Steps Off Alles Schritte aus - + Invert Row Reihe umkehren - + Clear Row Reihe löschen - + Fill Row with Repeat Reihenwiederholung - + Change Row Velocity Reihenlautstärke - + Change Pattern Velocity Taktlautstärke - + Number of Notes in Pattern Anzahl der Tonhöhen im Takt - + Exchange Group Order Gruppenreihenfolge tauschen + + + Global Rhythm Offset + Allgemeiner Rhythmusversatz + PlaybackControls - + [Space] Play / Pause [Leertaste] Play / Pause - + [L] Loop current Measure [L] Aktueller Takt in Schleife spielen - + [Home] Jump to Start [Pos1] Springe zum Anfang - + Number of measures in the loop Anzahl der Takte pro Schleife @@ -468,27 +483,27 @@ TimeSignature - + Whole Ganze - + Half Halbe - + Quarter Viertel - + Eigth Achtel - + Sixteenth Sechzehntel @@ -504,32 +519,32 @@ Toolbar - + BPM/Tempo: BPM/Tempo: - + Deactivate to beccome JACK Transport Slave. Activate for Master. Aus: JACK Transport Slave. An: JACK Master (eigenes Tempo). - + Overall length of the song Länge des Stückes in Takten - + Please read the manual! Bitte im Handbuch nachlesen! - + Length of the pattern (bottom part of the program) Länge des Musters in Schritten (untere Hälfte des Programms) - + How long is each main step Welchen Notenwert repräsentiert ein Schritt @@ -544,47 +559,47 @@ Taktartaufspaltung durch Gruppierung umwandeln, versucht die Musik gleich klingen zu lassen - + Clone Selected Track Klone ausgewählte Spur - + Use this! Create a new track that inherits everything but the content from the original. Already jack connected! Das hier benutzen! Neue Spur, die alle Eigenschaften außer der Musik selbst vom Original erbt. Ist bereits in JACK verbunden! - + Add Track Neue Spur - + Add a complete empty track that needs to be connected to an instrument manually. Eine neue, leere Spur, bei der man noch per Hand ein Instrument mit JACK verbinden muss. - + Measures per Track: Takte pro Spur: - + Steps per Pattern: Schritte pro Takt: - + in groups of: gruppiert in je: - + so that each group produces a: und jede Gruppe ergibt eine: - + Set the swing factor. 0 is off. Different effect for different rhythm-grouping! Swing-Anteil. 0 ist aus. Andere rhythmische Gruppierungen haben einen anderen Effekt! @@ -751,48 +766,48 @@ New Grouping - Neue Gruppierung + Neue Gruppierung Do nothing - Nichts machen + Nichts machen Delete wrong steps - Falsche Schritte löschen + Falsche Schritte löschen Merge wrong steps - Falsche Schritte mit einbinden + Falsche Schritte mit einbinden If not possible - Falls unmöglich + Falls unmöglich menu - + View Ansicht - + Maximize Song Area Formeditor maximieren - + Maximize Pattern Area Takteditor maximieren - + Equal space for Pattern/Song Area Gleiche Größe für Form- und Takteditor diff --git a/qtgui/submenus.py b/qtgui/submenus.py new file mode 100644 index 0000000..cc537f1 --- /dev/null +++ b/qtgui/submenus.py @@ -0,0 +1,122 @@ +#! /usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) + +This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), + +This application is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +""" +import logging; logger = logging.getLogger(__name__); logger.info("import") + +#Standard Library Modules + +#Third Party Modules +from PyQt5 import QtWidgets, QtCore, QtGui + +#Our modules +import engine.api as api +from template.engine.duration import D4 + +MAX_QT_SIZE = 2147483647-1 + +def convertSubdivisionsSubMenu(mainWindow): + class Submenu(QtWidgets.QDialog): + def __init__(self, mainWindow): + super().__init__(mainWindow) #if you don't set the parent to the main window the whole screen will be the root and the dialog pops up in the middle of it. + #self.setModal(True) #we don't need this when called with self.exec() instead of self.show() + self.layout = QtWidgets.QFormLayout() + self.setLayout(self.layout) + self.numberOfSubdivisions = QtWidgets.QSpinBox() + self.numberOfSubdivisions.setMinimum(1) + self.numberOfSubdivisions.setMaximum(4)# + self.numberOfSubdivisions.setValue(mainWindow.numberOfSubdivisions.value()) + + self.layout.addRow(QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "New Grouping"), self.numberOfSubdivisions) + + self.errorHandling = QtWidgets.QComboBox() + self.errorHandling.addItems([ + QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "Do nothing"), + QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "Delete wrong steps"), + QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "Merge wrong steps"), + ]) + self.layout.addRow(QtCore.QCoreApplication.translate("convertSubdivisionsSubMenu", "If not possible"), self.errorHandling) + + #self.setFocus(); #self.grabKeyboard(); #redundant for a proper modal dialog. Leave here for documentation reasons. + + buttonBox = QtWidgets.QDialogButtonBox(QtWidgets.QDialogButtonBox.Ok | QtWidgets.QDialogButtonBox.Cancel) + buttonBox.accepted.connect(self.accept) + buttonBox.rejected.connect(self.reject) + self.layout.addWidget(buttonBox) + + def __call__(self): + """This instance can be called like a function""" + self.exec() #blocks until the dialog gets closed + + s = Submenu(mainWindow) + s() + if s.result(): + value = s.numberOfSubdivisions.value() + error= ("fail", "delete", "merge")[s.errorHandling.currentIndex()] + api.convert_subdivisions(value, error) + + +def globalOffsetSubmenu(mainWindow): + class Submenu(QtWidgets.QDialog): + def __init__(self, mainWindow): + super().__init__(mainWindow) #if you don't set the parent to the main window the whole screen will be the root and the dialog pops up in the middle of it. + #self.setModal(True) #we don't need this when called with self.exec() instead of self.show() + + + self.layout = QtWidgets.QFormLayout() + self.setLayout(self.layout) + quarterticks = D4 + offsetMeasures, offsetTicks, completeOffsetinTicks = api.getGlobalOffset() + + explanationLabel = QtWidgets.QLabel(f"Current Offset in Ticks: {completeOffsetinTicks}\n\nFor advanced users who are using multiple music programs with JackTransport-Sync.\n\nHere you can set a global rhythm offset to let Patroneo 'wait' before it's playback.\nThe shift will be invisible in the GUI.\n\nFull Measures are current Patroneo measures. If you change their duration the offset will change as well.\n\nThe 'Ticks' value is absolute. A quarter note has {quarterticks} ticks.\n\nYou can give even give negative numbers, but it impossible to shift before position 0. As an advanced user this is your responsibility :)") + explanationLabel.setWordWrap(True) + self.layout.addRow(explanationLabel) #only one parameter will span both columns + + + + self.offsetMeasures = QtWidgets.QSpinBox() + self.offsetMeasures.setMinimum(-1 * MAX_QT_SIZE) + self.offsetMeasures.setMaximum(MAX_QT_SIZE) + self.offsetMeasures.setValue(offsetMeasures) + + self.offsetTicks = QtWidgets.QSpinBox() + self.offsetTicks.setMinimum(-1 * MAX_QT_SIZE) + self.offsetTicks.setMaximum(MAX_QT_SIZE) + self.offsetTicks.setValue(offsetTicks) + + + self.layout.addRow(QtCore.QCoreApplication.translate("globalOffsetSubmenu", "Full Patroneo Measures"), self.offsetMeasures) + self.layout.addRow(QtCore.QCoreApplication.translate("globalOffsetSubmenu", "Ticks (Quarter=96)"), self.offsetTicks) + + #self.setFocus(); #self.grabKeyboard(); #redundant for a proper modal dialog. Leave here for documentation reasons. + + buttonBox = QtWidgets.QDialogButtonBox(QtWidgets.QDialogButtonBox.Ok | QtWidgets.QDialogButtonBox.Cancel) + buttonBox.accepted.connect(self.accept) + buttonBox.rejected.connect(self.reject) + self.layout.addWidget(buttonBox) + + + def __call__(self): + """This instance can be called like a function""" + self.exec() #blocks until the dialog gets closed + + s = Submenu(mainWindow) + s() + if s.result(): + api.setGlobalOffset(s.offsetMeasures.value(), s.offsetTicks.value()) diff --git a/template/engine/api.py b/template/engine/api.py index f8186cc..daa47a8 100644 --- a/template/engine/api.py +++ b/template/engine/api.py @@ -130,7 +130,8 @@ class Callbacks(object): def _setPlaybackTicks(self): - """This gets called very very often. Any connected function needs to watch closely + """This gets called very very often (~60 times per second). + Any connected function needs to watch closely for performance issues""" ppqn = cbox.Transport.status().pos_ppqn status = playbackStatus()