From 0aba94588fc726628a4b85327e2813a912a47a28 Mon Sep 17 00:00:00 2001 From: ColinDuquesnoy Date: Tue, 25 Feb 2014 09:17:10 +0100 Subject: [PATCH] Add QToolBox support Add tool box to example, fixes #9 --- example/example.ui | 121 +++++--- example/example_pyqt_ui.py | 28 +- example/example_pyside_ui.py | 28 +- qdarkstyle/pyqt_style_rc.py | 558 +++++++++++++++++----------------- qdarkstyle/pyside_style_rc.py | 6 +- qdarkstyle/style.qss | 19 ++ 6 files changed, 428 insertions(+), 332 deletions(-) diff --git a/example/example.ui b/example/example.ui index 39aa2f64e..4080166ba 100644 --- a/example/example.ui +++ b/example/example.ui @@ -38,50 +38,87 @@ - - - - - - - New Item + + + 1 + + + + + 0 + 0 + 388 + 390 + - - - - New Item + + Page 1 + + + + + + + + + + + 0 + 0 + 388 + 390 + - - - - New Item - - - - - New Item - - - - - New Item - - - - - New Item - - - - - New Item - - - - - New Item - - + + Page 2 + + + + + + + New Item + + + + + New Item + + + + + New Item + + + + + New Item + + + + + New Item + + + + + New Item + + + + + New Item + + + + + New Item + + + + + + diff --git a/example/example_pyqt_ui.py b/example/example_pyqt_ui.py index 37405ec2e..70b90c1b9 100644 --- a/example/example_pyqt_ui.py +++ b/example/example_pyqt_ui.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'example.ui' # -# Created: Thu Feb 20 11:47:21 2014 +# Created: Tue Feb 25 09:02:44 2014 # by: PyQt4 UI code generator 4.10.3 # # WARNING! All changes made in this file will be lost! @@ -43,10 +43,23 @@ class Ui_MainWindow(object): self.groupBox.setObjectName(_fromUtf8("groupBox")) self.verticalLayout_3 = QtGui.QVBoxLayout(self.groupBox) self.verticalLayout_3.setObjectName(_fromUtf8("verticalLayout_3")) - self.lineEdit = QtGui.QLineEdit(self.groupBox) + self.toolBox = QtGui.QToolBox(self.groupBox) + self.toolBox.setObjectName(_fromUtf8("toolBox")) + self.page = QtGui.QWidget() + self.page.setGeometry(QtCore.QRect(0, 0, 388, 390)) + self.page.setObjectName(_fromUtf8("page")) + self.gridLayout_4 = QtGui.QGridLayout(self.page) + self.gridLayout_4.setObjectName(_fromUtf8("gridLayout_4")) + self.lineEdit = QtGui.QLineEdit(self.page) self.lineEdit.setObjectName(_fromUtf8("lineEdit")) - self.verticalLayout_3.addWidget(self.lineEdit) - self.listWidget = QtGui.QListWidget(self.groupBox) + self.gridLayout_4.addWidget(self.lineEdit, 0, 0, 1, 1) + self.toolBox.addItem(self.page, _fromUtf8("")) + self.page_2 = QtGui.QWidget() + self.page_2.setGeometry(QtCore.QRect(0, 0, 388, 390)) + self.page_2.setObjectName(_fromUtf8("page_2")) + self.gridLayout_5 = QtGui.QGridLayout(self.page_2) + self.gridLayout_5.setObjectName(_fromUtf8("gridLayout_5")) + self.listWidget = QtGui.QListWidget(self.page_2) self.listWidget.setObjectName(_fromUtf8("listWidget")) item = QtGui.QListWidgetItem() self.listWidget.addItem(item) @@ -64,7 +77,9 @@ class Ui_MainWindow(object): self.listWidget.addItem(item) item = QtGui.QListWidgetItem() self.listWidget.addItem(item) - self.verticalLayout_3.addWidget(self.listWidget) + self.gridLayout_5.addWidget(self.listWidget, 0, 0, 1, 1) + self.toolBox.addItem(self.page_2, _fromUtf8("")) + self.verticalLayout_3.addWidget(self.toolBox) self.gridLayout.addWidget(self.groupBox, 0, 0, 1, 1) self.tabWidget.addTab(self.tab, _fromUtf8("")) self.tab_2 = QtGui.QWidget() @@ -190,11 +205,13 @@ class Ui_MainWindow(object): self.retranslateUi(MainWindow) self.tabWidget.setCurrentIndex(0) + self.toolBox.setCurrentIndex(1) QtCore.QMetaObject.connectSlotsByName(MainWindow) def retranslateUi(self, MainWindow): MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow", None)) self.groupBox.setTitle(_translate("MainWindow", "GroupBox", None)) + self.toolBox.setItemText(self.toolBox.indexOf(self.page), _translate("MainWindow", "Page 1", None)) __sortingEnabled = self.listWidget.isSortingEnabled() self.listWidget.setSortingEnabled(False) item = self.listWidget.item(0) @@ -214,6 +231,7 @@ class Ui_MainWindow(object): item = self.listWidget.item(7) item.setText(_translate("MainWindow", "New Item", None)) self.listWidget.setSortingEnabled(__sortingEnabled) + self.toolBox.setItemText(self.toolBox.indexOf(self.page_2), _translate("MainWindow", "Page 2", None)) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "Tab 1", None)) self.groupBox_2.setTitle(_translate("MainWindow", "GroupBox", None)) self.label.setText(_translate("MainWindow", "TextLabel", None)) diff --git a/example/example_pyside_ui.py b/example/example_pyside_ui.py index c69885db2..8b9d9cea5 100644 --- a/example/example_pyside_ui.py +++ b/example/example_pyside_ui.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'example.ui' # -# Created: Thu Feb 20 11:47:21 2014 +# Created: Tue Feb 25 09:02:44 2014 # by: pyside-uic 0.2.14 running on PySide 1.1.2 # # WARNING! All changes made in this file will be lost! @@ -29,10 +29,23 @@ class Ui_MainWindow(object): self.groupBox.setObjectName("groupBox") self.verticalLayout_3 = QtGui.QVBoxLayout(self.groupBox) self.verticalLayout_3.setObjectName("verticalLayout_3") - self.lineEdit = QtGui.QLineEdit(self.groupBox) + self.toolBox = QtGui.QToolBox(self.groupBox) + self.toolBox.setObjectName("toolBox") + self.page = QtGui.QWidget() + self.page.setGeometry(QtCore.QRect(0, 0, 388, 390)) + self.page.setObjectName("page") + self.gridLayout_4 = QtGui.QGridLayout(self.page) + self.gridLayout_4.setObjectName("gridLayout_4") + self.lineEdit = QtGui.QLineEdit(self.page) self.lineEdit.setObjectName("lineEdit") - self.verticalLayout_3.addWidget(self.lineEdit) - self.listWidget = QtGui.QListWidget(self.groupBox) + self.gridLayout_4.addWidget(self.lineEdit, 0, 0, 1, 1) + self.toolBox.addItem(self.page, "") + self.page_2 = QtGui.QWidget() + self.page_2.setGeometry(QtCore.QRect(0, 0, 388, 390)) + self.page_2.setObjectName("page_2") + self.gridLayout_5 = QtGui.QGridLayout(self.page_2) + self.gridLayout_5.setObjectName("gridLayout_5") + self.listWidget = QtGui.QListWidget(self.page_2) self.listWidget.setObjectName("listWidget") QtGui.QListWidgetItem(self.listWidget) QtGui.QListWidgetItem(self.listWidget) @@ -42,7 +55,9 @@ class Ui_MainWindow(object): QtGui.QListWidgetItem(self.listWidget) QtGui.QListWidgetItem(self.listWidget) QtGui.QListWidgetItem(self.listWidget) - self.verticalLayout_3.addWidget(self.listWidget) + self.gridLayout_5.addWidget(self.listWidget, 0, 0, 1, 1) + self.toolBox.addItem(self.page_2, "") + self.verticalLayout_3.addWidget(self.toolBox) self.gridLayout.addWidget(self.groupBox, 0, 0, 1, 1) self.tabWidget.addTab(self.tab, "") self.tab_2 = QtGui.QWidget() @@ -168,11 +183,13 @@ class Ui_MainWindow(object): self.retranslateUi(MainWindow) self.tabWidget.setCurrentIndex(0) + self.toolBox.setCurrentIndex(1) QtCore.QMetaObject.connectSlotsByName(MainWindow) def retranslateUi(self, MainWindow): MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8)) self.groupBox.setTitle(QtGui.QApplication.translate("MainWindow", "GroupBox", None, QtGui.QApplication.UnicodeUTF8)) + self.toolBox.setItemText(self.toolBox.indexOf(self.page), QtGui.QApplication.translate("MainWindow", "Page 1", None, QtGui.QApplication.UnicodeUTF8)) __sortingEnabled = self.listWidget.isSortingEnabled() self.listWidget.setSortingEnabled(False) self.listWidget.item(0).setText(QtGui.QApplication.translate("MainWindow", "New Item", None, QtGui.QApplication.UnicodeUTF8)) @@ -184,6 +201,7 @@ class Ui_MainWindow(object): self.listWidget.item(6).setText(QtGui.QApplication.translate("MainWindow", "New Item", None, QtGui.QApplication.UnicodeUTF8)) self.listWidget.item(7).setText(QtGui.QApplication.translate("MainWindow", "New Item", None, QtGui.QApplication.UnicodeUTF8)) self.listWidget.setSortingEnabled(__sortingEnabled) + self.toolBox.setItemText(self.toolBox.indexOf(self.page_2), QtGui.QApplication.translate("MainWindow", "Page 2", None, QtGui.QApplication.UnicodeUTF8)) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), QtGui.QApplication.translate("MainWindow", "Tab 1", None, QtGui.QApplication.UnicodeUTF8)) self.groupBox_2.setTitle(QtGui.QApplication.translate("MainWindow", "GroupBox", None, QtGui.QApplication.UnicodeUTF8)) self.label.setText(QtGui.QApplication.translate("MainWindow", "TextLabel", None, QtGui.QApplication.UnicodeUTF8)) diff --git a/qdarkstyle/pyqt_style_rc.py b/qdarkstyle/pyqt_style_rc.py index 38c7b0849..7ddfc3691 100644 --- a/qdarkstyle/pyqt_style_rc.py +++ b/qdarkstyle/pyqt_style_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Mon Feb 24 12:25:54 2014 +# Created: Tue Feb 25 09:10:09 2014 # by: The Resource Compiler for PyQt (Qt v4.8.4) # # WARNING! All changes made in this file will be lost! @@ -10,259 +10,263 @@ from PyQt4 import QtCore qt_resource_data = b"\ -\x00\x00\x0f\xaf\ +\x00\x00\x0f\xeb\ \x00\ -\x00\x50\x26\x78\x9c\xed\x1c\x69\x73\xda\x48\xf6\xbb\x7f\x45\x4f\ -\xfc\xc5\x4e\x81\x0d\x18\x7c\x28\xb3\x53\x85\x6d\x88\xa9\xb5\x8d\ -\x83\x49\xb2\xa9\xad\xad\x94\x00\x61\x34\x11\x92\x22\x89\xd8\x9e\ -\xa9\xf9\xef\xfb\xfa\x92\xfa\xd2\x45\x9c\x4c\x6d\xd5\x0e\x13\x27\ -\xa8\xbb\x5f\xbf\xab\xdf\xd5\x4f\x3e\x7c\xbd\x83\x5e\xa3\xe9\xca\ -\x41\x37\xa3\x29\xba\x76\xe7\x8e\x1f\x3b\x68\x0f\xbe\xec\xc3\x00\ -\x1e\xbb\x08\xc2\xe7\xc8\x7d\x58\x25\x68\x6f\xbe\x8f\x7e\xed\xb4\ -\xda\x47\x4d\xf8\xd1\xfd\x0d\xfd\x7a\x11\x78\xae\x8f\x2e\x37\x5f\ -\x37\x4e\xec\x07\xcf\xbf\xb1\x15\x77\x4e\xb4\x76\xe3\xd8\x0d\x7c\ -\xe4\xc6\x68\xe5\x44\xce\xec\x19\x3d\x44\xb6\x9f\x38\x8b\x06\x5a\ -\x46\x8e\x83\x82\x25\x9a\xaf\xec\xe8\xc1\x69\xa0\x24\x40\xb6\xff\ -\x8c\x42\x27\x8a\x61\x41\x30\x4b\x6c\xd7\x77\xfd\x07\x64\xa3\x39\ -\xec\x8c\xe1\xc1\xe4\x64\x05\x90\xe2\x60\x99\x3c\xda\x91\x03\xf3\ -\x17\xc8\x8e\xe3\x60\xee\xda\x00\x12\x2d\x82\xf9\x66\xed\xf8\x89\ -\x9d\xe0\x2d\x97\xae\xe7\xc4\x68\x2f\x01\x92\x5e\xdd\xb3\x15\xaf\ -\xf6\xc9\x3e\x0b\xc7\xf6\x30\x40\x40\x1a\x0f\xf3\x51\xf4\xe8\x26\ -\xab\x60\x93\xa0\xc8\x89\x93\xc8\x9d\x63\x30\x0d\x98\x34\xf7\x36\ -\x0b\x8c\x09\x1f\xf6\xdc\xb5\xcb\x36\xc1\xcb\x09\x53\x62\x0c\x0f\ -\x40\x6f\x62\x20\x05\x23\xdc\x40\xeb\x60\xe1\x2e\xf1\xdf\x0e\xa1\ -\x2f\xdc\xcc\x3c\x37\x5e\x35\xd0\xc2\xc5\xd0\x67\x9b\x04\x1e\xc6\ -\xf8\x21\xe1\x75\x03\x53\x73\x18\x44\x28\x76\x3c\x82\x1c\x00\x71\ -\x81\x00\x42\x74\x86\x23\x99\x86\x37\x0a\x31\x73\x13\xc6\xae\x18\ -\x3f\x79\x5c\x05\x6b\x99\x1e\x97\x60\xb5\xdc\x44\x3e\x6c\xec\x90\ -\x65\x8b\x00\xd8\x47\xf6\xfd\xdd\x99\x27\xf8\x09\x5e\xb1\x0c\x3c\ -\x2f\x78\xc4\x34\xce\x03\x7f\xe1\x62\xd2\x62\x6b\x87\x6b\x84\x3d\ -\x0b\xbe\x39\x84\x28\x2a\x7f\x3f\x48\x00\x67\x8a\x08\x96\x47\x98\ -\xc9\x99\x0d\xc5\x2b\xdb\xf3\xd0\xcc\x61\xcc\x83\xad\x5d\x1f\x43\ -\xc3\x4f\x39\x5d\x11\x46\x22\x4e\x40\x1b\x5c\xdb\x43\x61\x10\x91\ -\x5d\x55\x7a\x0f\x28\x16\x57\x03\x74\x3f\x1e\x4e\x3f\xf6\x27\x03\ -\x34\xba\x47\x77\x93\xf1\x87\xd1\xe5\xe0\x12\xbd\xea\xdf\xc3\xf7\ -\x57\x0d\xf4\x71\x34\xbd\x1a\xbf\x9f\x22\x98\x31\xe9\xdf\x4e\x3f\ -\xa1\xf1\x10\xf5\x6f\x3f\xa1\x7f\x8e\x6e\x2f\x1b\x68\xf0\xaf\xbb\ -\xc9\xe0\xfe\x1e\x8d\x27\x18\xda\xe8\xe6\xee\x7a\x34\x80\xc7\xa3\ -\xdb\x8b\xeb\xf7\x97\xa3\xdb\xb7\xe8\x1c\x96\xde\x8e\x41\xf1\x47\ -\xa0\xf1\x00\x77\x3a\x26\x7b\x32\x68\xa3\xc1\x3d\x86\x77\x33\x98\ -\x5c\x5c\xc1\xd7\xfe\xf9\xe8\x7a\x34\xfd\xd4\xc0\xb0\x86\xa3\xe9\ -\x2d\x86\x3c\x1c\x4f\x50\x1f\xdd\xf5\x27\xd3\xd1\xc5\xfb\xeb\xfe\ -\x04\xdd\xbd\x9f\xdc\x8d\xef\x07\x80\xc4\x25\x40\xbe\x1d\xdd\x0e\ -\x27\xb0\xd1\xe0\x66\x70\x3b\x3d\x80\x8d\xe1\x19\x1a\x7c\x80\x2f\ -\xe8\xfe\xaa\x7f\x7d\x8d\x77\xc3\xe0\xfa\xef\x81\x8c\x09\x46\x14\ -\x5d\x8c\xef\x3e\x4d\x46\x6f\xaf\xa6\xe8\x6a\x7c\x7d\x39\x80\x87\ -\xe7\x03\xc0\xaf\x7f\x7e\x3d\xa0\xbb\x01\x75\x17\xd7\xfd\xd1\x4d\ -\x03\x5d\xf6\x6f\xfa\x6f\x07\x64\xd5\x18\x00\x11\x22\xf1\x4c\x8a\ -\x26\xfa\x78\x35\xc0\x4f\xf1\xae\x7d\xf8\xff\x62\x3a\x1a\xdf\x62\ -\x7a\x2e\xc6\xb7\xd3\x09\x7c\x6d\x00\xb9\x93\x69\xba\xfa\xe3\xe8\ -\x7e\xd0\x40\xfd\xc9\xe8\x1e\x73\x66\x38\x19\xdf\x10\x4a\x31\x77\ -\x61\xd1\x98\xc0\x81\xa5\xb7\x03\x0a\x08\x73\x5e\x16\x10\x4c\xc1\ -\xdf\xdf\xdf\x0f\x52\x98\xe8\x72\xd0\xbf\x06\x70\x20\xad\x5b\x55\ -\xa0\x07\xf0\xe0\x70\x67\xe7\xdd\x5d\x14\x3c\xc0\xc9\x8b\xcf\xed\ -\xc8\x5a\x05\x91\xfb\x47\x00\x47\xd9\x43\x7f\xee\x20\xf8\x6f\x16\ -\x44\x0b\x27\xb2\x50\x3b\x7c\x02\x05\xf6\xdc\x05\xda\x3d\xea\x1f\ -\x9d\x1d\x9d\xbd\x21\xc3\x89\xf3\x94\x34\x6d\xcf\x7d\xf0\x2d\x04\ -\xc7\x29\x71\x22\xfa\x3c\xb4\x17\xf8\xe8\x92\x75\xf4\xc9\xcc\x9e\ -\x7f\x79\x88\x82\x8d\xbf\xb0\xd0\x2e\xd8\xaf\x61\x7b\xf8\x66\xe7\ -\x2f\x79\x77\x6b\xbe\xda\xf8\x5f\x0c\x48\xa4\x6b\x9b\xf3\xc0\x0b\ -\x00\x9d\xaf\x60\xf8\x1c\xb0\x5f\x91\xbd\x70\x61\xdb\xbd\x38\x8c\ -\x1c\x7b\x61\x45\xce\xd2\x83\xe3\xd5\x40\x4f\x6d\xab\xdd\x40\xcf\ -\x6d\xab\x75\xd0\xeb\xf6\xe0\x7b\x87\x7c\xef\x58\x2d\x38\x83\x49\ -\x10\x5a\x2d\x14\x3d\xcc\xec\xbd\xce\x69\x03\x1d\x1f\x37\x50\xbb\ -\x0d\xc3\x9d\x5e\x6f\x9f\x0d\xb7\xe9\xf0\xd1\x49\x03\x9d\xc2\x9f\ -\x76\xf7\x98\x0e\xef\x63\x9c\x77\xde\x4d\x83\xc0\x9b\xba\xe1\x4e\ -\x25\x1e\xe9\xd8\x03\xec\xbd\x33\xc0\xa4\xdd\xea\xe0\xad\x4f\xf6\ -\xdf\xd0\x99\x6c\xf8\x71\xe5\x26\x4e\x1e\x1f\x83\xd0\x9e\xbb\xc9\ -\xb3\x85\x3a\xad\x16\x45\xe6\xa3\xbb\x78\x70\x12\x86\x0b\x03\x11\ -\xbb\xde\x37\x2e\x0b\x7d\xff\xdd\xa3\x56\x67\xd8\x19\xd2\x61\xb0\ -\x7b\x0e\x31\xb9\x4d\x6d\xe2\xee\xc9\xe9\xe9\xc9\xd9\x4c\x9d\xc7\ -\xa0\xcc\x3c\x98\xaf\x6f\xe1\xb9\xa1\xc5\x58\xf2\x46\x60\x4f\xd3\ -\x5d\xdb\x0f\x8e\x05\x96\xca\x67\xb4\x81\x49\xc7\x52\xb4\x90\x44\ -\x87\x05\xb4\xaf\x41\x05\x00\xfd\x9d\x3c\xe9\xbf\xbb\x26\xd2\x7f\ -\xcb\xa5\x8f\xc5\x8d\x5a\x44\xde\xf8\x2f\x10\x36\xf9\x06\x7f\xb5\ -\x1b\x14\x77\x2c\x53\xd4\x42\x8c\x20\x26\x64\xd4\xe6\x0f\xf6\x25\ -\xfe\x33\xc2\x54\x9c\x28\x03\x9c\xc5\x4f\x45\x0b\x23\x71\xe3\xf8\ -\x1b\x38\x1e\xb9\xfb\x4a\xe2\x54\x14\x40\x58\x6f\x11\x32\x34\x28\ -\x16\x4a\x20\x34\x88\x43\x30\xfa\x7e\x62\x58\x90\x4f\xb7\xb2\xb2\ -\xe4\x28\xe8\x80\x43\x7c\xee\x33\xb8\x75\x4f\x91\xa4\x9d\xba\x4e\ -\xae\xc1\x3c\xb8\xa0\xd4\x41\x92\x04\x6b\xab\x99\x1e\x20\x76\xa4\ -\xf8\x00\x79\xce\x71\xab\x86\x8a\xe1\x8c\xd1\xcd\xe0\x50\x8a\xd0\ -\x80\x4c\x70\xeb\x0c\x26\x9f\xd1\x53\x66\x64\x22\x49\xcf\x3a\x4c\ -\x41\x47\x2d\xf8\xc1\xff\x21\x11\xe4\x39\xcb\x84\x81\x31\xe3\x2a\ -\x0a\x05\x1d\xbe\xc6\x51\x95\x13\x41\x20\x01\xcf\xe6\x38\xe4\x88\ -\xb2\xa3\xcc\x56\x63\x3f\x20\xa3\xa4\x0a\x3d\xf7\x64\x40\x50\x65\ -\xcf\x3c\x75\xde\x6e\xb7\x85\x3f\xa5\xf6\x07\x03\xea\x43\x30\x12\ -\xd9\xf3\x64\x04\xdb\x7e\x70\x9d\x47\x06\xc9\xf6\xc0\x99\xf8\x10\ -\x5f\xea\x66\xa9\x54\x1a\x3a\x4f\x24\x4d\xa2\xf6\x08\x9f\xd2\x4d\ -\x6c\xa1\x23\x45\x31\x98\xad\x15\x68\x5c\x42\x7c\x1b\x37\x50\xaa\ -\xbd\xe4\x7b\xae\xaa\x10\xc7\xd1\x05\xbf\x72\x4a\xfd\x0a\x77\x19\ -\xf6\x4c\x01\x77\xb1\x72\xe6\x5f\xce\x83\xa7\xf4\xc1\x04\x30\x0a\ -\xce\x37\xa0\x96\xbe\x71\x0f\x6a\x3a\x31\x30\x6c\x68\x06\x10\x2f\ -\xe6\x9b\x04\xee\x61\x25\xc2\x3a\xb2\xd2\x34\xe3\xe4\xd9\x03\xfb\ -\x4b\xf0\x2e\x3d\xbf\x45\xac\x33\x18\x9d\xb7\x80\x4f\x08\xd4\xc9\ -\x71\x44\x35\xb8\x27\x8a\xca\x13\xab\xd8\x71\x9e\x64\xc8\x96\x95\ -\xb8\x89\xe7\xb0\x0d\x20\xa8\x85\xc3\x96\x44\x81\xd7\x84\xf0\x81\ -\x1c\x35\xba\xfa\x8d\x3a\x1c\x06\x31\x89\xb4\xc1\x7c\x05\xa1\x29\ -\x6a\x61\x47\xac\xdd\x52\x4d\x06\x09\xc3\xf9\x80\xa8\xbb\xf7\x73\ -\x00\xec\xf5\x21\x06\x91\x44\xa6\x33\xaa\xc4\x3e\x52\x38\x72\x20\ -\xc6\x20\xae\x1c\xb6\x79\x4f\x66\x0e\xf8\x0f\x80\xd5\xc6\x00\xf9\ -\x3f\xb6\x11\xe5\xb1\x1e\xa7\x55\x71\x6b\x6d\xc9\xad\xb5\x14\xb7\ -\x46\x8f\xb9\xe0\xd6\xba\xa7\xf0\x39\xde\x57\x89\xb5\x56\x90\xd3\ -\x80\x26\x6a\x44\xbf\x24\x32\xc7\xad\xde\xb0\x37\x94\x7c\x2c\x7c\ -\x8e\x99\xeb\x5f\x83\x9a\x3d\xba\x8b\x64\xa5\x99\xd6\x94\x45\xa9\ -\xe5\x16\x10\x07\xb5\x6a\x92\x20\x46\x47\x5d\x8a\x7a\x36\x91\xb7\ -\x67\x1d\x7e\x8d\xe3\xcf\xd8\x25\xc4\x87\xd1\xfc\x90\x28\xd3\x67\ -\x3b\x8a\x82\xc7\xcf\xdc\x8a\x1e\x84\xfe\x03\x43\x88\x21\x93\x29\ -\x61\xaa\x00\xe9\x13\xa3\x4e\x13\xb0\xda\xb8\x7a\x24\x14\x32\x40\ -\xbf\xb7\x25\x03\x9f\x95\x7c\x2a\x74\xa4\x35\xba\x8c\x54\x60\xa8\ -\x75\x89\x30\xc8\x82\xc6\x91\x8d\xb2\x59\xa9\x93\xae\x23\xb4\x17\ -\xa0\xb2\xb2\xac\xca\x84\xc5\xe8\x44\x65\xd3\xaa\x13\x9a\x89\xf5\ -\x6f\x92\xe6\x26\x6c\x92\xed\x05\xf4\x65\xfa\x16\xc1\xa3\xaf\x4d\ -\x31\xc4\xa8\xa9\xd7\xd4\x98\x18\x62\xe2\xf3\xc0\x63\x3d\x51\x26\ -\x14\x01\x17\x96\x82\x24\x12\x77\x5e\xd7\x86\xb5\x4d\x79\x42\x75\ -\x83\x2a\x0a\x43\xf3\x10\xd4\x3b\xb0\xbf\xb6\xf6\x0e\x66\x9b\xfd\ -\x03\xa9\x2d\xb7\xd8\x5c\x21\xb7\x32\xd9\x2a\xe6\x65\x47\x62\x13\ -\xbe\xbc\x9d\x03\xca\xb6\xb6\xd5\x02\xfe\xd5\x08\xc0\x27\xe6\xe5\ -\x49\xa0\x79\xd4\xd6\xc6\x9a\x53\x51\x64\xaa\xd3\x39\xc4\x7e\xd5\ -\x93\xd6\xcf\x13\x52\xb1\x94\x0a\x4d\xb4\x4c\x60\x4d\x61\xfe\x6d\ -\x32\x4c\x4d\x34\x47\x3f\xd7\x40\xe7\x1a\x89\x52\xf3\x6c\x06\x9d\ -\x1a\xe7\x2a\x80\xdf\x4d\x9d\xa7\xa4\x7a\xb6\x54\x29\x9f\x94\xa2\ -\xf6\x3b\xcf\x76\xfd\xca\x9b\x94\xec\x52\x3b\x67\xb8\x72\x6c\x18\ -\xc6\x99\x33\xf0\x85\xa6\xf5\x05\x95\xa2\xe2\xc4\x59\x4e\x80\xba\ -\x05\x18\x1c\xcf\xf1\x87\x62\x90\x26\xb2\x25\xc5\x00\xa2\x3e\xee\ -\x1f\xce\xdb\xc8\x0d\x59\xd6\x96\xaf\xdf\x31\x4c\x7c\x80\x89\x86\ -\x90\xb8\xa3\x85\xc4\xbc\xec\xb2\xf3\xee\x06\x44\xf1\xd1\xf5\x41\ -\xf7\x30\x37\x42\x3b\xb2\x93\xa0\x5e\xe5\x4c\xaf\xbe\xaa\xec\xc0\ -\x85\x14\x53\x3e\x4d\x19\xb4\xb0\xc9\x9d\x8f\x5c\xf7\x32\x61\x95\ -\x16\x39\x2b\x3a\x4e\xf0\x9b\x34\xd1\xa1\x5e\x93\x3a\xcd\x76\x5a\ -\xcf\xde\xed\x9d\x1e\x9f\x9c\xcc\xa8\x0f\x65\x5e\xb4\x75\xd0\xe3\ -\x65\x32\x5e\xd7\x66\xd3\xf6\x6b\xd2\x5c\x12\x2f\xc8\x2c\xa1\x92\ -\x20\xc5\x24\x55\x06\xa9\xc8\xf2\xf3\x4d\x93\x92\x96\x23\x28\x55\ -\xc7\xda\x6a\xd1\x2c\x12\xe2\x04\x8c\xdd\x8e\x54\x6c\xb1\x40\x34\ -\x60\x45\xb0\x4c\xe6\x58\x97\xf1\x35\x69\xde\x84\x8d\xcf\xa6\xc8\ -\x3a\x3e\x6b\xe3\x4f\x69\xc1\xcb\xcc\xca\x02\x2b\x50\x19\xe3\x5c\ -\x1d\xff\x8a\x41\xd9\x5e\x7a\x55\x42\xd1\x7e\x82\x08\xeb\xa0\xd7\ -\x40\xf3\x67\xfa\x0f\xf2\x74\xc9\x9f\x2e\xc5\xa7\x1c\x95\xf6\x81\ -\x1c\xa0\x1d\x74\x52\xe5\x92\x9f\x1f\x71\x7a\xc9\xd3\x7d\xd9\x48\ -\xc8\x9c\x55\x4b\x9f\xa9\xd1\x4b\x2f\x07\x32\x33\x9e\x9a\x99\x8c\ -\xf8\x1f\x24\x03\x66\x68\xce\x54\x3b\x73\xc6\xc3\x49\xb3\x28\xcc\ -\xb5\x9f\x13\xc5\x15\xe7\x43\x35\x10\x58\x5e\x23\xe7\x45\xf0\x7c\ -\xb4\xd2\xc8\xc3\x04\x5f\xba\x68\x29\x86\x6e\x5a\x2e\x2b\x1f\xb5\ -\xe6\x06\x63\x4e\xa6\xcd\x82\x27\x66\xcc\xf3\xa0\x71\xff\x91\x7f\ -\xfa\x14\x0f\x63\xc0\xb8\xdb\xed\xd2\x0d\x86\x91\xbd\x76\x0a\xca\ -\x71\xc4\x1b\x25\x36\x46\x5f\xba\x41\xd3\xab\xad\xf8\xb6\x0f\xc2\ -\x8e\x82\x1b\xd1\xb3\xa3\xd3\xa3\x53\x55\xf1\xe4\x29\x82\xf2\x2d\ -\x21\xbc\x6a\x3e\x32\xe9\xcf\x02\x6f\x21\x6d\x63\xa8\x86\x95\x3a\ -\xcb\xab\x35\x88\x31\x81\xf5\x33\x3b\x4a\x79\xac\x01\xe4\xc1\x52\ -\x29\xb8\x0f\xc5\xe0\x44\x0f\x56\x1d\x45\xb2\xaa\x0a\xd0\xea\x68\ -\x8a\x20\x63\x41\xb7\xee\x36\xf1\x4a\xb2\x2f\x95\x6e\x45\x7f\x44\ -\x9d\x53\x50\x3e\x1e\xbd\x28\xa9\x6a\x1a\x24\xf5\xbb\x67\x5d\x39\ -\xfb\xd6\xcb\xf3\xdc\xf7\x91\x7d\xd2\xa4\x57\xb9\xd1\xd2\x07\x94\ -\x2b\x23\xa5\x9c\x5d\x98\x3c\xe7\xd8\xe2\x8c\xc3\xda\x91\xac\x62\ -\x78\xcb\x98\x61\x28\x45\xbc\x30\x33\x4a\x8a\xfb\x78\xe0\xf0\xb5\ -\xc1\x6c\xbc\x3e\x94\x43\xdb\x1e\xfe\x30\x8b\x16\xac\x67\x01\x58\ -\x34\xc6\x88\x82\x7b\x75\xf9\xea\xb2\x24\x1f\x79\xe9\xbb\x1a\xf9\ -\x36\x48\x44\x9c\xa7\xe0\x82\x70\xd9\x93\xf4\x9e\x23\x74\x7d\x61\ -\x22\xbf\x86\xe2\xdf\x79\x0e\x94\x02\x12\x13\x23\x15\x16\xc9\x58\ -\xf8\xc2\xc8\x71\xb2\xef\xe5\xee\xc8\x70\xa6\x25\x42\x8a\x52\xa0\ -\xe3\xce\xf1\xe9\xc9\x91\x41\x85\x54\x0e\x69\x61\x7f\x91\x40\xbb\ -\x36\xfe\xc8\x68\xa0\xbc\xbb\xcd\x6a\x12\xaf\x93\x08\x96\xe1\x57\ -\xbb\x35\xa1\x72\x73\x42\xca\x73\x6b\x11\x05\x61\x13\x27\xfd\xfc\ -\x00\xe8\x85\x04\xc6\xd9\xe2\x5a\x8b\x58\x16\x97\x4a\x9a\x22\x73\ -\xb0\x6c\xb8\x15\x69\x29\x56\x84\x8c\x31\xc2\x17\x76\x04\xac\xb0\ -\x9f\xf5\x09\x79\x07\x0a\x2b\x03\x35\x06\x79\x12\x60\xb6\xc5\x34\ -\x49\xe1\x48\x5a\x01\x91\x02\xa4\x7a\xb5\xb9\x3c\x90\x16\x6e\x92\ -\x34\x8f\xd0\x53\x95\xb3\x4c\xbc\x59\xae\x51\x5e\x52\xac\xbe\x12\ -\x97\xbe\x60\x2f\x4c\xf1\xa5\xa1\x62\x89\xd0\x9f\xfa\x39\xee\xe4\ -\xb9\x02\x63\xba\x5e\xad\xd5\xa4\x52\x81\x48\x57\x05\xd5\x6e\x6e\ -\xc2\xe6\x4c\x8c\x4b\xf4\x9d\xb4\x8e\x1a\xc3\x29\x12\x9b\xab\x8c\ -\x87\x88\xde\x69\xf3\x73\x64\x42\x84\xe8\xc3\x4f\x44\x85\xde\x00\ -\x99\x30\x49\xab\x88\xba\x97\xc9\x0a\x8c\x69\x62\x50\x30\x27\x58\ -\x2e\x4b\x23\xc6\xa2\x12\x7e\xc9\x85\xeb\x5f\x05\xa8\x4b\x6e\xab\ -\x72\x49\x9a\x54\x49\x34\x98\xd9\x49\x35\x10\x2b\x1c\xe3\x02\x96\ -\x88\x36\x62\xb9\xfc\x0e\xd3\xb3\x25\x5b\x54\x4b\xb4\x95\xb1\xd9\ -\x79\x77\x6d\xcf\x1c\x4f\x89\x05\x5a\xe9\x89\xcd\x5a\x91\xc4\xde\ -\x1a\x2b\xb4\x7d\xa7\xbc\x75\x95\x35\xe4\x64\x4d\x75\x5f\x43\x70\ -\x5e\x90\x77\x3c\x37\x17\x91\xfd\x78\x6e\xc7\xb4\x2d\xd1\x14\x1f\ -\xa6\x77\x4a\x14\x80\xb1\x53\x07\xa3\x29\x1c\x1f\xb1\x6f\x8a\xad\ -\xb2\xe6\x5e\x10\x3b\xec\x08\xa2\x52\xc5\x25\xb3\x05\xa9\x14\x36\ -\xe1\xe1\x55\x4d\x5c\x3f\x35\x84\xb9\xc2\x9d\x98\x09\x93\x9c\xc6\ -\x4b\x8b\x75\xcb\xf6\x7a\xa4\x0d\x96\xff\x68\xed\x17\x9b\x3f\xe3\ -\x0e\xcc\x73\xc8\x96\x9b\x36\xbd\x75\xd9\x1f\x0d\xc5\xc4\x9e\x59\ -\xbf\xf0\x96\x34\x09\x47\x6a\xab\x58\x79\x50\x5d\x52\xb0\x02\x65\ -\x4b\x0e\x5f\xa3\xe9\xf8\x0e\x35\xd1\xf9\x78\x3a\x1d\xdf\xa0\x69\ -\xff\xfc\x1e\x77\xc4\x49\xa0\x70\x5c\x52\x50\x6d\xaa\xeb\x50\x2a\ -\xd6\x76\xc5\x50\xac\xad\xb8\x46\x5c\xf1\xed\xf7\xce\x7a\x67\xfb\ -\x5b\x25\x7b\xc5\xa1\xaf\xe6\x32\xe5\x3a\x2a\xed\xa6\x54\x83\x26\ -\x12\x56\xe5\xc5\x4c\x39\x51\x95\x2a\x32\xba\xf1\xff\x59\x5d\xc0\ -\x6a\x16\x7d\x16\x72\xbb\x38\x42\x55\x14\xdb\xf2\xec\x38\x81\x58\ -\x52\x97\x03\x19\x91\x1a\x58\x39\x5a\x2d\x33\xa4\xa5\x1b\xc5\x49\ -\x76\x54\xcd\x40\x95\x49\x32\x7c\xca\xd3\x56\x1e\xaa\xea\x2a\x93\ -\x8a\x88\x5d\x83\xb9\x34\x9b\x77\xe7\xc2\x30\xee\xcf\x06\x6b\xa0\ -\xc0\xc1\x15\xa8\x7a\x4e\xa7\xed\xee\x65\x1b\x7f\x74\x82\x38\x66\ -\x60\xb5\xae\x07\xc3\x29\x98\x2d\xfa\xb2\x8a\xd1\x6a\x61\x66\xfe\ -\xe0\xb3\xd4\xd6\xce\x52\xeb\x3b\xce\x92\x76\x3a\x98\xba\x69\x31\ -\x7d\xc5\xa2\x8f\x22\x07\xb3\xdd\xfa\x9e\x64\x4f\xe4\x36\x7d\x4b\ -\xeb\xe7\x99\xae\xf6\xff\x26\xbb\xab\x18\x2e\x7d\x8e\xca\x6c\x42\ -\x40\x8d\xa3\xc8\x28\xcb\x87\x55\xdb\x1c\x51\x88\x35\x50\x10\x78\ -\x6e\x86\x55\xdd\x14\x70\x2b\x2c\xc3\x42\xb4\x9c\xce\x6e\x4d\xa8\ -\xc6\xd2\x38\xdc\xf1\x49\x5c\xcf\x94\xb3\x20\xd0\x34\x34\x38\x02\ -\x7c\x64\xdc\x80\x08\xa9\x26\x7c\xbd\xaf\xb0\x0a\xfa\x3c\x2f\xa9\ -\x85\xbf\x96\xcd\x54\x21\xa4\xfa\x4e\x05\x8d\xaf\x24\x29\xb9\x0c\ -\xe6\x5f\x68\x56\x92\x9b\x8f\x78\x18\xd9\xac\x3a\x45\xda\xd9\x67\ -\x76\xd4\xa4\xf1\x32\xde\xa9\x52\x32\x90\xae\xf3\x83\x68\x6d\x7b\ -\xf9\x0b\xc1\xb4\x00\x52\x42\x41\x27\xc3\x51\x0e\xd2\xc1\x6f\x8b\ -\x43\x4b\x2f\xb0\x13\x9e\xab\xe4\x11\x93\xf3\x2e\x90\xe1\xa4\xd7\ -\xca\x5d\x8a\xd0\x4c\x6f\x36\xf3\x90\xa5\x13\xb4\xb7\x08\xcd\xe9\ -\x4c\xbb\x55\xc2\x15\x9e\xba\x14\x6d\x98\x93\xdd\x60\x36\x35\xd3\ -\x1f\xc6\x97\x22\x0b\x51\xe2\x05\xf2\x06\xf6\x09\x71\x22\xd6\x92\ -\x8b\xab\xe4\x05\xb5\x2c\x11\xae\x35\x03\x41\xcc\x57\x96\x18\xb8\ -\x29\x43\x79\x99\xa1\x41\xcf\x04\xa9\x0a\xca\x96\x02\x4c\x21\xda\ -\x31\x88\x7a\xe6\x01\x87\x62\xeb\x17\x7b\xf1\x7b\xe0\xfa\x71\x13\ -\xbf\x7e\x24\x29\x59\x41\x13\xdc\x36\x1b\xfd\xc0\x7d\x7e\xc1\x1b\ -\xcd\x57\xae\xb7\x80\x99\xf4\xdb\xcf\xd8\xb6\x60\x57\xa2\xbe\x8b\ -\x86\x61\x11\x1d\x91\xd7\x8a\x4b\x4b\x4b\x12\x14\xce\x67\x0a\xa7\ -\x08\xbd\x20\x64\xa0\xcd\x38\x9a\x90\xd3\x97\x48\xa8\x55\xc5\x0d\ -\x83\xf9\x2e\xc6\xa5\x95\xf4\xda\xec\x93\x2c\x4f\x45\x26\x36\x03\ -\x5f\xb0\xea\xdb\xf0\x32\x1f\xdf\x62\x8e\x32\x6c\xeb\xf0\x55\x47\ -\x96\x1b\x26\xf6\x06\xa1\x52\xaf\x11\x2c\x57\xee\x84\x0c\x6b\xd3\ -\x04\x94\x67\xc7\x21\x1a\x66\xff\x33\x6c\xc4\x37\x8b\xc5\x40\x6a\ -\x48\xfe\xdb\x31\x20\x5b\x86\x6b\x19\xaa\xe5\x98\x72\xab\x6c\xc2\ -\x88\x35\xa3\x80\xf1\x06\x4b\x6e\xc1\x0a\x00\x52\xfb\x55\x7c\x5e\ -\x97\x3d\x35\x39\x17\xe9\x02\x43\x78\x59\x55\x7e\x1d\x20\xf5\xd5\ -\xdd\xb4\x41\x86\xe1\x94\xd7\x92\x22\xee\xb1\xfd\x1d\xe3\x41\x8b\ -\xdd\xa6\x34\xb2\xde\x32\xb4\x6b\x9f\xe2\x8f\x78\xef\xd8\xc1\x1f\ -\xa9\xe6\x98\xcb\x0d\x5e\xb6\x4e\x6f\x6f\xd3\xb2\xb5\xd2\x31\x08\ -\x59\x4a\x37\x97\x0f\x27\x2a\x1f\x98\x6c\x94\x16\x95\x6a\xb8\x54\ -\x17\x4c\x4b\xbb\xd2\x2c\x13\x8c\x8a\xd0\x96\x62\xd1\x05\xa2\x08\ -\xea\x27\x8a\xa5\x45\x04\x53\x2c\x96\x2c\x88\xcf\xfd\x4d\x11\xc6\ -\xb6\xbf\xec\x97\x10\xe4\x05\xa9\x1c\x8b\x23\x7d\xab\x7f\x87\x41\ -\xb8\x09\x6f\x82\x85\xf3\x8f\x57\xed\x57\xff\x91\x5b\x18\x79\x66\ -\x76\x5a\xbc\xae\x53\x63\x9d\x65\xad\x1d\x7f\x23\x87\xdf\x29\x25\ -\x9d\x94\xcf\x59\x1e\x91\x5f\xdb\x48\xdf\xf2\x2c\x2c\x6e\x64\xb3\ -\xb8\xb8\xe8\x13\x9a\x3f\xa9\x78\x91\x14\xa8\x3c\x5d\x32\xbe\xaf\ -\x80\xa8\x0e\x61\x6d\x47\x42\x5f\x0e\x7e\x6b\x3d\x5e\xb9\xcb\x04\ -\xb9\x09\xb2\xd1\x0c\x7e\xe2\xbe\x9b\x82\xfd\x89\x7f\xe3\x48\xd4\ -\x05\x2a\xc2\x94\xe3\x77\x53\xa3\x87\xd6\xa7\x55\xb1\x93\x97\x69\ -\x92\xb8\x99\x39\x3b\xa9\xb8\x95\xd6\xd5\xa0\x95\x4b\x84\xeb\x7a\ -\xca\xaa\xb4\x8f\x92\x3b\xa8\xad\x5a\x34\x58\x89\x5e\xe8\xd2\xa0\ -\x5c\x3e\x15\x8a\x11\x9e\x63\x48\x51\xb4\x64\xef\x21\x72\x17\xd8\ -\x51\x67\xbd\x39\xec\xad\x82\x1c\x86\x08\x99\x8b\xb0\x0b\x78\xe3\ -\xec\x1d\x08\x73\xc3\x67\x4b\x43\x4d\xfe\x15\x14\xba\xc3\xcf\x06\ -\x14\x4f\xcf\x15\xa4\xc0\xc5\xe7\x7a\x78\x75\xf7\x34\x6a\xb0\xe7\ -\x89\xfb\xcd\x29\x08\x2b\xd2\x09\x79\x71\x09\x9d\xb0\x0d\x56\x3b\ -\x79\xdc\xa3\xca\xa6\x09\x4d\x78\xed\x5c\xaa\x06\x0a\x5c\x36\xbc\ -\x92\xa2\x63\x56\xf3\x9d\x94\x6a\xaf\xa3\xe4\xc9\x9e\x98\x05\xc3\ -\xef\x2a\xca\xc1\xd6\xca\xde\xc8\xa2\xb7\x15\xb2\x5a\x51\x03\x63\ -\x7e\x19\xa6\x10\x9a\x01\x8c\xf6\xcb\x57\x8c\x00\x84\x77\x78\x4d\ -\x08\x31\x33\x57\x03\xa3\xbc\x17\xbd\x29\x24\x15\x29\x33\x10\xde\ -\xfc\x2d\x97\xbc\x85\x57\x35\x0c\xc2\xa6\xc5\x68\xe6\x4c\xb0\x45\ -\xc6\x5d\x58\xe4\x37\x8f\xc5\x41\x04\xa6\x39\xb5\x50\xf8\x2a\x43\ -\xdc\x34\x6b\x2a\x28\xcd\x52\x8c\xbd\x4b\x22\x2c\xde\xb7\x81\x78\ -\xa9\xb7\x46\xc3\x06\x39\xc3\x17\x41\xe4\x3b\x11\xb7\xad\x5c\xc5\ -\x2b\x69\x78\xbd\xae\x4d\x76\xa4\xfe\x0b\xaa\xf1\x39\x9d\ +\x00\x51\xd8\x78\x9c\xed\x1c\x6b\x73\xda\x48\xf2\x3b\xbf\x62\x36\ +\xfe\x12\xa7\xc0\x06\x0c\x7e\x28\x7b\x5b\x85\x6d\x88\xa9\xb5\x8d\ +\x83\x49\x72\xa9\xab\xab\x94\x00\x61\xb4\x11\x92\x22\x89\xb5\xbd\ +\x5b\xfb\xdf\xaf\xe7\x25\xcd\x4b\x2f\xf2\xd8\xba\xab\x0b\x89\x1d\ +\x49\x33\xfd\x9e\xee\x9e\x9e\x16\x87\xaf\x1a\xe8\x15\x9a\xad\x1d\ +\x74\x33\x9e\xa1\x6b\x77\xe1\xf8\xb1\x83\x5e\xc2\xc5\x3e\x3c\xc0\ +\xcf\x2e\x82\xf0\x39\x72\x1f\xd6\x09\x7a\xb9\xd8\x47\x3f\x77\xdb\ +\x9d\xa3\x16\xfc\xe8\xfd\x82\x7e\xbe\x08\x3c\xd7\x47\x97\xdb\x2f\ +\x5b\x27\xf6\x83\xe7\x5f\xd8\x8c\x3b\x27\xda\xb8\x71\xec\x06\x3e\ +\x72\x63\xb4\x76\x22\x67\xfe\x8c\x1e\x22\xdb\x4f\x9c\x65\x13\xad\ +\x22\xc7\x41\xc1\x0a\x2d\xd6\x76\xf4\xe0\x34\x51\x12\x20\xdb\x7f\ +\x46\xa1\x13\xc5\x30\x21\x98\x27\xb6\xeb\xbb\xfe\x03\xb2\xd1\x02\ +\x30\x63\x78\x30\x38\x59\x03\xa4\x38\x58\x25\x8f\x76\xe4\xc0\xf8\ +\x25\xb2\xe3\x38\x58\xb8\x36\x80\x44\xcb\x60\xb1\xdd\x38\x7e\x62\ +\x27\x18\xe5\xca\xf5\x9c\x18\xbd\x4c\x80\xa5\x17\xf7\x6c\xc6\x8b\ +\x7d\x82\x67\xe9\xd8\x1e\x06\x08\x44\xe3\xc7\xfc\x29\x7a\x74\x93\ +\x75\xb0\x4d\x50\xe4\xc4\x49\xe4\x2e\x30\x98\x26\x0c\x5a\x78\xdb\ +\x25\xa6\x84\x3f\xf6\xdc\x8d\xcb\x90\xe0\xe9\x44\x28\x31\x86\x07\ +\xa0\xb7\x31\xb0\x82\x09\x6e\xa2\x4d\xb0\x74\x57\xf8\xb7\x43\xf8\ +\x0b\xb7\x73\xcf\x8d\xd7\x4d\xb4\x74\x31\xf4\xf9\x36\x81\x9b\x31\ +\xbe\x49\x64\xdd\xc4\xdc\x1c\x06\x11\x8a\x1d\x8f\x10\x07\x40\x5c\ +\x60\x80\x30\x9d\xd1\x48\x86\x61\x44\x21\x16\x6e\xc2\xc4\x15\xe3\ +\x3b\x8f\xeb\x60\x23\xf3\xe3\x12\xaa\x56\xdb\xc8\x07\xc4\x0e\x99\ +\xb6\x0c\x40\x7c\x04\xef\x6f\xce\x22\xc1\x77\xf0\x8c\x55\xe0\x79\ +\xc1\x23\xe6\x71\x11\xf8\x4b\x17\xb3\x16\x5b\x0d\x6e\x11\xf6\x3c\ +\xf8\xdd\x21\x4c\x51\xfd\xfb\x41\x02\x34\x53\x42\xb0\x3e\xc2\x4c\ +\xcf\xec\x51\xbc\xb6\x3d\x0f\xcd\x1d\x26\x3c\x40\xed\xfa\x18\x1a\ +\xbe\xcb\xf9\x8a\x30\x11\x71\x02\xd6\xe0\xda\x1e\x0a\x83\x88\x60\ +\x55\xf9\x3d\xa0\x54\x5c\x0d\xd1\xfd\x64\x34\xfb\x30\x98\x0e\xd1\ +\xf8\x1e\xdd\x4d\x27\xef\xc7\x97\xc3\x4b\xf4\x62\x70\x0f\xd7\x2f\ +\x9a\xe8\xc3\x78\x76\x35\x79\x37\x43\x30\x62\x3a\xb8\x9d\x7d\x44\ +\x93\x11\x1a\xdc\x7e\x44\xbf\x8e\x6f\x2f\x9b\x68\xf8\xcf\xbb\xe9\ +\xf0\xfe\x1e\x4d\xa6\x18\xda\xf8\xe6\xee\x7a\x3c\x84\xdb\xe3\xdb\ +\x8b\xeb\x77\x97\xe3\xdb\x37\xe8\x1c\xa6\xde\x4e\xc0\xf0\xc7\x60\ +\xf1\x00\x77\x36\x21\x38\x19\xb4\xf1\xf0\x1e\xc3\xbb\x19\x4e\x2f\ +\xae\xe0\x72\x70\x3e\xbe\x1e\xcf\x3e\x36\x31\xac\xd1\x78\x76\x8b\ +\x21\x8f\x26\x53\x34\x40\x77\x83\xe9\x6c\x7c\xf1\xee\x7a\x30\x45\ +\x77\xef\xa6\x77\x93\xfb\x21\x10\x71\x09\x90\x6f\xc7\xb7\xa3\x29\ +\x20\x1a\xde\x0c\x6f\x67\x07\x80\x18\xee\xa1\xe1\x7b\xb8\x40\xf7\ +\x57\x83\xeb\x6b\x8c\x0d\x83\x1b\xbc\x03\x36\xa6\x98\x50\x74\x31\ +\xb9\xfb\x38\x1d\xbf\xb9\x9a\xa1\xab\xc9\xf5\xe5\x10\x6e\x9e\x0f\ +\x81\xbe\xc1\xf9\xf5\x90\x62\x03\xee\x2e\xae\x07\xe3\x9b\x26\xba\ +\x1c\xdc\x0c\xde\x0c\xc9\xac\x09\x00\x22\x4c\xe2\x91\x94\x4c\xf4\ +\xe1\x6a\x88\xef\x62\xac\x03\xf8\x7b\x31\x1b\x4f\x6e\x31\x3f\x17\ +\x93\xdb\xd9\x14\x2e\x9b\xc0\xee\x74\x96\xce\xfe\x30\xbe\x1f\x36\ +\xd1\x60\x3a\xbe\xc7\x92\x19\x4d\x27\x37\x84\x53\x2c\x5d\x98\x34\ +\x21\x70\x60\xea\xed\x90\x02\xc2\x92\x97\x15\x04\x43\xf0\xf5\xbb\ +\xfb\x61\x0a\x13\x5d\x0e\x07\xd7\x00\x0e\xb4\x75\xab\x2a\xf4\x00\ +\x6e\x1c\x36\x1a\x6f\xef\xa2\xe0\x01\x56\x5e\x7c\x6e\x47\xd6\x3a\ +\x88\xdc\x3f\x02\x58\xca\x1e\xfa\xb3\x81\xe0\xcf\x3c\x88\x96\x4e\ +\x64\xa1\x4e\xf8\x04\x06\xec\xb9\x4b\xb4\x77\x34\x38\x3a\x3b\x3a\ +\x7b\x4d\x1e\x27\xce\x53\xd2\xb2\x3d\xf7\xc1\xb7\x10\x2c\xa7\xc4\ +\x89\xe8\xfd\xd0\x5e\xe2\xa5\x4b\xe6\xd1\x3b\x73\x7b\xf1\xf9\x21\ +\x0a\xb6\xfe\xd2\x42\x7b\xe0\xbf\x46\x9d\xd1\xeb\xc6\x5f\x32\x76\ +\x6b\xb1\xde\xfa\x9f\x0d\x44\xa4\x73\x5b\x8b\xc0\x0b\x80\x9c\x2f\ +\xe0\xf8\x1c\xf0\x5f\x91\xbd\x74\x01\xed\xcb\x38\x8c\x1c\x7b\x69\ +\x45\xce\xca\x83\xe5\xd5\x44\x4f\x1d\xab\xd3\x44\xcf\x1d\xab\x7d\ +\xd0\xef\xf5\xe1\xba\x4b\xae\xbb\x56\x1b\xd6\x60\x12\x84\x56\x1b\ +\x45\x0f\x73\xfb\x65\xf7\xb4\x89\x8e\x8f\x9b\xa8\xd3\x81\xc7\xdd\ +\x7e\x7f\x9f\x3d\xee\xd0\xc7\x47\x27\x4d\x74\x0a\xff\x3a\xbd\x63\ +\xfa\x78\x1f\xd3\xdc\x78\x3b\x0b\x02\x6f\xe6\x86\x8d\x4a\x32\xd2\ +\xa9\x07\xd8\x2f\xcf\x80\x92\x4e\xbb\x8b\x51\x9f\xec\xbf\xa6\x23\ +\xd9\xe3\xc7\xb5\x9b\x38\x79\x72\x0c\x42\x7b\xe1\x26\xcf\x16\xea\ +\xb6\xdb\x94\x98\x0f\xee\xf2\xc1\x49\x18\x2d\x0c\x44\xec\x7a\xbf\ +\x73\x5d\xe8\xf8\xf7\x8e\xda\xdd\x51\x77\x44\x1f\x83\xdf\x73\x88\ +\xcb\x6d\x69\x03\xf7\x4e\x4e\x4f\x4f\xce\xe6\xea\x38\x06\x65\xee\ +\xc1\x78\x1d\x85\xe7\x86\x16\x13\xc9\x6b\x41\x3c\x2d\x77\x63\x3f\ +\x38\x16\x78\x2a\x9f\xf1\x06\x2e\x1d\x6b\xd1\x42\x12\x1f\x16\xf0\ +\xbe\x01\x13\x00\xf2\x1b\x79\xda\x7f\x7b\x4d\xb4\xff\x86\x6b\x1f\ +\xab\x1b\xb5\x89\xbe\xf1\x2f\x50\x36\xb9\x82\x5f\x9d\x26\xa5\x1d\ +\xeb\x14\xb5\x11\x63\x88\x29\x19\x75\xf8\x8d\x7d\x49\xfe\x8c\x31\ +\x95\x26\x2a\x00\x67\xf9\x43\xc9\xc2\x44\xdc\x38\xfe\x16\x96\x47\ +\x2e\x5e\x49\x9d\x8a\x01\x08\xf3\x2d\xc2\x86\x06\xc5\x42\x09\xa4\ +\x06\x71\x08\x4e\xdf\x4f\x0c\x13\xf2\xf9\x56\x66\x96\x2c\x05\x1d\ +\x70\x88\xd7\x7d\x06\xb7\xee\x2a\x92\xac\x53\xb7\xc9\x0d\xb8\x07\ +\x17\x8c\x3a\x48\x92\x60\x63\xb5\xd2\x05\xc4\x96\x14\x7f\x40\xee\ +\x73\xda\xaa\x91\x62\x58\x63\x14\x19\x2c\x4a\x11\x1a\xb0\x09\x61\ +\x9d\xc1\xe4\x23\xfa\xca\x88\x4c\x25\xe9\x5a\x87\x21\xe8\xa8\x0d\ +\x3f\xf8\x7f\x24\x86\x3c\x67\x95\x30\x30\x66\x5a\x45\xa5\xa0\xc3\ +\x57\x38\xab\x72\x22\x48\x24\xe0\xde\x02\xa7\x1c\x51\xb6\x94\xd9\ +\x6c\x1c\x07\x64\x92\x54\xa5\xe7\xae\x0c\x48\xaa\xec\xb9\xa7\x8e\ +\xdb\xeb\xb5\xf1\xa7\xd4\xff\x60\x40\x03\x48\x46\x22\x7b\x91\x8c\ +\x01\xed\x7b\xd7\x79\x64\x90\x6c\x0f\x82\x89\x0f\xf9\xa5\xee\x96\ +\x4a\xb5\xa1\xcb\x44\xb2\x24\xea\x8f\xf0\x2a\xdd\xc6\x16\x3a\x52\ +\x0c\x83\xf9\x5a\x81\xc7\x15\xe4\xb7\x71\x13\xa5\xd6\x4b\xae\x73\ +\x4d\x85\x04\x8e\x1e\xc4\x95\x53\x1a\x57\x78\xc8\xb0\xe7\x0a\xb8\ +\x8b\xb5\xb3\xf8\x7c\x1e\x3c\xa5\x37\xa6\x40\x51\x70\xbe\x05\xb3\ +\xf4\x8d\x38\xa8\xeb\xc4\xc0\xb0\xa3\x19\x42\xbe\x98\xef\x12\x78\ +\x84\x95\x18\xeb\xca\x46\xd3\x8a\x93\x67\x0f\xfc\x2f\xa1\xbb\x74\ +\xfd\x16\x89\xce\xe0\x74\xde\x00\x3d\x21\x70\x27\xe7\x11\xd5\xe0\ +\x9e\x28\x26\x4f\xbc\x62\xd7\x79\x92\x21\x5b\x56\xe2\x26\x9e\xc3\ +\x10\x40\x52\x0b\x8b\x2d\x89\x02\xaf\x05\xe9\x03\x59\x6a\x74\xf6\ +\x6b\xf5\x71\x18\xc4\x24\xd3\x06\xf7\x15\x84\xa6\xac\x85\x2d\xb1\ +\x4e\x5b\x75\x19\x24\x0d\xe7\x0f\x44\xdb\xbd\x5f\x00\x60\x6f\x00\ +\x39\x88\xa4\x32\x5d\x50\x25\xfe\x91\xc2\x91\x13\x31\x06\x71\xed\ +\x30\xe4\x7d\x59\x38\x10\x3f\x00\x56\x07\x03\xe4\xff\xd9\x45\x95\ +\xc7\x7a\x9e\x56\x25\xac\x75\xa4\xb0\xd6\x56\xc2\x1a\x5d\xe6\x42\ +\x58\xeb\x9d\xc2\xe7\x78\x5f\x65\xd6\x5a\xc3\x9e\x06\x2c\x51\x63\ +\xfa\x5b\x12\x73\xdc\xee\x8f\xfa\x23\x29\xc6\xc2\xe7\x98\x85\xfe\ +\x0d\x98\xd9\xa3\xbb\x4c\xd6\x9a\x6b\x4d\x45\x94\x7a\x6e\x81\x70\ +\x30\xab\x16\x49\x62\x74\xd2\xa5\xac\x67\x1b\x79\x2f\xad\xc3\x2f\ +\x71\xfc\x09\x87\x84\xf8\x30\x5a\x1c\x12\x63\xfa\x64\x47\x51\xf0\ +\xf8\x89\x7b\xd1\x83\xd0\x7f\x60\x04\x31\x62\x32\x23\x4c\x0d\x20\ +\xbd\x63\xb4\x69\x02\x56\x7b\xae\x2e\x09\x85\x0d\xb0\xef\x5d\xd9\ +\xc0\x6b\x25\x9f\x0b\x9d\x68\x8d\x2f\x23\x17\x18\x6a\x5d\x26\x0c\ +\xba\xa0\x79\x64\xb3\x6c\x54\x1a\xa4\xeb\x28\xed\x1b\x70\x59\x59\ +\x57\x65\xca\x62\x7c\xa2\xb2\x61\xd5\x19\xcd\xd4\xfa\x37\x69\x73\ +\x1b\xb6\x08\x7a\x81\x7c\x99\xbf\x65\xf0\xe8\x6b\x43\x0c\x39\x6a\ +\x1a\x35\x35\x21\x86\x98\xf9\x3c\xf0\xd8\x4e\x94\x01\x45\xc0\x85\ +\xa9\xa0\x89\xc4\x5d\xd4\xf5\x61\x1d\xd3\x3e\xa1\xba\x43\x15\x95\ +\xa1\x45\x08\x1a\x1d\xd8\xaf\x9d\xa3\x83\xd9\x67\x7f\x47\x6e\xcb\ +\x3d\x36\x37\xc8\x9d\x5c\xb6\x4a\x79\xd9\x92\xd8\x86\xdf\xde\xcf\ +\x01\x67\x3b\xfb\x6a\x81\xfe\x6a\x0c\xe0\x15\xf3\xed\x59\xa0\xfb\ +\xa8\x9d\x9d\x35\xe7\xa2\xc8\x55\xa7\x63\x88\xff\xaa\xa7\xad\x1f\ +\xa7\xa4\x62\x2d\x15\xba\x68\x99\xc1\x9a\xca\xfc\xdb\x74\x98\xba\ +\x68\x4e\x7e\xae\x83\xce\x75\x12\xa5\xee\xd9\x0c\x3a\x75\xce\x55\ +\x00\xbf\x9d\x39\x4f\x49\xf5\xdd\x52\xa5\xfd\xa4\x94\xb5\xdf\x79\ +\xb6\xeb\x57\x46\x52\x82\xa5\xf6\x9e\xe1\xca\xb1\xe1\x31\xde\x39\ +\x83\x5c\xe8\xb6\xbe\xa0\x52\x54\xbc\x71\x96\x37\x40\xbd\x02\x0a\ +\x8e\x17\xf8\x43\x29\x48\x37\xb2\x25\xc5\x00\x62\x3e\xee\x1f\xce\ +\x9b\xc8\x0d\xd9\xae\x2d\xdf\xbe\x63\x18\xf8\x00\x03\x0d\x29\x71\ +\x57\x4b\x89\x79\xd9\xa5\xf1\xf6\x06\x54\xf1\xc1\xf5\xc1\xf6\xb0\ +\x34\x42\x3b\xb2\x93\xa0\x5e\xe5\x4c\xaf\xbe\xaa\xe2\xc0\x85\x14\ +\xd3\x7e\x9a\x0a\x68\x69\x93\x33\x1f\xb9\xee\x65\xa2\x2a\x2d\x72\ +\x56\x0c\x9c\x10\x37\xe9\x46\x87\x46\x4d\x1a\x34\x3b\x69\x3d\x7b\ +\xaf\x7f\x7a\x7c\x72\x32\xa7\x31\x94\x45\xd1\xf6\x41\x9f\x97\xc9\ +\x78\x5d\x9b\x0d\xdb\xaf\xc9\x73\x49\xbe\x20\x8b\x84\x6a\x82\x14\ +\x93\x54\x1d\xa4\x2a\xcb\xdf\x6f\x9a\x8c\xb4\x9c\x40\xa9\x3a\xd6\ +\x51\x8b\x66\x91\x90\x27\x60\xea\x1a\x52\xb1\xc5\x02\xd5\x80\x17\ +\xc1\x3a\x59\x60\x5b\xc6\xc7\xa4\x79\x03\xb6\x3e\x1b\x22\xdb\xf8\ +\xbc\x83\x3f\xa5\x05\x2f\xb3\x28\x0b\xbc\x40\x65\x8a\x73\x6d\xfc\ +\x0b\x06\x65\x7b\xe9\x51\x09\x25\xfb\x09\x32\xac\x83\x7e\x13\x2d\ +\x9e\xe9\x7f\xc8\xdd\x15\xbf\xbb\x12\xef\x72\x52\x3a\x07\x72\x82\ +\x76\xd0\x4d\x8d\x4b\xbe\x7f\xc4\xf9\x25\x77\xf7\x65\x27\x21\x4b\ +\x56\x2d\x7d\xa6\x4e\x2f\x3d\x1c\xc8\xdc\x78\xea\x66\x32\xe6\xbf\ +\x93\x0e\x98\xa3\x39\x53\xfd\xcc\x19\x4f\x27\xcd\xaa\x30\xd7\x7e\ +\x4e\x94\x50\x9c\x0f\xd5\xc0\x60\x79\x8d\x9c\x17\xc1\xf3\xc9\x4a\ +\x33\x0f\x13\x7c\xe9\xa0\xa5\x18\xba\x69\xba\x6c\x7c\xd4\x9b\x1b\ +\x9c\x39\x19\x36\x0f\x9e\x98\x33\xcf\x83\xc6\xe3\x47\xfe\xea\x53\ +\x22\x8c\x81\xe2\x5e\xaf\x47\x11\x8c\x22\x7b\xe3\x14\x94\xe3\x48\ +\x34\x4a\x6c\x4c\xbe\x74\x82\xa6\x57\x5b\xf1\x69\x1f\xa4\x1d\x05\ +\x27\xa2\x67\x47\xa7\x47\xa7\xaa\xe1\xc9\x43\x04\xe3\x5b\x41\x7a\ +\xd5\x7a\x64\xda\x9f\x07\xde\x52\x42\x63\xa8\x86\x95\x06\xcb\xab\ +\x0d\xa8\x31\x81\xf9\x73\x3b\x4a\x65\xac\x01\xe4\xc9\x52\x29\xb8\ +\xf7\xc5\xe0\xc4\x08\x56\x9d\x44\x32\xab\x0a\xd0\xea\x64\x8a\x20\ +\x63\xc1\xb6\xee\xb6\xf1\x5a\xf2\x2f\x95\x4e\x45\xbf\x47\x9d\x53\ +\x30\x3e\x9e\xbd\x28\x5b\xd5\x34\x49\x1a\xf4\xce\x7a\xf2\xee\x5b\ +\x2f\xcf\xf3\xd8\x47\xf0\xa4\x9b\x5e\xe5\x44\x4b\x7f\xa0\x1c\x19\ +\x29\xe5\xec\xc2\xcd\x73\x8e\x2f\xce\x24\xac\x2d\xc9\x2a\x8e\xb7\ +\x4c\x18\x86\x52\xc4\x37\x16\x46\x49\x71\x1f\x3f\x38\x7c\x65\x70\ +\x1b\xaf\x0e\xe5\xd4\xb6\x8f\x3f\xcc\xa3\x05\x9b\x79\x00\x1e\x8d\ +\x09\xa2\xe0\x5c\x5d\x3e\xba\x2c\xd9\x8f\x7c\xeb\xb3\x1a\xf9\x34\ +\x48\x24\x9c\x6f\xc1\x05\xe5\xb2\x3b\xe9\x39\x47\xe8\xfa\xc2\x40\ +\x7e\x0c\xc5\xaf\xf9\x1e\x28\x05\x24\x6e\x8c\x54\x58\x64\xc7\xc2\ +\x27\x46\x8e\x93\x5d\x97\x87\x23\xc3\x9a\x96\x18\x29\xda\x02\x1d\ +\x77\x8f\x4f\x4f\x8e\x0c\x26\xa4\x4a\x48\x4b\xfb\x8b\x14\xda\xb3\ +\xf1\x47\x26\x03\xe5\x9d\x6d\x56\xd3\x78\x9d\x8d\x60\x19\x7d\xb5\ +\x5b\x13\x2a\x37\x27\xa4\x32\xb7\x96\x51\x10\xb6\xf0\xa6\x9f\x2f\ +\x00\xbd\x90\xc0\x24\x5b\x5c\x6b\x11\xcb\xe2\x52\x49\x53\x14\x0e\ +\xd6\x0d\xf7\x22\x6d\xc5\x8b\x90\x67\x8c\xf1\xa5\x1d\x81\x28\xec\ +\x67\x7d\x40\xde\x82\xc2\xc6\x40\x9d\x41\x9e\x06\x98\x6f\x31\x0d\ +\x52\x24\x92\x56\x40\xa4\x04\xa9\x5e\x6d\x2e\x0f\xa4\x85\x9b\x24\ +\xcd\x4f\xe8\xaa\xca\x99\x26\x9e\x2c\xd7\x28\x2f\x29\x5e\x5f\xc9\ +\x4b\xbf\x61\x2f\x4c\xf1\xa1\xa1\xe2\x89\xd0\x9f\xfa\x3a\xee\xe6\ +\x85\x02\xe3\x76\xbd\x5a\xab\x49\xa5\x02\x91\x6e\x0a\xaa\xdf\xdc\ +\x86\xad\xb9\x98\x97\xe8\x98\xb4\x8e\x1a\xc3\x2a\x12\x9b\xab\x8c\ +\x8b\x88\x9e\x69\xf3\x75\x64\x22\x84\xd8\xc3\x0f\x24\x85\x9e\x00\ +\x99\x28\x49\xab\x88\x7a\x94\xc9\x0a\x8c\xe9\xc6\xa0\x60\x4c\xb0\ +\x5a\x95\x66\x8c\x45\x25\xfc\x92\x03\xd7\xbf\x0a\x48\x97\xc2\x56\ +\xe5\x92\x34\xa9\x92\x68\x30\xb3\x95\x6a\x60\x56\x58\xc6\x05\x22\ +\x11\x7d\xc4\x6a\xf5\x15\xae\x67\x47\xb1\xa8\x9e\x68\x27\x67\xd3\ +\x78\x7b\x6d\xcf\x1d\x4f\xc9\x05\xda\xe9\x8a\xcd\x5a\x91\xc4\xde\ +\x1a\x2b\xb4\x7d\xa7\xbc\x75\x95\x35\xe4\x64\x4d\x75\x5f\x42\x08\ +\x5e\xb0\xef\x78\x6e\x2d\x23\xfb\xf1\xdc\x8e\x69\x5b\xa2\x29\x3f\ +\x4c\xcf\x94\x28\x00\x63\xa7\x0e\x26\x53\x58\x3e\x62\xdf\x14\x9b\ +\x65\x2d\xbc\x20\x76\xd8\x12\x44\xa5\x86\x4b\x46\x0b\x5a\x29\x6c\ +\xc2\xc3\xb3\x5a\xb8\x7e\x6a\x48\x73\x85\x33\x31\x13\x25\x39\x8d\ +\x97\x16\xeb\x96\xed\xf7\x49\x1b\x2c\xff\xd1\xde\x2f\x76\x7f\x46\ +\x0c\x2c\x72\xc8\x9e\x9b\x36\xbd\xf5\xd8\x3f\x8d\xc4\xc4\x9e\x5b\ +\x3f\xf1\x96\x34\x89\x46\xea\xab\x58\x79\x50\x9d\x52\x30\x03\x65\ +\x53\x0e\x5f\xa1\xd9\xe4\x0e\xb5\xd0\xf9\x64\x36\x9b\xdc\xa0\xd9\ +\xe0\xfc\x1e\x77\xc4\x49\xa0\x70\x5e\x52\x50\x6d\xaa\x1b\x50\x2a\ +\xd6\x76\xc5\x54\xac\xa3\x84\x46\x5c\xf1\x1d\xf4\xcf\xfa\x67\xfb\ +\x3b\x6d\xf6\x8a\x53\x5f\x2d\x64\xca\x75\x54\xda\x4d\xa9\x26\x4d\ +\x24\xad\xca\xcb\x99\x72\xb2\x2a\x55\x65\x14\xf1\xff\x45\x5d\x20\ +\x6a\x96\x7d\x16\x4a\xbb\x38\x43\x55\x0c\xdb\xf2\xec\x38\x81\x5c\ +\x52\xd7\x03\x79\x22\x35\xb0\x72\xb2\xda\x66\x48\x2b\x37\x8a\x93\ +\x6c\xa9\x9a\x81\x2a\x83\x64\xf8\x54\xa6\xed\x3c\x52\xd5\x59\x26\ +\x13\x11\xbb\x06\x73\x79\x36\x63\xe7\xca\x30\xe2\x67\x0f\x6b\x90\ +\xc0\xc1\x15\x98\x7a\x4e\xa7\xed\xde\x65\x07\x7f\x74\x86\x38\x65\ +\xe0\xb5\xae\x87\xa3\x19\xb8\x2d\xfa\xb2\x8a\xd1\x6b\x61\x61\x7e\ +\xe7\xb5\xd4\xd1\xd6\x52\xfb\x2b\xd6\x92\xb6\x3a\x98\xb9\x69\x39\ +\x7d\xc5\xa2\x8f\xa2\x07\xb3\xdf\xfa\x9a\xcd\x9e\x28\x6d\xfa\x96\ +\xd6\x8f\x73\x5d\x9d\xff\x4e\x71\x57\x71\x5c\xfa\x18\x55\xd8\x84\ +\x81\x1a\x4b\x91\x71\x96\x0f\xab\xb6\x3b\xa2\x10\x6b\x90\x20\xc8\ +\xdc\x0c\xab\xba\x2b\xe0\x5e\x58\x86\x85\x68\x39\x9d\x9d\x9a\x50\ +\x8b\xa5\x79\xb8\xe3\x93\xbc\x9e\x19\x67\x41\xa2\x69\x68\x70\x04\ +\xf8\xc8\x88\x80\x28\xa9\x26\x7c\xbd\xaf\xb0\x0a\xf9\x7c\x5f\x52\ +\x8b\x7e\x6d\x37\x53\x85\x91\xea\x98\x0a\x1a\x5f\xc9\xa6\xe4\x32\ +\x58\x7c\xa6\xbb\x92\xdc\xfd\x88\x87\x89\xcd\xaa\x53\xa4\x9d\x7d\ +\x6e\x47\x2d\x9a\x2f\x63\x4c\x95\x36\x03\xe9\x3c\x3f\x88\x36\xb6\ +\x97\x3f\x11\x5c\x0b\x10\x25\x14\x74\x32\x1a\xe5\x24\x1d\xe2\xb6\ +\xf8\x68\xe5\x05\x76\xc2\xf7\x2a\x79\xcc\xe4\xbc\x0b\x64\x58\xe9\ +\xb5\xf6\x2e\x45\x64\xa6\x27\x9b\x79\xc4\xd2\x01\xda\x5b\x84\xe6\ +\xed\x4c\xa7\x5d\x22\x15\xbe\x75\x29\x42\x98\xb3\xbb\xc1\x62\x6a\ +\xa5\x3f\x8c\x2f\x45\x16\x92\xc4\x0b\xe4\x4d\x1c\x13\xe2\x44\xac\ +\x25\x17\x57\xc9\x0b\x6a\x59\x22\x5c\x6b\x0e\x8a\x58\xac\x2d\x31\ +\x71\x53\x1e\xe5\xed\x0c\x0d\x76\x26\x68\x55\x30\xb6\x14\x60\x0a\ +\xd1\x8e\x41\xd5\x73\x0f\x24\x14\x5b\x3f\xd9\xcb\xdf\x02\xd7\x8f\ +\x5b\xf8\xf5\x23\xc9\xc8\x0a\x9a\xe0\x76\x41\xf4\x1d\xf1\xfc\x84\ +\x11\x2d\xd6\xae\xb7\x84\x91\xf4\xea\x47\xa0\x2d\xc0\x4a\xcc\x77\ +\xd9\x34\x4c\xa2\x4f\xe4\xb9\xe2\xd4\xd2\x92\x04\x85\xf3\x89\xc2\ +\x29\x22\x2f\x08\x19\x68\x33\x8d\x26\xe2\xf4\x29\x12\x69\x55\x69\ +\xc3\x60\xbe\x4a\x70\x69\x25\xbd\xb6\xf8\x24\xcf\x53\x51\x88\xad\ +\xc0\x17\xbc\xfa\x2e\xb2\xcc\xa7\xb7\x58\xa2\x8c\xda\x3a\x72\xd5\ +\x89\xe5\x8e\x89\xbd\x41\xa8\xd4\x6b\x04\xcf\x95\x3b\x20\xa3\xda\ +\x34\x00\xe5\xf9\x71\xc8\x86\xd9\x5f\x46\x8d\xf8\x66\xb1\x98\x48\ +\x8d\xc8\x9f\x86\x81\xd8\x32\x5a\xcb\x48\x2d\xa7\x94\x7b\x65\x13\ +\x45\xac\x19\x05\x9c\x37\x78\x72\x0b\x66\x00\x90\xda\xaf\xe2\xf3\ +\xba\xec\xa9\x29\xb8\x48\x07\x18\xc2\xcb\xaa\xf2\xeb\x00\x69\xac\ +\xee\xa5\x0d\x32\x8c\xa6\xbc\x96\x14\x11\xc7\xee\x67\x8c\x07\x6d\ +\x76\x9a\xd2\xcc\x7a\xcb\xd0\x9e\x7d\x8a\x3f\xe2\xb9\x63\x17\x7f\ +\xa4\x9a\x63\xae\x34\x78\xd9\x3a\x3d\xbd\x4d\xcb\xd6\x4a\xc7\x20\ +\xec\x52\x7a\xb9\x72\x38\x51\xe5\xc0\x74\xa3\xb4\xa8\x54\xa3\xa5\ +\xba\x62\xda\xda\x91\x66\x99\x62\x54\x82\x76\x54\x8b\xae\x10\x45\ +\x51\x3f\x50\x2d\x6d\xa2\x98\x62\xb5\x64\x49\x7c\xee\x37\x45\x18\ +\xdb\xfe\xb2\x2f\x21\xc8\x4b\x52\x39\x15\x47\x3a\xaa\x7f\x85\x41\ +\xb8\x0d\x6f\x82\xa5\xf3\x8f\x17\x9d\x17\xff\x96\x5b\x18\xf9\xce\ +\xec\xb4\x78\x5e\xb7\xc6\x3c\xcb\xda\x38\xfe\x56\x4e\xbf\x53\x4e\ +\xba\xa9\x9c\xb3\x7d\x44\x7e\x6d\x23\x7d\xcb\xb3\xb0\xb8\x91\x8d\ +\xe2\xea\xa2\x77\xe8\xfe\x49\xa5\x8b\x6c\x81\xca\xb7\x4b\xc6\xf7\ +\x15\x10\xb5\x21\x6c\xed\x48\xe8\xcb\xc1\x6f\xad\xc7\x6b\x77\x95\ +\x20\x37\x41\x36\x9a\xc3\x4f\xdc\x77\x53\x80\x9f\xc4\x37\x4e\x44\ +\x5d\xa0\x22\x4c\x39\x7f\x37\x35\x7a\x68\x7d\x5a\x15\x3b\x79\x99\ +\x25\x89\xc8\xcc\xbb\x93\x8a\xa8\xb4\xae\x06\xad\x5c\x22\x1c\xd7\ +\x53\x51\xa5\x7d\x94\x3c\x40\xed\xd4\xa2\xc1\x4a\xf4\x42\x97\x06\ +\x95\xf2\xa9\x50\x8c\xf0\x1c\xc3\x16\x45\xdb\xec\x3d\x44\xee\x12\ +\x07\xea\xac\x37\x87\xbd\x55\x90\x23\x10\x61\xe7\x22\x60\x81\x68\ +\x9c\xbd\x03\x61\x6e\xf8\x6c\x6b\xa4\xc9\x5f\x41\xa1\x07\xfc\xec\ +\x81\x12\xe9\xb9\x81\x14\x84\xf8\xdc\x08\xaf\x62\x4f\xb3\x06\x7b\ +\x91\xb8\xbf\x3b\x05\x69\x45\x3a\x20\x2f\x2f\xa1\x03\x76\xa1\xaa\ +\x91\x27\x3d\x6a\x6c\x9a\xd2\x84\xd7\xce\xa5\x6a\xa0\x20\x65\xc3\ +\x2b\x29\x3a\x65\x35\xdf\x49\xa9\xf6\x3a\x4a\x9e\xee\x89\x5b\x30\ +\x7c\x57\x51\x0e\xb5\x56\xf6\x46\x16\x3d\xad\x90\xcd\x8a\x3a\x18\ +\xf3\xcb\x30\x85\xd0\x0c\x60\xb4\x2f\x5f\x31\x02\x10\xde\xe1\x35\ +\x11\xc4\xdc\x5c\x0d\x8a\xf2\x5e\xf4\xa6\x90\x54\xa2\xcc\x40\x78\ +\xf3\xb7\x5c\xf2\x16\x5e\xd5\x30\x28\x9b\x16\xa3\x59\x30\xc1\x1e\ +\x19\x77\x61\x91\x6f\x1e\x8b\x83\x08\x5c\x73\xea\xa1\xf0\x51\x86\ +\x88\x34\x6b\x2a\x28\xdd\xa5\x18\x7b\x97\x44\x58\xbc\x6f\x03\xf1\ +\x52\x6f\x8d\x86\x0d\xb2\x86\x2f\x82\xc8\x77\x22\xee\x5b\xb9\x89\ +\x57\xb2\xf0\x7a\x5d\x9b\x6d\x29\x1d\x20\xdf\x79\x61\xcf\x73\x11\ +\xd5\x3b\xea\xfc\x1f\x39\x31\x28\x38\xc1\xd1\x7b\x00\xb3\x14\x82\ +\xc9\x32\xf5\xa0\xe8\x4f\x6c\x8e\x2e\x2c\x08\x77\xe1\xfe\xe1\xa0\ +\xf4\x3e\x0c\x8a\x11\x6b\xfb\x25\xad\xfb\x16\x1b\xc5\x5a\xf7\x91\ +\xc1\xf6\xff\x6a\xfc\x07\xff\xd0\xbd\x05\ \x00\x00\x00\x96\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -779,30 +783,30 @@ qt_resource_struct = b"\ \x00\x00\x00\x18\x00\x02\x00\x00\x00\x01\x00\x00\x00\x1c\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ \x00\x00\x00\x4a\x00\x02\x00\x00\x00\x18\x00\x00\x00\x04\ -\x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x16\xdd\ -\x00\x00\x02\x32\x00\x00\x00\x00\x00\x01\x00\x00\x19\x10\ -\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\x14\xcf\ -\x00\x00\x01\xda\x00\x00\x00\x00\x00\x01\x00\x00\x17\xc2\ -\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x01\x00\x00\x13\x59\ -\x00\x00\x03\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x22\xe2\ -\x00\x00\x02\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x1a\xbf\ -\x00\x00\x02\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x1c\x0c\ -\x00\x00\x03\xde\x00\x00\x00\x00\x00\x01\x00\x00\x22\x5d\ -\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00\x16\x33\ -\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x12\xc2\ -\x00\x00\x00\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x10\x4d\ -\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x1d\xd8\ -\x00\x00\x00\x54\x00\x00\x00\x00\x00\x01\x00\x00\x0f\xb3\ -\x00\x00\x03\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x21\x79\ -\x00\x00\x00\xfa\x00\x00\x00\x00\x00\x01\x00\x00\x13\xfd\ -\x00\x00\x02\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x1e\x7a\ -\x00\x00\x03\x56\x00\x00\x00\x00\x00\x01\x00\x00\x1f\xdc\ -\x00\x00\x02\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x68\ -\x00\x00\x01\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x15\x89\ -\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x18\x66\ -\x00\x00\x02\x58\x00\x00\x00\x00\x00\x01\x00\x00\x19\xf8\ -\x00\x00\x03\x84\x00\x00\x00\x00\x00\x01\x00\x00\x20\xcf\ -\x00\x00\x03\x26\x00\x00\x00\x00\x00\x01\x00\x00\x1f\x39\ +\x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x17\x19\ +\x00\x00\x02\x32\x00\x00\x00\x00\x00\x01\x00\x00\x19\x4c\ +\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\x15\x0b\ +\x00\x00\x01\xda\x00\x00\x00\x00\x00\x01\x00\x00\x17\xfe\ +\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x01\x00\x00\x13\x95\ +\x00\x00\x03\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x23\x1e\ +\x00\x00\x02\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x1a\xfb\ +\x00\x00\x02\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x1c\x48\ +\x00\x00\x03\xde\x00\x00\x00\x00\x00\x01\x00\x00\x22\x99\ +\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00\x16\x6f\ +\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x12\xfe\ +\x00\x00\x00\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x10\x89\ +\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x1e\x14\ +\x00\x00\x00\x54\x00\x00\x00\x00\x00\x01\x00\x00\x0f\xef\ +\x00\x00\x03\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x21\xb5\ +\x00\x00\x00\xfa\x00\x00\x00\x00\x00\x01\x00\x00\x14\x39\ +\x00\x00\x02\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x1e\xb6\ +\x00\x00\x03\x56\x00\x00\x00\x00\x00\x01\x00\x00\x20\x18\ +\x00\x00\x02\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x1b\xa4\ +\x00\x00\x01\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x15\xc5\ +\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x18\xa2\ +\x00\x00\x02\x58\x00\x00\x00\x00\x00\x01\x00\x00\x1a\x34\ +\x00\x00\x03\x84\x00\x00\x00\x00\x00\x01\x00\x00\x21\x0b\ +\x00\x00\x03\x26\x00\x00\x00\x00\x00\x01\x00\x00\x1f\x75\ \x00\x00\x00\x32\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\ " diff --git a/qdarkstyle/pyside_style_rc.py b/qdarkstyle/pyside_style_rc.py index 7a0243101..2cb58eb15 100644 --- a/qdarkstyle/pyside_style_rc.py +++ b/qdarkstyle/pyside_style_rc.py @@ -2,16 +2,16 @@ # Resource object code # -# Created: Mon Feb 24 12:25:54 2014 +# Created: Tue Feb 25 09:10:09 2014 # by: The Resource Compiler for PySide (Qt v4.8.4) # # WARNING! All changes made in this file will be lost! from PySide import QtCore -qt_resource_data = b"\x00\x00P&/*\x0a * The MIT License (MIT)\x0a *\x0a * Copyright (c) <2013-2014> \x0a *\x0a * Permission is hereby granted, free of charge, to any person obtaining a copy\x0a * of this software and associated documentation files (the \x22Software\x22), to deal\x0a * in the Software without restriction, including without limitation the rights\x0a * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\x0a * copies of the Software, and to permit persons to whom the Software is\x0a * furnished to do so, subject to the following conditions:\x0a\x0a * The above copyright notice and this permission notice shall be included in\x0a * all copies or substantial portions of the Software.\x0a\x0a * THE SOFTWARE IS PROVIDED \x22AS IS\x22, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\x0a * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\x0a * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\x0a * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\x0a * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\x0a * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\x0a * THE SOFTWARE.\x0a */\x0a\x0aQProgressBar:horizontal {\x0a border: 1px solid #3A3939;\x0a text-align: center;\x0a padding: 1px;\x0a background: #201F1F;\x0a}\x0aQProgressBar::chunk:horizontal {\x0a background-color: qlineargradient(spread:reflect, x1:1, y1:0.545, x2:1, y2:0, stop:0 rgba(28, 66, 111, 255), stop:1 rgba(37, 87, 146, 255));\x0a}\x0a\x0aQToolTip\x0a{\x0a border: 1px solid #3A3939;\x0a background-color: rgb(90, 102, 117);;\x0a color: white;\x0a padding: 1px;\x0a opacity: 200;\x0a}\x0a\x0aQWidget\x0a{\x0a color: silver;\x0a background-color: #302F2F;\x0a selection-background-color:#78879b;\x0a selection-color: black;\x0a background-clip: border;\x0a border-image: none;\x0a outline: 0;\x0a}\x0a\x0aQWidget:item:hover\x0a{\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0 #78879b, stop: 1 #78879b);\x0a color: black;\x0a}\x0a\x0aQWidget:item:selected\x0a{\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0 #78879b, stop: 1 #78879b);\x0a}\x0a\x0aQMenuBar\x0a{\x0a background-color: #302F2F;\x0a color: silver;\x0a}\x0a\x0aQMenuBar::item\x0a{\x0a background: transparent;\x0a}\x0a\x0aQMenuBar::item:selected\x0a{\x0a background: transparent;\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQMenuBar::item:pressed\x0a{\x0a border: 1px solid #3A3939;\x0a background-color: #78879b;\x0a color: black;\x0a margin-bottom:-1px;\x0a padding-bottom:1px;\x0a}\x0a\x0aQMenu\x0a{\x0a border: 1px solid #3A3939;\x0a color: silver;\x0a margin: 2px;\x0a}\x0a\x0aQMenu::icon\x0a{\x0a margin: 5px;\x0a}\x0a\x0aQMenu::item\x0a{\x0a padding: 5px 30px 5px 30px;\x0a margin-left: 5px;\x0a border: 1px solid transparent; /* reserve space for selection border */\x0a}\x0a\x0aQMenu::item:selected\x0a{\x0a color: black;\x0a}\x0a\x0aQWidget:disabled\x0a{\x0a color: #404040;\x0a background-color: #302F2F;\x0a}\x0a\x0aQAbstractItemView\x0a{\x0a alternate-background-color: #3A3939;\x0a color: silver;\x0a border: 1px solid 3A3939;\x0a border-radius: 3px;\x0a padding: 1px;\x0a}\x0a\x0aQWidget:focus, QMenuBar:focus\x0a{\x0a border: 1px solid rgba(48, 86, 111);\x0a}\x0a\x0aQTabWidget:focus, QCheckBox:focus, QRadioButton:focus\x0a{\x0a border: none;\x0a}\x0a\x0aQLineEdit\x0a{\x0a background-color: #201F1F;\x0a padding: 2px;\x0a border-style: solid;\x0a border: 1px solid #3A3939;\x0a border-radius: 3px;\x0a color: silver;\x0a}\x0a\x0aQGroupBox {\x0a border:1px solid #3A3939;\x0a border-radius: 7px;\x0a margin-top: 2ex;\x0a}\x0a\x0aQGroupBox::title {\x0a subcontrol-origin: margin;\x0a subcontrol-position: top center;\x0a padding-left: 10px;\x0a padding-right: 10px;\x0a}\x0a\x0aQAbstractScrollArea\x0a{\x0a border-radius: 3px;\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQScrollBar:horizontal\x0a{\x0a height: 15px;\x0a margin: 0px 11px 0px 11px;\x0a border: 1px solid #3A3939;\x0a border-radius: 6px;\x0a background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,\x0a stop: 0 #302F2F, stop: 1 #484846);\x0a}\x0a\x0aQScrollBar::handle:horizontal\x0a{\x0a background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,\x0a stop: 0 #605F5F, stop: 1 #787876);\x0a min-width: 5px;\x0a border-radius: 5px;\x0a}\x0a\x0aQScrollBar::sub-line:horizontal\x0a{\x0a border-image: url(:/qss_icons/rc/right_arrow_disabled.png);\x0a width: 10px;\x0a height: 10px;\x0a subcontrol-position: right;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::add-line:horizontal\x0a{\x0a border-image: url(:/qss_icons/rc/left_arrow_disabled.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: left;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::sub-line:horizontal:hover,QScrollBar::sub-line:horizontal:on\x0a{\x0a border-image: url(:/qss_icons/rc/right_arrow.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: right;\x0a subcontrol-origin: margin;\x0a}\x0a\x0a\x0aQScrollBar::add-line:horizontal:hover, QScrollBar::add-line:horizontal:on\x0a{\x0a border-image: url(:/qss_icons/rc/left_arrow.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: left;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::up-arrow:horizontal, QScrollBar::down-arrow:horizontal\x0a{\x0a background: none;\x0a}\x0a\x0a\x0aQScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal\x0a{\x0a background: none;\x0a}\x0a\x0aQScrollBar:vertical\x0a{\x0a background-color: QLinearGradient( x1: 1, y1: 0, x2: 0, y2: 0,\x0a stop: 0 #302F2F, stop: 1 #484846);\x0a width: 15px;\x0a margin: 11px 0 11px 0;\x0a border: 1px solid #3A3939;\x0a border-radius: 6px;\x0a}\x0a\x0aQScrollBar::handle:vertical\x0a{\x0a background-color: QLinearGradient( x1: 1, y1: 0, x2: 0, y2: 0,\x0a stop: 0 #605F5F, stop: 1 #787876);\x0a min-height: 5px;\x0a border-radius: 5px;\x0a}\x0a\x0aQScrollBar::sub-line:vertical\x0a{\x0a border-image: url(:/qss_icons/rc/up_arrow_disabled.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: top;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::add-line:vertical\x0a{\x0a\x0a border-image: url(:/qss_icons/rc/down_arrow_disabled.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: bottom;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::sub-line:vertical:hover,QScrollBar::sub-line:vertical:on\x0a{\x0a\x0a border-image: url(:/qss_icons/rc/up_arrow.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: top;\x0a subcontrol-origin: margin;\x0a}\x0a\x0a\x0aQScrollBar::add-line:vertical:hover, QScrollBar::add-line:vertical:on\x0a{\x0a border-image: url(:/qss_icons/rc/down_arrow.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: bottom;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical\x0a{\x0a background: none;\x0a}\x0a\x0a\x0aQScrollBar::add-page:vertical, QScrollBar::sub-page:vertical\x0a{\x0a background: none;\x0a}\x0a\x0aQTextEdit\x0a{\x0a background-color: #201F1F;\x0a color: silver;\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQPlainTextEdit\x0a{\x0a background-color: #201F1F;;\x0a color: silver;\x0a border-radius: 3px;\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQHeaderView::section\x0a{\x0a background-color: #3A3939;\x0a color: silver;\x0a padding-left: 4px;\x0a border: 1px solid #6c6c6c;\x0a}\x0a\x0aQCheckBox:disabled\x0a{\x0a color: #404040;\x0a}\x0a\x0aQSizeGrip {\x0a image: url(:/qss_icons/rc/sizegrip.png);\x0a width: 12px;\x0a height: 12px;\x0a}\x0a\x0a\x0aQMainWindow::separator\x0a{\x0a background-color: #302F2F;\x0a color: white;\x0a padding-left: 4px;\x0a spacing: 2px;\x0a border: 1px dashed #3A3939;\x0a}\x0a\x0aQMainWindow::separator:hover\x0a{\x0a\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #58677b,\x0a stop:0.5 #78879b stop:1 #58677b);\x0a color: white;\x0a padding-left: 4px;\x0a border: 1px solid #3A3939;\x0a spacing: 2px;\x0a}\x0a\x0a\x0aQMenu::separator\x0a{\x0a height: 1px;\x0a background-color: #3A3939;\x0a color: white;\x0a padding-left: 4px;\x0a margin-left: 10px;\x0a margin-right: 5px;\x0a}\x0a\x0a\x0a\x0aQRadioButton::indicator:checked, QRadioButton::indicator:unchecked{\x0a color: #b1b1b1;\x0a background-color: #302F2F;\x0a border: 1px solid silver;\x0a border-radius: 5px;\x0a}\x0a\x0a\x0a\x0aQRadioButton::indicator:checked\x0a{\x0a background-color: qradialgradient(\x0a cx: 0.5, cy: 0.5,\x0a fx: 0.5, fy: 0.5,\x0a radius: 1.0,\x0a stop: 0.25 #78879b,\x0a stop: 0.3 #302F2F\x0a );\x0a}\x0a\x0aQCheckBox, QRadioButton\x0a{\x0a padding: 3px;\x0a outline: none;\x0a}\x0a\x0aQCheckBox::indicator{\x0a color: #b1b1b1;\x0a background-color: #302F2F;\x0a border: 1px solid silver;\x0a width: 9px;\x0a height: 9px;\x0a}\x0a\x0aQRadioButton::indicator\x0a{\x0a border-radius: 7px;\x0a width: 9px;\x0a height: 9px;\x0a}\x0a\x0aQCheckBox::indicator:pressed\x0a{\x0a border: 1px solid #78879b;\x0a}\x0a\x0aQRadioButton::indicator:hover, QCheckBox::indicator:hover\x0a{\x0a border: 1px solid #78879b;\x0a}\x0a\x0aQCheckBox::indicator:checked\x0a{\x0a image:url(:/qss_icons/rc/checkbox.png);\x0a}\x0a\x0aQCheckBox::indicator:disabled, QRadioButton::indicator:disabled\x0a{\x0a border: 1px solid #444;\x0a}\x0a\x0aQFrame\x0a{\x0a border-radius: 3px;\x0a}\x0a\x0aQStackedWidget\x0a{\x0a border: none;\x0a}\x0a\x0aQToolBar {\x0a border: 1px solid #393838;\x0a background: 1px solid #302F2F;\x0a font-weight: bold;\x0a}\x0a\x0aQToolBar::handle:horizontal {\x0a image: url(:/qss_icons/rc/Hmovetoolbar.png);\x0a}\x0aQToolBar::handle:vertical {\x0a image: url(:/qss_icons/rc/Vmovetoolbar.png);\x0a}\x0aQToolBar::separator:horizontal {\x0a image: url(:/qss_icons/rc/Hsepartoolbar.png);\x0a}\x0aQToolBar::separator:vertical {\x0a image: url(:/qss_icons/rc/Vsepartoolbars.png);\x0a}\x0a\x0aQPushButton\x0a{\x0a color: silver;\x0a background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,\x0a stop: 0 #302F2F, stop: 1 #484846);\x0a border-width: 1px;\x0a border-color: #4A4949;\x0a border-style: solid;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a padding-left: 5px;\x0a padding-right: 5px;\x0a border-radius: 5px;\x0a outline: none;\x0a}\x0a\x0aQPushButton:disabled\x0a{\x0a background-color: #302F2F;\x0a border-width: 1px;\x0a border-color: #3A3939;\x0a border-style: solid;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a padding-left: 10px;\x0a padding-right: 10px;\x0a /*border-radius: 3px;*/\x0a color: #454545;\x0a}\x0a\x0aQComboBox\x0a{\x0a selection-background-color: #78879b;\x0a background-color: #201F1F;\x0a border-style: solid;\x0a border: 1px solid #3A3939;\x0a border-radius: 3px;\x0a padding: 2px;\x0a}\x0a\x0aQComboBox:hover,QPushButton:hover,QAbstractSpinBox:hover,QLineEdit:hover,QTextEdit:hover,QPlainTextEdit:hover,QAbstractView:hover,QTreeView:hover\x0a{\x0a border: 1px solid #78879b;\x0a color: silver;\x0a}\x0a\x0aQComboBox:on\x0a{\x0a background-color: #626873;\x0a padding-top: 3px;\x0a padding-left: 4px;\x0a selection-background-color: #4a4a4a;\x0a}\x0a\x0aQComboBox QAbstractItemView\x0a{\x0a background-color: #201F1F;\x0a border-radius: 3px;\x0a border: 1px solid #3A3939;\x0a selection-background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0 #78879b, stop: 1 #78879b);\x0a}\x0a\x0aQComboBox::drop-down\x0a{\x0a subcontrol-origin: padding;\x0a subcontrol-position: top right;\x0a width: 15px;\x0a\x0a border-left-width: 0px;\x0a border-left-color: darkgray;\x0a border-left-style: solid;\x0a border-top-right-radius: 3px;\x0a border-bottom-right-radius: 3px;\x0a}\x0a\x0aQComboBox::down-arrow\x0a{\x0a image: url(:/qss_icons/rc/down_arrow_disabled.png);\x0a}\x0a\x0aQComboBox::down-arrow:on, QComboBox::down-arrow:hover,\x0aQComboBox::down-arrow:focus\x0a{\x0a image: url(:/qss_icons/rc/down_arrow.png);\x0a}\x0a\x0aQPushButton:pressed\x0a{\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0 #302F2F, stop: 1 #484846);\x0a}\x0a\x0aQAbstractSpinBox {\x0a padding-top: 2px;\x0a padding-bottom: 2px;\x0a border: 1px solid #3A3939;\x0a background-color: #201F1F;\x0a color: silver;\x0a border-radius: 3px;\x0a}\x0a\x0aQAbstractSpinBox:up-button\x0a{\x0a background-color: transparent;\x0a subcontrol-origin: border;\x0a subcontrol-position: center right;\x0a}\x0a\x0aQAbstractSpinBox:down-button\x0a{\x0a background-color: transparent;\x0a subcontrol-origin: border;\x0a subcontrol-position: center left;\x0a}\x0a\x0aQAbstractSpinBox::up-arrow,QAbstractSpinBox::up-arrow:disabled,QAbstractSpinBox::up-arrow:off {\x0a image: url(:/qss_icons/rc/up_arrow_disabled.png);\x0a width: 10px;\x0a height: 10px;\x0a}\x0aQAbstractSpinBox::up-arrow:hover\x0a{\x0a image: url(:/qss_icons/rc/up_arrow.png);\x0a}\x0a\x0a\x0aQAbstractSpinBox::down-arrow,QAbstractSpinBox::down-arrow:disabled,QAbstractSpinBox::down-arrow:off\x0a{\x0a image: url(:/qss_icons/rc/down_arrow_disabled.png);\x0a width: 10px;\x0a height: 10px;\x0a}\x0aQAbstractSpinBox::down-arrow:hover\x0a{\x0a image: url(:/qss_icons/rc/down_arrow.png);\x0a}\x0a\x0a\x0aQLabel\x0a{\x0a border: 0px solid black;\x0a}\x0a\x0a\x0aQTabWidget::pane {\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQTabBar\x0a{\x0a qproperty-drawBase: 0;\x0a padding-right: 15px;\x0a}\x0a\x0aQTabBar:focus\x0a{\x0a border: 0px transparent black;\x0a}\x0a\x0aQTabBar::close-button {\x0a image: url(:/qss_icons/rc/close.png);\x0a background: transparent;\x0a icon-size: 10px;\x0a padding: 5px;\x0a}\x0a\x0aQTabBar::close-button:hover\x0a{\x0a background: rgba(255, 255, 255, 20);\x0a border-radius: 3px;\x0a}\x0a\x0aQTabBar::close-button:pressed {\x0a padding: 5px 4px 4px 5px;\x0a}\x0a\x0aQTabBar::tab:!selected:hover\x0a{\x0a color:white;\x0a}\x0a\x0aQTabBar::tab:selected:hover\x0a{\x0a color: white;\x0a}\x0a\x0a/* TOP - BOTTOM TABS */\x0aQTabBar::tab:top {\x0a color: #b1b1b1;\x0a border: 1px solid #3A3939;\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 5px;\x0a padding-right: 5px;\x0a padding-top: 3px;\x0a padding-bottom: 2px;\x0a margin-right: -1px;\x0a\x0a border-top-left-radius: 3px;\x0a border-top-right-radius: 3px;\x0a}\x0a\x0aQTabBar::tab:bottom {\x0a color: #b1b1b1;\x0a border: 1px solid #3A3939;\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 5px;\x0a padding-right: 5px;\x0a padding-top: 3px;\x0a padding-bottom: 2px;\x0a margin-right: -1px;\x0a\x0a border-bottom-left-radius: 3px;\x0a border-bottom-right-radius: 3px;\x0a}\x0a\x0aQTabBar::tab:top:last, QTabBar::tab:bottom:last\x0a{\x0a margin-right: 0;\x0a}\x0a\x0aQTabBar::tab:top:first:!selected, QTabBar::tab:bottom:first:!selected\x0a{\x0a margin-left: 0px;\x0a}\x0a\x0aQTabBar::tab:top:!selected\x0a{\x0a color: #b1b1b1;\x0a margin-top: 3px;\x0a}\x0a\x0aQTabBar::tab:top:selected\x0a{\x0a margin-bottom: 0px;\x0a}\x0a\x0aQTabBar::tab:bottom:!selected\x0a{\x0a color: #b1b1b1;\x0a margin-bottom: 3px;\x0a}\x0a\x0aQTabBar::tab:bottom:selected\x0a{\x0a color: #D1D1D1;\x0a margin-top: 0px;\x0a}\x0a\x0a/* LEFT - RIGHT TABS */\x0aQTabBar::tab:left {\x0a color: #b1b1b1;\x0a border: 1px solid #3A3939;\x0a background-color: QLinearGradient(x1:1, y1:0, x2:0, y2:0,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 3px;\x0a padding-right: 2px;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a margin-bottom: -1px;\x0a\x0a border-top-right-radius: 3px;\x0a border-bottom-right-radius: 3px;\x0a}\x0a\x0aQTabBar::tab:right {\x0a color: #b1b1b1;\x0a border: 1px solid #3A3939;\x0a background-color: QLinearGradient(x1:0, y1:0, x2:1, y2:0,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 3px;\x0a padding-right: 2px;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a margin-bottom: -1px;\x0a\x0a border-top-left-radius: 3px;\x0a border-bottom-left-radius: 3px;\x0a}\x0a\x0aQTabBar::tab:left:!selected\x0a{\x0a color: #b1b1b1;\x0a margin-right: 3px;\x0a}\x0a\x0aQTabBar::tab:left:selected\x0a{\x0a margin-left: 0px;\x0a}\x0a\x0aQTabBar::tab:right:!selected\x0a{\x0a color: #b1b1b1;\x0a margin-left: 3px;\x0a}\x0a\x0aQTabBar::tab:right:selected\x0a{\x0a color: #D1D1D1;\x0a margin-right: 0px;\x0a}\x0a\x0aQTabBar QToolButton::right-arrow:enabled {\x0a image: url(:/qss_icons/rc/right_arrow.png);\x0a }\x0a\x0a QTabBar QToolButton::left-arrow:enabled {\x0a image: url(:/qss_icons/rc/left_arrow.png);\x0a }\x0a\x0aQTabBar QToolButton::right-arrow:disabled {\x0a image: url(:/qss_icons/rc/right_arrow_disabled.png);\x0a }\x0a\x0a QTabBar QToolButton::left-arrow:disabled {\x0a image: url(:/qss_icons/rc/left_arrow_disabled.png);\x0a }\x0a\x0a\x0aQDockWidget {\x0a border: 1px solid lightgray;\x0a titlebar-close-icon: url(:/qss_icons/rc/close.png);\x0a titlebar-normal-icon: url(:/qss_icons/rc/undock.png);\x0a}\x0a\x0aQDockWidget::close-button, QDockWidget::float-button {\x0a border: 1px solid transparent;\x0a border-radius: 3px;\x0a background: transparent;\x0a icon-size: 10px;\x0a}\x0a\x0aQDockWidget::close-button:hover, QDockWidget::float-button:hover {\x0a background: rgba(255, 255, 255, 10);\x0a}\x0a\x0aQDockWidget::close-button:pressed, QDockWidget::float-button:pressed {\x0a padding: 1px -1px -1px 1px;\x0a background: rgba(255, 255, 255, 10);\x0a}\x0a\x0aQTreeView, QListView\x0a{\x0a border: 1px solid #78879b;\x0a background-color: #201F1F;\x0a}\x0a\x0aQTreeView:branch:selected, QTreeView:branch:hover\x0a{\x0a background: url(:/qss_icons/rc/transparent.png);\x0a}\x0a\x0aQTreeView::branch:has-siblings:!adjoins-item {\x0a border-image: url(:/qss_icons/rc/transparent.png);\x0a}\x0a\x0aQTreeView::branch:has-siblings:adjoins-item {\x0a border-image: url(:/qss_icons/rc/transparent.png);\x0a}\x0a\x0aQTreeView::branch:!has-children:!has-siblings:adjoins-item {\x0a border-image: url(:/qss_icons/rc/transparent.png);\x0a}\x0a\x0aQTreeView::branch:has-children:!has-siblings:closed,\x0aQTreeView::branch:closed:has-children:has-siblings {\x0a image: url(:/qss_icons/rc/branch_closed.png);\x0a}\x0a\x0aQTreeView::branch:open:has-children:!has-siblings,\x0aQTreeView::branch:open:has-children:has-siblings {\x0a image: url(:/qss_icons/rc/branch_open.png);\x0a}\x0a\x0aQTreeView::branch:has-children:!has-siblings:closed:hover,\x0aQTreeView::branch:closed:has-children:has-siblings:hover {\x0a image: url(:/qss_icons/rc/branch_closed-on.png);\x0a }\x0a\x0aQTreeView::branch:open:has-children:!has-siblings:hover,\x0aQTreeView::branch:open:has-children:has-siblings:hover {\x0a image: url(:/qss_icons/rc/branch_open-on.png);\x0a }\x0a\x0aQListView::item:!selected:hover, QListView::item:!selected:hover, QTreeView::item:!selected:hover {\x0a background: rgba(0, 0, 0, 0);\x0a outline: 0;\x0a color: #FFFFFF\x0a}\x0a\x0aQListView::item:selected:hover, QListView::item:selected:hover, QTreeView::item:selected:hover {\x0a background: #78879b;;\x0a color: #FFFFFF;\x0a}\x0a\x0aQSlider::groove:horizontal {\x0a border: 1px solid #3A3939;\x0a height: 8px;\x0a background: #201F1F;\x0a margin: 2px 0;\x0a border-radius: 4px;\x0a}\x0a\x0aQSlider::handle:horizontal {\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0.0 silver, stop: 0.2 #a8a8a8, stop: 1 #727272);\x0a border: 1px solid #3A3939;\x0a width: 14px;\x0a height: 14px;\x0a margin: -4px 0;\x0a border-radius: 7px;\x0a}\x0a\x0aQSlider::groove:vertical {\x0a border: 1px solid #3A3939;\x0a width: 8px;\x0a background: #201F1F;\x0a margin: 0 0px;\x0a border-radius: 4px;\x0a}\x0a\x0aQSlider::handle:vertical {\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0.0 silver,\x0a stop: 0.2 #a8a8a8, stop: 1 #727272);\x0a border: 1px solid #3A3939;\x0a width: 14px;\x0a height: 14px;\x0a margin: 0 -4px;\x0a border-radius: 7px;\x0a}\x0a\x0aQToolButton {\x0a background-color: #302F2F;\x0a border: none;\x0a border-radius: 3px;\x0a margin: 3px;\x0a}\x0a\x0aQToolButton[popupMode=\x221\x22]\x0a{\x0a padding-right: 8px;\x0a}\x0a\x0aQToolButton[popupMode=\x222\x22]\x0a{\x0a padding-right: 8px;\x0a}\x0a\x0aQToolButton::menu-button {\x0a border: 2px solid gray;\x0a border-top-right-radius: 6px;\x0a border-bottom-right-radius: 6px;\x0a width: 16px;\x0a }\x0a\x0a QToolButton::menu-arrow {\x0a image: url(:/qss_icons/rc/down_arrow.png);\x0a top: 10px; left: 10px; /* shift it a bit */\x0a }\x0a\x0a QToolButton::menu-arrow:open {\x0a top: 10px; left: 10px; /* shift it a bit */\x0a }\x0a\x0aQToolButton:pressed {\x0a background-color: #4A4949;\x0a border: 1px solid silver;\x0a border-radius: 3px;\x0a}\x0aQToolButton:hover {\x0a background-color: #4A4949;\x0a border: 1px solid gray;\x0a border-radius: 3px;\x0a}\x0a\x0aQPushButton::menu-indicator {\x0a subcontrol-origin: padding;\x0a subcontrol-position: bottom right;\x0a left: 8px;\x0a}\x0a\x0aQTableView\x0a{\x0a border: transparent;\x0a gridline-color: #6c6c6c;\x0a background-color: #201F1F;\x0a}\x0a\x0a\x0aQTableView, QHeaderView\x0a{\x0a border-radius: 0px;\x0a}\x0a\x0aQTableView::item:pressed, QListView::item:pressed, QTreeView::item:pressed {\x0a background: #78879b;\x0a color: #FFFFFF;\x0a}\x0a\x0aQTableView::item:selected:active, QTreeView::item:selected:active, QListView::item:selected:active {\x0a background: #78879b;\x0a color: #FFFFFF;\x0a}\x0a\x0a\x0aQHeaderView\x0a{\x0a border: 1px transparent;\x0a margin: 0px;\x0a padding: 0px;\x0a}\x0a\x0aQHeaderView::section {\x0a background-color: #3A3939;\x0a color: silver;\x0a padding: 4px;\x0a border: 1px solid #6c6c6c;\x0a border-radius: 0px;\x0a text-align: center;\x0a}\x0a\x0aQHeaderView::section::vertical::first\x0a{\x0a border-top: 1px solid #6c6c6c;\x0a}\x0a\x0aQHeaderView::section::vertical\x0a{\x0a border-top: transparent;\x0a}\x0a\x0aQHeaderView::section::horizontal::first\x0a{\x0a border-left: 1px solid #6c6c6c;\x0a}\x0a\x0aQHeaderView::section::horizontal\x0a{\x0a border-left: transparent;\x0a}\x0a\x0a\x0aQHeaderView::section:checked\x0a {\x0a color: white;\x0a background-color: #5A5959;\x0a }\x0a\x0a /* style the sort indicator */\x0aQHeaderView::down-arrow {\x0a image: url(:/qss_icons/rc/down_arrow.png);\x0a}\x0a\x0aQHeaderView::up-arrow {\x0a mage: url(:/qss_icons/rc/up_arrow.png);\x0a}\x0a\x0a\x0aQTableCornerButton::section {\x0a background-color: #3A3939;\x0a border: 1px solid #3A3939;\x0a border-radius: 0px;\x0a}\x0a\x00\x00\x00\x96\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x02bKGD\x00\xd3\xb5W\xa0\x5c\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x0b\x07\x0c\x0d\x1bu\xfe1\x99\x00\x00\x00'IDAT\x08\xd7e\x8c\xb1\x0d\x00\x00\x08\x83\xe0\xff\xa3up\xb1\xca\xd4\x90Px\x08U!\x14\xb6Tp\xe6H\x8d\x87\xcc\x0f\x0d\xe0\xf0\x08\x024\xe2+\xa7\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x02q\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95+\x0e\x1b\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x01(tm$I\x00\x00\x01\xf1IDATX\xc3\xcdWAN\x021\x14\xfd\xfd\xb5np!\x89\xb8\x11\x8d\x89[\xef\x80;\xb7\xde\x806p,\xa0\xbd\x86;\xc2\x19\xd8\xb9!\x11\x13#\x0bM\x94I\xb4i\xeb\xc6\xea\xa4a\x86\xb6@\xf0\xef\xc8\xd0y}\xef\xbfy\xed\x07\xd8s\x91\xaa\x07J\xa9W\x00\x00\xe7\xdcR\x08\xd1\xcey\xb9\x94rN\x08i\x00\x00p\xce\x9bQ\x1b\x18\x0c\x06S\xc6\xd8\xa5_\x08\x00`\xad]p\xceOS\xc0\x95R/\x88\xd8\xf2\xbf\x9dsK\xad\xf5\xac\xdf\xef_\x97\xff\x87\xe1\xc2\x10\x1c\x00\x00\x11[R\xcay\x0a\xf328\x00\x00!\xa4\xc1\x18\xbb\xacT`\x15\xf3\xb0\xb4\xd6\xf3^\xafw^\x07>\x1c\x0e\x1f\x19c\x95-\x0b\x95\xc0:\xe6aQJk\x95\x90R\xce)\xa5\xadZ\xd3\x05J\x10o8D<\x8e\x95x\x95'\xc2\x9eG\xbc\xe3\x8ds\xde\xc4\x1cw\x87\x9eX\xd5\xf3\xd8:\xf0}\x01\x80\xe3\x94\x85\x94\xd23\xa5\xd4\x8b\xdfP*\xf0\x0f\xe6\x9f\x09S%\xdc\xa4\xca-\xfcm\x01\xe7\xfc\xd4\x18\xf3\xb4kpc\xccS\xd9?d]\x80\xec\x8aye\x10\xedJ\x89\x90y\xccY\xb05%\xea\xa2\xbc\xf23\xdc\x96\x12U\xcc\xd7*\xb0\x0d%b\x0e1\x84=\x17\xa6\x9ej\x9b$f\xea\x85d\x7f&\xdc\x94y\x8a\x12\xff+\x88\xb6\xcd\xc0XL\xc8\x5c&dY&d\xc5pN\x8a\x00\x9c\x93\x22\x80a\x1a\x0a\x00\x00)\x95\x08\xaf\x88\xac\xba4\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xce\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x07\x00\x00\x00?\x08\x06\x00\x00\x00,{\xd2\x13\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x09/\x07\xd7?\xc4R\x00\x00\x00NIDAT8\xcbc`\x186\x80\x19\xc6\xa8o\x9f\xca\xe0\xe0\xe2\xcd\xf0\xea\xe5s\x867\xaf^000000\xe1\xd39*IH\x92\x05\x89\xfd\x1f\x89\xcd8\x1aB\xa3\x92\x83'i2\x8e\x86\x10\xa9\x92\xf0 \xd3\xd41\x84\x0b^\xbfr\x9ea\x14@\x01\x00\x13M\x0cF\x89*\x0a \x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xb6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x18\x00\x00\x00\x11\x08\x06\x00\x00\x00\xc7xl0\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b,\x0d\x1fC\xaa\xe1\x00\x00\x006IDAT8\xcbc` \x01,Z\xb4\xe8\xff\xa2E\x8b\xfe\x93\xa2\x87\x89\x81\xc6`\xd4\x82\x11`\x01#\xa9\xc9t\xd0\xf9\x80\x85\x1cMqqq\x8c\xa3\xa9h\xd4\x82ad\x01\x001\xb5\x09\xec\x1fK\xb4\x15\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x09\x08\x04\x00\x00\x00\xbb\x93\x95\x16\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x14\x1f \xb9\x8dw\xe9\x00\x00\x00*IDAT\x08\xd7c`\xc0\x06\xe6|```B0\xa1\x1c\x08\x93\x81\x81\x09\xc1d``b`H\x11@\xe2 s\x19\x90\x8d@\x02\x00#\xed\x08\xafd\x9f\x0f\x15\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\x9cS4\xfc]\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x1b\x0e\x16M[o\x00\x00\x00*IDAT\x08\xd7c`\xc0\x00\x8c\x0c\x0cs> \x0b\xa4\x08020 \x0b\xa6\x08000B\x98\x10\xc1\x14\x01\x14\x13P\xb5\xa3\x01\x00\xc6\xb9\x07\x90]f\x1f\x83\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xe1\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x0a\x00\x00\x006\x08\x06\x00\x00\x00\xfe\x8a\x08k\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x093\x22zLMH\x00\x00\x00aIDATH\xc7c\xfc\xcf@\x1c`b\xa0\x99Bc##\x06c##\x0c6\x1d\xac\x1eU8\xc8\x142\xfeg``hh\x9f\x8a3Y\xaeZ:\x87\xe1\xda\x95\xf3\x8c4\xb2ZK\xc7\x10o\x8e\xb8v\xe5<#\xe3\x7f\xa4\x84\xcb\xc0\xc0\xc0p\xf6\xdc9\x14\xf6h\x80\x8f\x06\xf8h\x80\x8f\x96fC'=\x0er7\x02\x00\x100@\xb35\xa0|I\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa0\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x09\x08\x04\x00\x00\x00\xbb\x93\x95\x16\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x14\x1c\x1f$\xc6\x09\x17\x00\x00\x00$IDAT\x08\xd7c`@\x05\xff\xcf\xc3XL\xc8\x5c&dY&d\xc5p\x0e\xa3!\x9c\xc3h\x88a\x1a\x0a\x00\x00m\x84\x09u7\x9e\xd9#\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x08\x15;\xdc;\x0c\x9b\x00\x00\x00*IDAT\x08\xd7c`\xc0\x00\x8c\x0c\x0cs> \x0b\xa4\x08020 \x0b\xa6\x08000B\x98\x10\xc1\x14\x01\x14\x13P\xb5\xa3\x01\x00\xc6\xb9\x07\x90]f\x1f\x83\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xe4\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x006\x00\x00\x00\x0a\x08\x06\x00\x00\x00\xff\xfd\xad\x0b\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\x7f\x00\x87\x00\x95\xe6\xde\xa6\xaf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x09*+\x98\x90\x5c\xf4\x00\x00\x00dIDATH\xc7c\xfc\xcf0<\x01\x0b\xa5\x064\xb4O\x85\x87\xcd\xaa\xa5s\x18\xae]9\xcfH+5\x14y\xcc\xd8\xc8\x88$\x03|\x89\xd0O-5\x84\xc0\xd9s\xe7\xe0l&\x86\x91\x92\x14\x91}MTR\x0cM&\xa8\x9fZjF\x93\xe2hR\x1c\x82I\x91\x91\xd2zLK\xc7\x10\xc5\x08l\xc54\xb5\xd4\xd0\xd5c\x83\x15\x00\x00z0J\x09q\xea-n\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xc3\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00@\x00\x00\x00@\x08\x06\x00\x00\x00\xaaiq\xde\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x0b\x07\x09.7\xffD\xe8\xf0\x00\x00\x00\x1diTXtComment\x00\x00\x00\x00\x00Created with GIMPd.e\x07\x00\x00\x00'IDATx\xda\xed\xc1\x01\x0d\x00\x00\x00\xc2\xa0\xf7Om\x0e7\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80w\x03@@\x00\x01\xafz\x0e\xe8\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa5\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\x9cS4\xfc]\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x02\x04m\x98\x1bi\x00\x00\x00)IDAT\x08\xd7c`\xc0\x00\x8c\x0c\x0c\xff\xcf\xa3\x08\x18220 \x0b2\x1a200B\x98\x10AFC\x14\x13P\xb5\xa3\x01\x00\xd6\x10\x07\xd2/H\xdfJ\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa0\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x09\x08\x04\x00\x00\x00\xbb\x93\x95\x16\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\x9cS4\xfc]\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x1b)\xb3G\xee\x04\x00\x00\x00$IDAT\x08\xd7c`@\x05s>\xc0XL\xc8\x5c&dY&d\xc5pN\x8a\x00\x9c\x93\x22\x80a\x1a\x0a\x00\x00)\x95\x08\xaf\x88\xac\xba4\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x01\xc8\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95+\x0e\x1b\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x03$O\xed\x0a\xe0\x00\x00\x01HIDATX\xc3\xedWA\x8e\x830\x0c\xb4!\xd0>\x10?\x8e#\xe7 \xbe\xb3?\xd9U\x03\x9b\xd9K*E\x10\x96$\x04\xf5\x82\xcf.cO\xc6c\x97\xe8\xc3\xc1W|Tkm\x98\xb9:\xca\x03\xb0\xa8\x0b\x9b\xab#r~\xab+\x90E\xa4\x05\xb0\xc4\xe4VW\xb5/\x22\x0d\x80\xf9(o\xf3\x04\xe38.9\x80\x00\xac\x88\xb4\xa9\xbfS\x9ep~\x98\xb9\xcdde\x03\xae\xb5\x9e\x99YE?\xc1\x19p\x00&0\x05*\x9a\x01G{\x16x\xd7uuB\xe7v\x8dsF\x84\xa9\x9d[\x00f=\x1d\xcaZK\xd34\xad\x055\xa7\x0a\xea\xa8s\x9f)WhCDT\x0d\xc3\xf0\x05`#\xea\x0c\xe7S\xb1L9\x9f0Dd\xd9\xd3@\xed1`D\xe4Q\xba\xf3\xe2F\x94\xday\x94\x11\x15\x8a\xe0t8\xbfx\x14c`\xc7\xf3\x93\xa6\xe34\x03\x22\xd2x\xaaN\xf5\x852\xcb\xe8\xad\xea\x1cG,\xa6\x81\xd0\xd4\xc4\x1c%\x97\xad\xe3\xd8\xb8\x0b\xb8\x0b\xb8\x0b\xa8J\xffa\xe9\xfb\xbeq&\xf4\x1dX\xf3qF\xc4\xcc*\xf7:v\xeb\x9d\x00D\x19\x91z\x9f\xd4\xcc\x5c\xaf\x18\xa8\xcfP\xcb\xcc\xa1#\x07\xbbT\xc7\x9e\xd1\xb9\x01\xe0%\x22\xcf\x7f\xdf\xda\xbf\xd5\xcab\xc3\x84\xc0\x83b\xd3Z\xbfJ\x17\xb0\x07ND\xf4\x07\xae\xf5\xd5\xa6\x1d\xd1\x22\x08\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\x9e\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x08\x15\x0f\xfd\x8f\xf8.\x00\x00\x00\x22IDAT\x08\xd7c`\xc0\x0d\xfe\x9f\x87\xb1\x18\x91\x05\x18\x0d\xe1BH*\x0c\x19\x18\x18\x91\x05\x10*\xd1\x00\x00\xca\xb5\x07\xd2v\xbb\xb2\xc5\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xbb\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00?\x00\x00\x00\x07\x08\x06\x00\x00\x00\xbfv\x95\x1f\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x095+U\xcaRj\x00\x00\x00;IDAT8\xcbc`\x18\x05#\x130\x12\xa3\xa8\xbe}*%v\xfc\xa7\x97;\xd1\xc1\xaa\xa5s\x18\xae_9\x8fS\x9ei4\xe6\x09\x00M\x1d\xc3!\x19\xf3\x0c\x0c\x0cxc~\x14\x8cT\x00\x00id\x0b\x05\xfdkX\xca\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\x9f\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x08\x14\x1f\xf9#\xd9\x0b\x00\x00\x00#IDAT\x08\xd7c`\xc0\x0d\xe6|\x80\xb1\x18\x91\x05R\x04\xe0B\x08\x15)\x02\x0c\x0c\x8c\xc8\x02\x08\x95h\x00\x00\xac\xac\x07\x90Ne4\xac\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xef\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00Q\x00\x00\x00:\x08\x06\x00\x00\x00\xc8\xbc\xb5\xaf\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b*2\xff\x7f Z\x00\x00\x00oIDATx\xda\xed\xd0\xb1\x0d\x000\x08\x03A\xc8\xa0\x0c\xc7\xa2I\xcf\x04(\xba/]Y\x97\xb1\xb4\xee\xbes\xab\xaa\xdc\xf8\xf5\x84 B\x84(\x88\x10!B\x14D\x88\x10!\x0a\x22D\x88\x10\x05\x11\x22D\x88\x82\x08\x11\x22DA\x84\x08Q\x10!B\x84(\x88\x10!B\x14D\x88\x10!\x0a\x22D\x88\x10\x05\x11\x22D\x88\x82\x08\x11\x22DA\x84\x08Q\x10!B\xfc\xaa\x07\x12U\x04tV\x9e\x9eT\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x09\x08\x04\x00\x00\x00\xbb\x93\x95\x16\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x14\x1d\x00\xb0\xd55\xa3\x00\x00\x00*IDAT\x08\xd7c`\xc0\x06\xfe\x9fg``B0\xa1\x1c\x08\x93\x81\x81\x09\xc1d``b``4D\xe2 s\x19\x90\x8d@\x02\x00d@\x09u\x86\xb3\xad\x9c\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xe0\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00Q\x00\x00\x00:\x08\x06\x00\x00\x00\xc8\xbc\xb5\xaf\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b)\x1c\x08\x84~V\x00\x00\x00`IDATx\xda\xed\xd9\xb1\x0d\x00 \x08\x00AqP\x86cQ\xed\x8d\x85%\x89w\xa5\x15\xf9HE\x8c\xa6\xaaj\x9do\x99\x19\x1dg\x9d\x03\x11E\x14\x11\x11E\x14QDD\x14QD\x11\x11QD\x11EDD\x11E\x14\x11\x11E\x14\xf1[\xd1u\xb0\xdb\xdd\xd9O\xb4\xce\x88(\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcf6\xcei\x07\x1e\xe99U@\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\x81\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x01\x03\x00\x00\x00%=m\x22\x00\x00\x00\x06PLTE\x00\x00\x00\xae\xae\xaewk\xd6-\x00\x00\x00\x01tRNS\x00@\xe6\xd8f\x00\x00\x00)IDATx^\x05\xc0\xb1\x0d\x00 \x08\x04\xc0\xc3X\xd8\xfe\x0a\xcc\xc2p\x8cm(\x0e\x97Gh\x86Uq\xda\x1do%\xba\xcd\xd8\xfd5\x0a\x04\x1b\xd6\xd9\x1a\x92\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x01W\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x09\x08\x06\x00\x00\x00\xe0\x91\x06\x10\x00\x00\x00\x09pHYs\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95+\x0e\x1b\x00\x00\x00 cHRM\x00\x00z%\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00u0\x00\x00\xea`\x00\x00:\x98\x00\x00\x17o\x92_\xc5F\x00\x00\x00\xddIDATx\xda\x5c\x8e\xb1N\x84@\x18\x84g\xefL,\xc8\xd9,\x0dXP\x1b\x0b\xc3\xfa$w\xbd\x0d\x85O@\x0b\xbb\xcb;\xd0hAr\xc5\xd2(O\x02\xcf\xb1\x97@a\xd4\xc2\xc4b,\xbcM\xd0I\xfe\xbf\xf82\xff?#H\xc2Z;\x00\x80\xd6\xfa\x80\xb3\xac\xb5\x03I\x18c\x0e[!\xc4\x90\xe7\xf9>I\x92\x9b\xbe\xef\xef\xca\xb2|\xf5\xde\xbf\x04\xe6\x9c\xbb\xbd \xf9\x19\xae\x95R\xfb,\xcb\xbe\xa5\x94\x01\x81\xe4\x9b8\xbf<*\xa5\x1e\xf0O\xe38>7M\xf3(H\x02\x00\xba\xae{\x97R\xee\x82aY\x96\x8f\xa2(\xae\x00`\x03\x00\xc6\x98\xe3\xda\x00\x00q\x1c\xef\xb4\xd6O\x00\xb0\x05\xf0'j\x9egDQ\x04\x00H\xd3\xf4\xde9w\xbd!\xf9\xb5\xeapj\xdb\xf6r\x9a\xa6\xd3\xaa\xf8\xef\xaa\xeb\xdaWU\xe5I\x22\xcc\x9a\xfd\x0c\x00$\xabn\xfa\x96!\xfc\xb8\x00\x00\x00\x00IEND\xaeB`\x82" +qt_resource_data = b"\x00\x00Q\xd8/*\x0a * The MIT License (MIT)\x0a *\x0a * Copyright (c) <2013-2014> \x0a *\x0a * Permission is hereby granted, free of charge, to any person obtaining a copy\x0a * of this software and associated documentation files (the \x22Software\x22), to deal\x0a * in the Software without restriction, including without limitation the rights\x0a * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\x0a * copies of the Software, and to permit persons to whom the Software is\x0a * furnished to do so, subject to the following conditions:\x0a\x0a * The above copyright notice and this permission notice shall be included in\x0a * all copies or substantial portions of the Software.\x0a\x0a * THE SOFTWARE IS PROVIDED \x22AS IS\x22, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\x0a * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\x0a * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\x0a * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\x0a * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\x0a * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\x0a * THE SOFTWARE.\x0a */\x0a\x0aQProgressBar:horizontal {\x0a border: 1px solid #3A3939;\x0a text-align: center;\x0a padding: 1px;\x0a background: #201F1F;\x0a}\x0aQProgressBar::chunk:horizontal {\x0a background-color: qlineargradient(spread:reflect, x1:1, y1:0.545, x2:1, y2:0, stop:0 rgba(28, 66, 111, 255), stop:1 rgba(37, 87, 146, 255));\x0a}\x0a\x0aQToolTip\x0a{\x0a border: 1px solid #3A3939;\x0a background-color: rgb(90, 102, 117);;\x0a color: white;\x0a padding: 1px;\x0a opacity: 200;\x0a}\x0a\x0aQWidget\x0a{\x0a color: silver;\x0a background-color: #302F2F;\x0a selection-background-color:#78879b;\x0a selection-color: black;\x0a background-clip: border;\x0a border-image: none;\x0a outline: 0;\x0a}\x0a\x0aQWidget:item:hover\x0a{\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0 #78879b, stop: 1 #78879b);\x0a color: black;\x0a}\x0a\x0aQWidget:item:selected\x0a{\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0 #78879b, stop: 1 #78879b);\x0a}\x0a\x0aQMenuBar\x0a{\x0a background-color: #302F2F;\x0a color: silver;\x0a}\x0a\x0aQMenuBar::item\x0a{\x0a background: transparent;\x0a}\x0a\x0aQMenuBar::item:selected\x0a{\x0a background: transparent;\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQMenuBar::item:pressed\x0a{\x0a border: 1px solid #3A3939;\x0a background-color: #78879b;\x0a color: black;\x0a margin-bottom:-1px;\x0a padding-bottom:1px;\x0a}\x0a\x0aQMenu\x0a{\x0a border: 1px solid #3A3939;\x0a color: silver;\x0a margin: 2px;\x0a}\x0a\x0aQMenu::icon\x0a{\x0a margin: 5px;\x0a}\x0a\x0aQMenu::item\x0a{\x0a padding: 5px 30px 5px 30px;\x0a margin-left: 5px;\x0a border: 1px solid transparent; /* reserve space for selection border */\x0a}\x0a\x0aQMenu::item:selected\x0a{\x0a color: black;\x0a}\x0a\x0aQWidget:disabled\x0a{\x0a color: #404040;\x0a background-color: #302F2F;\x0a}\x0a\x0aQAbstractItemView\x0a{\x0a alternate-background-color: #3A3939;\x0a color: silver;\x0a border: 1px solid 3A3939;\x0a border-radius: 3px;\x0a padding: 1px;\x0a}\x0a\x0aQWidget:focus, QMenuBar:focus\x0a{\x0a border: 1px solid rgba(48, 86, 111);\x0a}\x0a\x0aQTabWidget:focus, QCheckBox:focus, QRadioButton:focus\x0a{\x0a border: none;\x0a}\x0a\x0aQLineEdit\x0a{\x0a background-color: #201F1F;\x0a padding: 2px;\x0a border-style: solid;\x0a border: 1px solid #3A3939;\x0a border-radius: 3px;\x0a color: silver;\x0a}\x0a\x0aQGroupBox {\x0a border:1px solid #3A3939;\x0a border-radius: 7px;\x0a margin-top: 2ex;\x0a}\x0a\x0aQGroupBox::title {\x0a subcontrol-origin: margin;\x0a subcontrol-position: top center;\x0a padding-left: 10px;\x0a padding-right: 10px;\x0a}\x0a\x0aQAbstractScrollArea\x0a{\x0a border-radius: 3px;\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQScrollBar:horizontal\x0a{\x0a height: 15px;\x0a margin: 0px 11px 0px 11px;\x0a border: 1px solid #3A3939;\x0a border-radius: 6px;\x0a background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,\x0a stop: 0 #302F2F, stop: 1 #484846);\x0a}\x0a\x0aQScrollBar::handle:horizontal\x0a{\x0a background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,\x0a stop: 0 #605F5F, stop: 1 #787876);\x0a min-width: 5px;\x0a border-radius: 5px;\x0a}\x0a\x0aQScrollBar::sub-line:horizontal\x0a{\x0a border-image: url(:/qss_icons/rc/right_arrow_disabled.png);\x0a width: 10px;\x0a height: 10px;\x0a subcontrol-position: right;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::add-line:horizontal\x0a{\x0a border-image: url(:/qss_icons/rc/left_arrow_disabled.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: left;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::sub-line:horizontal:hover,QScrollBar::sub-line:horizontal:on\x0a{\x0a border-image: url(:/qss_icons/rc/right_arrow.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: right;\x0a subcontrol-origin: margin;\x0a}\x0a\x0a\x0aQScrollBar::add-line:horizontal:hover, QScrollBar::add-line:horizontal:on\x0a{\x0a border-image: url(:/qss_icons/rc/left_arrow.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: left;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::up-arrow:horizontal, QScrollBar::down-arrow:horizontal\x0a{\x0a background: none;\x0a}\x0a\x0a\x0aQScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal\x0a{\x0a background: none;\x0a}\x0a\x0aQScrollBar:vertical\x0a{\x0a background-color: QLinearGradient( x1: 1, y1: 0, x2: 0, y2: 0,\x0a stop: 0 #302F2F, stop: 1 #484846);\x0a width: 15px;\x0a margin: 11px 0 11px 0;\x0a border: 1px solid #3A3939;\x0a border-radius: 6px;\x0a}\x0a\x0aQScrollBar::handle:vertical\x0a{\x0a background-color: QLinearGradient( x1: 1, y1: 0, x2: 0, y2: 0,\x0a stop: 0 #605F5F, stop: 1 #787876);\x0a min-height: 5px;\x0a border-radius: 5px;\x0a}\x0a\x0aQScrollBar::sub-line:vertical\x0a{\x0a border-image: url(:/qss_icons/rc/up_arrow_disabled.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: top;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::add-line:vertical\x0a{\x0a\x0a border-image: url(:/qss_icons/rc/down_arrow_disabled.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: bottom;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::sub-line:vertical:hover,QScrollBar::sub-line:vertical:on\x0a{\x0a\x0a border-image: url(:/qss_icons/rc/up_arrow.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: top;\x0a subcontrol-origin: margin;\x0a}\x0a\x0a\x0aQScrollBar::add-line:vertical:hover, QScrollBar::add-line:vertical:on\x0a{\x0a border-image: url(:/qss_icons/rc/down_arrow.png);\x0a height: 10px;\x0a width: 10px;\x0a subcontrol-position: bottom;\x0a subcontrol-origin: margin;\x0a}\x0a\x0aQScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical\x0a{\x0a background: none;\x0a}\x0a\x0a\x0aQScrollBar::add-page:vertical, QScrollBar::sub-page:vertical\x0a{\x0a background: none;\x0a}\x0a\x0aQTextEdit\x0a{\x0a background-color: #201F1F;\x0a color: silver;\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQPlainTextEdit\x0a{\x0a background-color: #201F1F;;\x0a color: silver;\x0a border-radius: 3px;\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQHeaderView::section\x0a{\x0a background-color: #3A3939;\x0a color: silver;\x0a padding-left: 4px;\x0a border: 1px solid #6c6c6c;\x0a}\x0a\x0aQCheckBox:disabled\x0a{\x0a color: #404040;\x0a}\x0a\x0aQSizeGrip {\x0a image: url(:/qss_icons/rc/sizegrip.png);\x0a width: 12px;\x0a height: 12px;\x0a}\x0a\x0a\x0aQMainWindow::separator\x0a{\x0a background-color: #302F2F;\x0a color: white;\x0a padding-left: 4px;\x0a spacing: 2px;\x0a border: 1px dashed #3A3939;\x0a}\x0a\x0aQMainWindow::separator:hover\x0a{\x0a\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #58677b,\x0a stop:0.5 #78879b stop:1 #58677b);\x0a color: white;\x0a padding-left: 4px;\x0a border: 1px solid #3A3939;\x0a spacing: 2px;\x0a}\x0a\x0a\x0aQMenu::separator\x0a{\x0a height: 1px;\x0a background-color: #3A3939;\x0a color: white;\x0a padding-left: 4px;\x0a margin-left: 10px;\x0a margin-right: 5px;\x0a}\x0a\x0a\x0a\x0aQRadioButton::indicator:checked, QRadioButton::indicator:unchecked{\x0a color: #b1b1b1;\x0a background-color: #302F2F;\x0a border: 1px solid silver;\x0a border-radius: 5px;\x0a}\x0a\x0a\x0a\x0aQRadioButton::indicator:checked\x0a{\x0a background-color: qradialgradient(\x0a cx: 0.5, cy: 0.5,\x0a fx: 0.5, fy: 0.5,\x0a radius: 1.0,\x0a stop: 0.25 #78879b,\x0a stop: 0.3 #302F2F\x0a );\x0a}\x0a\x0aQCheckBox, QRadioButton\x0a{\x0a padding: 3px;\x0a outline: none;\x0a}\x0a\x0aQCheckBox::indicator{\x0a color: #b1b1b1;\x0a background-color: #302F2F;\x0a border: 1px solid silver;\x0a width: 9px;\x0a height: 9px;\x0a}\x0a\x0aQRadioButton::indicator\x0a{\x0a border-radius: 7px;\x0a width: 9px;\x0a height: 9px;\x0a}\x0a\x0aQCheckBox::indicator:pressed\x0a{\x0a border: 1px solid #78879b;\x0a}\x0a\x0aQRadioButton::indicator:hover, QCheckBox::indicator:hover\x0a{\x0a border: 1px solid #78879b;\x0a}\x0a\x0aQCheckBox::indicator:checked\x0a{\x0a image:url(:/qss_icons/rc/checkbox.png);\x0a}\x0a\x0aQCheckBox::indicator:disabled, QRadioButton::indicator:disabled\x0a{\x0a border: 1px solid #444;\x0a}\x0a\x0aQFrame\x0a{\x0a border-radius: 3px;\x0a}\x0a\x0aQStackedWidget\x0a{\x0a border: none;\x0a}\x0a\x0aQToolBar {\x0a border: 1px solid #393838;\x0a background: 1px solid #302F2F;\x0a font-weight: bold;\x0a}\x0a\x0aQToolBar::handle:horizontal {\x0a image: url(:/qss_icons/rc/Hmovetoolbar.png);\x0a}\x0aQToolBar::handle:vertical {\x0a image: url(:/qss_icons/rc/Vmovetoolbar.png);\x0a}\x0aQToolBar::separator:horizontal {\x0a image: url(:/qss_icons/rc/Hsepartoolbar.png);\x0a}\x0aQToolBar::separator:vertical {\x0a image: url(:/qss_icons/rc/Vsepartoolbars.png);\x0a}\x0a\x0aQPushButton\x0a{\x0a color: silver;\x0a background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,\x0a stop: 0 #302F2F, stop: 1 #484846);\x0a border-width: 1px;\x0a border-color: #4A4949;\x0a border-style: solid;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a padding-left: 5px;\x0a padding-right: 5px;\x0a border-radius: 5px;\x0a outline: none;\x0a}\x0a\x0aQPushButton:disabled\x0a{\x0a background-color: #302F2F;\x0a border-width: 1px;\x0a border-color: #3A3939;\x0a border-style: solid;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a padding-left: 10px;\x0a padding-right: 10px;\x0a /*border-radius: 3px;*/\x0a color: #454545;\x0a}\x0a\x0aQComboBox\x0a{\x0a selection-background-color: #78879b;\x0a background-color: #201F1F;\x0a border-style: solid;\x0a border: 1px solid #3A3939;\x0a border-radius: 3px;\x0a padding: 2px;\x0a}\x0a\x0aQComboBox:hover,QPushButton:hover,QAbstractSpinBox:hover,QLineEdit:hover,QTextEdit:hover,QPlainTextEdit:hover,QAbstractView:hover,QTreeView:hover\x0a{\x0a border: 1px solid #78879b;\x0a color: silver;\x0a}\x0a\x0aQComboBox:on\x0a{\x0a background-color: #626873;\x0a padding-top: 3px;\x0a padding-left: 4px;\x0a selection-background-color: #4a4a4a;\x0a}\x0a\x0aQComboBox QAbstractItemView\x0a{\x0a background-color: #201F1F;\x0a border-radius: 3px;\x0a border: 1px solid #3A3939;\x0a selection-background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0 #78879b, stop: 1 #78879b);\x0a}\x0a\x0aQComboBox::drop-down\x0a{\x0a subcontrol-origin: padding;\x0a subcontrol-position: top right;\x0a width: 15px;\x0a\x0a border-left-width: 0px;\x0a border-left-color: darkgray;\x0a border-left-style: solid;\x0a border-top-right-radius: 3px;\x0a border-bottom-right-radius: 3px;\x0a}\x0a\x0aQComboBox::down-arrow\x0a{\x0a image: url(:/qss_icons/rc/down_arrow_disabled.png);\x0a}\x0a\x0aQComboBox::down-arrow:on, QComboBox::down-arrow:hover,\x0aQComboBox::down-arrow:focus\x0a{\x0a image: url(:/qss_icons/rc/down_arrow.png);\x0a}\x0a\x0aQPushButton:pressed\x0a{\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0 #302F2F, stop: 1 #484846);\x0a}\x0a\x0aQAbstractSpinBox {\x0a padding-top: 2px;\x0a padding-bottom: 2px;\x0a border: 1px solid #3A3939;\x0a background-color: #201F1F;\x0a color: silver;\x0a border-radius: 3px;\x0a}\x0a\x0aQAbstractSpinBox:up-button\x0a{\x0a background-color: transparent;\x0a subcontrol-origin: border;\x0a subcontrol-position: center right;\x0a}\x0a\x0aQAbstractSpinBox:down-button\x0a{\x0a background-color: transparent;\x0a subcontrol-origin: border;\x0a subcontrol-position: center left;\x0a}\x0a\x0aQAbstractSpinBox::up-arrow,QAbstractSpinBox::up-arrow:disabled,QAbstractSpinBox::up-arrow:off {\x0a image: url(:/qss_icons/rc/up_arrow_disabled.png);\x0a width: 10px;\x0a height: 10px;\x0a}\x0aQAbstractSpinBox::up-arrow:hover\x0a{\x0a image: url(:/qss_icons/rc/up_arrow.png);\x0a}\x0a\x0a\x0aQAbstractSpinBox::down-arrow,QAbstractSpinBox::down-arrow:disabled,QAbstractSpinBox::down-arrow:off\x0a{\x0a image: url(:/qss_icons/rc/down_arrow_disabled.png);\x0a width: 10px;\x0a height: 10px;\x0a}\x0aQAbstractSpinBox::down-arrow:hover\x0a{\x0a image: url(:/qss_icons/rc/down_arrow.png);\x0a}\x0a\x0a\x0aQLabel\x0a{\x0a border: 0px solid black;\x0a}\x0a\x0a\x0aQTabWidget::pane {\x0a border: 1px solid #3A3939;\x0a}\x0a\x0aQTabBar\x0a{\x0a qproperty-drawBase: 0;\x0a padding-right: 15px;\x0a}\x0a\x0aQTabBar:focus\x0a{\x0a border: 0px transparent black;\x0a}\x0a\x0aQTabBar::close-button {\x0a image: url(:/qss_icons/rc/close.png);\x0a background: transparent;\x0a icon-size: 10px;\x0a padding: 5px;\x0a}\x0a\x0aQTabBar::close-button:hover\x0a{\x0a background: rgba(255, 255, 255, 20);\x0a border-radius: 3px;\x0a}\x0a\x0aQTabBar::close-button:pressed {\x0a padding: 5px 4px 4px 5px;\x0a}\x0a\x0aQTabBar::tab:!selected:hover\x0a{\x0a color:white;\x0a}\x0a\x0aQTabBar::tab:selected:hover\x0a{\x0a color: white;\x0a}\x0a\x0a/* TOP - BOTTOM TABS */\x0aQTabBar::tab:top {\x0a color: #b1b1b1;\x0a border: 1px solid #3A3939;\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 5px;\x0a padding-right: 5px;\x0a padding-top: 3px;\x0a padding-bottom: 2px;\x0a margin-right: -1px;\x0a\x0a border-top-left-radius: 3px;\x0a border-top-right-radius: 3px;\x0a}\x0a\x0aQTabBar::tab:bottom {\x0a color: #b1b1b1;\x0a border: 1px solid #3A3939;\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 5px;\x0a padding-right: 5px;\x0a padding-top: 3px;\x0a padding-bottom: 2px;\x0a margin-right: -1px;\x0a\x0a border-bottom-left-radius: 3px;\x0a border-bottom-right-radius: 3px;\x0a}\x0a\x0aQTabBar::tab:top:last, QTabBar::tab:bottom:last\x0a{\x0a margin-right: 0;\x0a}\x0a\x0aQTabBar::tab:top:first:!selected, QTabBar::tab:bottom:first:!selected\x0a{\x0a margin-left: 0px;\x0a}\x0a\x0aQTabBar::tab:top:!selected\x0a{\x0a color: #b1b1b1;\x0a margin-top: 3px;\x0a}\x0a\x0aQTabBar::tab:top:selected\x0a{\x0a margin-bottom: 0px;\x0a}\x0a\x0aQTabBar::tab:bottom:!selected\x0a{\x0a color: #b1b1b1;\x0a margin-bottom: 3px;\x0a}\x0a\x0aQTabBar::tab:bottom:selected\x0a{\x0a color: #D1D1D1;\x0a margin-top: 0px;\x0a}\x0a\x0a/* LEFT - RIGHT TABS */\x0aQTabBar::tab:left {\x0a color: #b1b1b1;\x0a border: 1px solid #3A3939;\x0a background-color: QLinearGradient(x1:1, y1:0, x2:0, y2:0,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 3px;\x0a padding-right: 2px;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a margin-bottom: -1px;\x0a\x0a border-top-right-radius: 3px;\x0a border-bottom-right-radius: 3px;\x0a}\x0a\x0aQTabBar::tab:right {\x0a color: #b1b1b1;\x0a border: 1px solid #3A3939;\x0a background-color: QLinearGradient(x1:0, y1:0, x2:1, y2:0,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 3px;\x0a padding-right: 2px;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a margin-bottom: -1px;\x0a\x0a border-top-left-radius: 3px;\x0a border-bottom-left-radius: 3px;\x0a}\x0a\x0aQTabBar::tab:left:!selected\x0a{\x0a color: #b1b1b1;\x0a margin-right: 3px;\x0a}\x0a\x0aQTabBar::tab:left:selected\x0a{\x0a margin-left: 0px;\x0a}\x0a\x0aQTabBar::tab:right:!selected\x0a{\x0a color: #b1b1b1;\x0a margin-left: 3px;\x0a}\x0a\x0aQTabBar::tab:right:selected\x0a{\x0a color: #D1D1D1;\x0a margin-right: 0px;\x0a}\x0a\x0aQTabBar QToolButton::right-arrow:enabled {\x0a image: url(:/qss_icons/rc/right_arrow.png);\x0a }\x0a\x0a QTabBar QToolButton::left-arrow:enabled {\x0a image: url(:/qss_icons/rc/left_arrow.png);\x0a }\x0a\x0aQTabBar QToolButton::right-arrow:disabled {\x0a image: url(:/qss_icons/rc/right_arrow_disabled.png);\x0a }\x0a\x0a QTabBar QToolButton::left-arrow:disabled {\x0a image: url(:/qss_icons/rc/left_arrow_disabled.png);\x0a }\x0a\x0a\x0aQDockWidget {\x0a border: 1px solid lightgray;\x0a titlebar-close-icon: url(:/qss_icons/rc/close.png);\x0a titlebar-normal-icon: url(:/qss_icons/rc/undock.png);\x0a}\x0a\x0aQDockWidget::close-button, QDockWidget::float-button {\x0a border: 1px solid transparent;\x0a border-radius: 3px;\x0a background: transparent;\x0a icon-size: 10px;\x0a}\x0a\x0aQDockWidget::close-button:hover, QDockWidget::float-button:hover {\x0a background: rgba(255, 255, 255, 10);\x0a}\x0a\x0aQDockWidget::close-button:pressed, QDockWidget::float-button:pressed {\x0a padding: 1px -1px -1px 1px;\x0a background: rgba(255, 255, 255, 10);\x0a}\x0a\x0aQTreeView, QListView\x0a{\x0a border: 1px solid #78879b;\x0a background-color: #201F1F;\x0a}\x0a\x0aQTreeView:branch:selected, QTreeView:branch:hover\x0a{\x0a background: url(:/qss_icons/rc/transparent.png);\x0a}\x0a\x0aQTreeView::branch:has-siblings:!adjoins-item {\x0a border-image: url(:/qss_icons/rc/transparent.png);\x0a}\x0a\x0aQTreeView::branch:has-siblings:adjoins-item {\x0a border-image: url(:/qss_icons/rc/transparent.png);\x0a}\x0a\x0aQTreeView::branch:!has-children:!has-siblings:adjoins-item {\x0a border-image: url(:/qss_icons/rc/transparent.png);\x0a}\x0a\x0aQTreeView::branch:has-children:!has-siblings:closed,\x0aQTreeView::branch:closed:has-children:has-siblings {\x0a image: url(:/qss_icons/rc/branch_closed.png);\x0a}\x0a\x0aQTreeView::branch:open:has-children:!has-siblings,\x0aQTreeView::branch:open:has-children:has-siblings {\x0a image: url(:/qss_icons/rc/branch_open.png);\x0a}\x0a\x0aQTreeView::branch:has-children:!has-siblings:closed:hover,\x0aQTreeView::branch:closed:has-children:has-siblings:hover {\x0a image: url(:/qss_icons/rc/branch_closed-on.png);\x0a }\x0a\x0aQTreeView::branch:open:has-children:!has-siblings:hover,\x0aQTreeView::branch:open:has-children:has-siblings:hover {\x0a image: url(:/qss_icons/rc/branch_open-on.png);\x0a }\x0a\x0aQListView::item:!selected:hover, QListView::item:!selected:hover, QTreeView::item:!selected:hover {\x0a background: rgba(0, 0, 0, 0);\x0a outline: 0;\x0a color: #FFFFFF\x0a}\x0a\x0aQListView::item:selected:hover, QListView::item:selected:hover, QTreeView::item:selected:hover {\x0a background: #78879b;;\x0a color: #FFFFFF;\x0a}\x0a\x0aQSlider::groove:horizontal {\x0a border: 1px solid #3A3939;\x0a height: 8px;\x0a background: #201F1F;\x0a margin: 2px 0;\x0a border-radius: 4px;\x0a}\x0a\x0aQSlider::handle:horizontal {\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,\x0a stop: 0.0 silver, stop: 0.2 #a8a8a8, stop: 1 #727272);\x0a border: 1px solid #3A3939;\x0a width: 14px;\x0a height: 14px;\x0a margin: -4px 0;\x0a border-radius: 7px;\x0a}\x0a\x0aQSlider::groove:vertical {\x0a border: 1px solid #3A3939;\x0a width: 8px;\x0a background: #201F1F;\x0a margin: 0 0px;\x0a border-radius: 4px;\x0a}\x0a\x0aQSlider::handle:vertical {\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0.0 silver,\x0a stop: 0.2 #a8a8a8, stop: 1 #727272);\x0a border: 1px solid #3A3939;\x0a width: 14px;\x0a height: 14px;\x0a margin: 0 -4px;\x0a border-radius: 7px;\x0a}\x0a\x0aQToolButton {\x0a background-color: #302F2F;\x0a border: none;\x0a border-radius: 3px;\x0a margin: 3px;\x0a}\x0a\x0aQToolButton[popupMode=\x221\x22]\x0a{\x0a padding-right: 8px;\x0a}\x0a\x0aQToolButton[popupMode=\x222\x22]\x0a{\x0a padding-right: 8px;\x0a}\x0a\x0aQToolButton::menu-button {\x0a border: 2px solid gray;\x0a border-top-right-radius: 6px;\x0a border-bottom-right-radius: 6px;\x0a width: 16px;\x0a }\x0a\x0a QToolButton::menu-arrow {\x0a image: url(:/qss_icons/rc/down_arrow.png);\x0a top: 10px; left: 10px; /* shift it a bit */\x0a }\x0a\x0a QToolButton::menu-arrow:open {\x0a top: 10px; left: 10px; /* shift it a bit */\x0a }\x0a\x0aQToolButton:pressed {\x0a background-color: #4A4949;\x0a border: 1px solid silver;\x0a border-radius: 3px;\x0a}\x0aQToolButton:hover {\x0a background-color: #4A4949;\x0a border: 1px solid gray;\x0a border-radius: 3px;\x0a}\x0a\x0aQPushButton::menu-indicator {\x0a subcontrol-origin: padding;\x0a subcontrol-position: bottom right;\x0a left: 8px;\x0a}\x0a\x0aQTableView\x0a{\x0a border: transparent;\x0a gridline-color: #6c6c6c;\x0a background-color: #201F1F;\x0a}\x0a\x0a\x0aQTableView, QHeaderView\x0a{\x0a border-radius: 0px;\x0a}\x0a\x0aQTableView::item:pressed, QListView::item:pressed, QTreeView::item:pressed {\x0a background: #78879b;\x0a color: #FFFFFF;\x0a}\x0a\x0aQTableView::item:selected:active, QTreeView::item:selected:active, QListView::item:selected:active {\x0a background: #78879b;\x0a color: #FFFFFF;\x0a}\x0a\x0a\x0aQHeaderView\x0a{\x0a border: 1px transparent;\x0a margin: 0px;\x0a padding: 0px;\x0a}\x0a\x0aQHeaderView::section {\x0a background-color: #3A3939;\x0a color: silver;\x0a padding: 4px;\x0a border: 1px solid #6c6c6c;\x0a border-radius: 0px;\x0a text-align: center;\x0a}\x0a\x0aQHeaderView::section::vertical::first\x0a{\x0a border-top: 1px solid #6c6c6c;\x0a}\x0a\x0aQHeaderView::section::vertical\x0a{\x0a border-top: transparent;\x0a}\x0a\x0aQHeaderView::section::horizontal::first\x0a{\x0a border-left: 1px solid #6c6c6c;\x0a}\x0a\x0aQHeaderView::section::horizontal\x0a{\x0a border-left: transparent;\x0a}\x0a\x0a\x0aQHeaderView::section:checked\x0a {\x0a color: white;\x0a background-color: #5A5959;\x0a }\x0a\x0a /* style the sort indicator */\x0aQHeaderView::down-arrow {\x0a image: url(:/qss_icons/rc/down_arrow.png);\x0a}\x0a\x0aQHeaderView::up-arrow {\x0a mage: url(:/qss_icons/rc/up_arrow.png);\x0a}\x0a\x0a\x0aQTableCornerButton::section {\x0a background-color: #3A3939;\x0a border: 1px solid #3A3939;\x0a border-radius: 0px;\x0a}\x0a\x0aQToolBox::tab {\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,\x0a stop:1 #302F2F, stop:0 #5A5959);\x0a padding-left: 3px;\x0a padding-right: 2px;\x0a padding-top: 5px;\x0a padding-bottom: 5px;\x0a margin-bottom: -1px;\x0a\x0a border-top-left-radius: 3px;\x0a border-top-right-radius: 3px;\x0a color: darkgray;\x0a }\x0a\x0a QToolBox::tab:selected { /* italicize selected tabs */\x0a font: italic bold;\x0a color: white;\x0a }\x0a\x00\x00\x00\x96\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x02bKGD\x00\xd3\xb5W\xa0\x5c\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x0b\x07\x0c\x0d\x1bu\xfe1\x99\x00\x00\x00'IDAT\x08\xd7e\x8c\xb1\x0d\x00\x00\x08\x83\xe0\xff\xa3up\xb1\xca\xd4\x90Px\x08U!\x14\xb6Tp\xe6H\x8d\x87\xcc\x0f\x0d\xe0\xf0\x08\x024\xe2+\xa7\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x02q\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95+\x0e\x1b\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x01(tm$I\x00\x00\x01\xf1IDATX\xc3\xcdWAN\x021\x14\xfd\xfd\xb5np!\x89\xb8\x11\x8d\x89[\xef\x80;\xb7\xde\x806p,\xa0\xbd\x86;\xc2\x19\xd8\xb9!\x11\x13#\x0bM\x94I\xb4i\xeb\xc6\xea\xa4a\x86\xb6@\xf0\xef\xc8\xd0y}\xef\xbfy\xed\x07\xd8s\x91\xaa\x07J\xa9W\x00\x00\xe7\xdcR\x08\xd1\xcey\xb9\x94rN\x08i\x00\x00p\xce\x9bQ\x1b\x18\x0c\x06S\xc6\xd8\xa5_\x08\x00`\xad]p\xceOS\xc0\x95R/\x88\xd8\xf2\xbf\x9dsK\xad\xf5\xac\xdf\xef_\x97\xff\x87\xe1\xc2\x10\x1c\x00\x00\x11[R\xcay\x0a\xf328\x00\x00!\xa4\xc1\x18\xbb\xacT`\x15\xf3\xb0\xb4\xd6\xf3^\xafw^\x07>\x1c\x0e\x1f\x19c\x95-\x0b\x95\xc0:\xe6aQJk\x95\x90R\xce)\xa5\xadZ\xd3\x05J\x10o8D<\x8e\x95x\x95'\xc2\x9eG\xbc\xe3\x8ds\xde\xc4\x1cw\x87\x9eX\xd5\xf3\xd8:\xf0}\x01\x80\xe3\x94\x85\x94\xd23\xa5\xd4\x8b\xdfP*\xf0\x0f\xe6\x9f\x09S%\xdc\xa4\xca-\xfcm\x01\xe7\xfc\xd4\x18\xf3\xb4kpc\xccS\xd9?d]\x80\xec\x8aye\x10\xedJ\x89\x90y\xccY\xb05%\xea\xa2\xbc\xf23\xdc\x96\x12U\xcc\xd7*\xb0\x0d%b\x0e1\x84=\x17\xa6\x9ej\x9b$f\xea\x85d\x7f&\xdc\x94y\x8a\x12\xff+\x88\xb6\xcd\xc0XL\xc8\x5c&dY&d\xc5pN\x8a\x00\x9c\x93\x22\x80a\x1a\x0a\x00\x00)\x95\x08\xaf\x88\xac\xba4\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xce\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x07\x00\x00\x00?\x08\x06\x00\x00\x00,{\xd2\x13\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x09/\x07\xd7?\xc4R\x00\x00\x00NIDAT8\xcbc`\x186\x80\x19\xc6\xa8o\x9f\xca\xe0\xe0\xe2\xcd\xf0\xea\xe5s\x867\xaf^000000\xe1\xd39*IH\x92\x05\x89\xfd\x1f\x89\xcd8\x1aB\xa3\x92\x83'i2\x8e\x86\x10\xa9\x92\xf0 \xd3\xd41\x84\x0b^\xbfr\x9ea\x14@\x01\x00\x13M\x0cF\x89*\x0a \x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xb6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x18\x00\x00\x00\x11\x08\x06\x00\x00\x00\xc7xl0\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b,\x0d\x1fC\xaa\xe1\x00\x00\x006IDAT8\xcbc` \x01,Z\xb4\xe8\xff\xa2E\x8b\xfe\x93\xa2\x87\x89\x81\xc6`\xd4\x82\x11`\x01#\xa9\xc9t\xd0\xf9\x80\x85\x1cMqqq\x8c\xa3\xa9h\xd4\x82ad\x01\x001\xb5\x09\xec\x1fK\xb4\x15\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x09\x08\x04\x00\x00\x00\xbb\x93\x95\x16\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x14\x1f \xb9\x8dw\xe9\x00\x00\x00*IDAT\x08\xd7c`\xc0\x06\xe6|```B0\xa1\x1c\x08\x93\x81\x81\x09\xc1d``b`H\x11@\xe2 s\x19\x90\x8d@\x02\x00#\xed\x08\xafd\x9f\x0f\x15\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\x9cS4\xfc]\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x1b\x0e\x16M[o\x00\x00\x00*IDAT\x08\xd7c`\xc0\x00\x8c\x0c\x0cs> \x0b\xa4\x08020 \x0b\xa6\x08000B\x98\x10\xc1\x14\x01\x14\x13P\xb5\xa3\x01\x00\xc6\xb9\x07\x90]f\x1f\x83\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xe1\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x0a\x00\x00\x006\x08\x06\x00\x00\x00\xfe\x8a\x08k\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x093\x22zLMH\x00\x00\x00aIDATH\xc7c\xfc\xcf@\x1c`b\xa0\x99Bc##\x06c##\x0c6\x1d\xac\x1eU8\xc8\x142\xfeg``hh\x9f\x8a3Y\xaeZ:\x87\xe1\xda\x95\xf3\x8c4\xb2ZK\xc7\x10o\x8e\xb8v\xe5<#\xe3\x7f\xa4\x84\xcb\xc0\xc0\xc0p\xf6\xdc9\x14\xf6h\x80\x8f\x06\xf8h\x80\x8f\x96fC'=\x0er7\x02\x00\x100@\xb35\xa0|I\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa0\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x09\x08\x04\x00\x00\x00\xbb\x93\x95\x16\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x14\x1c\x1f$\xc6\x09\x17\x00\x00\x00$IDAT\x08\xd7c`@\x05\xff\xcf\xc3XL\xc8\x5c&dY&d\xc5p\x0e\xa3!\x9c\xc3h\x88a\x1a\x0a\x00\x00m\x84\x09u7\x9e\xd9#\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x08\x15;\xdc;\x0c\x9b\x00\x00\x00*IDAT\x08\xd7c`\xc0\x00\x8c\x0c\x0cs> \x0b\xa4\x08020 \x0b\xa6\x08000B\x98\x10\xc1\x14\x01\x14\x13P\xb5\xa3\x01\x00\xc6\xb9\x07\x90]f\x1f\x83\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xe4\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x006\x00\x00\x00\x0a\x08\x06\x00\x00\x00\xff\xfd\xad\x0b\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\x7f\x00\x87\x00\x95\xe6\xde\xa6\xaf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x09*+\x98\x90\x5c\xf4\x00\x00\x00dIDATH\xc7c\xfc\xcf0<\x01\x0b\xa5\x064\xb4O\x85\x87\xcd\xaa\xa5s\x18\xae]9\xcfH+5\x14y\xcc\xd8\xc8\x88$\x03|\x89\xd0O-5\x84\xc0\xd9s\xe7\xe0l&\x86\x91\x92\x14\x91}MTR\x0cM&\xa8\x9fZjF\x93\xe2hR\x1c\x82I\x91\x91\xd2zLK\xc7\x10\xc5\x08l\xc54\xb5\xd4\xd0\xd5c\x83\x15\x00\x00z0J\x09q\xea-n\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xc3\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00@\x00\x00\x00@\x08\x06\x00\x00\x00\xaaiq\xde\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x0b\x07\x09.7\xffD\xe8\xf0\x00\x00\x00\x1diTXtComment\x00\x00\x00\x00\x00Created with GIMPd.e\x07\x00\x00\x00'IDATx\xda\xed\xc1\x01\x0d\x00\x00\x00\xc2\xa0\xf7Om\x0e7\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80w\x03@@\x00\x01\xafz\x0e\xe8\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa5\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\x9cS4\xfc]\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x02\x04m\x98\x1bi\x00\x00\x00)IDAT\x08\xd7c`\xc0\x00\x8c\x0c\x0c\xff\xcf\xa3\x08\x18220 \x0b2\x1a200B\x98\x10AFC\x14\x13P\xb5\xa3\x01\x00\xd6\x10\x07\xd2/H\xdfJ\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa0\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x09\x08\x04\x00\x00\x00\xbb\x93\x95\x16\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\x9cS4\xfc]\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x1b)\xb3G\xee\x04\x00\x00\x00$IDAT\x08\xd7c`@\x05s>\xc0XL\xc8\x5c&dY&d\xc5pN\x8a\x00\x9c\x93\x22\x80a\x1a\x0a\x00\x00)\x95\x08\xaf\x88\xac\xba4\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x01\xc8\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00 \x00\x00\x00 \x08\x06\x00\x00\x00szz\xf4\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95+\x0e\x1b\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b\x03$O\xed\x0a\xe0\x00\x00\x01HIDATX\xc3\xedWA\x8e\x830\x0c\xb4!\xd0>\x10?\x8e#\xe7 \xbe\xb3?\xd9U\x03\x9b\xd9K*E\x10\x96$\x04\xf5\x82\xcf.cO\xc6c\x97\xe8\xc3\xc1W|Tkm\x98\xb9:\xca\x03\xb0\xa8\x0b\x9b\xab#r~\xab+\x90E\xa4\x05\xb0\xc4\xe4VW\xb5/\x22\x0d\x80\xf9(o\xf3\x04\xe38.9\x80\x00\xac\x88\xb4\xa9\xbfS\x9ep~\x98\xb9\xcdde\x03\xae\xb5\x9e\x99YE?\xc1\x19p\x00&0\x05*\x9a\x01G{\x16x\xd7uuB\xe7v\x8dsF\x84\xa9\x9d[\x00f=\x1d\xcaZK\xd34\xad\x055\xa7\x0a\xea\xa8s\x9f)WhCDT\x0d\xc3\xf0\x05`#\xea\x0c\xe7S\xb1L9\x9f0Dd\xd9\xd3@\xed1`D\xe4Q\xba\xf3\xe2F\x94\xday\x94\x11\x15\x8a\xe0t8\xbfx\x14c`\xc7\xf3\x93\xa6\xe34\x03\x22\xd2x\xaaN\xf5\x852\xcb\xe8\xad\xea\x1cG,\xa6\x81\xd0\xd4\xc4\x1c%\x97\xad\xe3\xd8\xb8\x0b\xb8\x0b\xb8\x0b\xa8J\xffa\xe9\xfb\xbeq&\xf4\x1dX\xf3qF\xc4\xcc*\xf7:v\xeb\x9d\x00D\x19\x91z\x9f\xd4\xcc\x5c\xaf\x18\xa8\xcfP\xcb\xcc\xa1#\x07\xbbT\xc7\x9e\xd1\xb9\x01\xe0%\x22\xcf\x7f\xdf\xda\xbf\xd5\xcab\xc3\x84\xc0\x83b\xd3Z\xbfJ\x17\xb0\x07ND\xf4\x07\xae\xf5\xd5\xa6\x1d\xd1\x22\x08\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\x9e\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x08\x15\x0f\xfd\x8f\xf8.\x00\x00\x00\x22IDAT\x08\xd7c`\xc0\x0d\xfe\x9f\x87\xb1\x18\x91\x05\x18\x0d\xe1BH*\x0c\x19\x18\x18\x91\x05\x10*\xd1\x00\x00\xca\xb5\x07\xd2v\xbb\xb2\xc5\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xbb\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00?\x00\x00\x00\x07\x08\x06\x00\x00\x00\xbfv\x95\x1f\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x095+U\xcaRj\x00\x00\x00;IDAT8\xcbc`\x18\x05#\x130\x12\xa3\xa8\xbe}*%v\xfc\xa7\x97;\xd1\xc1\xaa\xa5s\x18\xae_9\x8fS\x9ei4\xe6\x09\x00M\x1d\xc3!\x19\xf3\x0c\x0c\x0cxc~\x14\x8cT\x00\x00id\x0b\x05\xfdkX\xca\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\x9f\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x06\x08\x04\x00\x00\x00\xbb\xce|N\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x08\x14\x1f\xf9#\xd9\x0b\x00\x00\x00#IDAT\x08\xd7c`\xc0\x0d\xe6|\x80\xb1\x18\x91\x05R\x04\xe0B\x08\x15)\x02\x0c\x0c\x8c\xc8\x02\x08\x95h\x00\x00\xac\xac\x07\x90Ne4\xac\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xef\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00Q\x00\x00\x00:\x08\x06\x00\x00\x00\xc8\xbc\xb5\xaf\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b*2\xff\x7f Z\x00\x00\x00oIDATx\xda\xed\xd0\xb1\x0d\x000\x08\x03A\xc8\xa0\x0c\xc7\xa2I\xcf\x04(\xba/]Y\x97\xb1\xb4\xee\xbes\xab\xaa\xdc\xf8\xf5\x84 B\x84(\x88\x10!B\x14D\x88\x10!\x0a\x22D\x88\x10\x05\x11\x22D\x88\x82\x08\x11\x22DA\x84\x08Q\x10!B\x84(\x88\x10!B\x14D\x88\x10!\x0a\x22D\x88\x10\x05\x11\x22D\x88\x82\x08\x11\x22DA\x84\x08Q\x10!B\xfc\xaa\x07\x12U\x04tV\x9e\x9eT\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x09\x08\x04\x00\x00\x00\xbb\x93\x95\x16\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x02bKGD\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x14\x1d\x00\xb0\xd55\xa3\x00\x00\x00*IDAT\x08\xd7c`\xc0\x06\xfe\x9fg``B0\xa1\x1c\x08\x93\x81\x81\x09\xc1d``b``4D\xe2 s\x19\x90\x8d@\x02\x00d@\x09u\x86\xb3\xad\x9c\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\xe0\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00Q\x00\x00\x00:\x08\x06\x00\x00\x00\xc8\xbc\xb5\xaf\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07tIME\x07\xdc\x08\x17\x0b)\x1c\x08\x84~V\x00\x00\x00`IDATx\xda\xed\xd9\xb1\x0d\x00 \x08\x00AqP\x86cQ\xed\x8d\x85%\x89w\xa5\x15\xf9HE\x8c\xa6\xaaj\x9do\x99\x19\x1dg\x9d\x03\x11E\x14\x11\x11E\x14QDD\x14QD\x11\x11QD\x11EDD\x11E\x14\x11\x11E\x14\xf1[\xd1u\xb0\xdb\xdd\xd9O\xb4\xce\x88(\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcf6\xcei\x07\x1e\xe99U@\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x00\x81\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x01\x03\x00\x00\x00%=m\x22\x00\x00\x00\x06PLTE\x00\x00\x00\xae\xae\xaewk\xd6-\x00\x00\x00\x01tRNS\x00@\xe6\xd8f\x00\x00\x00)IDATx^\x05\xc0\xb1\x0d\x00 \x08\x04\xc0\xc3X\xd8\xfe\x0a\xcc\xc2p\x8cm(\x0e\x97Gh\x86Uq\xda\x1do%\xba\xcd\xd8\xfd5\x0a\x04\x1b\xd6\xd9\x1a\x92\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x01W\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x09\x08\x06\x00\x00\x00\xe0\x91\x06\x10\x00\x00\x00\x09pHYs\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95+\x0e\x1b\x00\x00\x00 cHRM\x00\x00z%\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00u0\x00\x00\xea`\x00\x00:\x98\x00\x00\x17o\x92_\xc5F\x00\x00\x00\xddIDATx\xda\x5c\x8e\xb1N\x84@\x18\x84g\xefL,\xc8\xd9,\x0dXP\x1b\x0b\xc3\xfa$w\xbd\x0d\x85O@\x0b\xbb\xcb;\xd0hAr\xc5\xd2(O\x02\xcf\xb1\x97@a\xd4\xc2\xc4b,\xbcM\xd0I\xfe\xbf\xf82\xff?#H\xc2Z;\x00\x80\xd6\xfa\x80\xb3\xac\xb5\x03I\x18c\x0e[!\xc4\x90\xe7\xf9>I\x92\x9b\xbe\xef\xef\xca\xb2|\xf5\xde\xbf\x04\xe6\x9c\xbb\xbd \xf9\x19\xae\x95R\xfb,\xcb\xbe\xa5\x94\x01\x81\xe4\x9b8\xbf<*\xa5\x1e\xf0O\xe38>7M\xf3(H\x02\x00\xba\xae{\x97R\xee\x82aY\x96\x8f\xa2(\xae\x00`\x03\x00\xc6\x98\xe3\xda\x00\x00q\x1c\xef\xb4\xd6O\x00\xb0\x05\xf0'j\x9egDQ\x04\x00H\xd3\xf4\xde9w\xbd!\xf9\xb5\xeapj\xdb\xf6r\x9a\xa6\xd3\xaa\xf8\xef\xaa\xeb\xdaWU\xe5I\x22\xcc\x9a\xfd\x0c\x00$\xabn\xfa\x96!\xfc\xb8\x00\x00\x00\x00IEND\xaeB`\x82" qt_resource_name = b"\x00\x09\x09_\x97\x13\x00q\x00s\x00s\x00_\x00i\x00c\x00o\x00n\x00s\x00\x0a\x09$M%\x00q\x00d\x00a\x00r\x00k\x00s\x00t\x00y\x00l\x00e\x00\x09\x00(\xad#\x00s\x00t\x00y\x00l\x00e\x00.\x00q\x00s\x00s\x00\x02\x00\x00\x07\x83\x00r\x00c\x00\x12\x07\x8f\x9d'\x00b\x00r\x00a\x00n\x00c\x00h\x00_\x00o\x00p\x00e\x00n\x00-\x00o\x00n\x00.\x00p\x00n\x00g\x00\x09\x06\x98\x83'\x00c\x00l\x00o\x00s\x00e\x00.\x00p\x00n\x00g\x00\x14\x06^,\x07\x00b\x00r\x00a\x00n\x00c\x00h\x00_\x00c\x00l\x00o\x00s\x00e\x00d\x00-\x00o\x00n\x00.\x00p\x00n\x00g\x00\x18\x03\x8e\xdeg\x00r\x00i\x00g\x00h\x00t\x00_\x00a\x00r\x00r\x00o\x00w\x00_\x00d\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\x00p\x00n\x00g\x00\x11\x08\x8cj\xa7\x00H\x00s\x00e\x00p\x00a\x00r\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00.\x00p\x00n\x00g\x00\x1a\x01!\xebG\x00s\x00t\x00y\x00l\x00e\x00s\x00h\x00e\x00e\x00t\x00-\x00b\x00r\x00a\x00n\x00c\x00h\x00-\x00m\x00o\x00r\x00e\x00.\x00p\x00n\x00g\x00\x17\x0ce\xce\x07\x00l\x00e\x00f\x00t\x00_\x00a\x00r\x00r\x00o\x00w\x00_\x00d\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\x00p\x00n\x00g\x00\x0f\x06S%\xa7\x00b\x00r\x00a\x00n\x00c\x00h\x00_\x00o\x00p\x00e\x00n\x00.\x00p\x00n\x00g\x00\x10\x01\x00\xca\xa7\x00H\x00m\x00o\x00v\x00e\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00.\x00p\x00n\x00g\x00\x0f\x02\x9f\x05\x87\x00r\x00i\x00g\x00h\x00t\x00_\x00a\x00r\x00r\x00o\x00w\x00.\x00p\x00n\x00g\x00\x17\x0c\xabQ\x07\x00d\x00o\x00w\x00n\x00_\x00a\x00r\x00r\x00o\x00w\x00_\x00d\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\x00p\x00n\x00g\x00\x10\x01\x07J\xa7\x00V\x00m\x00o\x00v\x00e\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00.\x00p\x00n\x00g\x00\x0f\x0c\xe2hg\x00t\x00r\x00a\x00n\x00s\x00p\x00a\x00r\x00e\x00n\x00t\x00.\x00p\x00n\x00g\x00\x0e\x04\xa2\xfc\xa7\x00d\x00o\x00w\x00n\x00_\x00a\x00r\x00r\x00o\x00w\x00.\x00p\x00n\x00g\x00\x11\x0b\xda0\xa7\x00b\x00r\x00a\x00n\x00c\x00h\x00_\x00c\x00l\x00o\x00s\x00e\x00d\x00.\x00p\x00n\x00g\x00\x0a\x05\x95\xde'\x00u\x00n\x00d\x00o\x00c\x00k\x00.\x00p\x00n\x00g\x00\x0c\x06\xe6\xe6g\x00u\x00p\x00_\x00a\x00r\x00r\x00o\x00w\x00.\x00p\x00n\x00g\x00\x11\x08\xc4j\xa7\x00V\x00s\x00e\x00p\x00a\x00r\x00t\x00o\x00o\x00l\x00b\x00a\x00r\x00.\x00p\x00n\x00g\x00\x15\x0f\xf3\xc0\x07\x00u\x00p\x00_\x00a\x00r\x00r\x00o\x00w\x00_\x00d\x00i\x00s\x00a\x00b\x00l\x00e\x00d\x00.\x00p\x00n\x00g\x00\x14\x0b\xc5\xd7\xc7\x00s\x00t\x00y\x00l\x00e\x00s\x00h\x00e\x00e\x00t\x00-\x00v\x00l\x00i\x00n\x00e\x00.\x00p\x00n\x00g\x00\x0e\x0e\xde\xfa\xc7\x00l\x00e\x00f\x00t\x00_\x00a\x00r\x00r\x00o\x00w\x00.\x00p\x00n\x00g\x00\x19\x08>\xcc\x07\x00s\x00t\x00y\x00l\x00e\x00s\x00h\x00e\x00e\x00t\x00-\x00b\x00r\x00a\x00n\x00c\x00h\x00-\x00e\x00n\x00d\x00.\x00p\x00n\x00g\x00\x0c\x06A@\x87\x00s\x00i\x00z\x00e\x00g\x00r\x00i\x00p\x00.\x00p\x00n\x00g\x00\x0c\x04V#g\x00c\x00h\x00e\x00c\x00k\x00b\x00o\x00x\x00.\x00p\x00n\x00g" -qt_resource_struct = b"\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x18\x00\x02\x00\x00\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00J\x00\x02\x00\x00\x00\x18\x00\x00\x00\x04\x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x00WT\x00\x00\x022\x00\x00\x00\x00\x00\x01\x00\x00Y\x87\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00UF\x00\x00\x01\xda\x00\x00\x00\x00\x00\x01\x00\x00X9\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x01\x00\x00S\xd0\x00\x00\x03\xfc\x00\x00\x00\x00\x00\x01\x00\x00cY\x00\x00\x02|\x00\x00\x00\x00\x00\x01\x00\x00[6\x00\x00\x02\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x5c\x83\x00\x00\x03\xde\x00\x00\x00\x00\x00\x01\x00\x00b\xd4\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00V\xaa\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00S9\x00\x00\x00~\x00\x00\x00\x00\x00\x01\x00\x00P\xc4\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x00^O\x00\x00\x00T\x00\x00\x00\x00\x00\x01\x00\x00P*\x00\x00\x03\xa6\x00\x00\x00\x00\x00\x01\x00\x00a\xf0\x00\x00\x00\xfa\x00\x00\x00\x00\x00\x01\x00\x00Tt\x00\x00\x02\xfe\x00\x00\x00\x00\x00\x01\x00\x00^\xf1\x00\x00\x03V\x00\x00\x00\x00\x00\x01\x00\x00`S\x00\x00\x02\x9e\x00\x00\x00\x00\x00\x01\x00\x00[\xdf\x00\x00\x01\x5c\x00\x00\x00\x00\x00\x01\x00\x00V\x00\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x01\x00\x00X\xdd\x00\x00\x02X\x00\x00\x00\x00\x00\x01\x00\x00Zo\x00\x00\x03\x84\x00\x00\x00\x00\x00\x01\x00\x00aF\x00\x00\x03&\x00\x00\x00\x00\x00\x01\x00\x00_\xb0\x00\x00\x002\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" +qt_resource_struct = b"\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x18\x00\x02\x00\x00\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00J\x00\x02\x00\x00\x00\x18\x00\x00\x00\x04\x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x00Y\x06\x00\x00\x022\x00\x00\x00\x00\x00\x01\x00\x00[9\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00V\xf8\x00\x00\x01\xda\x00\x00\x00\x00\x00\x01\x00\x00Y\xeb\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x01\x00\x00U\x82\x00\x00\x03\xfc\x00\x00\x00\x00\x00\x01\x00\x00e\x0b\x00\x00\x02|\x00\x00\x00\x00\x00\x01\x00\x00\x5c\xe8\x00\x00\x02\xc6\x00\x00\x00\x00\x00\x01\x00\x00^5\x00\x00\x03\xde\x00\x00\x00\x00\x00\x01\x00\x00d\x86\x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00X\x5c\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00T\xeb\x00\x00\x00~\x00\x00\x00\x00\x00\x01\x00\x00Rv\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x00`\x01\x00\x00\x00T\x00\x00\x00\x00\x00\x01\x00\x00Q\xdc\x00\x00\x03\xa6\x00\x00\x00\x00\x00\x01\x00\x00c\xa2\x00\x00\x00\xfa\x00\x00\x00\x00\x00\x01\x00\x00V&\x00\x00\x02\xfe\x00\x00\x00\x00\x00\x01\x00\x00`\xa3\x00\x00\x03V\x00\x00\x00\x00\x00\x01\x00\x00b\x05\x00\x00\x02\x9e\x00\x00\x00\x00\x00\x01\x00\x00]\x91\x00\x00\x01\x5c\x00\x00\x00\x00\x00\x01\x00\x00W\xb2\x00\x00\x01\xfe\x00\x00\x00\x00\x00\x01\x00\x00Z\x8f\x00\x00\x02X\x00\x00\x00\x00\x00\x01\x00\x00\x5c!\x00\x00\x03\x84\x00\x00\x00\x00\x00\x01\x00\x00b\xf8\x00\x00\x03&\x00\x00\x00\x00\x00\x01\x00\x00ab\x00\x00\x002\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) diff --git a/qdarkstyle/style.qss b/qdarkstyle/style.qss index e1f25b1ad..16f958044 100644 --- a/qdarkstyle/style.qss +++ b/qdarkstyle/style.qss @@ -1027,3 +1027,22 @@ QTableCornerButton::section { border: 1px solid #3A3939; border-radius: 0px; } + +QToolBox::tab { + background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, + stop:1 #302F2F, stop:0 #5A5959); + padding-left: 3px; + padding-right: 2px; + padding-top: 5px; + padding-bottom: 5px; + margin-bottom: -1px; + + border-top-left-radius: 3px; + border-top-right-radius: 3px; + color: darkgray; + } + + QToolBox::tab:selected { /* italicize selected tabs */ + font: italic bold; + color: white; + }