diff --git a/Modules/C3js/resource/C3js.qrc b/Modules/C3js/resource/C3js.qrc index ef0618eb41..4ebbe5d81c 100644 --- a/Modules/C3js/resource/C3js.qrc +++ b/Modules/C3js/resource/C3js.qrc @@ -1,13 +1,14 @@ c3.min.css Histogram.css Histogram_dark.css c3.min.js d3.min.js empty.html + empty.js QmitkC3jsWidget.html Histogram.js diff --git a/Modules/C3js/resource/Histogram.css b/Modules/C3js/resource/Histogram.css index 9cd7975c64..ae37a3ae09 100644 --- a/Modules/C3js/resource/Histogram.css +++ b/Modules/C3js/resource/Histogram.css @@ -1,29 +1,28 @@ -/*--body { - background-color: darkgrey !important; -}--*/ - +body { + background-color: rgb(240, 240, 240) !important; +} /*-- Bar --*/ .c3-bar { fill-opacity: 1; } .c3-bar._expanded_ { fill: red !important; /*-- The !important tag prevnts the color from being overwritten at rendering--*/ fill-opacity: 1; } /*-- Line --*/ .c3-line { stroke-width: 1px; /*stroke-dasharray: 5,5; /*to make it dashed*/ } /*-- Point --*/ .c3-circle._expanded_ { stroke-width: 1px; stroke: red !important; fill: red !important; /*-- The !important tag prevnts the color from being overwritten at rendering--*/} /*path.domain { stroke: white; } .tick text { stroke: white; } .c3-legend-item text { stroke: grey; }*/ \ No newline at end of file diff --git a/Modules/C3js/resource/Histogram.js b/Modules/C3js/resource/Histogram.js index c34e9730c8..beb467a345 100644 --- a/Modules/C3js/resource/Histogram.js +++ b/Modules/C3js/resource/Histogram.js @@ -1,343 +1,341 @@ -document.body.style.backgroundColor = 'rgb(240, 240, 240)'; - var greyvalue; //needed to display the tooltip in the right format var binSize = 10; var min; var max; var minHeight = 255; var chart = c3.generate({ data: { x : 'x', //use first "column" as x axis values columns: [], //initialize empty. Data will be loaded in function setupChart(initValues) type: 'bar', selection: { enabled: false, multiple: false, } }, legend: { position: 'inset' }, grid: { y: { lines: [{value:0}] //Draws a horizontal line at y=0 } }, bar: { width: { ratio: 0.95 // this makes bar width 95% of length between ticks } }, zoom: { enabled: true, }, subchart: { show: true //Shows a subchart that shows the region the primary chart is zoomed in to by overlay. }, axis: { x: { type: 'category', //only for type 'category' the bars will be rescaled in width on zoom tick: { multiline: false, fit: false, //to make more x labels appear on zoom centered: true, }, }, y: { tick: { format: d3.format("s"), }, //for some reason, there is an offset for our linegraph. This is prevented by the following lines min: 0, padding: { top: 0, bottom: 0 } } }, //Style data points in linegraph point: { r: 0.2, focus: { expand: { r: 4 } } }, tooltip: { format: { title: function (d) { var endValue = (parseFloat(greyvalue[d]) + binSize); endValue = endValue.toFixed(3); return 'Greyvalue: ' + greyvalue[d] + '...' + endValue; }, } } }); var initValues; window.onload = function() { new QWebChannel(qt.webChannelTransport, function(channel) { initValues = channel.objects.initValues; setupChart(initValues) }); } //This is necessary to resize the chart, after the size of the parent changed window.onresize = function () { var size = window.innerHeight-(window.innerHeight/100*10); //subtract 5% of height to hide vertical scrool bar if (size < minHeight) { size = minHeight; } chart.resize({ height: size, }); } function ReloadChart(useLineChart, showSubchart) { initValues.m_UseLineChart = useLineChart; initValues.m_ShowSubchart = showSubchart; var chartType = 'bar'; if (initValues.m_UseLineChart) { chartType = 'line'; } if (initValues.m_ShowSubchart) { ShowSubchart(chartType) } else { HideSubchart(chartType) } setupChart(initValues); } function setupChart(initValues) { window.onresize(); calcBinSize(initValues); //copy measurements to xValues for x-axis-labels and to greyvalues for tooltips var xValues = initValues.m_XData.slice(0); greyvalue = initValues.m_XData.slice(0); for (var i = 0; i < xValues.length; i++) { greyvalue[i] = greyvalue[i] - (binSize / 2); greyvalue[i] = greyvalue[i].toFixed(3); //change number format for x axis. Need to do it here, because it is not working on chart generation. xValues[i] = xValues[i]; xValues[i] = xValues[i].toFixed(); xValues[i] = d3.format("s")(xValues[i]); } xValues.unshift('x'); //add label to x array xValues.push(null); //append null value, to make sure the last tick on x-axis is displayed correctly var yValues = initValues.m_YData; yValues.unshift('Frequency'); //add label to y array xValues.push(null); //append null value, to make sure the last tick on x-axis is displayed correctly var chartType = 'bar'; if (initValues.m_UseLineChart) { chartType = 'line'; } if (initValues.m_ShowSubchart) { ShowSubchart(chartType) } else { HideSubchart(chartType) } chart.unload(); //unload data before loading new data chart.load({ columns:[ xValues, yValues ] }); } /* * Calculation of the bin size. */ function calcBinSize(initValues) { if (1 < initValues.m_XData.length) { min = d3.min(initValues.m_XData); max = d3.max(initValues.m_XData); binSize = ((max - min) / (initValues.m_XData.length - 1)); } else { binSize = 10; } } //Transforamtion between bar and line chart //takes the name of the chart type as a parameter //calles by QmitkC3jsWidget function transformView(TransformTo) { chart.transform(TransformTo); }; function changeTheme(color) { if (color == 'dark') { link = document.getElementsByTagName("link")[0]; link.href = "Histogram_dark.css"; } else { link = document.getElementsByTagName("link")[0]; link.href = "Histogram.css"; } }; function ShowSubchart(chartType) { chart = c3.generate({ data: { x : 'x', //use first "column" as x axis values columns: [], //initialize empty. Data will be loaded in function setupChart(initValues) type: chartType, selection: { enabled: false, multiple: false, } }, legend: { position: 'inset' }, grid: { y: { lines: [{value:0}] //Draws a horizontal line at y=0 } }, bar: { width: { ratio: 0.95 // this makes bar width 95% of length between ticks } }, zoom: { enabled: true, }, subchart: { show: true //Shows a subchart that shows the region the primary chart is zoomed in to by overlay. }, axis: { x: { type: 'category', //only for type 'category' the bars will be rescaled in width on zoom tick: { multiline: false, fit: false, //to make more x labels appear on zoom centered: true, }, }, y: { tick: { format: d3.format("s"), }, //for some reason, there is an offset for our linegraph. This is prevented by the following lines //min: 0, //padding: { top: 0, bottom: 0 } } }, //Style data points in linegraph point: { r: 0.2, focus: { expand: { r: 4 } } }, tooltip: { format: { title: function (d) { var endValue = (parseFloat(greyvalue[d]) + binSize); endValue = endValue.toFixed(3); return 'Greyvalue: ' + greyvalue[d] + '...' + endValue; }, } } }); } function HideSubchart(chartType) { chart = c3.generate({ data: { x : 'x', //use first "column" as x axis values columns: [], //initialize empty. Data will be loaded in function setupChart(initValues) type: chartType, selection: { enabled: false, multiple: false, } }, legend: { position: 'inset' }, grid: { y: { lines: [{value:0}] //Draws a horizontal line at y=0 } }, bar: { width: { ratio: 0.95 // this makes bar width 95% of length between ticks } }, zoom: { enabled: true, }, subchart: { show: false //Shows a subchart that shows the region the primary chart is zoomed in to by overlay. }, axis: { x: { type: 'category', //only for type 'category' the bars will be rescaled in width on zoom tick: { multiline: false, fit: false, //to make more x labels appear on zoom centered: true, }, }, y: { tick: { format: d3.format("s"), }, //for some reason, there is an offset for our linegraph. This is prevented by the following lines //min: 0, //padding: { top: 0, bottom: 0 } } }, //Style data points in linegraph point: { r: 0.2, focus: { expand: { r: 4 } } }, tooltip: { format: { title: function (d) { var endValue = (parseFloat(greyvalue[d]) + binSize); endValue = endValue.toFixed(3); return 'Greyvalue: ' + greyvalue[d] + '...' + endValue; }, } } }); } \ No newline at end of file diff --git a/Modules/C3js/resource/Histogram_dark.css b/Modules/C3js/resource/Histogram_dark.css index a69610d1b1..9e09ba3384 100644 --- a/Modules/C3js/resource/Histogram_dark.css +++ b/Modules/C3js/resource/Histogram_dark.css @@ -1,36 +1,36 @@ body { - background-color: darkgrey !important; + background-color: #323231 !important; } /*-- Bar --*/ .c3-bar { fill-opacity: 1; } .c3-bar._expanded_ { fill: red !important; /*-- The !important tag prevents the color from being overwritten at rendering--*/ fill-opacity: 1; } /*-- Line --*/ .c3-line { stroke-width: 1px; - stroke: white; + stroke: #ADB1B6; /*stroke-dasharray: 5,5; /*to make it dashed*/ } /*-- Point --*/ .c3-circle._expanded_ { stroke-width: 1px; stroke: red !important; fill: red !important; /*-- The !important tag prevents the color from being overwritten at rendering--*/} -path.domain { stroke: white !important; } +path.domain { stroke: #ADB1B6 !important; } .c3 .c3-axis-x path, .c3 .c3-axis-x line { - stroke: white !important; + stroke: #ADB1B6 !important; } .c3 .c3-axis-y path, .c3 .c3-axis-y line { - stroke: white !important; + stroke: #ADB1B6 !important; } -.tick text { stroke: white !important; } -.c3-legend-item text { stroke: white !important; } \ No newline at end of file +.tick text { stroke: #ADB1B6 !important; } +.c3-legend-item text { stroke: #323231 !important; } \ No newline at end of file diff --git a/Modules/C3js/resource/QmitkC3jsWidget.html b/Modules/C3js/resource/QmitkC3jsWidget.html index 81e4f0c89a..40b2ce4942 100644 --- a/Modules/C3js/resource/QmitkC3jsWidget.html +++ b/Modules/C3js/resource/QmitkC3jsWidget.html @@ -1,16 +1,16 @@ - +
diff --git a/Modules/C3js/resource/empty.html b/Modules/C3js/resource/empty.html index 0051579c81..011d8e9980 100644 --- a/Modules/C3js/resource/empty.html +++ b/Modules/C3js/resource/empty.html @@ -1,11 +1,16 @@ - - - - - - - - - + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/Modules/C3js/resource/empty.js b/Modules/C3js/resource/empty.js new file mode 100644 index 0000000000..8f84f04ed6 --- /dev/null +++ b/Modules/C3js/resource/empty.js @@ -0,0 +1,11 @@ +function changeTheme(color) { + if (color == 'dark') { + link = document.getElementsByTagName("link")[0]; + link.href = "Histogram_dark.css"; + } + else + { + link = document.getElementsByTagName("link")[0]; + link.href = "Histogram.css"; + } +}; diff --git a/Modules/C3js/resource/empty_dark.html b/Modules/C3js/resource/empty_dark.html new file mode 100644 index 0000000000..4146f9e1f7 --- /dev/null +++ b/Modules/C3js/resource/empty_dark.html @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/Modules/C3js/src/QmitkC3jsWidget.cpp b/Modules/C3js/src/QmitkC3jsWidget.cpp index 0b0cc00f4b..b1089ba68a 100644 --- a/Modules/C3js/src/QmitkC3jsWidget.cpp +++ b/Modules/C3js/src/QmitkC3jsWidget.cpp @@ -1,285 +1,285 @@ /*=================================================================== The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #include #include #include #include #include #include #include "mitkImageTimeSelector.h" class QmitkC3jsWidget::Impl final { public: explicit Impl(QWidget* parent); ~Impl(); Impl(const Impl&) = delete; Impl& operator=(const Impl&) = delete; QWebChannel* GetWebChannel(); void ClearJavaScriptChart(); void initializeJavaScriptChart(); void callJavaScriptFuntion(QString command); QmitkC3Data* GetC3Data() { return &m_c3Data; } mitk::Image::Pointer GetImage() const { return m_Image; } void SetImage(const mitk::Image::Pointer image) { m_Image = image; } mitk::PlanarFigure::ConstPointer GetPlanarFigure() const { return m_PlanarFigure; } void SetPlanarFigure(const mitk::PlanarFigure::ConstPointer planarFigure) { m_PlanarFigure = planarFigure; } private: QWebChannel* m_WebChannel; QWebEngineView* m_WebEngineView; QWidget* m_Parent; QmitkC3Data m_c3Data; /** * \brief Reference image. * * Holds the image to calculate an intensity profile. */ mitk::Image::Pointer m_Image; /** * \brief Pathelement. * * Holds a not closed planar figure to calculate an intensity profile. */ mitk::PlanarFigure::ConstPointer m_PlanarFigure; }; QmitkC3jsWidget::Impl::Impl(QWidget* parent) : m_WebChannel(new QWebChannel(parent)), m_WebEngineView(new QWebEngineView(parent)), m_Parent(parent) { //disable context menu for QWebEngineView m_WebEngineView->setContextMenuPolicy(Qt::NoContextMenu); //Set the webengineview to an initial empty page. The actual chart will be loaded once the data is calculated. m_WebEngineView->setUrl(QUrl(QStringLiteral("qrc:///C3js/empty.html"))); m_WebEngineView->page()->setWebChannel(m_WebChannel); connect( m_WebEngineView, SIGNAL( loadFinished(bool) ), parent, SLOT( OnLoadFinished(bool) ) ); auto layout = new QGridLayout(parent); layout->setMargin(0); layout->addWidget(m_WebEngineView); parent->setLayout(layout); } QmitkC3jsWidget::Impl::~Impl() { } QWebChannel* QmitkC3jsWidget::Impl::GetWebChannel() { return m_WebChannel; } QmitkC3jsWidget::QmitkC3jsWidget(QWidget* parent) : QWidget(parent), m_Impl(new Impl(this)) { m_Statistics = mitk::ImageStatisticsCalculator::StatisticsContainer::New(); } void QmitkC3jsWidget::Impl::callJavaScriptFuntion(QString command) { m_WebEngineView->page()->runJavaScript(command); } void QmitkC3jsWidget::Impl::ClearJavaScriptChart() { - m_WebEngineView->setUrl(QUrl(QStringLiteral("qrc:///C3js/empty.html"))); + m_WebEngineView->setUrl(QUrl(QStringLiteral("qrc:///C3js/empty.html"))); } void QmitkC3jsWidget::Impl::initializeJavaScriptChart() { m_WebChannel->registerObject(QStringLiteral("initValues"), &m_c3Data); - m_WebEngineView->load(QUrl(QStringLiteral("qrc:///C3js/QmitkC3jsWidget.html"))); + m_WebEngineView->setUrl(QUrl(QStringLiteral("qrc:///C3js/QmitkC3jsWidget.html"))); } QmitkC3jsWidget::QmitkC3jsWidget(const QString& id, QObject* object, QWidget* parent) : QWidget(parent), m_Impl(new Impl(this)) { if (!id.isEmpty() && object != nullptr) m_Impl->GetWebChannel()->registerObject(id, object); m_Statistics = mitk::ImageStatisticsCalculator::StatisticsContainer::New(); } QmitkC3jsWidget::~QmitkC3jsWidget() { delete m_Impl; } void QmitkC3jsWidget::OnLoadFinished(bool) { emit PageSuccessfullyLoaded(); } void QmitkC3jsWidget::TransformView(QString transformTo) { QString command = QString("transformView('" + transformTo + "')"); m_Impl->callJavaScriptFuntion(command); } void QmitkC3jsWidget::SendCommand(QString command) { m_Impl->callJavaScriptFuntion(command); } void QmitkC3jsWidget::SetAppearance(bool useLineChart, bool showSubChart) { this->m_Impl->GetC3Data()->SetAppearance(useLineChart, showSubChart); } // method to expose data to JavaScript by using properties void QmitkC3jsWidget::ComputeHistogram(HistogramType* histogram, bool useLineChart, bool showSubChart) { this->m_Impl->GetC3Data()->SetHistogram(histogram); SetAppearance(useLineChart, showSubChart); HistogramConstIteratorType startIt = this->m_Impl->GetC3Data()->GetHistogram()->End(); HistogramConstIteratorType endIt = this->m_Impl->GetC3Data()->GetHistogram()->End(); HistogramConstIteratorType it = this->m_Impl->GetC3Data()->GetHistogram()->Begin(); //Clear old data befor loading new data. this->m_Impl->GetC3Data()->ClearData(); unsigned int i = 0; bool firstValue = false; // removes frequencies of 0, which are outside the first and last bin for (; it != this->m_Impl->GetC3Data()->GetHistogram()->End(); ++it) { if (it.GetFrequency() > 0.0) { endIt = it; if (!firstValue) { firstValue = true; startIt = it; } } } ++endIt; // generating Lists of measurement and frequencies for (it = startIt; it != endIt; ++it, ++i) { QVariant frequency = QVariant::fromValue(it.GetFrequency()); QVariant measurement = it.GetMeasurementVector()[0]; this->m_Impl->GetC3Data()->GetYDataPointer()->insert(i, frequency); this->m_Impl->GetC3Data()->GetXDataPointer()->insert(i, measurement); } m_Impl->initializeJavaScriptChart(); } void QmitkC3jsWidget::ComputeIntensityProfile(unsigned int timeStep, bool computeStatistics) { this->ClearHistogram(); //m_Impl->GetC3Data()->ClearData(); //m_ParametricPath->Initialize(); if (m_Impl->GetPlanarFigure().IsNull()) { mitkThrow() << "PlanarFigure not set!"; } if (m_Impl->GetImage().IsNull()) { mitkThrow() << "Image not set!"; } mitk::Image::Pointer image; if (m_Impl->GetImage()->GetDimension() == 4) { mitk::ImageTimeSelector::Pointer timeSelector = mitk::ImageTimeSelector::New(); timeSelector->SetInput(m_Impl->GetImage()); timeSelector->SetTimeNr(timeStep); timeSelector->Update(); image = timeSelector->GetOutput(); } else { image = m_Impl->GetImage(); } mitk::IntensityProfile::Pointer intensityProfile = mitk::ComputeIntensityProfile( image, const_cast(m_Impl->GetPlanarFigure().GetPointer())); //m_Frequency.clear(); //m_Measurement.clear(); int i = -1; mitk::IntensityProfile::ConstIterator end = intensityProfile->End(); for (mitk::IntensityProfile::ConstIterator it = intensityProfile->Begin(); it != end; ++it) { m_Impl->GetC3Data()->GetYDataPointer()->push_back(it.GetMeasurementVector()[0]); //m_Impl->GetC3Data()->GetFrequencyPointer()->push_back(50000); m_Impl->GetC3Data()->GetXDataPointer()->push_back(++i); } if (computeStatistics) { mitk::ComputeIntensityProfileStatistics(intensityProfile, m_Statistics); } m_Impl->initializeJavaScriptChart(); } void QmitkC3jsWidget::ClearHistogram() { m_Impl->GetC3Data()->ClearData(); m_Impl->ClearJavaScriptChart(); } mitk::Image::Pointer QmitkC3jsWidget::GetImage() const { return m_Impl->GetImage(); } void QmitkC3jsWidget::SetImage(const mitk::Image::Pointer image) { m_Impl->SetImage(image); } mitk::PlanarFigure::ConstPointer QmitkC3jsWidget::GetPlanarFigure() const { return m_Impl->GetPlanarFigure(); } void QmitkC3jsWidget::SetPlanarFigure(const mitk::PlanarFigure::ConstPointer planarFigure) { m_Impl->SetPlanarFigure(planarFigure); } diff --git a/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesGreen.xpm b/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesGreen.xpm index 6756277d0e..a6bcaea473 100644 --- a/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesGreen.xpm +++ b/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesGreen.xpm @@ -1,2052 +1,120 @@ /* XPM */ static const char * QmitkMemoryUsageIndicatorImagesGreen_xpm[] = { -"100 100 1949 2", -" c None", -". c #AEAEAE", -"+ c #ADADAD", -"@ c #AFAFAF", -"# c #B1B1B1", -"$ c #B0B0B0", -"% c #B3B3B3", -"& c #B2B2B2", -"* c #B4B4B4", -"= c #ABABAB", -"- c #AAAAAA", -"; c #A9A9A9", -"> c #A8A8A8", -", c #A7A7A7", -"' c #ACACAC", -") c #A6A6A6", -"! c #A2A2A2", -"~ c #A0A0A0", -"{ c #9E9E9E", -"] c #9C9C9C", -"^ c #9B9B9B", -"/ c #9A9A9A", -"( c #A3A3A3", -"_ c #B5B5B5", -": c #9F9F9F", -"< c #999999", -"[ c #969696", -"} c #949394", -"| c #929193", -"1 c #929092", -"2 c #918F91", -"3 c #908E91", -"4 c #908E90", -"5 c #908D90", -"6 c #939293", -"7 c #959495", -"8 c #989898", -"9 c #A4A4A4", -"0 c #929292", -"a c #8B8B8B", -"b c #858585", -"c c #838383", -"d c #828282", -"e c #818181", -"f c #868686", -"g c #8C8C8C", -"h c #939393", -"i c #B6B6B6", -"j c #929192", -"k c #8E8D8F", -"l c #8B898C", -"m c #898589", -"n c #868287", -"o c #858186", -"p c #838083", -"q c #7E7E7D", -"r c #777C76", -"s c #727B71", -"t c #6E7A6C", -"u c #6B7A69", -"v c #697967", -"w c #687965", -"x c #677864", -"y c #6C7A6A", -"z c #6F7B6D", -"A c #727C71", -"B c #787D78", -"C c #7E7F7E", -"D c #827F83", -"E c #858086", -"F c #878388", -"G c #89868A", -"H c #8F8F8F", -"I c #818281", -"J c #7E817D", -"K c #767F74", -"L c #6D7D6A", -"M c #657B61", -"N c #5E7A59", -"O c #5A7954", -"P c #577951", -"Q c #55784E", -"R c #54784E", -"S c #5B7A56", -"T c #5F7B5B", -"U c #657C61", -"V c #6E7E6B", -"W c #778076", -"X c #838283", -"Y c #878787", -"Z c #909090", -"` c #9D9D9D", -" . c #B7B7B7", -".. c #949494", -"+. c #8E8D8E", -"@. c #89878A", -"#. c #858286", -"$. c #7E7E7E", -"%. c #717B6F", -"&. c #63785F", -"*. c #567451", -"=. c #4C7246", -"-. c #477240", -";. c #46753E", -">. c #4C7A44", -",. c #53804B", -"'. c #54834C", -"). c #54854C", -"!. c #57884E", -"~. c #598A51", -"{. c #5B8C53", -"]. c #5C8C54", -"^. c #5A8A52", -"/. c #57884F", -"(. c #55864D", -"_. c #54834B", -":. c #507F48", -"<. c #47753F", -"[. c #45703E", -"}. c #577553", -"|. c #657862", -"1. c #7D7E7D", -"2. c #888489", -"3. c #8A888A", -"4. c #8F8E8F", -"5. c #A1A1A1", -"6. c #7F817E", -"7. c #637B5F", -"8. c #4D7746", -"9. c #397230", -"0. c #2A6F1F", -"a. c #237117", -"b. c #267719", -"c. c #39832C", -"d. c #4E9043", -"e. c #58964E", -"f. c #5F9B55", -"g. c #68A05E", -"h. c #6FA566", -"i. c #75A96C", -"j. c #77AA6E", -"k. c #70A668", -"l. c #67A05E", -"m. c #609C56", -"n. c #57964C", -"o. c #488D3C", -"p. c #37822B", -"q. c #27761A", -"r. c #1F6E12", -"s. c #296F1E", -"t. c #3B7332", -"u. c #4F7749", -"v. c #647C60", -"w. c #768074", -"x. c #828382", -"y. c #848385", -"z. c #848484", -"A. c #8A8A8A", -"B. c #B8B8B8", -"C. c #818081", -"D. c #7A7E7A", -"E. c #557551", -"F. c #4C7546", -"G. c #4B7A43", -"H. c #56864E", -"I. c #63935B", -"J. c #6A9B61", -"K. c #6FA267", -"L. c #76A96D", -"M. c #7EB176", -"N. c #8AB982", -"O. c #96BF8E", -"P. c #9CC395", -"Q. c #A0C69A", -"R. c #A5C99F", -"S. c #A9CBA4", -"T. c #ADCDA7", -"U. c #AECEA8", -"V. c #AACCA5", -"W. c #A5C89F", -"X. c #A1C69A", -"Y. c #9BC394", -"Z. c #92BD8B", -"`. c #88B780", -" + c #7EB075", -".+ c #74A86B", -"++ c #6EA165", -"@+ c #689A5F", -"#+ c #5E8F56", -"$+ c #54844C", -"%+ c #4A7943", -"&+ c #487241", -"*+ c #577552", -"=+ c #6B7B68", -"-+ c #7B7F7A", -";+ c #878387", -">+ c #8A868B", -",+ c #8C8B8C", -"'+ c #919191", -")+ c #7D817C", -"!+ c #707E6D", -"~+ c #53774D", -"{+ c #38732F", -"]+ c #2F7624", -"^+ c #5D9B53", -"/+ c #8BB783", -"(+ c #AACAA4", -"_+ c #C3D9BF", -":+ c #D6E5D3", -"<+ c #E1ECDF", -"[+ c #E3EDE1", -"}+ c #E2ECE0", -"|+ c #DFEBDD", -"1+ c #D7E6D4", -"2+ c #C2D9BE", -"3+ c #A5C79F", -"4+ c #7FB077", -"5+ c #59974F", -"6+ c #36802A", -"7+ c #237017", -"8+ c #37722E", -"9+ c #587B52", -"0+ c #71816E", -"a+ c #838583", -"b+ c #868587", -"c+ c #888888", -"d+ c #979797", -"e+ c #B9B9B9", -"f+ c #898889", -"g+ c #888488", -"h+ c #858185", -"i+ c #747D72", -"j+ c #61795C", -"k+ c #53784C", -"l+ c #4D7C44", -"m+ c #5A8C51", -"n+ c #6C9E64", -"o+ c #79AB71", -"p+ c #89B881", -"q+ c #A1C79B", -"r+ c #BAD6B5", -"s+ c #CDE1CA", -"t+ c #DCEADA", -"u+ c #E7F0E5", -"v+ c #EDF4EC", -"w+ c #EBF2E9", -"x+ c #EAF2E9", -"y+ c #EAF2E8", -"z+ c #E9F1E8", -"A+ c #E9F1E7", -"B+ c #E8F1E7", -"C+ c #E9F2E8", -"D+ c #EBF3EA", -"E+ c #ECF3EB", -"F+ c #EBF3EB", -"G+ c #E7F1E6", -"H+ c #DBEAD9", -"I+ c #CADFC6", -"J+ c #B4D2AF", -"K+ c #9CC496", -"L+ c #86B57E", -"M+ c #72A76A", -"N+ c #64995C", -"O+ c #5B8C52", -"P+ c #4E7648", -"Q+ c #637A60", -"R+ c #7C827B", -"S+ c #848384", -"T+ c #888688", -"U+ c #BABABA", -"V+ c #898989", -"W+ c #868486", -"X+ c #818380", -"Y+ c #647C5F", -"Z+ c #47783E", -"`+ c #397B2D", -" @ c #408833", -".@ c #74AA6A", -"+@ c #B0CEAA", -"@@ c #D0E2CC", -"#@ c #E2EDE0", -"$@ c #E5EFE3", -"%@ c #E1EDE0", -"&@ c #E2EEE1", -"*@ c #DEEBDC", -"=@ c #CFE1CC", -"-@ c #A3C69D", -";@ c #71A768", -">@ c #448838", -",@ c #2B731F", -"'@ c #47763F", -")@ c #6E816B", -"!@ c #7F857E", -"~@ c #878687", -"{@ c #BBBBBB", -"]@ c #908F90", -"^@ c #868586", -"/@ c #858385", -"(@ c #808280", -"_@ c #687C64", -":@ c #51794A", -"<@ c #528349", -"[@ c #5F9456", -"}@ c #72A669", -"|@ c #8DBB84", -"1@ c #B0D0AA", -"2@ c #D1E3CD", -"3@ c #E3EEE1", -"4@ c #E8F0E6", -"5@ c #E6EFE4", -"6@ c #E4EEE2", -"7@ c #E2EDE1", -"8@ c #E4EEE3", -"9@ c #E6F0E4", -"0@ c #EAF3E9", -"a@ c #CBE0C7", -"b@ c #ABCDA6", -"c@ c #8AB782", -"d@ c #6BA262", -"e@ c #558D4B", -"f@ c #4C7F42", -"g@ c #5A7E54", -"h@ c #70826C", -"i@ c #7F847E", -"j@ c #8A878B", -"k@ c #8F8C8F", -"l@ c #828481", -"m@ c #758273", -"n@ c #4C7944", -"o@ c #317924", -"p@ c #539448", -"q@ c #89B781", -"r@ c #B9D5B5", -"s@ c #DFECDD", -"t@ c #D6E6D3", -"u@ c #BBD5B6", -"v@ c #79AE6F", -"w@ c #3F8931", -"x@ c #407F35", -"y@ c #577F50", -"z@ c #72846F", -"A@ c #BCBCBC", -"B@ c #ACADAC", -"C@ c #858486", -"D@ c #848485", -"E@ c #80857F", -"F@ c #627D5D", -"G@ c #497A40", -"H@ c #4F8944", -"I@ c #66A05B", -"J@ c #8DBB86", -"K@ c #B8D5B3", -"L@ c #D5E7D3", -"M@ c #E8F2E7", -"N@ c #E1EDDF", -"O@ c #E0ECDE", -"P@ c #DFECDE", -"Q@ c #D5E6D2", -"R@ c #B0D1AA", -"S@ c #86B77C", -"T@ c #5E9A54", -"U@ c #46833B", -"V@ c #527F4A", -"W@ c #6A8366", -"X@ c #7D857B", -"Y@ c #8B888C", -"Z@ c #908C90", -"`@ c #A1A2A1", -" # c #878688", -".# c #7F857F", -"+# c #71836E", -"@# c #467B3D", -"## c #2E7D1F", -"$# c #65A259", -"%# c #AACCA4", -"&# c #CBE0C8", -"*# c #DDEBDB", -"=# c #E0EDDE", -"-# c #DDEADB", -";# c #D2E4CF", -"># c #8EBC86", -",# c #4B923F", -"'# c #3E8232", -")# c #4A7E41", -"!# c #698265", -"~# c #8C898D", -"{# c #BDBDBD", -"]# c #BEBEBE", -"^# c #838782", -"/# c #637F5E", -"(# c #487D3E", -"_# c #4D8C41", -":# c #66A35A", -"<# c #97C28F", -"[# c #C8DEC4", -"}# c #DAE9D7", -"|# c #DEEBDB", -"1# c #D9E9D7", -"2# c #D9E8D6", -"3# c #D8E8D6", -"4# c #D8E7D6", -"5# c #D9E8D7", -"6# c #DAE9D8", -"7# c #B9D6B4", -"8# c #8BBB83", -"9# c #5D9C52", -"0# c #3F8432", -"a# c #508147", -"b# c #6E856A", -"c# c #80887F", -"d# c #8D8B8E", -"e# c #928F93", -"f# c #8D8C8D", -"g# c #848883", -"h# c #778774", -"i# c #2B7E1C", -"j# c #64A358", -"k# c #ABCDA5", -"l# c #D8E8D5", -"m# c #D4E6D2", -"n# c #D4E6D1", -"o# c #D4E5D1", -"p# c #D4E5D0", -"q# c #D3E5D0", -"r# c #CDE1C9", -"s# c #8ABB81", -"t# c #49933B", -"u# c #408533", -"v# c #4F8246", -"w# c #6E866A", -"x# c #8D8D8D", -"y# c #8F8C90", -"z# c #8E8E8E", -"A# c #8A8989", -"B# c #6E846A", -"C# c #528249", -"D# c #438737", -"E# c #4B953D", -"F# c #86B97D", -"G# c #C4DDC0", -"H# c #D1E4CE", -"I# c #D1E3CE", -"J# c #D0E3CE", -"K# c #D0E4CE", -"L# c #D0E4CD", -"M# c #D0E3CD", -"N# c #CFE3CC", -"O# c #CFE3CB", -"P# c #D0E3CC", -"Q# c #D7E8D4", -"R# c #D5E6D1", -"S# c #AFD1A8", -"T# c #7FB575", -"U# c #509643", -"V# c #358028", -"W# c #53824A", -"X# c #7C8B79", -"Y# c #888C88", -"Z# c #969597", -"`# c #BFBFBF", -" $ c #C0C0C0", -".$ c #8A898A", -"+$ c #838981", -"@$ c #55814C", -"#$ c #318022", -"$$ c #4C953F", -"%$ c #7CB272", -"&$ c #A9CDA3", -"*$ c #CDE2CA", -"=$ c #D2E5D0", -"-$ c #CCE1C9", -";$ c #CCE1C8", -">$ c #CBE1C8", -",$ c #CBE1C7", -"'$ c #CCE2C8", -")$ c #CAE0C5", -"!$ c #B7D5B1", -"~$ c #6DAC62", -"{$ c #2D841D", -"]$ c #3D8030", -"^$ c #63885C", -"/$ c #7C8C79", -"($ c #918F92", -"_$ c #959595", -":$ c #908D91", -"<$ c #8C8A8D", -"[$ c #7C887A", -"}$ c #678760", -"|$ c #428236", -"1$ c #318621", -"2$ c #66A759", -"3$ c #A6CB9F", -"4$ c #C0DBBC", -"5$ c #CDE2C9", -"6$ c #C9E0C5", -"7$ c #CAE0C6", -"8$ c #CADFC5", -"9$ c #C9DFC5", -"0$ c #C8DFC4", -"a$ c #C8DFC5", -"b$ c #C8DFC3", -"c$ c #C7DFC3", -"d$ c #CEE2C9", -"e$ c #C5DDC0", -"f$ c #8CBD82", -"g$ c #519B43", -"h$ c #3F8B31", -"i$ c #448438", -"j$ c #66885F", -"k$ c #8A8E89", -"l$ c #9F9E9F", -"m$ c #8E8A8E", -"n$ c #6A8865", -"o$ c #48863C", -"p$ c #398729", -"q$ c #429232", -"r$ c #83B878", -"s$ c #C6DEC1", -"t$ c #C6DEC0", -"u$ c #C4DDBF", -"v$ c #C8E0C4", -"w$ c #A7CCA0", -"x$ c #80B576", -"y$ c #4C983D", -"z$ c #2B821A", -"A$ c #4E8443", -"B$ c #7D8D7A", -"C$ c #8A8E8A", -"D$ c #989799", -"E$ c #C1C1C1", -"F$ c #C2C2C2", -"G$ c #999899", -"H$ c #898A89", -"I$ c #818C7F", -"J$ c #598850", -"K$ c #378627", -"L$ c #409130", -"M$ c #5FA351", -"N$ c #96C38D", -"O$ c #C7DFC2", -"P$ c #C2DCBD", -"Q$ c #C3DDBD", -"R$ c #C2DCBC", -"S$ c #C2DBBC", -"T$ c #C1DBBC", -"U$ c #C1DBBB", -"V$ c #C0DBBB", -"W$ c #C3DDBE", -"X$ c #B8D6B2", -"Y$ c #9FC797", -"Z$ c #5EA450", -"`$ c #288416", -" % c #3A832B", -".% c #618B58", -"+% c #7C8E79", -"@% c #979397", -"#% c #C3C3C3", -"$% c #939294", -"%% c #828C80", -"&% c #708C6A", -"*% c #48873B", -"=% c #2E881C", -"-% c #4E9C3F", -";% c #7FB674", -">% c #A4CB9C", -",% c #BFDBBA", -"'% c #BEDABA", -")% c #BEDAB9", -"!% c #BEDAB8", -"~% c #BDDAB7", -"{% c #BDD9B7", -"]% c #BED9B8", -"^% c #B4D4AE", -"/% c #71AF65", -"(% c #328A20", -"_% c #2E851C", -":% c #448A36", -"<% c #6B8E65", -"[% c #919291", -"}% c #959196", -"|% c #928E92", -"1% c #758D70", -"2% c #578D4C", -"3% c #388828", -"4% c #2E8A1B", -"5% c #5EA650", -"6% c #98C690", -"7% c #B1D3AA", -"8% c #BCDAB6", -"9% c #BEDBB8", -"0% c #BBD9B6", -"a% c #BCD9B6", -"b% c #BBD8B6", -"c% c #BBD8B5", -"d% c #BAD8B4", -"e% c #BAD9B4", -"f% c #BBD9B5", -"g% c #B9D7B3", -"h% c #81B876", -"i% c #479736", -"j% c #338C20", -"k% c #378A26", -"l% c #5C8D52", -"m% c #859282", -"n% c #8F918F", -"o% c #A0A0A1", -"p% c #908C91", -"q% c #8E8F8D", -"r% c #688F5F", -"s% c #408E30", -"t% c #2D891A", -"u% c #328D20", -"v% c #6DAE60", -"w% c #ABD1A4", -"x% c #B9D9B3", -"y% c #B8D8B2", -"z% c #B9D8B3", -"A% c #B8D7B2", -"B% c #B7D7B1", -"C% c #B6D6B0", -"D% c #8CBF82", -"E% c #5DA44E", -"F% c #3D942C", -"G% c #318B1F", -"H% c #73916D", -"I% c #879284", -"J% c #9C9A9D", -"K% c #C4C4C4", -"L% c #9E9D9E", -"M% c #8B8D8A", -"N% c #82907F", -"O% c #5C9052", -"P% c #388F26", -"Q% c #2B8C18", -"R% c #379125", -"S% c #74B368", -"T% c #B2D5AB", -"U% c #BBDAB5", -"V% c #B5D6AE", -"W% c #B5D6AF", -"X% c #B4D5AE", -"Y% c #B5D5AE", -"Z% c #B4D5AD", -"`% c #B4D6AE", -" & c #B3D5AD", -".& c #B3D4AC", -"+& c #91C287", -"@& c #68AB5A", -"#& c #459934", -"$& c #328D1F", -"%& c #408D30", -"&& c #5D9151", -"*& c #7C9376", -"=& c #969596", -"-& c #9A969B", -";& c #C5C5C5", -">& c #9A999B", -",& c #849082", -"'& c #72916C", -")& c #529145", -"!& c #369124", -"~& c #2E8F1C", -"{& c #3D952C", -"]& c #78B56C", -"^& c #B2D4AA", -"/& c #B1D4AA", -"(& c #B0D4AA", -"_& c #B0D3A9", -":& c #93C489", -"<& c #6FB062", -"[& c #4D9E3D", -"}& c #359023", -"|& c #368E24", -"1& c #489138", -"2& c #709468", -"3& c #99949A", -"4& c #C6C6C6", -"5& c #979498", -"6& c #7C9277", -"7& c #619357", -"8& c #49933A", -"9& c #389325", -"0& c #369423", -"a& c #469B35", -"b& c #7CB870", -"c& c #B0D4A8", -"d& c #B6D7AF", -"e& c #AFD3A8", -"f& c #AFD3A7", -"g& c #AFD4A8", -"h& c #AED3A7", -"i& c #AED3A6", -"j& c #AED2A7", -"k& c #AED2A6", -"l& c #ADD2A6", -"m& c #ADD2A5", -"n& c #B0D4A9", -"o& c #96C68C", -"p& c #77B56A", -"q& c #53A244", -"r& c #379225", -"s& c #31901E", -"t& c #3E922C", -"u& c #67955D", -"v& c #90978F", -"w& c #979597", -"x& c #A7A7A8", -"y& c #C7C7C7", -"z& c #959096", -"A& c #73936D", -"B& c #529544", -"C& c #419530", -"D& c #3B9628", -"E& c #3D982A", -"F& c #4DA03C", -"G& c #7EBA71", -"H& c #ACD2A4", -"I& c #B2D5AA", -"J& c #ABD2A3", -"K& c #ABD1A3", -"L& c #AAD1A2", -"M& c #ADD3A5", -"N& c #97C78D", -"O& c #7BB86F", -"P& c #57A448", -"Q& c #399427", -"R& c #30921D", -"S& c #5F9654", -"T& c #879883", -"U& c #939792", -"V& c #A4A3A5", -"W& c #949095", -"X& c #919390", -"Y& c #6C9563", -"Z& c #479836", -"`& c #3C9829", -" * c #3E992B", -".* c #4CA03A", -"+* c #7BB96F", -"@* c #A9D1A1", -"#* c #AFD4A7", -"$* c #A9D1A0", -"%* c #A8D1A0", -"&* c #A8D1A1", -"** c #A8D0A0", -"=* c #A9D0A0", -"-* c #A8D09F", -";* c #A8D19F", -">* c #A7D09F", -",* c #A7D09E", -"'* c #AAD2A2", -")* c #93C589", -"!* c #78B76B", -"~* c #56A547", -"{* c #33941F", -"]* c #3A9627", -"^* c #579749", -"/* c #789871", -"(* c #8B9888", -"_* c #A3A1A3", -":* c #949294", -"<* c #8D948B", -"[* c #66975B", -"}* c #409A2D", -"|* c #3A9A26", -"1* c #3F9A2C", -"2* c #3E992A", -"3* c #489F36", -"4* c #78B86A", -"5* c #A6D09D", -"6* c #ACD3A3", -"7* c #A5D09D", -"8* c #A5D09C", -"9* c #A5CF9C", -"0* c #A4CF9C", -"a* c #A4CF9B", -"b* c #A7D19E", -"c* c #8EC383", -"d* c #71B464", -"e* c #54A444", -"f* c #379623", -"g* c #509840", -"h* c #69995E", -"i* c #83997E", -"j* c #A29FA2", -"k* c #C8C8C8", -"l* c #90948E", -"m* c #859781", -"n* c #629A55", -"o* c #419C2D", -"p* c #3D9C28", -"q* c #429C2E", -"r* c #3D9A29", -"s* c #459E32", -"t* c #74B766", -"u* c #A3CF9A", -"v* c #A9D2A0", -"w* c #A4CF9A", -"x* c #A3CE99", -"y* c #A2CE99", -"z* c #A2CE98", -"A* c #A1CE98", -"B* c #A2CE97", -"C* c #A5D09B", -"D* c #89C17D", -"E* c #6BB25D", -"F* c #52A441", -"G* c #409A2C", -"H* c #3B9927", -"I* c #4B9B39", -"J* c #5E9B50", -"K* c #7E9A77", -"L* c #A09CA1", -"M* c #C9C9C9", -"N* c #A2A0A2", -"O* c #8B9688", -"P* c #7C9A75", -"Q* c #5E9C50", -"R* c #449E30", -"S* c #419E2C", -"T* c #3E9B29", -"U* c #439E2F", -"V* c #70B561", -"W* c #9DCC93", -"X* c #A1CE97", -"Y* c #A0CE96", -"Z* c #A0CD96", -"`* c #9FCD95", -" = c #9FCD94", -".= c #A2CF98", -"+= c #9ECD94", -"@= c #83BF76", -"#= c #64AF54", -"$= c #4FA43D", -"%= c #429D2E", -"&= c #3F9C2A", -"*= c #479D34", -"== c #559D45", -"-= c #7A9C72", -";= c #9F9BA0", -">= c #CACACA", -",= c #879884", -"'= c #749C6B", -")= c #5B9F4C", -"!= c #46A032", -"~= c #43A12F", -"{= c #45A031", -"]= c #69B359", -"^= c #8FC684", -"/= c #9BCC91", -"(= c #9ECD93", -"_= c #9FCE94", -":= c #9DCD93", -"<= c #9ECC93", -"[= c #9DCC92", -"}= c #9CCC92", -"|= c #9CCC91", -"1= c #7BBC6E", -"2= c #58AA47", -"3= c #4AA237", -"4= c #449F30", -"5= c #429E2E", -"6= c #449F2F", -"7= c #4D9F3B", -"8= c #769E6D", -"9= c #A09BA2", -"0= c #CBCBCB", -"a= c #849A80", -"b= c #6D9E63", -"c= c #58A148", -"d= c #48A334", -"e= c #46A331", -"f= c #45A130", -"g= c #62B051", -"h= c #7FBF71", -"i= c #90C884", -"j= c #9BCD90", -"k= c #9DCE92", -"l= c #9BCC90", -"m= c #9ACC90", -"n= c #9ACC8F", -"o= c #9ACB8F", -"p= c #9ACB8E", -"q= c #99CB8E", -"r= c #9DCD92", -"s= c #97CA8C", -"t= c #73B864", -"u= c #4EA53B", -"v= c #45A131", -"w= c #46A132", -"x= c #42A12C", -"y= c #48A134", -"z= c #72A068", -"A= c #9D9F9D", -"B= c #A19DA2", -"C= c #CCCCCC", -"D= c #A09DA1", -"E= c #829C7C", -"F= c #68A05C", -"G= c #56A345", -"H= c #4AA535", -"I= c #48A533", -"J= c #48A433", -"K= c #4AA536", -"L= c #5AAD47", -"M= c #6FB85E", -"N= c #87C479", -"O= c #9ACD8F", -"P= c #9CCE91", -"Q= c #99CC8D", -"R= c #98CC8D", -"S= c #98CB8D", -"T= c #99CB8D", -"U= c #98CC8C", -"V= c #98CB8C", -"W= c #97CB8C", -"X= c #98CA8C", -"Y= c #97CA8B", -"Z= c #96CA8B", -"`= c #95CA89", -" - c #8BC57E", -".- c #6BB45A", -"+- c #4BA437", -"@- c #46A131", -"#- c #43A32E", -"$- c #70A265", -"%- c #99A097", -"&- c #9F9EA0", -"*- c #B0AFB0", -"=- c #9F9CA0", -"-- c #809E79", -";- c #64A356", -">- c #55A642", -",- c #4CA737", -"'- c #4AA735", -")- c #4BA636", -"!- c #53AA3E", -"~- c #60B14D", -"{- c #7DBF6D", -"]- c #97CC8B", -"^- c #9ACE8F", -"/- c #96CC8A", -"(- c #96CB8A", -"_- c #95CB89", -":- c #94CA88", -"<- c #95CB8A", -"[- c #8BC67E", -"}- c #7CBE6D", -"|- c #62B150", -"1- c #4BA536", -"2- c #48A333", -"3- c #46A530", -"4- c #6FA462", -"5- c #94A291", -"6- c #9DA09D", -"7- c #CECECE", -"8- c #80A079", -"9- c #62A654", -"0- c #55A842", -"a- c #4EA93A", -"b- c #4DA938", -"c- c #4EA939", -"d- c #56AD42", -"e- c #71BA61", -"f- c #8DC77F", -"g- c #94CB88", -"h- c #95CC88", -"i- c #95CC89", -"j- c #94CC88", -"k- c #94CC87", -"l- c #94CB87", -"m- c #93CA87", -"n- c #94CA87", -"o- c #93CA86", -"p- c #93CB86", -"q- c #93CB87", -"r- c #92C986", -"s- c #93C986", -"t- c #92C985", -"u- c #92CA86", -"v- c #80C171", -"w- c #69B658", -"x- c #58AD45", -"y- c #4DA737", -"z- c #4DA838", -"A- c #49A833", -"B- c #6EA661", -"C- c #92A48E", -"D- c #9CA19B", -"E- c #CFCFCF", -"F- c #80A279", -"G- c #62A853", -"H- c #55AA43", -"I- c #50AB3C", -"J- c #4FAB3B", -"K- c #4DAA39", -"L- c #66B554", -"M- c #7EC16F", -"N- c #8BC77D", -"O- c #92CB85", -"P- c #93CC86", -"Q- c #92CA84", -"R- c #91CA84", -"S- c #90CA84", -"T- c #90C983", -"U- c #92CA85", -"V- c #8DC880", -"W- c #73BC63", -"X- c #59AF45", -"Y- c #51AB3C", -"Z- c #4FAA3A", -"`- c #4EAA39", -" ; c #4BAA35", -".; c #6EA861", -"+; c #90A58B", -"@; c #9CA29A", -"#; c #B1B0B1", -"$; c #CDCDCD", -"%; c #80A378", -"&; c #61AA51", -"*; c #56AC42", -"=; c #52AD3E", -"-; c #51AD3C", -";; c #50AC3B", -">; c #51AC3C", -",; c #5BB147", -"'; c #6AB858", -"); c #7EC26F", -"!; c #90CA82", -"~; c #92CC85", -"{; c #90CB83", -"]; c #90CA83", -"^; c #8FCA82", -"/; c #8FCA81", -"(; c #8EC981", -"_; c #8EC980", -":; c #89C77B", -"<; c #7DC16D", -"[; c #67B755", -"}; c #54AD3F", -"|; c #50AB3A", -"1; c #4DAC37", -"2; c #6EA960", -"3; c #8EA688", -"4; c #9BA399", -"5; c #B0AFB1", -"6; c #D0D0D0", -"7; c #A09BA1", -"8; c #80A578", -"9; c #61AC50", -"0; c #57AE43", -"a; c #54AF3F", -"b; c #53AF3E", -"c; c #54AF3E", -"d; c #59B144", -"e; c #71BC5F", -"f; c #89C87A", -"g; c #8ECA80", -"h; c #8DCA7F", -"i; c #8CCA7E", -"j; c #8CC97E", -"k; c #7DC26D", -"l; c #6BB958", -"m; c #5DB249", -"n; c #53AE3E", -"o; c #52AD3C", -"p; c #4FAE39", -"q; c #6FAB61", -"r; c #8DA787", -"s; c #9BA499", -"t; c #82A67A", -"u; c #64AE53", -"v; c #5AB146", -"w; c #56B242", -"x; c #56B240", -"y; c #57B241", -"z; c #56B241", -"A; c #55B03F", -"B; c #56B141", -"C; c #64B850", -"D; c #75C063", -"E; c #82C672", -"F; c #8BCA7D", -"G; c #8DCB7F", -"H; c #8CCA7D", -"I; c #8CC97D", -"J; c #8BC97D", -"K; c #8BC97C", -"L; c #8BCA7C", -"M; c #8ACA7C", -"N; c #8AC97C", -"O; c #8AC97B", -"P; c #87C778", -"Q; c #7EC36E", -"R; c #6EBC5C", -"S; c #5FB44A", -"T; c #57B142", -"U; c #54B03F", -"V; c #55B040", -"W; c #51B03B", -"X; c #71AC63", -"Y; c #8FA88A", -"Z; c #9CA59B", -"`; c #A5A5A5", -" > c #B2B1B3", -".> c #D1D1D1", -"+> c #A39FA4", -"@> c #85A77D", -"#> c #68B058", -"$> c #5DB34A", -"%> c #59B444", -"&> c #58B443", -"*> c #59B443", -"=> c #58B442", -"-> c #5BB545", -";> c #61B84C", -">> c #73C061", -",> c #85C875", -"'> c #8ACA7B", -")> c #8ACA7A", -"!> c #89C97A", -"~> c #88C97A", -"{> c #88C979", -"]> c #88C879", -"^> c #7CC36C", -"/> c #6EBD5C", -"(> c #61B74D", -"_> c #57B242", -":> c #56B140", -"<> c #53B23D", -"[> c #74AE66", -"}> c #93AA8E", -"|> c #9FA69E", -"1> c #B4B3B5", -"2> c #A5A1A6", -"3> c #87A97F", -"4> c #6CB15B", -"5> c #60B54C", -"6> c #5BB646", -"7> c #5AB644", -"8> c #5BB645", -"9> c #5CB746", -"0> c #67BB52", -"a> c #73C160", -"b> c #7EC66C", -"c> c #86C976", -"d> c #89CA79", -"e> c #89CA7A", -"f> c #88CA79", -"g> c #88CA78", -"h> c #87C978", -"i> c #88C978", -"j> c #87C977", -"k> c #82C772", -"l> c #7AC369", -"m> c #6FBE5C", -"n> c #63B94F", -"o> c #5CB647", -"p> c #5AB444", -"q> c #55B43F", -"r> c #76B069", -"s> c #96AB91", -"t> c #A2A8A0", -"u> c #B6B4B6", -"v> c #D2D2D2", -"w> c #A7A3A8", -"x> c #8AAA83", -"y> c #70B260", -"z> c #63B64F", -"A> c #5DB847", -"B> c #5CB845", -"C> c #5EB848", -"D> c #62BA4D", -"E> c #70C05D", -"F> c #7FC76D", -"G> c #85C974", -"H> c #87CA77", -"I> c #86CA76", -"J> c #86C975", -"K> c #85C975", -"L> c #83C872", -"M> c #78C366", -"N> c #6CBE58", -"O> c #63BA4D", -"P> c #5BB745", -"Q> c #5CB646", -"R> c #57B741", -"S> c #7AB16D", -"T> c #9AAC96", -"U> c #A4A9A3", -"V> c #B7B6B7", -"W> c #D3D3D3", -"X> c #AAA6AB", -"Y> c #8EAB88", -"Z> c #77B368", -"`> c #68B755", -" , c #60BA49", -"., c #5EBB47", -"+, c #5FBA49", -"@, c #5EBA48", -"#, c #5EB948", -"$, c #67BD51", -"%, c #70C15B", -"&, c #76C464", -"*, c #7CC76B", -"=, c #81C971", -"-, c #85CB75", -";, c #86CB76", -">, c #86CA75", -",, c #85CA75", -"', c #85CA74", -"), c #84CA73", -"!, c #84CA74", -"~, c #84C972", -"{, c #85CA73", -"], c #83C972", -"^, c #80C76E", -"/, c #7AC568", -"(, c #73C260", -"_, c #6BBF57", -":, c #64BC4F", -"<, c #5FB949", -"[, c #5DB846", -"}, c #5DB848", -"|, c #59B942", -"1, c #5DB947", -"2, c #7EB272", -"3, c #A1AC9E", -"4, c #A8A9A8", -"5, c #B9B8B9", -"6, c #ADA9AD", -"7, c #93AB8D", -"8, c #7EB371", -"9, c #6EB95B", -"0, c #62BD4B", -"a, c #60BE49", -"b, c #62BC4B", -"c, c #61BC4B", -"d, c #61BC4A", -"e, c #62BC4C", -"f, c #68BF53", -"g, c #70C35D", -"h, c #79C767", -"i, c #81CA70", -"j, c #83CA72", -"k, c #83CA71", -"l, c #82CA70", -"m, c #7EC86C", -"n, c #78C565", -"o, c #6EC15A", -"p, c #64BD4F", -"q, c #60BB4A", -"r, c #5CBC44", -"s, c #84B478", -"t, c #A8ACA6", -"u, c #ACA9AC", -"v, c #AEABAF", -"w, c #97AB92", -"x, c #85B379", -"y, c #73BA60", -"z, c #64BF4D", -"A, c #62C04A", -"B, c #64BE4D", -"C, c #63BE4D", -"D, c #63BF4D", -"E, c #61BD4B", -"F, c #64BF4F", -"G, c #69C154", -"H, c #6EC35A", -"I, c #73C560", -"J, c #77C664", -"K, c #7AC868", -"L, c #7EC96C", -"M, c #81CA6F", -"N, c #83CB71", -"O, c #83CB72", -"P, c #82CB70", -"Q, c #82CB6F", -"R, c #81CB6F", -"S, c #7FCA6D", -"T, c #7CC969", -"U, c #79C766", -"V, c #76C662", -"W, c #72C45D", -"X, c #6DC258", -"Y, c #67C052", -"Z, c #62BE4C", -"`, c #63BE4C", -" ' c #62BD4C", -".' c #66BC51", -"+' c #89B57E", -"@' c #ACADAB", -"#' c #AEA9AF", -"$' c #D4D4D4", -"%' c #B0AEB1", -"&' c #9BAA97", -"*' c #8DB283", -"=' c #78BA67", -"-' c #66C14F", -";' c #64C24C", -">' c #66C04F", -",' c #65C04F", -"'' c #67C151", -")' c #6BC356", -"!' c #71C55D", -"~' c #77C864", -"{' c #7DCA6A", -"]' c #80CB6D", -"^' c #80CB6E", -"/' c #7FCB6C", -"(' c #7BC967", -"_' c #75C761", -":' c #6FC45A", -"<' c #6AC254", -"[' c #67C150", -"}' c #65C04E", -"|' c #64C04E", -"1' c #64BF4E", -"2' c #65BF4F", -"3' c #6EBD5B", -"4' c #8FB585", -"5' c #B0ABB1", -"6' c #B3B2B4", -"7' c #A1AA9F", -"8' c #97B090", -"9' c #7EBA6F", -"0' c #67C350", -"a' c #65C44D", -"b' c #68C351", -"c' c #67C251", -"d' c #67C250", -"e' c #66C24F", -"f' c #69C353", -"g' c #6CC456", -"h' c #6FC65A", -"i' c #72C75D", -"j' c #74C760", -"k' c #76C862", -"l' c #77C863", -"m' c #78C964", -"n' c #79C965", -"o' c #7ACA67", -"p' c #7BCA67", -"q' c #7BCA68", -"r' c #7CCA69", -"s' c #7CCB69", -"t' c #7DCB6A", -"u' c #7CCB6A", -"v' c #7CCA68", -"w' c #7ACA66", -"x' c #78C963", -"y' c #75C861", -"z' c #74C75F", -"A' c #71C65C", -"B' c #6EC558", -"C' c #6BC454", -"D' c #68C251", -"E' c #66C14E", -"F' c #66C250", -"G' c #66C150", -"H' c #65C24F", -"I' c #6CC057", -"J' c #78BD68", -"K' c #95B58D", -"L' c #B2AEB3", -"M' c #C2C3C2", -"N' c #D5D5D5", -"O' c #A7A9A6", -"P' c #A0AE9D", -"Q' c #84BA77", -"R' c #6AC553", -"S' c #67C64E", -"T' c #69C452", -"U' c #6AC453", -"V' c #6BC555", -"W' c #6DC657", -"X' c #70C75A", -"Y' c #72C85D", -"Z' c #74C85F", -"`' c #75C860", -" ) c #76C961", -".) c #77CA62", -"+) c #78CA63", -"@) c #78CA64", -"#) c #77C962", -"$) c #75C960", -"%) c #74C85E", -"&) c #72C75C", -"*) c #70C65A", -"=) c #67C450", -"-) c #74C160", -";) c #84BC76", -">) c #9BB595", -",) c #B4B1B5", -"') c #D6D6D6", -")) c #ABA8AB", -"!) c #A8ADA7", -"~) c #8CBA80", -"{) c #6AC853", -"]) c #6CC855", -"^) c #6CC755", -"/) c #6BC754", -"() c #6BC653", -"_) c #6AC653", -":) c #6BC654", -"<) c #6CC756", -"[) c #6EC857", -"}) c #6FC859", -"|) c #70C85A", -"1) c #71C85B", -"2) c #71C95B", -"3) c #72C95C", -"4) c #71C95C", -"5) c #70C95A", -"6) c #6EC858", -"7) c #6DC756", -"8) c #69C750", -"9) c #7CC16A", -"0) c #90BB86", -"a) c #A3B59E", -"b) c #B8B5B8", -"c) c #93B98A", -"d) c #78C665", -"e) c #70CA5A", -"f) c #6ECA57", -"g) c #6DCA56", -"h) c #6EC957", -"i) c #6EC956", -"j) c #6DC956", -"k) c #6DC856", -"l) c #6DC855", -"m) c #6AC951", -"n) c #84C174", -"o) c #9DB996", -"p) c #AAB4A8", -"q) c #BBBABC", -"r) c #D7D7D7", -"s) c #B1ACB2", -"t) c #AEADAE", -"u) c #9AB793", -"v) c #85C375", -"w) c #70CC59", -"x) c #6FCD57", -"y) c #71CC59", -"z) c #70CB59", -"A) c #70CB58", -"B) c #6FCB58", -"C) c #6FCB57", -"D) c #6FCA58", -"E) c #6FCA57", -"F) c #6CCB53", -"G) c #70CA58", -"H) c #8CC07F", -"I) c #A9B7A6", -"J) c #B1B3B0", -"K) c #BFBEBF", -"L) c #D8D8D8", -"M) c #B3B1B4", -"N) c #A2B49D", -"O) c #93BE87", -"P) c #81C76F", -"Q) c #73CE5B", -"R) c #71CF58", -"S) c #72CE5A", -"T) c #72CD5A", -"U) c #71CD5A", -"V) c #70CD58", -"W) c #77CA61", -"X) c #95BF8A", -"Y) c #B3B5B3", -"Z) c #B6B2B7", -"`) c #B8B7B8", -" ! c #AAB1A8", -".! c #A1B89B", -"+! c #8AC57A", -"@! c #75D05D", -"#! c #72D259", -"$! c #75D05C", -"%! c #74D05C", -"&! c #74CF5C", -"*! c #73CF5C", -"=! c #73CF5B", -"-! c #72D05A", -";! c #79CC64", -">! c #86C775", -",! c #9FBE97", -"'! c #B6B6B7", -")! c #B8B4BA", -"!! c #D9D9D9", -"~! c #BDBDBE", -"{! c #B1AEB1", -"]! c #ADB3AB", -"^! c #93C287", -"/! c #7AD163", -"(! c #75D45D", -"_! c #77D35F", -":! c #77D35E", -"~ c #B9B5BA", -",~ c #ABC0A5", -"'~ c #9ACB8D", -")~ c #8BD677", -"!~ c #80DE66", -"~~ c #7FDF65", -"{~ c #82DD68", -"]~ c #82DD69", -"^~ c #81DD68", -"/~ c #81DC68", -"(~ c #81DC67", -"_~ c #80DC67", -":~ c #7FDD66", -"<~ c #88D873", -"[~ c #9ECD92", -"}~ c #B4C2B1", -"|~ c #BABCBA", -"1~ c #C3C2C4", -"2~ c #DDDDDD", -"3~ c #DEDEDE", -"4~ c #BCBBBC", -"5~ c #B6BAB4", -"6~ c #AEC0A9", -"7~ c #99CF8A", -"8~ c #85DE6C", -"9~ c #82E068", -"0~ c #84DF6B", -"a~ c #84DF6A", -"b~ c #83DF6A", -"c~ c #83DE6A", -"d~ c #83DE69", -"e~ c #81DF67", -"f~ c #82DE69", -"g~ c #8ADA75", -"h~ c #97D387", -"i~ c #ACC8A4", -"j~ c #BFBBC0", -"k~ c #C3C2C3", -"l~ c #B7BCB5", -"m~ c #A7C89E", -"n~ c #96D584", -"o~ c #8BDE74", -"p~ c #84E36A", -"q~ c #86E26C", -"r~ c #86E16C", -"s~ c #85E26C", -"t~ c #85E16C", -"u~ c #85E06C", -"v~ c #85E06B", -"w~ c #85E06A", -"x~ c #84E06A", -"y~ c #88DE70", -"z~ c #99D488", -"A~ c #ACCAA4", -"B~ c #B8C3B5", -"C~ c #C0BEC1", -"D~ c #C3C0C3", -"E~ c #BBB9BC", -"F~ c #B4C1B0", -"G~ c #A9CA9F", -"H~ c #97D885", -"I~ c #88E46F", -"J~ c #86E66C", -"K~ c #88E46E", -"L~ c #87E36E", -"M~ c #87E26E", -"N~ c #87E26D", -"O~ c #8AE072", -"P~ c #93DA7E", -"Q~ c #A9CE9E", -"R~ c #BEC2BD", -"S~ c #C1BFC2", -"T~ c #C7C6C7", -"U~ c #DFDFDF", -"V~ c #C1C0C2", -"W~ c #BABCB9", -"X~ c #B6C3B2", -"Y~ c #A7CF9C", -"Z~ c #97DC85", -"`~ c #8EE376", -" { c #88E86E", -".{ c #88E86D", -"+{ c #8AE670", -"@{ c #89E570", -"#{ c #89E56F", -"${ c #89E46F", -"%{ c #88E56E", -"&{ c #88E56D", -"*{ c #8BE373", -"={ c #99DA86", -"-{ c #A9D09E", -";{ c #B8C7B3", -">{ c #C2C1C3", -",{ c #C4C1C5", -"'{ c #E0E0E0", -"){ c #BEBBBF", -"!{ c #B5C6B1", -"~{ c #A9D19E", -"{{ c #99DE87", -"]{ c #8CE873", -"^{ c #8AE970", -"/{ c #8CE872", -"({ c #8BE771", -"_{ c #8AE770", -":{ c #8BE671", -"<{ c #8DE575", -"[{ c #95E080", -"}{ c #AAD39E", -"|{ c #BEC6BC", -"1{ c #C3C1C4", -"2{ c #C0BEC0", -"3{ c #BCC1BB", -"4{ c #B7C8B2", -"5{ c #AAD29F", -"6{ c #9CDD8B", -"7{ c #93E67C", -"8{ c #8DEC71", -"9{ c #8CEC71", -"0{ c #8EEA73", -"a{ c #8EEA74", -"b{ c #8FEA74", -"c{ c #8DE973", -"d{ c #8CEA71", -"e{ c #8BEA71", -"f{ c #92E57A", -"g{ c #9EDD8C", -"h{ c #ACD4A1", -"i{ c #B9CBB5", -"j{ c #C5C2C6", -"k{ c #E1E1E1", -"l{ c #BAC7B6", -"m{ c #AFD0A6", -"n{ c #9FDE8D", -"o{ c #92EB78", -"p{ c #90ED74", -"q{ c #91EC76", -"r{ c #90EC76", -"s{ c #8FEB75", -"t{ c #8EEC74", -"u{ c #94E87C", -"v{ c #9DE18A", -"w{ c #B0D4A6", -"x{ c #C2C8C0", -"y{ c #C6C5C6", -"z{ c #C6C3C6", -"A{ c #C2C0C3", -"B{ c #BFC2BF", -"C{ c #BBC8B8", -"D{ c #B1D2A8", -"E{ c #A6DC96", -"F{ c #9CE586", -"G{ c #95ED7A", -"H{ c #92EF76", -"I{ c #92F076", -"J{ c #93EE78", -"K{ c #92EE78", -"L{ c #92EE77", -"M{ c #91ED77", -"N{ c #92ED77", -"O{ c #91EE76", -"P{ c #8FEF74", -"Q{ c #90EF74", -"R{ c #95EA7C", -"S{ c #9DE488", -"T{ c #A7DC98", -"U{ c #B3D4A9", -"V{ c #BECBBA", -"W{ c #C7C4C8", -"X{ c #C8C7C8", -"Y{ c #E2E2E2", -"Z{ c #C1C6C0", -"`{ c #BBCCB6", -" ] c #ACDB9E", -".] c #9DE986", -"+] c #97EE7D", -"@] c #95F07A", -"#] c #94F079", -"$] c #94F07A", -"%] c #93F078", -"&] c #95EE7B", -"*] c #A0E58B", -"=] c #ADDAA0", -"-] c #BBCFB5", -";] c #C6C7C5", -">] c #C7C5C7", -",] c #E3E3E3", -"'] c #CAC8CA", -")] c #C6C4C7", -"!] c #C5C4C6", -"~] c #C3C7C2", -"{] c #BBCFB6", -"]] c #B2D8A7", -"^] c #AAE09A", -"/] c #A2E88E", -"(] c #9CEE83", -"_] c #97F37B", -":] c #95F579", -"<] c #95F479", -"[] c #96F47A", -"}] c #96F37B", -"|] c #97F37C", -"1] c #97F27C", -"2] c #96F27C", -"3] c #96F27B", -"4] c #95F37A", -"5] c #95F379", -"6] c #94F478", -"7] c #9CED84", -"8] c #A2E68E", -"9] c #AADF9B", -"0] c #B3D7A9", -"a] c #BCCFB6", -"b] c #C3C8C1", -"c] c #C8C4C9", -"d] c #C9C5CA", -"e] c #E4E4E4", -"f] c #C8C6C8", -"g] c #C6C8C6", -"h] c #BDD1B8", -"i] c #B2DCA6", -"j] c #A6E893", -"k] c #9DF184", -"l] c #9AF47F", -"m] c #99F57E", -"n] c #98F47E", -"o] c #98F47D", -"p] c #97F57C", -"q] c #9EEE87", -"r] c #A7E694", -"s] c #B4DAA9", -"t] c #C0CEBC", -"u] c #C5C9C4", -"v] c #CBCACB", -"w] c #CAC6CB", -"x] c #C8C5CA", -"y] c #C4C9C3", -"z] c #BED0B9", -"A] c #B8D7AF", -"B] c #B2DEA5", -"C] c #ACE49C", -"D] c #A7EA93", -"E] c #A2EF8B", -"F] c #9EF484", -"G] c #9BF780", -"H] c #99FA7D", -"I] c #99FA7C", -"J] c #99F97D", -"K] c #9AF97D", -"L] c #9AF97E", -"M] c #9AF87E", -"N] c #99F87D", -"O] c #99F87C", -"P] c #99F97C", -"Q] c #98F97C", -"R] c #A3EE8C", -"S] c #A7E993", -"T] c #ACE39C", -"U] c #B2DDA5", -"V] c #B9D6B0", -"W] c #C0CFBB", -"X] c #C6C8C5", -"Y] c #C8C5C8", -"Z] c #C8C6C9", -"`] c #CBCACC", -" ^ c #C6CAC5", -".^ c #BFD2BA", -"+^ c #B7DCAC", -"@^ c #AEE59E", -"#^ c #A6ED91", -"$^ c #A1F488", -"%^ c #9EF983", -"&^ c #9DFA81", -"*^ c #9DF981", -"=^ c #9EF882", -"-^ c #A1F587", -";^ c #A8EE92", -">^ c #B0E59F", -",^ c #B8DBAE", -"'^ c #C0D1BB", -")^ c #C5CBC3", -"!^ c #C8C7C9", -"~^ c #E5E5E5", -"{^ c #E6E6E6", -"]^ c #CECDCE", -"^^ c #CBC8CC", -"/^ c #C9C6CA", -"(^ c #C5CAC4", -"_^ c #C1D0BD", -":^ c #BDD5B5", -"<^ c #B8DAAE", -"[^ c #B5DFA8", -"}^ c #B2E4A4", -"|^ c #AFE79E", -"1^ c #ACEA99", -"2^ c #AAED96", -"3^ c #A9EF93", -"4^ c #A7F18F", -"5^ c #A5F38D", -"6^ c #A4F48C", -"7^ c #A4F58B", -"8^ c #A4F68B", -"9^ c #A4F68A", -"0^ c #A5F38E", -"a^ c #A7F290", -"b^ c #A8F093", -"c^ c #ADEA9A", -"d^ c #B2E3A3", -"e^ c #B9DBAF", -"f^ c #BED6B6", -"g^ c #C2CFBE", -"h^ c #C9C5CB", -"i^ c #CCC9CC", -"j^ c #CECECF", -"k^ c #D2D2D3", -"l^ c #E7E7E7", -"m^ c #C8CAC8", -"n^ c #C6CDC4", -"o^ c #C2D3BC", -"p^ c #BDD9B4", -"q^ c #B9DEAE", -"r^ c #B6E2A8", -"s^ c #B3E6A2", -"t^ c #B0E99E", -"u^ c #AFEB9C", -"v^ c #AEEC9B", -"w^ c #ADED9A", -"x^ c #ADEE99", -"y^ c #AEEB9C", -"z^ c #B0E9A0", -"A^ c #B3E6A4", -"B^ c #B6E2A9", -"C^ c #BED9B5", -"D^ c #C2D3BD", -"E^ c #C6CDC3", -"F^ c #C8C9C8", -"G^ c #C9C8C9", -"H^ c #E8E8E8", -"I^ c #D4D3D4", -"J^ c #D1D0D1", -"K^ c #CECCCF", -"L^ c #CCC9CD", -"M^ c #CAC6CC", -"N^ c #C4CEC1", -"O^ c #C2D1BD", -"P^ c #C0D3BA", -"Q^ c #BFD6B7", -"R^ c #BDD7B5", -"S^ c #BCD9B4", -"T^ c #BCD9B3", -"U^ c #BCDAB2", -"V^ c #BDD7B6", -"W^ c #BFD6B8", -"X^ c #C9C4CB", -"Y^ c #E9E9E9", -"Z^ c #D5D4D5", -"`^ c #D3D2D3", -" / c #D1D0D2", -"./ c #D0CED1", -"+/ c #CFCCD0", -"@/ c #CECBCF", -"#/ c #CECACF", -"$/ c #CDC9CE", -"%/ c #CCC8CE", -"&/ c #CFCDD0", -"*/ c #D2D0D2", -"=/ c #D3D2D4", -"-/ c #EAEAEA", -";/ c #EBEBEB", -">/ c #ECECEC", -",/ c #EDEDED", -"'/ c #EEEEEE", -")/ c #EFEFEF", -"!/ c #F0F0F0", -" . . + + + + + + + + + + + + + + + + + + + + + + + ", -" . . . + + + + + + + + + + + + + + + + + + + + + + + + ", -" . . . . . . . + + + + + + + + + + + + + + + + + + + + + + + . . . . . ", -" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", -" @ @ @ @ . . . . . . . . . @ . . . . . . . . . . . . . . . . . . . @ . . . . . . . @ @ @ @ ", -" @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ", -" # $ $ @ @ @ @ @ @ @ @ @ @ @ @ @ @ $ $ $ $ # # # # # # # # # # $ $ $ $ $ @ @ @ @ @ @ @ @ @ @ @ @ @ @ $ $ $ ", -" # # # $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ", -" % % & & # # # # # # # # # # # & & % % * * & $ + = - ; > , , , , > ; - ' . $ & % % % % & & # # # # # # # # # # # # # & ", -" % % % & & & & & & & & & & & & & & & & & & & . - ) ! ~ { ] ^ / / ^ ] { ~ ( , = @ # & & & & & & & & & & & & & & & & & & & & ", -" % % % % & & & % % % % % % % * _ _ # ' > ( : ] < [ } | 1 2 3 4 5 5 4 4 2 1 6 7 [ 8 ] ~ 9 > + # * _ * % % & & & & & % & & & & % ", -" % % % % % % % % % % % % % % % % * & = ! / 0 a b c d d d d d d d d d d d d d d d e d f g h / ( = $ % * % % % % % % % % % % % % % % ", -" _ * % % % % % % % % % * _ i _ $ ; ! ] [ j k l m n o p q r s t u v w x v y z A B C D E F G l k j [ ] ! - $ * i i * * * * * * * * * * _ ", -" _ _ _ * * * * * * * * * * * * # , ^ H b d d d d d d I J K L M N O P Q R P S T U V W J d X d d d e d Y Z ` ; # _ i _ _ _ _ _ _ _ _ _ _ _ _ ", -" _ _ _ _ _ _ _ _ _ _ _ . .% ' 9 ^ ..+.@.#.p $.%.&.*.=.-.;.>.,.'.).!.~.{.].^./.(._.:.>.<.[.=.}.|.A 1.o 2.3.4.[ { ) . _ . .i i i i i i _ _ i i ", -" _ _ _ i i i i i i i i i .i + 5.0 b d d X d 6.K 7.8.9.0.a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.c X z.A...( $ _ i i i i i i i i i i i i ", -" B.i i i i .i i i . .B. .@ 9 / Z 3.#.C.D.w E.F.G.H.I.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y.Z.`. +.+++@+#+$+%+&+*+=+-+;+>+,+6 ] , # i B.B.i i i i i i i i . ", -" B.B.B. . . . . . . . . . .% ( '+Y d X c )+!+~+{+]+p.^+/+(+_+:+<+[+<+<+<+<+<+<+<+<+<+<+<+}+<+|+1+2+3+4+5+6+7+8+9+0+a+b+b b c+d+, # .B. . . . . . . . . . . ", -" e+e+B.B.B.B.B.B.B.B.e+e+i = { 0 f+g+h+i+j+k+l+m+n+o+p+q+r+s+t+u+v+v+w+x+y+z+A+B+B+B+z+C+x+D+E+F+G+H+I+J+K+L+M+N+O+:.P+Q+R+S+T+k [ 5.' * e+e+B.B.B.B.B.B.B.B.e+ ", -" e+e+e+e+e+e+e+e+e+e+U+e+ .$ ] V+z.z.W+X+Y+Z+`+ @.@+@@@#@$@#@#@#@#@#@#@#@#@#@#@#@#@%@%@%@%@%@%@%@%@%@%@%@&@%@*@=@-@;@>@,@'@)@!@Y ~@Y '+: + B.U+e+e+e+e+e+e+e+e+e+e+ ", -" e+e+e+U+U+U+U+U+U+U+{@B.= ] ]@^@/@(@_@:@<@[@}@|@1@2@3@v+E+4@5@6@3@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@7@&@8@9@z+0@D+6@a@b@c@d@e@f@g@h@i@j@k@0 : + i {@{@U+e+U+U+U+e+e+U+{@ ", -" U+U+U+U+U+U+U+U+{@U+B.# ] c+^@f l@m@n@o@p@q@r@s@9@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@8@#@t@u@v@w@x@y@z@A.l V+0 : . U+A@U+U+U+U+U+U+U+{@{@{@ ", -" {@{@U+U+U+U+U+{@{@{@e+B@{ ]@C@D@E@F@G@H@I@J@K@L@M@C+3@N@O@O@O@O@P@s@P@P@P@s@P@P@O@O@O@O@O@O@O@O@O@O@O@O@O@s@O@O@N@$@u+3@Q@R@S@T@U@V@W@X@Y@Z@h `@$ .{@A@U+U+U+U+U+{@{@{@ ", -" {@{@{@{@{@{@{@{@A@{@U+% : a #f .#+#@###$#%#&#*#=#*#*#*#*#*#*#*#t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+t+-#t+P@;#>#,#'#)#!#V+~#a [ ( $ {@A@{@{@{@{@{@{@{@{@ ", -" {#A@{@{@{@{@{@{@{@]#{#& ( ..c+ #^#/#(#_#:#<#[#}#s@|#1#2#1#1#1#1#1#2#2#2#2#2#2#2#2#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#4#3#5#6#=#t+7#8#9#0#a#b#c#d#e#d+, i {@A@A@A@A@A@A@A@A@{# ", -" {#{#{#A@A@A@A@A@A@A@]#{@> h f#V+g#h#(#i#j#k#[#Q@l#Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@m#n#n#n#n#n#n#n#n#o#o#o#o#o#o#o#o#o#o#o#p#q#q#q#l#r#s#t#u#v#w#x#y#z#` . B.{#]#{#{#{#{#{#{#{#{# ", -" {#{#{#{#{#{#{#{#]#]#e+@ ` g ~#A#B#C#D#E#F#G#n#n#o#H#H#H#H#H#H#2@2@2@2@I#I#J#J#K#H#K#L#L#L#L#L#L#L#L#M#N#N#N#N#N#N#N#N#N#N#N#N#O#O#P#Q#R#S#T#U#V#W#X#Y#+.Z#~ $ {#`#]#]#]#]#]#{#{#]#]# ", -" ]#]#]#]#]#]#]#]# $]## 5...A..$+$@$#$$$%$&$*$=$*$*$*$*$*$*$*$*$r#r#r#r#r#-$-$-$-$-$-$-$-$-$-$-$-$-$-$;$>$>$>$>$>$>$>$>$>$>$,$,$,$,$,$'$,$)$!$~${$]$^$/$H ($h ) U+]#]#]#]#]#]#]#]#]#]#]# ", -" `#`#]#]#]#`#]#`#]#`#{@> _$:$<$[$}$|$1$2$3$4$'$5$6$6$6$6$7$7$7$)$8$8$8$8$8$9$9$9$0$0$0$0$0$a$0$0$0$9$a$0$0$0$0$0$0$0$0$0$0$b$c$c$c$c$c$b$b$d$e$f$g$h$i$j$k$4.Z l$@ e+`# $]#]#]#]#]#`#`#`# ", -" `#`#`#`#`#`#`#`# $`#{#_ ~ g m$g n$o$p$q$r$e$d$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$t$e$e$e$e$e$e$e$e$e$e$e$e$e$e$e$e$e$e$e$e$e$G#u$u$u$u$u$u$u$v$u$w$x$y$z$A$B$C$Z D$! & `#E$`#`#`#`#`# $ $ $ ", -" $ $ $ $ $ $ $ $F$E$i > G$a H$I$J$K$L$M$N$O$,$P$P$P$Q$P$P$P$P$P$P$P$P$P$P$R$R$R$R$S$T$S$S$S$S$S$S$S$T$U$U$U$U$U$U$U$U$U$U$U$U$V$V$V$V$V$V$V$W$R$X$Y$Z$`$ %.%+%| @%/ = {#E$ $ $ $ $ $ $E$ ", -" E$E$E$E$E$E$E$E$#%E$@ ^ $%x#%%&%*%=%-%;%>%,%W$,%,%,%,%,%'%)%)%)%)%)%)%)%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%~%~%~%~%~%~%~%~%{%{%{%{%{%{%{%{%{%{%{%]%{%U$^%/%(%_%:%<%[%}%..) B.`#E$F$E$E$E$E$E$E$ ", -" F$F$F$F$F$F$F$F${#> h |%4.1%2%3%4%5%6%7%8%9%0%0%0%a%a%0%b%c%b%b%b%b%b%c%c%c%d%d%d%e%d%d%d%e%e%f%e%e%e%e%e%e%e%e%e%d%g%g%g%g%g%g%g%g%g%g%g%g%g%V$g%h%i%j%k%l%m%n%h o%. U+F$#%F$E$F$E$E$F$#% ", -" F$F$F$F$F$F$#%F$`# .! z#p%q%r%s%t%u%v%w%x%y%z%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%B%B%B%B%B%B%B%B%B%B%B%B%B%B%B%B%B%B%B%C%C%C%C%C%C%C%C%C%C%C%C%C%C%a%C%D%E%F%G%_#H%I%..J%9 * F$K%F$F$F$F$F$#%#%#% ", -" #%#%F$F$F$F$F$K%#%U+. L%H M%N%O%P%Q%R%S%T%U%V%W%V%V%V%V%X%X%X%X%X%X%X%X%X%Y%X%X%X%Z%X%X%`%`%`%Z% & & & & & & & &Z%Z%Z% &.&.&.&.&.&.&.&.&.&.&.&.&.&A%Z%+&@&#&$&%&&&*&=&-&] @ F$;&#%#%#%#%#%#%#%#% ", -" #%#%#%#%#%#%#%#%;&#%_ 9 >&'+,&'&)&!&~&{&]&T%x%T%T%T%T%T%^&/&/&/&/&/&/&/&/&/&/&/&/&/&/&/&/&/&/&/&(&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&_&Z%_&:&<&[&}&|&1&2&[ 3&d+= $;&K%K%K%K%K%K%K%K% ", -" K%K%K%K%K%K%K%K%4&K%$ ^ 5&0 6&7&8&9&0&a&b&c&d&e&f&g&g&g&f&h&h&h&h&h&f&h&h&i&i&i&i&i&i&i&h&j&j&j&k&k&l&k&k&k&k&k&l&m&m&m&m&l&l&l&l&l&l&l&l&l&l&l&l&l&n&l&o&p&q&r&s&t&u&v&w&d+x&e+E$;&;&;&;&;&;&K% ", -" 4&4&4&;&;&;&;&;&y&#%' _$z&0 A&B&C&D&E&F&G&H&I&H&H&H&H&H&H&H&H&H&H&H&H&H&H&J&J&J&J&J&J&J&J&K&K&K&K&K&K&K&K&K&K&K&L&L&L&L&L&L&L&L&L&L&L&L&L&L&L&L&L&L&M&L&N&O&P&Q&R&Q&S&T&U&8 V&# {#;&4&;&;&;&;&;&;& ", -" 4&4&4&4&4&4&4&4&;&`#; ..W&X&Y&Z&`&E& *.*+*@*#*$*$*%*%*%*&*%*%*******=*****-*-*-*-*-*;*-*-*>*>*>*>*>*>*>*>*>*-*-*>*,*,*,*,*,*,*,*,*,*>*,*,*,*,*,*,*,*'*,*)*!*~*D&{*]*^*/*(*< _*' U+4&y&;&;&;&;&;&4&4&", -" 4&4&4&4&4&4&y&4&F$U+, _$:*<*[*}*|*1*2*3*4*5*6*5*5*7*7*7*7*7*8*9*9*9*9*9*9*9*9*9*9*9*9*9*0*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*a*b*a*c*d*e*E&f*E&g*h*i*/ j*, .4&k*4&4&4&4&4&4&4&", -" 4&4&4&4&4&k*4&`#* V&_$l*m*n*o*p*q*r*s*t*u*v*w*u*u*u*u*u*u*u*x*x*x*x*y*y*y*y*y*y*y*x*y*y*z*z*z*z*z*z*z*z*z*z*A*A*A*A*A*A*A*A*z*z*B*B*B*B*B*B*B*B*B*C*A*D*E*F*G*H*G*I*J*K*^ L*! _ y&M*y&y&y&y&y&y&y&", -" y&y&y&y&y&y&M*y&A@. N*[ O*P*Q*R*S*R*T*U*V*W*C*X*X*X*X*X*X*X*X*X*X*X*Y*Y*Y*Y*Y*Y*Y*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*`*`*`*`*`*`*`*`*`* = = = = = = = = = =.=+=@=#=$=%=&=%=*===-=] ;=: % y&>=k*k*k*k*k*k*k*", -" >=M*k*k*k*k*k*>=k*{@= j*8 ,='=)=!=~=!=S*{=]=^=/=(=_=(=(=(=(=(=+=+=+=+=(=(=:=(=(=(=(=<=W*[=[=[=W*[=[=[=W*W*W*W*[=}=}=}=}=}=[=}=}=|=|=|=|=|=|=|=|=|=|=|=Y*}=1=2=3=4=5=4=6=7=8=` 9={ & ;&M*M*M*M*M*M*M*M*", -">=>=>=M*M*M*M*M*0=M*U+; j*< a=b=c=d=e=d=f=d=g=h=i=j=k=j=j=j=l=l=l=l=l=l=l=l=l=l=l=l=l=l=m=n=n=n=n=n=n=n=n=o=o=o=o=o=o=o=o=o=o=o=p=q=q=q=q=q=q=q=q=q=q=q=r=s=t=u=v=w=v=w=x=y=z=A=B=: # #%k*M*M*M*M*M*M*M*", -">=>=>=>=M*>=>=>=C=>=B.) D=/ E=F=G=H=I=H=J=K=L=M=N=O=P=Q=Q=Q=Q=Q=Q=R=R=R=R=R=R=R=R=S=T=R=R=U=U=U=U=U=U=U=V=W=W=W=W=W=W=W=W=W=V=X=s=Y=Y=s=s=s=s=s=Y=Z=W=Y=`= -.-+-@-d=d=d=#-d=$-%-&-~ *- $y&M*>=M*M*M*M*M*", -">=>=>=>=>=>=>=>=C=>= .( =-/ --;->-,-'-,-)-,-!-~-{-]-^-]-]-]-]-]-/-/-/-/-/-/-/-/-/-(-(-(-(-(-(-(-(-(-(-(-(-_-_-_-_-_-_-_-_-_-`=`=`=`=`=`=`=`=`=`=:-:-<-:-[-}-|-1-2-1-1-1-3-1-4-5-6-5.*-]#4&>=0=>=>=>=>=>=", -"0=0=0=0=0=0=0=0=7-0= .( L*] 8-9-0-a-b-a-c-a-a-d-e-f-g-h-i-j-h-j-j-k-k-k-k-k-k-k-l-m-m-m-m-m-m-m-m-m-n-n-m-o-p-o-o-o-o-o-q-p-o-r-r-r-s-r-r-r-s-r-r-t-_-u-v-w-x-y-)-z-z-z-A-z-B-C-D-! *-]#4&0=C=0=0=0=0=0=", -"C=C=C=C=C=C=C=C=E-C=B.( B=` F-G-H-I-J-I-I-I-K-I-L-M-N-O-P-O-O-O-O-O-O-O-O-O-O-O-Q-R-R-R-R-R-R-R-R-R-R-R-R-R-R-R-R-R-R-R-R-R-S-T-T-T-T-T-T-T-T-T-T-T-U-V-W-X-Y-Z-`-Z-Z-Z- ;Z-.;+;@;( #;]#y&C=$;C=C=C=C=C=", -"$;$;$;$;$;$;$;$;E-$; .5.L*{ %;&;*;=;-;=;=;=;;;>;,;';);!;~;{;{;!;!;!;];!;!;!;];];!;^;^;^;^;^;^;!;!;!;^;/;/;^;^;^;/;^;^;^;/;(;(;_;_;_;_;_;_;_;_;_;];!;:;<;[;};|;>;>;>;>;>;1;>;2;3;4;( 5;{#4&C=$;C=C=C=C=C=", -"$;$;$;$;$;$;$;$;6;$; .~ 7;{ 8;9;0;a;b;a;a;a;a;a;c;d;e;f;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;g;h;h;h;h;h;h;h;h;h;i;j;j;j;j;j;j;j;j;j;j;j;g;j;k;l;m;n;o;n;n;n;n;n;p;n;q;r;s;9 5;A@4&$;7-$;$;$;$;$;", -"$;$;$;$;$;$;$;$;6;$;B.! B=: t;u;v;w;x;w;w;w;y;z;A;B;C;D;E;F;G;i;i;H;H;H;H;H;H;H;H;H;H;H;H;H;H;I;I;I;J;K;K;K;K;K;J;L;L;M;N;O;O;O;O;O;O;N;O;N;I;I;P;Q;R;S;T;U;U;V;V;V;V;V;W;V;X;Y;Z;`; >]#k*7-E-7-7-7-7-7-", -"$;$;7-7-7-7-7-7-.>7-U+`;+>~ @>#>$>%>&>%>%>%>%>*>=>*>->;>>>,>'>'>'>'>'>'>'>'>)>)>)>)>)>)>)>)>)>!>!>!>!>!>!>!>!>!>!>!>~>{>{>{>{>{>{>{>{>{>{>{>O;]>^>/>(>_>:>_>_>_>_>_>_>_><>_>[>}>|>, 1>E$>=E-6;E-E-E-E-E-", -"7-7-E-E-E-E-E-E-.>E-A@, 2>5.3>4>5>6>7>6>6>6>8>8>8>8>7>9>0>a>b>c>d>)>e>d>f>f>f>g>g>g>g>g>d>g>g>h>h>h>h>h>h>h>h>i>i>i>j>j>j>j>j>j>j>j>j>j>g>j>k>l>m>n>o>=>=>p>%>%>%>%>%>%>q>%>r>s>t>; u>F$>=6;6;6;6;6;6;6;", -"6;6;6;6;6;6;6;6;v>6;{#- w>( x>y>z>A>B>A>A>A>A>A>A>A>A>A>C>D>E>F>G>H>g>H>H>H>H>H>H>H>H>H>H>H>I>I>I>I>I>I>I>I>I>I>I>J>J>J>J>J>J>J>J>J>J>G>K>L>M>N>O>9>P>9>9>9>Q>6>6>6>6>6>R>6>S>T>U>- V>#%0=6;.>6;6;6;6;6;", -".>.>.>.>.>.>.>.>W>.> $. X>`;Y>Z>`> ,., ,+,+,+,+,+,+,+,@,#,+,$,%,&,*,=,-,;,I>>,,,,,',',',',',',),),),),),',!,),),),~,~,~,~,~,),{,',',],^,/,(,_,:,<,[,A>#,#,#,#,C>},C>C>C>|,1,2,3,4,- 5,y&$;6;.>6;6;6;6;6;", -".>.>.>.>.>.>.>.>W>.>F$& 6,) 7,8,9,0,a,0,b,c,c,c,c,c,c,c,c,c,d,e,f,g,h,i,j,j,j,j,j,j,j,k,k,k,k,k,k,k,k,k,k,k,l,l,l,l,l,l,l,l,l,l,k,l,m,n,o,p,c,q,q,q,q,q,q,q,q,q,q,q,q,q,r,q,s,t,u,= {@0=6;.>.>.>.>.>.>.>", -" .>.>.>.>.>.>.>W>.>K%_ v,) w,x,y,z,A,z,z,B,C,B,B,B,z,B,D,C,0,E,F,G,H,I,J,K,L,M,N,O,N,P,P,P,P,P,P,P,P,P,P,Q,Q,R,R,Q,Q,P,P,Q,S,T,U,V,W,X,Y,Z,E,0,0,Z,`,Z, ' ' ' ' ' ' ' 'a,.'+'@'#'' {#7-v>v>v>v>v>v>v>v>", -" v>v>v>v>v>v>$'v>y&e+%', &'*'='-';'-'-'-'-'-'-'-'-'-'-'-'>',',',',''')'!'~'{']'R,R,^'^'^'^'^'^'^'^'^'^']']']']']']']']'/'('_':'<'['}'}'}'}'}'}'}'}'}'|'1'1'1'1'1'D,1'2'3'4'. 5'. `#.>$'W>W>W>W>W>W>W>", -" W>W>W>W>W>$'W>>=`#6'> 7'8'9'0'a'b'b'b'b'b'b'b'b'b'b'b'b'c'd'd'e'd'f'g'h'i'j'k'l'm'n'o'p'q'r's't'u'r'v'q'p'w'n'x'k'y'z'A'B'C'D'e'E'e'd'd'd'd'd'd'd'd'F'G'F'F'F'H'F'I'J'K'@ L'& M'W>N'$'$'$'$'$'$'$'", -" $'$'$'$'$'$'N'$'7-;&V>- O'P'Q'R'S'R'R'R'R'R'R'R'R'R'R'R'R'R'R'R'R'R'R'R'T'T'U'V'W'X'Y'Z'`' ).)+)@)@)+)#) )$)%)&)*)W'V'U'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'=)T'-);)>)$ ,) .4&$'')$'$'$'$'$'$'$'", -" $'$'N'N'N'N'N'N'v>C={@= ))!)~)*){)])])])])])])])^)^)^)^)^)^)^)^)^)^)^)/)()_)_):)<)[)})|)1)2)2)3)3)3)4)2)2)5)})6)7)^):)_)_)_)_):):):)/):)/):):)()()()()()()()()()8)()9)0)a)& b){#M*N'')$'$'$'$'$'$'$'", -" N'N'N'N'N'N'N'N'')v>`#+ #'+ c)d)e)f)g)f)f)f)f)f)f)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)i)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)k)l)l)l)l)l)l)l)l)l)m)l)n)o)p)% q)#%$;N'')N'N'N'N'N'$'$'", -" ')')')N'N'N'N'N'r)N'K%& s)t)u)v)x'w)x)w)y)w)w)w)w)w)z)w)w)w)w)w)y)w)z)A)z)z)A)A)A)A)B)B)B)B)C)C)C)C)C)C)C)C)C)C)B)B)B)B)B)B)B)B)B)B)B)B)B)B)B)D)E)D)D)D)D)D)C)D)F)G)H)I)J)* K)>=v>')r)')')')')')N'$'", -" r)r)r)')')')')')L)')k*e+M). N)O)P)Q)R)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)S)T)T)T)T)T)T)T)T)T)T)T)T)T)T)T)T)T)T)T)T)T)T)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)U)V)W)X)Y)Z)_ #%.>')r)r)r)r)r)r)r)r) ", -" r)r)r)r)r)r)r)L)r)7-F$`)@ !.!+!@!#!@!@!$!$!$!$!$!$!$!$!$!$!$!@!$!$!%!&!%!%!%!%!%!$!%!&!&!&!&!&!&!&!&!&!&!&!&!&!&!*!&!&!&!&!&!&!&!*!=!=!=!=!*!*!*!=!*!*!*!-!=!;!>!,!'!)!B.y&N'L)L)L)L)L)L)r)L) ", -" L)L)L)L)L)L)!!L)W>0=~!# {!]!^!/!(!_!:!#%% 7!8!9!0!a!b!c!d!e!d!d!d!d!d!f!d!d!d!d!d!d!d!d!d!d!d!d!d!d!d!d!g!h!g!g!g!g!g!d!g!h!h!h!h!h!h!h!h!h!h!h!h!h!h!_!h!h!h!h!h!h!h!_!_!i!j!k!l!m!B.n!4&o!!!6!!!!!!!!!!!!!!!!! ", -" !!!!!!!!!!!!!!!!6!L)k*B.p!* q!r!s!t!u!t!t!t!t!t!t!t!t!t!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!w!x!x!x!x!x!x!x!x!x!x!x!x!x!x!x!x!x!x!x!x!x!f!f!b!y!z!A!B!e+C!E-')6!D!6!6!6!6!6!6!6!6! ", -" 6!6!6!6!6!6!6!6!E!6!E-#%F!G!H!I!J!K!L!M!M!M!M!M!N!N!N!N!M!O!O!O!O!O!O!O!M!O!O!O!O!O!O!O!O!O!O!O!O!O!O!O!O!P!Q!P!P!P!P!P!O!P!P!P!R!P!P!P!P!P!P!P!Q!P!S!T!U!V!W!X!Y!A@M*')6!D!D!D!D!D!D!D!6!6! ", -" 6!6!6!D!D!D!D!D!E!D!')7-E$i p!Z!`! ~.~+~@~+~+~+~+~+~+~+~+~+~+~+~+~+~+~+~+~+~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~$~%~%~%~%~%~%~%~%~%~%~%~&~%~*~=~-~A@;~F$7-6!E!D!D!D!D!D!D!D!D! ", -" 6!D!E!E!E!E!E!E!E!D!')k*U+>~`),~'~)~!~~~{~]~{~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~/~/~/~/~/~/~/~^~/~/~(~(~(~(~(~(~(~(~(~(~/~/~/~(~_~_~_~_~_~_~_~(~_~:~:~/~<~[~}~|~A@1~C=N'E!2~E!D!E!E!E!D!D!D! ", -" E!E!E!E!E!E!E!E!3~E!E-E$4~e+5~6~7~8~9~0~0~0~a~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~c~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~d~e~f~g~h~i~]#j~]#M*N'6!E!E!E!E!E!E!E!D!D!D! ", -" 2~2~2~E!E!E!E!E!3~2~r)$;k~U+5,l~m~n~o~p~p~q~r~q~s~q~q~q~q~q~q~q~t~t~t~t~t~t~t~t~t~t~t~t~t~t~t~u~v~u~u~u~u~u~t~u~v~v~v~v~v~v~v~v~v~v~v~v~w~x~x~y~z~A~B~C~D~;&6;6!2~E!2~E!E!E!E!E!E!D! ", -" 2~2~2~2~2~2~2~2~2~2~2~!!0={#E~{@F~G~H~I~J~K~K~K~K~K~K~K~K~K~K~K~K~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~L~M~N~N~N~N~N~N~N~N~N~N~N~q~N~O~P~Q~R~S~E$T~7-')2~3~2~2~2~2~2~2~2~2~ ", -" 2~3~3~3~3~3~3~3~3~U~2~$'M*V~4~W~X~Y~Z~`~ {.{+{+{+{+{+{+{+{+{+{+{+{@{+{+{+{+{+{+{+{@{#{#{#{#{@{@{@{#{@{@{@{@{@{#{${${${${${${${${${%{%{&{*{={-{;{>{,{;&7-r)E!3~U~3~3~3~3~3~3~3~3~ ", -" U~U~U~U~U~U~U~U~'{U~D!N'M*]#){]#!{~{{{]{^{/{/{/{/{/{/{/{/{/{/{/{/{/{/{/{/{/{/{/{/{({({({({({({({({({({({({({({({({({({({({({({({_{:{<{[{}{|{k~#%4&0=')U~'{U~U~U~U~U~U~U~U~U~U~ ", -" U~U~U~'{'{'{'{'{'{'{U~E!v>k*1{2{3{4{5{6{7{8{9{0{a{a{b{a{a{a{a{a{a{a{a{a{a{a{a{a{a{a{c{a{a{a{a{a{a{a{c{c{c{c{c{c{c{c{c{c{c{c{d{e{c{f{g{h{i{K%j{;&$;N'E!'{k{'{U~'{U~'{'{'{'{U~ ", -" U~U~U~'{'{'{'{'{'{'{k{'{D!W>M*E$S~E$l{m{n{o{p{q{q{q{q{q{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{r{s{s{s{s{s{s{s{s{s{s{s{t{s{u{v{w{x{y{;&4&>=N'U~k{'{'{'{'{'{'{'{'{'{'{ ", -" U~'{k{k{'{'{'{'{'{k{k{U~D!W>>=z{A{B{C{D{E{F{G{H{I{H{J{J{K{K{K{K{K{K{K{J{K{K{L{L{K{K{K{K{K{L{K{K{K{L{L{M{L{L{L{N{L{O{O{P{Q{R{S{T{U{V{y{W{X{7-')2~Y{Y{k{k{k{k{k{k{k{k{'{ ", -" k{k{k{k{k{k{k{k{k{k{Y{k{E!N'0=#%k~K%Z{`{ ].]+]@]#]@]@]@]@]@]@]@]@]@]@]@]$]#]#]#]#]#]#]#]#]#]#]#]#]#]#]#]#]#]#]#]#]#]%]&]*]=]-];]>]4&k*C=r)k{,]Y{Y{Y{Y{Y{Y{Y{Y{Y{Y{ ", -" k{Y{Y{Y{Y{Y{Y{Y{Y{,],]k{2~')E-'])]!]~]{]]]^]/](]_]:]<][]}]|]1]1]1]1]1]1]2]3]2]2]2]2]2]|]2]3]3]3]3]3]3]4]5]6]6]1]7]8]9]0]a]b]c]d]>=6;r)3~,]e],],],],],],]Y{,],],] ", -" ,],],],],],],],],],]e],]'{D!v>M*y&y&f]g]h]i]j]k]l]m]m]m]m]m]m]m]m]m]m]m]m]m]m]m]m]m]m]m]n]o]o]o]o]o]o]o]p]n]q]r]s]t]u]y&T~y&>=6;!!k{,],],],],],],],],],],],],] ", -" ,]e]e]e]e],]e],]e]e]e],]k{D!$'E-v]w]x]y]z]A]B]C]D]E]F]G]H]I]J]J]K]L]M]M]M]M]M]M]M]M]M]N]O]P]Q]P]M]F]R]S]T]U]V]W]X]Y]Z]`]E-N'6!'{e]e]e],],],],],],]e]e]e],] ", -" e]e]e]e]e]e]e]e]e]e]e]e],]'{L)6;0=k*X{k*k* ^.^+^@^#^$^%^&^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^=^-^;^>^,^'^)^k*!^k*k*>=.>!!U~e]~^e]e]e]e]e]e]e]e]e]~^~^~^ ", -" e]~^~^~^~^~^~^~^~^~^{^{^e]'{E!r)v>]^^^w]/^(^_^:^<^[^}^|^1^2^3^4^5^6^7^8^9^7^6^0^a^b^2^c^|^d^[^e^f^g^ ^f]h^i^j^k^r)E!k{e]{^{^~^~^~^~^~^~^~^~^~^~^~^ ", -" {^{^{^{^{^{^{^{^{^{^{^{^l^{^Y{2~N'7-0=M*M*M*M*M*m^n^o^p^q^r^s^t^u^v^w^x^w^y^z^A^B^q^C^D^E^F^G^M*M*M*M*>=E-')3~e]{^{^{^{^{^{^{^{^{^{^{^{^{^{^{^ ", -" {^l^l^l^l^l^l^l^l^l^l^H^H^{^,]U~D!r)I^J^K^L^M^w]!^ ^N^O^P^Q^R^S^T^U^U^U^S^V^W^P^O^N^ ^X{X^M^L^K^J^I^r)D!U~e]l^H^l^l^l^l^l^l^l^l^l^l^l^l^{^ ", -" l^l^l^l^l^l^l^l^l^l^l^l^l^l^H^l^e]U~6!$'E-0=M*M*M*M*M*M*M*M*M*M*M*M*M*M*M*M*M*M*M*M*M*M*0=E-$'!!'{~^l^l^l^l^l^l^l^l^l^l^l^l^l^l^H^H^H^ ", -" l^l^H^H^l^l^H^l^l^l^l^H^H^Y^Y^l^~^Y{U~E!!!r)Z^`^ /./+/@/#/$/$/%/$/$/#/@/@/&/./*/=/Z^r)!!E!3~k{~^H^Y^H^H^H^l^l^l^l^l^l^H^H^l^l^H^H^ ", -" H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^l^e]k{2~6!r)N'W>v>.>6;6;6;.>v>W>$'')L)D!3~Y{~^l^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^ ", -" H^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^-/-/-/-/-/Y^l^~^,]k{'{U~3~3~2~2~2~3~3~U~'{k{Y{,]~^l^Y^-/-/-/-/Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^H^ ", -" -/-/Y^Y^Y^-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/ ", -" -/-/Y^-/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/>/>/>/>/>/>/>/>/>/>/>/>/>/>/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/-/-/-/ ", -" ;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/ ", -" ;/;/;/;/>/>/>/>/>/>/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/>/>/>/>/>/;/;/;/;/ ", -" >/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/>/ ", -" >/>/>/ >/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/,/>/>/>/>/ ", -" '/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/'/,/,/,/ ", -" '/'/'/'/'/'/'/ '/'/)/)/)/)/)/'/'/)/)/)/'/ '/'/'/'/'/'/,/ ", -" )/)/)/)/)/)/'/'/)/!/!/ "}; +"100 100 17 1", +" c None", +". c #5EAB0C", +"+ c #5DAA0C", +"@ c #58A90C", +"# c #51A90B", +"$ c #4AAA0A", +"% c #44AA0A", +"& c #42AA0A", +"* c #5CAB0C", +"= c #5CA90C", +"- c #46AA0A", +"; c #42AB0A", +"> c #5DAB0C", +", c #55A90B", +"' c #5BA90C", +") c #5AA90C", +"! c #5EAA0C", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" .+@#$%&%$#@+. ", +" *=-;;;;;;;;;;;;;;;;;-=* ", +" >,;;;;;;;;;;;;;;;;;;;;;;;;;,> ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" ';;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;' ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" );;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;) ", +" &;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;& ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" !;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;! ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" !;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;! ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" &;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;& ", +" );;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;) ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" ';;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;' ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" ,;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;, ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" *;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;* ", +" =;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;= ", +" -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;- ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" .;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;. ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" @;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;@ ", +" #;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;# ", +" $;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;$ ", +" %;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;% ", +" &;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;& ", +" %;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;% ", +" $;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;$ ", +" #;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;# ", +" @;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;@ ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" .;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;. ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;- ", +" =;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;= ", +" *;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;* ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" ,;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;, ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" ';;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;' ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" );;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;) ", +" &;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;& ", +" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" !;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;! ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" !;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;! ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" &;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;& ", +" );;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;) ", +" >;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;> ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" ';;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;' ", +" +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+ ", +" >,;;;;;;;;;;;;;;;;;;;;;;;;;,> ", +" *=-;;;;;;;;;;;;;;;;;-=* ", +" .+@#$%&%$#@+. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesOrange.xpm b/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesOrange.xpm index a1a553c243..205da1ec1c 100644 --- a/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesOrange.xpm +++ b/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesOrange.xpm @@ -1,1970 +1,113 @@ /* XPM */ static const char * QmitkMemoryUsageIndicatorImagesOrange_xpm[] = { -"100 100 1867 2", -" c None", -". c #ADADAD", -"+ c #AEAEAE", -"@ c #AFAFAF", -"# c #B0B0B0", -"$ c #B1B1B1", -"% c #B2B2B2", -"& c #B3B3B3", -"* c #B4B4B4", -"= c #ABABAB", -"- c #A9A9A9", -"; c #A7A7A7", -"> c #A6A6A6", -", c #A5A5A5", -"' c #A8A8A8", -") c #AAAAAA", -"! c #ACACAC", -"~ c #A2A2A2", -"{ c #9E9E9E", -"] c #9C9C9C", -"^ c #9A9A9A", -"/ c #999999", -"( c #989898", -"_ c #A0A0A0", -": c #A4A4A4", -"< c #B5B5B5", -"[ c #A3A3A3", -"} c #9F9F9F", -"| c #959696", -"1 c #939494", -"2 c #909292", -"3 c #8D9091", -"4 c #8C8F90", -"5 c #8B8E8F", -"6 c #8A8D8F", -"7 c #898D8E", -"8 c #8A8E8F", -"9 c #8F9192", -"0 c #919393", -"a c #949595", -"b c #979797", -"c c #A1A1A1", -"d c #929292", -"e c #8B8B8B", -"f c #868686", -"g c #828282", -"h c #818181", -"i c #848484", -"j c #898989", -"k c #8F8F8F", -"l c #B6B6B6", -"m c #969696", -"n c #909192", -"o c #8B8E8E", -"p c #868A8B", -"q c #818688", -"r c #7C8487", -"s c #7A8285", -"t c #7C8081", -"u c #807D7C", -"v c #847A77", -"w c #887772", -"x c #8A756E", -"y c #8D736B", -"z c #8E7268", -"A c #8F7167", -"B c #8E7168", -"C c #8D7269", -"D c #8C746C", -"E c #897670", -"F c #857975", -"G c #817C7B", -"H c #7D8080", -"I c #7B8283", -"J c #7C8386", -"K c #7F8688", -"L c #83888A", -"M c #898C8D", -"N c #8E9090", -"O c #909090", -"P c #888888", -"Q c #818283", -"R c #877F7C", -"S c #8D7B75", -"T c #94766D", -"U c #9A7265", -"V c #9F6E5E", -"W c #A36B59", -"X c #A66A56", -"Y c #A76954", -"Z c #A66954", -"` c #A56955", -" . c #A46B57", -".. c #A26D5B", -"+. c #9D7061", -"@. c #967469", -"#. c #8F7972", -"$. c #887E7A", -"%. c #84817F", -"&. c #838383", -"*. c #8C8C8C", -"=. c #9D9D9C", -"-. c #949494", -";. c #8C8E8E", -">. c #858889", -",. c #7E8587", -"'. c #7B8284", -"). c #807E7D", -"!. c #877872", -"~. c #907065", -"{. c #996859", -"]. c #A0624E", -"^. c #A75F48", -"/. c #AF644B", -"(. c #B66A51", -"_. c #BC6F55", -":. c #C07259", -"<. c #C4745A", -"[. c #C6755B", -"}. c #C9795E", -"|. c #CA7B60", -"1. c #C9795F", -"2. c #C8775C", -"3. c #C67459", -"4. c #C27358", -"5. c #BD7057", -"6. c #B86A51", -"7. c #B2654A", -"8. c #AB6149", -"9. c #A4614B", -"0. c #9C6654", -"a. c #956D60", -"b. c #8B756D", -"c. c #837D7A", -"d. c #7D8081", -"e. c #7C8385", -"f. c #828789", -"g. c #8A8D8D", -"h. c #929393", -"i. c #B7B7B7", -"j. c #818383", -"k. c #838281", -"l. c #8C7B75", -"m. c #997265", -"n. c #A86751", -"o. c #B85C3E", -"p. c #C5522D", -"q. c #D14F24", -"r. c #DA5A30", -"s. c #E16A43", -"t. c #E47652", -"u. c #E68160", -"v. c #E78869", -"w. c #E88E70", -"x. c #EA9579", -"y. c #EB9A7F", -"z. c #EA977B", -"A. c #E99174", -"B. c #E88A6B", -"C. c #E78463", -"D. c #E57C59", -"E. c #E26C45", -"F. c #DE5D32", -"G. c #D65429", -"H. c #CB5129", -"I. c #BF5836", -"J. c #B16349", -"K. c #A06E5D", -"L. c #917970", -"M. c #887F7C", -"N. c #828485", -"O. c #9D9D9D", -"P. c #B8B8B8", -"Q. c #A7A6A6", -"R. c #9B9B9B", -"S. c #919191", -"T. c #888A8A", -"U. c #808688", -"V. c #837C7A", -"W. c #8E746B", -"X. c #996959", -"Y. c #A6624B", -"Z. c #B3684E", -"`. c #CC7D63", -" + c #D8876D", -".+ c #E28E72", -"++ c #EA9478", -"@+ c #EF9E83", -"#+ c #F3A88F", -"$+ c #F4AF99", -"%+ c #F5B5A1", -"&+ c #F5BAA6", -"*+ c #F5BDAA", -"=+ c #F6C1B0", -"-+ c #F7C4B3", -";+ c #F6C2B1", -">+ c #F6BFAD", -",+ c #F5BBA8", -"'+ c #F5B7A3", -")+ c #F4B29C", -"!+ c #F4AA91", -"~+ c #F1A086", -"{+ c #EC987C", -"]+ c #E59074", -"^+ c #DD8A6E", -"/+ c #D28268", -"(+ c #C6755A", -"_+ c #B86A4F", -":+ c #AC654D", -"<+ c #A06653", -"[+ c #937065", -"}+ c #887C78", -"|+ c #818182", -"1+ c #808587", -"2+ c #8F9090", -"3+ c #818484", -"4+ c #848382", -"5+ c #927971", -"6+ c #A46C5A", -"7+ c #BA5B3C", -"8+ c #CE532A", -"9+ c #DC653D", -"0+ c #EDA086", -"a+ c #F2BDAB", -"b+ c #F6D2C6", -"c+ c #F9E1D8", -"d+ c #FAE7E0", -"e+ c #FAE8E2", -"f+ c #FAE8E3", -"g+ c #FAE9E3", -"h+ c #F9E3DB", -"i+ c #F7D8CD", -"j+ c #F4C6B6", -"k+ c #EFAD97", -"l+ c #E98A6B", -"m+ c #E16B44", -"n+ c #D45C33", -"o+ c #C35834", -"p+ c #AD654D", -"q+ c #98766B", -"r+ c #8C7F7B", -"s+ c #858585", -"t+ c #838586", -"u+ c #B9B9B9", -"v+ c #BABABA", -"w+ c #A2A1A1", -"x+ c #959595", -"y+ c #898B8C", -"z+ c #808485", -"A+ c #7F8182", -"B+ c #857E7B", -"C+ c #937064", -"D+ c #A46650", -"E+ c #B66D53", -"F+ c #C8795F", -"G+ c #D98669", -"H+ c #E89478", -"I+ c #F0A48B", -"J+ c #F8C8B8", -"K+ c #FAD8CD", -"L+ c #FBE5DD", -"M+ c #FCEEE8", -"N+ c #FCF0EC", -"O+ c #FBEFEB", -"P+ c #FBEEEA", -"Q+ c #FBEEE9", -"R+ c #FBEDE9", -"S+ c #FBEDE8", -"T+ c #FCF0ED", -"U+ c #FCF1ED", -"V+ c #FCEEEA", -"W+ c #FBE8E2", -"X+ c #FADED4", -"Y+ c #F8CFC1", -"Z+ c #F6BCA9", -"`+ c #F2A990", -" @ c #E08C71", -".@ c #CF7B5E", -"+@ c #BD6C51", -"@@ c #AD6953", -"#@ c #9D6D5D", -"$@ c #8E7872", -"%@ c #838485", -"&@ c #87898A", -"*@ c #919292", -"=@ c #BBBBBB", -"-@ c #828384", -";@ c #89817E", -">@ c #947A70", -",@ c #AE654A", -"'@ c #CA5830", -")@ c #DC6F49", -"!@ c #EA9476", -"~@ c #F3BBA7", -"{@ c #F8DCD2", -"]@ c #FAE6E0", -"^@ c #FAEAE4", -"/@ c #F9DED6", -"(@ c #F5CABC", -"_@ c #EE9E83", -":@ c #E3734D", -"<@ c #D1613C", -"[@ c #BC5F40", -"}@ c #A26F5E", -"|@ c #8D827F", -"1@ c #878687", -"2@ c #878787", -"3@ c #868787", -"4@ c #8A8A8A", -"5@ c #868A8C", -"6@ c #808486", -"7@ c #867F7C", -"8@ c #927970", -"9@ c #A46F5C", -"0@ c #B96B4E", -"a@ c #D07959", -"b@ c #E48E6F", -"c@ c #F0A78D", -"d@ c #F7C1AE", -"e@ c #FBD9CD", -"f@ c #FCEBE5", -"g@ c #FCF0EB", -"h@ c #FCEFEA", -"i@ c #FBECE6", -"j@ c #FBEAE4", -"k@ c #FBE9E3", -"l@ c #FBE9E2", -"m@ c #FBEBE5", -"n@ c #FBECE7", -"o@ c #FCF1EC", -"p@ c #FCECE7", -"q@ c #FBE1D8", -"r@ c #F9C9B9", -"s@ c #F3AE95", -"t@ c #E89579", -"u@ c #D88062", -"v@ c #C46F52", -"w@ c #AF684F", -"x@ c #9C7466", -"y@ c #8C8380", -"z@ c #868687", -"A@ c #868889", -"B@ c #8E9091", -"C@ c #AAA9A9", -"D@ c #BCBCBC", -"E@ c #828587", -"F@ c #937A71", -"G@ c #A86F5A", -"H@ c #C46643", -"I@ c #DF6C41", -"J@ c #ED9A7B", -"K@ c #F5CCBD", -"L@ c #F9E0D7", -"M@ c #FBEBE4", -"N@ c #FAE8E1", -"O@ c #F6D0C2", -"P@ c #EFAD96", -"Q@ c #E47E5A", -"R@ c #D45B30", -"S@ c #B76649", -"T@ c #9B7D72", -"U@ c #8E8582", -"V@ c #878989", -"W@ c #828688", -"X@ c #897F7B", -"Y@ c #99776B", -"Z@ c #AF6C54", -"`@ c #C76A48", -" # c #DE8260", -".# c #F0A487", -"+# c #F8C5B2", -"@# c #FAE0D6", -"## c #FCEAE4", -"$# c #FCECE6", -"%# c #FBE8E0", -"&# c #FBE7E0", -"*# c #FBE7DF", -"=# c #FBE2D9", -"-# c #F8CEBF", -";# c #F3AD94", -"># c #E88C6B", -",# c #D37350", -"'# c #BB6647", -")# c #A47260", -"!# c #91837E", -"~# c #888787", -"{# c #878A8A", -"]# c #99786B", -"^# c #B36B50", -"/# c #CD6842", -"(# c #E4754C", -"_# c #F1A98F", -":# c #F8DDD3", -"<# c #FAE8E0", -"[# c #FAE5DD", -"}# c #FAE4DC", -"|# c #FAE6DF", -"1# c #F9DBD0", -"2# c #F4C5B3", -"3# c #EB8E6B", -"4# c #DB5E2F", -"5# c #BE6443", -"6# c #A17A6B", -"7# c #92847F", -"8# c #888A8B", -"9# c #848788", -"0# c #8B827E", -"a# c #9A7C70", -"b# c #B36D53", -"c# c #CD6942", -"d# c #E2835F", -"e# c #F2A88D", -"f# c #F8CBBA", -"g# c #FAE6DE", -"h# c #FAE3DA", -"i# c #FAE2D9", -"j# c #F9E1D9", -"k# c #FAE1D8", -"l# c #FAE0D8", -"m# c #FAE0D7", -"n# c #FAE3DB", -"o# c #F9D8CC", -"p# c #F5B59D", -"q# c #D7734D", -"r# c #C06542", -"s# c #A7735F", -"t# c #938783", -"u# c #8A8B8B", -"v# c #949596", -"w# c #BDBDBD", -"x# c #84898A", -"y# c #9B7C6F", -"z# c #B46F54", -"A# c #CD6A42", -"B# c #E47448", -"C# c #F1A78A", -"D# c #F8DACF", -"E# c #F9DFD5", -"F# c #F9DED4", -"G# c #F9DDD3", -"H# c #F9DED5", -"I# c #F8D8CC", -"J# c #EC8C67", -"K# c #DD5A28", -"L# c #BF6542", -"M# c #A27F71", -"N# c #938883", -"O# c #8D8D8D", -"P# c #8D8F90", -"Q# c #BFBFBF", -"R# c #919293", -"S# c #888989", -"T# c #8A8685", -"U# c #95827B", -"V# c #AF6E54", -"W# c #CC6237", -"X# c #E07950", -"Y# c #EF9D7C", -"Z# c #F6C3AE", -"`# c #FAE2DA", -" $ c #F9DCD1", -".$ c #F8DBD0", -"+$ c #F8DBD1", -"@$ c #F8DCD0", -"#$ c #F8DCD1", -"$$ c #F8DBCF", -"%$ c #F7D5C8", -"&$ c #F2A78A", -"*$ c #E8784D", -"=$ c #D5693F", -"-$ c #BF6A48", -";$ c #A57A69", -">$ c #908C8B", -",$ c #8B8E90", -"'$ c #BEBEBE", -")$ c #888B8D", -"!$ c #A87865", -"~$ c #C5643D", -"{$ c #E05F2A", -"]$ c #ED906A", -"^$ c #F4C7B4", -"/$ c #F7D7C9", -"($ c #F8D9CD", -"_$ c #F8DACE", -":$ c #F7D8CB", -"<$ c #F7D7CB", -"[$ c #F8DAD0", -"}$ c #F3C0AD", -"|$ c #EDA183", -"1$ c #E7774B", -"2$ c #DA5A27", -"3$ c #B96C4D", -"4$ c #998780", -"5$ c #8F8D8C", -"6$ c #949696", -"7$ c #C0C0C0", -"8$ c #9C9C9D", -"9$ c #878A8B", -"0$ c #8E8A88", -"a$ c #A77966", -"b$ c #C46A45", -"c$ c #D86A3D", -"d$ c #E8794C", -"e$ c #F2A788", -"f$ c #F7D3C4", -"g$ c #F8DBCE", -"h$ c #F8D7C9", -"i$ c #F8D6C8", -"j$ c #F7D6C8", -"k$ c #F8D5C8", -"l$ c #F8D5C9", -"m$ c #F7D6C7", -"n$ c #F7D5C7", -"o$ c #F6D5C7", -"p$ c #F6D4C7", -"q$ c #F7D7CA", -"r$ c #F7D6C9", -"s$ c #F6D0C1", -"t$ c #F2BEA9", -"u$ c #ED8D66", -"v$ c #E2612E", -"w$ c #CC653B", -"x$ c #B4775E", -"y$ c #9D847A", -"z$ c #8D9295", -"A$ c #C1C1C1", -"B$ c #939495", -"C$ c #8C8A88", -"D$ c #98867E", -"E$ c #BA6E4E", -"F$ c #DC5E2A", -"G$ c #E87648", -"H$ c #EC9B7A", -"I$ c #F2BBA4", -"J$ c #F7D4C5", -"K$ c #F8D8CA", -"L$ c #F7D3C5", -"M$ c #F6D2C4", -"N$ c #F6D2C3", -"O$ c #F6D1C2", -"P$ c #EFA384", -"Q$ c #E57345", -"R$ c #DD6433", -"S$ c #CF663B", -"T$ c #AF7A64", -"U$ c #918F8E", -"V$ c #8B9093", -"W$ c #8B9092", -"X$ c #8A8C8D", -"Y$ c #99847B", -"Z$ c #B07A62", -"`$ c #CA6539", -" % c #E15C24", -".% c #EC8458", -"+% c #F1B49A", -"@% c #F5C8B6", -"#% c #F7D2C3", -"$% c #F6D0C0", -"%% c #F6D1C1", -"&% c #F6D1C0", -"*% c #F6D0BF", -"=% c #F7D0BF", -"-% c #F7D0C0", -";% c #F6CFBF", -">% c #F1B197", -",% c #EA8A63", -"'% c #E56E3C", -")% c #DB602C", -"!% c #BE704F", -"~% c #A0877C", -"{% c #938D8A", -"]% c #999B9B", -"^% c #C2C2C2", -"/% c #8E8E8E", -"(% c #878D8F", -"_% c #A97E6B", -":% c #C96D45", -"<% c #D85F2B", -"[% c #E1622A", -"}% c #EC926A", -"|% c #F4C5B0", -"1% c #F6CEBD", -"2% c #F6CDBC", -"3% c #F6CDBB", -"4% c #F6CCBB", -"5% c #F3BBA4", -"6% c #EEA282", -"7% c #EA7C4D", -"8% c #E15E26", -"9% c #CC673C", -"0% c #B47C64", -"a% c #A0897F", -"b% c #939393", -"c% c #939698", -"d% c #C3C3C3", -"e% c #9D9E9E", -"f% c #8B8C8B", -"g% c #968A84", -"h% c #B7775B", -"i% c #D86634", -"j% c #E1632C", -"k% c #E4703D", -"l% c #ED9E7A", -"m% c #F5CAB6", -"n% c #F6CBB9", -"o% c #F6CBB8", -"p% c #F6CBB7", -"q% c #F6CAB7", -"r% c #F5CAB7", -"s% c #F5C5B0", -"t% c #F2B59B", -"u% c #EB885C", -"v% c #E25F26", -"w% c #D9602B", -"x% c #CA7048", -"y% c #AD8370", -"z% c #8F9597", -"A% c #C4C4C4", -"B% c #969899", -"C% c #948A85", -"D% c #A48475", -"E% c #C4714B", -"F% c #E2632A", -"G% c #E86B33", -"H% c #E78052", -"I% c #EEA686", -"J% c #F5C9B5", -"K% c #F6CEBB", -"L% c #F5C9B4", -"M% c #F5C8B4", -"N% c #F5C8B3", -"O% c #F4C2AC", -"P% c #EB926A", -"Q% c #E25C20", -"R% c #DC6631", -"S% c #BA7C60", -"T% c #98928F", -"U% c #909495", -"V% c #C5C5C5", -"W% c #909496", -"X% c #8F9091", -"Y% c #A1867A", -"Z% c #B87B5E", -"`% c #D06C3D", -" & c #E46429", -".& c #E8713A", -"+& c #E9885C", -"@& c #EFAA8A", -"#& c #F5C7B2", -"$& c #F5CBB7", -"%& c #F4C6B1", -"&& c #F4C7B1", -"*& c #F5C7B1", -"=& c #F4C7B0", -"-& c #F4C6B0", -";& c #F4C6AF", -">& c #F4C5AF", -",& c #F5C6B0", -"'& c #EC9770", -")& c #E36931", -"!& c #E55E21", -"~& c #E2642B", -"{& c #C57652", -"]& c #A68A7D", -"^& c #98908C", -"/& c #9E9FA0", -"(& c #8C9294", -"_& c #AD826E", -":& c #CD7248", -"<& c #DB6832", -"[& c #E3662C", -"}& c #E77641", -"|& c #EA8E63", -"1& c #EFAC8B", -"2& c #F4C4AD", -"3& c #F4C4AC", -"4& c #F4C3AC", -"5& c #ED9A73", -"6& c #E56F39", -"7& c #E66328", -"8& c #E3652C", -"9& c #D07045", -"0& c #B88066", -"a& c #A38C81", -"b& c #999C9E", -"c& c #C6C6C6", -"d& c #8C9092", -"e& c #95908E", -"f& c #B77E64", -"g& c #DB6D39", -"h& c #E3652A", -"i& c #E4682E", -"j& c #E87B48", -"k& c #EC956B", -"l& c #F0AE8F", -"m& c #F4C2AA", -"n& c #F5C5AE", -"o& c #F3C1A9", -"p& c #F3C1AA", -"q& c #F3C2AA", -"r& c #F3C0A8", -"s& c #F3C0A9", -"t& c #F4C1A8", -"u& c #ED9C76", -"v& c #E67641", -"w& c #E6692E", -"x& c #E4672C", -"y& c #D96C39", -"z& c #C97851", -"A& c #AE8977", -"B& c #979899", -"C& c #959A9D", -"D& c #A1A2A3", -"E& c #90908F", -"F& c #9C8D86", -"G& c #C17B5A", -"H& c #E46A30", -"I& c #E86526", -"J& c #E56A2F", -"K& c #E97F4C", -"L& c #ED9970", -"M& c #F1AF90", -"N& c #F4C0A7", -"O& c #F4C0A6", -"P& c #F3BFA6", -"Q& c #F3BEA6", -"R& c #F3BEA5", -"S& c #F3BEA4", -"T& c #ED9E77", -"U& c #E77B47", -"V& c #E66D34", -"W& c #E4692E", -"X& c #E1692F", -"Y& c #D7713F", -"Z& c #B7866D", -"`& c #93999C", -" * c #C7C7C7", -".* c #9D9FA0", -"+* c #998E88", -"@* c #AA8877", -"#* c #CA7951", -"$* c #E66B2F", -"%* c #E96727", -"&* c #E66C30", -"** c #E97F4A", -"=* c #ED966B", -"-* c #F1AC8B", -";* c #F4BDA3", -">* c #F4BEA3", -",* c #F3BDA3", -"'* c #F3BDA2", -")* c #F3BCA2", -"!* c #F3BCA1", -"~* c #ED9C74", -"{* c #E77A44", -"]* c #E56E34", -"^* c #E46B30", -"/* c #E6692B", -"(* c #E06E35", -"_* c #C08264", -":* c #A09792", -"<* c #A9AAAA", -"[* c #C8C8C8", -"}* c #999D9E", -"|* c #A28C80", -"1* c #B98367", -"2* c #D27749", -"3* c #E66E31", -"4* c #E86A2A", -"5* c #E97D46", -"6* c #EC9163", -"7* c #F0A884", -"8* c #F3BB9F", -"9* c #F3BEA3", -"0* c #F3BA9E", -"a* c #F4BEA4", -"b* c #ED996F", -"c* c #E7773F", -"d* c #E56E32", -"e* c #E56D31", -"f* c #E96A2B", -"g* c #C7805B", -"h* c #A89388", -"i* c #9B9795", -"j* c #A6A7A8", -"k* c #C9C9C9", -"l* c #969A9D", -"m* c #AB8B7A", -"n* c #C57F5B", -"o* c #D97643", -"p* c #E77032", -"q* c #E86D2D", -"r* c #E67032", -"s* c #E97B44", -"t* c #EC8D5D", -"u* c #F0A57F", -"v* c #F3BA9C", -"w* c #F3BCA0", -"x* c #F3B99C", -"y* c #F3B99B", -"z* c #F3B89B", -"A* c #F3B89A", -"B* c #F2B89A", -"C* c #E67439", -"D* c #E56D30", -"E* c #E66F32", -"F* c #E96C2C", -"G* c #CD7D54", -"H* c #B18E7C", -"I* c #A2958F", -"J* c #A4A6A7", -"K* c #CACACA", -"L* c #93989B", -"M* c #B28A75", -"N* c #D07C50", -"O* c #DF753E", -"P* c #E77134", -"Q* c #E86F30", -"R* c #E87A40", -"S* c #EB8855", -"T* c #EFA179", -"U* c #F3B899", -"V* c #F4BB9D", -"W* c #F3B898", -"X* c #F3B798", -"Y* c #F3B698", -"Z* c #F3B697", -"`* c #F3B696", -" = c #F2B696", -".= c #F2B495", -"+= c #EC9265", -"@= c #E67135", -"#= c #E56C2E", -"$= c #E67033", -"%= c #E96E2F", -"&= c #D27B4E", -"*= c #BB896F", -"== c #A89489", -"-= c #A2A5A7", -";= c #CBCBCB", -">= c #92989B", -",= c #B88970", -"'= c #DA7A46", -")= c #E57439", -"!= c #E87336", -"~= c #E87233", -"{= c #E8763A", -"]= c #EA8048", -"^= c #EE9C70", -"/= c #F3B695", -"(= c #F3B99A", -"_= c #F2B695", -":= c #F2B595", -"<= c #F2B594", -"[= c #F2B494", -"}= c #F2B493", -"|= c #F3B493", -"1= c #F2B392", -"2= c #F1AB86", -"3= c #EC8E5D", -"4= c #E77235", -"5= c #E66E30", -"6= c #E67134", -"7= c #E97031", -"8= c #D87A49", -"9= c #C48665", -"0= c #AE9284", -"a= c #A0A4A6", -"b= c #92989C", -"c= c #BD896C", -"d= c #E2783F", -"e= c #EA7435", -"f= c #E87537", -"g= c #E87536", -"h= c #E87434", -"i= c #E9793C", -"j= c #EE9565", -"k= c #F2B18E", -"l= c #F2B492", -"m= c #F2B391", -"n= c #F2B290", -"o= c #EF9F74", -"p= c #EB8853", -"q= c #E87436", -"r= c #E77132", -"s= c #E77336", -"t= c #E97234", -"u= c #DD7945", -"v= c #CD835C", -"w= c #B4917F", -"x= c #9FA4A6", -"y= c #9C9997", -"z= c #C18869", -"A= c #E7783B", -"B= c #EC7534", -"C= c #E87638", -"D= c #E97638", -"E= c #E97739", -"F= c #ED8F5B", -"G= c #F1A77F", -"H= c #F2B08B", -"I= c #F2B28F", -"J= c #F2B390", -"K= c #F2B28E", -"L= c #F2B18D", -"M= c #F2B08D", -"N= c #F2B08C", -"O= c #F0A37A", -"P= c #ED9261", -"Q= c #EB8249", -"R= c #E97637", -"S= c #E87334", -"T= c #E97435", -"U= c #E17941", -"V= c #D48155", -"W= c #B8917C", -"X= c #9DA3A5", -"Y= c #CCCCCC", -"Z= c #ACACAD", -"`= c #96999A", -" - c #9F9894", -".- c #C48866", -"+- c #E97839", -"@- c #EE7633", -"#- c #E97636", -"$- c #EC8851", -"%- c #EF9B6C", -"&- c #F1A87F", -"*- c #F2AF8A", -"=- c #F2AE89", -"-- c #EF9C6D", -";- c #EC874F", -">- c #EA7D40", -",- c #E97738", -"'- c #EA7637", -")- c #E5793E", -"!- c #DA804F", -"~- c #BC9179", -"{- c #9CA2A5", -"]- c #ACADAD", -"^- c #99999A", -"/- c #A49891", -"(- c #C78965", -"_- c #EA7A3A", -":- c #EE7835", -"<- c #E97A3B", -"[- c #E97939", -"}- c #E97A3A", -"|- c #EB8145", -"1- c #ED8D56", -"2- c #EF9F71", -"3- c #F2AE88", -"4- c #F2B18B", -"5- c #F2AE87", -"6- c #F2AE86", -"7- c #F2AD86", -"8- c #F2AD87", -"9- c #F1A87E", -"0- c #EE9360", -"a- c #EB7F43", -"b- c #EA793A", -"c- c #EA783A", -"d- c #EA7838", -"e- c #E87A3D", -"f- c #DE804B", -"g- c #BF9178", -"h- c #CECECE", -"i- c #CDCDCD", -"j- c #ACAEAE", -"k- c #9C9A99", -"l- c #A8988F", -"m- c #CA8A65", -"n- c #EA7C3C", -"o- c #EE7A37", -"p- c #EB8244", -"q- c #EE9663", -"r- c #F1AA81", -"s- c #F2AD85", -"t- c #F2AC84", -"u- c #F2AC83", -"v- c #F2AD84", -"w- c #F1A77C", -"x- c #F09E6E", -"y- c #ED8B53", -"z- c #EA7A3B", -"A- c #EB7A3A", -"B- c #E97B3C", -"C- c #E18049", -"D- c #C19277", -"E- c #9DA3A6", -"F- c #CFCFCF", -"G- c #ADAEAF", -"H- c #9E9B98", -"I- c #AA988E", -"J- c #CB8B64", -"K- c #EA7E3D", -"L- c #EF7C38", -"M- c #EA7D3D", -"N- c #EA7C3B", -"O- c #EB7F3E", -"P- c #ED8D53", -"Q- c #EF9C6B", -"R- c #F1A67B", -"S- c #F2AC82", -"T- c #F2AB82", -"U- c #F2AB81", -"V- c #F2AB80", -"W- c #F2AA80", -"X- c #F09E6D", -"Y- c #EE8F57", -"Z- c #EC8346", -"`- c #EA7B3B", -" ; c #EB7C3C", -".; c #EB7C3B", -"+; c #E48147", -"@; c #C39276", -"#; c #9DA3A7", -"$; c #AB998D", -"%; c #CC8C64", -"&; c #EB803E", -"*; c #EF7E39", -"=; c #EB7E3D", -"-; c #EC8546", -";; c #ED8E54", -">; c #F09D6B", -",; c #F2AA7F", -"'; c #F2AA7E", -"); c #F2A97E", -"!; c #F2A87E", -"~; c #F2A87D", -"{; c #F1A578", -"]; c #EE945E", -"^; c #EC8243", -"/; c #EB7E3C", -"(; c #EC7E3C", -"_; c #E58247", -":; c #C49376", -"<; c #9DA4A7", -"[; c #AEAFB0", -"}; c #9F9C99", -"|; c #AC9A8E", -"1; c #CC8D66", -"2; c #EC8240", -"3; c #EF803B", -"4; c #EC8140", -"5; c #EB803F", -"6; c #EB813F", -"7; c #EC8241", -"8; c #EC8748", -"9; c #EE9259", -"0; c #F09F6C", -"a; c #F1A677", -"b; c #F2A97C", -"c; c #F2A87C", -"d; c #F2A87B", -"e; c #F2A87A", -"f; c #F2A77A", -"g; c #F2A679", -"h; c #F0A06F", -"i; c #EF9660", -"j; c #ED8A4E", -"k; c #EC803F", -"l; c #EB7F3C", -"m; c #EC803E", -"n; c #E58449", -"o; c #C59578", -"p; c #9FA5A9", -"q; c #D0D0D0", -"r; c #B0B1B1", -"s; c #A09D9B", -"t; c #AC9B90", -"u; c #CD8F68", -"v; c #EC8341", -"w; c #F0823C", -"x; c #ED894A", -"y; c #EE9257", -"z; c #F09D69", -"A; c #F2A779", -"B; c #F2A678", -"C; c #F2A677", -"D; c #F2A676", -"E; c #F1A271", -"F; c #EF955D", -"G; c #ED8849", -"H; c #EC8342", -"I; c #EC823F", -"J; c #E4874C", -"K; c #C5977A", -"L; c #A1A6AA", -"M; c #D2D2D2", -"N; c #B2B2B3", -"O; c #A09F9E", -"P; c #AB9E94", -"Q; c #CD916A", -"R; c #ED8442", -"S; c #F1833D", -"T; c #EC8442", -"U; c #EC8542", -"V; c #ED8542", -"W; c #EC8441", -"X; c #ED8644", -"Y; c #ED8A4A", -"Z; c #EF9358", -"`; c #F19C66", -" > c #F1A270", -".> c #F2A778", -"+> c #F2A575", -"@> c #F2A574", -"#> c #F2A675", -"$> c #F2A372", -"%> c #F19D69", -"&> c #EF955C", -"*> c #EE8C4E", -"=> c #ED8443", -"-> c #EC8340", -";> c #ED8341", -">> c #EB8443", -",> c #E28950", -"'> c #C5997D", -")> c #A3A9AC", -"!> c #D1D1D1", -"~> c #B4B5B5", -"{> c #A0A1A2", -"]> c #AAA19A", -"^> c #CC936E", -"/> c #ED8643", -"(> c #F1843E", -"_> c #EE8A49", -":> c #EF9053", -"<> c #F09A62", -"[> c #F1A370", -"}> c #F2A573", -"|> c #F2A472", -"1> c #F2A473", -"2> c #F2A270", -"3> c #F09359", -"4> c #EE8949", -"5> c #ED8543", -"6> c #EE8542", -"7> c #EA8747", -"8> c #E08C56", -"9> c #C49B81", -"0> c #A5ABAE", -"a> c #9FA3A6", -"b> c #A8A4A1", -"c> c #CA9673", -"d> c #EC8845", -"e> c #F1863F", -"f> c #EE8844", -"g> c #EE8845", -"h> c #ED8743", -"i> c #EE8B4A", -"j> c #EF9153", -"k> c #EF975D", -"l> c #F09C65", -"m> c #F1A16B", -"n> c #F2A470", -"o> c #F2A572", -"p> c #F2A471", -"q> c #F2A370", -"r> c #F2A36F", -"s> c #F19C65", -"t> c #F0975E", -"u> c #EF9256", -"v> c #EE8C4D", -"w> c #EE8744", -"x> c #ED8744", -"y> c #EF8642", -"z> c #E88A4C", -"A> c #DC905D", -"B> c #C29D85", -"C> c #A7ACAF", -"D> c #D3D3D3", -"E> c #C89978", -"F> c #EA8B4A", -"G> c #F08942", -"H> c #EE8A46", -"I> c #EE8A47", -"J> c #EE8C4A", -"K> c #EF9354", -"L> c #F09B60", -"M> c #F1A068", -"N> c #F2A36E", -"O> c #F2A46F", -"P> c #F2A26E", -"Q> c #F2A26D", -"R> c #F2A26C", -"S> c #F1A16A", -"T> c #F19B61", -"U> c #F09457", -"V> c #EF8E4D", -"W> c #EE8946", -"X> c #EE8945", -"Y> c #EF8843", -"Z> c #E68D51", -"`> c #D89466", -" , c #C0A08A", -"., c #AAAEB1", -"+, c #A0A6AA", -"@, c #A6A7A7", -"#, c #C59B7E", -"$, c #E58F53", -"%, c #EE8C48", -"&, c #EE8C47", -"*, c #EF8B46", -"=, c #EF8C47", -"-, c #EE8B46", -";, c #EE8A45", -">, c #EF8F4C", -",, c #EF9353", -"', c #F09658", -"), c #F0995D", -"!, c #F19C61", -"~, c #F29E65", -"{, c #F2A068", -"], c #F2A26B", -"^, c #F2A36C", -"/, c #F2A26A", -"(, c #F19E65", -"_, c #F09A5D", -":, c #F09759", -"<, c #F09353", -"[, c #EF8F4E", -"}, c #EF8C48", -"|, c #EF8B47", -"1, c #EE8B47", -"2, c #F08A43", -"3, c #E39057", -"4, c #D39870", -"5, c #BDA390", -"6, c #AEB1B4", -"7, c #D4D4D4", -"8, c #A2A7AB", -"9, c #C29D84", -"0, c #DF935E", -"a, c #EA8F4E", -"b, c #EF8D48", -"c, c #F08D47", -"d, c #EF8E4A", -"e, c #EF904D", -"f, c #F09453", -"g, c #F1985A", -"h, c #F29C60", -"i, c #F29F65", -"j, c #F2A067", -"k, c #F2A168", -"l, c #F2A066", -"m, c #F19D62", -"n, c #F0995C", -"o, c #F09555", -"p, c #EF914E", -"q, c #EF8E49", -"r, c #F18B44", -"s, c #E0935E", -"t, c #CD9D7C", -"u, c #BAA697", -"v, c #B2B5B7", -"w, c #D5D5D5", -"x, c #A7ABAE", -"y, c #BEA08B", -"z, c #D7986B", -"A, c #E69256", -"B, c #F08F49", -"C, c #F18E47", -"D, c #EF8E48", -"E, c #EF8F4A", -"F, c #F0914D", -"G, c #F09451", -"H, c #F19654", -"I, c #F19857", -"J, c #F19959", -"K, c #F19A5B", -"L, c #F19B5D", -"M, c #F29C5F", -"N, c #F29D60", -"O, c #F29D61", -"P, c #F29E62", -"Q, c #F29E61", -"R, c #F29B5D", -"S, c #F1995A", -"T, c #F19758", -"U, c #F09655", -"V, c #F09452", -"W, c #F0914E", -"X, c #F08F4A", -"Y, c #EF8E47", -"Z, c #EF8D47", -"`, c #F08E49", -" ' c #F08E48", -".' c #F28D44", -"+' c #DC9866", -"@' c #C6A38A", -"#' c #B7A99F", -"$' c #B5B7B9", -"%' c #D6D6D6", -"&' c #ACB0B2", -"*' c #B9A394", -"=' c #CE9D79", -"-' c #E1965F", -";' c #F0914B", -">' c #F29048", -",' c #F0924D", -"'' c #F0944F", -")' c #F09652", -"!' c #F19755", -"~' c #F19856", -"{' c #F19A5A", -"]' c #F19958", -"^' c #F19552", -"/' c #F0934F", -"(' c #F0914C", -"_' c #F0904B", -":' c #F0904A", -"<' c #F38E45", -"[' c #D89C70", -"}' c #BFA998", -"|' c #B3ADA8", -"1' c #B9BABB", -"2' c #B1B3B5", -"3' c #B4A79D", -"4' c #C4A289", -"5' c #DC9A68", -"6' c #F1934C", -"7' c #F49248", -"8' c #F0934D", -"9' c #F0934C", -"0' c #F0924C", -"a' c #F0924B", -"b' c #F0914A", -"c' c #F1944E", -"d' c #F19550", -"e' c #F19551", -"f' c #F19652", -"g' c #F19653", -"h' c #F19651", -"i' c #F1954F", -"j' c #F1924C", -"k' c #F1914B", -"l' c #F39047", -"m' c #EF924E", -"n' c #D4A07A", -"o' c #B9AEA6", -"p' c #B0B0AF", -"q' c #BDBDBE", -"r' c #B6B7B8", -"s' c #AFAAA6", -"t' c #BAA799", -"u' c #D69E72", -"v' c #F1954E", -"w' c #F49449", -"x' c #F1944D", -"y' c #F1934D", -"z' c #EB9657", -"A' c #CFA484", -"B' c #B4B2B1", -"C' c #AEB2B6", -"D' c #BBBBBC", -"E' c #ABACAD", -"F' c #B3ACA6", -"G' c #D1A27D", -"H' c #EE9854", -"I' c #F4964D", -"J' c #F2964F", -"K' c #F2974F", -"L' c #F2964E", -"M' c #F2954E", -"N' c #F2954F", -"O' c #F3954C", -"P' c #ED9856", -"Q' c #E29D68", -"R' c #CAA990", -"S' c #B1B5B9", -"T' c #D7D7D7", -"U' c #A9AEB2", -"V' c #CAA688", -"W' c #E79C60", -"X' c #F09953", -"Y' c #F39850", -"Z' c #F4984F", -"`' c #F29850", -" ) c #F29750", -".) c #F4964C", -"+) c #E79D62", -"@) c #D7A57D", -"#) c #C4AD9B", -"$) c #B5B8BA", -"%) c #D9D9D9", -"&) c #D8D8D8", -"*) c #ADB1B5", -"=) c #AFB0B1", -"-) c #C2AA96", -";) c #D9A276", -">) c #E99D5F", -",) c #F49A50", -"') c #F6994F", -")) c #F49A52", -"!) c #F49A51", -"~) c #F49951", -"{) c #F39951", -"]) c #F29951", -"^) c #F29950", -"/) c #F5974B", -"() c #F3984F", -"_) c #DFA270", -":) c #CAAD95", -"<) c #BCB2A9", -"[) c #B9BBBD", -"}) c #DADADA", -"|) c #B4B6B8", -"1) c #BAADA2", -"2) c #CAA98E", -"3) c #E1A26E", -"4) c #F49C53", -"5) c #F79B4F", -"6) c #F49C52", -"7) c #F49B52", -"8) c #F39B52", -"9) c #F39A52", -"0) c #F5984E", -"a) c #F19A54", -"b) c #D8A77F", -"c) c #BEB4AB", -"d) c #B6B6B5", -"e) c #BFBFC0", -"f) c #BABBBC", -"g) c #B3B0AE", -"h) c #BEAFA3", -"i) c #D8A77D", -"j) c #F29F59", -"k) c #F69D52", -"l) c #F49E54", -"m) c #F59D54", -"n) c #F49D54", -"o) c #F49D53", -"p) c #F59D53", -"q) c #F39C53", -"r) c #F39D53", -"s) c #F49C51", -"t) c #F19D57", -"u) c #E8A166", -"v) c #D0AC8F", -"w) c #BAB8B5", -"x) c #B6B9BB", -"y) c #C5C5C6", -"z) c #C1C2C2", -"A) c #AFB3B6", -"B) c #B5B3B2", -"C) c #CFAB8C", -"D) c #EBA365", -"E) c #F3A058", -"F) c #F59F55", -"G) c #F69F54", -"H) c #F69D51", -"I) c #EAA266", -"J) c #DBA97F", -"K) c #C9B29F", -"L) c #B8BBBE", -"M) c #DBDBDB", -"N) c #B2B6B9", -"O) c #B4B5B6", -"P) c #C4B09E", -"Q) c #D9AA82", -"R) c #EAA467", -"S) c #F7A054", -"T) c #F8A053", -"U) c #F6A156", -"V) c #F5A157", -"W) c #F6A056", -"X) c #F6A057", -"Y) c #F6A157", -"Z) c #F5A056", -"`) c #F5A055", -" ! c #F49F55", -".! c #F4A055", -"+! c #F79E51", -"@! c #F49F56", -"#! c #E1A877", -"$! c #CCB29D", -"%! c #C0B7B0", -"&! c #BABBBB", -"*! c #BDBFC1", -"=! c #DCDCDC", -"-! c #DDDDDD", -";! c #B8BABB", -">! c #BAB4AE", -",! c #C6B19F", -"'! c #DFAA7B", -")! c #F6A359", -"!! c #F9A254", -"~! c #F6A358", -"{! c #F6A258", -"]! c #F6A257", -"^! c #F5A156", -"/! c #EFA360", -"(! c #D7AE8B", -"_! c #BFBAB6", -":! c #C3C4C4", -"~ c #DCB792", -",~ c #CCBDB0", -"'~ c #C3C0BC", -")~ c #C0C2C3", -"!~ c #C4C5C7", -"~~ c #E0E0E0", -"{~ c #C2C3C3", -"]~ c #BDBFC0", -"^~ c #C2BFBC", -"/~ c #D5B99B", -"(~ c #EAB278", -"_~ c #F4AF67", -":~ c #F9AD5F", -"<~ c #FAAD5D", -"[~ c #F9AC5F", -"}~ c #FBAB5C", -"|~ c #EDB175", -"1~ c #DDB792", -"2~ c #CEBEAE", -"3~ c #C0C3C5", -"4~ c #E1E1E1", -"5~ c #BEC0C3", -"6~ c #BFC0C2", -"7~ c #C8BDB2", -"8~ c #D5B99C", -"9~ c #E4B584", -"0~ c #F1B16E", -"a~ c #F8AF62", -"b~ c #FCAE5D", -"c~ c #FBAF5D", -"d~ c #FAAF60", -"e~ c #F9AF61", -"f~ c #FAAE60", -"g~ c #FAAE61", -"h~ c #FAAF61", -"i~ c #F9AE60", -"j~ c #FAAE5F", -"k~ c #FCAD5C", -"l~ c #FCAE5C", -"m~ c #F5B069", -"n~ c #EBB47C", -"o~ c #DDBA96", -"p~ c #CFBFAF", -"q~ c #C6C2BD", -"r~ c #C2C4C6", -"s~ c #C4C6C8", -"t~ c #C2C0BE", -"u~ c #D2BBA3", -"v~ c #E5B684", -"w~ c #F2B36F", -"x~ c #FAB162", -"y~ c #FBB160", -"z~ c #FAB062", -"A~ c #FAB061", -"B~ c #FBB05E", -"C~ c #F9B163", -"D~ c #EBB77E", -"E~ c #DBBD9D", -"F~ c #CEC2B5", -"G~ c #C3C5C7", -"H~ c #E2E2E2", -"I~ c #BFC1C4", -"J~ c #C7C0B7", -"K~ c #D3BDA6", -"L~ c #DFBA92", -"M~ c #F5B46D", -"N~ c #FCB261", -"O~ c #FDB25F", -"P~ c #FBB262", -"Q~ c #FBB263", -"R~ c #FAB363", -"S~ c #FAB263", -"T~ c #FCB260", -"U~ c #FCB25F", -"V~ c #FCB160", -"W~ c #F9B265", -"X~ c #F1B675", -"Y~ c #E6BA89", -"Z~ c #DABFA0", -"`~ c #C7C4C1", -" { c #C3C5C8", -".{ c #C6C8CA", -"+{ c #C2C3C5", -"@{ c #CDC1B4", -"#{ c #D9BD9E", -"${ c #EAB982", -"%{ c #F8B56A", -"&{ c #FBB464", -"*{ c #FCB463", -"={ c #F9B468", -"-{ c #F3B673", -";{ c #E2BC92", -">{ c #D1C3B2", -",{ c #C9C5C0", -"'{ c #C4C5C6", -"){ c #E3E3E3", -"!{ c #C5C7CA", -"~{ c #C2C5C8", -"{{ c #C6C4C1", -"]{ c #CEC2B6", -"^{ c #D8C0A5", -"/{ c #E2BD93", -"({ c #EBBA83", -"_{ c #F3B874", -":{ c #FAB669", -"<{ c #FEB561", -"[{ c #FDB563", -"}{ c #FDB564", -"|{ c #FCB565", -"1{ c #FCB666", -"2{ c #FBB666", -"3{ c #FCB665", -"4{ c #FCB564", -"5{ c #FDB562", -"6{ c #FCB664", -"7{ c #F7B76E", -"8{ c #EFB97C", -"9{ c #E6BB8B", -"0{ c #DDBE9C", -"a{ c #D2C2B0", -"b{ c #C9C6C1", -"c{ c #C8CACB", -"d{ c #E4E4E4", -"e{ c #C6C6C7", -"f{ c #C8C6C5", -"g{ c #CCC5BD", -"h{ c #D9C1A6", -"i{ c #E7BD8B", -"j{ c #F3BA77", -"k{ c #FBB869", -"l{ c #FDB766", -"m{ c #FCB767", -"n{ c #FCB766", -"o{ c #FCB765", -"p{ c #FCB867", -"q{ c #F8B96E", -"r{ c #EDBC81", -"s{ c #E0BF99", -"t{ c #D3C3B1", -"u{ c #C8C6C4", -"v{ c #C6C7C8", -"w{ c #E5E5E5", -"x{ c #D8D7D7", -"y{ c #CBCCCD", -"z{ c #CDC5BB", -"A{ c #D6C3AC", -"B{ c #DEC19F", -"C{ c #E5C093", -"D{ c #ECBE87", -"E{ c #F1BC7D", -"F{ c #F7BA72", -"G{ c #FBB96A", -"H{ c #FEB965", -"I{ c #FFB863", -"J{ c #FFB864", -"K{ c #FEB966", -"L{ c #FFB964", -"M{ c #FCB967", -"N{ c #F8B96D", -"O{ c #F4BB77", -"P{ c #EEBD82", -"Q{ c #E8BE8D", -"R{ c #E1C099", -"S{ c #D9C2A6", -"T{ c #D2C4B3", -"U{ c #CAC5C0", -"V{ c #C4C7CA", -"W{ c #C5C8CB", -"X{ c #C9CACB", -"Y{ c #CECECF", -"Z{ c #C7C8C8", -"`{ c #CAC8C5", -" ] c #CFC7BD", -".] c #D8C4AC", -"+] c #E3C198", -"@] c #EDBF86", -"#] c #F5BD77", -"$] c #FABC6E", -"%] c #FDBB69", -"&] c #FEBB68", -"*] c #FDBB68", -"=] c #FCBB6A", -"-] c #F7BC72", -";] c #F0BD7E", -">] c #E7C08F", -",] c #DDC3A2", -"'] c #D2C5B5", -")] c #CAC7C4", -"!] c #E6E6E6", -"~] c #D3D3D4", -"{] c #CFCFD0", -"]] c #CACBCD", -"^] c #C6C9CC", -"/] c #C8C8C7", -"(] c #CEC7BE", -"_] c #D4C5B3", -":] c #D9C4AA", -"<] c #DFC3A1", -"[] c #E3C299", -"}] c #E7C292", -"|] c #EBC18C", -"1] c #EEC187", -"2] c #F0C083", -"3] c #F2BF7F", -"4] c #F4BF7C", -"5] c #F5BF7A", -"6] c #F6BF78", -"7] c #F7BE76", -"8] c #F6BE77", -"9] c #F4BF7B", -"0] c #F3BF7D", -"a] c #F1BF80", -"b] c #EFC084", -"c] c #ECC089", -"d] c #E9C18F", -"e] c #E5C296", -"f] c #E0C39D", -"g] c #DCC3A5", -"h] c #D6C5AF", -"i] c #D0C6B9", -"j] c #CAC7C3", -"k] c #C5C8CC", -"l] c #C8CACC", -"m] c #CCCDCE", -"n] c #D1D1D2", -"o] c #C9C9CA", -"p] c #CCC9C4", -"q] c #D0C8BD", -"r] c #D6C7B3", -"s] c #DCC6A9", -"t] c #E0C5A1", -"u] c #E4C49A", -"v] c #E7C395", -"w] c #E9C391", -"x] c #EBC28D", -"y] c #ECC28B", -"z] c #EBC28C", -"A] c #EAC28F", -"B] c #E8C393", -"C] c #E5C498", -"D] c #E2C49D", -"E] c #DEC4A4", -"F] c #D9C5AC", -"G] c #D3C7B8", -"H] c #CDC9C3", -"I] c #CAC9C7", -"J] c #E7E7E7", -"K] c #E8E8E8", -"L] c #D4D4D5", -"M] c #CDCED0", -"N] c #C9CCCE", -"O] c #C6C9CD", -"P] c #C4C8CC", -"Q] c #CCC8C2", -"R] c #CFC7BC", -"S] c #D2C7B8", -"T] c #D4C6B4", -"U] c #D6C6B1", -"V] c #D7C6AF", -"W] c #D8C6AD", -"X] c #D9C5AB", -"Y] c #D8C5AC", -"Z] c #D8C6AE", -"`] c #D7C6B0", -" ^ c #D5C6B2", -".^ c #D3C6B5", -"+^ c #D1C6B9", -"@^ c #C7C8CA", -"#^ c #C5C9CC", -"$^ c #C8CBCE", -"%^ c #CCCED0", -"&^ c #CFD0D1", -"*^ c #E9E9E9", -"=^ c #D1D2D3", -"-^ c #CFD0D2", -";^ c #CDCFD1", -">^ c #CBCDD0", -",^ c #CACCD0", -"'^ c #C9CCCF", -")^ c #C9CCD0", -"!^ c #CACDD0", -"~^ c #CED0D2", -"{^ c #D0D1D2", -"]^ c #D2D2D3", -"^^ c #EAEAEA", -"/^ c #EBEBEB", -"(^ c #ECECEC", -"_^ c #EDEDED", -":^ c #EEEEEE", -"<^ c #EFEFEF", -"[^ c #F0F0F0", -" . . . . . . . . . . . . . . . . . . . . . . . . . ", -" . . . . . . . . . . . . . . . . . . . . . . . . . . . ", -" + + + + + . . . . . . . . . . . . . . . . . . . . . . . . . + + + + + ", -" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ", -" @ @ @ @ + + + + + + + @ + + + + + + + + + + + + + + + + + + + + + @ + + + + + + + @ @ @ @ ", -" @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ", -" # # @ @ @ @ @ @ @ @ @ @ @ @ @ @ # # # # $ $ $ $ $ $ $ $ $ $ $ # # # # @ @ @ @ @ @ @ @ @ @ @ @ @ # # # ", -" # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ", -" % % % $ $ $ $ $ $ $ $ $ $ $ % % & & * & % # . = - ; ; > , , , > ' - ) ! + $ & & & & % % $ $ $ $ $ $ $ $ $ $ $ $ % % % ", -" % % % % % % % % % % % % % % % % % % % % $ @ = > ~ { ] ^ / ( ( ( ^ ] { _ : ' ! # % % % % % % % % % % % % % % % % % % % % % ", -" & & % % % % & & & & & & & * < * $ . ' [ } ] ( | 1 2 3 4 5 6 7 7 7 8 4 3 9 0 a b ^ { c > ) @ & < * * & & % % % & % % % % % & & ", -" & & & & & & & & & & & & & & * & # = [ ^ d e f g h g g g g g g g g g g g g g g g g i j k b } ' @ % & & & & & & & & & & & & & & & & ", -" * & & & & & & & & * * < l * # ) ~ ] m n o p q r s t u v w x y z A A B C D E F G H I J K L M N 1 / } > + * l l < * * * * * * * * * * < ", -" * * * * * * * * * * * * < * # ' ] O P g h g g g Q g R S T U V W X Y Z ` ...+.@.#.$.%.g g g g g h &.*.b : @ * < < < < < < < < < < < < < < ", -" l < < < < < < < < l l l < + , =.-.;.>.,.'.).!.~.{.].^./.(._.:.<.[.}.|.|.1.2.3.4.5.6.7.8.9.0.a.b.c.d.e.f.g.h.^ [ = % i.i.l l l l l l l < < l l ", -" l l l l l l l l l l l l < # [ -.j g h g j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.y.z.A.B.C.D.E.F.G.H.I.J.K.L.M.&.N.i i f O O.) * l l l l l l l l l l l l l ", -" i.l l l l i.l l l P.P.l $ Q.R.S.T.U.e.V.W.X.Y.Z.:.`. +.+++@+#+$+%+&+*+=+-+-+;+>+,+'+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+p 2+( ~ . < P.i.i.l l l l l l l l i. ", -" i.i.i.i.i.i.i.i.i.i.P.i.$ ; m f g g 3+4+5+6+7+8+9+u.0+a+b+c+d+e+f+e+e+e+e+e+e+e+e+e+e+e+g+e+h+i+j+k+l+m+n+o+p+q+r+s+t+s+P k _ # l i.i.i.i.i.i.i.i.i.i.i.i. ", -" u+P.P.P.P.P.P.P.P.v+v+< . w+x+y+z+A+B+C+D+E+F+G+H+I+%+J+K+L+M+N+N+O+P+P+Q+R+S+S+S+R+Q+P+O+T+U+V+W+X+Y+Z+`+y. @.@+@@@#@$@%@f.&@*@O.- * P.u+u+P.P.P.P.P.P.P.P.u+ ", -" u+u+u+u+u+u+u+u+u+u+=@u++ _ S.s+-@i ;@>@,@'@)@!@~@{@]@e+g+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+e+^@e+/@(@_@:@<@[@}@|@1@2@3@4@R.. < u+v+u+u+u+u+u+u+u+u+u+u+ ", -" v+v+u+u+v+v+v+u+v+=@=@l + _ d 5@6@7@8@9@0@a@b@c@d@e@f@g@h@Q+i@j@k@k@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@k@j@m@n@g@o@p@q@r@s@t@u@v@w@x@y@z@A@B@R.C@l v+v+v+v+v+v+v+v+u+u+u+ ", -" v+v+v+v+v+v+v+v+v+v+D@v++ } S.f E@s+F@G@H@I@J@K@L@l@M@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@l@i@N@O@P@Q@R@S@T@U@j V@e ] + l v+=@v+v+v+v+v+v+v+v+ ", -" v+v+v+v+=@v+v+v+D@=@P.$ c S.5@W@X@Y@Z@`@ #.#+#@###$#M@%#&#*#*#*#*#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#&#*#&#*#&#%#l@S+M+=#-#;#>#,#'#)#!#~#{#2 ] = i.=@=@=@v+v+v+v+v+=@=@ ", -" =@=@=@=@=@=@=@=@D@=@$ : -.f q f ]#^#/#(#_#:#<#[#[#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#}#|#}#1#2#3#4#5#6#7#e 8#*.{ $ P.=@D@=@=@=@=@=@=@=@=@ ", -" D@D@=@=@=@=@=@D@D@=@i.; m 7 9#0#a#b#c#d#e#f#g#l@}#h#i#j#i#i#i#i#i#k#k#k#k#k#k#k#k#c+k#k#k#k#k#k#k#k#k#k#k#k#k#k#l#l#l#m#k#n#}#h#o#p#3#q#r#s#t#4@u#v#~ # D@w#D@D@D@D@D@D@D@D@D@ ", -" D@D@D@D@D@D@D@D@w#D@P.@ ] 4@x#j y#z#A#B#C#D#h#E#E#E#E#E#E#E#E#E#E#E#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#F#G#G#G#G#G#G#G#H#G#I#2#J#K#L#M#N#O#P#-.; u+w#w#w#w#w#w#w#w#D@D@D@ ", -" w#w#w#w#w#w#w#w#w#Q#w## } R#S#T#U#V#W#X#Y#Z#L@`# $1#.$.$.$+$@$@$@$#$#$.$.$.$.$.$.$.$.$1#.$.$$$$$$$$$$$$$$$$$.$.$.$$$D#D#D#D#D#D#D##${@F#%$&$*$=$-$;$>$,$O O.. i.'$Q#'$w#'$'$'$w#w#D@ ", -" w#w#w#'$'$'$'$'$'$'$Q#=@> O )$4@U#!$~${$]$^$/$($_$I#I#I#I#I#I#I#I#I#I#I#I#I#I#I#I#I#I#I#I#I#I#:$:$:$:$:$:$:$:$:$:$:$:$:$:$:$:$:$:$:$:$<$[$<$}$|$1$2$3$4$5$k 6$} # '$7$'$'$'$'$'$'$'$'$ ", -" '$'$'$'$Q#'$'$'$7$Q#u+@ 8$e 9$0$a$b$c$d$e$f$g$h$h$i$j$i$i$i$i$k$l$k$k$k$k$i$i$i$i$i$i$i$i$i$j$j$m$j$j$j$j$j$n$o$o$o$o$o$o$o$o$o$o$o$o$p$q$r$s$t$u$v$w$x$y$B@z$m ' v+'$Q#Q#Q#Q#Q#Q#Q#7$A$ ", -" Q#Q#Q#Q#Q#Q#Q#Q#A$Q#$ c B$e C$D$E$F$G$H$I$J$K$J$J$J$J$J$J$J$J$L$L$L$f$f$f$f$f$f$f$f$f$f$f$f$f$f$f$f$f$f$f$f$M$N$N$N$N$N$N$N$N$N$N$N$N$N$N$N$q$O$P$Q$R$S$T$U$V$S.c % =@7$A$7$7$7$7$7$A$A$A$ ", -" 7$7$7$7$7$7$7$A$'$) m W$X$Y$Z$`$ %.%+%@%#%f$$%$%$%%%$%&%$%s$s$s$s$$%$%$%$%$%$%$%$%$%*%*%*%=%-%-%-%-%-%-%-%*%;%;%;%;%;%;%;%;%;%;%;%;%;%;%;%n$#%>%,%'%)%!%~%{%S.]%> < A$^%A$A$A$A$A$A$A$A$ ", -" A$A$A$A$A$A$A$A$7$v+: /%(%O#_%:%<%[%}%|%*%1%1%2%2%2%2%2%2%2%2%2%2%2%2%2%2%2%2%2%2%2%2%3%3%3%3%3%3%3%3%3%3%3%3%3%3%3%3%3%3%3%3%3%4%4%4%4%4%4%;%4%5%6%7%8%9%0%a%b%c%R.+ 7$d%A$A$A$A$A$A$A$A$ ", -" ^%^%^%^%^%^%^%d%^%=@# e%O#f%g%h%i%j%k%l%m%*%n%n%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%p%p%p%p%p%p%p%p%q%r%q%q%q%p%q%q%q%q%q%p%q%q%q%q%q%q%q%n%q%s%t%u%v%w%x%y%-.z%m ' =@A$A$^%A$A$A$A$A$ ", -" ^%^%^%^%^%^%^%^%A%^%* : B%k C%D%E%F%G%H%I%J%K%J%J%J%J%J%J%J%J%J%L%L%L%L%L%L%L%L%L%L%L%L%L%L%L%L%L%L%L%L%M%N%N%N%N%N%N%N%N%N%N%N%N%N%N%N%N%N%N%N%N%N%o%O%P%F%Q%R%S%T%U%-.[ * w#^%d%^%^%^%^%^%^% ", -" ^%^%^%^%^%^%^%^%V%^%@ R.W%X%Y%Z%`% &.&+&@&#&$&%&%&%&&&%&%&%&&&&&*&=&=&=&=&=&=&=&=&=&-&-&-&-&-&-&-&-&-&-&-&;&>&;&;&;&;&;&;&;&;&;&>&;&;&;&;&;&;&-&,&-&p%>&'&)&!&~&{&]&^&-./&! u+d%V%d%d%d%d%d%d%A% ", -" d%d%d%d%d%d%d%d%V%A$= -.(&S._&:&<&[&}&|&1&2&#&2&2&2&2&2&2&2&2&2&2&2&2&2&2&2&2&2&2&2&3&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&4&N%4&5&6&7&8&9&0&a&m b&: < A%c&A%A%A%A%A%A%A%A% ", -" A%A%A%A%A%V%A%^%=@> d d&e&f&g&h&i&j&k&l&m&n&m&m&m&m&m&m&m&m&o&o&p&p&p&o&p&p&q&q&q&o&o&o&o&o&o&o&o&o&r&r&r&s&r&r&r&r&r&r&r&r&r&r&r&r&r&s&r&r&r&r&r&>&t&u&v&w&x&y&z&A&B&C&O.$ d%c&V%V%V%V%V%A%A%A% ", -" V%V%V%V%V%V%c&V%Q#* D&d E&F&G&H&I&J&K&L&M&N&m&N&N&N&N&N&N&N&O&P&P&P&P&P&P&P&P&P&P&P&P&P&P&P&P&P&P&P&Q&R&R&R&R&R&R&R&R&R&R&R&R&R&R&R&R&R&R&R&S&S&S&S&m&S&T&U&V&W&X&Y&Z&/ `&/ . A$c&V%V%V%V%V%V%V%V% ", -" *c&c&c&c&c&c& *c&=@. .*b%+*@*#*$*%*&***=*-*;*O&;*;*;*;*>*>*>*,*'*'*'*'*'*,*'*'*)*)*)*)*)*)*)*)*)*'*)*)*)*!*)*)*)*)*)*)*)*)*)*)*)*!*)*)*)*)*)*!*!*!*!*N&!*~*{*]*^*/*(*_*:*B%/ <*D@d%V%c&V%V%V%V%V%V% ", -" * *c&c&c&c&c&c&[*c&P.; }*-.|*1*2*3*4*3*5*6*7*8*9*8*8*8*8*8*8*8*8*8*8*8*8*8*8*8*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*a*0*b*c*d*e*f*e*g*h*i*^ j*l 7$c& *c&c&c&c&c&c& ", -" * * *c&c&c&c&c&k* ** c l*m m*n*o*p*q*r*s*t*u*v*w*x*x*x*x*y*y*y*y*y*y*x*x*x*x*x*y*z*z*z*z*z*z*z*z*A*A*A*A*A*A*A*A*A*A*A*z*A*A*A*A*A*z*A*A*A*A*B*B*B*B*B*!*z*=*C*D*E*F*3*G*H*I*R.J*% '$ *[* * * * * * ", -" * * * * * * * *K* *% ] L*b M*N*O*P*Q*P*R*S*T*U*V*U*U*U*W*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*Y*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*`*`* = = = = = =x*.=+=@=#=$=%=$=&=*===O.-=+ D@[*K*[*[*[*[*[*[* ", -"[*[*[*[*[*[*[*[*;=[*$ ^ >=( ,='=)=!=~=!={=]=^=/=(= = = =_=_=:=_=_=_=:=<=<=<=<=<=<=<=:=<=<=<=:=<=<=[=[=[=[=[=[=[=[=[=[=}=}=}=}=}=}=}=}=}=|=}=}=}=}=}=<=}=1=2=3=4=5=6=7=6=8=9=0={ a== =@k*K*k*k*k*k*k*k*k*", -"k*k*k*k*k*k*k*k*;= *# / b=/ c=d=e=f=g=f=h=i=j=k=/=l=l=l=l=l=l=l=l=l=l=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=m=n=n=n=n=n=n=n=n=n=n=n=n=n=n=n=n=1=n=2=o=p=q=r=s=t=s=u=v=w=} x=- v+k*;=k*k*k*k*k*k*k*", -"K*K*K*K*K*K*K*K*k*A%+ / L*y=z=A=B=C=D=C=h=E=F=G=H=I=J=K=K=K=I=K=I=K=K=K=k=K=K=K=K=K=K=K=K=K=k=K=K=K=K=K=K=K=K=K=K=K=k=k=k=k=k=k=k=k=L=M=M=N=N=N=N=N=n=k=O=P=Q=R=S=f=T=f=U=V=W=_ X=> P.k*Y=k*k*k*k*k*k*k*", -"K*K*K*K*K*K*;=K* *7$Z=^ `= -.-+-@-+-+-+-#-+-$-%-&-H=L=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=H=*-=-=-=-=-=-=-M==---;->-,-R=,-'-,-)-!-~-c {-[ i.K*Y=K*K*K*K*K*K*K*", -";=;=;=;=;=;=Y=;= *Q#]-] ^-/-(-_-:-_-<-_-[-}-|-1-2-3-4-3-3-3-3-3-3-3-3-5-5-5-5-5-5-5-5-3-3-3-3-3-3-3-3-3-3-3-5-5-5-5-5-5-5-5-5-5-5-5-5-6-7-7-7-7-8-7-7-9-0-a-b-c-+-c-d-c-e-f-g-~ {-[ i.;=h-;=;=;=;=;=;=;=", -"Y=Y=Y=Y=Y=Y=i-Y=[*Q#j-O.k-l-m-n-o-n-n-n-n-n-n-p-q-r-5-s-s-s-s-s-s-s-t-t-t-t-t-t-t-t-t-t-t-t-t-t-t-t-t-t-t-t-t-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-v-u-w-x-y-z-d-z-z-z-A-z-B-C-D-[ E-[ P.Y=F-Y=Y=Y=Y=Y=Y=Y=", -"i-i-i-i-i-i-i-i-[*Q#G-{ H-I-J-K-L-K-K-K-M-K-N-O-P-Q-R-v-s-S-T-S-S-S-T-U-U-U-U-U-U-U-U-U-U-U-U-U-U-U-U-U-U-U-U-V-V-V-V-V-V-V-V-W-W-W-W-W-W-W-W-W-u-W-X-Y-Z-`-_-n- ;n-.;n- ;+;@;[ #;[ P.Y=F-Y=i-Y=Y=Y=Y=Y=", -"i-i-i-i-i-i-h-i-k*7$G-{ H-$;%;&;*;&;&;O-O-O-=;O--;;;>;,;S-,;,;,;,;,;,;,;,;,;,;,;,;,;';';';';';';';';';';';';';';';';';';';';';);!;~;~;~;~;~;~;~;);{;];^;=;=;=;=;=;=;/;=;(;_;:;: <;: P.Y=F-i-i-i-i-i-i-i-", -"i-i-i-i-i-i-h-i-k*A$[;} };|;1;2;3;2;4;4;4;4;5;6;7;8;9;0;a;';';b;c;c;c;c;b;c;c;c;c;c;c;c;d;c;c;c;b;c;d;e;e;e;e;e;e;e;e;e;e;e;d;f;f;f;f;f;f;f;d;g;h;i;j;k;l;m;&;m;m;m;m;m;m;n;o;, p;, u+i-q;h-h-h-h-h-h-h-", -"h-h-h-h-h-h-F-h-K*^%r;_ s;t;u;v;w;v;v;v;v;v;v;v;2;v;x;y;z;A;d;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;B;C;C;C;C;C;C;C;C;C;C;C;C;C;C;C;C;C;C;C;D;E;F;G;H;2;I;2;2;2;2;2;I;2;2;J;K;; L;; =@F-M;F-F-F-F-F-F-F-", -"F-F-F-F-F-F-q;F-Y=A%N;c O;P;Q;R;S;T;T;T;U;T;V;T;W;W;X;Y;Z;`; >D;.>C;C;D;D;D;D;D;D;D;D;D;D;D;D;D;D;D;D;+>+>+>+>+>+>+>+>+>+>@>@>@>@>+>#>D;+>$>%>&>*>=>->v;v;T;R;T;T;T;;>T;>>,>'>- )>- w#q;M;q;q;q;q;q;q;q;", -"q;q;q;q;q;q;!>q;h- *~>[ {>]>^>/>(>/>/>/>/>/>/>/>/>/>V;/>_>:><>[>@>@>@>@>@>@>@>}>}>}>}>}>}>}>}>}>}>}>}>}>}>}>}>}>}>}>}>}>|>|>|>|>|>|>1>|>2>%>3>4>X;5>5>5>5>5>5>5>5>5>6>5>7>8>9>) 0>! '$q;M;q;q;q;q;q;q;q;", -"!>!>!>!>!>!>!>!>q;;=i.: a>b>c>d>e>f>f>f>f>f>f>f>g>f>h>h>g>i>j>k>l>m>n>}>}>o>p>p>p>n>n>n>p>n>n>q>q>r>r>n>n>n>n>n>n>n>n>n>r>r>q>n>p>n>m>s>t>u>v>w>/>h>x>w>w>w>w>w>w>w>y>w>z>A>B>) C>@ 7$q;D>q;q;q;q;q;q;q;", -"!>!>!>!>!>!>!>!>M;h-v+> p;> E>F>G>H>H>H>H>H>H>H>H>H>H>H>H>H>I>J>K>L>M>N>O>N>N>N>N>N>N>N>N>N>P>Q>R>R>R>R>R>R>R>R>R>R>R>R>R>R>R>R>R>S>T>U>V>W>f>X>X>X>X>X>X>X>X>X>X>X>Y>X>Z>`> ,= .,% ^%!>D>!>!>!>!>!>!>!>", -"!>!>!>!>!>!>M;!>D>q;D@; +,@,#,$,%,&,*,&,&,&,&,&,&,&,=,&,-,-,;,-,>,,,',),!,~,{,],R>^,^,R>R>R>],],],/,/,/,/,/,],],],],],],/,{,(,!,_,:,<,[,},;,;,-,-,-,|,-,-,-,1,-,-,H>2,H>3,4,5,! 6,i.V%M;7,M;M;M;M;M;M;M;", -"!>!>M;M;M;M;M;M;7,M;'$) 8,; 9,0,a,b,c,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,d,e,f,g,h,i,j,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,l,m,n,o,p,q,b,b,b,b,b,b,b,b,b,b,b,b,b,b,},=,r,=,s,t,u,+ v,D@[*D>7,D>D>D>D>D>D>D>", -"D>D>D>D>D>D>D>D>w,D>^%# x,' y,z,A,B,C,B,B,B,B,B,B,B,B,B,B,B,B,B,D,D,D,E,F,G,H,I,J,K,L,M,M,N,O,P,P,P,P,P,Q,O,O,N,M,R,K,S,T,U,V,W,X,Y,Z,D,D,`,B,`,`,`,`,`,B,B,B,B,q, '.' '+'@'#'@ $'7$;=7,w,7,7,7,7,7,D>D>", -"7,7,7,7,7,7,7,7,%'7,c&i.&') *'='-';'>';';';';';';';';';';';';';';';';';';';';';',''')'!'~'I,J,{'K,K,K,{'{'J,]'I,!'^'/'('_':':':':':':':':':':':':':':':':':':':':':'<':'['}'|'# 1'V%h-7,w,7,7,7,7,7,7, ", -" 7,7,w,w,w,w,w,%'w,K*w#2'! 3'4'5'6'7'8'8'8'8'8'8'8'8'8'8'8'9'0'0'0'0'0'a'a'b'b'a'9'c'd'd'e'f'f'g'g'g'f'f'f'h'e'i'c'j';'b'b'b'a'a'a'j'0'0'0'0'0'0'0'0'0'0'(';'('k'0'l'm'n'o'p'$ q';=!>7,w,7,7,7,7,7, ", -" w,w,w,w,w,w,%'w,i-d%r'. s't'u'v'w'v'v'v'v'v'v'v'v'v'v'v'c'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'x'y'y'y'6'y'6'z'A'B'C'& A$q;7,w,w,w,w,w,w,w,w, ", -" w,w,w,w,w,%'w,M;K*D'. E'F'G'H'I'J'J'J'J'J'J'J'K'K'K'K'J'L'L'L'L'L'L'L'J'L'L'v'v'v'v'v'v'v'v'v'v'v'v'v'v'v'v'v'v'M'N'J'J'J'L'L'L'L'L'L'L'L'M'L'L'L'M'M'v'M'O'M'P'Q'R'* S'i.c&7,T'%'%'%'%'%'%'%'%' ", -" %'%'%'%'%'%'%'%'%'!>7$@ U'@ V'W'X'Y'Z'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'`' ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )K'K'K'K'K'K'K'K'K'K'K'K'K'K'K'.)K'+)@)#)< $)D@K*T'%)T'T'T'T'T'T'T'T' ", -" T'T'T'T'T'T'T'T'&)w,V%< *)=)-);)>),)')))))))))))!)~)~)~)~)!)!)!)!)!)!)!)!)!){){){){){){){){){){){)])])])])])])])])])])]){)])])^)^)^)^)^)^)^)^)^)^)`'`'`'])`'/)()_):)<)l [)^%h-&)%)&)T'&)T'&)&)&)&) ", -" &)&)&)&)&)&)&)&)})&);=w#|)$ 1)2)3)4)5)4)4)4)4)4)6)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)8)9)9)9)9)9)9)0)a)b)c)d)i.e)k*M;&)%)&)&)&)&)&)%)%)%) ", -" &)&)&)%)&)&)&)})%)!> *f)% g)h)i)j)k)l)m)l)l)l)n)o)o)o)o)o)o)o)o)o)o)o)o)o)p)p)p)p)p)p)p)m)m)m)n)n)n)n)n)n)n)n)n)n)o)q)q)q)q)q)q)q)q)q)r)o)o)o)4)4)q)4)s)6)t)u)v)w)x)v+y)M;T'%)%)%)%)%)%)%)%)%) ", -" %)%)%)%)%)%)})%)%'q;z)* A)B)C)D)E)F)G)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)F)l)l)l)l)l)l)l)l)l)l)l)l)l)l)l)l)l)l)H)l)I)J)K)v+L)'$Y=%)M)})})})})})})})}) ", -" })})})})})})})})T'[*u+N)O)P)Q)R)S)T)U)V)W)X)X)Y)X)X)X)X)X)X)X)X)X)X)X)X)X)X)X)X)X)W)W)Z)W)W)W)W)W)W)W)U)U)U)U)Z)`)`)`)`)`)`)`)`)`)`) ! ! ! !.!`).!+!@!#!$!%!&!*!V%!>M)=!M)M)M)M)M)M)M)M) ", -" M)M)M)M)M)M)M)M)-!M)h-7$;!l >!,!'!)!!!~!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!]!V)V)V)V)V)^!V)^!/!(!_![)D@:!i-w,M)=!M)M)M)M)M)M)M)M) ", -" M)M)M)=!=!=!=!=!-!=!w,;=~,~'~)~!~;=7,-!I!I!I!I!I!I!I!I!I!-! ", -" W!W!W!W!W!W!W!W!W!W!~~W!w,K*{~'$]~^~/~(~_~:~<~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~[~[~[~[~[~[~[~[~[~[~[~[~[~[~[~[~[~[~}~[~|~1~2~d%3~d%;=w,M)W!~~W!W!W!W!W!W!W!W! ", -" W!~~~~~~~~~~~~~~~~4~~~=!w,;=^%5~6~7~8~9~0~a~b~c~d~e~d~e~d~d~d~d~d~d~f~f~f~g~g~h~g~g~g~g~g~h~g~g~g~g~g~g~g~g~g~g~g~f~f~i~f~f~j~k~l~m~n~o~p~q~r~s~K*D>=!W!~~~~~~W!~~~~~~W!W!W! ", -" ~~~~~~~~~~~~~~~~~~~~4~W!7,k*A%A$V!t~u~v~w~x~y~x~x~x~x~x~x~x~x~x~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~A~A~A~A~A~B~C~D~E~F~V%G~V%;=D>})~~4~~~~~~~~~~~~~~~W!W!W! ", -" ~~~~4~4~~~~~~~~~~~H~4~=!w,i-V%3~I~J~K~L~D~M~N~O~N~P~Q~R~R~R~R~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~S~Q~P~T~U~V~W~X~Y~Z~F~`~ {.{Y=7,M)~~H~H~4~4~4~4~4~4~4~~~W! ", -" 4~4~4~4~4~4~4~4~4~4~H~~~%'Y=c&d%+{A%@{#{${%{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{&{*{&{={-{;{>{,{c&'{c&i-w,=!H~){H~H~H~H~H~H~H~H~H~H~ ", -" 4~H~H~H~H~H~H~H~H~){){I!&)!>;=!{~{{{]{^{/{({_{:{<{<{[{}{|{|{1{2{1{1{1{1{1{1{1{1{1{1{1{1{1{2{1{2{3{|{4{5{<{<{6{7{8{9{0{a{b{H!s~c{F-%'-!4~){){){){){){){){){H~H~ ", -" ){){){){){){){){){){d{){=!7,i- *e{ *f{g{h{i{j{k{l{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{m{n{n{o{n{p{q{r{s{t{u{v{ *e{[*q;%)W!){d{){){){){){){){){){){ ", -" d{d{d{d{){d{){d{){d{w{w{H~-!x{M;y{.{!{e{z{A{B{C{D{E{F{G{H{I{I{J{H{H{H{K{K{K{K{K{K{K{H{H{L{L{I{I{M{N{O{P{Q{R{S{T{U{V{W{X{Y{7,})~~){d{d{){){){){){d{d{){){ ", -" w{w{w{d{d{d{d{d{d{d{d{d{d{d{H~-!7,;=[*[*Z{[*`{ ].]+]@]#]$]%]&]%]%]%]%]%]%]%]%]%]%]%]%]%]%]%]*]=]-];]>],]'])][*[*Z{[*K*F-&)~~){d{d{d{d{d{d{d{d{d{d{d{d{ ", -" w{w{w{w{w{w{w{w{w{w{w{!]!]w{){I!&)~]{]]]^].{/](]_]:]<][]}]|]1]2]3]4]5]6]7]7]8]6]9]0]a]b]c]d]e]f]g]h]i]j]W{k]l]m]n]%'M)~~d{!]!]w{w{w{w{w{w{w{w{w{d{ ", -" w{w{w{!]!]!]!]!]!]!]!]!]!]!]!]w{W!&)!>;=k*k*k*k*o]k*p]q]r]s]t]u]v]w]x]y]y]z]A]B]C]D]E]F]G]H]I]k*k*k*k*k*;=h-w,=!H~!]J]!]!]!]!]!]!]!]!]!]!]!]!] ", -" w{!]!]J]J]J]J]J]J]J]J]J]J]K]K]w{~~=!&)L]n]M]N]O]P].{/]Q]R]S]T]U]V]W]F]X]Y]Z]`] ^.^+^(])]@^#^O]$^%^&^D>T'M)W!){!]K]K]J]J]J]J]J]J]J]J]J]J]!] ", -" J]J]J]J]J]J]J]J]J]J]J]J]J]J]J]w{4~M)w,q;Y=k*k*k*k*k*k*k*k*k*k*k*k*k*k*k*k*k*k*k*k*k*k*;=F-7,%)I!){J]K]J]J]J]J]J]J]J]J]J]J]J]J]J]J] ", -" J]J]K]K]J]J]J]J]J]J]K]K]K]*^K]!]H~W!=!})T'w,~]=^-^;^>^>^,^'^'^)^,^!^>^%^;^~^{^]^L]T'%)=!W!4~d{J]*^*^K]K]J]J]J]J]J]J]K]K]K]J]J] ", -" K]K]K]K]K]K]K]K]K]K]K]K]K]K]K]K]K]K]J]!]){W!=!%)%'7,D>M;!>!>!>M;M;D>7,%'&)})-!4~d{J]K]K]K]K]K]K]K]K]K]K]K]K]K]K]K]K]K]K]K] ", -" K]*^*^*^*^*^*^*^*^*^*^*^*^*^^^^^^^^^^^K]!]d{H~4~~~W!I!I!I!I!I!W!W!~~4~H~){w{J]*^^^^^^^^^^^*^*^*^*^*^*^*^*^*^*^*^*^K]K] ", -" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*^*^*^ ", -" ^^^^^^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^(^(^(^(^(^(^(^(^(^(^(^(^(^(^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^^^^^^^^^^^*^ ", -" /^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^^^^^^^ ", -" /^/^/^/^(^(^(^(^(^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^/^(^(^(^(^(^(^/^/^^^^^ ", -" (^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^(^ ", -" (^(^(^(^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^_^(^ (^(^(^ ", -" _^_^_^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^ ", -" _^:^:^:^:^:^:^ :^<^<^:^:^:^:^<^<^<^:^:^:^ :^:^:^:^:^:^:^ ", -" <^<^<^:^:^:^<^[^<^:^:^ "}; +"100 100 10 1", +" c None", +". c #EDA11A", +"+ c #EC9C19", +"@ c #EB9819", +"# c #EB9619", +"$ c #EB9519", +"% c #EDA41A", +"& c #EB9719", +"* c #EC9F1A", +"= c #EDA21A", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" .+@#$#@+. ", +" %&$$$$$$$$$$$$$$$$$&% ", +" *$$$$$$$$$$$$$$$$$$$$$$$$$* ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" %$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$% ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" =$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$= ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" =$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$= ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" %$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$% ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" *$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$* ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" %$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$% ", +" &$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$& ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" .$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$. ", +" +$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$+ ", +" @$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$@ ", +" #$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$# ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" #$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$# ", +" @$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$@ ", +" +$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$+ ", +" .$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$. ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" &$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$& ", +" %$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$% ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" *$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$* ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" %$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$% ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" =$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$= ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" =$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$= ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" %$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$% ", +" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ", +" *$$$$$$$$$$$$$$$$$$$$$$$$$* ", +" %&$$$$$$$$$$$$$$$$$&% ", +" .+@#$#@+. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesRed.xpm b/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesRed.xpm index d8851e1c3c..43274be4b8 100644 --- a/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesRed.xpm +++ b/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesRed.xpm @@ -1,1998 +1,124 @@ /* XPM */ static const char * QmitkMemoryUsageIndicatorImagesRed_xpm[] = { -"100 100 1895 2", -" c None", -". c #ADADAD", -"+ c #AFAFAF", -"@ c #AEAEAE", -"# c #B0B0B0", -"$ c #B1B1B1", -"% c #B2B2B2", -"& c #B3B3B3", -"* c #ACACAC", -"= c #ABABAB", -"- c #AAAAAA", -"; c #A8A8A8", -"> c #A7A7A7", -", c #A6A6A6", -"' c #A5A5A5", -") c #A9A9A9", -"! c #B4B4B4", -"~ c #A4A4A4", -"{ c #A0A0A0", -"] c #9D9D9D", -"^ c #9B9B9B", -"/ c #989898", -"( c #969696", -"_ c #949494", -": c #959595", -"< c #979797", -"[ c #9C9C9C", -"} c #A1A1A1", -"| c #999999", -"1 c #949696", -"2 c #919494", -"3 c #8F9292", -"4 c #8D9191", -"5 c #8B9090", -"6 c #898E8E", -"7 c #888D8D", -"8 c #878D8D", -"9 c #888E8E", -"0 c #8A8F8F", -"a c #8B8F8F", -"b c #8E9292", -"c c #929595", -"d c #959797", -"e c #989999", -"f c #A3A3A3", -"g c #9E9E9E", -"h c #8E8E8E", -"i c #898989", -"j c #858585", -"k c #848585", -"l c #838585", -"m c #838686", -"n c #828686", -"o c #818686", -"p c #868686", -"q c #8C8C8C", -"r c #B5B5B5", -"s c #979898", -"t c #909292", -"u c #898D8D", -"v c #838888", -"w c #7E8686", -"x c #7C8484", -"y c #7D8080", -"z c #817B7B", -"A c #847575", -"B c #867070", -"C c #886C6C", -"D c #8A6868", -"E c #8C6666", -"F c #8C6565", -"G c #8D6464", -"H c #8D6363", -"I c #8B6868", -"J c #896B6B", -"K c #876F6F", -"L c #847474", -"M c #817A7A", -"N c #7E8080", -"O c #7C8282", -"P c #7D8484", -"Q c #818888", -"R c #888C8C", -"S c #8E9191", -"T c #959696", -"U c #A2A2A2", -"V c #B6B6B6", -"W c #878787", -"X c #808686", -"Y c #7E8888", -"Z c #7E8787", -"` c #837E7E", -" . c #8A7171", -".. c #906565", -"+. c #965959", -"@. c #9B4F4F", -"#. c #A04747", -"$. c #A24242", -"%. c #A43F3F", -"&. c #A63C3C", -"*. c #A63B3B", -"=. c #A53D3D", -"-. c #A34040", -";. c #A04646", -">. c #9C4D4D", -",. c #985656", -"'. c #926161", -"). c #8A7070", -"!. c #827D7D", -"~. c #7F8484", -"{. c #7F8787", -"]. c #808787", -"^. c #8A8A8A", -"/. c #B7B7B7", -"(. c #9F9F9F", -"_. c #8C8E8E", -":. c #838989", -"<. c #7F7E7E", -"[. c #837777", -"}. c #886D6D", -"|. c #8E6363", -"1. c #925B5B", -"2. c #9F5353", -"3. c #A75252", -"4. c #AE5353", -"5. c #B45353", -"6. c #B95050", -"7. c #BD4D4D", -"8. c #C04D4D", -"9. c #C24E4E", -"0. c #C34E4E", -"a. c #C44E4E", -"b. c #C34D4D", -"c. c #C14C4C", -"d. c #B94E4E", -"e. c #B55151", -"f. c #B05353", -"g. c #A85353", -"h. c #995454", -"i. c #945858", -"j. c #8F6161", -"k. c #8A6B6B", -"l. c #847676", -"m. c #808080", -"n. c #7E8383", -"o. c #808585", -"p. c #939494", -"q. c #B8B8B8", -"r. c #929292", -"s. c #7F8888", -"t. c #857A7A", -"u. c #8F6868", -"v. c #A83636", -"w. c #B42121", -"x. c #C01515", -"y. c #C91F1F", -"z. c #D03232", -"A. c #D54848", -"B. c #DA5C5C", -"C. c #DD6767", -"D. c #DF6E6E", -"E. c #E07777", -"F. c #E27E7E", -"G. c #E38484", -"H. c #E48686", -"I. c #E37F7F", -"J. c #E17676", -"K. c #DF6F6F", -"L. c #DC6767", -"M. c #DA5D5D", -"N. c #D64E4E", -"O. c #D13636", -"P. c #CA2020", -"Q. c #C11717", -"R. c #B71B1B", -"S. c #AB2E2E", -"T. c #A04949", -"U. c #926565", -"V. c #867C7C", -"W. c #828585", -"X. c #868787", -"Y. c #8F8F8F", -"Z. c #868A8A", -"`. c #857777", -" + c #8B6B6B", -".+ c #935E5E", -"++ c #9E5757", -"@+ c #AB5252", -"#+ c #B84F4F", -"$+ c #C54D4D", -"%+ c #D24848", -"&+ c #DD4747", -"*+ c #E45454", -"=+ c #E86565", -"-+ c #EC7979", -";+ c #EE8B8B", -">+ c #F09595", -",+ c #F19D9D", -"'+ c #F2A4A4", -")+ c #F2AAAA", -"!+ c #F3B0B0", -"~+ c #F4B2B2", -"{+ c #F3ACAC", -"]+ c #F19E9E", -"^+ c #EF9696", -"/+ c #EE8C8C", -"(+ c #EC7E7E", -"_+ c #E96969", -":+ c #E55454", -"<+ c #DE4A4A", -"[+ c #D54646", -"}+ c #C94949", -"|+ c #BC4E4E", -"1+ c #AE5151", -"2+ c #A05656", -"3+ c #975E5E", -"4+ c #8F6969", -"5+ c #877676", -"6+ c #828282", -"7+ c #818585", -"8+ c #848888", -"9+ c #8F9191", -"0+ c #919191", -"a+ c #858686", -"b+ c #808888", -"c+ c #867A7A", -"d+ c #916565", -"e+ c #A24040", -"f+ c #B52323", -"g+ c #C52929", -"h+ c #D24141", -"i+ c #E59090", -"j+ c #EDACAC", -"k+ c #F3BFBF", -"l+ c #F5C7C7", -"m+ c #F6C9C9", -"n+ c #F7CDCD", -"o+ c #F7D0D0", -"p+ c #F7D2D2", -"q+ c #F7D3D3", -"r+ c #F8D4D4", -"s+ c #F8D6D6", -"t+ c #F8D7D7", -"u+ c #F7CECE", -"v+ c #F6CBCB", -"w+ c #F5C6C6", -"x+ c #EFB1B1", -"y+ c #E79393", -"z+ c #DE6F6F", -"A+ c #D44343", -"B+ c #C82222", -"C+ c #B92626", -"D+ c #A83B3B", -"E+ c #955D5D", -"F+ c #877E7E", -"G+ c #848989", -"H+ c #858989", -"I+ c #939393", -"J+ c #949595", -"K+ c #868888", -"L+ c #818282", -"M+ c #867676", -"N+ c #906869", -"O+ c #9D5C5C", -"P+ c #AC5252", -"Q+ c #C04848", -"R+ c #D34747", -"S+ c #E05656", -"T+ c #E97070", -"U+ c #F5BCBC", -"V+ c #F9D7D7", -"W+ c #FCEAEA", -"X+ c #FCEEEE", -"Y+ c #FBECEC", -"Z+ c #FBEAEA", -"`+ c #FBE8E8", -" @ c #FBE7E7", -".@ c #FAE7E7", -"+@ c #FAE6E6", -"@@ c #FAE5E5", -"#@ c #FBE9E9", -"$@ c #FBEDED", -"%@ c #FCEDED", -"&@ c #FCE9E9", -"*@ c #FADCDC", -"=@ c #F6C0C0", -"-@ c #F09C9C", -";@ c #EB7373", -">@ c #E35151", -",@ c #C44A4A", -"'@ c #B14F4F", -")@ c #9F5959", -"!@ c #946868", -"~@ c #8C7777", -"{@ c #858080", -"]@ c #828787", -"^@ c #B9B9B9", -"/@ c #BABABA", -"(@ c #8D8D8D", -"_@ c #818788", -":@ c #858081", -"<@ c #975A5B", -"[@ c #AD3537", -"}@ c #C03132", -"|@ c #D24343", -"1@ c #E17575", -"2@ c #EDAAAA", -"3@ c #F6CACA", -"4@ c #F8D3D3", -"5@ c #F8D9D9", -"6@ c #F9DEDE", -"7@ c #FAE2E2", -"8@ c #FAE3E3", -"9@ c #F9E2E2", -"0@ c #F9E1E1", -"a@ c #F9DFDF", -"b@ c #F8DADA", -"c@ c #F5C2C2", -"d@ c #EEA8A8", -"e@ c #E38585", -"f@ c #D64D4D", -"g@ c #C52324", -"h@ c #B13435", -"i@ c #9D5858", -"j@ c #8E7676", -"k@ c #848D8C", -"l@ c #858E8E", -"m@ c #909090", -"n@ c #919393", -"o@ c #867F7F", -"p@ c #8D7071", -"q@ c #9A5F60", -"r@ c #B14C4E", -"s@ c #C94345", -"t@ c #DB5152", -"u@ c #E96F6F", -"v@ c #F3A5A5", -"w@ c #FBEBEB", -"x@ c #F9E0E0", -"y@ c #FAE8E8", -"z@ c #F9D6D6", -"A@ c #EC7A7A", -"B@ c #E0494A", -"C@ c #CC4142", -"D@ c #B64A4B", -"E@ c #A35C5D", -"F@ c #937071", -"G@ c #8A7F7F", -"H@ c #868989", -"I@ c #BBBBBB", -"J@ c #838787", -"K@ c #858282", -"L@ c #8E7474", -"M@ c #A54849", -"N@ c #BF282A", -"O@ c #D34D4F", -"P@ c #E48384", -"Q@ c #EFAAAA", -"R@ c #F6C8C8", -"S@ c #F9E3E3", -"T@ c #FAE4E4", -"U@ c #F7CBCB", -"V@ c #F2B4B5", -"W@ c #E67E80", -"X@ c #D54C4E", -"Y@ c #C2393B", -"Z@ c #AE3D3F", -"`@ c #996364", -" # c #888B8B", -".# c #868F8F", -"+# c #8B8B8B", -"@# c #9A9A9A", -"## c #BCBCBC", -"$# c #929393", -"%# c #828383", -"&# c #888080", -"*# c #936C6C", -"=# c #A45556", -"-# c #BF4041", -";# c #D93E40", -"># c #E97374", -",# c #F3B1B2", -"'# c #F8D5D5", -")# c #F9DFDE", -"!# c #FAE0E1", -"~# c #F4AEB0", -"{# c #EA7577", -"]# c #DA4C4E", -"^# c #C63739", -"/# c #AE4C4E", -"(# c #996D6E", -"_# c #8E7F7F", -":# c #898A8A", -"<# c #878B8B", -"[# c #858888", -"}# c #937171", -"|# c #AB4445", -"1# c #C52729", -"2# c #DB5557", -"3# c #EB9495", -"4# c #F3B9B9", -"5# c #F7D1D1", -"6# c #F9DCDC", -"7# c #F8DCDC", -"8# c #F8DBDC", -"9# c #F8DBDB", -"0# c #F8DBDA", -"a# c #F9DCDB", -"b# c #F9DDDD", -"c# c #F9DBDB", -"d# c #F5C0C0", -"e# c #EB8C8D", -"f# c #DC5759", -"g# c #CB3A3C", -"h# c #B73537", -"i# c #9E5E5E", -"j# c #8A8B8B", -"k# c #879090", -"l# c #BEBEBE", -"m# c #BDBDBD", -"n# c #878888", -"o# c #848787", -"p# c #898484", -"q# c #966C6C", -"r# c #A85152", -"s# c #C33B3C", -"t# c #DD3B3D", -"u# c #EC7C7E", -"v# c #F5C3C4", -"w# c #F8D8D8", -"x# c #F8D7D8", -"y# c #F7D6D6", -"z# c #F4B7B8", -"A# c #EB8384", -"B# c #DE4D4F", -"C# c #CD2B2D", -"D# c #B34748", -"E# c #9A7172", -"F# c #8F8383", -"G# c #8B8C8C", -"H# c #8D9090", -"I# c #BFBFBF", -"J# c #888989", -"K# c #888686", -"L# c #91797A", -"M# c #AA4648", -"N# c #C72325", -"O# c #DC4F51", -"P# c #EC8E8F", -"Q# c #F4B4B6", -"R# c #F7CFD0", -"S# c #F8D4D5", -"T# c #F7D2D3", -"U# c #F7D1D2", -"V# c #F6D1D2", -"W# c #F6D2D2", -"X# c #F7D4D5", -"Y# c #F3BBBC", -"Z# c #EA8284", -"`# c #DC4B4D", -" $ c #CB3A3B", -".$ c #B74041", -"+$ c #9E6667", -"@$ c #8B8E8D", -"#$ c #889191", -"$$ c #8A8989", -"%$ c #937677", -"&$ c #A55E60", -"*$ c #C03639", -"=$ c #DA2629", -"-$ c #EA6C6E", -";$ c #F4BCBD", -">$ c #F7D0D1", -",$ c #F7CECF", -"'$ c #F7CDCE", -")$ c #F6CDCE", -"!$ c #F7D6D7", -"~$ c #F1AAAB", -"{$ c #E87677", -"]$ c #DC4346", -"^$ c #CB272A", -"/$ c #B04B4D", -"($ c #977B7C", -"_$ c #8D8888", -":$ c #8C8D8D", -"<$ c #939696", -"[$ c #C0C0C0", -"}$ c #868D8C", -"|$ c #8C8787", -"1$ c #A6595A", -"2$ c #C33134", -"3$ c #D53B3E", -"4$ c #E35D5F", -"5$ c #EE9495", -"6$ c #F5C6C7", -"7$ c #F6CFD0", -"8$ c #F6CBCC", -"9$ c #F5CACB", -"0$ c #F6CACB", -"a$ c #F5C9CA", -"b$ c #F6CCCD", -"c$ c #F5C4C5", -"d$ c #F1ACAD", -"e$ c #E56567", -"f$ c #D6282B", -"g$ c #C33235", -"h$ c #AF5557", -"i$ c #9B7576", -"j$ c #8C9191", -"k$ c #8C9594", -"l$ c #8D8484", -"m$ c #9B7474", -"n$ c #B84143", -"o$ c #D61E22", -"p$ c #E34B4F", -"q$ c #F1B1B2", -"r$ c #F5C5C6", -"s$ c #F6CECF", -"t$ c #EC8487", -"u$ c #DF4144", -"v$ c #D32E32", -"w$ c #C33639", -"x$ c #A95F61", -"y$ c #938A8A", -"z$ c #8C9090", -"A$ c #879190", -"B$ c #9D7070", -"C$ c #B64D4F", -"D$ c #C92E31", -"E$ c #DA282C", -"F$ c #E8696C", -"G$ c #F1B2B3", -"H$ c #F4C4C5", -"I$ c #F4C2C3", -"J$ c #F4C1C2", -"K$ c #F4C2C2", -"L$ c #F4C0C1", -"M$ c #F5C2C3", -"N$ c #F0A1A3", -"O$ c #E87578", -"P$ c #DF4043", -"Q$ c #D11F23", -"R$ c #B84347", -"S$ c #A07678", -"T$ c #948889", -"U$ c #909191", -"V$ c #959898", -"W$ c #C2C2C2", -"X$ c #C1C1C1", -"Y$ c #908888", -"Z$ c #AC5B5D", -"`$ c #CA3135", -" % c #D7292D", -".% c #DE3D41", -"+% c #EB8184", -"@% c #F5C3C5", -"#% c #F4BFC0", -"$% c #F4BEC0", -"%% c #F4BEBF", -"&% c #F4BDBF", -"*% c #F4BDBE", -"=% c #EE9B9D", -"-% c #E65357", -";% c #D9181D", -">% c #C62E33", -",% c #B15C5E", -"'% c #9E7A7B", -")% c #909595", -"!% c #C3C3C3", -"~% c #959897", -"{% c #908586", -"]% c #9E7677", -"^% c #B9474A", -"/% c #D52327", -"(% c #DF353A", -"_% c #E45E62", -":% c #ED9194", -"<% c #F3BABC", -"[% c #F3B9BB", -"}% c #F3BABB", -"|% c #F3B9BA", -"1% c #F4BCBE", -"2% c #F1AEB0", -"3% c #E7686B", -"4% c #DA2529", -"5% c #D32025", -"6% c #C7383C", -"7% c #AC6668", -"8% c #939292", -"9% c #8E9696", -"0% c #8E9494", -"a% c #8E8F8F", -"b% c #9B7A7B", -"c% c #AF5F61", -"d% c #C63539", -"e% c #DA1D22", -"f% c #E44449", -"g% c #E97B7E", -"h% c #EF9FA1", -"i% c #F3B7B9", -"j% c #F3B6B8", -"k% c #F3B6B7", -"l% c #F2B7B9", -"m% c #E8787B", -"n% c #DC373B", -"o% c #DB1E24", -"p% c #D62227", -"q% c #B85255", -"r% c #9B8787", -"s% c #929191", -"t% c #9E9F9F", -"u% c #8A9493", -"v% c #A76B6D", -"w% c #C44145", -"x% c #D12429", -"y% c #DA1F25", -"z% c #E55559", -"A% c #ED9296", -"B% c #F1AAAD", -"C% c #F2B3B5", -"D% c #F3B5B7", -"E% c #F2B2B5", -"F% c #F2B2B4", -"G% c #F2B2B3", -"H% c #F3B8BA", -"I% c #EA8587", -"J% c #E15054", -"K% c #DF2D32", -"L% c #D91F25", -"M% c #C34145", -"N% c #AC6D6F", -"O% c #9C8585", -"P% c #989C9C", -"Q% c #C4C4C4", -"R% c #A0A1A1", -"S% c #8B9190", -"T% c #948C8C", -"U% c #B35D5F", -"V% c #D32D32", -"W% c #D91A20", -"X% c #DA2329", -"Y% c #E56165", -"Z% c #F0A2A5", -"`% c #F2B1B3", -" & c #F2B0B2", -".& c #F2AFB1", -"+& c #F2AEB0", -"@& c #F3B2B4", -"#& c #EC8C8F", -"$& c #E56367", -"%& c #E1393F", -"&& c #DB2026", -"*& c #CD3136", -"=& c #BC5357", -"-& c #A77779", -";& c #939A9A", -">& c #C5C5C5", -",& c #9C9E9E", -"'& c #938989", -")& c #A07B7C", -"!& c #BE5053", -"~& c #D9272D", -"{& c #DD191F", -"]& c #DB252B", -"^& c #E6666A", -"/& c #F1A7AA", -"(& c #F1ACAE", -"_& c #F1ADAF", -":& c #F1ADAE", -"<& c #F1ABAD", -"[& c #F1AAAC", -"}& c #ED8F92", -"|& c #E66C6F", -"1& c #E14147", -"2& c #DB2229", -"3& c #D7242A", -"4& c #CD3A40", -"5& c #B1696C", -"6& c #919B9A", -"7& c #C6C6C6", -"8& c #979B9B", -"9& c #9C8081", -"0& c #AE696B", -"a& c #C74549", -"b& c #DD262C", -"c& c #DE1C22", -"d& c #DC2A30", -"e& c #E7696E", -"f& c #F1A8AB", -"g& c #F2B0B3", -"h& c #F1A9AB", -"i& c #F1A8AA", -"j& c #F1A6A9", -"k& c #F1A9AC", -"l& c #E77276", -"m& c #E1484D", -"n& c #DB252C", -"o& c #DD1C24", -"p& c #D82A31", -"q& c #BA5D61", -"r& c #9B9090", -"s& c #939897", -"t& c #C8C8C8", -"u& c #919797", -"v& c #919292", -"w& c #A57678", -"x& c #BD5559", -"y& c #D03A40", -"z& c #DD282F", -"A& c #DE2229", -"B& c #DE3138", -"C& c #E76C71", -"D& c #F0A6A9", -"E& c #F2ADB0", -"F& c #F0A6A8", -"G& c #F0A5A8", -"H& c #F0A5A7", -"I& c #F0A4A7", -"J& c #F0A4A6", -"K& c #F0A3A6", -"L& c #EE9296", -"M& c #E9777C", -"N& c #E24C52", -"O& c #DC262E", -"P& c #DF1C25", -"Q& c #DC272F", -"R& c #C25257", -"S& c #A67F81", -"T& c #9A8F90", -"U& c #A2A4A4", -"V& c #8D9595", -"W& c #AD6D6F", -"X& c #CB444A", -"Y& c #D73238", -"Z& c #DD2A32", -"`& c #DE272F", -" * c #DF353C", -".* c #E86C71", -"+* c #F0A1A4", -"@* c #F0A0A3", -"#* c #EE9195", -"$* c #EA777C", -"%* c #E34D54", -"&* c #DD2931", -"** c #DF1F28", -"=* c #DD2830", -"-* c #C9484E", -";* c #B26E71", -">* c #A18688", -",* c #9EA2A2", -"'* c #C7C7C7", -")* c #959292", -"!* c #B56568", -"~* c #D7363D", -"{* c #DE2B33", -"]* c #DE2C34", -"^* c #DE323A", -"/* c #EF9EA2", -"(* c #EF9FA2", -"_* c #EF9EA1", -":* c #EF9DA1", -"<* c #EF9DA0", -"[* c #ED8C8F", -"}* c #E97176", -"|* c #E34C52", -"1* c #DF232C", -"2* c #D04147", -"3* c #BD5E62", -"4* c #A97E80", -"5* c #9CA2A1", -"6* c #A6A7A7", -"7* c #919595", -"8* c #9A8F8F", -"9* c #DE2E36", -"0* c #E22831", -"a* c #DE3038", -"b* c #E6646A", -"c* c #EF999D", -"d* c #EF9C9F", -"e* c #EF9B9F", -"f* c #EF9A9E", -"g* c #EF9A9D", -"h* c #EC868A", -"i* c #E8696F", -"j* c #E2484F", -"k* c #DE2D35", -"l* c #DF2830", -"m* c #D63A41", -"n* c #C84F54", -"o* c #B07779", -"p* c #9AA1A1", -"q* c #A3A5A5", -"r* c #979090", -"s* c #A58385", -"t* c #C3585D", -"u* c #E02F38", -"v* c #E32B34", -"w* c #DF3039", -"x* c #DF3139", -"y* c #E76067", -"z* c #EE9095", -"A* c #EF9A9F", -"B* c #EF999E", -"C* c #EF989D", -"D* c #EF989C", -"E* c #EF979C", -"F* c #EF979B", -"G* c #EE979B", -"H* c #EB7F85", -"I* c #E66168", -"J* c #E2454C", -"K* c #DF2F37", -"L* c #DF2A33", -"M* c #DC333B", -"N* c #D34249", -"O* c #B67174", -"P* c #9C9D9D", -"Q* c #97A1A1", -"R* c #C9C9C9", -"S* c #CACACA", -"T* c #A1A4A4", -"U* c #9E8A8B", -"V* c #AE777B", -"W* c #C95359", -"X* c #E0323B", -"Y* c #E32E37", -"Z* c #DF2D36", -"`* c #E65A62", -" = c #ED848A", -".= c #EF9297", -"+= c #EF969B", -"@= c #EF959B", -"#= c #EF959A", -"$= c #EF949A", -"%= c #EF9499", -"&= c #EF9399", -"*= c #EE9499", -"== c #EA787E", -"-= c #E5575F", -";= c #E14049", -">= c #DF2D37", -",= c #E12E37", -"'= c #DB3941", -")= c #BC6B6F", -"!= c #97A1A0", -"~= c #9FA4A3", -"{= c #A38688", -"]= c #B66F73", -"^= c #CD4F56", -"/= c #E1343E", -"(= c #E3313A", -"_= c #E0303A", -":= c #E5525A", -"<= c #EA747A", -"[= c #ED888D", -"}= c #EF9398", -"|= c #EE9297", -"1= c #EE9298", -"2= c #EE9197", -"3= c #EE9196", -"4= c #E96F75", -"5= c #E34951", -"6= c #E13A42", -"7= c #E0333C", -"8= c #E0313A", -"9= c #E0323C", -"0= c #E32D37", -"a= c #DF353E", -"b= c #C0676C", -"c= c #A29999", -"d= c #9A9F9F", -"e= c #CBCBCB", -"f= c #9EA3A3", -"g= c #A88385", -"h= c #BD686D", -"i= c #D14C54", -"j= c #E13640", -"k= c #E3333D", -"l= c #E1333E", -"m= c #E44A52", -"n= c #E8636A", -"o= c #EC7D83", -"p= c #EF9196", -"q= c #EE8F95", -"r= c #EE8F94", -"s= c #EE8C91", -"t= c #E8656C", -"u= c #E23E46", -"v= c #E1353E", -"w= c #E52E39", -"x= c #C46369", -"y= c #A79394", -"z= c #AEAFAF", -"A= c #CCCCCC", -"B= c #9CA2A2", -"C= c #AB8082", -"D= c #C36268", -"E= c #D54A53", -"F= c #E23843", -"G= c #E43640", -"H= c #E23741", -"I= c #E3414B", -"J= c #E5515A", -"K= c #EA7279", -"L= c #EF9095", -"M= c #EF9298", -"N= c #EF8D93", -"O= c #EE8D92", -"P= c #EE8C92", -"Q= c #EE8A8F", -"R= c #EC7F84", -"S= c #E75C63", -"T= c #E23A43", -"U= c #E5313C", -"V= c #E23640", -"W= c #C86066", -"X= c #AD8D8F", -"Y= c #A19A9A", -"Z= c #ADAFAF", -"`= c #9BA2A1", -" - c #AF7D81", -".- c #C85E65", -"+- c #D94852", -"@- c #E33A45", -"#- c #E53843", -"$- c #E4434D", -"%- c #E9676F", -"&- c #EE898F", -"*- c #EF8E94", -"=- c #EF8B91", -"-- c #EE8A90", -";- c #EC7E85", -">- c #EA6E75", -",- c #E6525A", -"'- c #E23943", -")- c #E5343F", -"!- c #CB5E65", -"~- c #B2878A", -"{- c #A59798", -"]- c #ACAFAF", -"^- c #CDCDCD", -"/- c #9BA2A2", -"(- c #B27D81", -"_- c #CC5B63", -":- c #DB4851", -"<- c #E43C47", -"[- c #E53A45", -"}- c #E43F49", -"|- c #E75962", -"1- c #EC767D", -"2- c #EE8389", -"3- c #EF898F", -"4- c #EF8990", -"5- c #EF888E", -"6- c #EE888E", -"7- c #EE878E", -"8- c #EE878D", -"9- c #EE868D", -"0- c #EE8990", -"a- c #EB7179", -"b- c #E75861", -"c- c #E54650", -"d- c #E33843", -"e- c #E33B45", -"f- c #E63641", -"g- c #CE5D65", -"h- c #B68487", -"i- c #A89697", -"j- c #ACB0AF", -"k- c #CECECE", -"l- c #9CA3A3", -"m- c #B57D81", -"n- c #CF5A62", -"o- c #DD4852", -"p- c #E43E49", -"q- c #E53C48", -"r- c #E64D57", -"s- c #E96069", -"t- c #EC757D", -"u- c #EE858C", -"v- c #EE858B", -"w- c #EE848B", -"x- c #ED7F87", -"y- c #E9636C", -"z- c #E54651", -"A- c #E43D48", -"B- c #E43B46", -"C- c #E73843", -"D- c #CF5D65", -"E- c #B88286", -"F- c #A99597", -"G- c #ADB0B0", -"H- c #CFCFCF", -"I- c #B77D81", -"J- c #D25961", -"K- c #DF4853", -"L- c #E5404B", -"M- c #E63E4A", -"N- c #E4404B", -"O- c #E4404C", -"P- c #E43F4A", -"Q- c #E43F4B", -"R- c #E5444F", -"S- c #E74F5A", -"T- c #EA6770", -"U- c #ED7E85", -"V- c #EE838A", -"W- c #EE828A", -"X- c #ED8289", -"Y- c #ED8188", -"Z- c #EC7A81", -"`- c #EB6C73", -" ; c #E7555E", -".; c #E5414C", -"+; c #E53F49", -"@; c #E53E49", -"#; c #E73A46", -"$; c #D15D65", -"%; c #BA8185", -"&; c #AB9596", -"*; c #D0D0D0", -"=; c #9CA4A3", -"-; c #B87D81", -";; c #D45962", -">; c #E04954", -",; c #E6424E", -"'; c #E7414D", -"); c #E5424E", -"!; c #E5404C", -"~; c #E5434F", -"{; c #E85A64", -"]; c #EC727B", -"^; c #ED7C85", -"/; c #EE8189", -"(; c #EE8088", -"_; c #ED7F86", -":; c #ED7E86", -"<; c #EB6C74", -"[; c #E85760", -"}; c #E64A54", -"|; c #E83D48", -"1; c #D15F67", -"2; c #BB8185", -"3; c #AB9597", -"4; c #ADB1B0", -"5; c #9EA5A5", -"6; c #B87F84", -"7; c #D45C65", -"8; c #E04B57", -"9; c #E74451", -"0; c #E7424F", -"a; c #E64451", -"b; c #E6414E", -"c; c #E6424F", -"d; c #E74E5A", -"e; c #E95D68", -"f; c #EB6C76", -"g; c #ED7A82", -"h; c #EE7F86", -"i; c #EE7F87", -"j; c #EE7E86", -"k; c #ED7D85", -"l; c #ED7C86", -"m; c #ED7880", -"n; c #EC6D77", -"o; c #E95B66", -"p; c #E74B56", -"q; c #E64450", -"r; c #E5434E", -"s; c #E83E4B", -"t; c #D26169", -"u; c #BB8488", -"v; c #AD9799", -"w; c #AFB2B2", -"x; c #D1D1D1", -"y; c #A0A7A7", -"z; c #B88287", -"A; c #D2606A", -"B; c #E04F5B", -"C; c #E74653", -"D; c #E84451", -"E; c #E74553", -"F; c #E74956", -"G; c #EC6F77", -"H; c #EE7C84", -"I; c #EE7D85", -"J; c #EE7B84", -"K; c #EE7A84", -"L; c #EE7C86", -"M; c #EE7A83", -"N; c #EC6B76", -"O; c #EA5A65", -"P; c #E84D59", -"Q; c #E64350", -"R; c #E9404D", -"S; c #D2646D", -"T; c #BB888C", -"U; c #AD9B9C", -"V; c #B1B4B4", -"W; c #D2D2D2", -"X; c #A2A9A8", -"Y; c #B88589", -"Z; c #D1656E", -"`; c #DF535E", -" > c #E74855", -".> c #E94653", -"+> c #E84855", -"@> c #E74754", -"#> c #E8505C", -"$> c #EA5C67", -"%> c #EB6872", -"&> c #ED727C", -"*> c #EE7881", -"=> c #EE7A82", -"-> c #EE7982", -";> c #EE7983", -">> c #EE7883", -",> c #EE7882", -"'> c #EC6A74", -")> c #EB5C68", -"!> c #E94F5C", -"~> c #E74552", -"{> c #EA424F", -"]> c #D26770", -"^> c #BA8C90", -"/> c #AE9E9F", -"(> c #B2B5B5", -"_> c #A4AAAA", -":> c #B7898C", -"<> c #CF6B74", -"[> c #DE5762", -"}> c #E84A57", -"|> c #E94855", -"1> c #E84956", -"2> c #E84C59", -"3> c #E95864", -"4> c #EB6671", -"5> c #ED707B", -"6> c #EE7781", -"7> c #EE7681", -"8> c #EE7680", -"9> c #ED737D", -"0> c #EC6670", -"a> c #EA5763", -"b> c #E94E5B", -"c> c #EB4451", -"d> c #D26B73", -"e> c #B99195", -"f> c #ADA1A2", -"g> c #B3B6B6", -"h> c #A7ACAC", -"i> c #B58D91", -"j> c #CC737A", -"k> c #DD5C67", -"l> c #E94C59", -"m> c #EB4957", -"n> c #E94A57", -"o> c #E9505D", -"p> c #EA5966", -"q> c #EC616D", -"r> c #ED6974", -"s> c #EE6F7A", -"t> c #EE747E", -"u> c #EE7580", -"v> c #EE747F", -"w> c #EE757F", -"x> c #EE737D", -"y> c #ED6E79", -"z> c #EC6974", -"A> c #EB626E", -"B> c #EA5865", -"C> c #E94B58", -"D> c #E84B58", -"E> c #EC4553", -"F> c #D07078", -"G> c #B6999B", -"H> c #ACA5A6", -"I> c #B6B8B8", -"J> c #D3D3D3", -"K> c #AAAFAE", -"L> c #B49295", -"M> c #C87B82", -"N> c #DB626D", -"O> c #EA4E5C", -"P> c #EC4B59", -"Q> c #EA4F5D", -"R> c #EA5260", -"S> c #EB5865", -"T> c #ED636F", -"U> c #EE6E79", -"V> c #EE727E", -"W> c #EE7480", -"X> c #EE737F", -"Y> c #EE737E", -"Z> c #EE727D", -"`> c #ED727D", -" , c #ED6C77", -"., c #EC6470", -"+, c #EB5966", -"@, c #E9505E", -"#, c #E94D5B", -"$, c #E94D5A", -"%, c #EC4755", -"&, c #CE767D", -"*, c #B2A1A2", -"=, c #B9BABA", -"-, c #B1979A", -";, c #C2848A", -">, c #D86872", -",, c #EB505E", -"', c #ED4C5B", -"), c #EA505E", -"!, c #EA4E5D", -"~, c #EA4F5E", -"{, c #EB5261", -"], c #EC5967", -"^, c #ED606D", -"/, c #ED6571", -"(, c #ED6875", -"_, c #ED6B77", -":, c #EE6D7A", -"<, c #EE707C", -"[, c #EE717E", -"}, c #EE717D", -"|, c #EE6F7B", -"1, c #EE6D79", -"2, c #EE6A76", -"3, c #ED6874", -"4, c #EC6571", -"5, c #EC606C", -"6, c #EB5A67", -"7, c #EA5361", -"8, c #E94D5C", -"9, c #E94E5C", -"0, c #EC4A58", -"a, c #E8505E", -"b, c #CC7C83", -"c, c #B0A8A8", -"d, c #A9AEAD", -"e, c #BCBDBD", -"f, c #D4D4D4", -"g, c #B0B3B2", -"h, c #AD9C9E", -"i, c #BC8D93", -"j, c #D56E78", -"k, c #EE4E5D", -"l, c #EC5563", -"m, c #ED5F6D", -"n, c #ED6572", -"o, c #EE6A77", -"p, c #EE6E7B", -"q, c #EE6F7C", -"r, c #EE6672", -"s, c #EC5A68", -"t, c #EB5563", -"u, c #EB5361", -"v, c #EB5160", -"w, c #EA505F", -"x, c #EB4E5D", -"y, c #E55665", -"z, c #C98289", -"A, c #AEADAD", -"B, c #A9B1B0", -"C, c #D5D5D5", -"D, c #B4B6B6", -"E, c #A9A3A4", -"F, c #B5999C", -"G, c #D1757F", -"H, c #EC5363", -"I, c #EF4F5F", -"J, c #EC5463", -"K, c #EB5463", -"L, c #EB5363", -"M, c #EB5362", -"N, c #EC5564", -"O, c #EC5D6B", -"P, c #ED616F", -"Q, c #ED6371", -"R, c #ED6573", -"S, c #ED6673", -"T, c #ED6774", -"U, c #EE6875", -"V, c #EE6876", -"W, c #EE6977", -"X, c #EE6976", -"Y, c #EE6775", -"Z, c #ED6674", -"`, c #ED6473", -" ' c #ED606F", -".' c #ED5D6B", -"+' c #EB5161", -"@' c #EB5262", -"#' c #EC5362", -"$' c #E85564", -"%' c #DF626F", -"&' c #C68A90", -"*' c #AFB0B0", -"=' c #ABB4B3", -"-' c #A6AAAA", -";' c #AFA4A6", -">' c #CE7D85", -",' c #EC5666", -"'' c #F05162", -")' c #ED5666", -"!' c #EC5665", -"~' c #EC5766", -"{' c #EC5A69", -"]' c #ED5C6B", -"^' c #ED5E6D", -"/' c #ED5F6E", -"(' c #ED6170", -"_' c #ED6271", -":' c #ED5D6C", -"<' c #ED5A6A", -"[' c #EC5767", -"}' c #EC5565", -"|' c #ED5362", -"1' c #E55F6D", -"2' c #D9727C", -"3' c #C39398", -"4' c #AFB5B5", -"5' c #D6D6D6", -"6' c #A6ADAC", -"7' c #ACAAAA", -"8' c #C9858C", -"9' c #E6606E", -"0' c #ED5767", -"a' c #ED5868", -"b' c #EE5767", -"c' c #ED5867", -"d' c #ED5766", -"e' c #ED5665", -"f' c #ED5969", -"g' c #ED5B6B", -"h' c #ED5D6D", -"i' c #ED5B6A", -"j' c #EE5464", -"k' c #E06975", -"l' c #D0828A", -"m' c #BF9CA0", -"n' c #B3B8B7", -"o' c #A8AEAD", -"p' c #C38E94", -"q' c #DC6E7A", -"r' c #E8606F", -"s' c #EE5A69", -"t' c #EF5868", -"u' c #EE5969", -"v' c #EE5A6A", -"w' c #ED5968", -"x' c #EF5565", -"y' c #DB737E", -"z' c #C79298", -"A' c #BAA5A7", -"B' c #B7BABA", -"C' c #D7D7D7", -"D' c #D8D8D8", -"E' c #C6C5C5", -"F' c #ACB2B1", -"G' c #BD989C", -"H' c #D27F87", -"I' c #E36A77", -"J' c #EF5B6B", -"K' c #F0596A", -"L' c #EE5B6C", -"M' c #EE5C6C", -"N' c #EE5B6B", -"O' c #EE5A6B", -"P' c #F05668", -"Q' c #ED5B6C", -"R' c #D77E88", -"S' c #BFA2A5", -"T' c #B5AEAF", -"U' c #BCBEBE", -"V' c #B7A2A4", -"W' c #C79096", -"X' c #DD7580", -"Y' c #EF5D6E", -"Z' c #F25A6C", -"`' c #EF5C6D", -" ) c #F05A6B", -".) c #EC6171", -"+) c #D28891", -"@) c #B8B0B2", -"#) c #B2B6B6", -"$) c #D9D9D9", -"%) c #B1AAAB", -"&) c #BDA0A3", -"*) c #D6808A", -"=) c #EE6272", -"-) c #F25D6F", -";) c #F05F71", -">) c #EF5F71", -",) c #EF5F70", -"') c #EF5E70", -")) c #EF5E6F", -"!) c #F05D6E", -"~) c #F05E6F", -"{) c #EC6373", -"]) c #E3707E", -"^) c #CC949B", -"/) c #B6B6B7", -"() c #B2BAB9", -"_) c #ADB1B1", -":) c #B4AEAF", -"<) c #CE8C94", -"[) c #EA6A79", -"}) c #F16173", -"|) c #F06173", -"1) c #F06172", -"2) c #F06072", -"3) c #F06071", -"4) c #F25E6F", -"5) c #E5707E", -"6) c #D68790", -"7) c #C4A1A5", -"8) c #B6BBBA", -"9) c #AEB6B5", -"0) c #C6999F", -"a) c #DE7B87", -"b) c #EB6B7B", -"c) c #F26275", -"d) c #F36174", -"e) c #F16376", -"f) c #F16375", -"g) c #F16275", -"h) c #F16274", -"i) c #F35F71", -"j) c #F06374", -"k) c #DE7E8A", -"l) c #CA9DA2", -"m) c #BEADAF", -"n) c #BBBEBE", -"o) c #DADADA", -"p) c #DBDBDB", -"q) c #B4B8B8", -"r) c #B3B4B4", -"s) c #BDA6A9", -"t) c #CD939A", -"u) c #E27987", -"v) c #F36477", -"w) c #F56275", -"x) c #F26578", -"y) c #F26577", -"z) c #F26476", -"A) c #F36274", -"B) c #EE697A", -"C) c #D78D96", -"D) c #BFB1B3", -"E) c #B8B9B9", -"F) c #C2C3C3", -"G) c #DCDCDC", -"H) c #BABCBC", -"I) c #B7AFB0", -"J) c #C1A5A9", -"K) c #D98893", -"L) c #EF6C7E", -"M) c #F4667A", -"N) c #F2677A", -"O) c #F3677A", -"P) c #F26779", -"Q) c #F26678", -"R) c #F26679", -"S) c #F46477", -"T) c #F36578", -"U) c #EE6C7D", -"V) c #E47C89", -"W) c #CE9CA3", -"X) c #BABABB", -"Y) c #B8BEBD", -"Z) c #C1C2C1", -"`) c #B2B6B5", -" ! c #B9B3B4", -".! c #CF979F", -"+! c #E77A89", -"@! c #F06E80", -"#! c #F3697D", -"$! c #F4687C", -"%! c #F3697C", -"&! c #F3687B", -"*! c #F66478", -"=! c #F46679", -"-! c #E57C8B", -";! c #D3989F", -">! c #C5ACB0", -",! c #BBBCBC", -"'! c #BBBFBE", -")! c #B4BAB9", -"!! c #B6B9B9", -"~! c #C5A6AB", -"{! c #D88F9A", -"]! c #E87B8B", -"^! c #F36C80", -"/! c #F5697D", -"(! c #F46B7E", -"_! c #F46B7F", -":! c #F46A7E", -"~ c #C8B1B5", -",~ c #D5A0A9", -"'~ c #E78898", -")~ c #F7748A", -"!~ c #FA7289", -"~~ c #F8748A", -"{~ c #F7758A", -"]~ c #F87288", -"^~ c #F6768B", -"/~ c #EF8092", -"(~ c #DE99A4", -"_~ c #CDB2B7", -":~ c #C5BDBF", -"<~ c #C3C5C5", -"[~ c #E0E0E0", -"}~ c #BEC0C0", -"|~ c #C0BDBD", -"1~ c #C7B4B7", -"2~ c #DA9DA7", -"3~ c #ED8597", -"4~ c #F57B90", -"5~ c #F8778D", -"6~ c #F9768C", -"7~ c #F8768C", -"8~ c #F8778C", -"9~ c #F7778C", -"0~ c #F7768C", -"a~ c #F8758B", -"b~ c #F57A8F", -"c~ c #E395A2", -"d~ c #D2AEB4", -"e~ c #C3C3C4", -"f~ c #C1C6C5", -"g~ c #C8C9C9", -"h~ c #BFC0C0", -"i~ c #BEBFBF", -"j~ c #C2BDBE", -"k~ c #CAB4B8", -"l~ c #D6A5AE", -"m~ c #E78F9F", -"n~ c #F67C91", -"o~ c #FA778D", -"p~ c #F9788E", -"q~ c #F8798F", -"r~ c #F8788E", -"s~ c #FB758C", -"t~ c #EC899A", -"u~ c #DDA0AA", -"v~ c #CFB6B9", -"w~ c #C7C0C1", -"x~ c #E1E1E1", -"y~ c #C2C4C3", -"z~ c #C1C3C3", -"A~ c #C2C1C2", -"B~ c #C8BABE", -"C~ c #D9A5AE", -"D~ c #EB8E9E", -"E~ c #F38397", -"F~ c #F77E93", -"G~ c #F97B91", -"H~ c #FA7A90", -"I~ c #F97A90", -"J~ c #FA7990", -"K~ c #FA798F", -"L~ c #F87B91", -"M~ c #F48195", -"N~ c #EB8D9E", -"O~ c #E09EA9", -"P~ c #D1B4B9", -"Q~ c #C4C7C6", -"R~ c #C3C9C8", -"S~ c #C6C7C7", -"T~ c #E2E2E2", -"U~ c #CBCCCC", -"V~ c #C4C5C5", -"W~ c #C3C4C4", -"X~ c #C5C2C3", -"Y~ c #CBBCBE", -"Z~ c #D4B1B7", -"`~ c #E09FAA", -" { c #ED8C9E", -".{ c #F78196", -"+{ c #FD7A91", -"@{ c #FD7991", -"#{ c #FB7C93", -"${ c #FA7C93", -"%{ c #FA7D94", -"&{ c #FA7C92", -"*{ c #FB7A92", -"={ c #FB7A91", -"-{ c #FC7890", -";{ c #FA7B93", -">{ c #F0899C", -",{ c #E39BA8", -"'{ c #D8ACB4", -"){ c #CEBABD", -"!{ c #C7C2C2", -"~{ c #C6C8C8", -"{{ c #E3E3E3", -"]{ c #C7C8C8", -"^{ c #C5C7C6", -"/{ c #C4C8C7", -"({ c #D2B4BA", -"_{ c #E0A0AC", -":{ c #EC91A2", -"<{ c #F5879B", -"[{ c #F88298", -"}{ c #F98097", -"|{ c #FA7F96", -"1{ c #FB7E95", -"2{ c #FB7E96", -"3{ c #FB7F96", -"4{ c #FA7E95", -"5{ c #FA7D95", -"6{ c #FB7D95", -"7{ c #FB7D94", -"8{ c #F78297", -"9{ c #F5849A", -"0{ c #F08B9F", -"a{ c #E39DAB", -"b{ c #D5B1B8", -"c{ c #CBBFC2", -"d{ c #C4C9C8", -"e{ c #C5C7C7", -"f{ c #C5C6C6", -"g{ c #C9C1C3", -"h{ c #CFBABE", -"i{ c #D6B1B8", -"j{ c #DFA5B0", -"k{ c #EA97A7", -"l{ c #F5899E", -"m{ c #FB8199", -"n{ c #FF7D96", -"o{ c #FE7D96", -"p{ c #FD7F96", -"q{ c #FC7F97", -"r{ c #FC8097", -"s{ c #FC8198", -"t{ c #FB8198", -"u{ c #FB8097", -"v{ c #FC7D96", -"w{ c #FD7D96", -"x{ c #FE7C95", -"y{ c #FD7E96", -"z{ c #F6879C", -"A{ c #ED93A4", -"B{ c #E2A2AE", -"C{ c #D7AFB7", -"D{ c #D0B9BD", -"E{ c #CBC0C2", -"F{ c #C6C4C4", -"G{ c #C8CACA", -"H{ c #D7D6D6", -"I{ c #E4E4E4", -"J{ c #C6CAC9", -"K{ c #C5CAC9", -"L{ c #C8C5C6", -"M{ c #CFBBC0", -"N{ c #DCABB5", -"O{ c #EA9BAA", -"P{ c #F290A3", -"Q{ c #F7899F", -"R{ c #F9869D", -"S{ c #FA869C", -"T{ c #FB849B", -"U{ c #FC839A", -"V{ c #FC829A", -"W{ c #FD8299", -"X{ c #FD829A", -"Y{ c #FA839B", -"Z{ c #F9849B", -"`{ c #F8869D", -" ] c #F7889E", -".] c #F48CA1", -"+] c #EB98A8", -"@] c #E0A7B2", -"#] c #D3B8BD", -"$] c #C5C9C8", -"%] c #C6C9C9", -"&] c #C7C9C8", -"*] c #D0CFD0", -"=] c #E5E5E5", -"-] c #CACCCC", -";] c #C5C8C8", -">] c #C9C4C5", -",] c #CEBFC2", -"'] c #D3B9BE", -")] c #D9B1B9", -"!] c #E0A9B4", -"~] c #E89FAE", -"{] c #F096A7", -"]] c #F68DA2", -"^] c #FB869D", -"/] c #FE829B", -"(] c #FF819A", -"_] c #FF829B", -":] c #FF809A", -"<] c #FC859D", -"[] c #F68BA0", -"}] c #F094A6", -"|] c #E99DAC", -"1] c #E2A7B2", -"2] c #DBB0B8", -"3] c #D5B7BD", -"4] c #D0BDC0", -"5] c #CAC3C4", -"6] c #C6C9C8", -"7] c #C9CBCA", -"8] c #CFD0CF", -"9] c #C9CACA", -"0] c #C6CBCA", -"a] c #C9C7C7", -"b] c #D0BFC3", -"c] c #D9B4BC", -"d] c #E3A8B4", -"e] c #EB9DAD", -"f] c #F195A8", -"g] c #F590A4", -"h] c #F88CA2", -"i] c #F98BA2", -"j] c #FA8BA1", -"k] c #FA8AA1", -"l] c #FB8AA1", -"m] c #FB89A0", -"n] c #FB89A1", -"o] c #F98CA2", -"p] c #F78EA4", -"q] c #F293A7", -"r] c #EB9CAB", -"s] c #E4A6B2", -"t] c #DBB1B9", -"u] c #D2BDC1", -"v] c #CAC7C7", -"w] c #C7CAC9", -"x] c #C7CACA", -"y] c #E6E6E6", -"z] c #CECFCF", -"A] c #C9CCCC", -"B] c #C9C6C6", -"C] c #CDC1C4", -"D] c #D4BABF", -"E] c #D7B6BD", -"F] c #DBB2BA", -"G] c #DFADB7", -"H] c #E3A9B5", -"I] c #E7A5B2", -"J] c #EAA1B0", -"K] c #EC9EAE", -"L] c #ED9CAD", -"M] c #ED9BAC", -"N] c #EE9BAC", -"O] c #EF9BAC", -"P] c #EF9BAD", -"Q] c #ED9DAE", -"R] c #EC9EAF", -"S] c #E8A4B2", -"T] c #E5A8B4", -"U] c #E0ADB7", -"V] c #DCB1BA", -"W] c #D8B5BC", -"X] c #D5B9BE", -"Y] c #CEC1C3", -"Z] c #CAC5C6", -"`] c #CDCECE", -" ^ c #E7E7E7", -".^ c #CACBCB", -"+^ c #C9CBCB", -"@^ c #C8CBCB", -"#^ c #C7CCCB", -"$^ c #CDC4C6", -"%^ c #D2BFC3", -"&^ c #D7BABF", -"*^ c #DBB5BD", -"=^ c #DDB1BB", -"-^ c #DFAFB9", -";^ c #DFADB8", -">^ c #E1ADB8", -",^ c #E1AEB9", -"'^ c #DFAFBA", -")^ c #DEB1BB", -"!^ c #DBB4BD", -"~^ c #D8B9BF", -"{^ c #D4BEC2", -"]^ c #CEC4C6", -"^^ c #C7CBCA", -"/^ c #D3D4D3", -"(^ c #CED0D0", -"_^ c #CACDCC", -":^ c #C8C7C7", -"<^ c #CCC3C5", -"[^ c #CEC1C4", -"}^ c #CFC0C3", -"|^ c #D0BFC2", -"1^ c #D0BEC2", -"2^ c #D1BEC2", -"3^ c #D1BFC2", -"4^ c #CDC3C5", -"5^ c #CBC5C6", -"6^ c #C9CDCC", -"7^ c #CDCFCF", -"8^ c #D1D3D2", -"9^ c #E8E8E8", -"0^ c #D6D7D7", -"a^ c #D4D5D5", -"b^ c #D2D4D4", -"c^ c #D1D3D3", -"d^ c #D0D2D2", -"e^ c #CFD2D1", -"f^ c #CED1D1", -"g^ c #CDD0D0", -"h^ c #CDD0CF", -"i^ c #D3D5D4", -"j^ c #D5D6D6", -"k^ c #E9E9E9", -"l^ c #EAEAEA", -"m^ c #EBEBEB", -"n^ c #ECECEC", -"o^ c #EDEDED", -"p^ c #EEEEEE", -" . . . . . . . . . . . . . . . . . . . . . . . . . . . ", -" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", -" + @ . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ ", -" + + + @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ", -" + + + + + @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ", -" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ", -" + + + + + + + + + + + + + + + # # # $ $ $ $ % % % % % $ $ $ $ $ $ # # # # # # # # # # # # # # # # ", -" # # # # # # # # # # # # # # # # # # # $ % % % % % % % % % % % % $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ", -" $ $ $ $ $ $ $ $ $ $ $ $ % % & & & % + * = - ; > , , ' , , , > > ) = . + % & ! & & % % % $ $ $ $ % $ $ $ $ $ $ ", -" % % % % % % % % % % % % % % % % & & & % # - ~ { ] ^ / ( _ _ _ : ( < / [ } ' ) @ & ! & & & % % % % % % % % % % % % % % ", -" % % % % % % % % % % & & ! ! ! % + = > ~ } ] | 1 2 3 4 5 6 7 8 7 9 6 0 a b c d e [ { f , - @ $ ! ! ! & % % % % % % % % % % ", -" & & & & & & & & & & & & & ! ! & + > g : h i j k k l m n n o o o o o o n n n m k k j p q _ [ ' . & ! ! & & & & & & & & & & & & & & ", -" ! ! ! ! ! ! ! ! ! ! r r r & + ) ~ g s t u v w x y z A B C D E F G H G E I J K L M N O P Q R S T [ U > * % r r ! ! ! ! ! ! ! ! ! ! ! ! ", -" r r r r r r r r r r r V V ! # ' | h W k m n X Y Z ` ...+.@.#.$.%.&.*.=.-.;.>.,.'.).!.~.{.].o l k p ^._ { . V /.V r r r r r r r r r r r r ", -" r r r r r r r r V V /.V & @ > (.T _.:.P <.[.}.|.1.,.2.3.4.5.6.7.8.9.0.a.b.c.7.d.e.f.g.2.h.i.j.k.l.m.n.o.R p.] , . % r /.V V r r r r r r r r r ", -" V V V V V V V V V V V q.V * (.r.W k m s.Z t.u.@.v.w.x.y.z.A.B.C.D.E.F.G.H.I.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.Q v X.i Y.[ - & /./.V V V V V V V V V V V ", -" V V V V V V V V /././.r # ; ] r.Z.n.<.`. +.+++@+#+$+%+&+*+=+-+;+>+,+'+)+!+~+{+'+]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+[ , + ! /./.V V V V V V V V V V ", -" /./././././././././././.% U 0+^.a+b+{.c+d+e+f+g+h+L.i+j+k+l+m+n+o+p+q+r+s+s+t+s+r+q+p+o+u+v+w+k+x+y+z+A+B+C+D+E+F+v G+H+^.I+(.. /.q./././././././././././. ", -" q./.q.q.q.q.q.q.q.q.q.V @ f J+K+7+L+M+N+O+P+Q+R+S+T+>+U+V+W+X+Y+Z+`+ @.@+@@@@@@@@@+@.@ @`+#@$@%@&@*@=@-@;@>@A.,@'@)@!@~@{@]@u p.{ * ! q.^@q.q.q.q.q.q.q.q././. ", -" /@^@^@^@^@^@^@^@^@/@^@/.$ (.(@X.m _@:@<@[@}@|@1@2@k+3@4@5@6@7@8@9@9@9@0@0@0@0@0@0@0@0@0@0@9@9@9@8@7@a@b@q+n+c@d@e@f@g@h@i@j@k@l@^.m@| - q./@^@^@^@^@^@^@^@^@^@ ", -" /@/@/@^@^@^@^@^@/@/@/@/.+ U n@l L+o@p@q@r@s@t@u@v@V+`+w@Z+@@9@0@x@x@x@x@x@x@x@x@x@x@x@x@x@x@x@x@x@x@0@9@@@y@X+%@z@~+A@B@C@D@E@F@G@H@R Y.g . V /@/@^@^@^@^@^@^@^@^@ ", -" /@/@/@/@/@/@/@I@/@q.$ (.(@H+J@K@L@M@N@O@P@Q@R@V+a@7@8@S@0@0@0@x@x@x@x@x@x@x@x@x@x@x@x@x@x@x@x@x@x@0@0@9@9@T@8@a@t+U@V@W@X@Y@Z@`@ #.#+#0+@#= /@##/@/@/@/@/@/@/@/@/@ ", -" /@/@/@/@/@/@/@/@I@^@# ~ $#k %#&#*#=#-#;#>#,#'#Z+#@0@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@6@6@6@)#0@T@#@!#~#{#]#^#/#(#_#:#u m@{ $ q.I@I@I@/@I@I@I@/@/@I@ ", -" I@I@I@I@I@I@I@I@I@I@V f m@<#[#&#}#|#1#2#3#4#5#6#a@6@7#7#7#7#7#7#7#8#8#8#8#8#8#8#8#8#8#9#9#9#9#9#9#9#9#9#9#0#b@b@b@9#a#b#c#r+d#e#f#g#h#i#j#k#(@: { # ##l################### ", -" ##I@I@I@I@I@I@I@m###V = / n#o#p#q#r#s#t#u#v#5@b#7#w#x#w#w#w#w#w#w#w#x#x#x#x#x#x#x#x#x#x#t+t+t+t+t+t+t+t+t+t+s+s+s+s+s+s+y#t+x@a@z#A#B#C#D#E#F#G#H#: , /.##m#m################# ", -" m#m#####m#m#m#m#m#I#m#* | H#J#K#L#M#N#O#P#Q#R#s+S#r+T#T#T#T#T#T#T#T#T#T#T#T#T#T#T#T#T#T#U#U#U#U#U#U#U#U#U#U#U#U#V#V#V#V#V#V#W#X#X#R#Y#Z#`# $.$+$@$#$Y.[ = V l#l#m#m#m#m#m#m#m# ", -" m#m#m#m#m#m#m#m#l#l###V U h R $$%$&$*$=$-$;$>$T#U#,$,$,$,$,$,$,$,$,$,$,$,$,$,$,$,$,$,$,$,$'$'$'$'$'$'$'$'$'$'$'$)$)$)$)$)$)$)$)$)$)$!$X#~${$]$^$/$($_$:$<${ + ##l#m#m#m#m#m#m#m#m# ", -" l#l#l#l#l#l#l#[$l#! > < +#}$|$1$2$3$4$5$6$7$8$8$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$9$0$a$a$a$a$a$a$a$a$a$a$a$)$b$c$d$e$f$g$h$i$j$k$: , /.m#l#l#l#l#l#l#l#l#l# ", -" I#l#l#l#l#l#l#l#[$m#. @#S :#l$m$n$o$p$e#q$a$8$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$r$r$r$r$r$r$r$r$r$r$r$r$r$s$6$t$u$v$w$x$y$z$m@g @ q.I#I#l#l#l#l#l#l#l#l# ", -" [$[$I#I#I#I#I#[$I#I#/@' 0+A$6 B$C$D$E$F$G$H$H$c$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$J$J$K$K$K$K$K$K$I$I$I$J$J$J$J$J$J$J$J$J$L$L$L$L$J$6$M$N$O$P$Q$R$S$T$U$V${ $ [$W$I#I#I#I#I#I#I# ", -" [$[$[$[$[$[$[$[$X$[$I@% g q 7 Y$Z$`$ %.%+%@%0$#%#%$%%%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%%%&%&%&%&%&%&%&%&%*%*%*%&%&%&%&%&%&%&%&%*%;$;$;$;$;$#%*%V@=%-%;%>%,%'%0+)%< - m#X$[$[$[$[$[$[$[$[$ ", -" X$X$X$X$X$X$X$X$!%W$! f ~%(@{%]%^%/%(%_%:%&%M$Y#<%<%<%<%<%<%<%<%<%<%<%<%<%<%<%<%<%<%Y#<%<%<%<%<%<%<%<%<%<%[%[%[%[%[%[%[%[%[%}%[%[%|%|%|%|%|%}%|%1%2%3%4%5%6%7%8%9%_ ~ r m#X$X$X$X$X$X$X$X$X$ ", -" X$X$X$X$X$X$X$!%[$* / 0%a%b%c%d%e%f%g%h%i%<%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%j%j%j%j%j%j%j%j%j%j%j%j%k%k%k%k%k%k%k%k%$%l%m%n%o%p%q%r%s%I+t%. ^@X$!%X$X$X$X$X$X$X$X$ ", -" W$W$W$W$W$W$W$X$I@, 0+u%S v%w%x%y%z%A%B%C%D%C%C%C%C%C%C%C%C%C%C%C%C%C%C%C%C%C%C%E%F%E%C%C%C%C%C%C%C%C%F%F%F%F%F%F%F%F%F%F%G%F%G%G%G%G%G%G%G%G%H%C%I%J%K%L%M%N%O%_ P%U & W$Q%W$W$W$W$W$W$W$W$ ", -" W$W$W$W$W$W$!%W$l#r R%Y.S%T%U%V%W%X%Y%Z%`% &`% & & & & & & & & & & & & & & & & &.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&+&+&+&+&+&+&+&+&+&+&+&+&@&+&#&$&%&&&*&=&-&: ;&^ + X$Q%W$W$W$W$W$W$W$ ", -" Q%Q%!%!%!%!%!%>&!%/@* ,&m@'&)&!&~&{&]&^&/&F%(&_&(&(&(&(&(&(&(&(&(&(&(&(&(&(&(&:&:&(&(&(&(&(&(&(&(&(&<&<&<&<&<&<&<&<&<&d$d$<&B%B%B%B%B%B%B%B%B%B%[&+&[&}&|&1&2&3&4&5&( 6&/ = l#!%!%Q%!%!%!%!%!% ", -" Q%Q%Q%Q%Q%Q%Q%Q%7&Q%r ~ 8&0+9&0&a&b&c&d&e&f&g&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&h&f&i&i&i&i&i&i&i&i&i&i&i&/&/&/&/&/&/&/&/&/&/&/&j&k&j&:%l&m&n&o&p&q&r&s&< > q.[$Q%>&Q%Q%Q%Q%Q%Q% ", -" >&>&>&>&>&>&>&>&t&>&$ ^ u&v&w&x&y&z&A&B&C&D&E&F&G&F&F&F&F&F&F&F&F&F&F&F&F&F&F&F&G&H&H&H&H&H&H&H&G&G&H&H&H&H&H&H&H&H&H&H&I&J&J&J&K&J&J&J&I&I&I&I&K&K&j&K&L&M&N&O&P&Q&R&S&T&< U&$ ##>&7&>&>&>&>&>&>&7&", -" >&>&>&>&>&>&>&>&t&Q%. : V&r.W&X&Y&Z&`& *.*Z%k&Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*@*@*@*@*@*@*@*@*@*@*@*@*@*K&@*#*$*%*&***=*-*;*>*/ ,*= ^@>&'*>&>&>&>&>&7&7&", -" 7&7&7&7&7&7&7&7&>&I#) _ 9%)*!*~*{*]*=*^*e&/*D&(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*/*/*/*/*/*/*/*/*_*_*_*_*_*_*_*_*_*_*_*_*:*:*:*:*:*:*:*:*<*<*<*<*<*@*<*[*}*|*{*1*{*2*3*4*@#5*, /.7&t&7&7&7&7&7&7&7&", -" 7&7&7&7&7&7&'*7&W$/@6*_ 7*8*3*9*0*9*&*a*b*c*+*d*<*d*d*d*d*d*d*d*d*d*d*d*d*e*e*e*e*e*e*e*e*e*e*e*e*f*f*f*f*f*f*f*f*f*f*f*f*f*f*f*f*f*f*f*f*g*g*g*g*g*<*g*h*i*j*k*l*k*m*n*o*^ p*U r 7&t&7&7&7&7&7&7&7&", -" '*'*'*'*'*'*t&'*[$r q*( r*s*t*u*v*w*{*x*y*z*A*c*B*c*c*c*c*c*c*c*c*c*c*c*C*D*D*D*D*D*D*D*D*D*D*D*D*E*E*E*E*E*E*E*E*F*F*F*F*F*F*F*F*F*F*F*F*F*F*G*G*G*f*G*H*I*J*K*L*K*M*N*O*P*Q*(.% >&R*'*'*'*'*'*'*'*", -" t&t&t&t&t&t&S*t&l## T*< U*V*W*X*Y*X*Z*X*`* =.=+=E*@=@=@=@=@=@=@=@=@=@=@=#=$=$=$=$=$=$=$=$=$=$=$=#=#=#=#=#=#=#=#=%=%=&=%=%=%=%=%=%=%=%=%=%=%=*=*=*=*=E**===-=;=w*>=w*,='=)=] !=] # Q%t&t&t&t&t&t&t&t&", -" R*R*R*R*R*S*R*##. ~=/ {=]=^=/=(=/=_=/=:=<=[=}=#=|=|=|=|=|=|=|=1=1=1=1=|=2=2=2=2=2=2=2=2=2=2=2=2=|=|=|=|=|=|=|=2=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=3=+=|=4=5=6=7=8=9=0=a=b=c=d=g + X$'*R*R*R*R*R*R*R*", -" R*R*R*R*R*R*e=R*I@= f=| g=h=i=j=k=j=l=j=m=n=o=p=}=z*z*z*z*z*z*z*q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=q=r=r=r=r=r=r=r=r=r=r=r=r=r=r=r=r=r=r=.=s=t=u=v=v=/=/=w=/=x=y=] (.z=I#7&R*S*R*R*R*R*R*", -"S*S*S*R*R*R*R*R*A=R*/@; B=| C=D=E=F=G=F=H=F=I=J=K=L=M=N=N=N=N=N=N=N=O=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=P=s=s=s=s=s=s=s=s=s=s=s=s=s=s=s=s=O=s=Q=R=S=T=/=H=H=H=U=V=W=X=Y={ Z=m#>&S*e=S*S*S*S*S*", -"S*S*S*S*S*S*S*S*A=S*^@, `=@# -.-+-@-#-@-@-@-@-$-%-&-*-=-=-=-=-=-=-=---------------------------------------------&-&-&-&-&-&-&-&-&-&-&-&-&-&-&-&-&-&---&-;->-,-'-V='-'-'-)-'-!-~-{-} ]-##>&e=A=e=e=e=e=e=", -"e=e=e=e=e=e=e=e=^-e=^@' /-[ (-_-:-<-[-<-<-<-@-}-|-1-2-3-4-5-5-5-5-5-6-7-7-7-7-7-7-7-7-7-7-7-7-7-7-7-7-7-7-7-7-8-8-8-8-8-8-8-8-8-8-9-9-9-9-9-9-9-9-9-0-8-a-b-c-@-d-e-e-e-f-e-g-h-i-U j-I@>&A=^-A=A=A=A=A=", -"A=A=A=A=A=A=A=A=k-A=^@' l-g m-n-o-p-q-p-p-p-<-p-r-s-t-u-7-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-u-v-v-v-v-v-v-v-v-v-v-w-w-w-w-w-w-w-w-w-w-u-x-y-z-A-<-B-<-<-<-C-<-D-E-F-f G-I@>&A=^-A=A=A=A=A=", -"^-^-^-^-^-^-^-^-H-^-^@' l-(.I-J-K-L-M-N-O-N-P-Q-R-S-T-U-w-w-w-V-V-W-W-W-W-W-W-W-W-W-W-W-W-W-W-W-W-W-W-W-W-X-X-X-X-X-X-X-X-X-X-X-X-Y-Y-Y-Y-Y-Y-Y-w-V-Z-`- ;.;A-+;@;+;+;+;#;+;$;%;&;f G-I@>&A=k-A=A=A=A=A=", -"^-^-^-^-^-^-^-^-*;^-^@' =;(.-;;;>;,;';);););););!;~;{;];^;/;W-/;(;(;(;(;(;(;(;(;(;(;(;(;(;(;(;(;(;(;(;(;(;x-x-x-x-x-x-x-x-x-x-x-_;_;_;_;_;_;_;_;Y-:;<;[;};.;L-.;.;.;.;.;|;.;1;2;3;~ 4;I@>&^-k-^-^-^-^-^-", -"k-k-k-k-k-k-k-k-*;k-I@> 5;{ 6;7;8;9;0;a;a;a;a;a;b;c;d;e;f;g;h;(;i;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;k;k;k;k;k;k;k;k;^;l;l;^;^;^;^;k;k;i;j;m;n;o;p;q;);););r;);););s;~;t;u;v;, w;##'*k-H-k-k-k-k-k-", -"H-H-H-H-H-H-H-H-x;H-##) y;U z;A;B;C;D;C;C;C;C;C;C;C;E;F;o;G;m;H;I;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;H;J;J;J;J;J;J;J;J;K;K;K;K;K;K;K;K;K;L;M;N;O;P;a;Q;a;a;a;a;a;a;a;R;a;S;T;U;; V;l#t&H-*;H-H-H-H-H-", -"H-H-H-*;*;*;*;*;W;*;l#* X;U Y;Z;`; >.> > > > > >+> >C;@>#>$>%>&>*>J;J;M;M;=>=>=>=>=>=>=>=>=>=>=>->;>;>;>;>;>;>;>;>;>;>;>>>>>,>,>,>,>;>;>;>,>&>'>)>!>+>~>~>C;C;C;C;C;C;C;{>C;]>^>/>) (>I#R**;x;*;*;*;*;*;", -"H-H-H-*;*;*;*;*;W;*;[$+ _>f :><>[>}>|>}>}>}>}>}>}>}>}>}>1>2>3>4>5>,>->6>6>6>6>6>6>6>6>6>6>6>6>6>6>7>7>7>7>7>7>7>7>7>7>7>7>7>7>8>8>8>6>8>8>9>0>a>b>1>+>1>1>1>1>1>1>1>1>1>c>+>d>e>f>- g>X$S**;x;*;*;*;*;*;", -"H-H-*;*;x;*;*;*;W;*;W$% h>~ i>j>k>l>m>l>l>l>l>l>l>l>l>l>n>n>o>p>q>r>s>t>8>7>7>7>u>u>u>u>u>u>u>u>u>u>u>u>u>u>u>u>u>u>v>v>v>v>w>w>8>w>x>y>z>A>B>!>C>1>}>D>D>D>D>D>D>C>C>C>E>n>F>G>H>= I>Q%A=*;x;*;*;*;*;*;", -" x;x;x;x;x;x;J>x;Q%V K>, L>M>N>O>P>O>O>O>O>O>O>O>O>O>O>O>O>Q>R>S>T>U>V>W>W>v>X>X>X>X>X>X>X>X>X>Y>Y>Y>Y>Y>Y>Y>Y>Y>Y>Z>Z>Z>x>Y>Y>`> ,.,+,@,#,#,$,$,$,$,$,$,$,$,$,$,$,$,%,$,&,*,- * =,R*H-x;x;x;x;x;x;x;", -" x;x;x;W;W;J>W;'*/@4;, -,;,>,,,',),),),),),,,),),),,,),!,O>~,{,],^,/,(,_,:,<,[,V>V>V>V>V>[,[,},},},},},Z>Z>Z>Z>Z>},<,|,1,2,3,4,5,6,7,8,#,O>O>Q>Q>Q>Q>Q>Q>Q>O>9,9,9,0,a,b,c,d,. e,^-x;W;W;W;W;W;W;W;", -" W;W;W;W;W;J>f,J>S*l#g,> h,i,j,{,k,{,{,{,{,{,{,{,{,{,{,{,{,{,{,{,{,{,l,],m,n,o,p,<,<,<,<,q,q,q,q,q,q,q,q,q,q,q,q,q,q,:,o,r,^,s,t,u,{,v,v,v,v,v,v,v,v,v,v,v,v,w,w,~,w,x,y,z,A,B,+ I#x;f,J>J>J>J>J>J>J>", -" J>J>J>J>J>J>C,J>^-Q%D,; E,F,G,H,I,J,J,J,J,K,K,K,K,K,K,K,K,K,L,M,{,v,{,N,],O,P,Q,R,S,T,U,U,V,V,W,W,W,W,X,V,V,Y,Y,Z,`,Q, '.'s,N,{,v,+'{,@'M,M,M,M,M,M,M,M,#'M,{,{,v,{,$'%'&'*'='% W$J>C,J>J>J>J>J>J>J>", -" f,f,f,f,f,f,C,f,x;S*^@- -';'>',''')')')'!'!'!'!'!'!'!'!'!'!'!'!'N,N,!'!'!'~'~'~'],{']'^'/' '('_'Q,Q,_'(' '/'^':'<'[',',','}'}'}'}'N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,|'N,1'2'3'$ 4'V >&f,5'f,f,f,f,f,f,f,", -" f,f,f,f,f,f,C,f,f,H-m#= 6'7'8'9'0'a'b'a'c'c'c'c'c'c'c'c'c'c'c'c'c'c'0'0'd')'e'e','c'f'<'g']':'h'^'^'^':']'i'<'f'['}'}'}'}',',','['['~'~'~'~'~'~'~'~'~'~'~'~'~'~'j')'k'l'm'% n'I@t&C,5'C,C,C,C,C,C,C,", -" C,C,C,C,C,C,C,C,5'J>X$@ o'* p'q'r's't's's's's's's's's's's's's's's's's'u'u'u'u'u'u'v'v'v'v'v'v'v'v'v'v'v'<'f'f'f'f'a'a'a'a'a'a'w'w'w'w'w'w'w'w'w'w'w'w'w'w'w'w'w'x'a'y'z'A'& B'[$A=5'C'5'5'5'5'5'5'C'", -" 5'5'5'5'5'5'5'5'D'5'E'! F'. G'H'I'J'K'L'M'L'L'L'L'L'L'L'L'L'L'L'L'L'L'L'M'L'L'L'N'N'N'N'N'O'O'O'O'O'O'O'v'v'v'v'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'O'P'Q'R'S'T'! U't&*;5'C'5'5'5'5'5'C'C'", -" C'C'C'C'C'C'C'C'D'C'e=l#g>+ V'W'X'Y'Z'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'Y'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`' ).)+)@)#)r W$H-C,C'C'C'C'C'C'C'C' ", -" C'C'C'C'C'C'C'$)C'*;7&=,+ %)&)*)=)-);););););););)>),),),),),),),),),),),),),),),),),),),),),)')')')')')')')')')')')')')')')')')')')')')')')')')))))))))))!)~){)])^)/)()q.7&f,D'C'D'C'C'C'C'C' ", -" D'D'D'D'D'D'D'D'C,k-l## _):)<)[)})})})})})})})})|)1)1)1)1)1)1)1)1)1)1)1)1)1)1)1)1)1)1)1)1)1)1)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)3)3)3)3)3)4)3)5)6)7)/.8)##S*C'$)D'D'D'D'D'D'D' ", -" $)$)$)$)$)$)$)D'f,Q%r 9)V;0)a)b)c)d)e)e)e)e)e)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)f)g)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)i)j)k)l)m)q.n)!%H-$)o)$)$)$)$)$)$)$)$) ", -" o)o)o)o)o)o)o)p)$)e=##q)r)s)t)u)v)w)x)x)x)x)x)x)x)x)x)x)x)x)x)x)x)x)y)y)y)y)y)y)y)y)y)y)y)y)y)y)y)y)y)y)y)y)y)y)z)z)z)z)z)z)z)z)z)z)z)z)z)z)z)z)z)z)z)A)B)C)D)E)/@F)A=f,o)p)o)o)o)o)o)o)p)p) ", -" o)o)o)o)o)o)o)o)G)p)x;>&H)! I)J)K)L)M)N)O)N)N)N)N)N)N)N)N)N)N)N)N)N)N)N)P)N)N)N)N)N)N)N)P)P)P)P)P)P)P)P)P)P)P)P)P)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)Q)R)R)R)R)S)T)U)V)W)X)Y)m#t&J>D'o)p)o)o)o)o)o)p)p) ", -" p)p)p)p)p)p)p)p)G)p)C'*;Z)r `) !.!+!@!#!$!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!%!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!*!=!-!;!>!,!'!X$^-D'p)p)p)p)p)p)p)p)p) ", -" p)p)p)p)p)p)p)G)p)p)C't&/@)!!!~!{!]!^!/!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!_!(!(!:!:!:!:!:!:!:!:!:!'*5!S!T!U!V!W!X!Y!Z!Y!`!`!`!`!`!`!`!`!`!`!`!`!`!`!`! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~.~+~+~+~@~@~@~#~$~%~&~*~=~!%e=f,o)R!R!l!l!l!l!l!l!l! ", -" R!R!R!R!R!R!R!R!R!R!p)f,R*-~S!;~>~,~'~)~!~~~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~{~)~)~)~)~)~)~)~)~)~)~)~)~)~)~)~)~)~]~]~^~/~(~_~:~F)<~t&W;p)l!R!R!R!R!R!R!R!R!R!R! ", -" R!R!R!R!R!R!R![~R!R!G)x;7&*~}~|~1~2~3~4~5~6~7~8~9~9~9~9~9~9~9~9~9~9~9~9~9~9~9~9~9~9~9~9~9~0~0~0~0~0~0~0~0~0~0~0~0~0~0~0~0~a~a~0~b~3~c~d~e~f~Q%R**;D'R![~R!R!R!R!R!R!R!R!R! ", -" [~[~[~[~[~[~[~[~[~R!o)J>g~h~i~j~k~l~m~n~o~o~p~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~q~r~r~r~r~p~p~s~s~n~t~u~v~w~Q%Q!t&x;o)l![~[~[~[~[~[~[~[~[~[~ ", -" [~[~[~[~[~[~[~x~x~[~G)x;7&y~z~A~B~C~D~E~F~G~H~H~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~I~I~J~J~K~I~L~M~N~O~P~Q~R~S~S*H-D'[~x~[~[~[~[~[~[~[~[~[~ ", -" x~x~x~x~x~x~x~x~T~T~T~[~p)f,U~V~W~X~Y~Z~`~ {.{+{@{#{${%{%{%{%{%{%{%{%{%{%{%{%{%{${${${${${${${${${${${${${${${&{*{={-{;{>{,{'{){!{Q!~{e=J>p)R!x~T~x~x~x~x~x~T~T~x~ ", -" x~T~T~T~T~T~T~T~T~{{{{x~l!C,A=]{^{/{E'({_{:{<{[{}{|{1{1{2{3{|{|{|{|{|{|{|{|{|{4{4{4{4{4{4{4{4{4{4{4{5{5{6{7{6{|{8{9{0{a{b{c{d{d{t&A=W;p)T~{{T~T~T~T~T~T~T~T~T~ ", -" T~{{{{{{{{{{{{{{{{{{{{T~l!D'*;g~e{f{g{h{i{j{k{l{m{n{o{p{q{r{s{t{t{t{t{t{t{t{t{u{u{u{u{u{u{u{u{u{u{q{v{w{x{y{z{A{B{C{D{E{F{Q~G{H-H{l!x~{{{{{{{{{{{{{{{{{{T~ ", -" {{{{{{{{{{{{{{{{{{I{I{{{x~D'H-e=R*J{K{L{M{N{O{P{Q{R{S{T{U{V{W{W{W{X{X{X{X{X{X{X{X{X{X{X{X{W{X{V{Y{Z{`{ ].]+]@]#]L{$]%]&]S**]C'R!I{=]{{{{{{{{{{{{{{{{{{ ", -" I{I{I{I{I{I{I{I{I{I{I{{{[~G)C'x;-];]7&>],]'])]!]~]{]]]^]/](](](]_]_]_]_]_]_]_]_]_]_](](]:](]<][]}]|]1]2]3]4]5]S~6]7]8]5'p)[~{{=]=]I{I{I{I{I{I{I{=]=]=] ", -" I{I{I{I{I{I{I{I{I{I{I{=]=][~$)W;A=9]G{0]0]a]b]c]d]e]f]g]h]i]j]j]k]k]l]m]n]l]l]k]k]j]o]o]p]q]r]s]t]u]v]w]x]G{S*A=*;C'R!I{y]y]=]=]=]=]=]=]=]=]=]y]y] ", -" y]y]y]=]=]=]=]=]=]=]y]y]I{T~l!o)f,z]A]J{]{B]C]u]D]E]F]G]H]I]J]K]L]M]N]O]P]Q]R]J]S]T]U]V]W]X]u]Y]Z]]{%]G{`]J>D'6!x~I{y]y]y]y]y]y]y]y]y]y]y]y]y] ", -" ^ ^y]y]y]y]y]y]y]y]y] ^ ^y]I{6!5'x;A=e=.^+^@^#^#^R*$^%^&^*^=^-^;^>^>^,^'^)^!^~^{^]^R*^^#^@^+^+^e=A=k-C,G)T~y] ^ ^y]y]y]y]y]y]y]y]y]y]y]y] ", -" ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^y]I{x~l!p)C'/^(^_^^^J{6]:^Z]<^[^}^|^1^2^2^3^b]}^[^4^5^:^6]J{0]6^7^8^5'$)6![~{{y] ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ", -" ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^9^9^ ^=]x~G)5'x;k-A=e=.^.^+^+^+^+^+^+^@^+^+^+^+^+^.^.^e=U~^-x;C,o)[~I{ ^9^9^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ", -" ^ ^ ^9^9^9^9^9^9^9^9^9^9^9^9^9^y]{{x~R!6!p)$)0^a^b^c^d^e^f^g^h^g^f^e^d^c^i^j^D'p)6!R![~{{y]9^k^k^k^k^9^9^9^9^9^9^9^9^9^9^ ", -" ^ ^9^9^9^9^9^9^9^9^9^9^9^9^9^9^k^k^k^k^ ^=]x~R!6!p)o)$)D'5'5'5'D'D'o)p)6![~{{ ^k^k^k^k^k^k^k^k^k^k^k^k^k^k^k^k^k^k^k^ ", -" k^k^k^k^k^k^k^k^k^k^k^k^l^l^l^l^l^l^k^ ^y]=]I{{{{{{{T~T~T~{{{{{{I{=] ^9^l^m^m^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^ ", -" k^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^m^m^m^m^m^m^m^m^m^m^m^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^l^m^m^ ", -" l^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^n^n^n^n^n^m^m^m^m^m^m^m^m^m^m^m^l^l^l^l^l^m^m^m^m^l^ ", -" m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^m^ ", -" n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^n^ ", -" o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^o^ ", -" p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^o^o^o^ o^ ", -" p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^o^o^o^ "}; +"100 100 21 1", +" c None", +". c #A0610C", +"+ c #AA590C", +"@ c #B34F0C", +"# c #BC440C", +"$ c #C53B0B", +"% c #CC330B", +"& c #D12E0B", +"* c #D32D0B", +"= c #A65D0C", +"- c #B74A0C", +"; c #CF300B", +"> c #D42D0C", +", c #A75B0C", +"' c #BF400B", +") c #99640B", +"! c #9A640B", +"~ c #B8490C", +"{ c #BA460C", +"] c #A9590C", +"^ c #B0530C", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" .+@#$%&*&%$#@+. ", +" =-;>>>>>>>>>>>>>>>>>;-= ", +" ,'>>>>>>>>>>>>>>>>>>>>>>>>>', ", +" )@>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@) ", +" !~>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>~! ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" ,>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>, ", +" {>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>{ ", +" .*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*. ", +" ]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>] ", +" ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>^ ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>^ ", +" ]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>] ", +" .>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. ", +" *>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* ", +" {>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>{ ", +" ,>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>, ", +" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>! ", +" ~>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>~ ", +" )>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>) ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ", +" ,>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>, ", +" '>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>' ", +" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ", +" =>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>= ", +" ->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>- ", +" ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>; ", +" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ", +" .>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. ", +" +>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>+ ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" #>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>># ", +" $>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>$ ", +" %>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>% ", +" &>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>& ", +" *>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* ", +" &>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>& ", +" %>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>% ", +" $>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>$ ", +" #>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>># ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" +>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>+ ", +" .>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. ", +" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ", +" ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>; ", +" ->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>- ", +" =>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>= ", +" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ", +" '>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>' ", +" ,>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>, ", +" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" )>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>) ", +" ~>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>~ ", +" !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>! ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ", +" ,>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>, ", +" {>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>{ ", +" *>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>* ", +" .>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>. ", +" ]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>] ", +" ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>^ ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>^ ", +" ]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>] ", +" .*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*. ", +" {>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>{ ", +" ,>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>, ", +" @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@ ", +" !~>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>~! ", +" )@>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@) ", +" ,'>>>>>>>>>>>>>>>>>>>>>>>>>', ", +" =-;>>>>>>>>>>>>>>>>>;-= ", +" .+@#$%&*&%$#@+. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesYellow.xpm b/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesYellow.xpm index 930185572f..73df3b2664 100644 --- a/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesYellow.xpm +++ b/Modules/QtWidgets/resource/QmitkMemoryUsageIndicatorImagesYellow.xpm @@ -1,1846 +1,105 @@ /* XPM */ static const char * QmitkMemoryUsageIndicatorImagesYellow_xpm[] = { -"100 100 1743 2", -" c None", -". c #ADADAD", -"+ c #AEAEAE", -"@ c #AFAFAF", -"# c #B0B0B0", -"$ c #B1B1B1", -"% c #B2B2B2", -"& c #B3B3B3", -"* c #ABABAB", -"= c #AAAAAA", -"- c #A9A9A9", -"; c #ACACAC", -"> c #A8A8A8", -", c #A5A5A5", -"' c #A2A2A2", -") c #A1A1A1", -"! c #A0A0A0", -"~ c #9F9F9F", -"{ c #9E9E9E", -"] c #A3A3A3", -"^ c #A6A6A6", -"/ c #B4B4B4", -"( c #B5B5B5", -"_ c #9B9B9B", -": c #989898", -"< c #969696", -"[ c #949495", -"} c #929294", -"| c #909093", -"1 c #8F8F92", -"2 c #8E8E91", -"3 c #909092", -"4 c #919193", -"5 c #939394", -"6 c #959595", -"7 c #979797", -"8 c #999999", -"9 c #909090", -"0 c #8B8B8B", -"a c #868686", -"b c #828282", -"c c #818181", -"d c #838383", -"e c #858585", -"f c #929292", -"g c #B6B6B6", -"h c #9A9A9A", -"i c #8F8F91", -"j c #89898E", -"k c #85858B", -"l c #818189", -"m c #7D7D88", -"n c #7B7B86", -"o c #7B7B84", -"p c #7D7D81", -"q c #80807C", -"r c #838277", -"s c #858473", -"t c #868571", -"u c #868570", -"v c #868670", -"w c #858571", -"x c #848474", -"y c #828278", -"z c #7B7B87", -"A c #7D7D87", -"B c #86868C", -"C c #8A8A8E", -"D c #949494", -"E c #8A8A8A", -"F c #848380", -"G c #87867B", -"H c #8C8B73", -"I c #91906A", -"J c #949265", -"K c #969461", -"L c #97965F", -"M c #969462", -"N c #939266", -"O c #908F6C", -"P c #8C8C72", -"Q c #87877A", -"R c #838381", -"S c #B7B7B7", -"T c #8F8F90", -"U c #87888B", -"V c #818188", -"W c #7C7D87", -"X c #7C7C83", -"Y c #828178", -"Z c #8A896A", -"` c #908F5D", -" . c #979551", -".. c #9D9B45", -"+. c #A3A03E", -"@. c #A9A640", -"#. c #AEAB44", -"$. c #B2AF45", -"%. c #B6B346", -"&. c #B8B548", -"*. c #BAB74B", -"=. c #BBB94D", -"-. c #BBB94E", -";. c #B7B548", -">. c #B5B347", -",. c #AEAB41", -"'. c #A9A63E", -"). c #A3A041", -"!. c #9C9A47", -"~. c #90905E", -"{. c #88886D", -"]. c #81817C", -"^. c #7D7D82", -"/. c #7C7D86", -"(. c #818289", -"_. c #89898C", -":. c #909091", -"<. c #848484", -"[. c #818182", -"}. c #818282", -"|. c #84847D", -"1. c #8F8E6C", -"2. c #9D9B57", -"3. c #A9A642", -"4. c #B4B12F", -"5. c #BFBB1D", -"6. c #C9C512", -"7. c #D2CE19", -"8. c #D9D426", -"9. c #DBD730", -"0. c #DCD839", -"a. c #DEDA43", -"b. c #DFDC4B", -"c. c #E0DD51", -"d. c #E0DD52", -"e. c #DDDA41", -"f. c #DAD630", -"g. c #D8D321", -"h. c #D3CE15", -"i. c #C9C517", -"j. c #BEBA20", -"k. c #A9A743", -"l. c #9B995B", -"m. c #8E8D71", -"n. c #87867D", -"o. c #828284", -"p. c #8E8E8E", -"q. c #B9B9B9", -"r. c #B8B8B8", -"s. c #A7A7A7", -"t. c #8A8A8D", -"u. c #818187", -"v. c #7D7E85", -"w. c #7E7F80", -"x. c #87876F", -"y. c #93925B", -"z. c #9D9B49", -"A. c #A8A63F", -"B. c #B5B247", -"C. c #C1BE54", -"D. c #CBC85B", -"E. c #D4D160", -"F. c #DDDA66", -"G. c #E5E26C", -"H. c #EAE874", -"I. c #EEEB7D", -"J. c #EFED83", -"K. c #EFED89", -"L. c #F0EE8F", -"M. c #F1EF94", -"N. c #F1EF97", -"O. c #F1EF98", -"P. c #F0EF94", -"Q. c #F0EE8E", -"R. c #EEEC83", -"S. c #EEEB7B", -"T. c #EBE873", -"U. c #E4E16B", -"V. c #DCD864", -"W. c #D4D15F", -"X. c #CAC859", -"Y. c #BFBC4E", -"Z. c #B3B146", -"`. c #A8A644", -" + c #92915D", -".+ c #888873", -"++ c #828280", -"@+ c #7F7F88", -"#+ c #84858C", -"$+ c #8D8D8F", -"%+ c #959596", -"&+ c #808081", -"*+ c #838380", -"=+ c #888877", -"-+ c #99975D", -";+ c #ADAA3F", -">+ c #C0BC24", -",+ c #D1CD19", -"'+ c #E4E166", -")+ c #EAE886", -"!+ c #EFEDA3", -"~+ c #F4F3BF", -"{+ c #F8F7D5", -"]+ c #F9F9DD", -"^+ c #F9F9DF", -"/+ c #F9F9E0", -"(+ c #F9FAE1", -"_+ c #F9F9DE", -":+ c #F7F6CF", -"<+ c #F3F1B9", -"[+ c #EEECA0", -"}+ c #E9E682", -"|+ c #E3E058", -"1+ c #DBD732", -"2+ c #CECA21", -"3+ c #BEBA22", -"4+ c #ABA83F", -"5+ c #999862", -"6+ c #8D8D78", -"7+ c #848487", -"8+ c #8A8A8B", -"9+ c #7D7D86", -"0+ c #848378", -"a+ c #908E67", -"b+ c #9D9B51", -"c+ c #ACA943", -"d+ c #BDBA4D", -"e+ c #CECB5E", -"f+ c #DDDA67", -"g+ c #E9E773", -"h+ c #EFEE8A", -"i+ c #F3F1A4", -"j+ c #F6F4B8", -"k+ c #F8F7C9", -"l+ c #FAF9DA", -"m+ c #FBFBE7", -"n+ c #FBFCEB", -"o+ c #FBFBEB", -"p+ c #FBFBEA", -"q+ c #FBFBE9", -"r+ c #FBFBE8", -"s+ c #FAFBE8", -"t+ c #FBFCEC", -"u+ c #FBFAE2", -"v+ c #F9F8D6", -"w+ c #F7F6C7", -"x+ c #F5F3B4", -"y+ c #F3F19D", -"z+ c #EFED84", -"A+ c #E7E472", -"B+ c #DBD862", -"C+ c #CCC954", -"D+ c #BCBA4B", -"E+ c #ACAA4A", -"F+ c #9D9C51", -"G+ c #908F69", -"H+ c #868582", -"I+ c #828287", -"J+ c #848488", -"K+ c #8D8D90", -"L+ c #818186", -"M+ c #848483", -"N+ c #92916C", -"O+ c #A6A34F", -"P+ c #BDB931", -"Q+ c #D3CF26", -"R+ c #E1DE53", -"S+ c #EBE98F", -"T+ c #F3F2BB", -"U+ c #F8F8DA", -"V+ c #F9F9E2", -"W+ c #F9FAE2", -"X+ c #F7F6D0", -"Y+ c #F2F0B4", -"Z+ c #EBE87F", -"`+ c #E0DC4B", -" @ c #CFCB2F", -".@ c #BBB82A", -"+@ c #A4A24D", -"@@ c #919077", -"#@ c #898984", -"$@ c #878787", -"%@ c #858587", -"&@ c #888888", -"*@ c #BABABA", -"=@ c #868688", -"-@ c #8E8D6A", -";@ c #9F9D51", -">@ c #B2B04B", -",@ c #C6C350", -"'@ c #DAD760", -")@ c #EAE778", -"!@ c #F2F09A", -"~@ c #F6F5BC", -"{@ c #FAF9D7", -"]@ c #FBFAE8", -"^@ c #FAFAE6", -"/@ c #FAFAE4", -"(@ c #FAF9E2", -"_@ c #FAF9E1", -":@ c #FAF9E0", -"<@ c #FAF9DF", -"[@ c #FAFAE2", -"}@ c #FAFAE3", -"|@ c #FAFAE5", -"1@ c #FBFAE3", -"2@ c #F9F8D3", -"3@ c #F7F5B6", -"4@ c #E6E375", -"5@ c #D7D45A", -"6@ c #C5C248", -"7@ c #B1AE43", -"8@ c #9F9D5B", -"9@ c #908F77", -"0@ c #878783", -"a@ c #85858A", -"b@ c #8B8B90", -"c@ c #A4A4A3", -"d@ c #BBBBBB", -"e@ c #8C8C8C", -"f@ c #868687", -"g@ c #858485", -"h@ c #8C8B7C", -"i@ c #A4A250", -"j@ c #BFBC2C", -"k@ c #D3D13D", -"l@ c #E4E266", -"m@ c #F0EFA1", -"n@ c #F8F7D6", -"o@ c #FBFAE4", -"p@ c #F6F4C6", -"q@ c #EEEC9E", -"r@ c #E3E05A", -"s@ c #D4D026", -"t@ c #BAB739", -"u@ c #A19F61", -"v@ c #929179", -"w@ c #87878B", -"x@ c #A4A4A4", -"y@ c #BCBCBC", -"z@ c #929293", -"A@ c #828288", -"B@ c #868683", -"C@ c #959363", -"D@ c #AAA746", -"E@ c #C2BF45", -"F@ c #D9D655", -"G@ c #E8E67A", -"H@ c #F3F1A5", -"I@ c #F9F8CB", -"J@ c #FBFAE6", -"K@ c #FCFBEA", -"L@ c #FAF9DE", -"M@ c #F2F09D", -"N@ c #E9E672", -"O@ c #D5D24E", -"P@ c #BEBB3B", -"Q@ c #A9A750", -"R@ c #989770", -"S@ c #8B8B81", -"T@ c #8B8B91", -"U@ c #8F8F8F", -"V@ c #88888A", -"W@ c #878784", -"X@ c #ACA944", -"Y@ c #CBC721", -"Z@ c #DFDC50", -"`@ c #EDEB93", -" # c #F6F4C1", -".# c #F6F5CA", -"+# c #EBE978", -"@# c #DBD72E", -"## c #C3C033", -"$# c #ABA952", -"%# c #979770", -"&# c #87878C", -"*# c #BDBDBD", -"=# c #969697", -"-# c #898989", -";# c #84848A", -"># c #888886", -",# c #989664", -"'# c #AEAC45", -")# c #C8C542", -"!# c #E0DC55", -"~# c #EEEB89", -"{# c #F6F5C0", -"]# c #FAF9DC", -"^# c #FBFAE9", -"/# c #FAF9E3", -"(# c #FBFAE5", -"_# c #F6F4B1", -":# c #ECEA7B", -"<# c #DAD74E", -"[# c #C5C136", -"}# c #AEAB4F", -"|# c #999873", -"1# c #8D8D83", -"2# c #89898D", -"3# c #8E8E93", -"4# c #BEBEBE", -"5# c #8C8C8E", -"6# c #91907B", -"7# c #CECA1F", -"8# c #E2DE54", -"9# c #EFEC9D", -"0# c #F7F5C7", -"a# c #F7F6D1", -"b# c #EDEA7E", -"c# c #DDD832", -"d# c #C6C236", -"e# c #AEAC55", -"f# c #9B9A73", -"g# c #8D8D8D", -"h# c #86868E", -"i# c #97966F", -"j# c #ADAB51", -"k# c #C6C339", -"l# c #DDDA39", -"m# c #EDEA7D", -"n# c #F7F5C8", -"o# c #FAFAE0", -"p# c #FBFAE7", -"q# c #F5F3B0", -"r# c #EBE872", -"s# c #DAD644", -"t# c #C5C12E", -"u# c #ACAA51", -"v# c #96967E", -"w# c #8C8C89", -"x# c #8B8B8D", -"y# c #949497", -"z# c #BFBFBF", -"A# c #C0C0C0", -"B# c #8D8D86", -"C# c #AAA854", -"D# c #CAC72A", -"E# c #DBD83E", -"F# c #E7E46C", -"G# c #F2F1AB", -"H# c #FAF9E4", -"I# c #F9F7D9", -"J# c #F4F2BB", -"K# c #E9E663", -"L# c #D9D41A", -"M# c #BFBC33", -"N# c #A5A466", -"O# c #8D8D91", -"P# c #8B8C91", -"Q# c #88888B", -"R# c #91917E", -"S# c #A2A168", -"T# c #BDB93C", -"U# c #D7D223", -"V# c #E7E35C", -"W# c #F1EFA5", -"X# c #F7F7CD", -"Y# c #FAFBE5", -"Z# c #FAFADF", -"`# c #F9FADF", -" $ c #F8F7D4", -".$ c #F0ED89", -"+$ c #E3DF40", -"@$ c #D2CE32", -"#$ c #BEBC40", -"$$ c #90908C", -"%$ c #86868D", -"&$ c #A19F6A", -"*$ c #BBB846", -"=$ c #CEC92C", -"-$ c #DED930", -";$ c #EDEA81", -">$ c #F9F9DC", -",$ c #F9F8DC", -"'$ c #F9F8DB", -")$ c #F2F0AE", -"!$ c #E9E677", -"~$ c #E1DE3F", -"{$ c #D4D11F", -"]$ c #B5B44A", -"^$ c #989881", -"/$ c #8F8F8D", -"($ c #98989A", -"_$ c #C1C1C1", -":$ c #99999A", -"<$ c #89898A", -"[$ c #939282", -"}$ c #AFAD55", -"|$ c #CECA2E", -"1$ c #DCD832", -"2$ c #E5E152", -"3$ c #F1EE9A", -"4$ c #F9F8D9", -"5$ c #F8F8D8", -"6$ c #F8F9D8", -"7$ c #F8F8D9", -"8$ c #F8F8D7", -"9$ c #F8F7D7", -"0$ c #F9F8DA", -"a$ c #F6F5C7", -"b$ c #F0EEA2", -"c$ c #E7E454", -"d$ c #D9D617", -"e$ c #C4C131", -"f$ c #AEAC62", -"g$ c #9B9B7E", -"h$ c #8F9093", -"i$ c #919197", -"j$ c #C2C2C2", -"k$ c #929295", -"l$ c #929183", -"m$ c #A09F71", -"n$ c #BEBB40", -"o$ c #DBD71E", -"p$ c #E5E242", -"q$ c #EAE87B", -"r$ c #F2F1AE", -"s$ c #F8F8D6", -"t$ c #F8F8D5", -"u$ c #F5F4C2", -"v$ c #E9E66D", -"w$ c #DAD61F", -"x$ c #D1CD20", -"y$ c #C5C240", -"z$ c #AAA96B", -"A$ c #8D8D95", -"B$ c #939393", -"C$ c #AAAAA9", -"D$ c #8B8B93", -"E$ c #8C8C8F", -"F$ c #9E9D74", -"G$ c #B7B453", -"H$ c #CCC82C", -"I$ c #DDD91D", -"J$ c #E8E557", -"K$ c #F0EE9F", -"L$ c #F5F4C1", -"M$ c #F9F8D4", -"N$ c #F9F8D7", -"O$ c #F8F7D3", -"P$ c #F8F8D2", -"Q$ c #F8F8D3", -"R$ c #F7F8D2", -"S$ c #F7F7D2", -"T$ c #F8F7D2", -"U$ c #F8F6D1", -"V$ c #F8F7D1", -"W$ c #F8F6D0", -"X$ c #F9F8D8", -"Y$ c #F7F6CD", -"Z$ c #ECE982", -"`$ c #DFDC37", -" % c #DBD722", -".% c #D3D02C", -"+% c #B7B558", -"@% c #9A9A87", -"#% c #919190", -"$% c #A0A0A1", -"%% c #C3C3C3", -"&% c #888891", -"*% c #8E8E8D", -"=% c #ACAA63", -"-% c #CDC936", -";% c #D7D21D", -">% c #DCD822", -",% c #E9E66C", -"'% c #F4F3BB", -")% c #F8F7CF", -"!% c #F8F7D0", -"~% c #F7F7CF", -"{% c #F7F6CE", -"]% c #EEEC93", -"^% c #E4E152", -"/% c #E2DE2C", -"(% c #DCD820", -"_% c #C2C045", -":% c #A7A675", -"<% c #999989", -"[% c #9A9A9D", -"}% c #C4C4C4", -"|% c #9D9D9F", -"1% c #8D8D8C", -"2% c #999882", -"3% c #B8B655", -"4% c #D8D42A", -"5% c #DDD918", -"6% c #DDD926", -"7% c #EAE875", -"8% c #F6F5C6", -"9% c #F8F6CC", -"0% c #F8F7CD", -"a% c #F7F6CC", -"b% c #F7F7CC", -"c% c #F6F6CB", -"d% c #F6F5CB", -"e% c #F6F6CA", -"f% c #F7F6CB", -"g% c #EFED9B", -"h% c #E6E462", -"i% c #E3E037", -"j% c #DEDA20", -"k% c #CDCA35", -"l% c #B9B75B", -"m% c #A4A37C", -"n% c #949496", -"o% c #94949B", -"p% c #C5C5C5", -"q% c #98989B", -"r% c #979684", -"s% c #A7A672", -"t% c #C3C149", -"u% c #DDDA25", -"v% c #DFDC1A", -"w% c #DEDB2C", -"x% c #EBE97B", -"y% c #F7F6C9", -"z% c #F6F6C8", -"A% c #F6F5C8", -"B% c #E8E66E", -"C% c #E3E042", -"D% c #DDD924", -"E% c #D7D329", -"F% c #CBC841", -"G% c #AFAE6D", -"H% c #91919A", -"I% c #C7C7C7", -"J% c #9D9D9D", -"K% c #929298", -"L% c #919192", -"M% c #A1A07B", -"N% c #B7B55E", -"O% c #CDCA3E", -"P% c #DFDC26", -"Q% c #E1DD23", -"R% c #E1DD38", -"S% c #ECEA81", -"T% c #F7F6C8", -"U% c #F6F6C6", -"V% c #F7F6C6", -"W% c #F6F5C5", -"X% c #F6F5C4", -"Y% c #F6F4C4", -"Z% c #F7F5C9", -"`% c #F1EFA3", -" & c #EAE879", -".& c #E3E04A", -"+& c #DDD920", -"@& c #D7D331", -"#& c #B9B762", -"$& c #9B9B92", -"%& c #939499", -"&& c #C8C8C8", -"*& c #8E8E96", -"=& c #ABAA70", -"-& c #C7C44A", -";& c #D6D234", -">& c #DFDB2A", -",& c #E1DD2C", -"'& c #E3DF43", -")& c #EDEA85", -"!& c #F6F5C3", -"~& c #F6F5C2", -"{& c #F6F4C2", -"]& c #F7F5C5", -"^& c #EBE97F", -"/& c #E4E14F", -"(& c #DEDA28", -"_& c #E1DC1C", -":& c #C1BF58", -"<& c #A3A389", -"[& c #999995", -"}& c #A5A5A6", -"|& c #C6C6C6", -"1& c #959593", -"2& c #B4B267", -"3& c #D4D13A", -"4& c #DEDA2C", -"5& c #E0DB2C", -"6& c #E1DD2F", -"7& c #ECEA83", -"8& c #F5F4C0", -"9& c #F6F4C0", -"0& c #F6F4BF", -"a& c #F6F5BF", -"b& c #F6F4BE", -"c& c #EBE97E", -"d& c #E4E150", -"e& c #E2DE1F", -"f& c #E0DC28", -"g& c #C9C74D", -"h& c #B0AF77", -"i& c #A1A08C", -"j& c #A1A1A5", -"k& c #A6A6A7", -"l& c #909196", -"m& c #99998F", -"n& c #BCBA5F", -"o& c #DEDA30", -"p& c #E3DF28", -"q& c #E0DC2E", -"r& c #E2DF3E", -"s& c #ECEA7F", -"t& c #F5F4BE", -"u& c #F5F4BD", -"v& c #F5F4BC", -"w& c #F1EF9F", -"x& c #EBE878", -"y& c #E5E14E", -"z& c #E0DC2C", -"A& c #E2DD24", -"B& c #D1CE45", -"C& c #BDBB64", -"D& c #A9A882", -"E& c #9E9EA4", -"F& c #A3A3A5", -"G& c #969690", -"H& c #A2A284", -"I& c #C2C059", -"J& c #E4E12A", -"K& c #E0DD30", -"L& c #E1DE38", -"M& c #EBE97A", -"N& c #F5F4BB", -"O& c #F5F4BA", -"P& c #F5F3BA", -"Q& c #F5F4B9", -"R& c #F0EE99", -"S& c #EAE770", -"T& c #E5E14B", -"U& c #E1DC2E", -"V& c #E2DD28", -"W& c #D7D33E", -"X& c #C7C456", -"Y& c #AFAE7B", -"Z& c #9B9B9C", -"`& c #9A9AA1", -" * c #A0A0A3", -".* c #9D9C8A", -"+* c #ADAC78", -"@* c #C8C653", -"#* c #E1DE32", -"$* c #E4E12E", -"%* c #E0DD2A", -"&* c #E1DE33", -"** c #F4F3B5", -"=* c #F5F4B8", -"-* c #F5F3B7", -";* c #F6F4BC", -">* c #F0ED91", -",* c #E9E665", -"'* c #E4E146", -")* c #E1DD31", -"!* c #E2DD2C", -"~* c #D0CD4B", -"{* c #B5B375", -"]* c #9C9C9C", -"^* c #9797A0", -"/* c #C9C9C9", -"(* c #CACACA", -"_* c #9E9EA2", -":* c #A3A285", -"<* c #B6B56E", -"[* c #CECC4E", -"}* c #E2DF34", -"|* c #E5E130", -"1* c #E2DE34", -"2* c #E1DD2D", -"3* c #EAE76B", -"4* c #F2F0A5", -"5* c #F5F3B5", -"6* c #F5F4B7", -"7* c #F5F4B6", -"8* c #F4F4B6", -"9* c #F4F3B6", -"0* c #F4F4B5", -"a* c #F4F3B4", -"b* c #F6F4BB", -"c* c #F5F3B6", -"d* c #EEEC87", -"e* c #E6E455", -"f* c #E3E03E", -"g* c #E2DE30", -"h* c #E1DE34", -"i* c #D9D640", -"j* c #BAB96F", -"k* c #9797A1", -"l* c #CBCBCB", -"m* c #9C9CA2", -"n* c #A8A780", -"o* c #BFBD65", -"p* c #D3D04A", -"q* c #E3DF36", -"r* c #E5E133", -"s* c #E9E661", -"t* c #F0ED90", -"u* c #F3F1A8", -"v* c #F4F3B3", -"w* c #F4F3B2", -"x* c #F4F3B1", -"y* c #ECEB7C", -"z* c #E4E245", -"A* c #E2DF36", -"B* c #E2DF35", -"C* c #E5E230", -"D* c #E0DD38", -"E* c #BFBE6B", -"F* c #9F9F9D", -"G* c #9999A2", -"H* c #CCCCCC", -"I* c #ADAC7D", -"J* c #C6C45F", -"K* c #D8D548", -"L* c #E4E038", -"M* c #E5E236", -"N* c #E3DF34", -"O* c #E8E453", -"P* c #ECEA76", -"Q* c #F1EF99", -"R* c #F5F3B3", -"S* c #F4F2B1", -"T* c #F4F2B0", -"U* c #F4F3B0", -"V* c #F4F2AF", -"W* c #F2F0A2", -"X* c #EBE96F", -"Y* c #E4E13D", -"Z* c #E3DF37", -"`* c #E7E331", -" = c #C4C167", -".= c #A4A398", -"+= c #9C9CA0", -"@= c #B0B0B1", -"#= c #9999A0", -"$= c #B1B07B", -"%= c #CCCA5A", -"&= c #DBD847", -"*= c #E4E13B", -"== c #E6E239", -"-= c #E4E13A", -";= c #E4E138", -">= c #E6E347", -",= c #E9E75E", -"'= c #F4F3AF", -")= c #F5F4B4", -"!= c #F4F2AE", -"~= c #F4F2AD", -"{= c #EFED8D", -"]= c #E4E039", -"^= c #E8E433", -"/= c #C7C465", -"(= c #A9A892", -"_= c #AFAFB0", -":= c #CDCDCD", -"<= c #9999A1", -"[= c #B4B37A", -"}= c #D0CE57", -"|= c #DEDB46", -"1= c #E4E23D", -"2= c #E6E33B", -"3= c #E4E23C", -"4= c #E5E23F", -"5= c #E6E44C", -"6= c #ECEB79", -"7= c #F2F2A5", -"8= c #F4F3AD", -"9= c #F4F2AC", -"0= c #F3F2AC", -"a= c #F3F3AC", -"b= c #F4F2AB", -"c= c #F3F2AB", -"d= c #F0EE92", -"e= c #E7E451", -"f= c #E4E037", -"g= c #E5E13B", -"h= c #E8E436", -"i= c #CAC763", -"j= c #ADAC8E", -"k= c #A2A29B", -"l= c #AFAFB1", -"m= c #CECECE", -"n= c #B7B67A", -"o= c #D4D255", -"p= c #E0DD46", -"q= c #E6E33E", -"r= c #E5E241", -"s= c #EAE869", -"t= c #F0EF93", -"u= c #F4F2AA", -"v= c #F3F2A9", -"w= c #F3F2A7", -"x= c #EEEC7F", -"y= c #E8E554", -"z= c #E6E343", -"A= c #E5E23D", -"B= c #E5E23C", -"C= c #E8E538", -"D= c #CCCA62", -"E= c #B1B08B", -"F= c #A5A59A", -"G= c #CFCFCF", -"H= c #B9B879", -"I= c #D8D553", -"J= c #E2DF46", -"K= c #E6E241", -"L= c #E7E340", -"M= c #E6E240", -"N= c #ECEA70", -"O= c #F1EE90", -"P= c #F5F3AD", -"Q= c #F4F2A9", -"R= c #F4F2A8", -"S= c #F3F2A8", -"T= c #F3F2AA", -"U= c #F2F1A0", -"V= c #EBE96A", -"W= c #E5E23E", -"X= c #E6E33F", -"Y= c #E5E33F", -"Z= c #E9E63A", -"`= c #CECC62", -" - c #B4B489", -".- c #A8A79A", -"+- c #AFAFB2", -"@- c #D0D0D0", -"#- c #BBBA79", -"$- c #DAD753", -"%- c #E7E343", -"&- c #E8E442", -"*- c #E7E342", -"=- c #E7E344", -"-- c #E9E550", -";- c #EEEB79", -">- c #F3F1A1", -",- c #F4F2A7", -"'- c #F4F2A6", -")- c #F3F2A6", -"!- c #F3F2A5", -"~- c #F3F2A4", -"{- c #ECEA72", -"]- c #E9E656", -"^- c #E6E341", -"/- c #E9E63C", -"(- c #D0CE63", -"_- c #B7B689", -":- c #AAA99A", -"<- c #AFB0B2", -"[- c #9A9BA3", -"}- c #BCBA7B", -"|- c #DAD755", -"1- c #E5E149", -"2- c #E8E445", -"3- c #E8E544", -"4- c #E7E442", -"5- c #E8E446", -"6- c #EBE861", -"7- c #EFED80", -"8- c #F2F096", -"9- c #F4F2A5", -"0- c #F3F2A3", -"a- c #F3F19F", -"b- c #F1EF92", -"c- c #EDEB76", -"d- c #E9E658", -"e- c #E7E449", -"f- c #E6E342", -"g- c #E9E63F", -"h- c #D0CE65", -"i- c #B7B68B", -"j- c #AAAA9B", -"k- c #B0B0B3", -"l- c #D1D1D1", -"m- c #9C9CA4", -"n- c #BCBA7D", -"o- c #DAD759", -"p- c #E5E14C", -"q- c #E8E547", -"r- c #E9E646", -"s- c #E8E545", -"t- c #E8E546", -"u- c #E9E64D", -"v- c #EBE85D", -"w- c #EFED7E", -"x- c #F4F2A4", -"y- c #F3F2A2", -"z- c #F3F2A1", -"A- c #F3F1A0", -"B- c #F1EF91", -"C- c #EEEC7B", -"D- c #EAE85E", -"E- c #E7E446", -"F- c #E7E445", -"G- c #EAE740", -"H- c #D0CE68", -"I- c #B7B68E", -"J- c #AAAA9E", -"K- c #B2B2B4", -"L- c #D2D2D2", -"M- c #9E9EA6", -"N- c #BCBB80", -"O- c #DAD65D", -"P- c #E8E649", -"Q- c #E9E648", -"R- c #E9E649", -"S- c #E8E548", -"T- c #E9E549", -"U- c #E9E650", -"V- c #ECE964", -"W- c #EFEC7D", -"X- c #F3F2A0", -"Y- c #F3F29F", -"Z- c #F2F19A", -"`- c #F1EF8D", -" ; c #EEEC76", -".; c #EBE960", -"+; c #E9E64F", -"@; c #EBE842", -"#; c #D0CE6B", -"$; c #B7B691", -"%; c #ABAAA0", -"&; c #B3B3B5", -"*; c #A0A0A8", -"=; c #BCBB84", -"-; c #D8D562", -";; c #E9E64B", -">; c #EAE74A", -",; c #E9E64A", -"'; c #EAE650", -"); c #EBE85C", -"!; c #EFEC79", -"~; c #F2F095", -"{; c #F3F29D", -"]; c #F3F29E", -"^; c #F3F19C", -"/; c #F1EF8B", -"(; c #EEEC75", -"_; c #EBE95D", -":; c #E9E647", -"<; c #ECE944", -"[; c #D0CE6E", -"}; c #B6B596", -"|; c #ABAAA3", -"1; c #B5B5B7", -"2; c #D3D3D3", -"3; c #A3A3AA", -"4; c #BBBA88", -"5; c #D4D26A", -"6; c #E2DF58", -"7; c #EAE74D", -"8; c #EBE84B", -"9; c #E9E74D", -"0; c #E9E74C", -"a; c #EAE751", -"b; c #ECEA61", -"c; c #EEEC73", -"d; c #F0EF82", -"e; c #F1F08F", -"f; c #F3F299", -"g; c #F3F3A0", -"h; c #F3F29C", -"i; c #F3F19B", -"j; c #F3F19E", -"k; c #F2F098", -"l; c #F1EF8C", -"m; c #F0ED7D", -"n; c #EEEB6E", -"o; c #ECE95F", -"p; c #EAE64C", -"q; c #EAE74C", -"r; c #EDEA46", -"s; c #EAE74B", -"t; c #CFCD73", -"u; c #B3B29E", -"v; c #A9A9A7", -"w; c #B7B7B8", -"x; c #A6A6AC", -"y; c #B9B88E", -"z; c #D0CE72", -"A; c #E0DE5D", -"B; c #EBE84F", -"C; c #EDEA4D", -"D; c #EAE84F", -"E; c #EAE84E", -"F; c #EAE953", -"G; c #ECEB65", -"H; c #EFEE7B", -"I; c #F1F08D", -"J; c #F3F29A", -"K; c #F3F29B", -"L; c #F3F19A", -"M; c #ECE95E", -"N; c #EBE853", -"O; c #EAE74E", -"P; c #EEEB49", -"Q; c #CDCB79", -"R; c #AFAEA5", -"S; c #A7A7AC", -"T; c #B9B9BA", -"U; c #A9A9AE", -"V; c #B6B592", -"W; c #CBC979", -"X; c #DEDB62", -"Y; c #ECE851", -"Z; c #EEEA4E", -"`; c #EBE851", -" > c #EBE951", -".> c #EBE850", -"+> c #ECEA58", -"@> c #EDEB65", -"#> c #EFED70", -"$> c #F0EE7C", -"%> c #F1EF84", -"&> c #F2F08C", -"*> c #F3F194", -"=> c #F4F29C", -"-> c #F4F29B", -";> c #F4F29A", -">> c #F4F299", -",> c #F4F199", -"'> c #F3F198", -")> c #F3F092", -"!> c #F2F08A", -"~> c #F1EF82", -"{> c #EFED79", -"]> c #EEEC6E", -"^> c #EDEA60", -"/> c #ECE854", -"(> c #EBE84D", -"_> c #EBE84E", -":> c #EAE850", -"<> c #EDEA4C", -"[> c #E8E553", -"}> c #CBC97E", -"|> c #ADADAA", -"1> c #A7A7AF", -"2> c #D4D4D4", -"3> c #ACACB0", -"4> c #B3B296", -"5> c #C6C482", -"6> c #DBD868", -"7> c #ECE953", -"8> c #EEEB50", -"9> c #ECE952", -"0> c #ECE956", -"a> c #EDEA5D", -"b> c #EEEC6A", -"c> c #F0EE79", -"d> c #F2F088", -"e> c #F3F193", -"f> c #F4F297", -"g> c #F4F298", -"h> c #F3F18F", -"i> c #F2EF84", -"j> c #F0EE76", -"k> c #EEEC68", -"l> c #EDEA5C", -"m> c #ECE951", -"n> c #EBE952", -"o> c #E4E25B", -"p> c #C8C784", -"q> c #A8A9B1", -"r> c #AFAF9E", -"s> c #BEBD8E", -"t> c #D7D570", -"u> c #EDEA55", -"v> c #F0ED51", -"w> c #ECEA55", -"x> c #ECEA53", -"y> c #ECEA52", -"z> c #EDEA56", -"A> c #EDEB5D", -"B> c #EEEC66", -"C> c #EFED6E", -"D> c #F0EE75", -"E> c #F1EE7A", -"F> c #F2EF7E", -"G> c #F2F083", -"H> c #F2F087", -"I> c #F3F08B", -"J> c #F3F18E", -"K> c #F3F190", -"L> c #F3F191", -"M> c #F4F293", -"N> c #F4F294", -"O> c #F3F192", -"P> c #F3F18D", -"Q> c #F2F082", -"R> c #F1EF7E", -"S> c #F0ED73", -"T> c #EFEC6C", -"U> c #EEEB64", -"V> c #EDEB5C", -"W> c #EDE954", -"X> c #EDEA54", -"Y> c #ECEA54", -"Z> c #EDEA53", -"`> c #E8E559", -" , c #DEDC67", -"., c #C5C48C", -"+, c #AEAEAF", -"@, c #ABABB3", -"#, c #D5D5D5", -"$, c #B5B5B6", -"%, c #ACABA5", -"&, c #B7B69B", -"*, c #D3D179", -"=, c #EDEB58", -"-, c #F0EE53", -";, c #EDEB57", -">, c #EDEB59", -",, c #EEEB5E", -"', c #EFEC65", -"), c #F0ED6D", -"!, c #F1EF7C", -"~, c #F2EF81", -"{, c #F2F084", -"], c #F2F086", -"^, c #F2F189", -"/, c #F3F18B", -"(, c #F3F18C", -"_, c #F2EF80", -":, c #F1EE7B", -"<, c #F0EE73", -"[, c #EFED6B", -"}, c #EEEC63", -"|, c #EEEB5D", -"1, c #EDEA59", -"2, c #EDEA57", -"3, c #EEEB54", -"4, c #E4E162", -"5, c #D6D475", -"6, c #C1C094", -"7, c #AFAFB5", -"8, c #D6D6D6", -"9, c #A8A8AA", -"0, c #B1B1A5", -"a, c #CFCD81", -"b, c #ECE95D", -"c, c #F1EE57", -"d, c #EEEC5A", -"e, c #EEEC59", -"f, c #EDEC59", -"g, c #EDEC58", -"h, c #EDEB56", -"i, c #EEEC5D", -"j, c #EEEC61", -"k, c #EFED66", -"l, c #EFED69", -"m, c #F0ED6C", -"n, c #F0EE6E", -"o, c #F0EE6F", -"p, c #F0EE71", -"q, c #F0EE72", -"r, c #F0EE70", -"s, c #EEEC60", -"t, c #EEEC5C", -"u, c #EEEB58", -"v, c #EEEB59", -"w, c #F0ED55", -"x, c #E0DE6B", -"y, c #CFCD84", -"z, c #BDBD9D", -"A, c #B3B3B8", -"B, c #A6A7AE", -"C, c #ADADAC", -"D, c #CAC98A", -"E, c #E8E566", -"F, c #EFEC5D", -"G, c #EFEC5C", -"H, c #EFEC5B", -"I, c #EEEC5B", -"J, c #F0EE56", -"K, c #DCDA75", -"L, c #C7C693", -"M, c #B9B9A5", -"N, c #B8B8BB", -"O, c #D7D7D7", -"P, c #C3C3C2", -"Q, c #A9A9B1", -"R, c #ADADAE", -"S, c #C4C392", -"T, c #DEDC74", -"U, c #EAE765", -"V, c #F0ED5E", -"W, c #F1EE5D", -"X, c #F0EC5E", -"Y, c #EFEC5E", -"Z, c #EFEC5A", -"`, c #EEED5C", -" ' c #EEED5D", -".' c #F2F058", -"+' c #D6D57F", -"@' c #BDBCA3", -"#' c #B3B3AE", -"$' c #BCBCBE", -"%' c #D8D8D8", -"&' c #AEAEB3", -"*' c #BDBD9B", -"=' c #D1D085", -"-' c #E3E170", -";' c #F0ED60", -">' c #F2EF5E", -",' c #F0ED5F", -"'' c #EFED5E", -")' c #F1EF5C", -"!' c #ECEA63", -"~' c #D0CF8A", -"{' c #B5B5B0", -"]' c #AFB0B5", -"^' c #D9D9D9", -"/' c #B5B5B8", -"(' c #B5B5A6", -"_' c #C3C298", -":' c #DBDA7B", -"<' c #F1EE61", -"[' c #F4F15E", -"}' c #F0EE62", -"|' c #F0EE61", -"1' c #F1EE62", -"2' c #F0EE60", -"3' c #F1EE5F", -"4' c #ECEA66", -"5' c #E2E074", -"6' c #CBCA96", -"7' c #B1B1B8", -"8' c #BCBCBD", -"9' c #B0AFB0", -"0' c #B8B7A9", -"a' c #D4D287", -"b' c #F3F161", -"c' c #F1EF64", -"d' c #F1EF63", -"e' c #F3F060", -"f' c #E5E373", -"g' c #D6D489", -"h' c #C4C4A2", -"i' c #B6B6BB", -"j' c #DADADA", -"k' c #C1C1C2", -"l' c #B4B3B0", -"m' c #CCCB94", -"n' c #E5E375", -"o' c #EFED6A", -"p' c #F2F066", -"q' c #F2F065", -"r' c #F1F066", -"s' c #F1EF66", -"t' c #F1F065", -"u' c #F1EF65", -"v' c #F2EF65", -"w' c #F2EF64", -"x' c #F4F260", -"y' c #F2EF63", -"z' c #DEDD7F", -"A' c #C9C89F", -"B' c #BDBCAE", -"C' c #DBDBDB", -"D' c #B0B0B5", -"E' c #C4C3A0", -"F' c #D8D689", -"G' c #E7E576", -"H' c #F2F068", -"I' c #F4F266", -"J' c #F2F067", -"K' c #F4F164", -"L' c #D7D68D", -"M' c #BEBEB1", -"N' c #C2C2C3", -"O' c #B7B7BA", -"P' c #B4B4B5", -"Q' c #BABAAD", -"R' c #C8C79F", -"S' c #DEDD84", -"T' c #F3F16B", -"U' c #F6F467", -"V' c #F3F16A", -"W' c #F3F169", -"X' c #F2F069", -"Y' c #F2F169", -"Z' c #F4F267", -"`' c #F3F168", -" ) c #EDEB70", -".) c #E2E180", -"+) c #CECD9E", -"@) c #BBBCB9", -"#) c #B7B8BC", -"$) c #B3B4B7", -"%) c #BABAB2", -"&) c #D4D393", -"*) c #EFED73", -"=) c #F5F36C", -"-) c #F4F26C", -";) c #F5F368", -">) c #E4E380", -",) c #D3D299", -"') c #C5C5AD", -")) c #BBBBBF", -"!) c #DCDCDC", -"~) c #B4B4BA", -"{) c #C9C8A3", -"]) c #DDDC8B", -"^) c #F6F46C", -"/) c #F7F56B", -"() c #F5F26E", -"_) c #F4F26E", -":) c #F5F36E", -"<) c #F4F26D", -"[) c #F4F36C", -"}) c #F3F26D", -"|) c #EEED74", -"1) c #DBDA91", -"2) c #C7C7AE", -"3) c #BEBEB8", -"4) c #C1C1C3", -"5) c #DDDDDD", -"6) c #B9B9BC", -"7) c #BEBFB1", -"8) c #CACAA4", -"9) c #E1E089", -"0) c #F5F371", -"a) c #F8F66D", -"b) c #F5F370", -"c) c #F5F36F", -"d) c #F5F46E", -"e) c #F4F36F", -"f) c #EFEE76", -"g) c #E5E484", -"h) c #D1D1A2", -"i) c #BFBFBE", -"j) c #BBBBC0", -"k) c #DEDEDE", -"l) c #C0C0C1", -"m) c #B9B9B8", -"n) c #C0C0B2", -"o) c #D3D39B", -"p) c #E8E683", -"q) c #F2F076", -"r) c #F7F670", -"s) c #F6F472", -"t) c #F5F472", -"u) c #F6F372", -"v) c #F5F372", -"w) c #F6F471", -"x) c #F6F371", -"y) c #F6F470", -"z) c #F7F56F", -"A) c #F3F273", -"B) c #E5E487", -"C) c #D4D39F", -"D) c #C6C6B3", -"E) c #BEBEC1", -"F) c #BEBEC3", -"G) c #C7C7AC", -"H) c #D7D699", -"I) c #E8E784", -"J) c #F6F574", -"K) c #F8F772", -"L) c #F6F474", -"M) c #F6F473", -"N) c #F5F375", -"O) c #EEED7E", -"P) c #D9D89C", -"Q) c #C4C4B9", -"R) c #BFBFC0", -"S) c #C4C4C5", -"T) c #BABABD", -"U) c #BFBEB8", -"V) c #C8C8AE", -"W) c #DBDA99", -"X) c #ECEB83", -"Y) c #F5F479", -"Z) c #F8F774", -"`) c #F6F676", -" ! c #F6F576", -".! c #F6F575", -"+! c #F7F575", -"@! c #F7F675", -"#! c #F8F673", -"$! c #F6F475", -"%! c #EBE986", -"&! c #DCDB9B", -"*! c #CDCDB0", -"=! c #BFBFC3", -"-! c #CBCBCC", -";! c #DFDFDF", -">! c #CDCCAC", -",! c #DFDE97", -"'! c #EDEC85", -")! c #F7F678", -"!! c #F8F876", -"~! c #F6F578", -"{! c #F1EF7F", -"]! c #DEDC9B", -"^! c #CACAB8", -"/! c #C4C4C1", -"(! c #E0E0E0", -"_! c #BCBCC0", -":! c #C3C3B9", -"~ c #FCFB81", -",~ c #FBFA81", -"'~ c #FBFA82", -")~ c #FAFA82", -"!~ c #FAF983", -"~~ c #FAFA83", -"{~ c #FBFB81", -"]~ c #FCFB80", -"^~ c #F9F885", -"/~ c #F1F08E", -"(~ c #E8E79A", -"_~ c #DFDEA6", -":~ c #CBCBBF", -"<~ c #C4C4C8", -"[~ c #C4C4C9", -"}~ c #C8C8C9", -"|~ c #CFCECF", -"1~ c #E4E4E4", -"2~ c #CBCBC3", -"3~ c #D8D7B3", -"4~ c #E6E5A1", -"5~ c #F2F192", -"6~ c #FAF986", -"7~ c #FCFB83", -"8~ c #FBFA84", -"9~ c #F8F788", -"0~ c #F2F191", -"a~ c #E3E3A3", -"b~ c #D4D4B5", -"c~ c #CCCCC0", -"d~ c #C6C6C8", -"e~ c #E5E5E5", -"f~ c #CDCDCE", -"g~ c #C8C8CA", -"h~ c #C5C5CA", -"i~ c #CDCCC0", -"j~ c #D6D5B6", -"k~ c #DDDDAD", -"l~ c #E4E4A3", -"m~ c #EBEA9B", -"n~ c #F1F093", -"o~ c #F7F68C", -"p~ c #FCFB87", -"q~ c #FEFD84", -"r~ c #FFFE83", -"s~ c #FEFC84", -"t~ c #FDFC84", -"u~ c #FDFB85", -"v~ c #FDFC85", -"w~ c #FEFD83", -"x~ c #FFFD83", -"y~ c #FBF987", -"z~ c #F6F58D", -"A~ c #F1F094", -"B~ c #EAEA9C", -"C~ c #E4E3A4", -"D~ c #DCDCAE", -"E~ c #D3D3B8", -"F~ c #CBCBC1", -"G~ c #C8C8CB", -"H~ c #C7C7C8", -"I~ c #CACAC6", -"J~ c #CECEC1", -"K~ c #D8D8B4", -"L~ c #E4E3A6", -"M~ c #EEED9A", -"N~ c #F7F690", -"O~ c #FBFA8B", -"P~ c #FDFC89", -"Q~ c #FDFC88", -"R~ c #FDFB88", -"S~ c #FDFB87", -"T~ c #FCFA89", -"U~ c #F6F490", -"V~ c #EDEB9B", -"W~ c #E3E2A8", -"X~ c #D8D8B5", -"Y~ c #CFCFC0", -"Z~ c #C7C7C9", -"`~ c #C9C9CC", -" { c #C5C5C9", -".{ c #CDCDC0", -"+{ c #D4D4B9", -"@{ c #DAD9B2", -"#{ c #DFDFAC", -"${ c #E4E4A7", -"%{ c #E9E8A3", -"&{ c #EDEC9E", -"*{ c #F0EF9A", -"={ c #F3F296", -"-{ c #F5F494", -";{ c #F7F691", -">{ c #F9F88F", -",{ c #FAF98E", -"'{ c #FBF98E", -"){ c #FBFA8D", -"!{ c #F9F890", -"~{ c #F7F692", -"{{ c #F2F196", -"]{ c #F0EE9A", -"^{ c #EDEB9E", -"/{ c #E9E7A2", -"({ c #E4E3A7", -"_{ c #DFDEAD", -":{ c #DAD9B3", -"<{ c #D4D3BA", -"[{ c #C8C8C7", -"}{ c #C4C4CA", -"|{ c #C6C6CC", -"1{ c #CBCBCD", -"2{ c #E6E6E6", -"3{ c #CDCDC3", -"4{ c #D3D3BD", -"5{ c #DAD9B5", -"6{ c #E0DFAD", -"7{ c #E5E4A8", -"8{ c #E9E9A4", -"9{ c #EDEDA0", -"0{ c #F0F09C", -"a{ c #F4F398", -"b{ c #F0EF9D", -"c{ c #E4E4A8", -"d{ c #DFDFAF", -"e{ c #DAD9B6", -"f{ c #D3D2BE", -"g{ c #CCCCC5", -"h{ c #CACAC8", -"i{ c #E7E7E7", -"j{ c #D0D0D1", -"k{ c #CCCCCE", -"l{ c #C9C9CD", -"m{ c #C5C6CB", -"n{ c #CACAC5", -"o{ c #D2D1BC", -"p{ c #D5D5BA", -"q{ c #D7D7B8", -"r{ c #DADAB5", -"s{ c #DBDCB3", -"t{ c #DDDCB2", -"u{ c #DDDDB2", -"v{ c #DEDDB1", -"w{ c #DBDBB4", -"x{ c #DADAB6", -"y{ c #D7D7B7", -"z{ c #D4D4BA", -"A{ c #D1D1BD", -"B{ c #C6C6CB", -"C{ c #CDCDD0", -"D{ c #D1D1D2", -"E{ c #E8E8E8", -"F{ c #E9E9E9", -"G{ c #CFCFD1", -"H{ c #CBCBCF", -"I{ c #CACACE", -"J{ c #C7C7CD", -"K{ c #C7C7CC", -"L{ c #C8C8CD", -"M{ c #C9C9CE", -"N{ c #CCCCCF", -"O{ c #D2D2D3", -"P{ c #D4D4D5", -"Q{ c #EAEAEA", -"R{ c #EBEBEB", -"S{ c #ECECEC", -"T{ c #EDEDED", -"U{ c #EEEEEE", -"V{ c #EFEFEF", -" . . . . . . . . . . . . . . . . . . . . . . . ", -" . . . . . . . . . . . . . . . . . . . . . . . . . ", -" . . . . . . . . . . . . . . . . . . . . . . . . . . . . + + + . . ", -" . . . . . . + + + + + + + + + + + + + + + + + + + + + + + + + + + + . . . ", -" @ @ @ + + + + + + + + @ + + + + + + + + + + + + + + + + + + + @ + + + + + + + + @ @ @ @ ", -" @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ", -" # # # # @ @ @ @ # # # # # # # @ # # # # # # # $ $ $ $ $ # # # # # # # @ # # # @ # # # @ @ @ @ @ @ # $ ", -" # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # $ $ $ ", -" $ $ # # # # # # # # # # # $ $ % % & & & % $ + . * = = - - - = ; . @ $ % & & % % % $ $ # # # # # # # # $ $ % % % % ", -" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ # @ ; > , ' ) ! ~ { ~ ) ] ^ - ; @ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ % % % % % % % ", -" & & & % % % % % % % % % % & & / ( % @ = , ' ~ _ : < [ } | 1 1 2 2 2 3 4 5 6 7 8 _ ~ ] ^ = @ & / / & % % % % % % % % % % % & & ", -" & & & & & & & & & & & & & & & & / & @ > ! 7 9 0 a b c b b b b b b b b b b b b b d e 0 f 8 ! - # % & & & & & & & & & & & & & & & & ", -" / / & & & & / / / & / / / g g $ ; , ~ h [ i j k l m n o p q r s t u v w x y q p n z A l B C i [ 8 ~ , . & ( ( ( / & & & & & & & & & / ", -" / / / / / / / / / / / / / / ( & * ! D E e b b b b b b b F G H I J K L L M N O P Q R b b b b b b c d 0 6 ' . % / / / / / / / / / / / / / / ", -" g ( ( ( ( ( ( ( ( ( ( S S ( # > ~ 7 T U V W X Y Z ` ...+.@.#.$.%.&.*.=.-.*.;.>.$.,.'.).!. .~.{.].^./.(._.:.: ! > # g S g ( ( ( ( ( ( ( ( ( g ", -" g g g g g g g g g g g g S g $ > 8 E <.b [.b }.|.1.2.3.4.5.6.7.8.9.0.a.b.c.d.b.e.0.f.g.h.i.j.4.k.l.m.n.d o.d b <.p.h > & g g g g g g g g g g g g g ", -" S S g g S S S S S S S q.r.$ s.{ D t.u.v.w.x.y.z.A.B.C.D.E.F.G.H.I.J.K.L.M.N.O.P.Q.K.R.S.T.U.V.W.X.Y.Z.`.z. +.+++@+#+$+%+~ = & S r.S g g g S g g g g S ", -" S S S S S S S S S S S S r.( s.< E b &+b *+=+-+;+>+,+0.'+)+!+~+{+]+^+/+^+^+^+^+^+^+^+^+^+(+_+:+<+[+}+|+1+2+3+4+5+6+a 7+e e E _ ; / S r.S S S S S S S S S S ", -" q.r.S S S S S S S r.r.q.r.+ ' 6 8+l 9+0+a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+o+p+q+q+r+s+r+q+q+p+t+n+u+v+w+x+y+z+A+B+C+D+E+F+G+H+I+J+K+8 , # g q.q.r.r.r.r.r.r.r.r.q. ", -" q.q.q.r.r.r.r.r.r.r.r.r.r.& ) p.a d L+M+N+O+P+Q+R+S+T+U+V+/+/+/+/+/+/+/+/+/+/+/+/+/+/+^+^+^+^+^+^+^+^+^+W+^+X+Y+Z+`+ @.@+@@@#@$@%@&@6 , $ q.*@q.q.q.q.q.q.q.q.q.q. ", -" q.q.q.q.q.q.q.q.q.q.*@r.. ! f =@V o.-@;@>@,@'@)@!@~@{@q+o+]@^@/@(@_@/+:@/+:@:@:@:@:@:@<@<@<@^+:@:@[@}@|@q+p+1@2@3@M.4@5@6@7@8@9@0@a@b@< c@# S d@d@*@q.*@*@*@q.q.*@*@ ", -" *@*@*@*@*@*@*@*@*@*@q.& ! e@f@e g@h@i@j@k@l@m@n@(@:@_@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@o@:@p@q@r@s@t@u@v@E w@E < x@$ *@d@*@*@*@*@*@*@*@*@*@*@ ", -" d@d@*@d@d@d@d@d@d@y@*@@ ) z@=@A@B@C@D@E@F@G@H@I@J@K@J@1@_@:@:@:@:@:@:@:@:@:@:@:@:@:@:@_@_@_@_@_@_@_@_@_@_@:@_@_@}@q+K@L@w+M@N@O@P@Q@R@S@B T@< , & q.d@d@*@*@*@d@*@*@*@*@ ", -" d@d@d@d@d@d@d@d@d@d@d@g ] U@V@$@W@9@X@Y@Z@`@ #_@J@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@(@_@<@.#+#@###$#%#E � : > & d@y@d@d@d@d@d@d@d@d@ ", -" *#y@d@d@d@d@d@d@d@*#y@& ^ =#-#;#>#,#'#)#!#~#{#]#^#]@(@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@/#(#q+:@_#:#<#[#}#|#1#2#3#8 - r.y@y@y@d@d@d@d@d@y@*# ", -" *#*#*#y@y@y@y@y@y@y@4#d@- < 5#&@>#6##.7#8#9#0#_@(#_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@_@(@_@/#a#b#c#d#e#f#g#j g#{ $ q.y@*#y@y@y@y@y@*#*#*# ", -" *#*#*#*#*#*#*#*#4#4#q.$ ~ p.h#w@i#j#k#l#m#n#o#p#J@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@(@(@/#/#o+/@q#r#s#t#u#v#w#x#y#' $ *#z#*#*#*#*#*#*#*#4#z# ", -" 4#4#4#4#4#4#4#4#A#4#& x@%+E B B#C#D#E#F#G#[@q+[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@[@(@(@(@H#(@I#J#K#L#M#N#v#p.O#D > d@z#4#4#4#4#4#4#4#z#z#z# ", -" A#z#4#4#z#z#z#z#z#A#y@= < P#Q#R#S#T#U#V#W#X#/@Y#Z#`#Z#Z#Z#`#Z#Z#o#o#o#o#o#o#o#o#o#o#o#o#o#o#o#o#o#o#o#o#o#Z#o#o#o#o#o#o#o#o#o#:@:@<@<@:@:@/# $.$+$@$#$N#$$T@9 ! $ *@z#A#4#4#4#4#4#z#z#z# ", -" A#A#A#z#z#z#z#z#A#z#4#S ) e@%$0 &$*$=$-$;${+}@>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$>$,$'$'$'$_@'$)$!$~${$]$^$/$9 ($, & z#_$z#z#z#z#z#z#z#z# ", -" A#A#A#z#z#z#z#z#_$A#r.* :$0 <$[$}$|$1$2$3$]#1@4$4$4$4$4$4$4$4$4$4$5$6$5$5$5$5$5$5$5$5$5$5$5$7$7$7$7$7$7$7$7$7$7$5$5$5$5$5$5$5$5$5$5$5$8$9$8$,$0$a$b$c$d$e$f$g$h$i$_ . 4#_$A#A#A#A#A#A#A# ", -" A#A#A#A#A#A#A#A#j$A## { k$g#l$m$n$o$p$q$r$v+]#v+v+v+v+v+v+v+v+v+s$t$t$t$t${+{+{+{+{+{+{+{+{+{+{+{+{+{+{+{+{+{+{+ $ $ $ $ $ $ $ $ $ $ $ $ $ ${+ ${+u$v$w$x$y$z$f A$B$^ *@A#_$_$_$_$_$_$_$_$ ", -" _$_$_$_$_$_$_$j$4#C$6 D$E$F$G$H$I$J$K$L$M$N$2@O$P$P$P$P$P$Q$P$P$R$R$R$S$S$S$T$T$T$T$T$T$T$T$U$U$U$U$U$U$U$U$U$U$U$U$U$U$U$U$U$U$U$U$U$V$U$V$W$X$Y$Z$`$ %.%+%@%#%f $%$ d@j$%%j$j$j$j$j$j$j$ ", -" j$j$j$j$j$j$%%j$A#q.x@U@&%*%=%-%;%>%,%'%)%!%V$!%!%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%{%Y${+Y$]%^%/%(%_%:%<%D [%^ ( j$}%j$j$j$j$j$j$j$j$ ", -" %%%%j$j$j$j$j$}%j$d@# |%p.1%2%3%4%5%6%7%8%Q$9%0%9%a%a%a%a%a%a%a%a%a%a%a%a%b%b%a%c%c%c%c%c%c%c%c%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%.#.#.#.#e%c%e%.#e%V$f%g%h%i%j%k%l%m%n%o%{ $ j$p%j$j$j$j$j$%%%%%% ", -" %%%%%%%%%%%%%%%%p%%%g ^ q%9 r%s%t%u%v%w%x%y%2@y%y%y%y%y%y%y%y%y%y%y%y%y%y%y%y%y%z%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%a$a$a$a$a$a$a$a$a$Y$a$K$B%C%D%E%F%G%< H%: ; _$p%%%%%%%%%%%}%}%}% ", -" }%}%}%}%}%}%}%}%I%p%% J%K%L%M%N%O%P%Q%R%S%T%!%U%8%U%V%V%V%V%V%V%V%V%V%V%V%V%V%V%8%W%W%W%W%W%W%W%W%8%8%8%8%8%W%W%W%W%W%W%W%W%W%W%W%X%X%X%X%Y%Y%Y%Y%Y%Z%Y%`% &.&6%+&@&#&$&%&: - d@j$}%p%}%}%}%}%p% ", -" p%p%p%p%p%p%p%p%&&p%+ < *&B$=&-&;&>&,&'&)&X%a%!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&~&~&~&~&~&~&~&~&~&~&~&~&~&~&{& # # # # #]& #W#^&/&(&_&(&:&<&[&8 }&/ 4#p%|&p%p%p%p%p%p% ", -" |&|&|&|&|&|&|&|&|&A#= D *&1&2&3&4&5&6&'&7& #T%8&8&8&8&8&8&8&8&8&8&8&8&8&8&8&8&8&8&9&{#9&9&9&9&9&9&9&9&9&9&9&9&0&0&0&0&0&a&{#{#{#{#{#{#{#0&b&b&b&b&b&~&b&`%c&d&>&e&f&g&h&i&h j&+ d@|&I%|&|&|&|&|&|&|&", -" |&|&|&|&|&|&I%|&j$*@k&6 l&m&n&o&p&q&q&r&s&t&8%u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&u&v&v&v&v&v&v&{#v&w&x&y&z&A&z&B&C&D&_ E&- r.|&&&|&|&|&|&|&|&|&", -" |&|&|&|&|&&&|&z#/ F&6 G&H&I&6&J&K&z&L&M&N&!&N&N&N&N&N&N&N&N&N&N&N&N&N&N&O&O&O&O&O&O&O&O&O&O&O&O&O&O&O&O&O&N&N&N&N&N&N&O&P&P&P&P&P&P&P&P&O&Q&O&Q&O&b&O&R&S&T&U&V&U&W&X&Y&Z&`&] ( |&&&|&|&|&|&|&|&|&", -" I%I%I%I%I%I%&&I%*#@ *< .*+*@*#*$*#*%*&*H.**a&Q&Q&Q&Q&Q&Q&Q&Q&Q&Q&Q&Q&Q&=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*-*-*-*-*-*-*-*-*-*-*-*-*-*;*-*>*,*'*)*!*)*0.~*{*]*^*{ % |&/*I%I%I%I%I%I%I%", -" /*&&&&&&&&&&&&(*&&d@; _*7 :*<*[*}*|*1*2*1*3*4*5*6*=*6*7*8*8*8*8*8*8*8*8*8*9*0*0*0*0*0*0*8*8*8*8*8*8*8*8*8*0*0*0*0*0*0*0*0***a*a*a*a*a*a*a*a*a***a*a*a*b*c*d*e*f*&*g*&*h*i*j*J%k*{ % |&/*&&&&&&&&&&&&&&", -"/*/*/*/*/*/*/*/*l*/**@- m*: n*o*p*q*r*q*g*q*s*t*u*x+c*x+a*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*v*w*w*w*w*w*w*w*w*w*w*w*w*w*w*w*w*w*w*w*w*w*w*=*x*y*z*A*B*}*B*C*D*E*F*G*~ % p%/*/*/*/*/*/*/*/*", -"/*/*/*(*(*(*(*(*H*(*r.^ `&8 I*J*K*L*M*L*N*L*O*P*Q*R*7*x*x*x*x*x*x*x*x*x*x*x*x*x*x*S*S*S*S*T*T*T*T*T*T*T*S*T*T*T*T*T*T*T*T*T*T*T*U*V*V*V*V*V*V*V*V*V*U*T*V*W*X*Y*}*i%Z*i%`*Z* =.=+=! @=j$&&(*(*(*(*(*(*(*", -"/*/*(*(*(*(*(*(*H*(*S ] #=h $=%=&=*===-=;=-=>=,=K.'=)='='='='='='='='='='='='='=V*V*V*V*!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=~=~=~=~=~=~=~=~=~=V*~=W*{=s*]=N*]=]=]=^=]=/=(=F*) _=z#|&(*l*(*(*(*(*(*", -"(*(*(*(*(*(*(*(*:=(*S ' <=]*[=}=|=1=2=3=*=3=4=5=6=7='=8=8=9=9=9=9=9=9=0=0=0=a=9=9=9=9=9=9=b=b=b=b=b=b=b=b=b=b=9=9=9=9=9=9=9=9=9=b=b=b=b=b=b=b=b=c=b=U*~=d=X*e=-=f=g=g=g=h=g=i=j=k=' l=4#|&l*H*l*l*l*l*l*", -"l*l*l*l*l*l*l*l*m=l*S ' `&J%n=o=p=4=q=4=4=4=*=r=s=t=i+b=9=u=u=u=u=u=u=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=v=8=w=x=y=z=A=B=A=A=A=C=A=D=E=F=] l=4#I%H*:=H*H*H*H*H*", -"H*H*H*H*H*H*H*H*G=H*S ) <={ H=I=J=K=L=K=K=K=A=M=y=N=O=u=P=Q=Q=R=Q=R=R=R=R=R=S=w=w=w=w=w=w=S=S=S=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=w=T=v=U=L.V=>=W=X=Y=X=X=X=Z=X=`= -.-x@+-4#I%:=:=:=:=:=:=:=", -":=:=:=:=:=:=:=:=@-:=S ) <={ #-$-'*%-&-%-%-%-*-%-=---;->-Q=,-,-,-,-,-,-,-,-,-'-)-)-)-)-)-)-)-)-)-)-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-S=~-Q.{-]-^-q=^-^-^-^-^-/-^-(-_-:-, <-4#I%:=m=:=:=:=:=:=", -"m=m=m=m=m=m=m=m=@-m=r.] [-~ }-|-1-2-3-2-2-2-2-2-4-5-6-7-8-'-R=9-9-9-9-9-9-9-~-~-~-~-0-~-~-~-~-~-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-!-!-a-b-c-d-e-f-^-z=z=z=z=z=g-z=h-i-j-^ k-z#&&:=m=:=:=:=:=:=", -"m=m=m=m=m=m=m=m=l-m=*@, m-! n-o-p-q-r-q-q-q-q-q-s-t-u-v-w-y+x-y-y-y-y-y-y-y-y-y-y-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-z-0-A-B-C-D-E-4-F-F-F-F-F-F-F-G-F-H-I-J-s.K-A#/*m=G=m=m=m=m=m=", -"G=G=G=G=G=G=G=G=L-G=d@s.M-) N-O-/&P-Q-P-P-P-R-P-S-S-T-U-V-W-B-a-0-y-z-X-X-X-X-X-X-Y-Y-Y-Y-Y-Y-Y-Y-X-X-X-X-X-Y-Y-a-Y-Y-Y-Y-Y-Y-Y-a-Y-Y-X-y-y-Z-`- ;.;+;s-s-S-S-S-q-q-q-q-@;q-#;$;%;> &;j$(*G=@-G=G=G=G=G=", -"@-@-@-@-@-@-@-@-L-@-*#- *;] =;-;^%;;>;;;;;;;;;;;;;;;,;;;';);!;~;{;];Y-];];];];];];];];];];];];];];];];];];];];y+y+y+y+y+y+y+y+y+y+y+y+y+a-^;/;(;_;,;:;,;,;,;,;,;,;R-R-R-<;R-[;};|;- 1;}%H*@-l-@-@-@-@-@-", -"l-l-l-l-l-l-l-l-2;l-z#; 3;, 4;5;6;7;8;7;7;9;9;9;9;9;0;0;0;a;b;c;d;e;f;X-g;];];{;{;{;{;{;h;^;^;^;^;^;^;^;^;^;^;i;i;i;i;i;i;i;^;y+j;j;y+k;l;m;n;o;a;R-R-p;q;p;p;p;p;p;p;p;r;s;t;u;v;= w;|&:=l-l-l-l-l-l-@-", -"l-l-l-l-l-l-l-l-2;l-_$@ x;^ y;z;A;B;C;B;D;D;D;D;D;D;D;D;D;D;E;F;G;H;I;J;h;K;K;K;K;K;K;K;J;L;L;L;L;L;L;L;L;L;L;L;L;L;L;L;L;L;L;L;i;L;8-l;(;M;N;O;7;O;O;O;O;O;O;O;O;O;O;O;P;O;Q;R;S;* T;/*G=l-L-l-l-l-l-l-", -" l-l-L-L-L-L-L-2;L-%%& U;^ V;W;X;Y;Z;Y;`;`;`;`;`;`; >`;`;.>E;D;+>@>#>$>%>&>*>J;=>=>=>->;>;>>>>>>>>>,>>>>>>>>>;>;>;>->->=>=>'>)>!>~>{>]>^>/>B;(>_>.>.>.>.>:>:>:>:>:>.>:><>[>}>|>1>. *#:=l-l-L-l-l-l-L-L-", -" L-L-L-L-L-L-2>L-|&r.3>s.4>5>6>7>8>7>7>7>7>7>7>7>7>7>7>7>7>7>9>7>0>a>b>c>d>e>f>f>f>f>f>f>f>f>f>f>f>f>f>f>f>f>f>f>f>f>g>f>h>i>j>k>l>7>m>9>9>9>9>9>9>9>9>n>n>n>n>n> >n> >o>p>. q>@ A#l-2>L-L-L-L-L-L-2;", -" L-L-L-L-L-2>L-/**#k-> r>s>t>u>v>w>w>w>u>w>w>w>u>u>u>u>u>u>x>y>x>z>A>B>C>D>E>F>G>H>I>J>K>L>M>N>N>N>M>O>L>h>P>I>H>Q>R>E>S>T>U>V>w>m>m>7>W>X>X>X>X>X>Y>Y>Y>Y>Y>Y>Z>Y>`> ,.,+,@,% %%2;#,2;2;2;2;2;2;2>", -" 2;2;2;2;2;2;2>2;:=%%$,= %,&,*,=,-,;,;,;,;,;,;,;,;,;,;,;,;,;,;,;,;,;,;,;,;,>,,,',),D>!,~,{,],^,/,(,(,!>d>],G>_,:,<,[,},|,1,2,z>z>z>z>z>z>z>z>z>z>z>z>z>z>z>z>z>z>3,z>4,5,6,# 7,g p%2>8,2>2>2>2>2>2>2>", -" 2>2>2>2>2>2>#,2>l-(*T;= 9,0,a,b,c,d,e,d,d,d,d,d,e,f,f,f,f,f,f,f,f,g,;,;,h,h,>,i,j,k,l,m,n,o,p,q,<,<,q,r,o,n,m,l,',s,t,u,;,h,h,;,=,u,v,v,v,v,v,v,=,u,u,u,u,u,u,u,w,u,x,y,z,$ A,y@/*#,8,#,#,#,#,2>#,#,", -" #,#,#,#,#,#,#,#,#,l-4#; B,C,D,E,F,G,H,G,G,G,G,G,t,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,I,d,d,d,d,d,d,d,d,J,d,K,L,M,% N,j$H*#,8,#,#,#,#,#,#,#,", -" 8,8,8,8,8,8,8,8,O,2>P,# Q,R,S,T,U,V,W,X,X,X,X,X,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,F,F,F,F,F,G,G,H,H,Z,Z,Z,Z,Z,Z,Z,Z,Z,Z,Z,Z,H,H,G,G,t,t,t,`,t,i,t,t,t, ' ' ' '`,`,`,`,`,`,`,`,.'t,+'@'#'& $'/*@-#,8,#,#,#,8,8,8,#,", -" 8,8,8,8,8,8,8,8,%'8,I%S &'+ *'='-';'>';';';';';';';';';';';';';';';';',',',',',',',',',',',',',',',',',',',',',',','V,'''''''''''''''''''''''''''''''''''''''''')'!'~'{']'/ _$G=2>8,8,8,8,8,O,O,O, ", -" O,O,O,O,O,O,O,O,^'O,:=A#/'@ ('_':'<'['}'}'}'}'|'<'1'1'1'1'1'<'1'1'1'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'<'|'2'2'2'2'2'2'2'2'2'2';';';';';';';';';'3'2'4'5'6'( 7'S |&2>O,O,O,O,O,O,O,%' ", -" %'%'%'%'%'%'%'%'^'%'L-/*8'$ 9'0'a'k,b'c'c'c'c'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'd'1'1'1'1'1'1'1'1'1'1'e'1'f'g'h'S i'y@(*%'j'%'%'%'%'%'%'%'%' ", -" %'%'%'^'^'^'^'^'^'O,L-k'% &'l'm'n'o'p'q'r's't't't't't't't't't't't't't't't't't'u't't'q'q'q'q'q'q'q'q'q'q'q'q'q't'q'q'q'q'q'q'q'q'q'q'q'v'w'w'w'w'w'w'w'v'w'x'y'z'A'B'r.$'}%G=^'j'%'%'%'%'%'^'^'^' ", -" ^'^'^'^'^'^'^'^'C'%'I%g D'& E'F'G'H'I'H'H'H'H'H'H'H'H'H'H'H'H'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'J'K'o'L'M'w;q.N':=2>^'j'^'^'^'^'^'^'^'^' ", -" j'j'j'^'^'^'^'^'C'j':=z#O'P'Q'R'S'T'U'V'V'V'V'V'V'V'V'V'V'V'V'V'W'V'V'V'V'V'V'V'W'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'X'Y'X'X'X'X'X'Z'`' ).)+)@)#)d@&&2>^'j'j'j'j'j'j'j'j'^' ", -" C'C'C'j'j'j'j'j'C'j'2;(*z#g $)%)&)*)=)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T'T';)T'>),)')y@))A#:=j'!)C'C'C'C'C'C'C'C' ", -" C'C'C'C'C'C'C'C'C'^'2>|&q.~)r.{)])6=^)/)()_)()()()()()()()()()()()()():):):):)_)_)<)_)_)_)_)_)_)_)<)<)<)<)<)<)<)<)<)<)<)<)<)<)<)<)<)<)<)<)<)<)[)-)})|)1)2)3)8'4)/*2;!)5)!)!)!)!)!)!)!)!) ", -" !)!)!)!)!)!)!)!)5)C':=z#6)q.7)8)9)0)a)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)c)c)c)c)c)c)c)c)c)c)c)c)c)c)c)c)c)c)c)c)c)d)e)f)g)h)i)j)4#&&2;^'!)5)!)!)!)!)!)5)5)5) ", -" 5)5)5)5)5)5)5)5)k)5)#,l*l)q.m)n)o)p)q)r)r)s)t)s)s)s)s)s)s)s)s)s)s)s)s)u)v)u)u)s)s)s)s)s)s)s)s)s)s)s)w)s)s)s)s)s)s)s)w)w)w)w)w)w)w)w)x)w)w)y)z)A)B)C)D)E)F)%%m=^'!)!)5)!)!)!)!)!)5)5) ", -" 5)5)5)5)5)5)5)5)5)5)C'8,&&d@N,d@G)H)I)J)K)J)J)J)J)J)J)J)J)J)J)J)J)J)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)L)M)M)M)M)M)M)M)M)M)s)M)N)O)P)Q)R)A#S)l*#,5)k)5)5)5)5)5)5)5)5) ", -" 5)5)5)5)5)5)5)k)k)k)C'l-p%E)T)U)V)W)X)Y)Z)Z)`) !`)`)`)`)`)`)`)`)`) ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !.! ! ! ! ! !+!@!#!$!%!&!*!_$=!%%-!#,C';!;!k)k)k)k)k)k)k)k) ", -" k)k)k)k)k)k)k)k);!k)^'l-I%4#))4#>!,!'!)!!!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!)!~!{!]!^!/!%%S)&&2;k)(!;!;!;!;!;!;!;!;!;!;! ", -" ;!;!;!;!;!;!;!;!(!;!k)j'@-|&=!_!:!5)(!d!d!d!d!d!d!d!d!d!d! ", -" d!O!O!O!O!O!O!O!O! ~ ~(!C'2>H*.~+~@~#~$~%~&~*~=~-~;~>~,~'~'~)~!~)~~~~~)~)~)~)~)~)~)~)~)~)~)~)~)~)~)~)~,~{~]~;~>~^~/~(~_~$~:~<~[~}~|~8,!)d!O!O!O!O!O!O!O!O!O!O!O! ", -" ~ ~ ~ ~ ~ ~ ~ ~ ~ ~1~ ~k)O,G=&&N!I%I%2~3~4~5~6~7~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~7~8~9~0~a~b~c~I%d~I%/*m=%'d! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~O!O!O! ", -" ~1~1~1~1~1~1~1~1~1~e~O!;!^'2;f~g~h~d~i~j~k~l~m~n~o~p~q~r~q~q~s~t~u~u~u~u~u~u~u~u~u~u~v~s~s~w~x~x~y~z~A~B~C~D~E~F~|&[~G~f~2;^';!1~1~1~1~1~ ~1~1~1~1~1~ ~O! ", -" 1~1~1~1~1~1~1~1~1~1~1~1~ ~;!8,:=/*&&H~&&I~J~K~L~M~N~O~P~P~P~Q~R~R~R~R~R~R~R~R~R~R~R~R~R~R~R~S~T~U~V~W~X~Y~&&Z~&&I%&&m=8,k)1~e~1~1~1~1~1~1~1~1~1~1~1~1~ ", -" 1~1~e~e~1~1~1~1~1~e~e~e~ ~;!^'2>G=`~h~ {I%.{+{@{#{${%{&{*{={-{;{>{,{'{){){'{,{!{~{-{{{]{^{/{({_{:{<{J~[{}{|{1{@-#,j';! ~2{2{e~e~e~e~e~e~e~e~e~1~1~ ", -" e~e~e~e~e~e~e~e~e~e~e~e~2{e~;!%'@-(*&&&&&&&&H~[{3{4{5{6{7{8{9{0{Z-f;a{a{f;Z-b{9{8{c{d{e{f{g{h{/*/*/*&&/*H*L-j'O!e~2{2{2{2{2{2{2{2{2{2{2{e~e~e~ ", -" e~2{2{2{2{2{2{2{2{2{2{i{i{e~(!!)%'2>j{k{l{m{}{d~n{J~o{p{q{r{s{t{u{v{v{u{t{w{x{y{z{A{J~I~.~h~B{l{C{D{#,^'5)O!2{i{i{i{i{i{i{i{i{i{2{i{i{2{e~ ", -" i{i{i{i{i{i{i{i{i{i{i{i{i{i{i{2{d!j'#,@-H*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*l*@-8,!)O!e~i{i{i{i{i{i{i{i{i{i{i{i{i{i{i{i{ ", -" i{E{E{E{E{E{E{E{E{E{E{E{E{F{F{2{O!;!!)^'8,2>D{G{C{H{I{l{J{K{|{|{K{K{K{L{M{I{N{C{G{O{P{O,j'5)(! ~2{E{F{E{E{E{E{i{E{i{i{i{E{E{E{E{i{ ", -" E{E{E{E{E{E{E{E{E{E{E{E{E{E{E{E{E{E{2{1~(!!)^'8,2>L-@-m=:=H*H*:=:=:=m=@-L-2>8,^'5)d!e~E{E{E{E{E{E{E{E{E{E{E{E{E{E{E{E{E{F{F{F{ ", -" E{E{F{F{F{F{E{E{E{E{E{E{E{F{F{Q{Q{F{E{2{1~O!(!;!k)5)!)C'C'C'C'C'C'!)5)k);!(!O!1~2{F{Q{Q{Q{F{F{F{E{E{E{E{E{E{E{F{F{F{E{F{F{ ", -" F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{Q{Q{Q{ ", -" F{F{F{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{R{R{R{R{R{S{S{S{S{S{S{S{S{S{S{R{R{R{R{R{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{Q{ ", -" R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{R{ ", -" R{R{R{S{S{S{S{S{S{R{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{R{S{S{S{S{S{R{R{R{R{R{R{ ", -" S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{S{R{R{R{ ", -" S{S{S{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{T{S{ S{S{R{ ", -" U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{U{ ", -" U{U{U{U{U{U{U{ U{U{V{V{V{V{V{V{V{U{U{U{U{U{U{U{U{ U{U{U{U{U{ ", -" V{V{V{V{V{V{V{V{U{U{U{U{U{U{U{ "}; +"100 100 2 1", +" c None", +". c #F7E022", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ............. ", +" ..................... ", +" ............................. ", +" ................................. ", +" ..................................... ", +" ......................................... ", +" ............................................. ", +" ............................................... ", +" ................................................. ", +" ..................................................... ", +" ....................................................... ", +" ......................................................... ", +" ........................................................... ", +" ............................................................. ", +" ............................................................... ", +" ............................................................... ", +" ................................................................. ", +" ................................................................... ", +" ..................................................................... ", +" ..................................................................... ", +" ....................................................................... ", +" ....................................................................... ", +" ......................................................................... ", +" ......................................................................... ", +" ........................................................................... ", +" ........................................................................... ", +" ............................................................................. ", +" ............................................................................. ", +" ............................................................................. ", +" ............................................................................. ", +" ............................................................................... ", +" ............................................................................... ", +" ............................................................................... ", +" ............................................................................... ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ................................................................................. ", +" ............................................................................... ", +" ............................................................................... ", +" ............................................................................... ", +" ............................................................................... ", +" ............................................................................. ", +" ............................................................................. ", +" ............................................................................. ", +" ............................................................................. ", +" ........................................................................... ", +" ........................................................................... ", +" ......................................................................... ", +" ......................................................................... ", +" ....................................................................... ", +" ....................................................................... ", +" ..................................................................... ", +" ..................................................................... ", +" ................................................................... ", +" ................................................................. ", +" ............................................................... ", +" ............................................................... ", +" ............................................................. ", +" ........................................................... ", +" ......................................................... ", +" ....................................................... ", +" ..................................................... ", +" ................................................. ", +" ............................................... ", +" ............................................. ", +" ......................................... ", +" ..................................... ", +" ................................. ", +" ............................. ", +" ..................... ", +" ............. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/Plugins/org.blueberry.ui.qt.help/files.cmake b/Plugins/org.blueberry.ui.qt.help/files.cmake index d83091471a..224105c84c 100644 --- a/Plugins/org.blueberry.ui.qt.help/files.cmake +++ b/Plugins/org.blueberry.ui.qt.help/files.cmake @@ -1,61 +1,61 @@ set(SRC_CPP_FILES ) set(INTERNAL_CPP_FILES berryHelpContentView.cpp berryHelpEditor.cpp berryHelpEditorFindWidget.cpp berryHelpEditorInput.cpp berryHelpEditorInputFactory.cpp berryHelpIndexView.cpp berryHelpPerspective.cpp berryHelpPluginActivator.cpp berryHelpSearchView.cpp berryHelpTopicChooser.cpp berryHelpWebView.cpp berryQHelpEngineConfiguration.cpp berryQHelpEngineWrapper.cpp ) set(CPP_FILES ) set(MOC_H_FILES src/internal/berryHelpContentView.h src/internal/berryHelpEditor.h src/internal/berryHelpEditorFindWidget.h src/internal/berryHelpEditorInputFactory.h src/internal/berryHelpIndexView.h src/internal/berryHelpPerspective.h src/internal/berryHelpPluginActivator.h src/internal/berryHelpSearchView.h src/internal/berryHelpTopicChooser.h src/internal/berryHelpWebView.h src/internal/berryQHelpEngineConfiguration.h src/internal/berryQHelpEngineWrapper.h ) set(CACHED_RESOURCE_FILES plugin.xml - resources/help.png - resources/helpIndex.png - resources/helpSearch.png + resources/help.svg + resources/helpIndex.svg + resources/helpSearch.svg ) set(QRC_FILES resources/org_blueberry_ui_qt_help.qrc ) set(UI_FILES src/internal/berryHelpTopicChooser.ui ) foreach(file ${SRC_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/${file}) endforeach(file ${SRC_CPP_FILES}) foreach(file ${INTERNAL_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/internal/${file}) endforeach(file ${INTERNAL_CPP_FILES}) diff --git a/Plugins/org.blueberry.ui.qt.help/plugin.xml b/Plugins/org.blueberry.ui.qt.help/plugin.xml index 369ca172a6..3a14272ba2 100644 --- a/Plugins/org.blueberry.ui.qt.help/plugin.xml +++ b/Plugins/org.blueberry.ui.qt.help/plugin.xml @@ -1,49 +1,49 @@ + icon="resources/help.svg" /> + icon="resources/helpIndex.svg" /> + icon="resources/helpSearch.svg" /> + icon="resources/help.scg"> + icon="resources/help.svg"> diff --git a/Plugins/org.blueberry.ui.qt.help/resources/help.png b/Plugins/org.blueberry.ui.qt.help/resources/help.png deleted file mode 100644 index 3d9bb73911..0000000000 Binary files a/Plugins/org.blueberry.ui.qt.help/resources/help.png and /dev/null differ diff --git a/Plugins/org.blueberry.ui.qt.help/resources/help.svg b/Plugins/org.blueberry.ui.qt.help/resources/help.svg new file mode 100644 index 0000000000..7fbcd22f55 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt.help/resources/help.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Plugins/org.blueberry.ui.qt.help/resources/helpIndex.png b/Plugins/org.blueberry.ui.qt.help/resources/helpIndex.png deleted file mode 100644 index 267a4788d0..0000000000 Binary files a/Plugins/org.blueberry.ui.qt.help/resources/helpIndex.png and /dev/null differ diff --git a/Plugins/org.blueberry.ui.qt.help/resources/helpIndex.svg b/Plugins/org.blueberry.ui.qt.help/resources/helpIndex.svg new file mode 100644 index 0000000000..3880456aa5 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt.help/resources/helpIndex.svg @@ -0,0 +1,38 @@ + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/Plugins/org.blueberry.ui.qt.help/resources/helpSearch.png b/Plugins/org.blueberry.ui.qt.help/resources/helpSearch.png deleted file mode 100644 index d9abb8c875..0000000000 Binary files a/Plugins/org.blueberry.ui.qt.help/resources/helpSearch.png and /dev/null differ diff --git a/Plugins/org.blueberry.ui.qt.help/resources/helpSearch.svg b/Plugins/org.blueberry.ui.qt.help/resources/helpSearch.svg new file mode 100644 index 0000000000..689739a0e4 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt.help/resources/helpSearch.svg @@ -0,0 +1,33 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/Plugins/org.blueberry.ui.qt.log/files.cmake b/Plugins/org.blueberry.ui.qt.log/files.cmake index de15d741c5..7f19a73a24 100644 --- a/Plugins/org.blueberry.ui.qt.log/files.cmake +++ b/Plugins/org.blueberry.ui.qt.log/files.cmake @@ -1,41 +1,40 @@ set(SRC_CPP_FILES ) set(INTERNAL_CPP_FILES berryLogView.cpp berryQtLogPlugin.cpp berryQtLogView.cpp berryQtPlatformLogModel.cpp ) set(CPP_FILES ) set(MOC_H_FILES src/internal/berryLogView.h src/internal/berryQtLogPlugin.h src/internal/berryQtLogView.h src/internal/berryQtPlatformLogModel.h ) set(CACHED_RESOURCE_FILES plugin.xml - - resources/Logging.png + resources/logging.svg ) set(QRC_FILES resources/org_blueberry_ui_qt_log.qrc ) set(UI_FILES src/internal/berryQtLogView.ui ) foreach(file ${SRC_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/${file}) endforeach(file ${SRC_CPP_FILES}) foreach(file ${INTERNAL_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/internal/${file}) endforeach(file ${INTERNAL_CPP_FILES}) diff --git a/Plugins/org.blueberry.ui.qt.log/plugin.xml b/Plugins/org.blueberry.ui.qt.log/plugin.xml index 5d2989f5c5..8102ad6fb1 100644 --- a/Plugins/org.blueberry.ui.qt.log/plugin.xml +++ b/Plugins/org.blueberry.ui.qt.log/plugin.xml @@ -1,14 +1,14 @@ + icon="resources/logging.svg" /> diff --git a/Plugins/org.blueberry.ui.qt.log/resources/Logging.png b/Plugins/org.blueberry.ui.qt.log/resources/Logging.png deleted file mode 100644 index b1f02db6e7..0000000000 Binary files a/Plugins/org.blueberry.ui.qt.log/resources/Logging.png and /dev/null differ diff --git a/Plugins/org.blueberry.ui.qt.log/resources/logging.svg b/Plugins/org.blueberry.ui.qt.log/resources/logging.svg new file mode 100644 index 0000000000..0bbcb505c7 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt.log/resources/logging.svg @@ -0,0 +1,73 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/Plugins/org.blueberry.ui.qt/files.cmake b/Plugins/org.blueberry.ui.qt/files.cmake index 3dfa892c60..03c9203eb5 100644 --- a/Plugins/org.blueberry.ui.qt/files.cmake +++ b/Plugins/org.blueberry.ui.qt/files.cmake @@ -1,513 +1,513 @@ set(SRC_CPP_FILES berryAbstractSourceProvider.cpp berryAbstractUICTKPlugin.cpp berryConstants.cpp berryDisplay.cpp berryEditorPart.cpp berryExtensionFactory.cpp berryFileEditorInput.cpp berryGeometry.cpp berryIActionBars.h berryIContextService.cpp berryIContributionRoot.h berryIDropTargetListener.cpp berryIEditorDescriptor.cpp berryIEditorInput.cpp berryIEditorMatchingStrategy.cpp berryIEditorPart.cpp berryIEditorReference.cpp berryIEditorRegistry.cpp berryIEditorSite.cpp berryIElementFactory.cpp berryIFileEditorMapping.cpp berryIFolderLayout.cpp berryIMemento.cpp berryINullSelectionListener.cpp berryIPageLayout.cpp berryIPartListener.cpp berryIPageService.cpp berryIPartService.cpp berryIPathEditorInput.cpp berryIPersistable.cpp berryIPersistableElement.h berryIPerspectiveDescriptor.cpp berryIPerspectiveFactory.cpp berryIPerspectiveListener.cpp berryIPerspectiveRegistry.cpp berryIPlaceholderFolderLayout.cpp berryIPluginContribution.h berryIPostSelectionProvider.cpp berryIPreferencePage.cpp berryIPropertyChangeListener.cpp berryIQtPreferencePage.cpp berryIQtStyleManager.cpp berryIReusableEditor.cpp berryISaveablePart.cpp berryISaveablesLifecycleListener.cpp berryISaveablesSource.cpp berryISelection.cpp berryISelectionChangedListener.cpp berryISelectionListener.cpp berryISelectionProvider.cpp berryISelectionService.cpp berryIShellListener.cpp berryIShellProvider.cpp berryIShowInSource.h berryIShowInTarget.h berryISizeProvider.cpp berryISourceProvider.cpp berryISourceProviderListener.cpp berryISources.cpp berryIStickyViewDescriptor.cpp berryIStructuredSelection.cpp berryIViewCategory.cpp berryIViewDescriptor.cpp berryIViewLayout.cpp berryIViewPart.cpp berryIViewReference.cpp berryIViewRegistry.cpp berryIViewSite.cpp berryIWorkbenchCommandConstants.cpp berryIWindowListener.cpp berryIWorkbench.cpp berryIWorkbenchListener.cpp berryIWorkbenchPage.cpp berryIWorkbenchPart.cpp berryIWorkbenchPartConstants.cpp berryIWorkbenchPartDescriptor.cpp berryIWorkbenchPartReference.cpp berryIWorkbenchPartSite.cpp berryIWorkbenchSite.cpp berryIWorkbenchWindow.cpp berryMenuUtil.cpp berryPlatformUI.cpp berryPropertyChangeEvent.cpp berryQModelIndexObject.cpp berryQtEditorPart.cpp berryQtItemSelection.cpp berryQtIntroPart.cpp berryQtPreferences.cpp berryQtSelectionProvider.cpp berryQtViewPart.cpp berrySameShellProvider.cpp berrySaveable.cpp berrySaveablesLifecycleEvent.cpp berrySelectionChangedEvent.cpp berryShell.cpp berryShellEvent.cpp berryShowInContext.cpp berryUIException.cpp berryViewPart.cpp berryWindow.cpp berryWorkbenchActionConstants.cpp berryWorkbenchPart.cpp + berryWorkbenchPlugin.cpp berryWorkbenchPreferenceConstants.cpp berryXMLMemento.cpp #actions actions/berryAbstractContributionFactory.cpp actions/berryCommandContributionItem.cpp actions/berryCommandContributionItemParameter.cpp actions/berryContributionItem.cpp actions/berryContributionItemFactory.cpp actions/berryContributionManager.cpp actions/berryGroupMarker.cpp actions/berryIContributionItem.h actions/berryIContributionManager.h actions/berryIContributionManagerOverrides.cpp actions/berryIMenuManager.h #actions/berryMenuBarManager.cpp actions/berryMenuManager.cpp actions/berryQActionContributionItem.cpp actions/berryQActionProperties.cpp actions/berrySeparator.cpp actions/berrySubContributionItem.cpp #application application/berryActionBarAdvisor.cpp application/berryIActionBarConfigurer.cpp application/berryIWorkbenchConfigurer.cpp application/berryIWorkbenchWindowConfigurer.cpp application/berryWorkbenchAdvisor.cpp application/berryWorkbenchWindowAdvisor.cpp #commands commands/berryICommandImageService.cpp commands/berryICommandService.cpp commands/berryIElementReference.h commands/berryIElementUpdater.h commands/berryIMenuService.h commands/berryUIElement.cpp #guitk guitk/berryGuiTkControlEvent.cpp guitk/berryGuiTkEvent.cpp guitk/berryGuiTkIControlListener.cpp guitk/berryGuiTkISelectionListener.cpp guitk/berryGuiTkSelectionEvent.cpp #handlers handlers/berryHandlerUtil.cpp handlers/berryIHandlerActivation.cpp handlers/berryIHandlerService.cpp handlers/berryRadioState.cpp handlers/berryRegistryToggleState.cpp handlers/berryToggleState.cpp #intro intro/berryIIntroManager.cpp intro/berryIIntroPart.cpp intro/berryIIntroSite.cpp intro/berryIntroPart.cpp #models model/berryPerspectiveListModel.cpp model/berryViewTreeModel.cpp #tweaklets tweaklets/berryGuiWidgetsTweaklet.cpp tweaklets/berryWorkbenchPageTweaklet.cpp tweaklets/berryWorkbenchTweaklet.cpp #presentations presentations/berryIPresentablePart.cpp presentations/berryIPresentationFactory.cpp presentations/berryIPresentationSerializer.cpp presentations/berryIStackPresentationSite.cpp presentations/berryStackDropResult.cpp presentations/berryStackPresentation.cpp #services services/berryIDisposable.cpp services/berryIEvaluationReference.h services/berryIEvaluationService.cpp services/berryINestable.cpp services/berryIServiceFactory.cpp services/berryIServiceLocator.cpp services/berryIServiceScopes.cpp services/berryIServiceWithSources.cpp services/berryISourceProviderService.cpp #testing testing/berryTestableObject.cpp #util util/berryISafeRunnableRunner.cpp util/berrySafeRunnable.cpp # application application/berryQtWorkbenchAdvisor.cpp ) set(INTERNAL_CPP_FILES defaultpresentation/berryEmptyTabFolder.cpp defaultpresentation/berryEmptyTabItem.cpp defaultpresentation/berryNativeTabFolder.cpp defaultpresentation/berryNativeTabItem.cpp defaultpresentation/berryQCTabBar.cpp defaultpresentation/berryQtWorkbenchPresentationFactory.cpp dialogs/berryPerspectivesPreferencePage.cpp dialogs/berrySavePerspectiveDialog.cpp handlers/berryCloseAllPerspectivesHandler.cpp handlers/berryClosePerspectiveHandler.cpp handlers/berryDynamicHelpHandler.cpp handlers/berryHelpContentsHandler.cpp handlers/berryIntroHandler.cpp handlers/berryNewEditorHandler.cpp handlers/berryOpenInNewWindowHandler.cpp handlers/berryQuitHandler.cpp handlers/berryResetPerspectiveHandler.cpp handlers/berrySavePerspectiveHandler.cpp handlers/berryShowPerspectiveHandler.cpp handlers/berryShowViewHandler.cpp util/berryAbstractTabFolder.cpp util/berryAbstractTabItem.cpp util/berryIPresentablePartList.cpp util/berryLeftToRightTabOrder.cpp util/berryPartInfo.cpp util/berryPresentablePartFolder.cpp util/berryReplaceDragHandler.cpp util/berryTabbedStackPresentation.cpp util/berryTabDragHandler.cpp util/berryTabFolderEvent.cpp util/berryTabOrder.cpp #intro intro/berryEditorIntroAdapterPart.cpp intro/berryIIntroDescriptor.cpp intro/berryIIntroRegistry.cpp intro/berryIntroConstants.cpp intro/berryIntroDescriptor.cpp intro/berryIntroPartAdapterSite.cpp intro/berryIntroRegistry.cpp intro/berryViewIntroAdapterPart.cpp intro/berryWorkbenchIntroManager.cpp berryAbstractGroupMarker.cpp berryAbstractMenuAdditionCacheEntry.cpp berryAbstractPartSelectionTracker.cpp berryAbstractSelectionService.cpp berryActivePartExpression.cpp berryAlwaysEnabledExpression.cpp berryAndExpression.cpp berryBundleUtility.cpp berryChangeToPerspectiveMenu.cpp berryCommandParameter.cpp berryCommandPersistence.cpp berryCommandService.cpp berryCommandServiceFactory.cpp berryCommandStateProxy.cpp berryCompositeExpression.cpp berryContainerPlaceholder.cpp berryContributionRoot.cpp berryDetachedPlaceHolder.cpp berryDefaultSaveable.cpp berryDefaultStackPresentationSite.cpp berryDetachedWindow.cpp berryDirtyPerspectiveMarker.cpp berryDragUtil.cpp berryEditorAreaHelper.cpp berryEditorDescriptor.cpp berryEditorHistory.cpp berryEditorHistoryItem.cpp berryEditorManager.cpp berryEditorReference.cpp berryEditorRegistry.cpp berryEditorRegistryReader.cpp berryEditorSashContainer.cpp berryEditorSite.cpp berryElementReference.cpp berryErrorViewPart.cpp berryEvaluationAuthority.cpp berryEvaluationReference.cpp berryEvaluationResultCache.cpp berryEvaluationService.cpp berryExpressionAuthority.cpp berryFileEditorMapping.cpp berryFolderLayout.cpp berryHandlerActivation.cpp berryHandlerAuthority.cpp berryHandlerPersistence.cpp berryHandlerProxy.cpp berryHandlerService.cpp berryHandlerServiceFactory.cpp berryIDragOverListener.cpp berryIDropTarget.cpp berryIEvaluationResultCache.cpp berryILayoutContainer.cpp berryInternalMenuService.h berryIServiceLocatorCreator.cpp berryIStickyViewManager.cpp berryIWorkbenchLocationService.cpp berryKeywordRegistry.cpp berryLayoutHelper.cpp berryLayoutPart.cpp berryLayoutPartSash.cpp berryLayoutTree.cpp berryLayoutTreeNode.cpp berryMenuServiceFactory.cpp berryNestableHandlerService.cpp berryNullEditorInput.cpp berryOpenPerspectivePropertyTester.cpp berryPageLayout.cpp berryPagePartSelectionTracker.cpp berryPageSelectionService.cpp berryParameterValueConverterProxy.cpp berryPartList.cpp berryPartPane.cpp berryPartPlaceholder.cpp berryPartSashContainer.cpp berryPartService.cpp berryPartSite.cpp berryPartStack.cpp berryPartTester.cpp berryPersistentState.cpp berryPerspective.cpp berryPerspectiveDescriptor.cpp berryPerspectiveExtensionReader.cpp berryPerspectiveHelper.cpp berryPerspectiveParameterValues.cpp berryPerspectiveRegistry.cpp berryPerspectiveRegistryReader.cpp berryPlaceholderFolderLayout.cpp berryPolicy.cpp berryPreferenceConstants.cpp berryPreferencePageParameterValues.cpp berryPresentablePart.cpp berryPresentationFactoryUtil.cpp berryPresentationSerializer.cpp berryQtControlWidget.cpp berryQtDnDControlWidget.cpp berryQtDisplay.cpp berryQtGlobalEventFilter.cpp berryQtMainWindowControl.cpp berryQtOpenPerspectiveAction.cpp berryQtPerspectiveSwitcher.cpp berryQtSash.cpp berryQtShell.cpp berryQtShowPerspectiveDialog.cpp berryQtShowViewAction.cpp berryQtShowViewDialog.cpp berryQtStyleManager.cpp berryQtStylePreferencePage.cpp berryQtTracker.cpp berryQtWidgetController.cpp berryQtWidgetsTweaklet.cpp berryQtWidgetsTweakletImpl.cpp berryQtWorkbenchPageTweaklet.cpp berryQtWorkbenchTweaklet.cpp berryRegistryPersistence.cpp berryRegistryReader.cpp berryReopenEditorMenu.cpp berrySaveablesList.cpp berryShowViewMenu.cpp berryServiceLocator.cpp berryServiceLocatorCreator.cpp berryShellPool.cpp berrySlaveCommandService.cpp berrySlaveHandlerService.cpp berrySlaveMenuService.cpp berrySourceProviderService.cpp berrySourcePriorityNameMapping.cpp berryStatusUtil.cpp berryStickyViewDescriptor.cpp berryStickyViewManager.cpp berrySwitchToWindowMenu.cpp berryTweaklets.cpp berryUIExtensionTracker.cpp berryUtil.cpp berryViewDescriptor.cpp berryViewFactory.cpp berryViewLayout.cpp berryViewReference.cpp berryViewRegistry.cpp berryViewRegistryReader.cpp berryViewSashContainer.cpp berryViewSite.cpp berryWorkbenchPage.cpp berryWindowManager.cpp berryWindowPartSelectionTracker.cpp berryWindowSelectionService.cpp berryWorkbench.cpp berryWorkbenchConfigurer.cpp berryWorkbenchConstants.cpp berryWorkbenchLocationService.cpp berryWorkbenchMenuService.cpp berryWorkbenchPagePartList.cpp berryWorkbenchPartReference.cpp - berryWorkbenchPlugin.cpp berryWorkbenchRegistryConstants.cpp berryWorkbenchServiceRegistry.cpp berryWorkbenchSourceProvider.cpp berryWorkbenchTestable.cpp berryWorkbenchWindow.cpp berryWorkbenchWindowConfigurer.cpp berryWorkbenchWindowExpression.cpp berryWWinActionBars.cpp berryWWinPartService.cpp ) set(MOC_H_FILES src/berryAbstractUICTKPlugin.h src/berryEditorPart.h src/berryExtensionFactory.h src/berryQtSelectionProvider.h src/berryViewPart.h src/berryWorkbenchPart.h + src/berryWorkbenchPlugin.h src/actions/berryCommandContributionItem.h src/actions/berryMenuManager.h src/intro/berryIntroPart.h src/model/berryPerspectiveListModel.h src/model/berryViewTreeModel.h src/internal/berryChangeToPerspectiveMenu.h src/internal/berryCommandServiceFactory.h src/internal/berryHandlerServiceFactory.h src/internal/berryMenuServiceFactory.h src/internal/berryOpenPerspectivePropertyTester.h src/internal/berryPerspectiveParameterValues.h src/internal/berryPreferencePageParameterValues.h src/internal/berryQtDisplay.h src/internal/berryQtGlobalEventFilter.h src/internal/berryQtMainWindowControl.h src/internal/berryQtOpenPerspectiveAction.h src/internal/berryQtPerspectiveSwitcher.h src/internal/berryQtSash.h src/internal/berryQtShowPerspectiveDialog.h src/internal/berryQtShowViewAction.h src/internal/berryQtShowViewDialog.h src/internal/berryQtStyleManager.h src/internal/berryQtStylePreferencePage.h src/internal/berryQtTracker.h src/internal/berryQtWidgetsTweaklet.h src/internal/berryQtWidgetsTweakletImpl.h src/internal/berryQtWorkbenchTweaklet.h src/internal/berryQtWorkbenchPageTweaklet.h src/internal/berryReopenEditorMenu.h src/internal/berryShowViewMenu.h src/internal/berrySwitchToWindowMenu.h - src/internal/berryWorkbenchPlugin.h src/internal/berryWorkbenchSourceProvider.h src/internal/defaultpresentation/berryNativeTabFolder.h src/internal/defaultpresentation/berryNativeTabItem.h src/internal/defaultpresentation/berryQCTabBar.h src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.h src/internal/dialogs/berryPerspectivesPreferencePage.h src/internal/dialogs/berrySavePerspectiveDialog.h src/internal/handlers/berryCloseAllPerspectivesHandler.h src/internal/handlers/berryClosePerspectiveHandler.h src/internal/handlers/berryDynamicHelpHandler.h src/internal/handlers/berryHelpContentsHandler.h src/internal/handlers/berryIntroHandler.h src/internal/handlers/berryNewEditorHandler.h src/internal/handlers/berryOpenInNewWindowHandler.h src/internal/handlers/berryQuitHandler.h src/internal/handlers/berryResetPerspectiveHandler.h src/internal/handlers/berrySavePerspectiveHandler.h src/internal/handlers/berryShowPerspectiveHandler.h src/internal/handlers/berryShowViewHandler.h src/internal/intro/berryEditorIntroAdapterPart.h ) set(UI_FILES src/internal/berryQtShowPerspectiveDialog.ui src/internal/berryQtShowViewDialog.ui src/internal/berryQtStylePreferencePage.ui src/internal/berryQtStatusPart.ui src/internal/dialogs/berryPerspectivesPreferencePage.ui src/internal/dialogs/berrySavePerspectiveDialog.ui ) set(QRC_FILES resources/org_blueberry_ui_qt.qrc ) set(CACHED_RESOURCE_FILES plugin.xml ) set(CPP_FILES ) foreach(file ${SRC_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/${file}) endforeach(file ${SRC_CPP_FILES}) foreach(file ${INTERNAL_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/internal/${file}) endforeach(file ${INTERNAL_CPP_FILES}) diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/Hmovetoolbar.png b/Plugins/org.blueberry.ui.qt/resources/dark/Hmovetoolbar.png new file mode 100644 index 0000000000..cead99ed10 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/Hmovetoolbar.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/Hsepartoolbar.png b/Plugins/org.blueberry.ui.qt/resources/dark/Hsepartoolbar.png new file mode 100644 index 0000000000..7f183c8b3e Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/Hsepartoolbar.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/Vmovetoolbar.png b/Plugins/org.blueberry.ui.qt/resources/dark/Vmovetoolbar.png new file mode 100644 index 0000000000..512edcecd6 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/Vmovetoolbar.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/Vsepartoolbar.png b/Plugins/org.blueberry.ui.qt/resources/dark/Vsepartoolbar.png new file mode 100644 index 0000000000..d9dc1561b4 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/Vsepartoolbar.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/branch_closed-on.png b/Plugins/org.blueberry.ui.qt/resources/dark/branch_closed-on.png new file mode 100644 index 0000000000..f2b6f35ca3 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/branch_closed-on.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/branch_closed.png b/Plugins/org.blueberry.ui.qt/resources/dark/branch_closed.png new file mode 100644 index 0000000000..0893a041aa Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/branch_closed.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/branch_open-on.png b/Plugins/org.blueberry.ui.qt/resources/dark/branch_open-on.png new file mode 100644 index 0000000000..84f0c54c54 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/branch_open-on.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/branch_open.png b/Plugins/org.blueberry.ui.qt/resources/dark/branch_open.png new file mode 100644 index 0000000000..758d7f70fc Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/branch_open.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked.png new file mode 100644 index 0000000000..12d54320e2 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked_disabled.png new file mode 100644 index 0000000000..4aea464605 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked_focus.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked_focus.png new file mode 100644 index 0000000000..f51bf61817 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_checked_focus.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate.png new file mode 100644 index 0000000000..73ff0498c6 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate_disabled.png new file mode 100644 index 0000000000..89e4bebf68 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate_focus.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate_focus.png new file mode 100644 index 0000000000..05f0b6ca0f Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_indeterminate_focus.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked.png new file mode 100644 index 0000000000..69f0c20f0e Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked_disabled.png new file mode 100644 index 0000000000..e45560cafa Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked_focus.png b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked_focus.png new file mode 100644 index 0000000000..04cecc26a1 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/checkbox_unchecked_focus.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/close-hover.png b/Plugins/org.blueberry.ui.qt/resources/dark/close-hover.png new file mode 100644 index 0000000000..657943a668 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/close-hover.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/close-pressed.png b/Plugins/org.blueberry.ui.qt/resources/dark/close-pressed.png new file mode 100644 index 0000000000..937d005983 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/close-pressed.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/close.png b/Plugins/org.blueberry.ui.qt/resources/dark/close.png new file mode 100644 index 0000000000..bc0f576109 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/close.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/down_arrow.png b/Plugins/org.blueberry.ui.qt/resources/dark/down_arrow.png new file mode 100644 index 0000000000..84f0c54c54 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/down_arrow.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/down_arrow_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/down_arrow_disabled.png new file mode 100644 index 0000000000..758d7f70fc Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/down_arrow_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/left_arrow.png b/Plugins/org.blueberry.ui.qt/resources/dark/left_arrow.png new file mode 100644 index 0000000000..c11420de75 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/left_arrow.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/left_arrow_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/left_arrow_disabled.png new file mode 100644 index 0000000000..97884ffbef Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/left_arrow_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked.png b/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked.png new file mode 100644 index 0000000000..412d3c0eda Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked_disabled.png new file mode 100644 index 0000000000..c3b48e1c76 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked_focus.png b/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked_focus.png new file mode 100644 index 0000000000..687f8992f3 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/radio_checked_focus.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked.png b/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked.png new file mode 100644 index 0000000000..0f7858f46c Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked_disabled.png new file mode 100644 index 0000000000..ed4c132e55 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked_focus.png b/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked_focus.png new file mode 100644 index 0000000000..781323da91 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/radio_unchecked_focus.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/right_arrow.png b/Plugins/org.blueberry.ui.qt/resources/dark/right_arrow.png new file mode 100644 index 0000000000..33f9b3e264 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/right_arrow.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/right_arrow_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/right_arrow_disabled.png new file mode 100644 index 0000000000..4df9151b3d Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/right_arrow_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/sizegrip.png b/Plugins/org.blueberry.ui.qt/resources/dark/sizegrip.png new file mode 100644 index 0000000000..350583aaac Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/sizegrip.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-branch-end.png b/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-branch-end.png new file mode 100644 index 0000000000..cb5d3b51f8 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-branch-end.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-branch-more.png b/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-branch-more.png new file mode 100644 index 0000000000..62711409d7 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-branch-more.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-vline.png b/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-vline.png new file mode 100644 index 0000000000..87536cce16 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/stylesheet-vline.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/tab_close_grey.svg b/Plugins/org.blueberry.ui.qt/resources/dark/tab_close_grey.svg new file mode 100644 index 0000000000..579aeb2abe --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/dark/tab_close_grey.svg @@ -0,0 +1,74 @@ + + + + + + image/svg+xml + + + + + + + + + + diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/tab_close_grey_active.svg b/Plugins/org.blueberry.ui.qt/resources/dark/tab_close_grey_active.svg new file mode 100644 index 0000000000..32dda23c66 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/dark/tab_close_grey_active.svg @@ -0,0 +1,79 @@ + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/transparent.png b/Plugins/org.blueberry.ui.qt/resources/dark/transparent.png new file mode 100644 index 0000000000..483df25137 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/transparent.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/undock.png b/Plugins/org.blueberry.ui.qt/resources/dark/undock.png new file mode 100644 index 0000000000..88691d7795 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/undock.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/up_arrow.png b/Plugins/org.blueberry.ui.qt/resources/dark/up_arrow.png new file mode 100644 index 0000000000..196e83ff32 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/up_arrow.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/dark/up_arrow_disabled.png b/Plugins/org.blueberry.ui.qt/resources/dark/up_arrow_disabled.png new file mode 100644 index 0000000000..e3c41091a9 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/dark/up_arrow_disabled.png differ diff --git a/Plugins/org.blueberry.ui.qt/resources/darkstyle-activetab.qss b/Plugins/org.blueberry.ui.qt/resources/darkstyle-activetab.qss new file mode 100644 index 0000000000..712104da92 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/darkstyle-activetab.qss @@ -0,0 +1,24 @@ +berry--QCTabBar::tab:selected +{ + background: #3399cc; + color: #1d1d1c; +} + +berry--QCTabBar QToolButton#TabCloseButton +{ + border: none; + background-color: transparent; + width: 12px; + height: 12px; +} + +berry--QCTabBar QToolButton +{ + border: none; + max-height: 32px; +} + +QFrame#ViewFormContentFrame +{ + border: 1px solid #3399cc +} diff --git a/Plugins/org.blueberry.ui.qt/resources/darkstyle-tab.qss b/Plugins/org.blueberry.ui.qt/resources/darkstyle-tab.qss new file mode 100644 index 0000000000..ea235258c9 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/darkstyle-tab.qss @@ -0,0 +1,29 @@ +berry--QCTabBar::tab:selected +{ + background: #1d1d1c; + color: #adb1b6; +} + +berry--QCTabBar::tab:selected:hover +{ + color: #3399cc; +} + +QFrame#ViewFormContentFrame +{ + border: 1px solid #1d1d1c +} + +berry--QCTabBar QToolButton +{ + border: none; + max-height: 32px; +} + +berry--QCTabBar QToolButton#TabCloseButton +{ + border: none; + background-color: transparent; + width: 12px; + height: 12px; +} diff --git a/Plugins/org.blueberry.ui.qt/resources/darkstyle.qss b/Plugins/org.blueberry.ui.qt/resources/darkstyle.qss new file mode 100644 index 0000000000..94af338f82 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/darkstyle.qss @@ -0,0 +1,1450 @@ +/*=================================================================== + +BlueBerry Platform + +Copyright (c) German Cancer Research Center, +Division of Medical and Biological Informatics. +All rights reserved. + +This software is distributed WITHOUT ANY WARRANTY; without +even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. + +See LICENSE.txt or http://www.mitk.org for details. + +===================================================================*/ +/* + * The MIT License (MIT) + * + * Copyright (c) <2013-2014> + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +/* + foregroundColor = #adb1b6 + backgroundColor = #323231 + inactiveColor = #1d1d1c + highlightColor = #3399cc + popupColor = #027c90 + warningColor = #ffb400 + borderColor = #1d1d1c +*/ + +QToolTip +{ + border: 1px solid #1d1d1c; + background-color: #323231; + color: #adb1b6; + padding: 3px; + opacity: 200; +} + +QWidget +{ + color: #adb1b6; + background-color: #323231; + selection-background-color: #3399cc; + selection-color: #1d1d1c; + background-clip: border; + border-image: none; + border: 0px transparent #1d1d1c; + outline: 0; +} + +QWidget:item:hover +{ + background-color: #3399cc; + color: #adb1b6; +} + +QWidget:item:selected +{ + background-color: #3399cc; +} + +QCheckBox +{ + spacing: 5px; + outline: none; + color: #adb1b6; + margin-bottom: 2px; +} + +QCheckBox:disabled +{ + color: #1d1d1c; +} + +QCheckBox::indicator, +QGroupBox::indicator +{ + width: 18px; + height: 30px; +} +QGroupBox::indicator +{ + margin-left: 0px; +} + +QCheckBox::indicator:unchecked +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_unchecked.png); +} + +QCheckBox::indicator:unchecked:hover, +QCheckBox::indicator:unchecked:focus, +QCheckBox::indicator:unchecked:pressed, +QGroupBox::indicator:unchecked:hover, +QGroupBox::indicator:unchecked:focus, +QGroupBox::indicator:unchecked:pressed +{ + border: none; + image: url(:/org.blueberry.ui.qt/dark/checkbox_unchecked_focus.png); +} + +QCheckBox::indicator:checked +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_checked.png); +} + +QCheckBox::indicator:checked:hover, +QCheckBox::indicator:checked:focus, +QCheckBox::indicator:checked:pressed, +QGroupBox::indicator:checked:hover, +QGroupBox::indicator:checked:focus, +QGroupBox::indicator:checked:pressed +{ + border: none; + image: url(:/org.blueberry.ui.qt/dark/checkbox_checked_focus.png); +} + + +QCheckBox::indicator:indeterminate +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_indeterminate.png); +} + +QCheckBox::indicator:indeterminate:focus, +QCheckBox::indicator:indeterminate:hover, +QCheckBox::indicator:indeterminate:pressed +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_indeterminate_focus.png); +} + +QCheckBox::indicator:checked:disabled, +QGroupBox::indicator:checked:disabled +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_checked_disabled.png); +} + +QCheckBox::indicator:unchecked:disabled, +QGroupBox::indicator:unchecked:disabled +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_unchecked_disabled.png); +} + +QRadioButton +{ + spacing: 5px; + outline: none; + color: #adb1b6; + margin-bottom: 2px; +} + +QRadioButton:disabled +{ + color: #1d1d1c; +} +QRadioButton::indicator +{ + width: 21px; + height: 21px; +} + +QRadioButton::indicator:unchecked +{ + image: url(:/org.blueberry.ui.qt/dark/radio_unchecked.png); +} + +QRadioButton::indicator:unchecked:hover, +QRadioButton::indicator:unchecked:focus, +QRadioButton::indicator:unchecked:pressed +{ + border: none; + outline: none; + image: url(:/org.blueberry.ui.qt/dark/radio_unchecked_focus.png); +} + +QRadioButton::indicator:checked +{ + border: none; + outline: none; + image: url(:/org.blueberry.ui.qt/dark/radio_checked.png); +} + +QRadioButton::indicator:checked:hover, +QRadioButton::indicator:checked:focus, +QRadioButton::indicator:checked:pressed +{ + border: none; + outline: none; + image: url(:/org.blueberry.ui.qt/dark/radio_checked_focus.png); +} + +QRadioButton::indicator:checked:disabled +{ + outline: none; + image: url(:/org.blueberry.ui.qt/dark/radio_checked_disabled.png); +} + +QRadioButton::indicator:unchecked:disabled +{ + image: url(:/org.blueberry.ui.qt/dark/radio_unchecked_disabled.png); +} + +QMenuBar +{ + background-color: #323231; + color: #adb1b6; +} + +QMenuBar::item +{ + background: transparent; +} + +QMenuBar::item:selected +{ + background: transparent; + border: 1px solid #1d1d1c; +} + +QMenuBar::item:pressed +{ + border: 1px solid #1d1d1c; + background-color: #3399cc; + color: #adb1b6; + margin-bottom:-1px; + padding-bottom:1px; +} + +QMenu +{ + border: 1px solid #1d1d1c; + color: #adb1b6; + margin: 2px; +} + +QMenu::icon +{ + margin: 5px; +} + +QMenu::item +{ + padding: 5px 30px 5px 30px; + margin-left: 5px; + border: 1px solid transparent; /* leave some space for selection border */ +} + +QMenu::item:selected +{ + color: #adb1b6; +} + +QMenu::separator +{ + height: 2px; + background: #3399cc; + margin-left: 10px; + margin-right: 5px; +} + +QMenu::indicator +{ + width: 18px; + height: 18px; +} + +/* non-exclusive indicator = check box style indicator + (see QActionGroup::setExclusive) */ +QMenu::indicator:non-exclusive:unchecked +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_unchecked.png); +} + +QMenu::indicator:non-exclusive:unchecked:selected +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_unchecked_disabled.png); +} + +QMenu::indicator:non-exclusive:checked +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_checked.png); +} + +QMenu::indicator:non-exclusive:checked:selected +{ + image: url(:/org.blueberry.ui.qt/dark/checkbox_checked_disabled.png); +} + +/* exclusive indicator = radio button style indicator (see QActionGroup::setExclusive) */ +QMenu::indicator:exclusive:unchecked { + image: url(:/org.blueberry.ui.qt/dark/radio_unchecked.png); +} + +QMenu::indicator:exclusive:unchecked:selected { + image: url(:/org.blueberry.ui.qt/dark/radio_unchecked_disabled.png); +} + +QMenu::indicator:exclusive:checked +{ + image: url(:/org.blueberry.ui.qt/dark/radio_checked.png); +} + +QMenu::indicator:exclusive:checked:selected +{ + image: url(:/org.blueberry.ui.qt/dark/radio_checked_disabled.png); +} + +QMenu::right-arrow +{ + margin: 5px; + image: url(:/org.blueberry.ui.qt/dark/right_arrow.png) +} + +QWidget:disabled +{ + color: #1d1d1c; + background-color: #323231; +} + +QAbstractItemView +{ + alternate-background-color: #323231; + color: #adb1b6; + border: 1px solid 3A3939; + border-radius: 0px; +} + +QWidget:focus, +QMenuBar:focus +{ + border: 1px solid #3399cc; +} + +QTabWidget:focus, +QCheckBox:focus, +QRadioButton:focus, +QSlider:focus +{ + border: none; +} + +QLineEdit +{ + background-color: #1d1d1c; + padding: 2px; + border-style: solid; + border: 1px solid #1d1d1c; + border-radius: 0px; + color: #adb1b6; +} + +QGroupBox +{ + border:1px solid #323231; + border-radius: 0px; + padding-top: 24px; + font-weight: bold; +} + +QGroupBox::title +{ + border:1px solid #323231; + border-right:0px; + border-bottom:0px; + subcontrol-position: top left; + subcontrol-origin: margin; + padding: 1px; +} + +QAbstractScrollArea +{ + border-radius: 0px; + border: 1px solid #1d1d1c; + background-color: #323231; +} + +QScrollBar:horizontal +{ + height: 15px; + margin: 3px 15px 3px 15px; + border: 1px transparent #1d1d1c; + border-radius: 0px; + background-color: #1d1d1c; +} + +QScrollBar::handle:horizontal +{ + background-color: #323231; + border: 2px solid #1d1d1c; + min-width: 5px; + border-radius: 0px; +} + +QScrollBar::add-line:horizontal +{ + margin: 0px 3px 0px 3px; + border-image: url(:/org.blueberry.ui.qt/dark/right_arrow_disabled.png); + width: 10px; + height: 10px; + subcontrol-position: right; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:horizontal +{ + margin: 0px 3px 0px 3px; + border-image: url(:/org.blueberry.ui.qt/dark/left_arrow_disabled.png); + height: 10px; + width: 10px; + subcontrol-position: left; + subcontrol-origin: margin; +} + +QScrollBar::add-line:horizontal:hover, +QScrollBar::add-line:horizontal:on +{ + border-image: url(:/org.blueberry.ui.qt/dark/right_arrow.png); + height: 10px; + width: 10px; + subcontrol-position: right; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:horizontal:hover, +QScrollBar::sub-line:horizontal:on +{ + border-image: url(:/org.blueberry.ui.qt/dark/left_arrow.png); + height: 10px; + width: 10px; + subcontrol-position: left; + subcontrol-origin: margin; +} + +QScrollBar::up-arrow:horizontal, +QScrollBar::down-arrow:horizontal +{ + background: none; +} + + +QScrollBar::add-page:horizontal, +QScrollBar::sub-page:horizontal +{ + background: none; +} + +QScrollBar:vertical +{ + background-color: #1d1d1c; + width: 15px; + margin: 15px 2px 15px 2px; + border: 1px transparent #1d1d1c; + border-radius: 0px; +} + +QScrollBar::handle:vertical +{ + background-color: #323231; + border: 2px solid #1d1d1c; + min-height: 5px; + border-radius: 0px; +} + +QScrollBar::sub-line:vertical +{ + margin: 3px 0px 3px 0px; + border-image: url(:/org.blueberry.ui.qt/dark/up_arrow_disabled.png); + height: 10px; + width: 10px; + subcontrol-position: top; + subcontrol-origin: margin; +} + +QScrollBar::add-line:vertical +{ + margin: 3px 0px 3px 0px; + border-image: url(:/org.blueberry.ui.qt/dark/down_arrow_disabled.png); + height: 10px; + width: 10px; + subcontrol-position: bottom; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:vertical:hover, +QScrollBar::sub-line:vertical:on +{ + border-image: url(:/org.blueberry.ui.qt/dark/up_arrow.png); + height: 10px; + width: 10px; + subcontrol-position: top; + subcontrol-origin: margin; +} + + +QScrollBar::add-line:vertical:hover, +QScrollBar::add-line:vertical:on +{ + border-image: url(:/org.blueberry.ui.qt/dark/down_arrow.png); + height: 10px; + width: 10px; + subcontrol-position: bottom; + subcontrol-origin: margin; +} + +QScrollBar::up-arrow:vertical, +QScrollBar::down-arrow:vertical +{ + background: none; +} + + +QScrollBar::add-page:vertical, +QScrollBar::sub-page:vertical +{ + background: none; +} + +QTextEdit +{ + background-color: #1d1d1c; + color: #adb1b6; + border: 1px solid #1d1d1c; +} + +QPlainTextEdit +{ + background-color: #1d1d1c;; + color: #adb1b6; + border-radius: 0px; + border: 1px solid #1d1d1c; +} + +QHeaderView::section +{ + background-color: #1d1d1c; + color: #adb1b6; + padding: 5px; + border: 1px solid #1d1d1c; +} + +QSizeGrip +{ + image: url(:/org.blueberry.ui.qt/dark/sizegrip.png); + width: 12px; + height: 12px; +} + + +QMainWindow::separator +{ + background-color: #323231; + color: #adb1b6; + padding-left: 4px; + spacing: 2px; + border: 1px dashed #1d1d1c; +} + +QMainWindow::separator:hover +{ + background-color: #adb1b6; + color: #adb1b6; + padding-left: 4px; + border: 1px solid #1d1d1c; + spacing: 2px; +} + + +QMenu::separator +{ + height: 1px; + background-color: #1d1d1c; + color: #adb1b6; + padding-left: 4px; + margin-left: 10px; + margin-right: 5px; +} + + +QFrame +{ + border-radius: 0px; + border: 1px solid #1d1d1c; +} + +QFrame[frameShape="0"] +{ + border-radius: 0px; + border: 1px transparent #1d1d1c; +} + +QStackedWidget +{ + border: 1px transparent #1d1d1c; +} + +QToolBar +{ + border: 1px transparent #393838; + background: 1px solid #323231; + font-weight: bold; +} + +/* this fixes the size of the plugin icons in the toolbar */ +QToolBar QToolButton +{ + background-color: #323231; + border: 1px solid #323231; + border-radius: 0px; + min-width: 30px; + min-height: 30px; + margin: 0px; + padding: 0px; +} + +QToolBar::handle:horizontal +{ + image: url(:/org.blueberry.ui.qt/dark/Hmovetoolbar.png); +} +QToolBar::handle:vertical +{ + image: url(:/org.blueberry.ui.qt/dark/Vmovetoolbar.png); +} +QToolBar::separator:horizontal +{ + image: url(:/org.blueberry.ui.qt/dark/Hsepartoolbar.png); +} +QToolBar::separator:vertical +{ + image: url(:/org.blueberry.ui.qt/dark/Vsepartoolbar.png); +} + +QToolButton +{ + background-color: #323231; + border: 1px solid #323231; + border-radius: 0px; + min-width: 12px; + min-height: 12px; + margin: 0px; + padding: 0px; +} + +/* only for MenuButtonPopup */ +QToolButton[popupMode="1"] +{ + border: 0px solid #1d1d1c; +} + +/* only for InstantPopup */ +QToolButton[popupMode="2"] +{ + border: 0px solid #1d1d1c; +} + +/* this fixes the size of the standard icons in the toolbar */ +QToolButton:hover, +QToolButton::menu-button:hover +{ + background-color: #323231; + border: 1px solid #3399cc; + min-width: 30px; + min-height: 30px; + margin: 0px; + padding: 0px; +} + +/* TODO what is this and do we need it */ +QToolButton#qt_toolbar_ext_button +{ + background: #58595a +} + +QPushButton +{ + color: #adb1b6; + background-color: #323231; + min-width: 68px; + border-width: 1px; + border-color: #1d1d1c; + border-style: solid; + padding: 3px; + border-radius: 0px; + outline: none; +} + +QPushButton:disabled +{ + background-color: #1d1d1c; + color: #323231; +} + +QPushButton:focus +{ + color: #3399cc; + border-color: #3399cc; + border-style: solid; + border-width: 1px; +} + +QPushButton:pressed +{ + background-color: #3399cc; + color: #1d1d1c; + padding-top: -15px; + padding-bottom: -17px; + border-width: 1px; + border-color: #1d1d1c; +} + +QComboBox +{ + selection-background-color: #3399cc; + selection-color: #1d1d1c; + border: 1px solid #1d1d1c; + border-radius: 0px; + padding: 3px; + min-width: 75px; +} + +QPushButton:checked{ + background-color: #1d1d1c; + border-color: #adb1b6; +} + +QComboBox:hover, +QAbstractSpinBox:hover, +QLineEdit:hover, +QTextEdit:hover, +QPlainTextEdit:hover, +QAbstractView:hover +{ + border: 1px solid #3399cc; + color: #adb1b6; +} + +QPushButton:hover,QTreeView:hover +{ + border: 1px solid #1d1d1c; + color: #3399cc; +} + +QComboBox QAbstractItemView +{ + background-color: #323231; + border-radius: 0px; + border: 1px solid #1d1d1c; + selection-background-color: #3399cc; + selection-color: #adb1b6; +} + +QComboBox:on +{ + padding-top: 3px; + padding-left: 3px; + selection-background-color: #3399cc; + color: #adb1b6; + selection-color: #adb1b6; +} + +QComboBox::drop-down +{ + subcontrol-origin: padding; + subcontrol-position: top right; + min-width: 15px; + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +QComboBox::down-arrow +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow_disabled.png); +} + +QComboBox::down-arrow:on, +QComboBox::down-arrow:hover, +QComboBox::down-arrow:focus +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow.png); +} + +QAbstractSpinBox +{ + border: 1px solid #1d1d1c; + background-color: #1d1d1c; + padding-top: 1px; + padding-bottom: 1px; + color: #adb1b6; + border-radius: 0px; + min-width: 50px; +} + +QAbstractSpinBox:up-button +{ + border: 2px transparent #1d1d1c; + background-color: #323231; + subcontrol-origin: border; + subcontrol-position: top right; + padding-top: 1px; + margin-bottom: 1px; + margin-top: 2px; + margin-right: 2px; + margin-left: 2px; +} + +QAbstractSpinBox:down-button +{ + border: 2px transparent #1d1d1c; + background-color: #323231; + subcontrol-origin: border; + subcontrol-position: bottom right; + padding-bottom: 0px; + margin-bottom: 2px; + margin-top: 1px; + margin-right: 2px; + margin-left: 2px; +} + +QAbstractSpinBox::up-arrow,QAbstractSpinBox::up-arrow:disabled,QAbstractSpinBox::up-arrow:off +{ + image: url(:/org.blueberry.ui.qt/dark/up_arrow_disabled.png); + width: 10px; + height: 10px; +} + +QAbstractSpinBox::up-arrow:hover +{ + image: url(:/org.blueberry.ui.qt/dark/up_arrow.png); +} + +QAbstractSpinBox::down-arrow,QAbstractSpinBox::down-arrow:disabled,QAbstractSpinBox::down-arrow:off +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow_disabled.png); + width: 10px; + height: 10px; +} + +QAbstractSpinBox::down-arrow:hover +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow.png); +} + +QLabel +{ + border: 0px solid #1d1d1c; +} + +QTabWidget{ + border: 1px transparent #1d1d1c; +} + +QTabWidget::pane +{ + border: 1px solid #1d1d1c; + padding: 2px; + margin: 0px; +} + +/* TABS IN GENERAL */ +QTabBar +{ + qproperty-drawBase: 0; + left: 0px; + border-radius: 0px; + border: 1px trasparent #1d1d1c; +} + +QTabBar:focus +{ + border: 1px solid #1d1d1c; +} + +QTabBar::close-button +{ + image: url(:/org.blueberry.ui.qt/dark/tab_close_grey.svg); + background: transparent; +} + +QTabBar::close-button:hover +{ + image: url(:/org.blueberry.ui.qt/dark/tab_close_grey.svg); + background: transparent; +} + +QTabBar::close-button:pressed { + image: url(:/org.blueberry.ui.qt/dark/tab_close_grey.svg); + background: transparent; +} + +QTabBar::tab:right:!selected:hover +{ + color: #3399cc; +} + +QTabBar QToolButton::right-arrow:enabled +{ + image: url(:/org.blueberry.ui.qt/dark/right_arrow.png); +} + +QTabBar QToolButton::left-arrow:enabled +{ + image: url(:/org.blueberry.ui.qt/dark/left_arrow.png); +} + +QTabBar QToolButton::right-arrow:disabled +{ + image: url(:/org.blueberry.ui.qt/dark/right_arrow_disabled.png); +} + +QTabBar QToolButton::left-arrow:disabled +{ + image: url(:/org.blueberry.ui.qt/dark/left_arrow_disabled.png); +} + +QTabBar::scroller +{ + margin: 0px; + padding: 0px; +} + +/* TOP TABS */ +QTabBar::tab:top +{ + font-weight: bold; + color: #adb1b6; + border: 0px solid #1d1d1c; + background-color: #1d1d1c; + padding: 5px; + min-width: 50px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; +} + +QTabBar::tab:top:!selected +{ + color: #adb1b6; + font-weight: normal; + background-color: #323231; + border: 0px solid #1d1d1c; + border-top-left-radius: 0px; + border-top-right-radius: 0px; +} + +QTabBar::tab:top:!selected:hover +{ + color: #3399cc; +} + +/* BOTTOM TABS */ +QTabBar::tab:bottom +{ + font-weight: bold; + color: #adb1b6; + border: 0px solid #1d1d1c; + background-color: #1d1d1c; + padding: 5px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + min-width: 50px; +} + +QTabBar::tab:bottom:!selected +{ + color: #adb1b6; + font-weight: normal; + background-color: #323231; + border: 0px solid #1d1d1c; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} + +QTabBar::tab:bottom:!selected:hover +{ + color: #3399cc; +} + +/* LEFT TABS */ +QTabBar::tab:left +{ + color: #adb1b6; + font-weight: bold; + border: 0px solid #1d1d1c; + background-color: #1d1d1c; + padding: 5px; + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + min-height: 50px; +} + +QTabBar::tab:left:!selected +{ + color: #adb1b6; + font-weight: normal; + background-color: #323231; + border: 0px solid #1d1d1c; + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +QTabBar::tab:left:!selected:hover +{ + color: #3399cc; +} + +/* RIGHT TABS */ +QTabBar::tab:right +{ + color: #adb1b6; + font-weight: bold; + border: 0px solid #1d1d1c; + background-color: #1d1d1c; + padding: 5px; + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + min-height: 50px; +} + +QTabBar::tab:right:!selected +{ + color: #adb1b6; + font-weight: normal; + background-color: #323231; + border: 0px solid #1d1d1c; + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} + +/* TODO check if #403F3F is nice */ +QDockWidget +{ + background: #323231; + border: 1px solid #403F3F; + titlebar-close-icon: url(:/org.blueberry.ui.qt/dark/tab_close_grey.svg); + titlebar-normal-icon: url(:/org.blueberry.ui.qt/dark/undock.png); +} + +QDockWidget::close-button, QDockWidget::float-button +{ + border: 1px solid transparent; + border-radius: 0px; + background: transparent; +} + +/* TODO check if rgba(255, 255, 255, 10) is nice */ +QDockWidget::close-button:hover, +QDockWidget::float-button:hover +{ + background: rgba(255, 255, 255, 10); +} + +QDockWidget::close-button:pressed, +QDockWidget::float-button:pressed +{ + padding: 1px -1px -1px 1px; + background: rgba(255, 255, 255, 10); +} + +QTreeView, QListView +{ + border: 1px solid #1d1d1c; + background-color: #1d1d1c; +} + +QTreeView:branch:selected, +QTreeView:branch:hover +{ + background: url(:/org.blueberry.ui.qt/dark/transparent.png); +} + +QTreeView::branch:has-siblings:!adjoins-item +{ + border-image: url(:/org.blueberry.ui.qt/dark/transparent.png); +} + +QTreeView::branch:has-siblings:adjoins-item +{ + border-image: url(:/org.blueberry.ui.qt/dark/transparent.png); +} + +QTreeView::branch:!has-children:!has-siblings:adjoins-item +{ + border-image: url(:/org.blueberry.ui.qt/dark/transparent.png); +} + +QTreeView::branch:has-children:!has-siblings:closed, +QTreeView::branch:closed:has-children:has-siblings +{ + image: url(:/org.blueberry.ui.qt/dark/branch_closed.png); +} + +QTreeView::branch:open:has-children:!has-siblings, +QTreeView::branch:open:has-children:has-siblings +{ + image: url(:/org.blueberry.ui.qt/dark/branch_open.png); +} + +QTreeView::branch:has-children:!has-siblings:closed:hover, +QTreeView::branch:closed:has-children:has-siblings:hover +{ + image: url(:/org.blueberry.ui.qt/dark/branch_closed-on.png); +} + +QTreeView::branch:open:has-children:!has-siblings:hover, +QTreeView::branch:open:has-children:has-siblings:hover +{ + image: url(:/org.blueberry.ui.qt/dark/branch_open-on.png); +} + +QListView::item:!selected:hover, +QTreeView::item:!selected:hover +{ + background: #323231; + outline: 0; + color: #adb1b6 +} + +QListView::item:selected:hover, +QTreeView::item:selected:hover +{ + background: #3399cc; + color: #adb1b6; +} + +QSlider::groove:horizontal +{ + border: 1px solid #1d1d1c; + height: 3px; + background: #1d1d1c; + margin: 0px; + border-radius: 0px; +} + +QSlider::handle:horizontal +{ + background: #adb1b6; + border: 1px solid #1d1d1c; + width: 7px; + height: 16px; + margin: -8px 0; + border-radius: 0px; +} + +QSlider::groove:vertical +{ + border: 1px solid #1d1d1c; + width: 3px; + background: #1d1d1c; + margin: 0px; + border-radius: 0px; +} + +QSlider::handle:vertical +{ + background: #adb1b6; + border: 1px solid #1d1d1c; + width: 16px; + height: 7px; + margin: 0 -8px; + border-radius: 0px; +} + +QmitkRenderWindowMenu +{ + background-color: transparent; +} + +/* this fixes the size of the icons in the stdMultiWidget */ +QmitkRenderWindowMenu QToolButton, +QmitkRenderWindowMenu QToolButton::menu-button { + background-color: transparent; + border: 0px solid #1d1d1c; + border-radius: 0px; + width: 15px; + height: 15px; + margin: 1px; + padding: 0px; +} + +QmitkRenderWindowMenu QToolButton:hover, +QmitkRenderWindowMenu QToolButton::menu-button:hover +{ + background-color: #adb1b6; + border: 0px solid #3399cc; + width: 15px; + height: 15px; + margin: 1px; + padding: 0px; +} + +QToolButton:checked, +QToolButton:pressed, +QToolButton::menu-button:pressed +{ + color: #3399cc; + border: 1px solid #3399cc; + padding: 0px; +} + +/* the subcontrol below is used only in the InstantPopup or DelayedPopup mode */ +QToolButton::menu-indicator +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow.png); + top: -7px; left: -2px; /* shift it a bit */ +} + +/* the subcontrols below are used only in the MenuButtonPopup mode */ +QToolButton::menu-button +{ + border: 1px transparent #1d1d1c; + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + /* 16px width + 4px for border = 20px allocated above */ + width: 16px; + outline: none; +} + +QToolButton::menu-arrow +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow.png); +} + +QToolButton::menu-arrow:open +{ + border: 1px solid #1d1d1c; +} + +QPushButton::menu-indicator +{ + subcontrol-origin: padding; + subcontrol-position: bottom right; + left: 8px; +} + +QTableView +{ + border: 1px solid #1d1d1c; + gridline-color: #323231; + background-color: #1d1d1c; +} + + +QTableView, QHeaderView +{ + border-radius: 0px; +} + +QTableView::item:pressed, QListView::item:pressed, QTreeView::item:pressed +{ + background: #3399cc; + color: #1d1d1c; +} + +QTableView::item:selected:active, QTreeView::item:selected:active, QListView::item:selected:active +{ + background: #3399cc; + color: #1d1d1c; +} + + +QHeaderView +{ + background-color: #323231; + border: 1px transparent; + border-radius: 0px; + margin: 0px; + padding: 0px; +} + +QHeaderView::section +{ + background-color: #323231; + color: #adb1b6; + padding: 5px; + border: 1px solid #1d1d1c; + border-radius: 0px; + text-align: left; +} + +QHeaderView::section::vertical::first, QHeaderView::section::vertical::only-one +{ + border-top: 1px solid #1d1d1c; +} + +QHeaderView::section::vertical +{ + border-top: transparent; +} + +QHeaderView::section::horizontal::first, QHeaderView::section::horizontal::only-one +{ + border-left: 1px solid #1d1d1c; +} + +QHeaderView::section::horizontal +{ + border-left: transparent; +} + +QHeaderView::section:checked +{ + color: #adb1b6; + background-color: #323231; +} + +/* sort indicator */ +QHeaderView::down-arrow +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow.png); +} + +QHeaderView::up-arrow +{ + image: url(:/org.blueberry.ui.qt/dark/up_arrow.png); +} + + +QTableCornerButton::section +{ + background-color: #323231; + border: 1px transparent #1d1d1c; + border-radius: 0px; +} + +QToolBox +{ + color: #adb1b6; + background-color: #323231; + padding: 5px; + border: 1px transparent #1d1d1c; +} + +QToolBox::tab +{ + color: #adb1b6; + background-color: #323231; + border: 1px solid #1d1d1c; + border-bottom: 1px transparent #323231; + border-top-left-radius: 0px; + border-top-right-radius: 0px; +} + +QToolBox::tab:selected +{ + background-color: #323231; + border-color: #3399cc; +} + +QStatusBar::item +{ + border: 0px transparent #1d1d1c; +} + +QSplitter::handle +{ + border: 1px dashed #1d1d1c; +} + +QSplitter::handle:hover +{ + background-color: #adb1b6; + border: 1px solid #1d1d1c; +} + +QSplitter::handle:horizontal +{ + width: 1px; +} + +QSplitter::handle:vertical +{ + height: 1px; +} + +QProgressBar +{ + border: 1px solid #1d1d1c; + border-radius: 0px; + text-align: center; +} + +QProgressBar::chunk +{ + background-color: #3399cc; +} + +QDateEdit +{ + selection-background-color: #3399cc; + selection-color: #1d1d1c; + border: 1px solid #1d1d1c; + border-radius: 0px; + padding: 1px; + min-width: 75px; +} + +QDateEdit:on +{ + padding-top: 3px; + padding-left: 4px; +} + +QDateEdit QAbstractItemView +{ + background-color: #1d1d1c; + border-radius: 0px; + border: 1px solid #1d1d1c; + selection-background-color: #3399cc; + selection-color: #1d1d1c; +} + +QDateEdit::drop-down +{ + subcontrol-origin: padding; + subcontrol-position: top right; + width: 15px; + border-left-width: 0px; + border-left-color: darkgray; + border-left-style: solid; + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +QDateEdit::down-arrow +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow_disabled.png); +} + +QDateEdit::down-arrow:on, QDateEdit::down-arrow:hover, +QDateEdit::down-arrow:focus +{ + image: url(:/org.blueberry.ui.qt/dark/down_arrow.png); +} diff --git a/Plugins/org.blueberry.ui.qt/resources/defaultstyle-tab.qss b/Plugins/org.blueberry.ui.qt/resources/defaultstyle-tab.qss index b5dc8637e3..99bee4779a 100644 --- a/Plugins/org.blueberry.ui.qt/resources/defaultstyle-tab.qss +++ b/Plugins/org.blueberry.ui.qt/resources/defaultstyle-tab.qss @@ -1,7 +1,7 @@ berry--QCTabBar::tab:selected { background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 palette(light), stop:1 palette(window)); } QFrame#ViewFormContentFrame { border: 2px solid palette(window) -} \ No newline at end of file +} diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/FiraSans/FiraSans.ttf b/Plugins/org.blueberry.ui.qt/resources/fonts/FiraSans/FiraSans.ttf new file mode 100644 index 0000000000..f05e2f68af Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/fonts/FiraSans/FiraSans.ttf differ diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/FiraSans/OFL.txt b/Plugins/org.blueberry.ui.qt/resources/fonts/FiraSans/OFL.txt new file mode 100644 index 0000000000..4f9e17ed29 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/fonts/FiraSans/OFL.txt @@ -0,0 +1,92 @@ +Copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A. +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/LightFiraSans/LightFiraSans.ttf b/Plugins/org.blueberry.ui.qt/resources/fonts/LightFiraSans/LightFiraSans.ttf new file mode 100644 index 0000000000..6378d81625 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/fonts/LightFiraSans/LightFiraSans.ttf differ diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/LightFiraSans/OFL.txt b/Plugins/org.blueberry.ui.qt/resources/fonts/LightFiraSans/OFL.txt new file mode 100644 index 0000000000..4f9e17ed29 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/fonts/LightFiraSans/OFL.txt @@ -0,0 +1,92 @@ +Copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A. +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/OpenSans/OpenSans-Regular.ttf b/Plugins/org.blueberry.ui.qt/resources/fonts/OpenSans/OpenSans-Regular.ttf new file mode 100644 index 0000000000..db433349b7 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/fonts/OpenSans/OpenSans-Regular.ttf differ diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/Roboto/LICENSE.txt b/Plugins/org.blueberry.ui.qt/resources/fonts/Roboto/LICENSE.txt new file mode 100644 index 0000000000..75b52484ea --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/fonts/Roboto/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/Roboto/Roboto.ttf b/Plugins/org.blueberry.ui.qt/resources/fonts/Roboto/Roboto.ttf new file mode 100644 index 0000000000..8c082c8de0 Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/fonts/Roboto/Roboto.ttf differ diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/xkcd/license.txt b/Plugins/org.blueberry.ui.qt/resources/fonts/xkcd/license.txt new file mode 100644 index 0000000000..7f182a3bf3 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/fonts/xkcd/license.txt @@ -0,0 +1,335 @@ +Creative Commons Legal Code + +Attribution-NonCommercial 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE +COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY +COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS +AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE +TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY +BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS +CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND +CONDITIONS. + +1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + d. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + e. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + f. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + g. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + h. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + i. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + +2. Fair Dealing Rights. Nothing in this License is intended to reduce, +limit, or restrict any uses free from copyright or rights arising from +limitations or exceptions that are provided for in connection with the +copyright protection under copyright law or other applicable laws. + +3. License Grant. Subject to the terms and conditions of this License, +Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +perpetual (for the duration of the applicable copyright) license to +exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + +The above rights may be exercised in all media and formats whether now +known or hereafter devised. The above rights include the right to make +such modifications as are technically necessary to exercise the rights in +other media and formats. Subject to Section 8(f), all rights not expressly +granted by Licensor are hereby reserved, including but not limited to the +rights set forth in Section 4(d). + +4. Restrictions. The license granted in Section 3 above is expressly made +subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(c), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(c), as requested. + b. You may not exercise any of the rights granted to You in Section 3 + above in any manner that is primarily intended for or directed toward + commercial advantage or private monetary compensation. The exchange of + the Work for other copyrighted works by means of digital file-sharing + or otherwise shall not be considered to be intended for or directed + toward commercial advantage or private monetary compensation, provided + there is no payment of any monetary compensation in connection with + the exchange of copyrighted works. + c. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and, (iv) consistent with Section 3(b), in the case of an Adaptation, + a credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4(c) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, at + a minimum such credit will appear, if a credit for all contributing + authors of the Adaptation or Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + d. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor reserves + the exclusive right to collect such royalties for any exercise by + You of the rights granted under this License if Your exercise of + such rights is for a purpose or use which is otherwise than + noncommercial as permitted under Section 4(b) and otherwise waives + the right to collect royalties through any statutory or compulsory + licensing scheme; and, + iii. Voluntary License Schemes. The Licensor reserves the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License that is for a + purpose or use which is otherwise than noncommercial as permitted + under Section 4(c). + e. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR +OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY +KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, +INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, +FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF +LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, +WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION +OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE +LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR +ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES +ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS +BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + +8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + +Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of the License. + + Creative Commons may be contacted at http://creativecommons.org/. + diff --git a/Plugins/org.blueberry.ui.qt/resources/fonts/xkcd/xkcd.ttf b/Plugins/org.blueberry.ui.qt/resources/fonts/xkcd/xkcd.ttf new file mode 100644 index 0000000000..f0eeaeecab Binary files /dev/null and b/Plugins/org.blueberry.ui.qt/resources/fonts/xkcd/xkcd.ttf differ diff --git a/Plugins/org.blueberry.ui.qt/resources/org_blueberry_ui_qt.qrc b/Plugins/org.blueberry.ui.qt/resources/org_blueberry_ui_qt.qrc index 682ff1a2a0..7e040eb212 100755 --- a/Plugins/org.blueberry.ui.qt/resources/org_blueberry_ui_qt.qrc +++ b/Plugins/org.blueberry.ui.qt/resources/org_blueberry_ui_qt.qrc @@ -1,18 +1,67 @@ - - cursor_bottom.xpm - cursor_center.xpm - cursor_left.xpm - cursor_offscreen.xpm - cursor_right.xpm - cursor_top.xpm - dialog-error.svg - icon_missing.png - tab_close_icon.png - tab_close_icon-active.png - - defaultstyle.qss - defaultstyle-activetab.qss - defaultstyle-tab.qss - - + + cursor_bottom.xpm + cursor_center.xpm + cursor_left.xpm + cursor_offscreen.xpm + cursor_right.xpm + cursor_top.xpm + dialog-error.svg + icon_missing.png + tab_close_grey.svg + tab_close_grey_active.svg + + defaultstyle.qss + defaultstyle-activetab.qss + defaultstyle-tab.qss + + dark/up_arrow_disabled.png + dark/Hmovetoolbar.png + dark/stylesheet-branch-end.png + dark/branch_closed-on.png + dark/stylesheet-vline.png + dark/branch_closed.png + dark/branch_open-on.png + dark/transparent.png + dark/right_arrow_disabled.png + dark/sizegrip.png + dark/tab_close_grey.svg + dark/tab_close_grey_active.svg + dark/down_arrow.png + dark/Vmovetoolbar.png + dark/left_arrow.png + dark/stylesheet-branch-more.png + dark/up_arrow.png + dark/right_arrow.png + dark/left_arrow_disabled.png + dark/Hsepartoolbar.png + dark/branch_open.png + dark/Vsepartoolbar.png + dark/down_arrow_disabled.png + dark/undock.png + dark/checkbox_checked_disabled.png + dark/checkbox_checked_focus.png + dark/checkbox_checked.png + dark/checkbox_indeterminate.png + dark/checkbox_indeterminate_focus.png + dark/checkbox_unchecked_disabled.png + dark/checkbox_unchecked_focus.png + dark/checkbox_unchecked.png + dark/radio_checked_disabled.png + dark/radio_checked_focus.png + dark/radio_checked.png + dark/radio_unchecked_disabled.png + dark/radio_unchecked_focus.png + dark/radio_unchecked.png + + darkstyle.qss + darkstyle-tab.qss + darkstyle-activetab.qss + + fonts/FiraSans/FiraSans.ttf + fonts/LightFiraSans/LightFiraSans.ttf + fonts/Roboto/Roboto.ttf + fonts/OpenSans/OpenSans-Regular.ttf + fonts/xkcd/xkcd.ttf + + diff --git a/Plugins/org.blueberry.ui.qt/resources/tab_close_grey.svg b/Plugins/org.blueberry.ui.qt/resources/tab_close_grey.svg new file mode 100644 index 0000000000..509788d4f1 --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/tab_close_grey.svg @@ -0,0 +1,79 @@ + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/Plugins/org.blueberry.ui.qt/resources/tab_close_grey_active.svg b/Plugins/org.blueberry.ui.qt/resources/tab_close_grey_active.svg new file mode 100644 index 0000000000..2ebf9d201d --- /dev/null +++ b/Plugins/org.blueberry.ui.qt/resources/tab_close_grey_active.svg @@ -0,0 +1,79 @@ + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.cpp index a6386da4f6..d51b5aec7a 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.cpp @@ -1,730 +1,730 @@ /*=================================================================== BlueBerry Platform Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #include "berryCommandContributionItem.h" #include "berryIMenuService.h" #include "berryICommandService.h" #include "berryICommandImageService.h" #include "berryIContributionManager.h" #include "berryIElementReference.h" #include "berryIElementUpdater.h" #include "berryUIElement.h" #include #include #include #include #include #include #include #include #include "../berryDisplay.h" #include "../berryAsyncRunnable.h" #include "../handlers/berryIHandlerService.h" #include "../services/berryIServiceLocator.h" -#include "../internal/berryWorkbenchPlugin.h" +#include "../berryWorkbenchPlugin.h" #include #include #include #include #include namespace berry { ContributionItem::Modes CommandContributionItem::modes = ContributionItem::MODE_FORCE_TEXT; //class CommandUIElementListener : public IUIElementListener //{ //private: // CommandContributionItem* item; // public: // CommandUIElementListener(CommandContributionItem* item); // void UIElementDisposed(UIElement* item); //void UIElementSelected(SmartPointer item); //}; CommandContributionItem::CommandContributionItem( const SmartPointer& contributionParameters) : ContributionItem(contributionParameters->id) , action(nullptr) , checkedState(false) { this->icon = contributionParameters->icon; this->label = contributionParameters->label; this->mnemonic = contributionParameters->mnemonic; this->shortcut = contributionParameters->shortcut; this->tooltip = contributionParameters->tooltip; this->style = contributionParameters->style; this->helpContextId = contributionParameters->helpContextId; this->visibleEnabled = contributionParameters->visibleEnabled; this->mode = contributionParameters->mode; menuService = contributionParameters->serviceLocator->GetService(); commandService = contributionParameters->serviceLocator->GetService(); handlerService = contributionParameters->serviceLocator->GetService(); // bindingService = (IBindingService) contributionParameters.serviceLocator // .getService(IBindingService.class); this->CreateCommand(contributionParameters->commandId, contributionParameters->parameters); if (command) { try { class CommandUIElement : public UIElement { private: CommandContributionItem* item; public: CommandUIElement(CommandContributionItem* item, IServiceLocator* serviceLocator) : UIElement(serviceLocator), item(item) {} void SetText(const QString& text) override { item->SetText(text); } void SetToolTip(const QString& text) override { item->SetToolTip(text); } void SetIcon(const QIcon& icon) override { item->SetIcon(icon); } void SetChecked(bool checked) override { item->SetChecked(checked); } void SetDropDownId(const QString& id) override { item->dropDownMenuOverride = id; } }; UIElement::Pointer callback(new CommandUIElement(this, contributionParameters->serviceLocator)); elementRef = commandService->RegisterElementForCommand(command, callback); command->GetCommand()->AddCommandListener(this->GetCommandListener()); this->SetImages(contributionParameters->serviceLocator, contributionParameters->iconStyle); if (contributionParameters->helpContextId.isEmpty()) { try { this->helpContextId = commandService->GetHelpContextId( contributionParameters->commandId); } catch (const NotDefinedException& /*e*/) { // it's OK to not have a helpContextId } } // IWorkbenchLocationService::Pointer wls = contributionParameters.serviceLocator // ->GetService(IWorkbenchLocationService::GetManifestName()).Cast(); // const IWorkbench* workbench = wls->GetWorkbench();; // if (workbench != 0 && !helpContextId.empty()) { // this->workbenchHelpSystem = workbench->GetHelpSystem(); // } } catch (const NotDefinedException& /*e*/) { WorkbenchPlugin::Log(QString("Unable to register menu item \"") + this->GetId() + "\", command \"" + contributionParameters->commandId + "\" not defined"); } } } void CommandContributionItem::Fill(QMenu* parent, QAction* before) { if (!command || action || parent == nullptr) { return; } // Menus don't support the pulldown style Style tmpStyle = style; if (tmpStyle == STYLE_PULLDOWN) tmpStyle = STYLE_PUSH; QAction* item = nullptr; if (before) { item = new QAction(icon, label, parent); parent->insertAction(before, item); } else { item = parent->addAction(icon, label); } // Remove this when key binding support is fully implemented if (!shortcut.isEmpty()) { item->setShortcut(shortcut); } item->setData(QVariant::fromValue(Object::Pointer(this))); item->setProperty("contributionItem", QVariant::fromValue(Object::Pointer(this))); // if (workbenchHelpSystem != null) // { // workbenchHelpSystem.setHelp(item, helpContextId); // } connect(item, SIGNAL(triggered()), SLOT(HandleWidgetSelection())); connect(item, SIGNAL(destroyed()), SLOT(HandleActionDestroyed())); action = item; this->Update(); this->UpdateIcons(); //bindingService.addBindingManagerListener(bindingManagerListener); } void CommandContributionItem::Fill(QToolBar *parent, QAction *before) { if (!command || action || parent == nullptr) { return; } QAction* item = nullptr; if (before) { item = parent->addAction(icon, label); } else { item = new QAction(icon, label, parent); parent->insertAction(before, item); } item->setData(QVariant::fromValue(Object::Pointer(this))); item->setProperty("contributionItem", QVariant::fromValue(Object::Pointer(this))); connect(item, SIGNAL(triggered()), SLOT(HandleWidgetSelection())); connect(item, SIGNAL(destroyed()), SLOT(HandleActionDestroyed())); action = item; this->Update(); this->UpdateIcons(); //bindingService.addBindingManagerListener(bindingManagerListener); } void CommandContributionItem::Update() { this->Update(QString::null); } void CommandContributionItem::Update(const QString& /*id*/) { if (action) { QWidget* parent = action->parentWidget(); if(qobject_cast(parent)) { this->UpdateMenuItem(); } else if (qobject_cast(parent)) { this->UpdateMenuItem(); } else if (qobject_cast(parent)) { this->UpdateToolItem(); } } } void CommandContributionItem::UpdateMenuItem() { QString text = label; if (text.isEmpty()) { if (command.IsNotNull()) { try { text = command->GetCommand()->GetName(); } catch (const NotDefinedException& e) { // StatusManager.getManager().handle( // StatusUtil.newStatus(IStatus.ERROR, // "Update item failed " // + getId(), e)); BERRY_ERROR << "Update item failed " << GetId() << e.what(); } } } text = UpdateMnemonic(text); // String keyBindingText = null; // if (command != null) // { // TriggerSequence binding = bindingService // .getBestActiveBindingFor(command); // if (binding != null) // { // keyBindingText = binding.format(); // } // } // if (text != null) // { // if (keyBindingText == null) // { // item.setText(text); // } // else // { // item.setText(text + '\t' + keyBindingText); // } // } if (action->isChecked() != checkedState) { action->setChecked(checkedState); } // allow the handler update its enablement bool shouldBeEnabled = IsEnabled(); if (action->isEnabled() != shouldBeEnabled) { action->setEnabled(shouldBeEnabled); } } void CommandContributionItem::UpdateToolItem() { QString text = label; QString tooltip = label; if (text.isNull()) { if (command.IsNotNull()) { try { text = command->GetCommand()->GetName(); tooltip = command->GetCommand()->GetDescription(); if (tooltip.trimmed().isEmpty()) { tooltip = text; } } catch (const NotDefinedException& e) { // StatusManager.getManager().handle( // StatusUtil.newStatus(IStatus.ERROR, // "Update item failed " // + getId(), e)); BERRY_ERROR << "Update item failed " << GetId() << e.what(); } } } if ((icon.isNull() || (mode & MODE_FORCE_TEXT) == MODE_FORCE_TEXT) && !text.isNull()) { action->setText(text); } QString toolTipText = GetToolTipText(tooltip); action->setToolTip(toolTipText); if (action->isChecked() != checkedState) { action->setChecked(checkedState); } // allow the handler update its enablement bool shouldBeEnabled = IsEnabled(); if (action->isEnabled() != shouldBeEnabled) { action->setEnabled(shouldBeEnabled); } } CommandContributionItem::~CommandContributionItem() { if (elementRef) { commandService->UnregisterElement(elementRef); } if (commandListener) { command->GetCommand()->RemoveCommandListener(commandListener.data()); } } bool CommandContributionItem::IsEnabled() const { if (command) { command->GetCommand()->SetEnabled(menuService->GetCurrentState()); return command->GetCommand()->IsEnabled(); } return false; } bool CommandContributionItem::IsVisible() const { if (visibleEnabled) { return ContributionItem::IsVisible() && this->IsEnabled(); } return ContributionItem::IsVisible(); } void CommandContributionItem::SetImages(IServiceLocator* locator, const QString& iconStyle) { if (icon.isNull()) { ICommandImageService* service = locator->GetService(); if (service) { icon = service->GetImage(command->GetId(), iconStyle); } } } ICommandListener* CommandContributionItem::GetCommandListener() { if (!commandListener) { class MyCommandListener : public ICommandListener { private: CommandContributionItem* item; public: MyCommandListener(CommandContributionItem* item) : item(item) {} void CommandChanged(const SmartPointer& commandEvent) override { if (commandEvent->IsHandledChanged() || commandEvent->IsEnabledChanged() || commandEvent->IsDefinedChanged()) { item->UpdateCommandProperties(commandEvent); } } }; commandListener.reset(new MyCommandListener(this)); } return commandListener.data(); } void CommandContributionItem::UpdateCommandProperties(const SmartPointer< const CommandEvent> commandEvent) { if (commandEvent->IsHandledChanged()) { dropDownMenuOverride = ""; } if (!action) { return; } Display* display = Display::GetDefault(); typedef AsyncRunnable, CommandContributionItem > UpdateRunnable; Poco::Runnable* update = new UpdateRunnable(this, &CommandContributionItem::UpdateCommandPropertiesInUI, commandEvent); if (display->InDisplayThread()) { update->run(); } else { display->AsyncExec(update); } } void CommandContributionItem::UpdateCommandPropertiesInUI(const SmartPointer< const CommandEvent>& commandEvent) { if (commandEvent->GetCommand()->IsDefined()) { this->Update(); } if (commandEvent->IsEnabledChanged() || commandEvent->IsHandledChanged()) { if (visibleEnabled) { IContributionManager* parent = this->GetParent(); if (parent) { parent->Update(true); } } } } void CommandContributionItem::HandleActionDestroyed() { this->action = nullptr; } bool CommandContributionItem::ShouldRestoreAppearance(const SmartPointer& handler) { // if no handler or handler doesn't implement IElementUpdater, // restore the contributed elements if (handler.IsNull()) return true; if (!(handler.Cast())) return true; // special case, if its HandlerProxy, then check the actual handler // if (handler instanceof HandlerProxy) { // HandlerProxy handlerProxy = (HandlerProxy) handler; // IHandler actualHandler = handlerProxy.getHandler(); // return shouldRestoreAppearance(actualHandler); // } return false; } SmartPointer CommandContributionItem::GetCommand() const { return command; } void CommandContributionItem::CreateCommand(const QString &commandId, const QHash ¶meters) { if (commandId.isEmpty()) { // StatusManager.getManager().handle(StatusUtil.newStatus(IStatus.ERROR, // "Unable to create menu item \"" + getId() // + "\", no command id", null)); BERRY_ERROR << "Unable to create menu item \"" << this->GetId().toStdString() << "\", no command id"; return; } Command::Pointer cmd = commandService->GetCommand(commandId); if (!cmd->IsDefined()) { // StatusManager.getManager().handle(StatusUtil.newStatus( // IStatus.ERROR, "Unable to create menu item \"" + getId() // + "\", command \"" + commandId + "\" not defined", null)); BERRY_ERROR << "Unable to create menu item \"" << this->GetId().toStdString() << "\", command \"" << commandId.toStdString() << "\" not defined"; return; } command = ParameterizedCommand::GenerateCommand(cmd, parameters); } QString CommandContributionItem::GetToolTipText(const QString& text) const { QString tooltipText = tooltip; if (tooltip.isNull()) { if (!text.isNull()) { tooltipText = text; } else { tooltipText = ""; } } // TriggerSequence activeBinding = bindingService // .getBestActiveBindingFor(command); // if (activeBinding != null && !activeBinding.isEmpty()) // { // String acceleratorText = activeBinding.format(); // if (acceleratorText != null // && acceleratorText.length() != 0) // { // tooltipText = NLS.bind(CommandMessages.Tooltip_Accelerator, // tooltipText, acceleratorText); // } // } return tooltipText; } QString CommandContributionItem::UpdateMnemonic(const QString &s) { if (mnemonic.isNull() || s.isEmpty()) { return s; } int idx = s.indexOf(mnemonic); if (idx == -1) { return s; } return s.left(idx) + '&' + s.mid(idx); } //SmartPointer CommandContributionItem::GetItemListener() //{ // if (!itemListener) // { // itemListener = new CommandUIElementListener(this); // } // return itemListener; //} void CommandContributionItem::HandleWidgetSelection() { // // Special check for ToolBar dropdowns... // if (this->OpenDropDownMenu(event)) // //return; if ((style & STYLE_CHECK) != 0) { checkedState = action->isChecked(); } try { handlerService->ExecuteCommand(command, UIElement::Pointer(nullptr)); } catch (const ExecutionException& e) { WorkbenchPlugin::Log("Failed to execute item " + GetId(), e); } catch (const NotDefinedException& e) { WorkbenchPlugin::Log("Failed to execute item " + GetId(), e); } catch (const NotEnabledException& e) { WorkbenchPlugin::Log("Failed to execute item " + GetId(), e); } catch (const NotHandledException& e) { WorkbenchPlugin::Log("Failed to execute item " + GetId(), e); } } //TODO Tool item drop down menu contributions //bool CommandContributionItem::OpenDropDownMenu(SmartPointer event) //{ //Widget item = event.widget; //if (item != null) //{ // int style = item.getStyle(); // if ((style & SWT.DROP_DOWN) != 0) // { // if (event.detail == 4) // { // on drop-down button // ToolItem ti = (ToolItem) item; // // final MenuManager menuManager = new MenuManager(); // Menu menu = menuManager.createContextMenu(ti.getParent()); // if (workbenchHelpSystem != null) // { // workbenchHelpSystem.setHelp(menu, helpContextId); // } // menuManager.addMenuListener(new IMenuListener() // { // public void menuAboutToShow(IMenuManager manager) // { // String id = getId(); // if (dropDownMenuOverride != null) // { // id = dropDownMenuOverride; // } // menuService.populateContributionManager( // menuManager, "menu:" + id); //$NON-NLS-1$ // } // }); // // // position the menu below the drop down item // Point point = ti.getParent().toDisplay( // new Point(event.x, event.y)); // menu.setLocation(point.x, point.y); // waiting for SWT // // 0.42 // menu.setVisible(true); // return true; // we don't fire the action // } // } //} // //return false; //} void CommandContributionItem::SetIcon(const QIcon &icon) { this->icon = icon; this->UpdateIcons(); } void CommandContributionItem::UpdateIcons() { action->setIcon(icon); } void CommandContributionItem::SetText(const QString &text) { label = text; this->Update(); } void CommandContributionItem::SetChecked(bool checked) { if (checkedState == checked) { return; } checkedState = checked; action->setChecked(checkedState); } void CommandContributionItem::SetToolTip(const QString &text) { tooltip = text; action->setToolTip(text); } } diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.cpp index f51d8d24a7..06ac0593b5 100755 --- a/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.cpp @@ -1,58 +1,63 @@ /*=================================================================== BlueBerry Platform Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #include "berryQtWorkbenchAdvisor.h" #include "internal/berryQtGlobalEventFilter.h" -#include "internal/berryWorkbenchPlugin.h" +#include "berryWorkbenchPlugin.h" #include "berryQtPreferences.h" #include #include #include #include #include #include #include #include #include #include namespace berry { void QtWorkbenchAdvisor::Initialize(IWorkbenchConfigurer::Pointer configurer) { WorkbenchAdvisor::Initialize(configurer); IPreferencesService* prefService = WorkbenchPlugin::GetDefault()->GetPreferencesService(); IPreferences::Pointer prefs = prefService->GetSystemPreferences()->Node(QtPreferences::QT_STYLES_NODE); QString styleName = prefs->Get(QtPreferences::QT_STYLE_NAME, ""); + QString fontName = prefs->Get(QtPreferences::QT_FONT_NAME, ""); + QString fontSize = prefs->Get(QtPreferences::QT_FONT_SIZE, ""); ctkServiceReference serviceRef = WorkbenchPlugin::GetDefault()->GetPluginContext()->getServiceReference(); if (serviceRef) { IQtStyleManager* styleManager = WorkbenchPlugin::GetDefault()->GetPluginContext()->getService(serviceRef); styleManager->SetStyle(styleName); + styleManager->SetFont(fontName); + styleManager->SetFontSize(fontSize.toInt()); + styleManager->UpdateWorkbenchFont(); } QObject* eventFilter = new QtGlobalEventFilter(qApp); qApp->installEventFilter(eventFilter); } } diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.cpp index c5989e81d9..cc227f8fea 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.cpp @@ -1,144 +1,144 @@ /*=================================================================== BlueBerry Platform Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #include "berryWorkbenchWindowAdvisor.h" #include #include #include #include #include #include #include #include "internal/berryWorkbenchWindowConfigurer.h" -#include "internal/berryWorkbenchPlugin.h" +#include "berryWorkbenchPlugin.h" namespace berry { IWorkbenchWindowConfigurer::Pointer WorkbenchWindowAdvisor::GetWindowConfigurer() { return windowConfigurer; } WorkbenchWindowAdvisor::WorkbenchWindowAdvisor( const IWorkbenchWindowConfigurer::Pointer& configurer) { poco_assert(configurer.IsNotNull()); this->windowConfigurer = configurer; } WorkbenchWindowAdvisor::~WorkbenchWindowAdvisor() { } void WorkbenchWindowAdvisor::PreWindowOpen() { // do nothing } ActionBarAdvisor::Pointer WorkbenchWindowAdvisor::CreateActionBarAdvisor( IActionBarConfigurer::Pointer configurer) { ActionBarAdvisor::Pointer actionBarAdvisor(new ActionBarAdvisor(configurer)); return actionBarAdvisor; } void WorkbenchWindowAdvisor::PostWindowRestore() { // do nothing } void WorkbenchWindowAdvisor::OpenIntro() { // TODO: Refactor this into an IIntroManager.openIntro(IWorkbenchWindow) call // introOpened flag needs to be global IWorkbenchConfigurer::Pointer wbConfig = GetWindowConfigurer()->GetWorkbenchConfigurer(); QString key = "introOpened"; //$NON-NLS-1$ ObjectBool::Pointer introOpened = wbConfig->GetData(key).Cast(); if (introOpened && introOpened->GetValue()) { return; } wbConfig->SetData(key, ObjectBool::Pointer(new ObjectBool(true))); IPreferences::Pointer workbenchPrefs = WorkbenchPlugin::GetDefault()->GetPreferencesService()->GetSystemPreferences(); bool showIntro = workbenchPrefs->GetBool(WorkbenchPreferenceConstants::SHOW_INTRO, true); IIntroManager* introManager = wbConfig->GetWorkbench()->GetIntroManager(); bool hasIntro = introManager->HasIntro(); bool isNewIntroContentAvailable = introManager->IsNewContentAvailable(); if (hasIntro && (showIntro || isNewIntroContentAvailable)) { introManager ->ShowIntro(GetWindowConfigurer()->GetWindow(), false); workbenchPrefs->PutBool(WorkbenchPreferenceConstants::SHOW_INTRO, false); workbenchPrefs->Flush(); } } void WorkbenchWindowAdvisor::PostWindowCreate() { // do nothing } void WorkbenchWindowAdvisor::PostWindowOpen() { // do nothing } bool WorkbenchWindowAdvisor::PreWindowShellClose() { // do nothing, but allow the close() to proceed return true; } void WorkbenchWindowAdvisor::PostWindowClose() { // do nothing } void WorkbenchWindowAdvisor::CreateWindowContents(Shell::Pointer shell) { this->GetWindowConfigurer().Cast()->CreateDefaultContents(shell); } QWidget* WorkbenchWindowAdvisor::CreateEmptyWindowContents(QWidget* /*parent*/) { return nullptr; } bool WorkbenchWindowAdvisor::SaveState(IMemento::Pointer /*memento*/) { // do nothing return true; } bool WorkbenchWindowAdvisor::RestoreState(IMemento::Pointer /*memento*/) { // do nothing return true; } } diff --git a/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.cpp b/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.cpp index 44f2d81e38..13d4c37888 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.cpp @@ -1,281 +1,281 @@ /*=================================================================== BlueBerry Platform Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #include "berryAbstractUICTKPlugin.h" #include "internal/berryBundleUtility.h" -#include "internal/berryWorkbenchPlugin.h" +#include "berryWorkbenchPlugin.h" #include "berryPlatformUI.h" #include "berryIPreferencesService.h" #include "berryIPreferences.h" #include #include namespace berry { const QString AbstractUICTKPlugin::FN_DIALOG_SETTINGS = "dialog_settings.xml"; AbstractUICTKPlugin::AbstractUICTKPlugin() : preferencesService(nullptr) { } // IDialogSettings getDialogSettings() { // if (dialogSettings == null) { // loadDialogSettings(); // } // return dialogSettings; // } // ImageRegistry getImageRegistry() { // if (imageRegistry == null) { // imageRegistry = createImageRegistry(); // initializeImageRegistry(imageRegistry); // } // return imageRegistry; // } IPreferencesService* AbstractUICTKPlugin::GetPreferencesService() const { // Create the preference store lazily. if (preferencesService == nullptr) { ctkServiceReference serviceRef = m_Context->getServiceReference(); if (!serviceRef) { BERRY_ERROR << "Preferences service not available"; } preferencesService = m_Context->getService(serviceRef); } return preferencesService; } SmartPointer AbstractUICTKPlugin::GetPreferences() const { IPreferencesService* prefService = this->GetPreferencesService(); if (prefService == nullptr) return IPreferences::Pointer(nullptr); return prefService->GetSystemPreferences(); } IWorkbench* AbstractUICTKPlugin::GetWorkbench() { return PlatformUI::GetWorkbench(); } // ImageRegistry createImageRegistry() // { // // //If we are in the UI Thread use that // if (Display.getCurrent() != null) // { // return new ImageRegistry(Display.getCurrent()); // } // // if (PlatformUI.isWorkbenchRunning()) // { // return new ImageRegistry(PlatformUI.getWorkbench().getDisplay()); // } // // //Invalid thread access if it is not the UI Thread // //and the workbench is not created. // throw new SWTError(SWT.ERROR_THREAD_INVALID_ACCESS); // } // void initializeImageRegistry(ImageRegistry reg) { // // spec'ed to do nothing // } // void loadDialogSettings() { // dialogSettings = new DialogSettings("Workbench"); //$NON-NLS-1$ // // // bug 69387: The instance area should not be created (in the call to // // #getStateLocation) if -data @none or -data @noDefault was used // IPath dataLocation = getStateLocationOrNull(); // if (dataLocation != null) { // // try r/w state area in the local file system // String readWritePath = dataLocation.append(FN_DIALOG_SETTINGS) // .toOSString(); // File settingsFile = new File(readWritePath); // if (settingsFile.exists()) { // try { // dialogSettings.load(readWritePath); // } catch (IOException e) { // // load failed so ensure we have an empty settings // dialogSettings = new DialogSettings("Workbench"); //$NON-NLS-1$ // } // // return; // } // } // // // otherwise look for bundle specific dialog settings // URL dsURL = BundleUtility.find(getBundle(), FN_DIALOG_SETTINGS); // if (dsURL == null) { // return; // } // // InputStream is = null; // try { // is = dsURL.openStream(); // BufferedReader reader = new BufferedReader( // new InputStreamReader(is, "utf-8")); //$NON-NLS-1$ // dialogSettings.load(reader); // } catch (IOException e) { // // load failed so ensure we have an empty settings // dialogSettings = new DialogSettings("Workbench"); //$NON-NLS-1$ // } finally { // try { // if (is != null) { // is.close(); // } // } catch (IOException e) { // // do nothing // } // } // } // void refreshPluginActions() { // // If the workbench is not started yet, or is no longer running, do nothing. // if (!PlatformUI.isWorkbenchRunning()) { // return; // } // // // startup() is not guaranteed to be called in the UI thread, // // but refreshPluginActions must run in the UI thread, // // so use asyncExec. See bug 6623 for more details. // Display.getDefault().asyncExec(new Runnable() { // public void run() { // WWinPluginAction.refreshActionList(); // } // }); // } // void saveDialogSettings() { // if (dialogSettings == null) { // return; // } // // try { // IPath path = getStateLocationOrNull(); // if(path == null) { // return; // } // String readWritePath = path // .append(FN_DIALOG_SETTINGS).toOSString(); // dialogSettings.save(readWritePath); // } catch (IOException e) { // // spec'ed to ignore problems // } catch (IllegalStateException e) { // // spec'ed to ignore problems // } // } void AbstractUICTKPlugin::start(ctkPluginContext* context) { Plugin::start(context); // Should only attempt refreshPluginActions() once the bundle // has been fully started. Otherwise, action delegates // can be created while in the process of creating // a triggering action delegate (if UI events are processed during startup). // Also, if the start throws an exception, the bundle will be shut down. // We don't want to have created any delegates if this happens. // See bug 63324 for more details. // bundleListener = new BundleListener() // { // public void bundleChanged(BundleEvent event) // { // if (event.getBundle() == getBundle()) // { // if (event.getType() == BundleEvent.STARTED) // { // // We're getting notified that the bundle has been started. // // Make sure it's still active. It may have been shut down between // // the time this event was queued and now. // if (getBundle().getState() == Bundle.ACTIVE) // { // refreshPluginActions(); // } // fc.removeBundleListener(this); // } // } // } // }; // context.addBundleListener(bundleListener); // bundleListener is removed in stop(BundleContext) } void AbstractUICTKPlugin::stop(ctkPluginContext* context) { Q_UNUSED(context) // try // { // if (bundleListener != null) // { // context.removeBundleListener(bundleListener); // } // saveDialogSettings(); // savePreferenceStore(); // preferenceStore = null; // if (imageRegistry != null) // imageRegistry.dispose(); // imageRegistry = null; //} Plugin::stop(context); } QIcon AbstractUICTKPlugin::ImageDescriptorFromPlugin( const QString& pluginId, const QString& imageFilePath) { if (pluginId.isEmpty() || imageFilePath.isEmpty()) { throw ctkInvalidArgumentException("argument cannot be empty"); } // if the plug-in is not ready then there is no image QSharedPointer plugin = BundleUtility::FindPlugin(pluginId); if (!BundleUtility::IsReady(plugin.data())) { return QIcon(); } QByteArray imgContent = plugin->getResource(imageFilePath); QImage image = QImage::fromData(imgContent); QPixmap pixmap = QPixmap::fromImage(image); return QIcon(pixmap); } QIcon AbstractUICTKPlugin::GetMissingIcon() { return QIcon(":/org.blueberry.ui.qt/icon_missing.png"); } } diff --git a/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.h b/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.h index 32e66e76d4..8dc2d18882 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.h @@ -1,109 +1,115 @@ /*=================================================================== BlueBerry Platform Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #ifndef BERRYIQTSTYLEMANAGER_H_ #define BERRYIQTSTYLEMANAGER_H_ #include #include #include #include namespace berry { struct BERRY_UI_QT IQtStyleManager { struct Style { QString name; QString fileName; Style() {} Style(const QString& name, const QString& fn) : name(name), fileName(fn) {} Style& operator=(const Style& s) { this->name = s.name; this->fileName = s.fileName; return *this; } bool operator<(const Style& s) const { return name < s.name; } bool operator==(const Style& s) const { return name == s.name; } }; struct IconTheme { QString name; IconTheme() {} IconTheme(const QString& name) : name(name) {} IconTheme& operator=(const IconTheme& s) { this->name = s.name; return *this; } bool operator<(const IconTheme& s) const { return name < s.name; } bool operator==(const IconTheme& s) const { return name == s.name; } }; typedef QList + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/document-print.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/document-print.svg new file mode 100755 index 0000000000..3ef57561f3 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/document-print.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/document-save.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/document-save.svg new file mode 100755 index 0000000000..3c3d5a5b3d --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/document-save.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-delete.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-delete.svg new file mode 100755 index 0000000000..38b50abf47 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-delete.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-redo.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-redo.svg new file mode 100755 index 0000000000..23925e2767 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-redo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-undo.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-undo.svg new file mode 100755 index 0000000000..2662465d7d --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/edit-undo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-bottom.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-bottom.svg new file mode 100755 index 0000000000..51f5138f52 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-bottom.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-down.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-down.svg new file mode 100755 index 0000000000..c296820258 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-down.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-first.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-first.svg new file mode 100755 index 0000000000..dfcdc04a7b --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-first.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-home.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-home.svg new file mode 100755 index 0000000000..7f509cdc5e --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-home.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-last.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-last.svg new file mode 100755 index 0000000000..c8d83005d4 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-last.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-next.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-next.svg new file mode 100755 index 0000000000..75f26ceeea --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-next.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-previous.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-previous.svg new file mode 100755 index 0000000000..25cccc19d7 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-previous.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-top.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-top.svg new file mode 100755 index 0000000000..e3fdc46599 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-top.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-up.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-up.svg new file mode 100755 index 0000000000..b7e6e90b72 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/go-up.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/list-add.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/list-add.svg new file mode 100755 index 0000000000..66d8bfc672 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/list-add.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/list-remove.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/list-remove.svg new file mode 100755 index 0000000000..bcda9560dc --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/list-remove.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-pause.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-pause.svg new file mode 100755 index 0000000000..30fc830c7c --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-pause.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-start.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-start.svg new file mode 100755 index 0000000000..4264df2e27 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-start.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-stop.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-stop.svg new file mode 100755 index 0000000000..5458bf50cf --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-playback-stop.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-record.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-record.svg new file mode 100755 index 0000000000..ec3dc324e3 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-record.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-seek-backward.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-seek-backward.svg new file mode 100755 index 0000000000..be457b53fa --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-seek-backward.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-seek-forward.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-seek-forward.svg new file mode 100755 index 0000000000..136ecb17fc --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-seek-forward.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-skip-backward.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-skip-backward.svg new file mode 100755 index 0000000000..940223e98f --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-skip-backward.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-skip-forward.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-skip-forward.svg new file mode 100755 index 0000000000..ecf314722d --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/media-skip-forward.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/system-log-out.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/system-log-out.svg new file mode 100755 index 0000000000..e71cde0de8 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/system-log-out.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-list-details.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-list-details.svg new file mode 100755 index 0000000000..b6140d7ccf --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-list-details.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-list-icons.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-list-icons.svg new file mode 100755 index 0000000000..d109632098 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-list-icons.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-refresh.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-refresh.svg new file mode 100755 index 0000000000..e8fa2bea1e --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/actions/view-refresh.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/categories/applications-multimedia.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/categories/applications-multimedia.svg new file mode 100755 index 0000000000..6844e8db1a --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/categories/applications-multimedia.svg @@ -0,0 +1,498 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Multimedia Category + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + video + multimedia + category + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/devices/camera-photo.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/devices/camera-photo.svg new file mode 100755 index 0000000000..4911410136 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/devices/camera-photo.svg @@ -0,0 +1,681 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + Photo Camera + + + camera + photo + SLR + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/devices/camera-video.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/devices/camera-video.svg new file mode 100755 index 0000000000..e24713457f --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/devices/camera-video.svg @@ -0,0 +1,1257 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Camera / Video + + + Jakub Steiner + + + http://jimmac.musichall.cz/ + + + camera + camcorder + video + cam + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/mimetypes/image-x-generic.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/mimetypes/image-x-generic.svg new file mode 100755 index 0000000000..45dd641ae7 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/mimetypes/image-x-generic.svg @@ -0,0 +1,581 @@ + + + + + + image/svg+xml + + + + + + + + Genric Image + + + Jakub Steiner + + + + imagepicturesnapshotphoto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/mimetypes/video-x-generic.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/mimetypes/video-x-generic.svg new file mode 100755 index 0000000000..1f3a8b95a8 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/mimetypes/video-x-generic.svg @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Generic Video + + + video + audio + multimedia + movie + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/places/folder-remote.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/places/folder-remote.svg new file mode 100755 index 0000000000..dc7d3a3796 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/places/folder-remote.svg @@ -0,0 +1,609 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Folder Icon + + + + Jakub Steiner + + + + http://jimmac.musichall.cz + + + folder + directory + + + + + Andreas Nilsson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/places/folder.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/places/folder.svg new file mode 100755 index 0000000000..79b25c305b --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/places/folder.svg @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Folder Icon + + + + Jakub Steiner + + + + http://jimmac.musichall.cz + + + folder + directory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-error.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-error.svg new file mode 100755 index 0000000000..6dfc2dea82 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-error.svg @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Rodney Dawes + + + + + Jakub Steiner, Garrett LeSage + + + + Dialog Error + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-information.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-information.svg new file mode 100755 index 0000000000..922b316fac --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-information.svg @@ -0,0 +1,1159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Info + + + Jakub Steiner + + + + + dialog + info + + + http://jimmac.musichall.cz + + + + Garrett LeSage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-question.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-question.svg new file mode 100755 index 0000000000..851327f776 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-question.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Help Browser + 2005-11-06 + + + Tuomas Kuosmanen + + + + + help + browser + documentation + docs + man + info + + + + + + Jakub Steiner, Andreas Nilsson + + + http://tigert.com + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-warning.svg b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-warning.svg new file mode 100755 index 0000000000..e09eccafd6 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.ext/resources/icons/dark/scalable/status/dialog-warning.svg @@ -0,0 +1,373 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Dialog Warning + 2005-10-14 + + + Andreas Nilsson + + + + + Jakub Steiner, Garrett LeSage + + + + + dialog + warning + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.ext/resources/org_mitk_icons.qrc b/Plugins/org.mitk.gui.qt.ext/resources/org_mitk_icons.qrc index 4d67ab9b0f..c07a9dca42 100644 --- a/Plugins/org.mitk.gui.qt.ext/resources/org_mitk_icons.qrc +++ b/Plugins/org.mitk.gui.qt.ext/resources/org_mitk_icons.qrc @@ -1,68 +1,109 @@ - - - icons/awesome/index.theme - icons/awesome/scalable/actions/document-open.svg - icons/awesome/scalable/actions/document-print.svg - icons/awesome/scalable/actions/document-save.svg - icons/awesome/scalable/actions/edit-delete.svg - icons/awesome/scalable/actions/edit-redo.svg - icons/awesome/scalable/actions/edit-undo.svg - icons/awesome/scalable/actions/go-down.svg - icons/awesome/scalable/actions/go-home.svg - icons/awesome/scalable/actions/go-next.svg - icons/awesome/scalable/actions/go-previous.svg - icons/awesome/scalable/actions/go-up.svg - icons/awesome/scalable/actions/system-log-out.svg - icons/awesome/scalable/actions/view-list-details.svg - icons/awesome/scalable/actions/view-list-icons.svg - icons/awesome/scalable/actions/view-refresh.svg - icons/awesome/scalable/places/folder.svg - icons/awesome/scalable/status/dialog-error.svg - icons/awesome/scalable/status/dialog-information.svg - icons/awesome/scalable/status/dialog-question.svg - icons/awesome/scalable/status/dialog-warning.svg - icons/awesome/scalable/tag.svg - icons/awesome/scalable/tags.svg - icons/tango/index.theme - icons/tango/scalable/actions/document-open.svg - icons/tango/scalable/actions/document-print.svg - icons/tango/scalable/actions/document-save.svg - icons/tango/scalable/actions/edit-delete.svg - icons/tango/scalable/actions/edit-redo.svg - icons/tango/scalable/actions/edit-undo.svg - icons/tango/scalable/actions/go-bottom.svg - icons/tango/scalable/actions/go-down.svg - icons/tango/scalable/actions/go-first.svg - icons/tango/scalable/actions/go-home.svg - icons/tango/scalable/actions/go-last.svg - icons/tango/scalable/actions/go-next.svg - icons/tango/scalable/actions/go-previous.svg - icons/tango/scalable/actions/go-top.svg - icons/tango/scalable/actions/go-up.svg - icons/tango/scalable/actions/system-log-out.svg - icons/tango/scalable/actions/view-list-details.svg - icons/tango/scalable/actions/view-list-icons.svg - icons/tango/scalable/actions/view-refresh.svg - icons/tango/scalable/actions/list-add.svg - icons/tango/scalable/actions/list-remove.svg - icons/tango/scalable/actions/media-playback-pause.svg - icons/tango/scalable/actions/media-playback-start.svg - icons/tango/scalable/actions/media-playback-stop.svg - icons/tango/scalable/actions/media-record.svg - icons/tango/scalable/actions/media-seek-backward.svg - icons/tango/scalable/actions/media-seek-forward.svg - icons/tango/scalable/actions/media-skip-backward.svg - icons/tango/scalable/actions/media-skip-forward.svg - icons/tango/scalable/categories/applications-multimedia.svg - icons/tango/scalable/devices/camera-photo.svg - icons/tango/scalable/devices/camera-video.svg - icons/tango/scalable/mimetypes/image-x-generic.svg - icons/tango/scalable/mimetypes/video-x-generic.svg - icons/tango/scalable/places/folder.svg - icons/tango/scalable/places/folder-remote.svg - icons/tango/scalable/status/dialog-error.svg - icons/tango/scalable/status/dialog-information.svg - icons/tango/scalable/status/dialog-question.svg - icons/tango/scalable/status/dialog-warning.svg - - + + + icons/awesome/index.theme + icons/awesome/scalable/actions/document-open.svg + icons/awesome/scalable/actions/document-print.svg + icons/awesome/scalable/actions/document-save.svg + icons/awesome/scalable/actions/edit-delete.svg + icons/awesome/scalable/actions/edit-redo.svg + icons/awesome/scalable/actions/edit-undo.svg + icons/awesome/scalable/actions/go-down.svg + icons/awesome/scalable/actions/go-home.svg + icons/awesome/scalable/actions/go-next.svg + icons/awesome/scalable/actions/go-previous.svg + icons/awesome/scalable/actions/go-up.svg + icons/awesome/scalable/actions/system-log-out.svg + icons/awesome/scalable/actions/view-list-details.svg + icons/awesome/scalable/actions/view-list-icons.svg + icons/awesome/scalable/actions/view-refresh.svg + icons/awesome/scalable/places/folder.svg + icons/awesome/scalable/status/dialog-error.svg + icons/awesome/scalable/status/dialog-information.svg + icons/awesome/scalable/status/dialog-question.svg + icons/awesome/scalable/status/dialog-warning.svg + icons/awesome/scalable/tag.svg + icons/awesome/scalable/tags.svg + icons/tango/index.theme + icons/tango/scalable/actions/document-open.svg + icons/tango/scalable/actions/document-print.svg + icons/tango/scalable/actions/document-save.svg + icons/tango/scalable/actions/edit-delete.svg + icons/tango/scalable/actions/edit-redo.svg + icons/tango/scalable/actions/edit-undo.svg + icons/tango/scalable/actions/go-bottom.svg + icons/tango/scalable/actions/go-down.svg + icons/tango/scalable/actions/go-first.svg + icons/tango/scalable/actions/go-home.svg + icons/tango/scalable/actions/go-last.svg + icons/tango/scalable/actions/go-next.svg + icons/tango/scalable/actions/go-previous.svg + icons/tango/scalable/actions/go-top.svg + icons/tango/scalable/actions/go-up.svg + icons/tango/scalable/actions/system-log-out.svg + icons/tango/scalable/actions/view-list-details.svg + icons/tango/scalable/actions/view-list-icons.svg + icons/tango/scalable/actions/view-refresh.svg + icons/tango/scalable/actions/list-add.svg + icons/tango/scalable/actions/list-remove.svg + icons/tango/scalable/actions/media-playback-pause.svg + icons/tango/scalable/actions/media-playback-start.svg + icons/tango/scalable/actions/media-playback-stop.svg + icons/tango/scalable/actions/media-record.svg + icons/tango/scalable/actions/media-seek-backward.svg + icons/tango/scalable/actions/media-seek-forward.svg + icons/tango/scalable/actions/media-skip-backward.svg + icons/tango/scalable/actions/media-skip-forward.svg + icons/tango/scalable/categories/applications-multimedia.svg + icons/tango/scalable/devices/camera-photo.svg + icons/tango/scalable/devices/camera-video.svg + icons/tango/scalable/mimetypes/image-x-generic.svg + icons/tango/scalable/mimetypes/video-x-generic.svg + icons/tango/scalable/places/folder.svg + icons/tango/scalable/places/folder-remote.svg + icons/tango/scalable/status/dialog-error.svg + icons/tango/scalable/status/dialog-information.svg + icons/tango/scalable/status/dialog-question.svg + icons/tango/scalable/status/dialog-warning.svg + icons/dark/index.theme + icons/dark/scalable/actions/document-open.svg + icons/dark/scalable/actions/document-print.svg + icons/dark/scalable/actions/document-save.svg + icons/dark/scalable/actions/edit-delete.svg + icons/dark/scalable/actions/edit-redo.svg + icons/dark/scalable/actions/edit-undo.svg + icons/dark/scalable/actions/go-bottom.svg + icons/dark/scalable/actions/go-down.svg + icons/dark/scalable/actions/go-first.svg + icons/dark/scalable/actions/go-home.svg + icons/dark/scalable/actions/go-last.svg + icons/dark/scalable/actions/go-next.svg + icons/dark/scalable/actions/go-previous.svg + icons/dark/scalable/actions/go-top.svg + icons/dark/scalable/actions/go-up.svg + icons/dark/scalable/actions/list-add.svg + icons/dark/scalable/actions/list-remove.svg + icons/dark/scalable/actions/media-playback-pause.svg + icons/dark/scalable/actions/media-playback-start.svg + icons/dark/scalable/actions/media-playback-stop.svg + icons/dark/scalable/actions/media-record.svg + icons/dark/scalable/actions/media-seek-backward.svg + icons/dark/scalable/actions/media-seek-forward.svg + icons/dark/scalable/actions/media-skip-backward.svg + icons/dark/scalable/actions/media-skip-forward.svg + icons/dark/scalable/actions/system-log-out.svg + icons/dark/scalable/actions/view-list-details.svg + icons/dark/scalable/actions/view-list-icons.svg + icons/dark/scalable/actions/view-refresh.svg + icons/dark/scalable/categories/applications-multimedia.svg + icons/dark/scalable/devices/camera-photo.svg + icons/dark/scalable/devices/camera-video.svg + icons/dark/scalable/mimetypes/image-x-generic.svg + icons/dark/scalable/mimetypes/video-x-generic.svg + icons/dark/scalable/places/folder.svg + icons/dark/scalable/places/folder-remote.svg + icons/dark/scalable/status/dialog-error.svg + icons/dark/scalable/status/dialog-information.svg + icons/dark/scalable/status/dialog-question.svg + icons/dark/scalable/status/dialog-warning.svg + + diff --git a/Plugins/org.mitk.gui.qt.imagecropper/files.cmake b/Plugins/org.mitk.gui.qt.imagecropper/files.cmake index 7dd76be335..27552186bb 100644 --- a/Plugins/org.mitk.gui.qt.imagecropper/files.cmake +++ b/Plugins/org.mitk.gui.qt.imagecropper/files.cmake @@ -1,36 +1,36 @@ set(SRC_CPP_FILES ) set(INTERNAL_CPP_FILES org_mitk_gui_qt_imagecropper_Activator.cpp QmitkImageCropper.cpp ) set(UI_FILES src/internal/ImageCropperControls.ui ) set(MOC_H_FILES src/internal/org_mitk_gui_qt_imagecropper_Activator.h src/internal/QmitkImageCropper.h ) set(CACHED_RESOURCE_FILES - resources/icon.png + resources/crop.svg plugin.xml ) set(QRC_FILES resources/imagecropper.qrc ) set(CPP_FILES) foreach(file ${SRC_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/${file}) endforeach(file ${SRC_CPP_FILES}) foreach(file ${INTERNAL_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/internal/${file}) endforeach(file ${INTERNAL_CPP_FILES}) diff --git a/Plugins/org.mitk.gui.qt.imagecropper/plugin.xml b/Plugins/org.mitk.gui.qt.imagecropper/plugin.xml index 5239e23441..3e3733278e 100644 --- a/Plugins/org.mitk.gui.qt.imagecropper/plugin.xml +++ b/Plugins/org.mitk.gui.qt.imagecropper/plugin.xml @@ -1,30 +1,30 @@ Crop images to a given size diff --git a/Plugins/org.mitk.gui.qt.imagecropper/resources/crop.svg b/Plugins/org.mitk.gui.qt.imagecropper/resources/crop.svg new file mode 100644 index 0000000000..cd7b397a64 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.imagecropper/resources/crop.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Plugins/org.mitk.gui.qt.imagecropper/resources/icon.png b/Plugins/org.mitk.gui.qt.imagecropper/resources/icon.png deleted file mode 100644 index fc9b34cb72..0000000000 Binary files a/Plugins/org.mitk.gui.qt.imagecropper/resources/icon.png and /dev/null differ diff --git a/Plugins/org.mitk.gui.qt.imagecropper/resources/icon29.png b/Plugins/org.mitk.gui.qt.imagecropper/resources/icon29.png deleted file mode 100644 index 604e5a76fb..0000000000 Binary files a/Plugins/org.mitk.gui.qt.imagecropper/resources/icon29.png and /dev/null differ diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/files.cmake b/Plugins/org.mitk.gui.qt.measurementtoolbox/files.cmake index 0844fdcbb8..fadfdbee0f 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/files.cmake +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/files.cmake @@ -1,59 +1,57 @@ set(SRC_CPP_FILES ) set(INTERNAL_CPP_FILES QmitkMeasurementView.cpp QmitkPlanarFiguresTableModel.cpp QmitkImageStatisticsView.cpp QmitkImageStatisticsCalculationThread.cpp mitkPluginActivator.cpp ) set(UI_FILES src/internal/QmitkImageStatisticsViewControls.ui ) set(MOC_H_FILES src/internal/QmitkMeasurementView.h src/internal/QmitkPlanarFiguresTableModel.h src/internal/QmitkImageStatisticsView.h src/internal/QmitkImageStatisticsCalculationThread.h src/internal/mitkPluginActivator.h ) set(CACHED_RESOURCE_FILES resources/angle.png resources/arrow.png resources/circle.png resources/four-point-angle.png - resources/ImageStatistic_24.png - resources/ImageStatistic_48.png - resources/ImageStatistic_64.png resources/lena.xpm resources/line.png resources/measurement.png resources/path.png resources/polygon.png resources/rectangle.png resources/stats.png resources/text.png + resources/bar-chart.svg plugin.xml ) set(QRC_FILES resources/measurement.qrc resources/QmitkImageStatisticsView.qrc ) set(CPP_FILES ) foreach(file ${SRC_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/${file}) endforeach(file ${SRC_CPP_FILES}) foreach(file ${INTERNAL_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/internal/${file}) endforeach(file ${INTERNAL_CPP_FILES}) diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.measurementtoolbox/manifest_headers.cmake index b318b8aca8..bea2c215a4 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/manifest_headers.cmake @@ -1,5 +1,8 @@ set(Plugin-Name "MITK Measurement") -set(Plugin-Version "1.0.0") +set(Plugin-Version "1.0.1") set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") set(Plugin-ContactAddress "http://www.mitk.org") -set(Require-Plugin org.mitk.gui.qt.common) +set(Require-Plugin + org.mitk.gui.qt.common + org.blueberry.ui.qt + ) \ No newline at end of file diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/plugin.xml b/Plugins/org.mitk.gui.qt.measurementtoolbox/plugin.xml index f0ff5ee675..45a8fc7f7d 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/plugin.xml +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/plugin.xml @@ -1,45 +1,45 @@ Measure distance and areas in the image + icon="resources/bar-chart.svg" > Calculate the statistic of image regions diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_24.png b/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_24.png deleted file mode 100644 index 9f423f95c1..0000000000 Binary files a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_24.png and /dev/null differ diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_48.png b/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_48.png deleted file mode 100644 index 4f51e1f5fc..0000000000 Binary files a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_48.png and /dev/null differ diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_64.png b/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_64.png deleted file mode 100644 index b1c5cb67ec..0000000000 Binary files a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/ImageStatistic_64.png and /dev/null differ diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/QmitkImageStatisticsView.qrc b/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/QmitkImageStatisticsView.qrc index b56771621f..3aa95f51d3 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/QmitkImageStatisticsView.qrc +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/QmitkImageStatisticsView.qrc @@ -1,6 +1,5 @@ lena.xpm - ImageStatistic_24.png diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/bar-chart.svg b/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/bar-chart.svg new file mode 100644 index 0000000000..9b0b9ffb1f --- /dev/null +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/resources/bar-chart.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.cpp b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.cpp index 37d689c2b7..eb3795aed2 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.cpp +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.cpp @@ -1,1398 +1,1427 @@ /*=================================================================== The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #include "QmitkImageStatisticsView.h" // Qt includes #include #include #include // berry includes #include // mitk includes #include "mitkNodePredicateDataType.h" #include "mitkNodePredicateOr.h" #include "mitkPlanarFigureInteractor.h" // itk includes #include "itksys/SystemTools.hxx" #include #include #include #include "itkImageRegionConstIteratorWithIndex.h" #include +//blueberry includes +#include +#include + const std::string QmitkImageStatisticsView::VIEW_ID = "org.mitk.views.imagestatistics"; const int QmitkImageStatisticsView::STAT_TABLE_BASE_HEIGHT = 180; QmitkImageStatisticsView::QmitkImageStatisticsView(QObject* /*parent*/, const char* /*name*/) : m_Controls( nullptr ), m_TimeStepperAdapter( nullptr ), m_SelectedImage( nullptr ), m_SelectedImageMask( nullptr ), m_SelectedPlanarFigure( nullptr ), m_ImageObserverTag( -1 ), m_ImageMaskObserverTag( -1 ), m_PlanarFigureObserverTag( -1 ), m_TimeObserverTag( -1 ), m_CurrentStatisticsValid( false ), m_StatisticsUpdatePending( false ), m_DataNodeSelectionChanged ( false ), m_Visible(false) { this->m_CalculationThread = new QmitkImageStatisticsCalculationThread; } QmitkImageStatisticsView::~QmitkImageStatisticsView() { if ( m_SelectedImage != nullptr ) m_SelectedImage->RemoveObserver( m_ImageObserverTag ); if ( m_SelectedImageMask != nullptr ) m_SelectedImageMask->RemoveObserver( m_ImageMaskObserverTag ); if ( m_SelectedPlanarFigure != nullptr ) m_SelectedPlanarFigure->RemoveObserver( m_PlanarFigureObserverTag ); while(this->m_CalculationThread->isRunning()) // wait until thread has finished { itksys::SystemTools::Delay(100); } delete this->m_CalculationThread; } + void QmitkImageStatisticsView::CreateQtPartControl(QWidget *parent) { if (m_Controls == nullptr) { m_Controls = new Ui::QmitkImageStatisticsViewControls; m_Controls->setupUi(parent); CreateConnections(); m_Controls->m_ErrorMessageLabel->hide(); - m_Controls->m_StatisticsWidgetStack->setCurrentIndex( 0 ); + m_Controls->m_StatisticsWidgetStack->setCurrentIndex(0); m_Controls->m_BinSizeFrame->setVisible(false); } } +void QmitkImageStatisticsView::OnPageSuccessfullyLoaded() +{ + berry::IPreferencesService* prefService = berry::WorkbenchPlugin::GetDefault()->GetPreferencesService(); + m_StylePref = prefService->GetSystemPreferences()->Node(berry::QtPreferences::QT_STYLES_NODE); + + QString styleName = m_StylePref->Get(berry::QtPreferences::QT_STYLE_NAME, ""); + + if (styleName == ":/org.blueberry.ui.qt/darkstyle.qss") + { + this->m_Controls->m_JSHistogram->SendCommand( + "changeTheme('dark')"); + } + else + { + this->m_Controls->m_JSHistogram->SendCommand( + "changeTheme(default)"); + } +} + void QmitkImageStatisticsView::CreateConnections() { if ( m_Controls ) { connect( (QObject*)(this->m_Controls->m_ButtonCopyHistogramToClipboard), SIGNAL(clicked()),(QObject*) this, SLOT(OnClipboardHistogramButtonClicked()) ); connect( (QObject*)(this->m_Controls->m_ButtonCopyStatisticsToClipboard), SIGNAL(clicked()),(QObject*) this, SLOT(OnClipboardStatisticsButtonClicked()) ); connect( (QObject*)(this->m_Controls->m_IgnoreZerosCheckbox), SIGNAL(clicked()),(QObject*) this, SLOT(OnIgnoreZerosCheckboxClicked()) ); connect( (QObject*) this->m_CalculationThread, SIGNAL(finished()),this, SLOT( OnThreadedStatisticsCalculationEnds()),Qt::QueuedConnection); connect( (QObject*) this, SIGNAL(StatisticsUpdate()),this, SLOT( RequestStatisticsUpdate()), Qt::QueuedConnection); connect( (QObject*) this->m_Controls->m_StatisticsTable, SIGNAL(cellDoubleClicked(int,int)),this, SLOT( JumpToCoordinates(int,int)) ); connect((QObject*)(this->m_Controls->m_barRadioButton), SIGNAL(clicked()), (QObject*)(this), SLOT(OnBarRadioButtonSelected())); connect((QObject*)(this->m_Controls->m_lineRadioButton), SIGNAL(clicked()), (QObject*)(this), SLOT(OnLineRadioButtonSelected())); connect( (QObject*) (this->m_Controls->m_HistogramBinSizeSpinbox), SIGNAL(editingFinished()), this, SLOT(OnHistogramBinSizeBoxValueChanged())); connect((QObject*)(this->m_Controls->m_UseDefaultBinSizeBox), SIGNAL(clicked()), (QObject*) this, SLOT(OnDefaultBinSizeBoxChanged())); connect((QObject*)(this->m_Controls->m_ShowSubchartCheckBox), SIGNAL(clicked()), (QObject*) this, SLOT(OnShowSubchartBoxChanged())); + connect((QObject*)(this->m_Controls->m_JSHistogram), SIGNAL(PageSuccessfullyLoaded()), (QObject*) this, SLOT(OnPageSuccessfullyLoaded())); } } void QmitkImageStatisticsView::OnDefaultBinSizeBoxChanged() { m_Controls->m_BinSizeFrame->setVisible(!m_Controls->m_UseDefaultBinSizeBox->isChecked()); if (m_CalculationThread != nullptr){ m_Controls->m_HistogramBinSizeSpinbox->setValue(m_CalculationThread->GetHistogramBinSize()); m_CalculationThread->SetUseDefaultNBins(m_Controls->m_UseDefaultBinSizeBox->isChecked()); } this->UpdateStatistics(); } void QmitkImageStatisticsView::OnShowSubchartBoxChanged() { this->m_Controls->m_JSHistogram->SetAppearance( this->m_Controls->m_lineRadioButton->isChecked(), this->m_Controls->m_ShowSubchartCheckBox->isChecked()); QString useLineChart = "false"; if (this->m_Controls->m_lineRadioButton->isChecked()) useLineChart = "true"; QString showSubchart = "false"; if (this->m_Controls->m_ShowSubchartCheckBox->isChecked()) showSubchart = "true"; this->m_Controls->m_JSHistogram->SendCommand( "ReloadChart(" + useLineChart + "," + showSubchart + ")"); } void QmitkImageStatisticsView::OnBarRadioButtonSelected() { this->m_Controls->m_JSHistogram->TransformView("bar"); } void QmitkImageStatisticsView::OnLineRadioButtonSelected() { this->m_Controls->m_JSHistogram->TransformView("line"); } void QmitkImageStatisticsView::PartClosed(const berry::IWorkbenchPartReference::Pointer& ) { } void QmitkImageStatisticsView::OnTimeChanged(const itk::EventObject& e) { if (this->m_SelectedDataNodes.isEmpty() || this->m_SelectedImage == nullptr) return; const mitk::SliceNavigationController::GeometryTimeEvent* timeEvent = dynamic_cast(&e); assert(timeEvent != nullptr); int timestep = timeEvent->GetPos(); if (this->m_SelectedImage->GetTimeSteps() > 1) { for (int x = 0; x < this->m_Controls->m_StatisticsTable->columnCount(); x++) { for (int y = 0; y < this->m_Controls->m_StatisticsTable->rowCount(); y++) { QTableWidgetItem* item = this->m_Controls->m_StatisticsTable->item(y, x); if (item == nullptr) break; if (x == timestep) { item->setBackgroundColor(Qt::yellow); } else { if (y % 2 == 0) item->setBackground(this->m_Controls->m_StatisticsTable->palette().base()); else item->setBackground(this->m_Controls->m_StatisticsTable->palette().alternateBase()); } } } this->m_Controls->m_StatisticsTable->viewport()->update(); } if ((this->m_SelectedImage->GetTimeSteps() == 1 && timestep == 0) || this->m_SelectedImage->GetTimeSteps() > 1) { // display histogram for selected timestep this->m_Controls->m_JSHistogram->ClearHistogram(); QmitkImageStatisticsCalculationThread::HistogramType::Pointer histogram = this->m_CalculationThread->GetTimeStepHistogram(timestep); if (histogram.IsNotNull()) { bool closedFigure = this->m_CalculationThread->GetStatisticsUpdateSuccessFlag(); if ( closedFigure ) { this->m_Controls->m_JSHistogram->ComputeHistogram( - histogram.GetPointer(), this->m_Controls->m_lineRadioButton->isChecked(), this->m_Controls->m_ShowSubchartCheckBox->isChecked() ); + histogram.GetPointer(), this->m_Controls->m_lineRadioButton->isChecked(), this->m_Controls->m_ShowSubchartCheckBox->isChecked()); } //this->m_Controls->m_JSHistogram->ComputeHistogram(histogram.GetPointer()); /*else { m_Controls->m_JSHistogram->ComputeIntensityProfile(timestep, true); }*/ // this->m_Controls->m_JSHistogram->SignalGraphChanged(); // hacky way to make sure the protected SignalGraphChanged() is called //if (this->m_Controls->m_JSHistogram->GetUseLineGraph()) //{ //this->m_Controls->m_JSHistogram->OnBarRadioButtonSelected(); //this->m_Controls->m_JSHistogram->OnLineRadioButtonSelected(); //} //else //{ //this->m_Controls->m_JSHistogram->OnLineRadioButtonSelected(); //this->m_Controls->m_JSHistogram->OnBarRadioButtonSelected(); //} } } } void QmitkImageStatisticsView::JumpToCoordinates(int row ,int col) { if(m_SelectedDataNodes.isEmpty()) { MITK_WARN("QmitkImageStatisticsView") << "No data node selected for statistics calculation." ; return; } mitk::Point3D world; if (row==5 && !m_WorldMinList.empty()) world = m_WorldMinList[col]; else if (row==4 && !m_WorldMaxList.empty()) world = m_WorldMaxList[col]; else return; mitk::IRenderWindowPart* part = this->GetRenderWindowPart(); if (part) { part->GetQmitkRenderWindow("axial")->GetSliceNavigationController()->SelectSliceByPoint(world); part->GetQmitkRenderWindow("sagittal")->GetSliceNavigationController()->SelectSliceByPoint(world); part->GetQmitkRenderWindow("coronal")->GetSliceNavigationController()->SelectSliceByPoint(world); mitk::SliceNavigationController::GeometryTimeEvent timeEvent(this->m_SelectedImage->GetTimeGeometry(), col); part->GetQmitkRenderWindow("axial")->GetSliceNavigationController()->SetGeometryTime(timeEvent); } } void QmitkImageStatisticsView::OnIgnoreZerosCheckboxClicked() { emit StatisticsUpdate(); } void QmitkImageStatisticsView::OnClipboardHistogramButtonClicked() { if ( m_CurrentStatisticsValid && !( m_SelectedPlanarFigure != nullptr)) { const unsigned int t = this->GetRenderWindowPart()->GetTimeNavigationController()->GetTime()->GetPos(); typedef mitk::ImageStatisticsCalculator::HistogramType HistogramType; const HistogramType *histogram = this->m_CalculationThread->GetTimeStepHistogram(t).GetPointer(); QString clipboard( "Measurement \t Frequency\n" ); for ( HistogramType::ConstIterator it = histogram->Begin(); it != histogram->End(); ++it ) { if( m_Controls->m_HistogramBinSizeSpinbox->value() == 1.0) { clipboard = clipboard.append( "%L1 \t %L2\n" ) .arg( it.GetMeasurementVector()[0], 0, 'f', 0 ) .arg( it.GetFrequency() ); } else { clipboard = clipboard.append( "%L1 \t %L2\n" ) .arg( it.GetMeasurementVector()[0], 0, 'f', 2 ) .arg( it.GetFrequency() ); } } QApplication::clipboard()->setText( clipboard, QClipboard::Clipboard ); } // If a (non-closed) PlanarFigure is selected, display a line profile widget else if ( m_CurrentStatisticsValid && (m_SelectedPlanarFigure != nullptr )) { /*auto intensity = m_Controls->m_JSHistogram->GetFrequency(); auto pixel = m_Controls->m_JSHistogram->GetMeasurement(); QString clipboard( "Pixel \t Intensity\n" ); auto j = pixel.begin(); for (auto i = intensity.begin(); i < intensity.end(); i++) { assert(j != pixel.end()); clipboard = clipboard.append( "%L1 \t %L2\n" ) .arg( (*j).toString()) .arg( (*i).toString()); j++; } QApplication::clipboard()->setText( clipboard, QClipboard::Clipboard ); */ } else { QApplication::clipboard()->clear(); } } void QmitkImageStatisticsView::OnClipboardStatisticsButtonClicked() { QLocale tempLocal; QLocale::setDefault(QLocale(QLocale::English, QLocale::UnitedStates)); if ( m_CurrentStatisticsValid && !( m_SelectedPlanarFigure != nullptr)) { const std::vector &statistics = this->m_CalculationThread->GetStatisticsData(); // Set time borders for for loop ;) unsigned int startT, endT; if(this->m_Controls->m_CheckBox4dCompleteTable->checkState()==Qt::CheckState::Unchecked) { startT = this->GetRenderWindowPart()->GetTimeNavigationController()->GetTime()-> GetPos(); endT = startT+1; } else { startT = 0; endT = statistics.size(); } QVector< QVector > statisticsTable; QStringList headline; // Create Headline headline << " " << "Mean" << "Median" << "StdDev" << "RMS" << "Max" << "Min" << "NumberOfVoxels" << "Skewness" << "Kurtosis" << "Uniformity" << "Entropy" << "MPP" << "UPP" << "V [mm³]"; for(int i=0;i row; row.append(headline.at(i)); statisticsTable.append(row); } // Fill Table for(unsigned int t=startT;tGetMean()) << QString::number(statistics[t]->GetMedian()) << QString::number(statistics[t]->GetStd()) << QString::number(statistics[t]->GetRMS()) << QString::number(statistics[t]->GetMax()) << QString::number(statistics[t]->GetMin()) << QString::number(statistics[t]->GetN()) << QString::number(statistics[t]->GetSkewness()) << QString::number(statistics[t]->GetKurtosis()) << QString::number(statistics[t]->GetUniformity()) << QString::number(statistics[t]->GetEntropy()) << QString::number(statistics[t]->GetMPP()) << QString::number(statistics[t]->GetUPP()) << QString::number(m_Controls->m_StatisticsTable->item(7, 0)->data(Qt::DisplayRole).toDouble()); for(int z=0;zsetText(clipboard, QClipboard::Clipboard); } else { QApplication::clipboard()->clear(); } QLocale::setDefault(tempLocal); } void QmitkImageStatisticsView::OnSelectionChanged( berry::IWorkbenchPart::Pointer /*part*/, const QList &nodes ) { if (this->m_Visible) { this->SelectionChanged( nodes ); } else { this->m_DataNodeSelectionChanged = true; } } void QmitkImageStatisticsView::SelectionChanged(const QList &selectedNodes) { if( this->m_StatisticsUpdatePending ) { this->m_DataNodeSelectionChanged = true; return; // not ready for new data now! } if (selectedNodes.size() == this->m_SelectedDataNodes.size()) { int i = 0; for (; i < selectedNodes.size(); ++i) { if (selectedNodes.at(i) != this->m_SelectedDataNodes.at(i)) { break; } } // node selection did not change if (i == selectedNodes.size()) return; } //reset the feature image and image mask field m_Controls->m_SelectedFeatureImageLabel->setText("None"); m_Controls->m_SelectedMaskLabel->setText("None"); this->ReinitData(); if (selectedNodes.isEmpty()) { m_Controls->m_JSHistogram->ClearHistogram(); m_Controls->m_lineRadioButton->setEnabled(true); m_Controls->m_barRadioButton->setEnabled(true); m_Controls->m_HistogramBinSizeSpinbox->setEnabled(true); m_Controls->m_HistogramBinSizeCaptionLabel->setEnabled(true); // m_Controls->m_HistogramBinSizeLabel->setEnabled(true); m_Controls->m_InfoLabel->setText(QString("")); // m_Controls->horizontalLayout_3->setEnabled(false); m_Controls->groupBox->setEnabled(false); m_Controls->groupBox_3->setEnabled(false); } else { // m_Controls->horizontalLayout_3->setEnabled(true); m_Controls->groupBox->setEnabled(true); m_Controls->groupBox_3->setEnabled(true); } if(selectedNodes.size() == 1 || selectedNodes.size() == 2) { bool isBinary = false; selectedNodes.value(0)->GetBoolProperty("binary",isBinary); mitk::NodePredicateDataType::Pointer isLabelSet = mitk::NodePredicateDataType::New("LabelSetImage"); isBinary |= isLabelSet->CheckNode(selectedNodes.value(0)); if(isBinary) { m_Controls->m_JSHistogram->ClearHistogram(); m_Controls->m_lineRadioButton->setEnabled(true); m_Controls->m_barRadioButton->setEnabled(true); m_Controls->m_HistogramBinSizeSpinbox->setEnabled(true); m_Controls->m_HistogramBinSizeCaptionLabel->setEnabled(true); // m_Controls->m_HistogramBinSizeLabel->setEnabled(true); m_Controls->m_InfoLabel->setText(QString("")); } for (int i= 0; i< selectedNodes.size(); ++i) { this->m_SelectedDataNodes.push_back(selectedNodes.at(i)); } this->m_DataNodeSelectionChanged = false; this->m_Controls->m_ErrorMessageLabel->setText( "" ); this->m_Controls->m_ErrorMessageLabel->hide(); emit StatisticsUpdate(); } else { this->m_DataNodeSelectionChanged = false; } } void QmitkImageStatisticsView::ReinitData() { while( this->m_CalculationThread->isRunning()) // wait until thread has finished { itksys::SystemTools::Delay(100); } if(this->m_SelectedImage != nullptr) { this->m_SelectedImage->RemoveObserver( this->m_ImageObserverTag); this->m_SelectedImage = nullptr; } if(this->m_SelectedImageMask != nullptr) { this->m_SelectedImageMask->RemoveObserver( this->m_ImageMaskObserverTag); this->m_SelectedImageMask = nullptr; } if(this->m_SelectedPlanarFigure != nullptr) { this->m_SelectedPlanarFigure->RemoveObserver( this->m_PlanarFigureObserverTag); this->m_SelectedPlanarFigure = nullptr; } this->m_SelectedDataNodes.clear(); this->m_StatisticsUpdatePending = false; m_Controls->m_ErrorMessageLabel->setText( "" ); m_Controls->m_ErrorMessageLabel->hide(); this->InvalidateStatisticsTableView(); m_Controls->m_JSHistogram->ClearHistogram(); m_Controls->m_StatisticsWidgetStack->setCurrentIndex( 0 ); } void QmitkImageStatisticsView::OnThreadedStatisticsCalculationEnds() { std::stringstream message; message << ""; m_Controls->m_ErrorMessageLabel->setText( message.str().c_str() ); m_Controls->m_ErrorMessageLabel->hide(); this->WriteStatisticsToGUI(); } void QmitkImageStatisticsView::UpdateStatistics() { mitk::IRenderWindowPart* renderPart = this->GetRenderWindowPart(); if ( renderPart == nullptr ) { this->m_StatisticsUpdatePending = false; return; } m_WorldMinList.clear(); m_WorldMaxList.clear(); // classify selected nodes mitk::NodePredicateDataType::Pointer isImage = mitk::NodePredicateDataType::New("Image"); mitk::NodePredicateDataType::Pointer isLabelSet = mitk::NodePredicateDataType::New("LabelSetImage"); mitk::NodePredicateOr::Pointer imagePredicate = mitk::NodePredicateOr::New(isImage, isLabelSet); std::string maskName = std::string(); std::string maskType = std::string(); std::string featureImageName = std::string(); unsigned int maskDimension = 0; // reset data from last run ITKCommandType::Pointer changeListener = ITKCommandType::New(); changeListener->SetCallbackFunction( this, &QmitkImageStatisticsView::SelectedDataModified ); mitk::DataNode::Pointer planarFigureNode; for( int i= 0 ; i < this->m_SelectedDataNodes.size(); ++i) { mitk::PlanarFigure::Pointer planarFig = dynamic_cast(this->m_SelectedDataNodes.at(i)->GetData()); if( imagePredicate->CheckNode(this->m_SelectedDataNodes.at(i)) ) { bool isMask = false; this->m_SelectedDataNodes.at(i)->GetPropertyValue("binary", isMask); isMask |= isLabelSet->CheckNode(this->m_SelectedDataNodes.at(i)); if( this->m_SelectedImageMask == nullptr && isMask) { this->m_SelectedImageMask = dynamic_cast(this->m_SelectedDataNodes.at(i)->GetData()); this->m_ImageMaskObserverTag = this->m_SelectedImageMask->AddObserver(itk::ModifiedEvent(), changeListener); maskName = this->m_SelectedDataNodes.at(i)->GetName(); maskType = m_SelectedImageMask->GetNameOfClass(); maskDimension = 3; } else if( !isMask ) { if(this->m_SelectedImage == nullptr) { this->m_SelectedImage = static_cast(this->m_SelectedDataNodes.at(i)->GetData()); this->m_ImageObserverTag = this->m_SelectedImage->AddObserver(itk::ModifiedEvent(), changeListener); } featureImageName = this->m_SelectedDataNodes.at(i)->GetName(); } } else if (planarFig.IsNotNull()) { if(this->m_SelectedPlanarFigure == nullptr) { this->m_SelectedPlanarFigure = planarFig; this->m_PlanarFigureObserverTag = this->m_SelectedPlanarFigure->AddObserver(mitk::EndInteractionPlanarFigureEvent(), changeListener); maskName = this->m_SelectedDataNodes.at(i)->GetName(); maskType = this->m_SelectedPlanarFigure->GetNameOfClass(); maskDimension = 2; planarFigureNode = m_SelectedDataNodes.at(i); } } else { std::stringstream message; message << "" << "Invalid data node type!" << ""; m_Controls->m_ErrorMessageLabel->setText( message.str().c_str() ); m_Controls->m_ErrorMessageLabel->show(); } } if(maskName == "") { maskName = "None"; maskType = ""; maskDimension = 0; } if(featureImageName == "") { featureImageName = "None"; } if (m_SelectedPlanarFigure != nullptr && m_SelectedImage == nullptr) { mitk::DataStorage::SetOfObjects::ConstPointer parentSet = this->GetDataStorage()->GetSources(planarFigureNode); for (unsigned int i=0; iSize(); i++) { mitk::DataNode::Pointer node = parentSet->ElementAt(i); if( imagePredicate->CheckNode(node) ) { bool isMask = false; node->GetPropertyValue("binary", isMask); isMask |= isLabelSet->CheckNode(node); if( !isMask ) { if(this->m_SelectedImage == nullptr) { this->m_SelectedImage = static_cast(node->GetData()); this->m_ImageObserverTag = this->m_SelectedImage->AddObserver(itk::ModifiedEvent(), changeListener); } } } } } unsigned int timeStep = renderPart->GetTimeNavigationController()->GetTime()->GetPos(); if ( m_SelectedImage != nullptr && m_SelectedImage->IsInitialized()) { // Check if a the selected image is a multi-channel image. If yes, statistics // cannot be calculated currently. if ( m_SelectedImage->GetPixelType().GetNumberOfComponents() > 1 ) { std::stringstream message; message << "Multi-component images not supported."; m_Controls->m_ErrorMessageLabel->setText( message.str().c_str() ); m_Controls->m_ErrorMessageLabel->show(); this->InvalidateStatisticsTableView(); m_Controls->m_StatisticsWidgetStack->setCurrentIndex( 0 ); m_Controls->m_JSHistogram->ClearHistogram(); m_CurrentStatisticsValid = false; this->m_StatisticsUpdatePending = false; m_Controls->m_lineRadioButton->setEnabled(true); m_Controls->m_barRadioButton->setEnabled(true); m_Controls->m_HistogramBinSizeSpinbox->setEnabled(true); m_Controls->m_HistogramBinSizeCaptionLabel->setEnabled(true); // m_Controls->m_HistogramBinSizeLabel->setEnabled(true); m_Controls->m_InfoLabel->setText(QString("")); return; } std::stringstream maskLabel; maskLabel << maskName; if ( maskDimension > 0 ) { maskLabel << " [" << maskDimension << "D " << maskType << "]"; } m_Controls->m_SelectedMaskLabel->setText( maskLabel.str().c_str() ); m_Controls->m_SelectedFeatureImageLabel->setText(featureImageName.c_str()); // check time step validity if(m_SelectedImage->GetDimension() <= 3 && timeStep > m_SelectedImage->GetDimension(3)-1) { timeStep = m_SelectedImage->GetDimension(3)-1; } // Add the used mask time step to the mask label so the user knows which mask time step was used // if the image time step is bigger than the total number of mask time steps (see // ImageStatisticsCalculator::ExtractImageAndMask) if (m_SelectedImageMask != nullptr) { unsigned int maskTimeStep = timeStep; if (maskTimeStep >= m_SelectedImageMask->GetTimeSteps()) { maskTimeStep = m_SelectedImageMask->GetTimeSteps() - 1; } m_Controls->m_SelectedMaskLabel->setText(m_Controls->m_SelectedMaskLabel->text() + QString(" (t=") + QString::number(maskTimeStep) + QString(")")); } // check if the segmentation mask is empty if (m_SelectedImageMask != NULL) { typedef itk::Image ItkImageType; typedef itk::ImageRegionConstIteratorWithIndex< ItkImageType > IteratorType; ItkImageType::Pointer itkImage; mitk::CastToItkImage( m_SelectedImageMask, itkImage ); bool empty = true; IteratorType it( itkImage, itkImage->GetLargestPossibleRegion() ); while ( !it.IsAtEnd() ) { ItkImageType::ValueType val = it.Get(); if ( val != 0 ) { empty = false; break; } ++it; } if ( empty ) { std::stringstream message; message << "Empty segmentation mask selected..."; m_Controls->m_ErrorMessageLabel->setText( message.str().c_str() ); m_Controls->m_ErrorMessageLabel->show(); return; } } //// initialize thread and trigger it this->m_CalculationThread->SetIgnoreZeroValueVoxel( m_Controls->m_IgnoreZerosCheckbox->isChecked() ); this->m_CalculationThread->Initialize( m_SelectedImage, m_SelectedImageMask, m_SelectedPlanarFigure ); this->m_CalculationThread->SetTimeStep( timeStep ); std::stringstream message; message << "Calculating statistics..."; m_Controls->m_ErrorMessageLabel->setText( message.str().c_str() ); m_Controls->m_ErrorMessageLabel->show(); try { // Compute statistics // this->m_CalculationThread->SetUseDefaultBinSize(m_Controls->m_UseDefaultBinSizeBox->isChecked()); this->m_CalculationThread->start(); } catch ( const mitk::Exception& e) { std::stringstream message; message << "" << e.GetDescription() << ""; m_Controls->m_ErrorMessageLabel->setText( message.str().c_str() ); m_Controls->m_ErrorMessageLabel->show(); this->m_StatisticsUpdatePending = false; } catch ( const std::runtime_error &e ) { // In case of exception, print error message on GUI std::stringstream message; message << "" << e.what() << ""; m_Controls->m_ErrorMessageLabel->setText( message.str().c_str() ); m_Controls->m_ErrorMessageLabel->show(); this->m_StatisticsUpdatePending = false; } catch ( const std::exception &e ) { MITK_ERROR << "Caught exception: " << e.what(); // In case of exception, print error message on GUI std::stringstream message; message << "Error! Unequal Dimensions of Image and Segmentation. No recompute possible "; m_Controls->m_ErrorMessageLabel->setText( message.str().c_str() ); m_Controls->m_ErrorMessageLabel->show(); this->m_StatisticsUpdatePending = false; } } else { this->m_StatisticsUpdatePending = false; } } void QmitkImageStatisticsView::SelectedDataModified() { if( !m_StatisticsUpdatePending ) { emit StatisticsUpdate(); } } void QmitkImageStatisticsView::NodeRemoved(const mitk::DataNode *node) { while(this->m_CalculationThread->isRunning()) // wait until thread has finished { itksys::SystemTools::Delay(100); } if (node->GetData() == m_SelectedImage) { m_SelectedImage = nullptr; } } void QmitkImageStatisticsView::RequestStatisticsUpdate() { if ( !m_StatisticsUpdatePending ) { if(this->m_DataNodeSelectionChanged) { this->SelectionChanged(this->GetCurrentSelection()); } else { this->m_StatisticsUpdatePending = true; this->UpdateStatistics(); } } if (this->GetRenderWindowPart()) this->GetRenderWindowPart()->RequestUpdate(); } void QmitkImageStatisticsView::OnHistogramBinSizeBoxValueChanged() { if (m_Controls->m_HistogramBinSizeSpinbox->value() != m_HistogramBinSize) { m_HistogramBinSize = m_Controls->m_HistogramBinSizeSpinbox->value(); this->m_CalculationThread->SetHistogramBinSize(m_Controls->m_HistogramBinSizeSpinbox->value()); this->UpdateStatistics(); } } void QmitkImageStatisticsView::WriteStatisticsToGUI() { disconnect((QObject*)(this->m_Controls->m_JSHistogram), SIGNAL(PageSuccessfullyLoaded()), 0, 0); + connect((QObject*)(this->m_Controls->m_JSHistogram), SIGNAL(PageSuccessfullyLoaded()), (QObject*) this, SLOT(OnPageSuccessfullyLoaded())); m_Controls->m_lineRadioButton->setEnabled(true); m_Controls->m_barRadioButton->setEnabled(true); m_Controls->m_HistogramBinSizeSpinbox->setEnabled(true); m_Controls->m_HistogramBinSizeCaptionLabel->setEnabled(true); // m_Controls->m_HistogramBinSizeLabel->setEnabled(true); m_Controls->m_InfoLabel->setText(QString("")); if(m_DataNodeSelectionChanged) { this->m_StatisticsUpdatePending = false; this->RequestStatisticsUpdate(); return; // stop visualization of results and calculate statistics of new selection } if ( this->m_CalculationThread->GetStatisticsUpdateSuccessFlag()) { if ( this->m_CalculationThread->GetStatisticsChangedFlag() ) { // Do not show any error messages m_Controls->m_ErrorMessageLabel->hide(); m_CurrentStatisticsValid = true; } if (m_Controls->m_barRadioButton->isChecked()) { //m_Controls->m_JSHistogram->OnBarRadioButtonSelected(); } m_Controls->m_StatisticsWidgetStack->setCurrentIndex( 0 ); m_Controls->m_HistogramBinSizeSpinbox->setValue( this->m_CalculationThread->GetHistogramBinSize() ); //m_Controls->m_JSHistogram->ComputeHistogram( this->m_CalculationThread->GetTimeStepHistogram(this->m_CalculationThread->GetTimeStep()).GetPointer() ); this->FillStatisticsTableView( this->m_CalculationThread->GetStatisticsData(), this->m_CalculationThread->GetStatisticsImage()); m_CurrentStatisticsValid = true; } else { m_Controls->m_SelectedMaskLabel->setText( "None" ); m_Controls->m_ErrorMessageLabel->setText( m_CalculationThread->GetLastErrorMessage().c_str() ); m_Controls->m_ErrorMessageLabel->show(); // Clear statistics and histogram this->InvalidateStatisticsTableView(); m_Controls->m_StatisticsWidgetStack->setCurrentIndex( 0 ); //m_Controls->m_JSHistogram->clearHistogram(); m_CurrentStatisticsValid = false; // If a (non-closed) PlanarFigure is selected, display a line profile widget if ( m_SelectedPlanarFigure != nullptr ) { // Check if the (closed) planar figure is out of bounds and so no image mask could be calculated--> Intensity Profile can not be calculated bool outOfBounds = false; if ( m_SelectedPlanarFigure->IsClosed() && m_SelectedImageMask == nullptr) { outOfBounds = true; std::stringstream message; message << "Planar figure is on a rotated image plane or outside the image bounds."; m_Controls->m_InfoLabel->setText(message.str().c_str()); } // check whether PlanarFigure is initialized const mitk::PlaneGeometry *planarFigurePlaneGeometry = m_SelectedPlanarFigure->GetPlaneGeometry(); if ( !(planarFigurePlaneGeometry == nullptr || outOfBounds)) { unsigned int timeStep = this->GetRenderWindowPart()->GetTimeNavigationController()->GetTime()->GetPos(); m_Controls->m_JSHistogram->SetImage(this->m_CalculationThread->GetStatisticsImage()); m_Controls->m_JSHistogram->SetPlanarFigure(m_SelectedPlanarFigure); connect((QObject*)(this->m_Controls->m_JSHistogram), SIGNAL(PageSuccessfullyLoaded()), (QObject*) this, SLOT(OnLineRadioButtonSelected())); m_Controls->m_JSHistogram->ComputeIntensityProfile(timeStep, true); //m_Controls->m_JSHistogram->ComputeIntensityProfile(timeStep); //this->ComputeIntensityProfile(m_SelectedPlanarFigure, this->m_CalculationThread->GetStatisticsImage(), timeStep, true); m_Controls->m_lineRadioButton->setChecked(true); m_Controls->m_lineRadioButton->setEnabled(false); m_Controls->m_barRadioButton->setEnabled(false); m_Controls->m_HistogramBinSizeSpinbox->setEnabled(false); m_Controls->m_HistogramBinSizeCaptionLabel->setEnabled(false); // m_Controls->m_HistogramBinSizeLabel->setEnabled(false); this->FillLinearProfileStatisticsTableView( this->m_CalculationThread->GetStatisticsImage() ); std::stringstream message; message << "Only linegraph available for an intensity profile!"; m_Controls->m_InfoLabel->setText(message.str().c_str()); m_CurrentStatisticsValid = true; } else { // Clear statistics, histogram, and GUI this->InvalidateStatisticsTableView(); m_Controls->m_StatisticsWidgetStack->setCurrentIndex( 0 ); m_Controls->m_JSHistogram->ClearHistogram(); m_CurrentStatisticsValid = false; m_Controls->m_ErrorMessageLabel->hide(); m_Controls->m_SelectedMaskLabel->setText( "None" ); this->m_StatisticsUpdatePending = false; m_Controls->m_lineRadioButton->setEnabled(true); m_Controls->m_barRadioButton->setEnabled(true); m_Controls->m_HistogramBinSizeSpinbox->setEnabled(true); m_Controls->m_HistogramBinSizeCaptionLabel->setEnabled(true); // m_Controls->m_HistogramBinSizeLabel->setEnabled(true); if (!outOfBounds) m_Controls->m_InfoLabel->setText(QString("")); return; // Sebastian Wirkert: would suggest to remove this return, since it is an artifact of previous // code architecture. However, removing it will cause m_StatisticsUpdatePending to be set to false // in case of invalid statistics which it previously was not. } } } + berry::IPreferencesService* prefService = berry::WorkbenchPlugin::GetDefault()->GetPreferencesService(); + m_StylePref = prefService->GetSystemPreferences()->Node(berry::QtPreferences::QT_STYLES_NODE); + this->m_StatisticsUpdatePending = false; } void QmitkImageStatisticsView::FillStatisticsTableView( const std::vector &s, const mitk::Image *image ) { this->m_Controls->m_StatisticsTable->setColumnCount(image->GetTimeSteps()); this->m_Controls->m_StatisticsTable->horizontalHeader()->setVisible(image->GetTimeSteps() > 1); // Set Checkbox for complete copy of statistic table if(image->GetTimeSteps()>1) { this->m_Controls->m_CheckBox4dCompleteTable->setEnabled(true); } else { this->m_Controls->m_CheckBox4dCompleteTable->setEnabled(false); this->m_Controls->m_CheckBox4dCompleteTable->setChecked(false); } int decimals = 2; mitk::PixelType doublePix = mitk::MakeScalarPixelType< double >(); mitk::PixelType floatPix = mitk::MakeScalarPixelType< float >(); if (image->GetPixelType()==doublePix || image->GetPixelType()==floatPix) { decimals = 5; } for (unsigned int t = 0; t < image->GetTimeSteps(); t++) { this->m_Controls->m_StatisticsTable->setHorizontalHeaderItem(t, new QTableWidgetItem(QString::number(t))); if (s[t]->GetMaxIndex().size()==3) { mitk::Point3D index, max, min; index[0] = s[t]->GetMaxIndex()[0]; index[1] = s[t]->GetMaxIndex()[1]; index[2] = s[t]->GetMaxIndex()[2]; m_SelectedImage->GetGeometry()->IndexToWorld(index, max); this->m_WorldMaxList.push_back(max); index[0] = s[t]->GetMinIndex()[0]; index[1] = s[t]->GetMinIndex()[1]; index[2] = s[t]->GetMinIndex()[2]; m_SelectedImage->GetGeometry()->IndexToWorld(index, min); this->m_WorldMinList.push_back(min); } typedef mitk::ImageStatisticsCalculator::StatisticsContainer::RealType RealType; this->m_Controls->m_StatisticsTable->setItem( 0, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetMean(), 0, 'f', decimals) ) ); this->m_Controls->m_StatisticsTable->setItem( 1, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetMedian(), 0, 'f', decimals) ) ); this->m_Controls->m_StatisticsTable->setItem( 2, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetStd(), 0, 'f', decimals) ) ); this->m_Controls->m_StatisticsTable->setItem( 3, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetRMS(), 0, 'f', decimals) ) ); QString max; max.append(QString("%1").arg(s[t]->GetMax(), 0, 'f', decimals)); max += " ("; for (unsigned int i=0; iGetMaxIndex().size(); i++) { max += QString::number(s[t]->GetMaxIndex()[i]); if (iGetMaxIndex().size()-1) max += ","; } max += ")"; this->m_Controls->m_StatisticsTable->setItem( 4, t, new QTableWidgetItem( max ) ); QString min; min.append(QString("%1").arg(s[t]->GetMin(), 0, 'f', decimals)); min += " ("; for (unsigned int i=0; iGetMinIndex().size(); i++) { min += QString::number(s[t]->GetMinIndex()[i]); if (iGetMinIndex().size()-1) min += ","; } min += ")"; this->m_Controls->m_StatisticsTable->setItem( 5, t, new QTableWidgetItem( min ) ); this->m_Controls->m_StatisticsTable->setItem( 6, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetN()) ) ); const mitk::BaseGeometry *geometry = image->GetGeometry(); if ( geometry != nullptr ) { const mitk::Vector3D &spacing = image->GetGeometry()->GetSpacing(); double volume = spacing[0] * spacing[1] * spacing[2] * (double) s[t]->GetN(); this->m_Controls->m_StatisticsTable->setItem( 7, t, new QTableWidgetItem( QString("%1").arg(volume, 0, 'f', decimals) ) ); } else { this->m_Controls->m_StatisticsTable->setItem( 7, t, new QTableWidgetItem( "NA" ) ); } //statistics of higher order should have 5 decimal places because they used to be very small this->m_Controls->m_StatisticsTable->setItem( 8, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetSkewness(), 0, 'f', 5) ) ); this->m_Controls->m_StatisticsTable->setItem( 9, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetKurtosis(), 0, 'f', 5) ) ); this->m_Controls->m_StatisticsTable->setItem( 10, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetUniformity(), 0, 'f', 5) ) ); this->m_Controls->m_StatisticsTable->setItem( 11, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetEntropy(), 0, 'f', 5) ) ); this->m_Controls->m_StatisticsTable->setItem( 12, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetMPP(), 0, 'f', decimals) ) ); this->m_Controls->m_StatisticsTable->setItem( 13, t, new QTableWidgetItem( QString("%1").arg(s[t]->GetUPP(), 0, 'f', 5) ) ); } this->m_Controls->m_StatisticsTable->resizeColumnsToContents(); int height = STAT_TABLE_BASE_HEIGHT; if (this->m_Controls->m_StatisticsTable->horizontalHeader()->isVisible()) height += this->m_Controls->m_StatisticsTable->horizontalHeader()->height(); if (this->m_Controls->m_StatisticsTable->horizontalScrollBar()->isVisible()) height += this->m_Controls->m_StatisticsTable->horizontalScrollBar()->height(); this->m_Controls->m_StatisticsTable->setMinimumHeight(height); // make sure the current timestep's column is highlighted (and the correct histogram is displayed) unsigned int t = this->GetRenderWindowPart()->GetTimeNavigationController()->GetTime()-> GetPos(); mitk::SliceNavigationController::GeometryTimeEvent timeEvent(this->m_SelectedImage->GetTimeGeometry(), t); this->OnTimeChanged(timeEvent); t = std::min(image->GetTimeSteps() - 1, t); // See bug 18340 /*QString hotspotMean; hotspotMean.append(QString("%1").arg(s[t].GetHotspotStatistics().GetMean(), 0, 'f', decimals)); hotspotMean += " ("; for (int i=0; im_Controls->m_StatisticsTable->setItem( 7, t, new QTableWidgetItem( hotspotMean ) ); QString hotspotMax; hotspotMax.append(QString("%1").arg(s[t].GetHotspotStatistics().GetMax(), 0, 'f', decimals)); hotspotMax += " ("; for (int i=0; im_Controls->m_StatisticsTable->setItem( 8, t, new QTableWidgetItem( hotspotMax ) ); QString hotspotMin; hotspotMin.append(QString("%1").arg(s[t].GetHotspotStatistics().GetMin(), 0, 'f', decimals)); hotspotMin += " ("; for (int i=0; im_Controls->m_StatisticsTable->setItem( 9, t, new QTableWidgetItem( hotspotMin ) );*/ } std::vector QmitkImageStatisticsView::CalculateStatisticsForPlanarFigure( const mitk::Image *image) { std::vector result; int decimals = 2; mitk::PixelType doublePix = mitk::MakeScalarPixelType< double >(); mitk::PixelType floatPix = mitk::MakeScalarPixelType< float >(); if (image->GetPixelType()==doublePix || image->GetPixelType()==floatPix) { decimals = 5; } mitk::ImageStatisticsCalculator::StatisticsContainer::Pointer stats = m_Controls->m_JSHistogram->GetStatistics(); typedef mitk::ImageStatisticsCalculator::StatisticsContainer::RealType RealType; RealType maxVal = std::numeric_limits::max(); if (stats->GetMean() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetMean(), 0, 'f', decimals)); } if (stats->GetMedian() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetMedian(), 0, 'f', decimals)); } if (stats->GetStd() == maxVal) { result.push_back(QString("NA")); } else { result.push_back( QString("%1").arg( stats->GetStd(), 0, 'f', decimals)); } if (stats->GetRMS() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg( stats->GetRMS(), 0, 'f', decimals)); } if (stats->GetMax() == maxVal) { result.push_back(QString("NA")); } else { QString max; max.append(QString("%1").arg(stats->GetMax(), 0, 'f', decimals)); result.push_back(max); } if (stats->GetMin() == maxVal) { result.push_back(QString("NA")); } else { QString min; min.append(QString("%1").arg(stats->GetMin(), 0, 'f', decimals)); result.push_back(min); } if (stats->GetN() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetN())); } result.push_back(QString("NA")); //statistics of higher order should have 5 decimal places because they used to be very small if (stats->GetSkewness() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetSkewness(), 0, 'f', 5 )); } if (stats->GetKurtosis() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetKurtosis(), 0, 'f', 5) ); } if (stats->GetUniformity() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetUniformity(), 0, 'f', 5) ); } if (stats->GetEntropy() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetEntropy(), 0, 'f', 5) ); } if (stats->GetMPP() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetMPP(), 0, 'f', decimals) ); } if (stats->GetUPP() == maxVal) { result.push_back(QString("NA")); } else { result.push_back(QString("%1").arg(stats->GetUPP(), 0, 'f', 5) ); } return result; } void QmitkImageStatisticsView::FillLinearProfileStatisticsTableView( const mitk::Image *image ) { this->m_Controls->m_StatisticsTable->setColumnCount(1); this->m_Controls->m_StatisticsTable->horizontalHeader()->setVisible(false); m_PlanarFigureStatistics = this->CalculateStatisticsForPlanarFigure(image); for (unsigned int i = 0; i< m_PlanarFigureStatistics.size(); i++) { this->m_Controls->m_StatisticsTable->setItem( i, 0, new QTableWidgetItem(m_PlanarFigureStatistics[i] )); } this->m_Controls->m_StatisticsTable->resizeColumnsToContents(); int height = STAT_TABLE_BASE_HEIGHT; if (this->m_Controls->m_StatisticsTable->horizontalHeader()->isVisible()) height += this->m_Controls->m_StatisticsTable->horizontalHeader()->height(); if (this->m_Controls->m_StatisticsTable->horizontalScrollBar()->isVisible()) height += this->m_Controls->m_StatisticsTable->horizontalScrollBar()->height(); this->m_Controls->m_StatisticsTable->setMinimumHeight(height); } void QmitkImageStatisticsView::InvalidateStatisticsTableView() { this->m_Controls->m_StatisticsTable->horizontalHeader()->setVisible(false); this->m_Controls->m_StatisticsTable->setColumnCount(1); for ( int i = 0; i < this->m_Controls->m_StatisticsTable->rowCount(); ++i ) { { this->m_Controls->m_StatisticsTable->setItem( i, 0, new QTableWidgetItem( "NA" ) ); } } this->m_Controls->m_StatisticsTable->setMinimumHeight(STAT_TABLE_BASE_HEIGHT); } void QmitkImageStatisticsView::Activated() { } void QmitkImageStatisticsView::Deactivated() { } void QmitkImageStatisticsView::Visible() { m_Visible = true; mitk::IRenderWindowPart* renderWindow = GetRenderWindowPart(); if (renderWindow) { itk::ReceptorMemberCommand::Pointer cmdTimeEvent = itk::ReceptorMemberCommand::New(); cmdTimeEvent->SetCallbackFunction(this, &QmitkImageStatisticsView::OnTimeChanged); // It is sufficient to add the observer to the axial render window since the GeometryTimeEvent // is always triggered by all views. m_TimeObserverTag = renderWindow->GetQmitkRenderWindow("axial")-> GetSliceNavigationController()-> AddObserver(mitk::SliceNavigationController::GeometryTimeEvent(nullptr, 0), cmdTimeEvent); } if (m_DataNodeSelectionChanged) { if (this->IsCurrentSelectionValid()) { this->SelectionChanged(this->GetCurrentSelection()); } else { this->SelectionChanged(this->GetDataManagerSelection()); } m_DataNodeSelectionChanged = false; } } void QmitkImageStatisticsView::Hidden() { m_Visible = false; // The slice navigation controller observer is removed here instead of in the destructor. // If it was called in the destructor, the application would freeze because the view's // destructor gets called after the render windows have been destructed. if ( m_TimeObserverTag != 0 ) { mitk::IRenderWindowPart* renderWindow = GetRenderWindowPart(); if (renderWindow) { renderWindow->GetQmitkRenderWindow("axial")->GetSliceNavigationController()-> RemoveObserver( m_TimeObserverTag ); } m_TimeObserverTag = 0; } } void QmitkImageStatisticsView::SetFocus() { } diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.h b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.h index 5593ae2e65..cda79aaa5b 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.h +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.h @@ -1,195 +1,201 @@ /*=================================================================== The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #ifndef QmitkImageStatisticsView_H__INCLUDED #define QmitkImageStatisticsView_H__INCLUDED #include "ui_QmitkImageStatisticsViewControls.h" // Qmitk includes #include #include "QmitkStepperAdapter.h" #include "QmitkImageStatisticsCalculationThread.h" #include // mitk includes #include #include #include +#include + /*! \brief QmitkImageStatisticsView is a bundle that allows statistics calculation from images. Three modes are supported: 1. Statistics of one image, 2. Statistics of an image and a segmentation, 3. Statistics of an image and a Planar Figure. The statistics calculation is realized in a seperate thread to keep the gui accessable during calculation. \ingroup Plugins/org.mitk.gui.qt.measurementtoolbox */ class QmitkImageStatisticsView : public QmitkAbstractView, public mitk::ILifecycleAwarePart, public berry::IPartListener { Q_OBJECT private: /*! \ Convenient typedefs */ typedef mitk::DataStorage::SetOfObjects ConstVector; typedef ConstVector::ConstPointer ConstVectorPointer; typedef ConstVector::ConstIterator ConstVectorIterator; typedef std::map< mitk::Image *, mitk::ImageStatisticsCalculator::Pointer > ImageStatisticsMapType; typedef QList SelectedDataNodeVectorType; typedef itk::SimpleMemberCommand< QmitkImageStatisticsView > ITKCommandType; public: /*! \brief default constructor */ QmitkImageStatisticsView(QObject *parent=nullptr, const char *name=nullptr); /*! \brief default destructor */ virtual ~QmitkImageStatisticsView(); /*! \brief method for creating the widget containing the application controls, like sliders, buttons etc. */ virtual void CreateQtPartControl(QWidget *parent) override; /*! \brief method for creating the connections of main and control widget */ virtual void CreateConnections(); /*! \brief Is called from the selection mechanism once the data manager selection has changed*/ virtual void OnSelectionChanged(berry::IWorkbenchPart::Pointer part, const QList& nodes) override; static const std::string VIEW_ID; static const int STAT_TABLE_BASE_HEIGHT; public slots: /** \brief Called when the statistics update is finished, sets the results to GUI.*/ void OnThreadedStatisticsCalculationEnds(); /** \brief Update bin size for histogram resolution. */ void OnHistogramBinSizeBoxValueChanged(); protected slots: /** \brief Saves the histogram to the clipboard */ void OnClipboardHistogramButtonClicked(); /** \brief Saves the statistics to the clipboard */ void OnClipboardStatisticsButtonClicked(); /** \brief Indicates if zeros should be excluded from statistics calculation */ void OnIgnoreZerosCheckboxClicked( ); /** \brief Checks if update is possible and calls StatisticsUpdate() possible */ void RequestStatisticsUpdate(); /** \brief Jump to coordinates stored in the double clicked cell */ void JumpToCoordinates(int row, int col); /** \brief Toogle GUI elements if histogram default bin size checkbox value changed. */ void OnDefaultBinSizeBoxChanged(); void OnShowSubchartBoxChanged(); void OnBarRadioButtonSelected(); void OnLineRadioButtonSelected(); + void OnPageSuccessfullyLoaded(); + signals: /** \brief Method to set the data to the member and start the threaded statistics update */ void StatisticsUpdate(); protected: /** \brief Writes the calculated statistics to the GUI */ void FillStatisticsTableView(const std::vector &s, const mitk::Image *image ); std::vector CalculateStatisticsForPlanarFigure( const mitk::Image *image); void FillLinearProfileStatisticsTableView( const mitk::Image *image ); /** \brief Removes statistics from the GUI */ void InvalidateStatisticsTableView(); /** \brief Recalculate statistics for currently selected image and mask and * update the GUI. */ void UpdateStatistics(); /** \brief Listener for progress events to update progress bar. */ void UpdateProgressBar(); /** \brief Removes any cached images which are no longer referenced elsewhere. */ void RemoveOrphanImages(); /** \brief Computes an Intensity Profile along line and updates the histogram widget with it. */ void ComputeIntensityProfile( mitk::PlanarLine* line ); /** \brief Removes all Observers to images, masks and planar figures and sets corresponding members to zero */ void ClearObservers(); virtual void Activated() override; virtual void Deactivated() override; virtual void Visible() override; virtual void Hidden() override; virtual void SetFocus() override; /** \brief Method called when itkModifiedEvent is called by selected data. */ void SelectedDataModified(); /** \brief Method called when the data manager selection changes */ void SelectionChanged(const QList &selectedNodes); /** \brief Method called to remove old selection when a new selection is present */ void ReinitData(); /** \brief writes the statistics to the gui*/ void WriteStatisticsToGUI(); void NodeRemoved(const mitk::DataNode *node) override; /** \brief Is called right before the view closes (before the destructor) */ virtual void PartClosed(const berry::IWorkbenchPartReference::Pointer& ) override; /** \brief Is called from the image navigator once the time step has changed */ void OnTimeChanged( const itk::EventObject& ); /** \brief Required for berry::IPartListener */ virtual Events::Types GetPartEventTypes() const override { return Events::CLOSED; } // member variables Ui::QmitkImageStatisticsViewControls *m_Controls; // if you have a planar figure selected, the statistics values will be saved in this one. std::vector m_PlanarFigureStatistics; QmitkImageStatisticsCalculationThread* m_CalculationThread; QmitkStepperAdapter* m_TimeStepperAdapter; unsigned int m_CurrentTime; QString m_Clipboard; // Image and mask data mitk::Image* m_SelectedImage; mitk::Image* m_SelectedImageMask; mitk::PlanarFigure* m_SelectedPlanarFigure; // observer tags long m_ImageObserverTag; long m_ImageMaskObserverTag; long m_PlanarFigureObserverTag; long m_TimeObserverTag; SelectedDataNodeVectorType m_SelectedDataNodes; bool m_CurrentStatisticsValid; bool m_StatisticsUpdatePending; bool m_StatisticsIntegrationPending; bool m_DataNodeSelectionChanged; bool m_Visible; double m_HistogramBinSize; std::vector m_WorldMinList; std::vector m_WorldMaxList; + + berry::IPreferences::Pointer m_StylePref; }; #endif // QmitkImageStatisticsView_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.moviemaker/files.cmake b/Plugins/org.mitk.gui.qt.moviemaker/files.cmake index cc6775f241..16a46cc729 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/files.cmake +++ b/Plugins/org.mitk.gui.qt.moviemaker/files.cmake @@ -1,55 +1,55 @@ set(SRC_CPP_FILES ) set(INTERNAL_CPP_FILES QmitkAnimationItem.cpp QmitkAnimationItemDelegate.cpp QmitkAnimationWidget.cpp QmitkMovieMakerView.cpp QmitkOrbitAnimationItem.cpp QmitkOrbitAnimationWidget.cpp QmitkSliceAnimationItem.cpp QmitkSliceAnimationWidget.cpp QmitkTimeSliceAnimationItem.cpp QmitkTimeSliceAnimationWidget.cpp mitkMovieMakerPluginActivator.cpp QmitkScreenshotMaker.cpp ) set(UI_FILES src/internal/QmitkMovieMakerView.ui src/internal/QmitkOrbitAnimationWidget.ui src/internal/QmitkSliceAnimationWidget.ui src/internal/QmitkTimeSliceAnimationWidget.ui src/internal/QmitkScreenshotMakerControls.ui ) set(MOC_H_FILES src/internal/mitkMovieMakerPluginActivator.h src/internal/QmitkAnimationItemDelegate.h src/internal/QmitkAnimationWidget.h src/internal/QmitkMovieMakerView.h src/internal/QmitkOrbitAnimationWidget.h src/internal/QmitkSliceAnimationWidget.h src/internal/QmitkTimeSliceAnimationWidget.h src/internal/QmitkScreenshotMaker.h ) set(CACHED_RESOURCE_FILES - resources/camera-video.png - resources/screenshot_maker.png + resources/video-camera.svg + resources/camera.svg plugin.xml ) set(QRC_FILES resources/QmitkMovieMaker.qrc ) foreach(file ${SRC_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/${file}) endforeach(file ${SRC_CPP_FILES}) foreach(file ${INTERNAL_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/internal/${file}) endforeach(file ${INTERNAL_CPP_FILES}) diff --git a/Plugins/org.mitk.gui.qt.moviemaker/plugin.xml b/Plugins/org.mitk.gui.qt.moviemaker/plugin.xml index 21dfa996c7..ae56883781 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/plugin.xml +++ b/Plugins/org.mitk.gui.qt.moviemaker/plugin.xml @@ -1,46 +1,46 @@ + icon="resources/video-camera.svg" > Take movies of your data + icon="resources/camera.svg" > Take screenshots of your data diff --git a/Plugins/org.mitk.gui.qt.moviemaker/resources/camera-video.png b/Plugins/org.mitk.gui.qt.moviemaker/resources/camera-video.png deleted file mode 100644 index d9d484927f..0000000000 Binary files a/Plugins/org.mitk.gui.qt.moviemaker/resources/camera-video.png and /dev/null differ diff --git a/Plugins/org.mitk.gui.qt.moviemaker/resources/camera.svg b/Plugins/org.mitk.gui.qt.moviemaker/resources/camera.svg new file mode 100644 index 0000000000..52e9af960e --- /dev/null +++ b/Plugins/org.mitk.gui.qt.moviemaker/resources/camera.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Plugins/org.mitk.gui.qt.moviemaker/resources/screenshot_maker.png b/Plugins/org.mitk.gui.qt.moviemaker/resources/screenshot_maker.png deleted file mode 100644 index ee2840db6d..0000000000 Binary files a/Plugins/org.mitk.gui.qt.moviemaker/resources/screenshot_maker.png and /dev/null differ diff --git a/Plugins/org.mitk.gui.qt.moviemaker/resources/video-camera.svg b/Plugins/org.mitk.gui.qt.moviemaker/resources/video-camera.svg new file mode 100644 index 0000000000..8cb3a48fdf --- /dev/null +++ b/Plugins/org.mitk.gui.qt.moviemaker/resources/video-camera.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesViewControls.ui b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesViewControls.ui index 5853d2f7a1..b3ed23046b 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesViewControls.ui +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesViewControls.ui @@ -1,61 +1,52 @@ QmitkMultiLabelSegmentationUtilitiesViewControls 0 0 289 418 0 0 QmitkTemplate icon-size: 32px 32px 0 - ::tab -{ - background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 palette(light), stop:1 palette(midlight)); -} - -::tab:selected -{ - background: palette(highlight); - color: palette(highlighted-text); -} + -1 0 diff --git a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionViewControls.ui b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionViewControls.ui index ac9bf83f81..9f398951c2 100755 --- a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionViewControls.ui +++ b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionViewControls.ui @@ -1,136 +1,179 @@ QmitkPointSetInteractionControls 0 0 376 580 0 0 QmitkPointSetInteractionView 6 - + + 9 + + + 9 + + + 9 + + 9 2 - + + 2 + + + 2 + + + 2 + + 2 Selected point set: none 2 - + + 2 + + + 2 + + + 2 + + 2 0 0 Add new point set 0 0 + + + 50 + false + false + + Current pointset 2 - + + 2 + + + 2 + + + 2 + + 2 0 0 Qt::Vertical 20 40 QmitkPointListWidget QWidget
QmitkPointListWidget.h
mitkDataNode.h mitkPointSet.h
diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/files.cmake b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/files.cmake index 8971845b1e..a288aa192b 100755 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/files.cmake +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/files.cmake @@ -1,37 +1,38 @@ set(SRC_CPP_FILES QmitkStdMultiWidgetEditor.cpp ) set(INTERNAL_CPP_FILES org_mitk_gui_qt_stdmultiwidgeteditor_Activator.cpp QmitkStdMultiWidgetEditorPreferencePage.cpp ) set(MOC_H_FILES src/QmitkStdMultiWidgetEditor.h src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.h src/internal/QmitkStdMultiWidgetEditorPreferencePage.h ) set(UI_FILES src/internal/QmitkStdMultiWidgetEditorPreferencePage.ui ) set(CACHED_RESOURCE_FILES plugin.xml - resources/StdMultiWidgetEditor.png + resources/StdMultiWidgetEditor.svg + resources/StdMultiWidgetEditor-DarkTheme.svg ) set(QRC_FILES ) set(CPP_FILES ) foreach(file ${SRC_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/${file}) endforeach(file ${SRC_CPP_FILES}) foreach(file ${INTERNAL_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/internal/${file}) endforeach(file ${INTERNAL_CPP_FILES}) diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/plugin.xml b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/plugin.xml index 21c86c2a5e..b81ac4d1f1 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/plugin.xml +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/plugin.xml @@ -1,28 +1,28 @@ diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor-DarkTheme.png b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor-DarkTheme.png new file mode 100644 index 0000000000..95fd5e06ef Binary files /dev/null and b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor-DarkTheme.png differ diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor-DarkTheme.svg b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor-DarkTheme.svg new file mode 100644 index 0000000000..42638cf93a --- /dev/null +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor-DarkTheme.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor.png b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor.png index 00cf383e5b..6f0544f063 100644 Binary files a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor.png and b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor.png differ diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor.svg b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor.svg new file mode 100644 index 0000000000..9d13716906 --- /dev/null +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/resources/StdMultiWidgetEditor.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.cpp b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.cpp index 540eb5e16d..eb50eef586 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.cpp @@ -1,271 +1,271 @@ /*=================================================================== The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #include #include "QmitkStdMultiWidgetEditorPreferencePage.h" #include #include #include #include QmitkStdMultiWidgetEditorPreferencePage::QmitkStdMultiWidgetEditorPreferencePage() : m_Preferences(nullptr), m_Ui(new Ui::QmitkStdMultiWidgetEditorPreferencePage), m_Control(nullptr) { } QmitkStdMultiWidgetEditorPreferencePage::~QmitkStdMultiWidgetEditorPreferencePage() { } void QmitkStdMultiWidgetEditorPreferencePage::CreateQtControl(QWidget* parent) { m_Control = new QWidget(parent); m_Ui->setupUi(m_Control); berry::IPreferencesService* prefService = berry::Platform::GetPreferencesService(); Q_ASSERT(prefService); m_Preferences = prefService->GetSystemPreferences()->Node(QmitkStdMultiWidgetEditor::EDITOR_ID); QObject::connect( m_Ui->m_ColorButton1, SIGNAL( clicked() ) , this, SLOT( ColorChooserButtonClicked() ) ); QObject::connect( m_Ui->m_ColorButton2, SIGNAL( clicked() ) , this, SLOT( ColorChooserButtonClicked() ) ); QObject::connect( m_Ui->m_ResetButton, SIGNAL( clicked() ) , this, SLOT( ResetPreferencesAndGUI() ) ); QObject::connect( m_Ui->m_RenderingMode, SIGNAL(activated(int) ) , this, SLOT( ChangeRenderingMode(int) ) ); QObject::connect( m_Ui->m_RenderWindowDecorationColor, SIGNAL( clicked() ) , this, SLOT( ColorChooserButtonClicked() ) ); QObject::connect( m_Ui->m_RenderWindowChooser, SIGNAL(activated(int) ) , this, SLOT( OnWidgetComboBoxChanged(int) ) ); QObject::connect( m_Ui->m_RenderWindowDecorationText, SIGNAL(textChanged(QString) ) , this, SLOT( AnnotationTextChanged(QString) ) ); this->Update(); } QWidget* QmitkStdMultiWidgetEditorPreferencePage::GetQtControl() const { return m_Control; } void QmitkStdMultiWidgetEditorPreferencePage::Init(berry::IWorkbench::Pointer) { } void QmitkStdMultiWidgetEditorPreferencePage::PerformCancel() { } bool QmitkStdMultiWidgetEditorPreferencePage::PerformOk() { m_Preferences->Put("widget1 corner annotation", m_WidgetAnnotation[0]); m_Preferences->Put("widget2 corner annotation", m_WidgetAnnotation[1]); m_Preferences->Put("widget3 corner annotation", m_WidgetAnnotation[2]); m_Preferences->Put("widget4 corner annotation", m_WidgetAnnotation[3]); m_Preferences->Put("widget1 decoration color", m_WidgetDecorationColor[0]); m_Preferences->Put("widget2 decoration color", m_WidgetDecorationColor[1]); m_Preferences->Put("widget3 decoration color", m_WidgetDecorationColor[2]); m_Preferences->Put("widget4 decoration color", m_WidgetDecorationColor[3]); m_Preferences->Put("widget1 first background color", m_WidgetBackgroundColor1[0]); m_Preferences->Put("widget2 first background color", m_WidgetBackgroundColor1[1]); m_Preferences->Put("widget3 first background color", m_WidgetBackgroundColor1[2]); m_Preferences->Put("widget4 first background color", m_WidgetBackgroundColor1[3]); m_Preferences->Put("widget1 second background color", m_WidgetBackgroundColor2[0]); m_Preferences->Put("widget2 second background color", m_WidgetBackgroundColor2[1]); m_Preferences->Put("widget3 second background color", m_WidgetBackgroundColor2[2]); m_Preferences->Put("widget4 second background color", m_WidgetBackgroundColor2[3]); m_Preferences->PutInt("crosshair gap size", m_Ui->m_CrosshairGapSize->value()); m_Preferences->PutBool("Use constrained zooming and panning" , m_Ui->m_EnableFlexibleZooming->isChecked()); m_Preferences->PutBool("Show level/window widget", m_Ui->m_ShowLevelWindowWidget->isChecked()); m_Preferences->PutBool("PACS like mouse interaction", m_Ui->m_PACSLikeMouseMode->isChecked()); m_Preferences->PutInt("Rendering Mode", m_Ui->m_RenderingMode->currentIndex()); return true; } void QmitkStdMultiWidgetEditorPreferencePage::Update() { //Note: there should be default preferences already defined in the //QmitkStdMultiWidgetEditor::InitializePreferences(). Therefore, //all default values here are not relevant. //gradient background colors - m_WidgetBackgroundColor1[0] = m_Preferences->Get("widget1 first background color", "#000000"); - m_WidgetBackgroundColor2[0] = m_Preferences->Get("widget1 second background color", "#000000"); - m_WidgetBackgroundColor1[1] = m_Preferences->Get("widget2 first background color", "#000000"); - m_WidgetBackgroundColor2[1] = m_Preferences->Get("widget2 second background color", "#000000"); - m_WidgetBackgroundColor1[2] = m_Preferences->Get("widget3 first background color", "#000000"); - m_WidgetBackgroundColor2[2] = m_Preferences->Get("widget3 second background color", "#000000"); - m_WidgetBackgroundColor1[3] = m_Preferences->Get("widget4 first background color", "#191919"); - m_WidgetBackgroundColor2[3] = m_Preferences->Get("widget4 second background color", "#7F7F7F"); + m_WidgetBackgroundColor1[0] = m_Preferences->Get("widget1 first background color", "#1d1d1c"); + m_WidgetBackgroundColor2[0] = m_Preferences->Get("widget1 second background color", "#1d1d1c"); + m_WidgetBackgroundColor1[1] = m_Preferences->Get("widget2 first background color", "#1d1d1c"); + m_WidgetBackgroundColor2[1] = m_Preferences->Get("widget2 second background color", "#1d1d1c"); + m_WidgetBackgroundColor1[2] = m_Preferences->Get("widget3 first background color", "#1d1d1c"); + m_WidgetBackgroundColor2[2] = m_Preferences->Get("widget3 second background color", "#1d1d1c"); + m_WidgetBackgroundColor1[3] = m_Preferences->Get("widget4 first background color", "#1d1d1c"); + m_WidgetBackgroundColor2[3] = m_Preferences->Get("widget4 second background color", "#adb1b6"); //decoration colors - m_WidgetDecorationColor[0] = m_Preferences->Get("widget1 decoration color", "#FF0000"); - m_WidgetDecorationColor[1] = m_Preferences->Get("widget2 decoration color", "#00FF00"); - m_WidgetDecorationColor[2] = m_Preferences->Get("widget3 decoration color", "#0000FF"); - m_WidgetDecorationColor[3] = m_Preferences->Get("widget4 decoration color", "#FFFF00"); + m_WidgetDecorationColor[0] = m_Preferences->Get("widget1 decoration color", "#ff0000"); + m_WidgetDecorationColor[1] = m_Preferences->Get("widget2 decoration color", "#0fad00"); + m_WidgetDecorationColor[2] = m_Preferences->Get("widget3 decoration color", "#0010a5"); + m_WidgetDecorationColor[3] = m_Preferences->Get("widget4 decoration color", "#fec500"); //annotation text m_WidgetAnnotation[0] = m_Preferences->Get("widget1 corner annotation", "Axial"); m_WidgetAnnotation[1] = m_Preferences->Get("widget2 corner annotation", "Sagittal"); m_WidgetAnnotation[2] = m_Preferences->Get("widget3 corner annotation", "Coronal"); m_WidgetAnnotation[3] = m_Preferences->Get("widget4 corner annotation", "3D"); //Ui stuff int index = m_Ui->m_RenderWindowChooser->currentIndex(); QColor firstBackgroundColor(m_WidgetBackgroundColor1[index]); QColor secondBackgroundColor(m_WidgetBackgroundColor2[index]); QColor widgetColor(m_WidgetDecorationColor[index]); this->SetStyleSheetToColorChooserButton(firstBackgroundColor, m_Ui->m_ColorButton1); this->SetStyleSheetToColorChooserButton(secondBackgroundColor, m_Ui->m_ColorButton2); this->SetStyleSheetToColorChooserButton(widgetColor, m_Ui->m_RenderWindowDecorationColor); m_Ui->m_RenderWindowDecorationText->setText(m_WidgetAnnotation[index]); m_Ui->m_EnableFlexibleZooming->setChecked(m_Preferences->GetBool("Use constrained zooming and panning", true)); m_Ui->m_ShowLevelWindowWidget->setChecked(m_Preferences->GetBool("Show level/window widget", true)); m_Ui->m_PACSLikeMouseMode->setChecked(m_Preferences->GetBool("PACS like mouse interaction", false)); int mode= m_Preferences->GetInt("Rendering Mode",0); m_Ui->m_RenderingMode->setCurrentIndex(mode); m_Ui->m_CrosshairGapSize->setValue(m_Preferences->GetInt("crosshair gap size", 32)); } void QmitkStdMultiWidgetEditorPreferencePage::ColorChooserButtonClicked() { unsigned int widgetIndex = m_Ui->m_RenderWindowChooser->currentIndex(); if(widgetIndex > 3) { MITK_ERROR << "Selected index for unknown."; return; } QObject *senderObj = sender(); // This will give Sender button //find out last used color and set it QColor initialColor; if( senderObj->objectName() == m_Ui->m_ColorButton1->objectName()) { initialColor = QColor(m_WidgetBackgroundColor1[widgetIndex]); }else if( senderObj->objectName() == m_Ui->m_ColorButton2->objectName()) { initialColor = QColor(m_WidgetBackgroundColor2[widgetIndex]); }else if( senderObj->objectName() == m_Ui->m_RenderWindowDecorationColor->objectName()) { initialColor = QColor(m_WidgetDecorationColor[widgetIndex]); } //get the new color QColor newcolor = QColorDialog::getColor(initialColor); if(!newcolor.isValid()) { newcolor = initialColor; } this->SetStyleSheetToColorChooserButton(newcolor, static_cast(senderObj)); //convert it to std string and apply it if( senderObj->objectName() == m_Ui->m_ColorButton1->objectName()) { m_WidgetBackgroundColor1[widgetIndex] = newcolor.name(); } else if( senderObj->objectName() == m_Ui->m_ColorButton2->objectName()) { m_WidgetBackgroundColor2[widgetIndex] = newcolor.name(); } else if( senderObj->objectName() == m_Ui->m_RenderWindowDecorationColor->objectName()) { m_WidgetDecorationColor[widgetIndex] = newcolor.name(); } } void QmitkStdMultiWidgetEditorPreferencePage::SetStyleSheetToColorChooserButton(QColor backgroundcolor, QPushButton* button) { button->setAutoFillBackground(true); QString styleSheet = "background-color:rgb("; styleSheet.append(QString::number(backgroundcolor.red())); styleSheet.append(","); styleSheet.append(QString::number(backgroundcolor.green())); styleSheet.append(","); styleSheet.append(QString::number(backgroundcolor.blue())); styleSheet.append(")"); button->setStyleSheet(styleSheet); } void QmitkStdMultiWidgetEditorPreferencePage::AnnotationTextChanged(QString text) { unsigned int widgetIndex = m_Ui->m_RenderWindowChooser->currentIndex(); if( widgetIndex > 3) { MITK_INFO << "Selected index for unknown widget."; return; } m_WidgetAnnotation[widgetIndex] = text; } void QmitkStdMultiWidgetEditorPreferencePage::ResetPreferencesAndGUI() { m_Preferences->Clear(); this->Update(); } void QmitkStdMultiWidgetEditorPreferencePage::OnWidgetComboBoxChanged(int i) { if( i > 3) { MITK_ERROR << "Selected unknown widget."; return; } QColor widgetColor(m_WidgetDecorationColor[i]); QColor gradientBackground1(m_WidgetBackgroundColor1[i]); QColor gradientBackground2(m_WidgetBackgroundColor2[i]); this->SetStyleSheetToColorChooserButton(widgetColor, m_Ui->m_RenderWindowDecorationColor); this->SetStyleSheetToColorChooserButton(gradientBackground1, m_Ui->m_ColorButton1); this->SetStyleSheetToColorChooserButton(gradientBackground2, m_Ui->m_ColorButton2); m_Ui->m_RenderWindowDecorationText->setText(m_WidgetAnnotation[i]); } void QmitkStdMultiWidgetEditorPreferencePage::ChangeRenderingMode(int i) { if( i == 0 ) { m_CurrentRenderingMode = "Standard"; } else if( i == 1 ) { m_CurrentRenderingMode = "Multisampling"; } else if( i == 2 ) { m_CurrentRenderingMode = "DepthPeeling"; } }