From 16771be7b016663d932167e509766caae26d41e1 Mon Sep 17 00:00:00 2001 From: Nils <> Date: Sat, 3 Jul 2021 12:13:00 +0200 Subject: [PATCH] more work on measure modifications. GUI labels are still off --- engine/pattern.py | 17 +- engine/track.py | 4 +- qtgui/mainwindow.py | 51 + qtgui/resources.py | 2292 ++++++++++++++-------------- qtgui/resources/translations/de.qm | Bin 19550 -> 19771 bytes qtgui/resources/translations/de.ts | 280 ++-- qtgui/songeditor.py | 199 ++- 7 files changed, 1585 insertions(+), 1258 deletions(-) diff --git a/engine/pattern.py b/engine/pattern.py index 32cc8e1..d625d2c 100644 --- a/engine/pattern.py +++ b/engine/pattern.py @@ -342,13 +342,25 @@ class Pattern(object): shuffle = int(self.parentTrack.parentData.swing * whatTypeOfUnit) - for noteDict in self.exportCache: + #If we diminished and want to repeat the sub-pattern, create virtual extra notes. + self.parentTrack.repeatDiminishedPatternInItself = True + virtualNotes = [] + inverseAugmentFactor = round(0.5 + 1 / augmentationFactor) + if self.parentTrack.repeatDiminishedPatternInItself and augmentationFactor < 1: + for noteDict in self.exportCache: + for i in range(2, inverseAugmentFactor+1): #not from 1 because we already have the original notes in there with factor 1. + #indices too big will be filtered out below by absolute ticks + cp = noteDict.copy() + cp["index"] = cp["index"] + howManyUnits * (i-1) + virtualNotes.append(cp) + + for noteDict in self.exportCache + virtualNotes: if self.parentTrack.stepDelayWrapAround: index = (noteDict["index"] + stepDelay) % howManyUnits assert index >= 0, index else: index = noteDict["index"] + stepDelay - if index < 0 or index >= howManyUnits: + if index < 0 or index >= howManyUnits * inverseAugmentFactor: continue #skip lost step startTick = index * whatTypeOfUnit @@ -368,7 +380,6 @@ class Pattern(object): #Prevent augmented notes to start and hang when exceeding the pattern-length if startTick >= oneMeasureInTicks-1: #-1 is important!!! Without it we will get hanging notes with factor 1.333 - assert augmentationFactor > 1.0, augmentationFactor #can only happen for augmented patterns continue #do not create a note, at all if endTick > oneMeasureInTicks: diff --git a/engine/track.py b/engine/track.py index c98c051..6fe184b 100644 --- a/engine/track.py +++ b/engine/track.py @@ -66,8 +66,8 @@ class Track(object): #injection at the bottom of this file! #2.1 self.group = "" # "" is a standalone track, the normal one which existed since version 1.0. Using a name here will group these tracks together. A GUI can use this information. Also all tracks in a group share a single jack out port. self.visible = True #only used together with groups. the api and our Datas setGroup function take care that standalone tracks are never hidden. - self.stepDelayWrapAround = False #every note that falls down on the "right side" of the pattern will wrap around to the beginning. - self.repeatDiminishedPatternInItself = False # if augmentationFactor < 1: repeat the pattern multiple times, as many as fit into the measure. + self.stepDelayWrapAround = stepDelayWrapAround #every note that falls down on the "right side" of the pattern will wrap around to the beginning. + self.repeatDiminishedPatternInItself = repeatDiminishedPatternInItself # if augmentationFactor < 1: repeat the pattern multiple times, as many as fit into the measure. self.pattern = Pattern(parentTrack=self, scale=scale, simpleNoteNames=simpleNoteNames) self.structure = structure if structure else set() #see buildTrack(). This is the main track data structure besides the pattern. Just integers (starts at 0) as switches which are positions where to play the patterns. In between are automatic rests. diff --git a/qtgui/mainwindow.py b/qtgui/mainwindow.py index a1d042e..0c1da83 100644 --- a/qtgui/mainwindow.py +++ b/qtgui/mainwindow.py @@ -92,6 +92,8 @@ class MainWindow(TemplateMainWindow): QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Global Rhythm Offset") QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Track Group") QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Move Group") + QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Set Step Delay") + QtCore.QT_TRANSLATE_NOOP("NOOPengineHistory", "Set Augmentation Factor") def __init__(self): """The order of calls is very important. @@ -576,6 +578,39 @@ class MainWindow(TemplateMainWindow): #now = self.ui.actionPatternFollowPlayhead.isChecked() #self.ui.actionPatternFollowPlayhead.setChecked(not now) + def halftoneTranspose(self, value): + if self.songEditor.currentHoverStep and self.songEditor.currentHoverStep.isVisible(): + if value == 1: #only +1 and -1 for the menu action. + self.songEditor.currentHoverStep.increaseHalftoneTranspose() + else: + self.songEditor.currentHoverStep.decreaseHalftoneTranspose() + + def scaleTranspose(self, value): + """Value is 1 and -1, simply to indicate a direction. In reality this is halving and doubling""" + if self.songEditor.currentHoverStep and self.songEditor.currentHoverStep.isVisible(): + if value == 1: + self.songEditor.currentHoverStep.increaseScaleTranspose() + else: + self.songEditor.currentHoverStep.decreaseScaleTranspose() + + + def stepDelay(self, value): + if self.songEditor.currentHoverStep and self.songEditor.currentHoverStep.isVisible(): + if value == 1: #only +1 and -1 for the menu action. + self.songEditor.currentHoverStep.increaseStepDelay() + else: + self.songEditor.currentHoverStep.decreaseStepDelay() + + def augmentationFactor(self, value): + """Value is 1 and -1, simply to indicate a direction. In reality this is halving and doubling""" + if self.songEditor.currentHoverStep and self.songEditor.currentHoverStep.isVisible(): + if value == 1: + self.songEditor.currentHoverStep.increaseAugmentationFactor() + else: + self.songEditor.currentHoverStep.decreaseAugmentationFactor() + + + def createMenu(self): #We have undo/redo since v2.1. Template menu entries were hidden before. #self.ui.actionUndo.setVisible(False) @@ -584,6 +619,22 @@ class MainWindow(TemplateMainWindow): 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.addSeparator("menuEdit") + #Measure Modifications + + self.menu.addMenuEntry("menuEdit", "actionHalftoneTransposeIncrease", QtCore.QCoreApplication.translate("Menu", "Increase halftone transpose for currently hovered measure (use shortcut!)"), lambda: self.halftoneTranspose(1), shortcut="h") + self.menu.addMenuEntry("menuEdit", "actionHalftoneTransposeDecrease", QtCore.QCoreApplication.translate("Menu", "Decrease halftone transpose for currently hovered measure (use shortcut!)"), lambda: self.halftoneTranspose(-1), shortcut="Shift+h") + + self.menu.addMenuEntry("menuEdit", "actionScaleTransposeIncrease", QtCore.QCoreApplication.translate("Menu", "Increase in-scale transpose for currently hovered measure (use shortcut!)"), lambda: self.scaleTranspose(1), shortcut="s") + self.menu.addMenuEntry("menuEdit", "actionScaleTransposeDecrease", QtCore.QCoreApplication.translate("Menu", "Decrease in-scale transpose for currently hovered measure (use shortcut!)"), lambda: self.scaleTranspose(-1), shortcut="Shift+s") + + self.menu.addMenuEntry("menuEdit", "actionStepDelayIncrease", QtCore.QCoreApplication.translate("Menu", "Increase step delay for currently hovered measure (use shortcut!)"), lambda: self.stepDelay(1), shortcut="d") + self.menu.addMenuEntry("menuEdit", "actionStepDelayDecrease", QtCore.QCoreApplication.translate("Menu", "Decrease step delay for currently hovered measure (use shortcut!)"), lambda: self.stepDelay(-1), shortcut="Shift+d") + + self.menu.addMenuEntry("menuEdit", "actionAugmentationFactorIncrease", QtCore.QCoreApplication.translate("Menu", "Increase augmentation factor for currently hovered measure (use shortcut!)"), lambda: self.augmentationFactor(1), shortcut="a") + self.menu.addMenuEntry("menuEdit", "actionAugmentationFactorDecrease", QtCore.QCoreApplication.translate("Menu", "Decrease augmentation factor for currently hovered measure (use shortcut!)"), lambda: self.augmentationFactor(-1), shortcut="Shift+a") + + self.menu.addSubmenu("menuView", QtCore.QCoreApplication.translate("menu","View")) self.menu.addMenuEntry("menuView", "actionMaximizeSongArea", QtCore.QCoreApplication.translate("menu", "Maximize Song Area"), self.maximizeSongArea) self.menu.addMenuEntry("menuView", "actionMaximizePatternArea", QtCore.QCoreApplication.translate("menu", "Maximize Pattern Area"), self.maximizePatternArea) diff --git a/qtgui/resources.py b/qtgui/resources.py index d87dc49..539e2ae 100644 --- a/qtgui/resources.py +++ b/qtgui/resources.py @@ -9,43 +9,88 @@ from PyQt5 import QtCore qt_resource_data = b"\ -\x00\x00\x02\x22\ +\x00\x00\x04\xfc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x20\x00\x00\x00\x20\x08\x00\x00\x00\x00\x56\x11\x25\x28\ -\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ -\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ -\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ -\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ -\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\ -\x59\x73\x00\x00\x02\x91\x00\x00\x02\x91\x01\xc0\x1e\xad\x5e\x00\ -\x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x04\x11\x07\x33\x00\xad\x00\ -\x16\xbb\x00\x00\x00\xf0\x49\x44\x41\x54\x38\xcb\x63\x94\xd4\x66\ -\x40\x02\xf7\x17\x30\x24\x28\x22\x0b\x5c\x63\x51\xde\x8d\xcc\x6f\ -\xfa\xc6\x10\x57\x87\x2c\x60\xcb\xc4\x40\x00\xb0\x30\x30\x30\x6c\ -\x5d\x07\xe7\x5e\x90\x64\xdc\xf8\x10\xce\x0b\xf4\x61\x60\x60\xb0\ -\xf9\xff\x3f\x12\x97\xee\xc8\xff\xff\x6d\x08\x5a\x41\xb9\x02\x16\ -\x18\x83\x53\x0d\x45\xfc\xd6\x77\x74\x05\x9a\x67\x51\x14\x18\x9f\ -\x43\x57\xc0\xc0\xb0\xe9\x20\x9c\x69\xef\x87\x69\x05\x03\xc3\xfe\ -\x09\x70\xe6\x3f\x84\x02\x2a\xf8\xe2\x61\x05\xc3\x05\x5c\x92\x17\ -\x2a\x18\x1e\xb0\xac\xfa\xc2\xa0\x94\x8e\x43\x41\xa1\x22\x83\x3f\ -\xd3\x7f\x06\x06\x46\x5c\x26\xfc\x67\x60\x60\x64\x09\x8b\x66\xd8\ -\x84\x4b\xc1\x04\x3f\x86\x65\x2c\x0a\x1d\x0c\x8f\xae\xe3\x50\x60\ -\xd0\xc1\x70\x94\x8a\x91\xc5\xc0\xe0\x88\x50\x6c\x8f\x55\x81\x9f\ -\x1f\x5e\x13\xae\x1b\xa0\x88\xdf\xc2\x50\xf0\xfd\x22\x99\x8e\xa4\ -\x8e\x37\xa3\x38\xe1\xdc\x0b\x99\xff\x67\x20\x5c\x1b\x04\x55\xe0\ -\xe3\x03\x17\x6a\x92\x63\xf0\x47\xc9\x9b\x84\xad\x60\x94\xd2\x42\ -\xe6\x62\x64\xff\xab\x00\x05\x55\x36\xd2\xb9\x23\xdc\x4e\x00\x00\ -\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\ -\x65\x00\x32\x30\x32\x30\x2d\x30\x34\x2d\x31\x37\x54\x30\x37\x3a\ -\x35\x31\x3a\x30\x30\x2b\x30\x30\x3a\x30\x30\x7c\x4d\x99\x02\x00\ -\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\ -\x66\x79\x00\x32\x30\x32\x30\x2d\x30\x34\x2d\x31\x37\x54\x30\x37\ -\x3a\x35\x31\x3a\x30\x30\x2b\x30\x30\x3a\x30\x30\x0d\x10\x21\xbe\ -\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ -\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\ -\x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ -\x82\ +\x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\xb4\x00\x00\x03\xb4\ +\x01\xd8\x39\x88\xbf\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\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\ \x00\x00\x03\x3c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -100,52 +145,6 @@ qt_resource_data = b"\ \x8d\x2c\x37\x1d\xf9\xaf\x8b\x44\x4d\xec\x96\x88\x9e\xd2\x90\xcf\ \x26\x36\xdb\xb4\xc0\x8d\x3f\xdd\x96\xf1\x25\x4a\xd3\x97\xc3\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\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\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\xb4\x00\x00\x03\xb4\ -\x01\xd8\x39\x88\xbf\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ -\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\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\x1b\x34\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -584,7 +583,44 @@ 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\x04\xfc\ +\x00\x00\x02\x22\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x00\x00\x00\x00\x56\x11\x25\x28\ +\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ +\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ +\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ +\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ +\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\ +\x59\x73\x00\x00\x02\x91\x00\x00\x02\x91\x01\xc0\x1e\xad\x5e\x00\ +\x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x04\x11\x07\x33\x00\xad\x00\ +\x16\xbb\x00\x00\x00\xf0\x49\x44\x41\x54\x38\xcb\x63\x94\xd4\x66\ +\x40\x02\xf7\x17\x30\x24\x28\x22\x0b\x5c\x63\x51\xde\x8d\xcc\x6f\ +\xfa\xc6\x10\x57\x87\x2c\x60\xcb\xc4\x40\x00\xb0\x30\x30\x30\x6c\ +\x5d\x07\xe7\x5e\x90\x64\xdc\xf8\x10\xce\x0b\xf4\x61\x60\x60\xb0\ +\xf9\xff\x3f\x12\x97\xee\xc8\xff\xff\x6d\x08\x5a\x41\xb9\x02\x16\ +\x18\x83\x53\x0d\x45\xfc\xd6\x77\x74\x05\x9a\x67\x51\x14\x18\x9f\ +\x43\x57\xc0\xc0\xb0\xe9\x20\x9c\x69\xef\x87\x69\x05\x03\xc3\xfe\ +\x09\x70\xe6\x3f\x84\x02\x2a\xf8\xe2\x61\x05\xc3\x05\x5c\x92\x17\ +\x2a\x18\x1e\xb0\xac\xfa\xc2\xa0\x94\x8e\x43\x41\xa1\x22\x83\x3f\ +\xd3\x7f\x06\x06\x46\x5c\x26\xfc\x67\x60\x60\x64\x09\x8b\x66\xd8\ +\x84\x4b\xc1\x04\x3f\x86\x65\x2c\x0a\x1d\x0c\x8f\xae\xe3\x50\x60\ +\xd0\xc1\x70\x94\x8a\x91\xc5\xc0\xe0\x88\x50\x6c\x8f\x55\x81\x9f\ +\x1f\x5e\x13\xae\x1b\xa0\x88\xdf\xc2\x50\xf0\xfd\x22\x99\x8e\xa4\ +\x8e\x37\xa3\x38\xe1\xdc\x0b\x99\xff\x67\x20\x5c\x1b\x04\x55\xe0\ +\xe3\x03\x17\x6a\x92\x63\xf0\x47\xc9\x9b\x84\xad\x60\x94\xd2\x42\ +\xe6\x62\x64\xff\xab\x00\x05\x55\x36\xd2\xb9\x23\xdc\x4e\x00\x00\ +\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\ +\x65\x00\x32\x30\x32\x30\x2d\x30\x34\x2d\x31\x37\x54\x30\x37\x3a\ +\x35\x31\x3a\x30\x30\x2b\x30\x30\x3a\x30\x30\x7c\x4d\x99\x02\x00\ +\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\ +\x66\x79\x00\x32\x30\x32\x30\x2d\x30\x34\x2d\x31\x37\x54\x30\x37\ +\x3a\x35\x31\x3a\x30\x30\x2b\x30\x30\x3a\x30\x30\x0d\x10\x21\xbe\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\ +\x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\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\ @@ -594,158 +630,123 @@ 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\ -\x00\x00\x4c\x5e\ +\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\x4d\x3b\ \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\xb0\x00\x04\ -\xe8\x26\x00\x00\x29\xed\x00\x04\xf6\x35\x00\x00\x0f\x5f\x00\x05\ -\xcf\xc7\x00\x00\x47\x58\x00\x39\x3c\xbe\x00\x00\x12\x3b\x00\x40\ -\x71\x74\x00\x00\x25\xab\x00\x49\x3b\xc3\x00\x00\x24\x55\x00\x49\ -\x43\x03\x00\x00\x35\x1a\x00\x4b\xfe\xa8\x00\x00\x29\xba\x00\x4e\ -\x96\xc0\x00\x00\x37\x7f\x00\x53\x81\x62\x00\x00\x26\x3c\x00\x54\ -\x05\x62\x00\x00\x26\x61\x00\x5a\xa8\xf5\x00\x00\x3a\xd5\x00\x5a\ -\xc4\x6f\x00\x00\x1f\xfc\x00\x5a\xe0\x47\x00\x00\x1f\xc7\x00\x5c\ -\xab\xee\x00\x00\x2a\xc6\x00\x5d\xf6\x25\x00\x00\x2a\x95\x00\xbd\ -\xce\x6c\x00\x00\x39\xfb\x00\xc4\x12\x31\x00\x00\x45\x79\x00\xe4\ -\x0d\x94\x00\x00\x10\xe9\x00\xe4\x0d\x94\x00\x00\x18\xa5\x01\x1a\ -\x57\x53\x00\x00\x0e\x26\x01\x28\x89\xfb\x00\x00\x36\x7f\x01\x76\ -\x1a\x2e\x00\x00\x0a\xa3\x01\x86\x51\x9b\x00\x00\x16\xe5\x01\xa4\ -\x6c\x6e\x00\x00\x21\x21\x01\xdc\x66\xf0\x00\x00\x22\x7b\x01\xed\ -\x7d\xb3\x00\x00\x16\x4c\x02\x1d\x26\x98\x00\x00\x39\x85\x02\x55\ -\x6a\xc3\x00\x00\x3a\x5d\x02\x5a\xa8\xf5\x00\x00\x3b\x50\x02\x86\ -\xcc\xc5\x00\x00\x3b\x10\x02\x87\x6c\xc5\x00\x00\x3a\x95\x02\xab\ -\x22\x91\x00\x00\x47\x03\x02\xbc\x2e\x9e\x00\x00\x41\xb7\x02\xc1\ -\x6b\x99\x00\x00\x3f\xf3\x02\xdf\xa5\xde\x00\x00\x36\x20\x02\xe1\ -\xd3\x30\x00\x00\x39\x27\x02\xf2\x1e\xee\x00\x00\x44\x18\x02\xfa\ -\x58\xde\x00\x00\x01\xd4\x03\x40\xab\x34\x00\x00\x25\x76\x03\x5a\ -\x8f\x2e\x00\x00\x25\xdd\x03\x5f\x60\xe3\x00\x00\x0d\x29\x03\x5f\ -\x60\xe3\x00\x00\x1a\xce\x03\x60\xdb\x3e\x00\x00\x1c\xb2\x03\x68\ -\x51\x81\x00\x00\x46\xab\x03\xa6\x57\xb7\x00\x00\x0d\x82\x03\xa7\ -\xc4\xae\x00\x00\x1f\x6e\x03\xd0\x12\x10\x00\x00\x13\x61\x03\xf7\ -\xab\x3b\x00\x00\x16\x9b\x03\xf7\xab\x3b\x00\x00\x37\x35\x04\x47\ -\xc6\x13\x00\x00\x27\xfe\x04\x5b\x2f\x26\x00\x00\x0b\xef\x04\x5b\ -\x2f\x26\x00\x00\x12\xb8\x04\x86\xe5\x11\x00\x00\x33\x3b\x04\x9f\ -\x6c\x40\x00\x00\x17\x7b\x04\xb6\x8f\x7e\x00\x00\x24\xb7\x04\xbf\ -\x6c\x40\x00\x00\x27\x9c\x04\xdc\x93\x7e\x00\x00\x25\x48\x04\xe0\ -\xa3\x79\x00\x00\x3e\x2f\x05\x3f\xaf\x7e\x00\x00\x26\x0e\x05\x65\ -\x36\xc9\x00\x00\x40\xd6\x05\x6c\xdd\x32\x00\x00\x1d\x28\x05\x7b\ -\x97\x60\x00\x00\x30\xad\x05\xa1\xae\xf7\x00\x00\x10\x96\x05\xa1\ -\xae\xf7\x00\x00\x15\xec\x05\xe4\x90\x0e\x00\x00\x19\x15\x06\x3a\ -\xef\x8e\x00\x00\x26\x88\x06\x48\x42\x1d\x00\x00\x38\x59\x06\x59\ -\xcf\xe5\x00\x00\x1f\x1d\x06\x5b\xc0\x3b\x00\x00\x0e\xcc\x06\x5b\ -\xc0\x3b\x00\x00\x11\xfa\x06\x5b\xc0\x3b\x00\x00\x2c\x9d\x06\xcc\ -\x7e\x81\x00\x00\x31\xd4\x06\xf6\xf9\x1a\x00\x00\x3c\x49\x07\x11\ -\xb1\xdb\x00\x00\x15\xa5\x07\x39\xe8\x00\x00\x00\x2b\xd9\x07\x43\ -\xfd\xa3\x00\x00\x1a\x25\x07\x43\xfd\xa3\x00\x00\x37\xfc\x07\x4b\ -\xd0\x00\x00\x00\x1b\xd4\x07\x51\x35\x63\x00\x00\x1c\x6e\x07\x5e\ -\xc1\x5b\x00\x00\x1c\x26\x07\x6c\x61\x9e\x00\x00\x08\xd1\x07\xc1\ -\x6a\xbe\x00\x00\x03\x8d\x08\x0d\xec\x64\x00\x00\x1e\xc0\x08\x45\ -\xb6\x0e\x00\x00\x3c\xfd\x08\x47\x69\x9e\x00\x00\x45\xff\x08\x6b\ -\x58\x49\x00\x00\x14\x0c\x08\xb2\x2b\xce\x00\x00\x2c\xd4\x08\xb8\ -\x9a\x92\x00\x00\x2a\x1d\x09\x3f\x4d\xee\x00\x00\x2e\x89\x09\x4e\ -\xe2\x00\x00\x00\x38\xe2\x09\x63\xc3\x03\x00\x00\x24\x7e\x09\x9a\ -\xbd\xc0\x00\x00\x2f\x5b\x09\xa5\x7b\x9b\x00\x00\x1b\x80\x09\xb0\ -\x8a\xc0\x00\x00\x1b\x28\x09\xc4\x50\x0d\x00\x00\x24\xe5\x09\xd3\ -\x00\x45\x00\x00\x21\xd8\x09\xf6\x31\x83\x00\x00\x1d\xc5\x0a\x3e\ -\xad\x82\x00\x00\x28\x9a\x0a\x46\xc6\xd6\x00\x00\x20\xbd\x0a\x7c\ -\x4b\x2a\x00\x00\x32\xe9\x0b\x03\x42\x80\x00\x00\x2d\xf0\x0b\x14\ -\x3b\x2e\x00\x00\x3b\x8b\x0b\x61\xa6\x2c\x00\x00\x21\x84\x0b\x84\ -\x13\x47\x00\x00\x0c\x96\x0b\x84\x13\x47\x00\x00\x14\xb8\x0b\xa6\ -\x9c\x12\x00\x00\x17\xd7\x0c\x1a\x13\xa4\x00\x00\x1e\x17\x0c\x21\ -\x8a\x65\x00\x00\x19\x6b\x0c\x21\xaf\x55\x00\x00\x37\xb6\x0c\x2d\ -\x6e\xa0\x00\x00\x1d\x7e\x0c\x35\xb0\x79\x00\x00\x42\x37\x0c\x35\ -\xb2\x79\x00\x00\x42\x77\x0c\x3f\xf0\x41\x00\x00\x31\x69\x0c\x42\ -\xb8\x6a\x00\x00\x2c\x28\x0c\x4e\x30\xd8\x00\x00\x25\x17\x0c\x70\ -\x26\xe9\x00\x00\x2f\xe7\x0c\x8d\x62\x22\x00\x00\x34\xc1\x0c\x93\ -\x5e\xa7\x00\x00\x0c\xde\x0c\x93\x5e\xa7\x00\x00\x1a\x82\x0c\xcd\ -\xf0\xf5\x00\x00\x36\xcb\x0c\xd8\x3c\x94\x00\x00\x18\x47\x0c\xf5\ -\x30\x30\x00\x00\x19\xb3\x0d\x06\x25\x95\x00\x00\x11\x4c\x0d\x13\ -\xe6\xf2\x00\x00\x20\x31\x0d\x15\x11\x50\x00\x00\x20\x74\x0d\x15\ -\x8a\xfe\x00\x00\x00\x00\x0d\x3c\x42\x80\x00\x00\x14\x65\x0d\x87\ -\x8c\x35\x00\x00\x29\x2e\x0d\xd2\xe0\x39\x00\x00\x3f\x12\x0d\xe0\ -\x25\x89\x00\x00\x13\xb3\x0d\xfa\x5d\xe6\x00\x00\x35\xbe\x0e\x03\ -\x26\x23\x00\x00\x15\x01\x0e\x03\x26\x23\x00\x00\x26\xf6\x0e\x16\ -\xad\xf3\x00\x00\x1e\x78\x0e\x1a\xa0\xfe\x00\x00\x05\x7a\x0e\x43\ -\x9b\x75\x00\x00\x23\xec\x0e\x45\xb2\xfe\x00\x00\x0c\x45\x0e\x45\ -\xb2\xfe\x00\x00\x13\x0f\x0e\x51\x65\x45\x00\x00\x23\x63\x0f\x03\ -\xdb\x35\x00\x00\x22\x18\x0f\x14\x5c\x1b\x00\x00\x2e\x2d\x0f\x14\ -\x5e\x1b\x00\x00\x0f\x06\x0f\x2c\x8d\x9e\x00\x00\x42\xb7\x0f\x9f\ -\xda\x1e\x00\x00\x26\xc2\x0f\xab\xff\xa8\x00\x00\x2a\x54\x0f\xbd\ -\x25\xe4\x00\x00\x22\xf8\x0f\xdd\x91\xc5\x00\x00\x0f\x96\x0f\xe1\ -\x24\xea\x00\x00\x3c\xa6\x0f\xe6\xec\xc7\x00\x00\x30\xfd\x69\x00\ -\x00\x47\x83\x03\x00\x00\x01\x42\x00\x4d\x00\x49\x00\x44\x00\x49\ +\x00\x00\x00\x05\x64\x65\x5f\x44\x45\x42\x00\x00\x04\xc0\x00\x04\ +\xe8\x26\x00\x00\x2a\xba\x00\x04\xf6\x35\x00\x00\x0f\x61\x00\x05\ +\xcf\xc7\x00\x00\x48\x25\x00\x39\x3c\xbe\x00\x00\x12\x3d\x00\x40\ +\x71\x74\x00\x00\x26\x78\x00\x49\x3b\xc3\x00\x00\x25\x22\x00\x49\ +\x43\x03\x00\x00\x35\xe7\x00\x4b\xfe\xa8\x00\x00\x2a\x87\x00\x4e\ +\x96\xc0\x00\x00\x38\x4c\x00\x53\x81\x62\x00\x00\x27\x09\x00\x54\ +\x05\x62\x00\x00\x27\x2e\x00\x5a\xa8\xf5\x00\x00\x3b\xa2\x00\x5a\ +\xc4\x6f\x00\x00\x20\xc9\x00\x5a\xe0\x47\x00\x00\x20\x94\x00\x5c\ +\xab\xee\x00\x00\x2b\x93\x00\x5d\xf6\x25\x00\x00\x2b\x62\x00\xbd\ +\xce\x6c\x00\x00\x3a\xc8\x00\xc4\x12\x31\x00\x00\x46\x46\x00\xe4\ +\x0d\x94\x00\x00\x10\xeb\x00\xe4\x0d\x94\x00\x00\x18\xa7\x01\x1a\ +\x57\x53\x00\x00\x0e\x26\x01\x28\x89\xfb\x00\x00\x37\x4c\x01\x76\ +\x1a\x2e\x00\x00\x0a\xa3\x01\x86\x51\x9b\x00\x00\x16\xe7\x01\xa4\ +\x6c\x6e\x00\x00\x21\xee\x01\xdc\x66\xf0\x00\x00\x23\x48\x01\xed\ +\x7d\xb3\x00\x00\x16\x4e\x02\x1d\x26\x98\x00\x00\x3a\x52\x02\x55\ +\x6a\xc3\x00\x00\x3b\x2a\x02\x5a\xa8\xf5\x00\x00\x3c\x1d\x02\x86\ +\xcc\xc5\x00\x00\x3b\xdd\x02\x87\x6c\xc5\x00\x00\x3b\x62\x02\xab\ +\x22\x91\x00\x00\x47\xd0\x02\xbc\x2e\x9e\x00\x00\x42\x84\x02\xc1\ +\x6b\x99\x00\x00\x40\xc0\x02\xdf\xa5\xde\x00\x00\x36\xed\x02\xe1\ +\xd3\x30\x00\x00\x39\xf4\x02\xf2\x1e\xee\x00\x00\x44\xe5\x02\xfa\ +\x58\xde\x00\x00\x01\xd4\x03\x40\xab\x34\x00\x00\x26\x43\x03\x5a\ +\x8f\x2e\x00\x00\x26\xaa\x03\x5f\x60\xe3\x00\x00\x0d\x29\x03\x5f\ +\x60\xe3\x00\x00\x1a\xd0\x03\x60\xdb\x3e\x00\x00\x1c\xb4\x03\x68\ +\x51\x81\x00\x00\x47\x78\x03\xa6\x57\xb7\x00\x00\x0d\x82\x03\xa7\ +\xc4\xae\x00\x00\x20\x3b\x03\xd0\x12\x10\x00\x00\x13\x63\x03\xf7\ +\xab\x3b\x00\x00\x16\x9d\x03\xf7\xab\x3b\x00\x00\x38\x02\x04\x47\ +\xc6\x13\x00\x00\x28\xcb\x04\x5b\x2f\x26\x00\x00\x0b\xef\x04\x5b\ +\x2f\x26\x00\x00\x12\xba\x04\x86\xe5\x11\x00\x00\x34\x08\x04\x9f\ +\x6c\x40\x00\x00\x17\x7d\x04\xb6\x8f\x7e\x00\x00\x25\x84\x04\xbf\ +\x6c\x40\x00\x00\x28\x69\x04\xdc\x93\x7e\x00\x00\x26\x15\x04\xe0\ +\xa3\x79\x00\x00\x3e\xfc\x05\x3f\xaf\x7e\x00\x00\x26\xdb\x05\x65\ +\x36\xc9\x00\x00\x41\xa3\x05\x6c\xdd\x32\x00\x00\x1d\x2a\x05\x7b\ +\x97\x60\x00\x00\x31\x7a\x05\xa1\xae\xf7\x00\x00\x10\x98\x05\xa1\ +\xae\xf7\x00\x00\x15\xee\x05\xe4\x90\x0e\x00\x00\x19\x17\x06\x3a\ +\xef\x8e\x00\x00\x27\x55\x06\x48\x42\x1d\x00\x00\x39\x26\x06\x59\ +\xcf\xe5\x00\x00\x1f\x86\x06\x5b\xc0\x3b\x00\x00\x11\xfc\x06\x5b\ +\xc0\x3b\x00\x00\x2d\x6a\x06\xa8\xb7\x72\x00\x00\x1e\x19\x06\xcc\ +\x0a\xde\x00\x00\x0e\xcc\x06\xcc\x7e\x81\x00\x00\x32\xa1\x06\xf6\ +\xf9\x1a\x00\x00\x3d\x16\x07\x11\xb1\xdb\x00\x00\x15\xa7\x07\x39\ +\xe8\x00\x00\x00\x2c\xa6\x07\x43\xfd\xa3\x00\x00\x1a\x27\x07\x43\ +\xfd\xa3\x00\x00\x38\xc9\x07\x4b\xd0\x00\x00\x00\x1b\xd6\x07\x51\ +\x35\x63\x00\x00\x1c\x70\x07\x5e\xc1\x5b\x00\x00\x1c\x28\x07\x6c\ +\x61\x9e\x00\x00\x08\xd1\x07\xc1\x6a\xbe\x00\x00\x03\x8d\x08\x0d\ +\xec\x64\x00\x00\x1f\x29\x08\x45\xb6\x0e\x00\x00\x3d\xca\x08\x47\ +\x69\x9e\x00\x00\x46\xcc\x08\x6b\x58\x49\x00\x00\x14\x0e\x08\xb2\ +\x2b\xce\x00\x00\x2d\xa1\x08\xb8\x9a\x92\x00\x00\x2a\xea\x09\x3f\ +\x4d\xee\x00\x00\x2f\x56\x09\x4e\xe2\x00\x00\x00\x39\xaf\x09\x63\ +\xc3\x03\x00\x00\x25\x4b\x09\x9a\xbd\xc0\x00\x00\x30\x28\x09\xa5\ +\x7b\x9b\x00\x00\x1b\x82\x09\xb0\x8a\xc0\x00\x00\x1b\x2a\x09\xc4\ +\x50\x0d\x00\x00\x25\xb2\x09\xd3\x00\x45\x00\x00\x22\xa5\x09\xf6\ +\x31\x83\x00\x00\x1d\xc7\x0a\x3e\xad\x82\x00\x00\x29\x67\x0a\x46\ +\xc6\xd6\x00\x00\x21\x8a\x0a\x7c\x4b\x2a\x00\x00\x33\xb6\x0b\x03\ +\x42\x80\x00\x00\x2e\xbd\x0b\x14\x3b\x2e\x00\x00\x3c\x58\x0b\x61\ +\xa6\x2c\x00\x00\x22\x51\x0b\x84\x13\x47\x00\x00\x0c\x96\x0b\x84\ +\x13\x47\x00\x00\x14\xba\x0b\xa6\x9c\x12\x00\x00\x17\xd9\x0c\x1a\ +\x13\xa4\x00\x00\x1e\x80\x0c\x21\x8a\x65\x00\x00\x19\x6d\x0c\x21\ +\xaf\x55\x00\x00\x38\x83\x0c\x2d\x6e\xa0\x00\x00\x1d\x80\x0c\x35\ +\xb0\x79\x00\x00\x43\x04\x0c\x35\xb2\x79\x00\x00\x43\x44\x0c\x3f\ +\xf0\x41\x00\x00\x32\x36\x0c\x42\xb8\x6a\x00\x00\x2c\xf5\x0c\x4e\ +\x30\xd8\x00\x00\x25\xe4\x0c\x70\x26\xe9\x00\x00\x30\xb4\x0c\x8d\ +\x62\x22\x00\x00\x35\x8e\x0c\x93\x5e\xa7\x00\x00\x0c\xde\x0c\x93\ +\x5e\xa7\x00\x00\x1a\x84\x0c\xcd\xf0\xf5\x00\x00\x37\x98\x0c\xd8\ +\x3c\x94\x00\x00\x18\x49\x0c\xf5\x30\x30\x00\x00\x19\xb5\x0d\x06\ +\x25\x95\x00\x00\x11\x4e\x0d\x13\xe6\xf2\x00\x00\x20\xfe\x0d\x15\ +\x11\x50\x00\x00\x21\x41\x0d\x15\x8a\xfe\x00\x00\x00\x00\x0d\x3c\ +\x42\x80\x00\x00\x14\x67\x0d\x87\x8c\x35\x00\x00\x29\xfb\x0d\xd2\ +\xe0\x39\x00\x00\x3f\xdf\x0d\xe0\x25\x89\x00\x00\x13\xb5\x0d\xfa\ +\x5d\xe6\x00\x00\x36\x8b\x0e\x03\x26\x23\x00\x00\x15\x03\x0e\x03\ +\x26\x23\x00\x00\x27\xc3\x0e\x16\xad\xf3\x00\x00\x1e\xe1\x0e\x1a\ +\xa0\xfe\x00\x00\x05\x7a\x0e\x2f\x2d\xd9\x00\x00\x1f\xd7\x0e\x43\ +\x9b\x75\x00\x00\x24\xb9\x0e\x45\xb2\xfe\x00\x00\x0c\x45\x0e\x45\ +\xb2\xfe\x00\x00\x13\x11\x0e\x51\x65\x45\x00\x00\x24\x30\x0f\x03\ +\xdb\x35\x00\x00\x22\xe5\x0f\x14\x5c\x1b\x00\x00\x2e\xfa\x0f\x14\ +\x5e\x1b\x00\x00\x0f\x08\x0f\x2c\x8d\x9e\x00\x00\x43\x84\x0f\x9f\ +\xda\x1e\x00\x00\x27\x8f\x0f\xab\xff\xa8\x00\x00\x2b\x21\x0f\xbd\ +\x25\xe4\x00\x00\x23\xc5\x0f\xdd\x91\xc5\x00\x00\x0f\x98\x0f\xe1\ +\x24\xea\x00\x00\x3d\x73\x0f\xe6\xec\xc7\x00\x00\x31\xca\x69\x00\ +\x00\x48\x50\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\x00\x29\x00\x20\x00\x77\x00\x65\ @@ -983,940 +984,953 @@ qt_resource_data = b"\ \x20\x72\x65\x6f\x72\x64\x65\x72\x20\x67\x72\x6f\x75\x70\x73\x07\ \x00\x00\x00\x0a\x47\x72\x6f\x75\x70\x4c\x61\x62\x65\x6c\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\x0a\x4d\x61\ -\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x26\x00\x4b\ -\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\ -\x00\x75\x00\x65\x00\x6c\x00\x6c\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\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x54\x72\x61\ -\x63\x6b\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ -\x77\x01\x03\x00\x00\x00\x14\x00\x5a\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\x04\x48\x6f\x6d\x65\x07\x00\x00\x00\x0a\x4d\x61\ -\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\xb6\x00\x54\ -\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x72\x00\x74\x00\x61\x00\x75\ -\x00\x66\x00\x73\x00\x70\x00\x61\x00\x6c\x00\x74\x00\x75\x00\x6e\ -\x00\x67\x00\x20\x00\x64\x00\x75\x00\x72\x00\x63\x00\x68\x00\x20\ +\x00\x70\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x41\x64\x64\x20\x50\x61\x74\x74\x65\x72\x6e\x07\x00\x00\x00\x0a\ +\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x26\ +\x00\x4b\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6b\ +\x00\x74\x00\x75\x00\x65\x00\x6c\x00\x6c\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\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x54\ +\x72\x61\x63\x6b\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x5a\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\x04\x48\x6f\x6d\x65\x07\x00\x00\x00\x0a\ +\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\xb6\ +\x00\x54\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x72\x00\x74\x00\x61\ +\x00\x75\x00\x66\x00\x73\x00\x70\x00\x61\x00\x6c\x00\x74\x00\x75\ +\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x75\x00\x72\x00\x63\x00\x68\ +\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\x20\x00\x75\x00\x6d\x00\x77\ +\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x6e\x00\x2c\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\x75\x00\x63\x00\x68\x00\x74\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x4d\x00\x75\x00\x73\ +\x00\x69\x00\x6b\x00\x20\x00\x67\x00\x6c\x00\x65\x00\x69\x00\x63\ +\x00\x68\x00\x20\x00\x6b\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x6c\x00\x61\x00\x73\ +\x00\x73\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ +\x43\x68\x61\x6e\x67\x65\x20\x73\x74\x65\x70\x2d\x67\x72\x6f\x75\ +\x70\x69\x6e\x67\x20\x62\x75\x74\x20\x6b\x65\x65\x70\x20\x79\x6f\ +\x75\x72\x20\x6d\x75\x73\x69\x63\x20\x74\x68\x65\x20\x73\x61\x6d\ +\x65\x07\x00\x00\x00\x04\x4d\x65\x6e\x75\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\x00\x2c\x00\x20\x00\x76\ -\x00\x65\x00\x72\x00\x73\x00\x75\x00\x63\x00\x68\x00\x74\x00\x20\ -\x00\x64\x00\x69\x00\x65\x00\x20\x00\x4d\x00\x75\x00\x73\x00\x69\ -\x00\x6b\x00\x20\x00\x67\x00\x6c\x00\x65\x00\x69\x00\x63\x00\x68\ -\x00\x20\x00\x6b\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\ -\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x73\ -\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x68\ -\x61\x6e\x67\x65\x20\x73\x74\x65\x70\x2d\x67\x72\x6f\x75\x70\x69\ -\x6e\x67\x20\x62\x75\x74\x20\x6b\x65\x65\x70\x20\x79\x6f\x75\x72\ -\x20\x6d\x75\x73\x69\x63\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x07\ -\x00\x00\x00\x04\x4d\x65\x6e\x75\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\x04\x4d\x65\x6e\x75\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\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\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\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\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\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\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\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\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\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\ +\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\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\ +\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\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\ +\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\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\x22\x00\x56\x00\x65\ -\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\x65\x00\x62\x00\x65\ -\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x6f\x76\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\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\ +\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\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\ +\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\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\ +\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\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\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\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\ -\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\ +\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\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\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\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\ +\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\x22\x00\x56\ +\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\x65\x00\x62\ +\x00\x65\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x6f\x76\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\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\x18\x00\x53\x00\x70\ -\x00\x75\x00\x72\x00\x65\x00\x6e\x00\x67\x00\x72\x00\x75\x00\x70\ -\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x72\ -\x61\x63\x6b\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\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\ +\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\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\ +\x2a\x00\x41\x00\x75\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x00\x73\x00\x2d\x00\ +\x46\x00\x61\x00\x6b\x00\x74\x00\x6f\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x53\x65\x74\x20\x41\x75\x67\x6d\x65\x6e\x74\ +\x61\x74\x69\x6f\x6e\x20\x46\x61\x63\x74\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\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\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\ +\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\x30\x00\ +\x56\x00\x65\x00\x72\x00\x7a\x00\xf6\x00\x67\x00\x65\x00\x72\x00\ +\x75\x00\x6e\x00\x67\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\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x53\x65\x74\x20\x53\x74\x65\ +\x70\x20\x44\x65\x6c\x61\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\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\ +\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\ -\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\ +\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\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\x18\x00\x53\x00\x70\x00\x75\x00\ +\x72\x00\x65\x00\x6e\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x72\x61\x63\x6b\ +\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\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\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\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\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\x2a\x00\x4e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x47\x00\ -\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x65\x00\x72\x00\ -\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1a\x43\x72\x65\x61\x74\x65\x20\x61\x20\ -\x6e\x65\x77\x20\x67\x72\x6f\x75\x70\x20\x62\x79\x20\x6e\x61\x6d\ -\x65\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\x0c\x00\x47\x00\x72\x00\x75\x00\x70\x00\ -\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x47\x72\x6f\ -\x75\x70\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\x47\ -\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x6e\x00\x61\ -\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x47\x72\ -\x6f\x75\x70\x20\x4e\x61\x6d\x65\x07\x00\x00\x00\x11\x54\x72\x61\ +\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\x2a\ +\x00\x4e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x47\x00\x72\x00\x75\ +\x00\x70\x00\x70\x00\x65\x00\x20\x00\x65\x00\x72\x00\x73\x00\x74\ +\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x43\x72\x65\x61\x74\x65\x20\x61\x20\x6e\x65\x77\ +\x20\x67\x72\x6f\x75\x70\x20\x62\x79\x20\x6e\x61\x6d\x65\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\ +\x00\x00\x00\x0c\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x47\x72\x6f\x75\x70\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\x47\x00\x72\x00\ +\x75\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x6d\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x47\x72\x6f\x75\x70\ +\x20\x4e\x61\x6d\x65\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\ +\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\x16\x00\x4e\x00\x65\x00\x75\x00\x65\x00\ +\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x4e\x65\x77\x20\x47\x72\x6f\x75\x70\ +\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\x2c\x00\x41\x00\x75\ +\x00\x73\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ +\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x66\x00\x65\x00\x72\x00\x6e\ +\x00\x65\x00\x6e\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x66\x72\x6f\x6d\x20\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\x4e\x00\x65\x00\x75\ -\x00\x65\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4e\x65\x77\x20\x47\x72\ -\x6f\x75\x70\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\x2c\x00\ -\x41\x00\x75\x00\x73\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\ -\x70\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x66\x00\x65\x00\ -\x72\x00\x6e\x00\x65\x00\x6e\x00\x3a\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x66\x72\x6f\x6d\ -\x20\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\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\ +\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\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\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\ +\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\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\x84\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\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\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\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\ +\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\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\x86\x00\x54\x00\x72\x00\ +\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\ -\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\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\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\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\x66\x00\x50\x00\x6c\x00\x61\x00\x79\x00\ -\x68\x00\x65\x00\x61\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ -\x4d\x00\x75\x00\x73\x00\x74\x00\x65\x00\x72\x00\x61\x00\x6e\x00\ -\x73\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x64\x00\x75\x00\ -\x72\x00\x63\x00\x68\x00\x20\x00\x53\x00\x63\x00\x72\x00\x6f\x00\ -\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x65\x00\x72\x00\ -\x66\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\x2e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x6c\x6c\x6f\x77\x20\x70\x6c\ -\x61\x79\x68\x65\x61\x64\x20\x69\x6e\x20\x70\x61\x74\x74\x65\x72\ -\x6e\x2d\x76\x69\x65\x77\x20\x62\x79\x20\x73\x63\x72\x6f\x6c\x6c\ -\x69\x6e\x67\x2e\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\ +\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\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\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\x66\x00\x50\x00\x6c\x00\x61\x00\x79\x00\x68\x00\x65\ +\x00\x61\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x4d\x00\x75\ +\x00\x73\x00\x74\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x69\ +\x00\x63\x00\x68\x00\x74\x00\x20\x00\x64\x00\x75\x00\x72\x00\x63\ +\x00\x68\x00\x20\x00\x53\x00\x63\x00\x72\x00\x6f\x00\x6c\x00\x6c\ +\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x65\x00\x72\x00\x66\x00\x6f\ +\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x46\x6f\x6c\x6c\x6f\x77\x20\x70\x6c\x61\x79\x68\ +\x65\x61\x64\x20\x69\x6e\x20\x70\x61\x74\x74\x65\x72\x6e\x2d\x76\ +\x69\x65\x77\x20\x62\x79\x20\x73\x63\x72\x6f\x6c\x6c\x69\x6e\x67\ +\x2e\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\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\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\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\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\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\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\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\x05\ \x00\x6a\x85\x7d\ \x00\x64\ @@ -1925,32 +1939,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\x38\x00\x00\x00\x00\x00\x01\x00\x00\x05\x66\ -\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x23\x5d\ -\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x01\x00\x00\x02\x26\ +\x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x25\x9e\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x58\x00\x00\x00\x00\x00\x01\x00\x00\x08\x25\ -\x00\x00\x00\x78\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ +\x00\x00\x00\x16\x00\x00\x00\x00\x00\x01\x00\x00\x05\x00\ +\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x23\x78\ +\x00\x00\x00\x32\x00\x00\x00\x00\x00\x01\x00\x00\x08\x40\ +\x00\x00\x00\x6e\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\x38\x00\x00\x00\x00\x00\x01\x00\x00\x05\x66\ -\x00\x00\x01\x77\x9c\xd2\x47\x56\ -\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x23\x5d\ -\x00\x00\x01\x77\x9c\xd2\x47\x56\ -\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x01\x00\x00\x02\x26\ -\x00\x00\x01\x77\x9c\xd2\x47\x56\ +\x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x25\x9e\ +\x00\x00\x01\x7a\x59\x5d\xb8\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01\x77\x9c\xd2\x47\x4f\ -\x00\x00\x00\x58\x00\x00\x00\x00\x00\x01\x00\x00\x08\x25\ -\x00\x00\x01\x77\x9c\xd2\x47\x52\ -\x00\x00\x00\x78\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ +\x00\x00\x01\x7a\x59\x5d\xb8\x00\ +\x00\x00\x00\x16\x00\x00\x00\x00\x00\x01\x00\x00\x05\x00\ +\x00\x00\x01\x7a\x59\x5d\xb8\x00\ +\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x23\x78\ +\x00\x00\x01\x7a\x59\x5d\xb7\xf6\ +\x00\x00\x00\x32\x00\x00\x00\x00\x00\x01\x00\x00\x08\x40\ +\x00\x00\x01\x7a\x59\x5d\xb7\xf6\ +\x00\x00\x00\x6e\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\x9c\xd2\x47\x52\ +\x00\x00\x01\x7a\x63\xe7\xc7\x3b\ " 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 fa35df540e96e2f4764cb1b2b16013c3a4337a0a..f118948269c5f3b0c092d3f8eb7b1ced22c93b76 100644 GIT binary patch delta 1417 zcmYLJ3s6*L6#n+!eX{rN6&4hhzy;YAd1IpBBCsGJgAqhN!bdK!5wI?VYh#!$AcG_2 zE6hmCM<_TkJ_27^7>=M}q?C?nC}IJcDKeHgsaa>;ncA71@BZh%_xsQJzH|P*deK+g zM4No=?GWGA13@Ps9*qJ76C@YT0<(08i9HFp%|OCiHbB1uX@=8)&L3$>ED&`I>Cg7j zcWaTcwH=6_jqJ)?V4?!AN*ox5oP7@g!)M6pC;_xx$mvfd+=7M8!$5Ey7LDovdvGq= z&Rc-#-=f1U5=cqG0KWwo^Scv0n?#y<*?>wf3S9RDm^NGVwk8a4X%N+9Z3o8Q678{A z0l#6F%WUb!M%l6LuJKnP&gZ zKxz;3b=VFdv6?wm{4tQw&fM7B2TZ-k+`Je8#Qe!T@TJUW4lpgZ3bt|HG1{+Un>r4V5(c)%ZHygI=dq8P z4V3YxPK;*6sb|zc;CJE$;be{Sz7yR}h-(I2fhltFPD=tXZk71x#?@p=wfGyyI_x>sVJ+65RJB$n%w0iPhr%8!-+k>!%z2kehX>Uw%0^ca>5 zY*GPU1^{4oa=d8b)YDqXRytsRI6RP0^3ozAUN*bmiGz&l9Mk;&5w zEsBds2K@IbMkCjdRA*h{_E!Ou3S3goT&5U6tJT!y+*T*LpHMb_;zm|oQYEe@Q?#g7|(N6E)S` z_aiiR)9Se^u{1@VY23pIYF@7+yj1rgS(m}9haOP#J>xxGGpQiEk@u*52Kw=_j*8q1 z__gmxQN>UAANyl~_#1q`ZXGr05&rR_A)1EwRIGjidCEF*;%U{`{eMtpH&vQl#3LzJ zg@;}xtA0`?ZC?%qe5p!qp*WZ9M766b%S;LfL#x8C=kC-RBF+~+*y7$u(n8MVZ3t*ex& dJ+1$-sT^$CHgl|(_p_613LTEtJpfWmOp+eIdWB|lnkY2wABxfTs`U;>jBJRz7fX<8*<5gf?CQ=eOz@SCy>Sen3 zHPY()fN&GG9oh}(qp@AO#zN#=UIe0kLC(PIz>Ck2GnGudhMndIfd3HkmUMv0zYe`4 zWkBRp45&hZ!~>XCehS#nS?SWuXtTBff}ZiKehP${nEl!yz_y7wn$ZY2%`g|s$^kDg z=Jsm~fOiFR|9uOcZ)M%}XUOjdZ024{JSva|^$i=1B_Z$=nyk{sffkt<;Wi1>-Tm3!U7aj6*<@nQO`Frsq}MrGYl;L^*duWp4u1h1?Ufkuq+y zGTb0Z9#R9otCHMc8jamUD^)#`qcaY`OGe50vN*uGLeh1jl19=k`EJejJuA6gOSW!{ zWUA=^5ECqoZ6{kVNQ=XM0OD>*%O*Ag?tapW&kBH$R_T{*rYF?udiq0joR?0Y6aZI8 zS=7T%=;DX6E%EL^#17ex>ob(GyDYbl5*3E6bXc}B;0xJsB~=(YDqH$j3q+^L9ljbT zf6em9djK~4CQn#t0<=0S!=K4hZ_v5hs60b36j6)H<@x=&M15^L>tyoivq|itJfc@@ zl1t8!B%a%pW~Tre-llWI2oNx8)6;O8G~}*`edPfVRINz6Oa3D6DvGXh)R0O=LvJ4t zoU3TAXrwp?6&*EXyZI>w(v|dlMsX8~B$+YAQs`l7$e?XZYZc(vV4E~_izMOMYx`cR zKd^Dmj*CAC1TNTVj6tNCkL(It0_frqyCZ56Ghc6|rpK=3tcoV`E3Z{w1U#I1ubN_N zWGU~}o=MBm#RryOpg@(pp@Sw9AI=*(*Z4LcyRexWSHj2l?4`o|__UBQl7!Bge?vb< z75v2?-|Y=->gQ|oFHyirE45YpPYbkNVL$R?(X=cs$^2pnY1GxCl?6Q4 zRO#rDPTZ$-tXT#9l+kMiX^NG{J~q(y1}T4@iX^S8lvBEDlA=YqoM)P)^}Zr-dLJ4g zW2JscaB6)_mAxZqFOVbYyFx5fO&d$^K tC}gFCR`jrCS~4%3b{1+QHTISTwS#Ec 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. @@ -75,7 +75,7 @@ GroupLabel - + grab and move to reorder groups mit der maus halten und ziehen um Gruppen anzuordnen @@ -84,39 +84,49 @@ MainWindow - Add Track + Add Pattern Neue Spur - + Clone selected Track Klone aktuelle Spur - + Home Zum Anfang + + + Add a new Pattern Track + + + + + Add PianoRoll + + 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 @@ -363,26 +373,36 @@ Move Group Verschiebe Gruppe + + + Set Step Delay + Verzögerung in Schritten + + + + Set Augmentation Factor + Augmentierungs-Faktor + 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 @@ -390,72 +410,72 @@ Scale - + Major Dur - + Minor Moll - + Dorian Dorisch - + Phrygian Phrygisch - + Lydian Lydisch - + Mixolydian Mixolydisch - + Locrian Lokrisch - + Blues Blues - + Hollywood Hollywood - + English Englisch - + Lilypond Lilypond - + German Deutsch - + Drums GM Drums GM - + Chromatic Chromatisch @@ -473,55 +493,123 @@ Lösche {} Takte von Takt {} beginnend - + Insert empty group before this one Leere Taktgruppe vor dieser einfügen - + Delete whole group Lösche diese Taktgruppe - + Duplicate whole group including measures Verdopple diese Taktgruppe inkl. Struktur - + Clear all group transpositions Setze alle Transpositionen dieser Taktgruppe zurück - + Exchange group with right neigbour Tausche Gruppe mit rechter Nachbargruppe + + Statusbar + + + Note: Left click do deactivate. Middle click to listen. MouseWheel to change volume. Right click for pattern options. + + + + + Left click do activate note. Middle click to listen. Right click for pattern options. + + + + + Pitch in MIDI half-tones. 60 = middle C. Enter number or spin the mouse wheel to change. + + + + + Click to change volume for all notes in single steps, spin mouse wheel to change in steps of 10. + + + + + Empty Measure: Left click to activate. Middle click to show as shadows in current pattern. Right click for measure group options. + + + + + Measure: Left click to deactivate. Middle click to show as shadows in current pattern. Shift+MouseWheel for half tone transposition. Alt+MouseWheel for in-scale transposition. Right click for measure group options. + + + + + Measure length multiplicator. Enter number or spin the mouse wheel to change. + + + + + Left click to change track color + + + + + Hold left mouse button and move to reorder tracks + + + + + Click to select track. Double click to change track name + + + + + Track Group: Double Click to show or hide. You can also double click the empty group spacers above the tracks. + + + + + Hold left mouse button and move to reorder track groups + + + + + Timeline: Click to set playback position. Scroll with mousewheel to adjust measure grouping. Right click on measures below for options to use these groups. + + + TimeSignature - + Whole Ganze - + Half Halbe - + Quarter Viertel - + Eigth Achtel - + Sixteenth Sechzehntel @@ -529,7 +617,7 @@ Timeline - + Click to set playback position. Scroll with mousewheel to adjust measure grouping. Klicken um die Wiedergabeposition zu ändern. Mausrad um die Taktgruppen zu ändern. @@ -537,32 +625,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 @@ -577,47 +665,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! @@ -625,12 +713,12 @@ TrackLabel - + grab and move to reorder tracks mit der maus halten und ziehen um Spuren anzuordnen - + change track color setze Farbe der Spur @@ -638,27 +726,27 @@ TrackLabelContext - + Invert Measures Taktauswahl umdrehen - + All Measures On Alle Takte anschalten - + All Measures Off Alle Takte ausschalten - + Clone this Track Spur klonen - + Delete Track Spur löschen @@ -668,42 +756,42 @@ Übernimm Struktur von - + Merge/Copy Measure-Structure from Übernimm und ergänze Struktur von - + Replace Pattern with Ersetze Noten des Taktes durch - + Send on MIDI Channel Sende auf MIDI Kanal - + Group Name Gruppenname - + Create a new group by name Neue Gruppe erstellen - + Group Gruppe - + New Group Neue Gruppe - + Remove from Aus Gruppe entfernen: @@ -711,72 +799,72 @@ TransposeControls - + +Half Tone +Halbton - + Transpose the whole scale up a half tone (+1 midi note) Transponiere die Tonleiter einen Halbton aufwärts (+1 MIDI Tonhöhe) - + -Half Tone -Halbton - + Transpose the whole scale down a half tone (-1 midi note) Transponiere die Tonleiter einen Halbton abwärts (-1 MIDI Tonhöhe) - + +Octave +Oktave - + Transpose the whole scale up an octave (+12 midi notes) Transponiere die Tonleiter eine Oktave aufwärts (+12 MIDI Tonhöhe) - + -Octave -Oktave - + Transpose the whole scale down an octave (-12 midi notes) Transponiere die Tonleiter eine Oktave abwärts (-12 MIDI Tonhöhe) - + Set Scale to: Benutze Tonleiter: - + Take the bottom note and build a predefined scale from it upwards. Ändere die Tonleiter des Musters auf die Ausgewählte. Referenzton ist die unterste Reihe des Musters. - + Set Notenames to: Benutze Notennamen: - + Use this scheme as note names. Use this scheme as note names. - + Choose how many different notes does this pattern should have. Anzahl der verschiedenen Tonhöhen-Stufen aus. - + Notes Noten @@ -784,22 +872,22 @@ VelocityControls - + +Velocity +Velocity - + Make everything louder. Hover and mousewheel up/down to go in steps of 10. Alle Töne lauter machen. Mit dem Mauszeiger über dem Knopf bleiben und das Mausrad auf oder ab bewegen für 10er Schritte. - + -Velocity -Velocity - + Make everything softer. Hover and mousewheel up/down to go in steps of 10. Alle Töne leiser machen. Mit dem Mauszeiger über dem Knopf bleiben und das Mausrad auf oder ab bewegen für 10er Schritte. @@ -835,27 +923,27 @@ 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 - + Follow playhead in pattern-view by scrolling. Playhead in Musteransicht durch Scrollen verfolgen. diff --git a/qtgui/songeditor.py b/qtgui/songeditor.py index a6fa90b..58244e4 100644 --- a/qtgui/songeditor.py +++ b/qtgui/songeditor.py @@ -21,12 +21,21 @@ along with this program. If not, see . import logging; logger = logging.getLogger(__name__); logger.info("import") +#Standard Library +from fractions import Fraction from time import time -import engine.api as api #Session is already loaded and created, no duplication. -import template.qtgui.helper as helper +#Third Party from PyQt5 import QtCore, QtGui, QtWidgets +#Template +import template.qtgui.helper as helper + +#Our modules +import engine.api as api #Session is already loaded and created, no duplication. + + + SIZE_UNIT = 25 #this is in manual sync with timeline.py SIZE_UNIT SIZE_TOP_OFFSET = 0 @@ -67,6 +76,8 @@ class SongEditor(QtWidgets.QGraphicsScene): self.brightPen = QtGui.QPen(self.parentView.parentMainWindow.fPalBlue.color(role)) self.normalPen = QtGui.QPen() + self.currentHoverStep = None #either a Step() object or None. Only set when hovering active steps. + api.callbacks.numberOfTracksChanged.append(self.callback_numberOfTracksChanged) api.callbacks.timeSignatureChanged.append(self.callback_timeSignatureChanged) api.callbacks.numberOfMeasuresChanged.append(self.callback_setnumberOfMeasures) @@ -328,6 +339,8 @@ class TrackStructure(QtWidgets.QGraphicsRectItem): switch.setBrush(self.currentColor) switch.setScaleTransposeColor(self.labelColor) switch.setHalftoneTransposeColor(self.labelColor) + switch.setStepDelayColor(self.labelColor) + switch.setAugmentationFactorColor(self.labelColor) def updatePatternLengthMultiplicator(self, exportDict): """Comes via its own callback, also named callback_patternLengthMultiplicatorChanged. @@ -375,6 +388,8 @@ class TrackStructure(QtWidgets.QGraphicsRectItem): structure = self.exportDict["structure"] whichPatternsAreScaleTransposed = self.exportDict["whichPatternsAreScaleTransposed"] whichPatternsAreHalftoneTransposed = self.exportDict["whichPatternsAreHalftoneTransposed"] + whichPatternsAreStepDelayed = self.exportDict["whichPatternsAreStepDelayed"] + whichPatternsHaveAugmentationFactor = self.exportDict["whichPatternsHaveAugmentationFactor"] factor = self.exportDict["patternLengthMultiplicator"] #requestAmountOfMeasures = requestAmountOfMeasures // factor #already is. @@ -412,6 +427,16 @@ class TrackStructure(QtWidgets.QGraphicsRectItem): else: switch.halftoneTransposeOff() + if position in whichPatternsAreStepDelayed: + switch.setStepDelay(whichPatternsAreStepDelayed[position]) + else: + switch.stepDelayOff() + + if position in whichPatternsHaveAugmentationFactor: + switch.setAugmentationFactor(whichPatternsHaveAugmentationFactor[position]) + else: + switch.augmentationFactorOff() + if not vis: switch.hide() @@ -577,7 +602,7 @@ class Switch(QtWidgets.QGraphicsRectItem): self.scaleTransposeGlyph.setPos(2,1) self.scaleTransposeGlyph.setBrush(self.parentTrackStructure.labelColor) self.scaleTransposeGlyph.hide() - self.scaleTranspose = 0 + self.scaleTranspose = 0 #default engine value, safe to assume that it will never change as default. self.halftoneTransposeGlyph = QtWidgets.QGraphicsSimpleTextItem("") self.halftoneTransposeGlyph.setParentItem(self) @@ -585,7 +610,24 @@ class Switch(QtWidgets.QGraphicsRectItem): self.halftoneTransposeGlyph.setPos(1,13) self.halftoneTransposeGlyph.setBrush(self.parentTrackStructure.labelColor) self.halftoneTransposeGlyph.hide() - self.halftoneTranspose = 0 + self.halftoneTranspose = 0 #default engine value, safe to assume that it will never change as default. + + self.stepDelayGlyph = QtWidgets.QGraphicsSimpleTextItem("") + self.stepDelayGlyph.setParentItem(self) + self.stepDelayGlyph.setScale(0.80) + self.stepDelayGlyph.setPos(1,13) + self.stepDelayGlyph.setBrush(self.parentTrackStructure.labelColor) + self.stepDelayGlyph.hide() + self.stepDelay = 0 #default engine value, safe to assume that it will never change as default. + + self.augmentationFactorGlyph = QtWidgets.QGraphicsSimpleTextItem("") + self.augmentationFactorGlyph.setParentItem(self) + self.augmentationFactorGlyph.setScale(0.80) + self.augmentationFactorGlyph.setPos(1,13) + self.augmentationFactorGlyph.setBrush(self.parentTrackStructure.labelColor) + self.augmentationFactorGlyph.hide() + self.augmentationFactor = 0 #default engine value, safe to assume that it will never change as default. + def stretch(self, factor): """factor assumes relative to SIZE_UNIT""" @@ -594,6 +636,8 @@ class Switch(QtWidgets.QGraphicsRectItem): self.setRect(r) + #Scale Transpose + def setScaleTranspose(self, value): """ Called by track callbacks and also for the temporary buffer display @@ -609,7 +653,7 @@ class Switch(QtWidgets.QGraphicsRectItem): self._setScaleTransposeLabel(value) def _setScaleTransposeLabel(self, value): - text = ("+" if value > 0 else "") + str(value) + "s" + text = ("+" if value > 0 else "") + str(value) + "s" #because - is added automatically self.scaleTransposeGlyph.setText(text) self.scaleTransposeGlyph.show() @@ -622,12 +666,25 @@ class Switch(QtWidgets.QGraphicsRectItem): self.scaleTranspose = 0 self._bufferScaleTranspose = 0 + def increaseScaleTranspose(self): + """By 1. Convenience function to make code in mainWindow cleaner""" + self._bufferScaleTranspose += 1 + self._setScaleTransposeLabel(self._bufferScaleTranspose) + + def decreaseScaleTranspose(self): + """By 1. Convenience function to make code in mainWindow cleaner""" + self._bufferScaleTranspose -= 1 + self._setScaleTransposeLabel(self._bufferScaleTranspose) + + + #Halftone Transpose + def setHalftoneTranspose(self, value): self.halftoneTranspose = value self._setHalftoneTransposeLabel(value) def _setHalftoneTransposeLabel(self, value): - text = ("+" if value > 0 else "") + str(value) + "h" + text = ("+" if value > 0 else "") + str(value) + "h" #because - is added automatically self.halftoneTransposeGlyph.setText(text) self.halftoneTransposeGlyph.show() @@ -638,8 +695,80 @@ class Switch(QtWidgets.QGraphicsRectItem): self.halftoneTransposeGlyph.setText("") #self.halftoneTransposeGlyph.hide() self.halftoneTranspose = 0 - self._bufferhalftoneTranspose = 0 + self._bufferHalftoneTranspose = 0 + + def increaseHalftoneTranspose(self): + """By 1. Convenience function to make code in mainWindow cleaner""" + self._bufferHalftoneTranspose += 1 + self._setHalftoneTransposeLabel(self._bufferHalftoneTranspose) + + def decreaseHalftoneTranspose(self): + """By 1. Convenience function to make code in mainWindow cleaner""" + self._bufferHalftoneTranspose -= 1 + self._setHalftoneTransposeLabel(self._bufferHalftoneTranspose ) + + #Step Delay + + def setStepDelay(self, value): + self.stepDelay = value + self._setStepDelayLabel(value) + + def _setStepDelayLabel(self, value): + text = ("+" if value > 0 else "") + "d" + str(value) #because - is added automatically + self.stepDelayGlyph.setText(text) + self.stepDelayGlyph.show() + + def setStepDelayColor(self, c): + self.stepDelayGlyph.setBrush(c) + + def stepDelayOff(self): + self.stepDelayGlyph.setText("") + #self.stepDelayGlyph.hide() + self.stepDelay = 0 + self._bufferStepDelay = 0 + + def increaseStepDelay(self): + """By 1. Convenience function to make code in mainWindow cleaner""" + self._bufferStepDelay += 1 + self._setStepDelayLabel(self._bufferStepDelay) + + def decreaseStepDelay(self): + """By 1. Convenience function to make code in mainWindow cleaner""" + self._bufferStepDelay -= 1 + self._setStepDelayLabel(self._bufferStepDelay) + + #Augmentation Factor + + def setAugmentationFactor(self, value): + self.augmentationFactor = value + self._setAugmentationFactorLabel(Fraction(value)) + + def _setAugmentationFactorLabel(self, value): + text = "a" + str(value) + self.augmentationFactorGlyph.setText(text) + self.augmentationFactorGlyph.show() + + def setAugmentationFactorColor(self, c): + self.augmentationFactorGlyph.setBrush(c) + + def augmentationFactorOff(self): + self.augmentationFactorGlyph.setText("") + #self.augmentationFactorGlyph.hide() + self.augmentationFactor = 1.0 + self._bufferAugmentationFactor = 1.0 + + def increaseAugmentationFactor(self): + """By 1. Convenience function to make code in mainWindow cleaner""" + self._bufferAugmentationFactor *= 2 + self._setAugmentationFactorLabel(Fraction(self._bufferAugmentationFactor)) + + def decreaseAugmentationFactor(self): + """By 1. Convenience function to make code in mainWindow cleaner""" + self._bufferAugmentationFactor /= 2 + self._setAugmentationFactorLabel(Fraction(self._bufferAugmentationFactor)) + + #Events def mousePressEvent(self, event): """A mouse events on the track activate a switch. Then we receive the event to turn it off again.""" @@ -647,30 +776,62 @@ class Switch(QtWidgets.QGraphicsRectItem): def hoverEnterEvent(self, event): """Only active switches""" - self.statusMessage(QtCore.QCoreApplication.translate("Statusbar", "Measure: Left click to deactivate. Middle click to show as shadows in current pattern. Shift+MouseWheel for half tone transposition. Alt+MouseWheel for in-scale transposition. Right click for measure group options.")) + #self.statusMessage(QtCore.QCoreApplication.translate("Statusbar", "Measure: Left click to deactivate. Middle click to show as shadows in current pattern. Shift+MouseWheel for half tone transposition. Alt+MouseWheel for in-scale transposition. Right click for measure group options.")) + self.statusMessage(QtCore.QCoreApplication.translate("Statusbar", "Measure: Left click to deactivate. Middle click to show as shadows in current pattern. Right click for measure group options. Read Edit menu for advanced modifications while hovering.")) self._bufferScaleTranspose = self.scaleTranspose self._bufferHalftoneTranspose = self.halftoneTranspose + self._bufferStepDelay = self.stepDelay + self._bufferAugmentationFactor = self.augmentationFactor + self.parentTrackStructure.parentScene.currentHoverStep = self + def hoverLeaveEvent(self, event): - """only triggered when active/shown""" + """only triggered when active/shown. + When leaving a modified step it will send all changes to the api. + """ + self.parentTrackStructure.parentScene.currentHoverStep = None self.statusMessage("") event.accept() + #The api callback resets our buffer and values. + #That is fine except if we want to register multiple changes at once. Therefore we first copy our buffers and send the copies. + bscale = -1*self._bufferScaleTranspose + bhalftone = self._bufferHalftoneTranspose + bdelay = self._bufferStepDelay + baugment = self._bufferAugmentationFactor + #Scale Transpose. Independent of Halftone Transpose - if not self._bufferScaleTranspose == self.scaleTranspose: - api.setSwitchScaleTranspose(self.parentTrackStructure.exportDict["id"], self.position, -1*self._bufferScaleTranspose) #we flip the polarity here. The receiving flip is done in the callback. + if not bscale == self.scaleTranspose: + api.setSwitchScaleTranspose(self.parentTrackStructure.exportDict["id"], self.position, bscale) #we flip the polarity here. The receiving flip is done in the callback. #new transpose/buffer gets set via callback - if self._bufferScaleTranspose == 0: + if bscale == 0: self.scaleTransposeOff() #Halftone Transpose. Independent of Scale Transpose - if not self._bufferHalftoneTranspose == self.halftoneTranspose: - api.setSwitchHalftoneTranspose(self.parentTrackStructure.exportDict["id"], self.position, self._bufferHalftoneTranspose) #half tone transposition is not flipped + if not bhalftone == self.halftoneTranspose: + api.setSwitchHalftoneTranspose(self.parentTrackStructure.exportDict["id"], self.position, bhalftone) #half tone transposition is not flipped #new transpose/buffer gets set via callback - if self._bufferHalftoneTranspose == 0: + if bhalftone == 0: self.halftoneTransposeOff() - def wheelEvent(self, event): + #Step Delay. Also independent. + if not bdelay == self.stepDelay: + api.setSwitchStepDelay(self.parentTrackStructure.exportDict["id"], self.position, bdelay) + #new value/buffer gets set via callback + if bdelay == 0: + self.stepDelayOff() + + #Augmentation Factor. Interconnected... nah, just joking. Independent of the other stuff. + if not baugment == self.augmentationFactor: + api.setSwitchAugmentationsFactor(self.parentTrackStructure.exportDict["id"], self.position, baugment) + #new value/buffer gets set via callback + if baugment == 1.0: + self.augmentationFactorOff() + + + def deprecated_wheelEvent(self, event): + #We now use dedicated keyboard shortcuts and not the mousewheel anymore. + #See main window menu actions """Does not get triggered when switch is off. This buffers until hoverLeaveEvent and then the new value is sent in self.hoverLeaveEvent @@ -695,6 +856,10 @@ class Switch(QtWidgets.QGraphicsRectItem): self._bufferScaleTranspose = max(-7, self._bufferScaleTranspose-1) self._setScaleTransposeLabel(self._bufferScaleTranspose) + #Step Delay and Augmentation Factor are not done via mousewheel. There are not enough modifier keys left over :) + #They are instead handled by menu actions directly, in cooperations with our hover callbacks. + + else: #normal scroll or zoom. event.ignore() #super.wheelEvent(event) @@ -1119,8 +1284,6 @@ class TrackLabel(QtWidgets.QGraphicsRectItem): self.setBrush(c) - - class GroupLabel(QtWidgets.QGraphicsRectItem): """Compatible with TrackLabel but stripped down: No name change, no color, no multiplicator. But