diff --git a/cMake/UseLibPack6x.cmake b/cMake/UseLibPack6x.cmake index 7e4916cc6..738404e4c 100644 --- a/cMake/UseLibPack6x.cmake +++ b/cMake/UseLibPack6x.cmake @@ -278,28 +278,29 @@ set(ODE_FOUND TRUE) # OCC set(OCC_INCLUDE_DIR ${FREECAD_LIBPACK_DIR}/include/OpenCascade) set(OCC_LIBRARIES - TKFillet - TKMesh - TKernel - TKG2d - TKG3d - TKMath - TKIGES - TKSTL - TKShHealing - TKXSBase - TKBool - TKBO - TKBRep - TKTopAlgo - TKGeomAlgo - TKGeomBase - TKOffset - TKPrim - TKSTEP - TKSTEPBase - TKSTEPAttr - TKHLR + TKFillet + TKMesh + TKernel + TKG2d + TKG3d + TKMath + TKIGES + TKSTL + TKShHealing + TKXSBase + TKBool + TKBO + TKBRep + TKTopAlgo + TKGeomAlgo + TKGeomBase + TKOffset + TKPrim + TKSTEP + TKSTEPBase + TKSTEPAttr + TKHLR + TKFeat ) set(OCC_LIBRARY_DIR ${FREECAD_LIBPACK_DIR}/lib diff --git a/cMake/UseLibPack7x.cmake b/cMake/UseLibPack7x.cmake index 7b8e71b94..b74fc595c 100644 --- a/cMake/UseLibPack7x.cmake +++ b/cMake/UseLibPack7x.cmake @@ -284,28 +284,29 @@ set(OPENCV_FOUND TRUE) # OCC set(OCC_INCLUDE_DIR ${FREECAD_LIBPACK_DIR}/include/OpenCascade) set(OCC_LIBRARIES - TKFillet - TKMesh - TKernel - TKG2d - TKG3d - TKMath - TKIGES - TKSTL - TKShHealing - TKXSBase - TKBool - TKBO - TKBRep - TKTopAlgo - TKGeomAlgo - TKGeomBase - TKOffset - TKPrim - TKSTEP - TKSTEPBase - TKSTEPAttr - TKHLR + TKFillet + TKMesh + TKernel + TKG2d + TKG3d + TKMath + TKIGES + TKSTL + TKShHealing + TKXSBase + TKBool + TKBO + TKBRep + TKTopAlgo + TKGeomAlgo + TKGeomBase + TKOffset + TKPrim + TKSTEP + TKSTEPBase + TKSTEPAttr + TKHLR + TKFeat ) set(OCC_LIBRARY_DIR ${FREECAD_LIBPACK_DIR}/lib diff --git a/cMake/UseLibPack8x.cmake b/cMake/UseLibPack8x.cmake index d75740064..f77a3afcd 100644 --- a/cMake/UseLibPack8x.cmake +++ b/cMake/UseLibPack8x.cmake @@ -284,16 +284,16 @@ set(OPENCV_FOUND TRUE) # OCC set(OCC_INCLUDE_DIR ${FREECAD_LIBPACK_DIR}/include/OpenCascade) set(OCC_LIBRARIES - TKFillet - TKMesh - TKernel - TKG2d - TKG3d - TKMath - TKIGES - TKSTL - TKShHealing - TKXSBase + TKFillet + TKMesh + TKernel + TKG2d + TKG3d + TKMath + TKIGES + TKSTL + TKShHealing + TKXSBase TKBool TKXSBase TKXCAF @@ -302,18 +302,19 @@ set(OCC_LIBRARIES TKSTEP TKIGES TKXDESTEP - TKXDEIGES - TKBO - TKBRep - TKTopAlgo - TKGeomAlgo - TKGeomBase - TKOffset - TKPrim - TKSTEP - TKSTEPBase - TKSTEPAttr - TKHLR + TKXDEIGES + TKBO + TKBRep + TKTopAlgo + TKGeomAlgo + TKGeomBase + TKOffset + TKPrim + TKSTEP + TKSTEPBase + TKSTEPAttr + TKHLR + TKFeat ) set(OCC_LIBRARY_DIR ${FREECAD_LIBPACK_DIR}/lib diff --git a/src/App/PropertyPythonObject.cpp b/src/App/PropertyPythonObject.cpp index aa5534e61..1b8d14652 100644 --- a/src/App/PropertyPythonObject.cpp +++ b/src/App/PropertyPythonObject.cpp @@ -294,6 +294,7 @@ void PropertyPythonObject::Restore(Base::XMLReader &reader) else { bool load_json=false; bool load_pickle=false; + bool load_failed=false; std::string buffer = reader.getAttribute("value"); if (reader.hasAttribute("encoded") && strcmp(reader.getAttribute("encoded"),"yes") == 0) { @@ -312,7 +313,16 @@ void PropertyPythonObject::Restore(Base::XMLReader &reader) end = buffer.end(); if (reader.hasAttribute("module") && reader.hasAttribute("class")) { Py::Module mod(PyImport_ImportModule(reader.getAttribute("module")),true); - this->object = PyInstance_NewRaw(mod.getAttr(reader.getAttribute("class")).ptr(), 0); + PyObject* cls = mod.getAttr(reader.getAttribute("class")).ptr(); + if (PyClass_Check(cls)) { + this->object = PyInstance_NewRaw(cls, 0); + } + else if (PyType_Check(cls)) { + this->object = PyType_GenericAlloc((PyTypeObject*)cls, 0); + } + else { + throw Py::TypeError("neither class nor type object"); + } load_json = true; } else if (boost::regex_search(start, end, what, pickle)) { @@ -327,6 +337,8 @@ void PropertyPythonObject::Restore(Base::XMLReader &reader) catch (Py::Exception&) { Base::PyException e; // extract the Python error text Base::Console().Warning("PropertyPythonObject::Restore: %s\n", e.what()); + this->object = Py::None(); + load_failed = true; } aboutToSetValue(); @@ -334,7 +346,7 @@ void PropertyPythonObject::Restore(Base::XMLReader &reader) this->fromString(buffer); else if (load_pickle) this->loadPickle(buffer); - else + else if (!load_failed) Base::Console().Warning("PropertyPythonObject::Restore: unsupported serialisation: %s\n", buffer.c_str()); restoreObject(reader); hasSetValue(); diff --git a/src/Gui/3Dconnexion/GuiApplicationNativeEventAwareWin32.cpp b/src/Gui/3Dconnexion/GuiApplicationNativeEventAwareWin32.cpp index 425a7af7a..4403fd22b 100644 --- a/src/Gui/3Dconnexion/GuiApplicationNativeEventAwareWin32.cpp +++ b/src/Gui/3Dconnexion/GuiApplicationNativeEventAwareWin32.cpp @@ -202,8 +202,9 @@ void Gui::GUIApplicationNativeEventAware::Move3d(HANDLE device, std::vectorsetTranslations(x, y, z); - motionEvent->setRotations(rx, ry, rz); + //motionEvent->setTranslations(x, y, z); + //motionEvent->setRotations(rx, ry, rz); + motionEvent->setMotionData(x, y, z, rx, ry, rz); this->postEvent(currentWidget, motionEvent); } diff --git a/src/Gui/CMakeLists.txt b/src/Gui/CMakeLists.txt index b4bf7c5a5..2e984d49d 100644 --- a/src/Gui/CMakeLists.txt +++ b/src/Gui/CMakeLists.txt @@ -104,6 +104,7 @@ set(Gui_MOC_HDRS DlgCommandsImp.h DlgCustomizeImp.h DlgCustomizeSpaceball.h + DlgCustomizeSpNavSettings.h DlgDisplayPropertiesImp.h DlgEditorImp.h DlgGeneralImp.h @@ -190,6 +191,7 @@ SET(Gui_UIC_SRCS DlgAuthorization.ui DlgChooseIcon.ui DlgCommands.ui + DlgCustomizeSpNavSettings.ui DlgDisplayProperties.ui DlgEditor.ui DlgGeneral.ui @@ -338,6 +340,7 @@ SET(Dialog_Customize_CPP_SRCS DlgCommandsImp.cpp DlgCustomizeImp.cpp DlgCustomizeSpaceball.cpp + DlgCustomizeSpNavSettings.cpp DlgKeyboardImp.cpp DlgToolbarsImp.cpp ) @@ -346,6 +349,7 @@ SET(Dialog_Customize_HPP_SRCS DlgCommandsImp.h DlgCustomizeImp.h DlgCustomizeSpaceball.h + DlgCustomizeSpNavSettings.h DlgKeyboardImp.h DlgToolbarsImp.h ) @@ -355,6 +359,7 @@ SET(Dialog_Customize_SRCS DlgActions.ui DlgChooseIcon.ui DlgCommands.ui + DlgCustomizeSpNavSettings.ui DlgKeyboard.ui DlgToolbars.ui ) diff --git a/src/Gui/DlgCustomizeSpNavSettings.cpp b/src/Gui/DlgCustomizeSpNavSettings.cpp new file mode 100644 index 000000000..9a7113737 --- /dev/null +++ b/src/Gui/DlgCustomizeSpNavSettings.cpp @@ -0,0 +1,310 @@ +/*************************************************************************** + * Copyright (c) 2012 Petar Perisin * + * * + * This file is part of the FreeCAD CAx development system. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Library General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Library General Public License for more details. * + * * + * You should have received a copy of the GNU Library General Public * + * License along with this library; see the file COPYING.LIB. If not, * + * write to the Free Software Foundation, Inc., 59 Temple Place, * + * Suite 330, Boston, MA 02111-1307, USA * + * * + ***************************************************************************/ + +#include "PreCompiled.h" + +#include "DlgCustomizeSpNavSettings.h" +#include "GuiApplicationNativeEventAware.h" +#include "Application.h" + + +using namespace Gui::Dialog; + +DlgCustomizeSpNavSettings::DlgCustomizeSpNavSettings(QWidget *parent) : + CustomizeActionPage(parent) +{ + GUIApplicationNativeEventAware *app = qobject_cast(QApplication::instance()); + + if (!app) + return; + if (!app->isSpaceballPresent()) + { + this->setWindowTitle(tr("Spaceball Motion")); + this->setMessage(tr("No Spaceball Present")); + return; + } + this->setupUi(this); + initialize(); +} + +DlgCustomizeSpNavSettings::~DlgCustomizeSpNavSettings() +{ +} + +void DlgCustomizeSpNavSettings::setMessage(const QString& message) +{ + QLabel *messageLabel = new QLabel(message,this); + QVBoxLayout *layout = new QVBoxLayout(); + QHBoxLayout *layout2 = new QHBoxLayout(); + layout2->addStretch(); + layout2->addWidget(messageLabel); + layout2->addStretch(); + layout->addItem(layout2); + this->setLayout(layout); +} + + +void DlgCustomizeSpNavSettings::changeEvent(QEvent *e) +{ + QWidget::changeEvent(e); +} + +ParameterGrp::handle DlgCustomizeSpNavSettings::spaceballMotionGroup() const +{ + static ParameterGrp::handle group = App::GetApplication().GetUserParameter().GetGroup("BaseApp")->GetGroup("Spaceball")->GetGroup("Motion"); + return group; +} + +void DlgCustomizeSpNavSettings::on_ButtonCalibrate_clicked() +{ + spaceballMotionGroup()->SetBool("Calibrate", true); +} + +void DlgCustomizeSpNavSettings::initialize() +{ + CBDominant->setChecked(spaceballMotionGroup()->GetBool("Dominant", false)); + CBFlipYZ->setChecked(spaceballMotionGroup()->GetBool("FlipYZ", false)); + CBRotations->setChecked(spaceballMotionGroup()->GetBool("Rotations", true)); + CBTranslations->setChecked(spaceballMotionGroup()->GetBool("Translations", true)); + SliderGlobal->setValue(spaceballMotionGroup()->GetInt("GlobalSensitivity", 0)); + + CBEnablePanLR ->setChecked(spaceballMotionGroup()->GetBool("PanLREnable", true)); + CBReversePanLR->setChecked(spaceballMotionGroup()->GetBool("PanLRReverse", false)); + SliderPanLR ->setValue(spaceballMotionGroup()->GetInt("PanLRSensitivity", 0)); + + CBEnablePanUD ->setChecked(spaceballMotionGroup()->GetBool("PanUDEnable", true)); + CBReversePanUD->setChecked(spaceballMotionGroup()->GetBool("PanUDReverse", false)); + SliderPanUD ->setValue(spaceballMotionGroup()->GetInt("PanUDSensitivity", 0)); + + CBEnableZoom ->setChecked(spaceballMotionGroup()->GetBool("ZoomEnable", true)); + CBReverseZoom->setChecked(spaceballMotionGroup()->GetBool("ZoomReverse", false)); + SliderZoom ->setValue(spaceballMotionGroup()->GetInt("ZoomSensitivity", 0)); + + CBEnableTilt ->setChecked(spaceballMotionGroup()->GetBool("TiltEnable", true)); + CBReverseTilt->setChecked(spaceballMotionGroup()->GetBool("TiltReverse", false)); + SliderTilt ->setValue(spaceballMotionGroup()->GetInt("TiltSensitivity", 0)); + + CBEnableRoll ->setChecked(spaceballMotionGroup()->GetBool("RollEnable", true)); + CBReverseRoll->setChecked(spaceballMotionGroup()->GetBool("RollReverse", false)); + SliderRoll ->setValue(spaceballMotionGroup()->GetInt("RollSensitivity", 0)); + + CBEnableSpin ->setChecked(spaceballMotionGroup()->GetBool("SpinEnable", true)); + CBReverseSpin->setChecked(spaceballMotionGroup()->GetBool("SpinReverse", false)); + SliderSpin ->setValue(spaceballMotionGroup()->GetInt("SpinSensitivity", 0)); + + CBEnableTilt ->setEnabled(CBRotations->isChecked()); + CBReverseTilt->setEnabled(CBRotations->isChecked() && CBEnableTilt->isChecked()); + SliderTilt ->setEnabled(CBRotations->isChecked() && CBEnableTilt->isChecked()); + CBEnableRoll ->setEnabled(CBRotations->isChecked()); + CBReverseRoll->setEnabled(CBRotations->isChecked() && CBEnableRoll->isChecked()); + SliderRoll ->setEnabled(CBRotations->isChecked() && CBEnableRoll->isChecked()); + CBEnableSpin ->setEnabled(CBRotations->isChecked()); + CBReverseSpin->setEnabled(CBRotations->isChecked() && CBEnableSpin->isChecked()); + SliderSpin ->setEnabled(CBRotations->isChecked() && CBEnableSpin->isChecked()); + + CBEnablePanLR ->setEnabled(CBTranslations->isChecked()); + CBReversePanLR->setEnabled(CBTranslations->isChecked() && CBEnablePanLR->isChecked()); + SliderPanLR ->setEnabled(CBTranslations->isChecked() && CBEnablePanLR->isChecked()); + CBEnablePanUD ->setEnabled(CBTranslations->isChecked()); + CBReversePanUD->setEnabled(CBTranslations->isChecked() && CBEnablePanUD->isChecked()); + SliderPanUD ->setEnabled(CBTranslations->isChecked() && CBEnablePanUD->isChecked()); + CBEnableZoom ->setEnabled(CBTranslations->isChecked()); + CBReverseZoom ->setEnabled(CBTranslations->isChecked() && CBEnableZoom->isChecked()); + SliderZoom ->setEnabled(CBTranslations->isChecked() && CBEnableZoom->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_ButtonDefaultSpNavMotions_clicked() +{ + spaceballMotionGroup()->Clear(); + initialize(); +} + +void DlgCustomizeSpNavSettings::on_CBDominant_clicked() +{ + spaceballMotionGroup()->SetBool("Dominant", CBDominant->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_CBFlipYZ_clicked() +{ + spaceballMotionGroup()->SetBool("FlipYZ", CBFlipYZ->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_CBRotations_clicked() +{ + spaceballMotionGroup()->SetBool("Rotations", CBRotations->isChecked()); + + CBEnableTilt ->setEnabled(CBRotations->isChecked()); + CBReverseTilt->setEnabled(CBRotations->isChecked() && CBEnableTilt->isChecked()); + SliderTilt ->setEnabled(CBRotations->isChecked() && CBEnableTilt->isChecked()); + CBEnableRoll ->setEnabled(CBRotations->isChecked()); + CBReverseRoll->setEnabled(CBRotations->isChecked() && CBEnableRoll->isChecked()); + SliderRoll ->setEnabled(CBRotations->isChecked() && CBEnableRoll->isChecked()); + CBEnableSpin ->setEnabled(CBRotations->isChecked()); + CBReverseSpin->setEnabled(CBRotations->isChecked() && CBEnableSpin->isChecked()); + SliderSpin ->setEnabled(CBRotations->isChecked() && CBEnableSpin->isChecked()); + +} + +void DlgCustomizeSpNavSettings::on_CBTranslations_clicked() +{ + spaceballMotionGroup()->SetBool("Translations", CBTranslations->isChecked()); + + CBEnablePanLR ->setEnabled(CBTranslations->isChecked()); + CBReversePanLR->setEnabled(CBTranslations->isChecked() && CBEnablePanLR->isChecked()); + SliderPanLR ->setEnabled(CBTranslations->isChecked() && CBEnablePanLR->isChecked()); + CBEnablePanUD ->setEnabled(CBTranslations->isChecked()); + CBReversePanUD->setEnabled(CBTranslations->isChecked() && CBEnablePanUD->isChecked()); + SliderPanUD ->setEnabled(CBTranslations->isChecked() && CBEnablePanUD->isChecked()); + CBEnableZoom ->setEnabled(CBTranslations->isChecked()); + CBReverseZoom ->setEnabled(CBTranslations->isChecked() && CBEnableZoom->isChecked()); + SliderZoom ->setEnabled(CBTranslations->isChecked() && CBEnableZoom->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_SliderGlobal_sliderReleased() +{ + spaceballMotionGroup()->SetInt("GlobalSensitivity", SliderGlobal->value()); +} + +void DlgCustomizeSpNavSettings::on_CBEnablePanLR_clicked() +{ + spaceballMotionGroup()->SetBool("PanLREnable", CBEnablePanLR->isChecked()); + + CBReversePanLR->setEnabled(CBEnablePanLR->isChecked()); + SliderPanLR ->setEnabled(CBEnablePanLR->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_CBReversePanLR_clicked() +{ + spaceballMotionGroup()->SetBool("PanLRReverse", CBReversePanLR->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_SliderPanLR_sliderReleased() +{ + spaceballMotionGroup()->SetInt("PanLRSensitivity", SliderPanLR->value()); +} + +void DlgCustomizeSpNavSettings::on_CBEnablePanUD_clicked() +{ + spaceballMotionGroup()->SetBool("PanUDEnable", CBEnablePanUD->isChecked()); + + CBReversePanUD->setEnabled(CBEnablePanUD->isChecked()); + SliderPanUD ->setEnabled(CBEnablePanUD->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_CBReversePanUD_clicked() +{ + spaceballMotionGroup()->SetBool("PanUDReverse", CBReversePanUD->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_SliderPanUD_sliderReleased() +{ + spaceballMotionGroup()->SetInt("PanUDSensitivity", SliderPanUD->value()); +} + +void DlgCustomizeSpNavSettings::on_CBEnableZoom_clicked() +{ + spaceballMotionGroup()->SetBool("ZoomEnable", CBEnableZoom->isChecked()); + + CBReverseZoom ->setEnabled(CBEnableZoom->isChecked()); + SliderZoom ->setEnabled(CBEnableZoom->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_CBReverseZoom_clicked() +{ + spaceballMotionGroup()->SetBool("ZoomReverse", CBReverseZoom->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_SliderZoom_sliderReleased() +{ + spaceballMotionGroup()->SetInt("ZoomSensitivity", SliderZoom->value()); +} + +void DlgCustomizeSpNavSettings::on_CBEnableTilt_clicked() +{ + spaceballMotionGroup()->SetBool("TiltEnable", CBEnableTilt->isChecked()); + + CBReverseTilt->setEnabled(CBEnableTilt->isChecked()); + SliderTilt ->setEnabled(CBEnableTilt->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_CBReverseTilt_clicked() +{ + spaceballMotionGroup()->SetBool("TiltReverse", CBReverseTilt->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_SliderTilt_sliderReleased() +{ + spaceballMotionGroup()->SetInt("TiltSensitivity", SliderTilt->value()); +} + +void DlgCustomizeSpNavSettings::on_CBEnableRoll_clicked() +{ + spaceballMotionGroup()->SetBool("RollEnable", CBEnableRoll->isChecked()); + + CBReverseRoll->setEnabled(CBEnableRoll->isChecked()); + SliderRoll ->setEnabled(CBEnableRoll->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_CBReverseRoll_clicked() +{ + spaceballMotionGroup()->SetBool("RollReverse", CBReverseRoll->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_SliderRoll_sliderReleased() +{ + spaceballMotionGroup()->SetInt("RollSensitivity", SliderRoll->value()); +} + +void DlgCustomizeSpNavSettings::on_CBEnableSpin_clicked() +{ + spaceballMotionGroup()->SetBool("SpinEnable", CBEnableSpin->isChecked()); + + CBReverseSpin->setEnabled(CBEnableSpin->isChecked()); + SliderSpin ->setEnabled(CBEnableSpin->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_CBReverseSpin_clicked() +{ + spaceballMotionGroup()->SetBool("SpinReverse", CBReverseSpin->isChecked()); +} + +void DlgCustomizeSpNavSettings::on_SliderSpin_sliderReleased() +{ + spaceballMotionGroup()->SetInt("SpinSensitivity", SliderSpin->value()); +} + +void DlgCustomizeSpNavSettings::onAddMacroAction(const QByteArray ¯oName) +{ + //don't think I need to do anything here. +} + +void DlgCustomizeSpNavSettings::onRemoveMacroAction(const QByteArray ¯oName) +{ + //don't think I need to do anything here. +} + +void DlgCustomizeSpNavSettings::onModifyMacroAction(const QByteArray ¯oName) +{ + //don't think I need to do anything here. +} + +#include "moc_DlgCustomizeSpNavSettings.cpp" \ No newline at end of file diff --git a/src/Gui/DlgCustomizeSpNavSettings.h b/src/Gui/DlgCustomizeSpNavSettings.h new file mode 100644 index 000000000..6966094d5 --- /dev/null +++ b/src/Gui/DlgCustomizeSpNavSettings.h @@ -0,0 +1,85 @@ +/*************************************************************************** + * Copyright (c) 2012 Petar Perisin * + * * + * This file is part of the FreeCAD CAx development system. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Library General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Library General Public License for more details. * + * * + * You should have received a copy of the GNU Library General Public * + * License along with this library; see the file COPYING.LIB. If not, * + * write to the Free Software Foundation, Inc., 59 Temple Place, * + * Suite 330, Boston, MA 02111-1307, USA * + * * + ***************************************************************************/ + + +#ifndef DLGCUSTOMIZESPNAVSETTINGS_H +#define DLGCUSTOMIZESPNAVSETTINGS_H + +#include "ui_DlgCustomizeSpNavSettings.h" +#include "PropertyPage.h" +#include + +namespace Gui +{ + namespace Dialog + { + class DlgCustomizeSpNavSettings : public CustomizeActionPage, public Ui_DlgCustomizeSpNavSettings + { + Q_OBJECT + + public: + explicit DlgCustomizeSpNavSettings(QWidget *parent = 0); + ~DlgCustomizeSpNavSettings(); + + + protected Q_SLOTS: + void onAddMacroAction(const QByteArray&); + void onRemoveMacroAction(const QByteArray&); + void onModifyMacroAction(const QByteArray&); + void on_CBDominant_clicked(); + void on_CBFlipYZ_clicked(); + void on_CBRotations_clicked(); + void on_CBTranslations_clicked(); + void on_SliderGlobal_sliderReleased(); + void on_CBEnablePanLR_clicked(); + void on_CBReversePanLR_clicked(); + void on_SliderPanLR_sliderReleased(); + void on_CBEnablePanUD_clicked(); + void on_CBReversePanUD_clicked(); + void on_SliderPanUD_sliderReleased(); + void on_CBEnableZoom_clicked(); + void on_CBReverseZoom_clicked(); + void on_SliderZoom_sliderReleased(); + void on_CBEnableTilt_clicked(); + void on_CBReverseTilt_clicked(); + void on_SliderTilt_sliderReleased(); + void on_CBEnableRoll_clicked(); + void on_CBReverseRoll_clicked(); + void on_SliderRoll_sliderReleased(); + void on_CBEnableSpin_clicked(); + void on_CBReverseSpin_clicked(); + void on_SliderSpin_sliderReleased(); + void on_ButtonDefaultSpNavMotions_clicked(); + void on_ButtonCalibrate_clicked(); + + protected: + void changeEvent(QEvent *e); + + private: + ParameterGrp::handle spaceballMotionGroup() const; + void setMessage(const QString& message); + void initialize(); + }; + } +} + +#endif // DLGCUSTOMIZESPNAVSETTINGS_H diff --git a/src/Gui/DlgCustomizeSpNavSettings.ui b/src/Gui/DlgCustomizeSpNavSettings.ui new file mode 100644 index 000000000..504468780 --- /dev/null +++ b/src/Gui/DlgCustomizeSpNavSettings.ui @@ -0,0 +1,534 @@ + + + DlgCustomizeSpNavSettings + + + + 0 + 0 + 439 + 537 + + + + Spaceball Motion + + + + + + + + Global Sensitivity: + + + + + + + -50 + + + 50 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 10 + + + + + + + + + + + + + Dominant Mode + + + + + + + Flip Y/Z + + + + + + + + + + + Enable Translations + + + true + + + + + + + Enable Rotations + + + true + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Calibrate + + + + + + + Default + + + + + + + + + Qt::Vertical + + + + 20 + 116 + + + + + + + + + + + + + + + :/icons/SpNav-PanLR.png + + + + + + + + + + :/icons/SpNav-PanUD.png + + + + + + + + + + :/icons/SpNav-Zoom.png + + + + + + + + + + :/icons/SpNav-Tilt.png + + + + + + + + + + :/icons/SpNav-Roll.png + + + + + + + + + + :/icons/SpNav-Spin.png + + + + + + + + + 20 + + + + + 0 + + + + + Enable + + + true + + + + + + + Reverse + + + + + + + + + 0 + + + + + Enable + + + true + + + + + + + Reverse + + + + + + + + + 0 + + + + + Enable + + + true + + + + + + + Reverse + + + + + + + + + 0 + + + + + Enable + + + true + + + + + + + Reverse + + + + + + + + + 0 + + + + + Enable + + + true + + + + + + + Reverse + + + + + + + + + 0 + + + + + Enable + + + true + + + + + + + Reverse + + + + + + + + + + + 30 + + + + + -50 + + + 50 + + + 1 + + + 1 + + + 0 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 10 + + + + + + + -50 + + + 50 + + + 1 + + + 1 + + + 0 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 10 + + + + + + + -50 + + + 50 + + + 1 + + + 1 + + + 0 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 10 + + + + + + + -50 + + + 50 + + + 1 + + + 1 + + + 0 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 10 + + + + + + + -50 + + + 50 + + + 1 + + + 1 + + + 0 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 10 + + + + + + + -50 + + + 50 + + + 1 + + + 1 + + + 0 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 10 + + + + + + + + + + + + + + + diff --git a/src/Gui/DlgCustomizeSpaceball.cpp b/src/Gui/DlgCustomizeSpaceball.cpp index 4fa00ba4e..8a7dc5aae 100644 --- a/src/Gui/DlgCustomizeSpaceball.cpp +++ b/src/Gui/DlgCustomizeSpaceball.cpp @@ -525,7 +525,7 @@ DlgCustomizeSpaceball::DlgCustomizeSpaceball(QWidget *parent) : CustomizeActionPage(parent), buttonView(0), buttonModel(0), commandView(0), commandModel(0), clearButton(0), printReference(0) { - this->setWindowTitle(tr("Spaceball")); + this->setWindowTitle(tr("Spaceball Buttons")); GUIApplicationNativeEventAware *app = qobject_cast(QApplication::instance()); if (!app) return; diff --git a/src/Gui/GuiApplicationNativeEventAware.cpp b/src/Gui/GuiApplicationNativeEventAware.cpp index f14beb3bb..6f9485ee1 100644 --- a/src/Gui/GuiApplicationNativeEventAware.cpp +++ b/src/Gui/GuiApplicationNativeEventAware.cpp @@ -143,8 +143,9 @@ bool Gui::GUIApplicationNativeEventAware::x11EventFilter(XEvent *event) if (navEvent.type == SPNAV_EVENT_MOTION) { Spaceball::MotionEvent *motionEvent = new Spaceball::MotionEvent(); - motionEvent->setTranslations(navEvent.motion.x, navEvent.motion.y, navEvent.motion.z); - motionEvent->setRotations(navEvent.motion.rx, navEvent.motion.ry, navEvent.motion.rz); + // motionEvent->setTranslations(navEvent.motion.x, navEvent.motion.y, navEvent.motion.z); + // motionEvent->setRotations(navEvent.motion.rx, navEvent.motion.ry, navEvent.motion.rz); + motionEvent->setMotionData(navEvent.motion.x, navEvent.motion.y, navEvent.motion.z, navEvent.motion.rx, navEvent.motion.ry, navEvent.motion.rz); this->postEvent(currentWidget, motionEvent); return true; } diff --git a/src/Gui/Icons/SpNav-PanLR.png b/src/Gui/Icons/SpNav-PanLR.png new file mode 100644 index 000000000..c70a16f58 Binary files /dev/null and b/src/Gui/Icons/SpNav-PanLR.png differ diff --git a/src/Gui/Icons/SpNav-PanUD.png b/src/Gui/Icons/SpNav-PanUD.png new file mode 100644 index 000000000..c1ba44fc9 Binary files /dev/null and b/src/Gui/Icons/SpNav-PanUD.png differ diff --git a/src/Gui/Icons/SpNav-Roll.png b/src/Gui/Icons/SpNav-Roll.png new file mode 100644 index 000000000..372b3ae8b Binary files /dev/null and b/src/Gui/Icons/SpNav-Roll.png differ diff --git a/src/Gui/Icons/SpNav-Spin.png b/src/Gui/Icons/SpNav-Spin.png new file mode 100644 index 000000000..8d198097b Binary files /dev/null and b/src/Gui/Icons/SpNav-Spin.png differ diff --git a/src/Gui/Icons/SpNav-Tilt.png b/src/Gui/Icons/SpNav-Tilt.png new file mode 100644 index 000000000..73f072ec4 Binary files /dev/null and b/src/Gui/Icons/SpNav-Tilt.png differ diff --git a/src/Gui/Icons/SpNav-Zoom.png b/src/Gui/Icons/SpNav-Zoom.png new file mode 100644 index 000000000..39686bca4 Binary files /dev/null and b/src/Gui/Icons/SpNav-Zoom.png differ diff --git a/src/Gui/Icons/freecadsplash.png b/src/Gui/Icons/freecadsplash.png index 465aa7ce9..a0e8ad13d 100644 Binary files a/src/Gui/Icons/freecadsplash.png and b/src/Gui/Icons/freecadsplash.png differ diff --git a/src/Gui/Icons/resource.qrc b/src/Gui/Icons/resource.qrc index 2114905a6..e506168b6 100644 --- a/src/Gui/Icons/resource.qrc +++ b/src/Gui/Icons/resource.qrc @@ -78,5 +78,11 @@ Tree_Dimension.svg Tree_Python.svg spaceball_button.svg + SpNav-PanLR.png + SpNav-PanUD.png + SpNav-Roll.png + SpNav-Spin.png + SpNav-Tilt.png + SpNav-Zoom.png diff --git a/src/Gui/SpaceballEvent.cpp b/src/Gui/SpaceballEvent.cpp index 55efa7a27..7b93ade1a 100644 --- a/src/Gui/SpaceballEvent.cpp +++ b/src/Gui/SpaceballEvent.cpp @@ -22,6 +22,7 @@ #include "PreCompiled.h" #include "SpaceballEvent.h" +#include "Application.h" using namespace Spaceball; @@ -40,15 +41,132 @@ MotionEvent::MotionEvent() : EventBase(static_cast(MotionEventType MotionEvent::MotionEvent(const MotionEvent& in) : EventBase(static_cast(MotionEventType)) { - xTrans = in.xTrans; - yTrans = in.yTrans; - zTrans = in.zTrans; - xRot = in.xRot; - yRot = in.yRot; - zRot = in.zRot; + int motionDataArray[6] = {in.xTrans, in.yTrans, in.zTrans, in.xRot, in.yRot, in.zRot}; + importSettings(motionDataArray); handled = in.handled; } +float MotionEvent::convertPrefToSensitivity(int value) +{ + if (value < 0) + { + return ((0.6/50)*float(value) + 1); + } + else + { + return ((1.1/50)*float(value) + 1); + } +} + +void MotionEvent::importSettings(int* motionDataArray) +{ + ParameterGrp::handle group = App::GetApplication().GetUserParameter().GetGroup("BaseApp")->GetGroup("Spaceball")->GetGroup("Motion"); + + // here I import settings from a dialog. For now they are set as is + bool dominant = group->GetBool("Dominant"); // Is dominant checked + bool flipXY = group->GetBool("FlipYZ");; // Is Flip X/Y checked + float generalSensitivity = convertPrefToSensitivity(group->GetInt("GlobalSensitivity")); + + // array that has stored info about "Enabled" checkboxes of all axes + bool enabled[6]; + enabled[0] = group->GetBool("Translations", true) && group->GetBool("PanLREnable", true); + enabled[1] = group->GetBool("Translations", true) && group->GetBool("PanUDEnable", true); + enabled[2] = group->GetBool("Translations", true) && group->GetBool("ZoomEnable", true); + enabled[3] = group->GetBool("Rotations", true) && group->GetBool("TiltEnable", true); + enabled[4] = group->GetBool("Rotations", true) && group->GetBool("RollEnable", true); + enabled[5] = group->GetBool("Rotations", true) && group->GetBool("SpinEnable", true); + + // array that has stored info about "Reversed" checkboxes of all axes + bool reversed[6]; + reversed[0] = group->GetBool("PanLRReverse"); + reversed[1] = group->GetBool("PanUDReverse"); + reversed[2] = group->GetBool("ZoomReverse"); + reversed[3] = group->GetBool("TiltReverse"); + reversed[4] = group->GetBool("RollReverse"); + reversed[5] = group->GetBool("SpinReverse"); + + // array that has stored info about sliders - on each slider you need to use method DlgSpaceballSettings::GetValuefromSlider + // which will convert <-50, 50> linear integers from slider to <0.1, 10> exponential floating values + float sensitivity[6]; + sensitivity[0] = convertPrefToSensitivity(group->GetInt("PanLRSensitivity")); + sensitivity[1] = convertPrefToSensitivity(group->GetInt("PanUDSensitivity")); + sensitivity[2] = convertPrefToSensitivity(group->GetInt("ZoomSensitivity")); + sensitivity[3] = convertPrefToSensitivity(group->GetInt("TiltSensitivity")); + sensitivity[4] = convertPrefToSensitivity(group->GetInt("RollSensitivity")); + sensitivity[5] = convertPrefToSensitivity(group->GetInt("SpinSensitivity")); + + int i; + + if (group->GetBool("Calibrate")) + { + group->SetInt("CalibrationX",motionDataArray[0]); + group->SetInt("CalibrationY",motionDataArray[1]); + group->SetInt("CalibrationZ",motionDataArray[2]); + group->SetInt("CalibrationXr",motionDataArray[3]); + group->SetInt("CalibrationYr",motionDataArray[4]); + group->SetInt("CalibrationZr",motionDataArray[5]); + + group->RemoveBool("Calibrate"); + + return; + } + else + { + motionDataArray[0] = motionDataArray[0] - group->GetInt("CalibrationX"); + motionDataArray[1] = motionDataArray[1] - group->GetInt("CalibrationY"); + motionDataArray[2] = motionDataArray[2] - group->GetInt("CalibrationZ"); + motionDataArray[3] = motionDataArray[3] - group->GetInt("CalibrationXr"); + motionDataArray[4] = motionDataArray[4] - group->GetInt("CalibrationYr"); + motionDataArray[5] = motionDataArray[5] - group->GetInt("CalibrationZr"); + } + + if (dominant) { // if dominant is checked + int max = 0; + bool flag = false; + for (i = 0; i < 6; ++i) { + if (abs(motionDataArray[i]) > abs(max)) max = motionDataArray[i]; + } + for (i = 0; i < 6; ++i) { + if ((motionDataArray[i] != max) || (flag)) { + motionDataArray[i] = 0; + } else if (motionDataArray[i] == max){ + flag = true; + } + } + } + + if (flipXY) { + int temp = motionDataArray[1]; + motionDataArray[1] = motionDataArray[2]; + motionDataArray[2] = - temp; + } + + for (i = 0; i < 6; ++i) { + if (motionDataArray[i] != 0) { + if (enabled[i] == false) + motionDataArray[i] = 0; + else { + if (reversed[i] == true) + motionDataArray[i] = - motionDataArray[i]; + motionDataArray[i] = (int)((float)(motionDataArray[i]) * sensitivity[i] * generalSensitivity); + } + } + } + + xTrans = motionDataArray[0]; + yTrans = motionDataArray[1]; + zTrans = motionDataArray[2]; + xRot = motionDataArray[3]; + yRot = motionDataArray[4]; + zRot = motionDataArray[5]; +} + + +void MotionEvent::setMotionData(int &xTransIn, int &yTransIn, int &zTransIn, int &xRotIn, int &yRotIn, int &zRotIn){ + int motionDataArray[6] = {xTransIn, yTransIn, zTransIn, xRotIn, yRotIn, zRotIn}; + importSettings(motionDataArray); +} + void MotionEvent::translations(int &xTransOut, int &yTransOut, int &zTransOut) { xTransOut = xTrans; @@ -58,9 +176,8 @@ void MotionEvent::translations(int &xTransOut, int &yTransOut, int &zTransOut) void MotionEvent::setTranslations(const int &xTransIn, const int &yTransIn, const int &zTransIn) { - xTrans = xTransIn; - yTrans = yTransIn; - zTrans = zTransIn; + int motionDataArray[6] = {xTransIn, yTransIn, zTransIn, xRot, yRot, zRot}; + importSettings(motionDataArray); } void MotionEvent::rotations(int &xRotOut, int &yRotOut, int &zRotOut) @@ -72,9 +189,8 @@ void MotionEvent::rotations(int &xRotOut, int &yRotOut, int &zRotOut) void MotionEvent::setRotations(const int &xRotIn, const int &yRotIn, const int &zRotIn) { - xRot = xRotIn; - yRot = yRotIn; - zRot = zRotIn; + int motionDataArray[6] = {xTrans, yTrans, zTrans, xRotIn, yRotIn, zRotIn}; + importSettings(motionDataArray); } diff --git a/src/Gui/SpaceballEvent.h b/src/Gui/SpaceballEvent.h index b07113e56..4f506a0b0 100644 --- a/src/Gui/SpaceballEvent.h +++ b/src/Gui/SpaceballEvent.h @@ -56,6 +56,7 @@ namespace Spaceball int rotationY(){return yRot;} int rotationZ(){return zRot;} + void setMotionData(int &xTransOut, int &yTransOut, int &zTransOut, int &xRotOut, int &yRotOut, int &zRotOut); static int MotionEventType; private: @@ -66,6 +67,8 @@ namespace Spaceball int yRot; int zRot; bool handled; + void importSettings(int* motionDataArray); + float convertPrefToSensitivity(int value); }; class ButtonEvent : public EventBase diff --git a/src/Gui/resource.cpp b/src/Gui/resource.cpp index b7f3ce8fb..8a72ca046 100644 --- a/src/Gui/resource.cpp +++ b/src/Gui/resource.cpp @@ -45,6 +45,7 @@ #include "DlgCommandsImp.h" #include "DlgKeyboardImp.h" #include "DlgCustomizeSpaceball.h" +#include "DlgCustomizeSpNavSettings.h" using namespace Gui; using namespace Gui::Dialog; @@ -75,6 +76,7 @@ WidgetFactorySupplier::WidgetFactorySupplier() new CustomPageProducer; //new CustomPageProducer; new CustomPageProducer; + new CustomPageProducer; new CustomPageProducer; // ADD YOUR PREFERENCE WIDGETS HERE diff --git a/src/Mod/Arch/ArchAxis.py b/src/Mod/Arch/ArchAxis.py index 26de5866c..0b86cd657 100644 --- a/src/Mod/Arch/ArchAxis.py +++ b/src/Mod/Arch/ArchAxis.py @@ -101,6 +101,13 @@ class _Axis: if geoms: obj.Shape = Part.Compound(geoms) obj.Placement = pl + + def __getstate__(self): + return self.Type + + def __setstate__(self,state): + if state: + self.Type = state class _ViewProviderAxis: "A View Provider for the Axis object" @@ -252,7 +259,6 @@ class _ViewProviderAxis: return None - class _AxisTaskPanel: '''The editmode TaskPanel for Axis objects''' def __init__(self): diff --git a/src/Mod/Arch/ArchCommands.py b/src/Mod/Arch/ArchCommands.py index 1268dd89f..e6054bceb 100644 --- a/src/Mod/Arch/ArchCommands.py +++ b/src/Mod/Arch/ArchCommands.py @@ -99,6 +99,12 @@ def addComponents(objectsList,host): if hasattr(o,"Shape"): a.append(o) host.Objects = a + elif host.isDerivedFrom("App::DocumentObjectGroup"): + c = host.Group + for o in objectsList: + if not o in c: + c.append(o) + host.Group = c def removeComponents(objectsList,host=None): '''removeComponents(objectsList,[hostObject]): removes the given component or diff --git a/src/Mod/Arch/ArchComponent.py b/src/Mod/Arch/ArchComponent.py index a2646dcc0..777d43127 100644 --- a/src/Mod/Arch/ArchComponent.py +++ b/src/Mod/Arch/ArchComponent.py @@ -265,6 +265,13 @@ class Component: obj.Proxy = self self.Type = "Component" self.Subvolume = None + + def __getstate__(self): + return self.Type + + def __setstate__(self,state): + if state: + self.Type = state class ViewProviderComponent: "A default View Provider for Component objects" diff --git a/src/Mod/Arch/ArchFloor.py b/src/Mod/Arch/ArchFloor.py index be9956107..f7eb0c75c 100644 --- a/src/Mod/Arch/ArchFloor.py +++ b/src/Mod/Arch/ArchFloor.py @@ -83,10 +83,11 @@ class _Floor: self.Object = obj def __getstate__(self): - return None + return self.Type def __setstate__(self,state): - return None + if state: + self.Type = state def execute(self,obj): pass diff --git a/src/Mod/Arch/ArchSectionPlane.py b/src/Mod/Arch/ArchSectionPlane.py index 6966b88bd..ebb4549ba 100644 --- a/src/Mod/Arch/ArchSectionPlane.py +++ b/src/Mod/Arch/ArchSectionPlane.py @@ -110,6 +110,13 @@ class _SectionPlane: def getNormal(self,obj): return obj.Shape.Faces[0].normalAt(0,0) + def __getstate__(self): + return self.Type + + def __setstate__(self,state): + if state: + self.Type = state + class _ViewProviderSectionPlane(ArchComponent.ViewProviderComponent): "A View Provider for Section Planes" def __init__(self,vobj): @@ -180,6 +187,12 @@ class _ViewProviderSectionPlane(ArchComponent.ViewProviderComponent): vobj.Object.Proxy.execute(vobj.Object) return + def __getstate__(self): + return None + + def __setstate__(self,state): + return None + class _ArchDrawingView: def __init__(self, obj): obj.addProperty("App::PropertyLink","Source","Base","The linked object") @@ -203,10 +216,11 @@ class _ArchDrawingView: obj.ViewResult = self.updateSVG(obj) def __getstate__(self): - return None + return self.Type def __setstate__(self,state): - return None + if state: + self.Type = state def getDisplayModes(self,vobj): modes=["Default"] diff --git a/src/Mod/Arch/importIFC.py b/src/Mod/Arch/importIFC.py index f99a3df30..19b22a579 100644 --- a/src/Mod/Arch/importIFC.py +++ b/src/Mod/Arch/importIFC.py @@ -420,7 +420,8 @@ def getShape(obj): m[1], m[4], m[7], m[10], m[2], m[5], m[8], m[11], 0, 0, 0, 1) - sh.Placement = FreeCAD.Placement(mat) + sh.Placement = FreeCAD.Placement(mat) + if DEBUG: print "getting Shape from ",obj return sh def getWire(entity,placement=None): diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index 27320c4a3..6cdce843f 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -1245,6 +1245,7 @@ def getSVG(obj,scale=1,linewidth=0.35,fontsize=12,fillstyle="shape color",direct svg = "" linewidth = linewidth/scale fontsize = (fontsize/scale)/2 + pointratio = 4 # the number of times the dots are smaller than the font size plane = None if direction: if isinstance(direction,FreeCAD.Vector): @@ -1388,13 +1389,13 @@ def getSVG(obj,scale=1,linewidth=0.35,fontsize=12,fillstyle="shape color",direct svg += 'freecad:dimpoint="'+str(p2.x)+' '+str(p2.y)+'"' svg += '/>\n' svg += ' i: + faces.append(obj.Base.Shape.Faces[i]) + views = [] + for f in faces: + [visibleG0,visibleG1,hiddenG0,hiddenG1] = Drawing.project(f,obj.Projection) + if visibleG0: + views.append(visibleG0) + if views: + obj.Shape = Part.makeCompound(views) if not DraftGeomUtils.isNull(pl): obj.Placement = pl -class _Array: +class _Array(_DraftObject): "The Draft Array object" def __init__(self,obj): + _DraftObject.__init__(self,obj,"Array") obj.addProperty("App::PropertyLink","Base","Base", "The base object that must be duplicated") obj.addProperty("App::PropertyEnumeration","ArrayType","Base", @@ -2804,8 +2887,6 @@ class _Array: "Center point") obj.addProperty("App::PropertyAngle","Angle","Base", "Angle to cover with copies") - obj.Proxy = self - self.Type = "Array" obj.ArrayType = ['ortho','polar'] obj.NumberX = 1 obj.NumberY = 1 @@ -2898,15 +2979,15 @@ class _Array: base.append(nshape) return Part.makeCompound(base) -class _Point: +class _Point(_DraftObject): + "The Draft Point object" def __init__(self, obj,x,y,z): + _DraftObject.__init__(self,obj,"Point") obj.addProperty("App::PropertyFloat","X","Point","Location").X = x obj.addProperty("App::PropertyFloat","Y","Point","Location").Y = y obj.addProperty("App::PropertyFloat","Z","Point","Location").Z = z mode = 2 obj.setEditorMode('Placement',mode) - obj.Proxy = self - self.Type = "Point" def execute(self, fp): self.createGeometry(fp) @@ -2916,9 +2997,10 @@ class _Point: shape = Part.Vertex(Vector(fp.X,fp.Y,fp.Z)) fp.Shape = shape -class _ViewProviderPoint: +class _ViewProviderPoint(_ViewProviderDraft): + "A viewprovider for the Draft Point object" def __init__(self, obj): - obj.Proxy = self + _ViewProviderDraft.__init__(self,obj) def onChanged(self, vp, prop): mode = 2 @@ -2938,17 +3020,16 @@ class _ViewProviderPoint: def getIcon(self): return ":/icons/Draft_Dot.svg" -class _Clone: +class _Clone(_DraftObject): "The Clone object" def __init__(self,obj): + _DraftObject.__init__(self,obj,"Clone") obj.addProperty("App::PropertyLinkList","Objects","Base", "The objects included in this scale object") obj.addProperty("App::PropertyVector","Scale","Base", "The scale vector of this object") obj.Scale = Vector(1,1,1) - obj.Proxy = self - self.Type = "Clone" def execute(self,obj): self.createGeometry(obj) @@ -2978,29 +3059,15 @@ class _Clone: if not DraftGeomUtils.isNull(pl): obj.Placement = pl -class _ViewProviderDraftPart(_ViewProviderDraft): +class _ViewProviderClone(_ViewProviderDraftAlt): "a view provider that displays a Part icon instead of a Draft icon" def __init__(self,vobj): - _ViewProviderDraft.__init__(self,vobj) - - def getIcon(self): - return ":/icons/Tree_Part.svg" - - def claimChildren(self): - return [] - -class _ViewProviderClone(_ViewProviderDraft): - "a view provider that displays a Part icon instead of a Draft icon" - - def __init__(self,vobj): - _ViewProviderDraft.__init__(self,vobj) + _ViewProviderDraftAlt.__init__(self,vobj) def getIcon(self): return ":/icons/Draft_Clone.svg" - def claimChildren(self): - return [] if not hasattr(FreeCADGui,"Snapper"): import DraftSnap diff --git a/src/Mod/Draft/DraftTools.py b/src/Mod/Draft/DraftTools.py index 916632716..bfd4a5478 100644 --- a/src/Mod/Draft/DraftTools.py +++ b/src/Mod/Draft/DraftTools.py @@ -3658,15 +3658,27 @@ class Shape2DView(): 'ToolTip': QtCore.QT_TRANSLATE_NOOP("Draft_Shape2DView", "Creates Shape 2D views of selected objects")} def IsActive(self): - if Draft.getSelection(): + if FreeCADGui.Selection.getSelection(): return True else: return False def Activated(self): - sellist = [] - for ob in Draft.getSelection(): - Draft.makeShape2DView(ob) + faces = [] + objs = [] + sel = FreeCADGui.Selection.getSelectionEx() + for s in sel: + objs.append(s.Object) + for e in s.SubElementNames: + if "Face" in e: + faces.append(int(e[4:])-1) + print objs,faces + if len(objs) == 1: + if faces: + Draft.makeShape2DView(objs[0],facenumbers=faces) + return + for o in objs: + Draft.makeShape2DView(o) class Draft2Sketch(): "The Draft2Sketch FreeCAD command definition" @@ -3752,6 +3764,9 @@ class Point: def Activated(self): self.view = Draft.get3DView() self.stack = [] + rot = self.view.getCameraNode().getField("orientation").getValue() + upv = Vector(rot.multVec(coin.SbVec3f(0,1,0)).getValue()) + plane.setup(DraftVecUtils.neg(self.view.getViewDirection()), Vector(0,0,0), upv) self.point = None # adding 2 callback functions self.callbackClick = self.view.addEventCallbackPivy(coin.SoMouseButtonEvent.getClassTypeId(),self.click) @@ -3772,7 +3787,7 @@ class Point: self.view.removeEventCallbackPivy(coin.SoMouseButtonEvent.getClassTypeId(),self.callbackClick) self.view.removeEventCallbackPivy(coin.SoLocation2Event.getClassTypeId(),self.callbackMove) FreeCAD.ActiveDocument.openTransaction("Create Point") - Draft.makePoint((self.stack[0][0]),(self.stack[0][1]),0.0) + Draft.makePoint((self.stack[0][0]),(self.stack[0][1]),self.stack[0][2]) FreeCAD.ActiveDocument.commitTransaction() FreeCADGui.Snapper.off() diff --git a/src/Mod/Draft/Draft_rc.py b/src/Mod/Draft/Draft_rc.py index 770792e39..fce29997b 100644 --- a/src/Mod/Draft/Draft_rc.py +++ b/src/Mod/Draft/Draft_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Thu Aug 16 12:22:58 2012 +# Created: Thu Aug 30 14:59:12 2012 # by: The Resource Compiler for PyQt (Qt v4.8.2) # # WARNING! All changes made in this file will be lost! @@ -28262,557 +28262,377 @@ qt_resource_data = "\ \xca\x21\x00\xfc\xd8\x43\x38\x54\x2e\x1c\xb6\x35\x04\x87\x81\xed\ \x23\xdf\x83\x16\xc4\x9f\xef\x05\x11\xbe\xd5\x89\x78\xb3\x9a\x2d\ \xd4\xb1\xb7\x9a\xfd\x0b\xb3\xde\x14\xff\ -\x00\x00\x13\x1b\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x22\x0a\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x30\x32\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x31\x20\x72\x39\x37\x36\ -\x30\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\ -\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x44\x72\x61\x66\x74\x5f\x45\x64\ -\x69\x74\x2e\x73\x76\x67\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x34\x30\ -\x32\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ -\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ -\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\ -\x20\x31\x36\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ -\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ -\x7a\x3d\x22\x33\x32\x20\x3a\x20\x31\x36\x20\x3a\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ -\x31\x36\x20\x3a\x20\x31\x30\x2e\x36\x36\x36\x36\x36\x37\x20\x3a\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\x30\x33\x33\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ -\x69\x76\x65\x34\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ -\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\ -\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ -\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ -\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\ -\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x39\x39\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\ -\x22\x39\x30\x31\x2e\x31\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x31\x3d\x22\x31\x31\x39\x30\x2e\x38\x37\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x31\x32\x36\x37\x2e\ -\x39\x30\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x31\x31\x39\x30\x2e\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ -\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x31\x30\ -\x34\x35\x36\x37\x39\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x30\x34\ -\x35\x36\x37\x39\x31\x2c\x34\x32\x30\x2e\x39\x30\x30\x30\x36\x2c\ -\x33\x31\x2e\x30\x32\x33\x36\x32\x29\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\x35\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x35\x62\x66\x66\ -\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x65\x33\x66\x37\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x34\x30\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x39\x37\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x31\x31\x31\x35\x34\x35\x38\ -\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x30\x36\x33\x32\x38\x35\x34\ -\x2c\x2d\x39\x39\x2e\x30\x33\x34\x32\x38\x31\x2c\x2d\x31\x33\x35\ -\x2e\x37\x30\x34\x34\x39\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x31\x3d\x22\x39\x30\x31\x2e\x31\x38\x37\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x31\x39\x30\x2e\x38\x37\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x31\x32\ -\x36\x37\x2e\x39\x30\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x32\x3d\x22\x31\x31\x39\x30\x2e\x38\x37\x35\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\ -\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\ -\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\ -\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\ -\x39\x37\x39\x35\x31\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\x31\x2e\x31\x33\ -\x30\x36\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x31\x2e\x32\x32\x30\x32\x30\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\ -\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\ -\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\ -\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\ -\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x38\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x35\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x79\x3d\x22\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\ -\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x34\x30\x33\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ -\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ -\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ -\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ -\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\ -\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ -\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ -\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\ -\x3d\x22\x6c\x61\x79\x65\x72\x22\x0a\x20\x20\x20\x20\x20\x74\x72\ -\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\ -\x74\x65\x28\x30\x2c\x33\x32\x29\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x35\x34\x32\x39\x39\ -\x39\x39\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\ -\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\ -\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\ -\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\ -\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\ -\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ -\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x38\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x35\x38\x2e\ -\x32\x32\x35\x37\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x38\x2e\x35\x37\x33\x31\x31\x30\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x35\x2e\x39\ -\x35\x37\x37\x36\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x3d\x22\x32\x31\x2e\x33\x32\x37\x34\x33\x33\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x34\x33\x39\x32\x33\x38\x36\ -\x2c\x2d\x30\x2e\x35\x33\x36\x34\x36\x32\x39\x38\x2c\x30\x2e\x35\ -\x33\x36\x34\x36\x32\x39\x38\x2c\x30\x2e\x38\x34\x33\x39\x32\x33\ -\x38\x36\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\ -\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x35\x34\x32\x39\x39\x39\x39\ -\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\ -\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\ -\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\ -\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ -\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\ -\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\ -\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\ -\x22\x32\x30\x2e\x36\x32\x39\x30\x34\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\ -\x32\x39\x2e\x30\x38\x32\x34\x33\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x31\ -\x30\x2e\x39\x38\x34\x32\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x31\x30\ -\x2e\x39\x38\x34\x32\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x6d\x20\x33\x31\x2e\x36\x31\x33\x33\x34\x36\x2c\x32\ -\x39\x2e\x30\x38\x32\x34\x33\x34\x20\x61\x20\x31\x30\x2e\x39\x38\ -\x34\x32\x39\x39\x2c\x31\x30\x2e\x39\x38\x34\x32\x39\x39\x20\x30\ -\x20\x31\x20\x31\x20\x2d\x32\x31\x2e\x39\x36\x38\x35\x39\x37\x33\ -\x2c\x30\x20\x31\x30\x2e\x39\x38\x34\x32\x39\x39\x2c\x31\x30\x2e\ -\x39\x38\x34\x32\x39\x39\x20\x30\x20\x31\x20\x31\x20\x32\x31\x2e\ -\x39\x36\x38\x35\x39\x37\x33\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\ -\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x31\x32\x2e\x35\x36\x33\x37\ -\x34\x32\x2c\x2d\x32\x31\x2e\x30\x34\x38\x39\x37\x34\x29\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x66\ -\x66\x30\x63\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x34\ -\x37\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x33\x2e\x32\x33\x38\x36\x33\x32\x32\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\ -\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\ -\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\ -\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\ -\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\ -\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\ -\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\ -\x34\x2e\x31\x38\x30\x33\x39\x32\x2c\x2d\x32\x38\x2e\x32\x34\x36\ -\x32\x39\x35\x20\x30\x2c\x31\x32\x2e\x31\x39\x35\x39\x32\x38\x20\ -\x2d\x39\x2e\x32\x39\x39\x36\x39\x2c\x30\x20\x30\x2c\x36\x2e\x35\ -\x36\x37\x30\x33\x37\x38\x20\x39\x2e\x32\x39\x39\x36\x39\x2c\x30\ -\x20\x37\x2e\x31\x33\x39\x31\x35\x35\x2c\x30\x20\x39\x2e\x36\x37\ -\x35\x34\x33\x35\x2c\x30\x20\x30\x2c\x2d\x36\x2e\x35\x36\x37\x30\ -\x33\x37\x38\x20\x2d\x39\x2e\x36\x37\x35\x34\x33\x35\x2c\x30\x20\ -\x30\x2c\x2d\x31\x32\x2e\x31\x39\x35\x39\x32\x38\x20\x2d\x37\x2e\ -\x31\x33\x39\x31\x35\x35\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x38\x34\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ -\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x08\x45\ +\x00\x00\x07\xda\ \x00\ -\x00\x26\xfb\x78\x9c\xed\x59\x6b\x6f\xdb\x38\x16\xfd\x9e\x5f\xa1\ -\x75\xbf\xb4\x58\x8b\xe6\xfb\xe1\x3c\x06\xd8\x2d\x66\x30\xc0\x2e\ -\x76\xb1\x6d\xb1\x1f\x07\x8a\x44\x3b\xda\xca\x92\x21\xc9\xb1\x93\ -\x5f\xbf\x97\x7a\xcb\x91\x93\x34\x99\x69\x07\x45\x5d\x34\x96\xc8\ -\x4b\x5e\xf2\xf0\xdc\x73\x49\xfa\xe2\xa7\xc3\x26\xf1\x6e\x6d\x5e\ -\xc4\x59\x7a\x39\x23\x08\xcf\x3c\x9b\x86\x59\x14\xa7\xeb\xcb\xd9\ -\xa7\x8f\x3f\xfb\x7a\xe6\x15\x65\x90\x46\x41\x92\xa5\xf6\x72\x96\ -\x66\xb3\x9f\xae\xce\x2e\xfe\xe2\xfb\xde\xdf\x73\x1b\x94\x36\xf2\ -\xf6\x71\x79\xe3\xfd\x9a\x7e\x2e\xc2\x60\x6b\xbd\xb7\x37\x65\xb9\ -\x5d\x2e\x16\xfb\xfd\x1e\xc5\x4d\x21\xca\xf2\xf5\xe2\x9d\xe7\xfb\ -\x57\x67\x67\x17\xc5\xed\xfa\xcc\xf3\x3c\xf0\x9b\x16\xcb\x28\xbc\ -\x9c\x35\x0d\xb6\xbb\x3c\xa9\x0c\xa3\x70\x61\x13\xbb\xb1\x69\x59\ -\x2c\x08\x22\x8b\x59\x6f\x1e\xf6\xe6\xa1\xf3\x1e\xdf\xda\x30\xdb\ -\x6c\xb2\xb4\xa8\x5a\xa6\xc5\x9b\x81\x71\x1e\xad\x3a\x6b\x37\x9a\ -\x3d\xab\x8c\x88\x31\x66\x81\xe9\x82\x52\x1f\x2c\xfc\xe2\x2e\x2d\ -\x83\x83\x3f\x6e\x0a\x63\x9c\x6a\x4a\x31\xc6\x0b\xa8\xeb\x2d\x9f\ -\x67\xb5\x3c\x24\x00\xc5\xc9\xc1\x54\xb5\x43\xef\x00\xff\x16\xfe\ -\x77\x0d\xda\x02\x54\x64\xbb\x3c\xb4\x2b\x68\x69\x51\x6a\xcb\xc5\ -\xfb\x8f\xef\xbb\x4a\x1f\xa3\xa8\x8c\x06\xdd\xb4\xe8\x8f\xfc\x8e\ -\x96\x24\x0d\x36\xb6\xd8\x06\xa1\x2d\x16\x6d\x79\xd5\x7e\x1f\x47\ -\xe5\xcd\xe5\x4c\xf2\xed\xa1\x7a\xbf\xb1\xf1\xfa\xa6\x1c\x14\xc4\ -\xd1\xe5\x0c\x66\xc8\x24\xa1\xd5\xfb\x80\x40\xa4\x36\x68\xba\x5b\ -\x76\x35\x18\x71\xe5\xe5\x94\x0a\xcd\x2a\x8b\x76\xd8\xcb\x28\x0b\ -\xdd\x38\x2e\x67\xef\xf3\x60\x55\xfe\xf6\xb7\x0f\x5b\x80\xc3\x22\ -\x07\xe0\x15\x18\x5e\x44\x76\x55\xb8\x06\xb5\x57\xf7\x06\x6e\x79\ -\x55\x07\xb5\x9d\xa3\x2d\x38\xda\xda\xd0\x51\xa2\xb6\x1e\xb8\x28\ -\xef\x1c\x0a\x63\x53\x56\x43\xe5\x8d\x06\xbb\xfd\xed\x00\x23\xf5\ -\x96\x1e\xa3\xf0\x87\x4c\x5a\xdc\xd5\x16\x04\x56\x19\xbe\xf0\xa4\ -\xcd\xbd\xc3\xea\x91\x6e\x9a\x11\xf8\x59\x1e\xaf\x63\x00\xa7\xb2\ -\xa3\x04\xb1\xea\x33\x6e\x03\x93\x1e\xcc\x8d\x49\x0a\x21\xba\x78\ -\xc6\xec\x8f\x1b\x0a\xad\x9f\x1e\x08\x46\xc2\x4d\xaa\x19\xc8\xf1\ -\x50\xc6\x33\x24\x95\xa5\x78\x15\x50\x0d\xdc\xc7\xdd\x3c\xb5\x72\ -\x2f\x02\x40\x1a\xfa\xfd\x01\x90\x07\x51\x1c\x24\xbf\xb8\x2f\x10\ -\xcc\x07\x1e\xc2\x2c\x49\x60\xfa\x97\xb3\x20\xd9\x07\x77\x45\xd7\ -\x7f\x25\x39\xcb\x9b\xdc\x82\x44\xbe\x71\xf1\x16\xe4\x6d\x1f\x8c\ -\x70\xee\xcb\x11\xff\xc6\x4e\x98\xd4\xbc\xab\x5e\x37\x85\x9f\xd2\ -\xb8\x04\x35\xdc\x15\x36\xff\xe0\x14\xe5\x5f\xe9\xa7\xc2\x3e\xb0\ -\xfa\x98\x07\x69\x01\xf2\xb5\xb9\x9c\x6d\x82\x32\x8f\x0f\x6f\xc9\ -\x1c\xbb\x7f\x48\x1a\x2d\xa8\xe1\xf0\x4c\x31\x45\x9a\x6a\xc9\xde\ -\x75\xcd\x43\x40\x09\x94\x03\x51\xc9\x71\xbf\x86\x21\xe0\x2b\x15\ -\x45\xca\x28\xd6\x8f\x77\x35\x69\xbb\x9a\xb4\xcd\x21\xf2\x38\x62\ -\x5c\x10\x88\x8d\x0e\xd2\x31\x1c\x43\x1c\x26\x81\xba\x6a\x2c\x2e\ -\x8a\x32\xdb\xb6\xd6\x8d\x44\x42\x09\x58\x49\xdf\xcc\xfa\x8a\xa2\ -\xbc\x4b\x6c\x5d\xe7\xc3\xf2\x64\xf9\xf2\xcd\xaa\xfa\x9c\x57\x45\ -\x19\xa0\x17\x97\x77\x4b\x32\x68\x92\xad\x56\x85\x85\x45\xec\x23\ -\xff\x31\x77\xda\xa7\x5f\xee\x0e\x4f\xb8\x23\x3d\x26\x8b\xf1\xd4\ -\xbf\x29\xf9\xe4\x0f\xf2\x01\x0e\x0a\x93\x27\xa9\xa7\x30\xfb\x7a\ -\xc4\x53\x58\x7c\xd7\xb4\xd3\x3f\x68\x57\xd1\x4e\x3f\x4d\x3b\x82\ -\xbf\x22\xed\xc8\xb7\x55\xbb\x11\x9e\x8f\x43\x3f\xbd\x4c\xd3\x4b\ -\x3a\xbd\xfc\xaf\xe4\xd4\xf3\x88\x3b\xc1\x7e\x45\xd9\x4b\xc2\xe8\ -\x54\x44\xbe\x68\xfb\xa6\x07\xfa\xf2\xdd\x6c\xdf\x4e\xc4\xdd\x6b\ -\xa4\x4c\x4b\xee\x63\x1f\xcf\x1e\x09\x62\xc3\x7e\xbf\x0d\x1c\x46\ -\x94\x12\x4c\xb9\x9c\xc3\x01\x54\x28\x6d\xa8\x24\xee\x51\x11\x69\ -\x8c\x34\xcc\x3d\x33\xc1\xb8\x84\xfc\x30\x17\xc4\x20\xa3\xb1\x16\ -\x73\x2e\x39\x22\x86\xf2\x01\x3b\x0f\x04\x02\xc1\x48\x24\x15\xa3\ -\x3d\xe5\xef\xa0\x54\x29\x84\xb9\xa4\x83\x51\x1f\x28\xd8\x0a\x8e\ -\x34\xc6\x03\x6a\xde\x41\x29\x21\x02\x61\x62\x14\x7f\x81\xb8\xb5\ -\xd0\x3d\xa5\x39\x5a\x4a\x5f\xf8\x6a\x52\xb1\x1e\xd5\x22\x2c\x89\ -\x09\xf1\x91\xf0\x9d\x3f\x43\xe5\xb4\xd4\xbe\x1a\x84\xd6\x50\xb6\ -\x1e\xf5\xc8\x94\x09\x57\xd7\x27\x3d\x9e\x90\xba\x3f\x80\x96\x4c\ -\xa9\x47\x29\xc9\xe9\x88\x08\xc2\x28\xa4\x14\xd5\x6c\x44\x04\xce\ -\x11\x50\x8d\x0d\x6d\x1d\x11\x80\x55\x0c\x33\xaa\x47\x44\x60\xc0\ -\x4c\xc5\x9f\xcd\xf4\x2f\x67\x8b\x9b\xd1\x53\xeb\x06\xf0\x7f\x39\ -\x4b\x56\xab\x20\xc0\x2f\x61\x09\xd3\x53\x59\xf4\x09\x86\xac\x82\ -\xd5\x8a\xfe\x19\x18\x52\x45\xdf\x63\x1c\x91\x42\x7d\x23\xd9\x62\ -\x12\x71\x42\x05\x99\x73\x48\xd4\xee\xd6\xeb\x35\xaa\x05\x4e\x30\ -\x17\x66\xac\x5a\xcc\x20\x8e\x8d\xa6\x2f\x55\xad\xe7\x69\xd6\xd7\ -\x56\xac\xaf\xa2\x57\x17\x0b\x77\x29\x58\x3d\x75\x79\xd7\xdd\x28\ -\x46\xb7\xb1\xdd\x9f\x75\xa3\xba\x0e\x3a\x62\x6c\x83\xb5\xad\xfc\ -\x01\x09\xeb\xed\x61\x53\x71\x9d\xe5\x91\xcd\xdb\x2a\x59\x7d\x46\ -\x55\xcd\x90\xea\x9b\xf2\xb3\x31\xe7\x5d\xaf\x5d\x3d\x9e\xae\x2f\ -\x6e\x82\x28\xdb\xc3\xd6\xee\xb8\xf2\x3e\xcb\x80\x9c\x02\x89\xe3\ -\x0a\xb7\x11\x64\x0f\xcc\xdd\xa6\x71\xa2\x74\x97\xe7\x00\x8a\x9f\ -\x04\x77\x16\x26\x50\x7d\xb5\x78\x17\x37\xd9\x7e\x9d\x3b\x20\xca\ -\x7c\x67\x8f\x5b\x46\x59\xb8\x73\x37\xee\xfe\xae\x8e\xa7\xe6\x9e\ -\x77\x60\xe1\xda\xfa\xd7\xd7\xd9\x61\xba\x83\x7d\x9c\xc2\xc4\xfc\ -\xe6\xe6\x98\x50\xfd\x60\xfa\x8d\x45\x7b\x97\xac\x84\x3e\x61\x71\ -\xe8\x49\x79\x5c\xe5\x80\x37\x27\xea\x36\xc1\x21\xde\xc4\xf7\x36\ -\xea\xcf\x0d\x17\x1b\x5b\x06\x51\x50\x06\x3d\x0b\xda\x12\x08\xe2\ -\x56\xbd\x2f\xf2\x68\xb5\xfc\xcf\xfb\x9f\x3b\x46\x87\xe1\xf2\xbf\ -\x59\xfe\xb9\xe7\xa9\x33\x08\xae\xb3\x1d\x0c\xbb\x8b\x33\x77\x33\ -\x1d\x2e\x9d\xa6\x04\xe5\x55\xbc\x81\xb5\x75\x77\xfe\x7f\x3d\x6c\ -\x12\xe0\x63\x57\x31\x32\x76\x9b\xc1\xbe\xd3\xba\xdb\xdc\xd6\x77\ -\xfa\x93\x3f\x83\x44\xe1\x26\x76\x8d\x16\x1f\xca\x38\x49\x7e\x75\ -\x4e\x06\x91\xd7\x74\x1a\x97\x89\xbd\xaa\x7c\xd6\x8f\xed\x2c\x16\ -\xcd\x34\xda\xc0\x19\xcc\xf2\x62\xd1\xc2\x50\xbd\xad\x7b\x78\x46\ -\x94\xe9\x10\x4e\x82\x6b\x9b\x5c\xce\xfe\xe1\x2a\xbd\x07\xb5\xeb\ -\x3c\xdb\x6d\x37\x59\x64\x9b\xe6\x2d\xac\xeb\x76\x9c\xe5\xc9\xd3\ -\x0a\xa8\x2e\x2c\x84\xe0\x73\x5f\x28\x89\x98\x56\xa6\x92\x63\xc9\ -\x99\x34\x98\xbc\x1b\x25\x83\xfa\xe7\x81\xc2\xba\xbc\xf2\xef\x24\ -\x48\x7b\x95\x6f\x64\x24\x8a\x8b\x2d\x0c\x60\x19\xa7\x4e\x23\x7a\ -\x41\xdc\x06\xe5\xcd\x03\xcd\x69\xe5\xad\xfa\x9c\xaf\x00\xde\xd1\ -\x4b\x7f\x52\x44\x4a\x73\x46\x98\x62\x75\x79\xbe\x4b\xec\x32\xcd\ -\xd2\x7b\xd0\x02\x50\xa9\x3c\xfb\x5c\xbd\xda\xe6\xb9\x0e\x80\x25\ -\x05\x31\x77\x1f\x72\xbe\x09\xf2\xcf\x36\xaf\x4d\x6e\xe3\x22\xbe\ -\x8e\x13\xd7\x6d\xf5\x98\xd8\xf3\xf1\x98\xcf\xb3\x5b\x9b\xaf\x92\ -\x6c\xdf\xd5\xdb\x34\x80\x2f\xff\x3a\x08\x3f\x3b\x98\xd3\x68\x19\ -\x84\x10\xa9\xbb\x24\x28\xed\x40\x48\x1d\xb1\x3d\x61\x04\x52\x70\ -\xf8\x63\x73\x01\xc9\x44\x41\x8a\x31\x5e\xe8\x69\x24\xb1\x20\x80\ -\xb0\x44\x46\x08\x49\x95\x47\x14\x72\xa9\x4f\xcf\x7d\xc2\x90\x21\ -\x90\xd7\x98\x07\x27\x4d\x0d\xeb\x40\xe7\x3e\xc5\x08\x52\x85\xd6\ -\x9e\x2f\x20\xe7\x49\x97\x15\x29\x24\x37\x4c\x8d\xf4\x7c\x02\x95\ -\x8c\x51\xc8\x8e\x02\x8e\xbc\x58\x18\x02\x65\x12\x51\x6e\x34\x78\ -\xd0\xb0\xf1\xc6\x5a\x2b\xcf\x6f\x9d\x76\x3e\xfd\xc6\xa9\x99\xf7\ -\x3e\xfd\xc6\x29\x9b\x77\x3e\x5b\x97\x9d\xc7\xc6\x21\x9f\x77\xfe\ -\x1a\x77\x62\xde\x79\xbb\x1f\x00\x51\x9d\x5d\x81\x20\x0c\x18\xe4\ -\x9b\x61\x9a\x3a\x62\x41\x97\x28\x80\xb7\x2e\xc4\x40\xf3\x42\xf7\ -\x99\xee\x8b\xfb\xec\x18\x6d\xd8\x04\x20\xa2\x01\xe4\xb9\x54\x08\ -\x08\xcb\x14\x9f\x44\x71\x0a\x9e\xce\xae\x33\xeb\xac\x26\x67\xf5\ -\x1d\x71\xf6\xf4\x8a\x9c\x9c\x23\x08\xe2\xdb\xe3\xbd\x22\x9c\x60\ -\xdf\x8d\x27\x4d\x4e\xcf\xb5\xed\xed\xc4\x74\x9b\x62\xe7\x01\xf4\ -\x6c\x79\xbd\x2b\xcb\x61\xd9\xff\xb2\x38\x5d\x56\xf3\x68\x4b\x41\ -\x94\x6d\x9e\x40\xb2\x29\x97\xbc\x2d\xeb\x87\xd1\x14\x44\x01\xe4\ -\xfa\x3c\x07\x9c\x86\x50\xbb\xd2\x7a\x27\xb4\xc4\xdf\x42\x1b\x28\ -\xec\x65\x6b\x6d\xd0\x7f\x3a\x6d\xd0\x13\xda\x40\x9f\xd6\x06\xf6\ -\x40\x1b\x4e\x44\xd1\x50\x1b\x7e\x37\x65\xd0\x93\x48\x53\x26\xf4\ -\x9c\x72\xc4\x5d\x18\x92\x0a\x69\xa1\xa5\x11\x0e\x69\xac\x85\xc1\ -\xd2\x21\x0d\x87\x0b\x02\x09\x0f\x84\x04\x36\x43\x4c\x49\x8f\x4a\ -\x04\x6b\xa4\x00\x42\x38\xd1\x2a\x23\x60\x99\xbc\xc4\x73\x19\x11\ -\x86\xac\xe6\x4c\x40\xc2\xa4\x44\xea\x09\x78\xa4\x33\x23\x0a\x4b\ -\xc0\x1a\x4e\x2b\xc6\x30\x18\xc8\x33\x45\x64\x32\xc0\x38\xfd\x11\ -\x60\x2f\x13\xb2\x2f\x4c\x2d\x63\x02\xfd\xb3\x4b\x2c\x7a\x2e\x49\ -\x9d\x58\x98\x27\x99\x9e\x73\x90\x75\x25\xb9\x61\x8e\x12\x7f\x6c\ -\x56\x99\x22\x04\x1c\xbe\x7f\x10\xe2\x45\x84\xa8\x2e\xb2\xa1\x84\ -\xc3\x16\xe1\xc1\x2e\x02\x0b\x88\x5a\xc1\xe8\x9c\x29\x50\x06\x4e\ -\x95\xa9\x02\x99\x4a\x88\x77\xdf\x20\xc1\x30\x56\xc4\x49\x1d\x65\ -\xa0\xb6\xb0\xd3\x00\x9d\x80\xc0\x0e\x9d\x15\x26\xb0\x9f\x02\x41\ -\x81\x58\x05\xa1\x80\x77\x65\xdc\x3b\x51\x8a\x53\x0a\xef\x84\x18\ -\x2d\xe7\x06\x41\x67\x84\xd5\xb4\x71\xd7\x1e\x1c\x44\x47\x21\xd8\ -\x5f\x4b\x28\x9c\x20\x44\xbd\xb1\x68\x7e\x36\x39\x5a\xf1\xc7\xd7\ -\x97\x60\xa9\x15\x33\xe6\x59\x0b\x5c\xad\xe9\x2b\x16\x78\xf6\x9c\ -\x90\xeb\xef\x0d\xd6\xf5\xc1\x07\xbe\x2e\xdc\x41\xed\xea\xec\xff\ -\xfe\x3a\xdd\x9e\ -\x00\x00\x06\x99\ +\x00\x1b\x14\x78\x9c\xdd\x58\x4b\x6f\xdb\x48\x12\xbe\xfb\x57\x70\ +\x98\x4b\x82\x15\x5b\xfd\x6e\x92\x96\x3c\x87\x09\x66\x10\x60\x81\ +\x05\x36\x09\xf6\x38\xa0\xc8\x96\xc4\x35\x45\x0a\x4d\xca\x92\xfc\ +\xeb\xb7\x9a\xe2\x53\x0f\xc7\x9e\x45\x7c\x18\x1a\xb1\xd9\x55\xd5\ +\xd5\x55\xc5\xaf\xeb\x91\xd9\xaf\x87\x4d\xe6\x3c\x69\x53\xa6\x45\ +\x3e\x77\x09\xc2\xae\xa3\xf3\xb8\x48\xd2\x7c\x35\x77\xbf\x7f\xfb\ +\xdd\xf3\x5d\xa7\xac\xa2\x3c\x89\xb2\x22\xd7\x73\x37\x2f\xdc\x5f\ +\x1f\xee\x66\xbf\x78\x9e\xf3\x9b\xd1\x51\xa5\x13\x67\x9f\x56\x6b\ +\xe7\x4b\xfe\x58\xc6\xd1\x56\x3b\x1f\xd7\x55\xb5\x0d\xa7\xd3\xfd\ +\x7e\x8f\xd2\x86\x88\x0a\xb3\x9a\x7e\x72\x3c\xef\xe1\xee\x6e\x56\ +\x3e\xad\xee\x1c\xc7\x81\x73\xf3\x32\x4c\xe2\xb9\xdb\x6c\xd8\xee\ +\x4c\x56\x0b\x26\xf1\x54\x67\x7a\xa3\xf3\xaa\x9c\x12\x44\xa6\x6e\ +\x2f\x1e\xf7\xe2\xb1\x3d\x3d\x7d\xd2\x71\xb1\xd9\x14\x79\x59\xef\ +\xcc\xcb\x0f\x03\x61\x93\x2c\x3b\x69\x6b\xcd\x9e\xd5\x42\x24\x08\ +\x82\x29\xa6\x53\x4a\x3d\x90\xf0\xca\x63\x5e\x45\x07\x6f\xbc\x15\ +\x6c\xbc\xb6\x95\x62\x8c\xa7\xc0\xeb\x25\x5f\x27\x15\x1e\x32\x08\ +\xc5\x4d\x63\x6a\xee\xf0\x74\x08\xff\x16\xfe\x75\x1b\x5a\x02\x2a\ +\x8b\x9d\x89\xf5\x12\x76\x6a\x94\xeb\x6a\xfa\xf9\xdb\xe7\x8e\xe9\ +\x61\x94\x54\xc9\x40\x4d\x1b\xfd\xd1\xb9\xa3\x4f\x92\x47\x1b\x5d\ +\x6e\xa3\x58\x97\xd3\x96\x5e\xef\xdf\xa7\x49\xb5\x9e\xbb\x92\xd7\ +\xab\xb5\x4e\x57\xeb\xaa\x5b\xa6\xc9\xdc\x05\xef\x38\xa6\xa2\x5e\ +\x0f\xc0\x43\x4e\x02\x8d\xaa\xb0\xe3\x60\xc4\x7d\xc4\x10\x71\x4c\ +\xe0\xfb\xb2\x16\x6a\xad\x0e\x93\x22\xb6\x66\xcc\xdd\xcf\x26\x5a\ +\x56\x7f\x7e\xcd\xa3\x2d\xb2\xc1\x7b\x00\xa9\x59\xa2\x97\xa5\x95\ +\x3e\x9d\x6a\x57\x70\xac\xaa\x79\xc0\x85\xb0\xe9\xc8\xfc\x61\xa2\ +\x24\x05\xb0\x9c\xe4\x4e\x92\x63\x0e\x53\x12\x37\x7b\x60\x57\x59\ +\x15\xdb\x56\x16\xec\xa8\x8e\x19\x1c\x6e\x89\x5e\x5c\x64\x85\x09\ +\x3f\x60\xcc\x16\x7e\x7c\x5f\x93\x0a\x88\x4e\x5a\x1d\x43\x72\xef\ +\xf6\x7b\x8a\xe5\xb2\xd4\x10\x10\x3c\xa0\xd5\x51\x81\x1d\x70\x16\ +\x75\x9d\xe9\xeb\x4f\xe3\x24\x58\x2e\xd5\x2b\x4e\x23\xd7\x4f\xe3\ +\xdd\x69\xb3\xe9\xd8\xed\x86\xda\x7d\x8e\x2d\x7c\x8e\xad\x8e\xed\ +\xa5\x69\x35\x75\x5f\xa1\x3a\x5a\x9c\x8c\x45\x59\xd2\x9d\xd8\x7f\ +\xd2\xed\x9f\x07\x70\xdc\x09\x1d\x22\xed\xaf\xab\x12\xc7\x46\x02\ +\xee\x01\xfc\xc1\x57\x65\x9e\xe7\x2e\xa3\x2f\xa8\x69\x2c\xf0\x0a\ +\x93\xae\x52\x0b\xae\x5a\x0e\x23\x69\x1f\x35\xde\x03\xc1\x18\xf8\ +\xc6\x31\x63\x7d\x4c\x5e\xf2\xfe\x62\x23\xb9\x62\xeb\xb9\x21\x18\ +\x09\xeb\x14\x62\xcd\x73\x33\x0a\xe0\x21\xa9\x25\xc5\xff\x15\xa8\ +\x26\xdc\xe7\x6a\x7e\xf4\xe5\xba\x00\xdc\xb8\x24\xad\x3c\xa0\x30\ +\x03\xf7\xe7\x6e\x94\xed\xa3\x63\xd9\xe9\xaf\x73\x52\xb8\x36\x1a\ +\x72\xe8\x87\xb1\x0e\x8e\x03\xe1\xbe\x70\xdb\x20\xa5\x75\xec\x55\ +\x43\xfc\x9e\xa7\x15\x24\xcb\x5d\xa9\xcd\x57\x9b\x70\xfe\x95\x7f\ +\x2f\x75\x7f\x18\x99\xbb\x01\x86\xfc\xe1\xab\x5e\xf3\x11\x88\x84\ +\x04\x18\x0d\x89\x07\x0a\x44\x2a\x15\x0a\x30\xdc\xb3\x4e\x94\x5e\ +\x11\x6d\x8f\xfe\x66\xa2\xbc\x84\x94\xb9\x99\xbb\x9b\xa8\x32\xe9\ +\xe1\x23\x46\x04\x73\x21\x55\x40\x26\xd8\xfe\xf4\x4b\x4e\x31\x68\ +\xc6\x58\x4e\x18\x94\x42\xca\x24\xfd\xf4\xc3\x48\x5e\x04\xa0\x8e\ +\xcf\x5b\xd2\x8d\x58\x2c\x97\x7f\x31\xdd\xc0\x59\xea\x4d\xe9\x26\ +\x26\x9a\xfd\xe5\x74\x03\xa7\x05\x3f\x4a\x37\xef\x8e\x37\x1a\xa8\ +\xb7\xe2\xed\x45\x68\x10\x22\xb8\xf0\x59\x07\x0d\xc9\xa8\x2f\xf8\ +\xc4\x0b\x02\x84\x19\xa7\x3e\x99\x78\x84\x09\xa4\x30\xe7\xc1\xa7\ +\x9f\x03\xe1\x9f\x78\x79\xeb\x5a\xf8\x62\xa9\x94\x23\x9f\x28\x41\ +\x82\xd0\xc0\x67\x23\xa7\x38\x04\x26\x90\x34\x60\x63\xaf\x7c\xa4\ +\x18\x57\xc2\x1f\x7b\xa5\x10\x25\xd8\x27\xf4\x95\x1f\xe9\xcd\xf7\ +\xcd\xba\x04\x6d\xea\x3b\x16\x78\x0f\xbf\x6f\x89\xf7\xd8\x8b\xb7\ +\x6e\x36\xb5\x9d\x51\xfd\xd6\x95\x05\xdb\x53\x25\x4f\xa9\xde\xf7\ +\xed\xd3\x22\xea\xae\xc0\x36\x5a\xe9\xda\x38\xc0\xc7\xb2\x7e\x1a\ +\xc6\xa2\x30\x89\x36\x2d\xab\x2e\xb6\x72\xc4\x6a\xec\x3f\x8d\x0a\ +\x77\x63\x38\x5a\xad\x1d\x1f\x5f\xe7\x97\xeb\x28\x29\xf6\x80\xab\ +\x73\xe6\x73\x51\x6c\xac\x56\xb8\xcd\x82\x60\x71\xce\x8e\xa1\x0e\ +\x7a\x90\x9d\x25\xf7\x05\x63\x17\x5c\x38\xd0\xe3\xc8\x0f\x94\xa2\ +\xea\x72\xef\xce\x18\x08\x95\x97\x45\x47\x0d\x6e\xd5\x7f\xda\x50\ +\x97\xeb\x62\xbf\x32\x36\x3c\x95\xd9\xe9\xf3\x9d\x96\xe3\x2d\x16\ +\xc5\xe1\x3a\x1b\x7a\xd7\x9d\x9d\x53\xbc\xdd\x09\xc9\xdb\xc3\xb9\ +\xc4\x3e\xcd\xc1\x5d\xaf\x69\xa8\x09\xf5\x2f\x82\xd2\x48\xb4\x4d\ +\xb6\x52\xea\x86\xc4\xa1\xc7\xe3\x39\xeb\x78\x9b\xb5\x89\x0e\xe9\ +\x26\x7d\xd6\x89\x45\xd7\x09\x44\xb3\x8d\xae\xa2\x24\xaa\xa2\x1e\ +\x1a\x2d\x05\x7a\xa7\xb6\x53\x9e\xc1\x70\x14\xfe\xfb\xf3\xef\x1d\ +\xcc\xe3\x38\xfc\x4f\x61\x1e\x7b\x84\x5a\x81\x68\x51\xec\xc0\xea\ +\xee\xf2\xd9\x9e\x3d\x0e\x6d\x4a\x8d\xaa\x87\x74\x03\x1f\xdc\x4e\ +\x42\xff\x80\x81\x04\x40\xda\x31\x46\xc2\xb6\x81\xe9\x95\x9e\xd4\ +\x1a\x7d\x9a\x74\xae\x0e\x87\x49\xbc\x49\xed\xa6\xe9\xd7\x2a\xcd\ +\xb2\x2f\xf6\x90\xc1\x75\x6c\x94\xa6\x55\xa6\x07\x77\x74\xda\x58\ +\xdf\x5e\xa2\x81\x73\xb3\x69\xeb\x7d\xbd\x5a\xf5\x51\x19\x01\xa5\ +\x0b\x6c\x16\x2d\x74\x36\x77\xff\x69\x99\xce\x05\x77\x65\x8a\xdd\ +\x76\x53\x24\xba\xd9\xde\xf0\xab\xbe\xd2\xd4\xaf\x19\x4c\xce\x1f\ +\xf1\x84\x41\x7f\xd1\x98\xb4\x8d\xaa\x75\xd7\xdc\x9d\x72\x48\x9b\ +\x2b\xb0\x4d\xc1\xe2\xbe\xcb\x5e\xf6\xb9\x5f\x82\xef\xa3\xc5\x20\ +\xb5\x94\x95\x29\x1e\x75\x98\xc3\xc4\xde\xbc\x9f\x10\x18\xd2\xfb\ +\x4d\x64\x1e\xb5\x39\xb1\x9e\xd2\x32\x5d\xa4\x99\xdd\x53\xbf\x66\ +\xfa\x3e\x49\xcb\x2d\xd8\x0d\xb3\xa3\x4d\x33\xf7\x05\x8c\x70\xcb\ +\xac\xd8\x77\x7c\x9d\x47\xf0\xc7\x5b\x44\xf1\xa3\xf5\x34\x4f\xc2\ +\x28\x86\x3b\xb0\xb3\xfe\x74\xc9\xcb\x02\xca\x11\x50\x0c\x7c\x0a\ +\xe3\xde\xc4\x93\x88\xfa\xcc\x67\x4a\x39\x1e\x91\x50\x44\xc1\x99\ +\x09\xb4\xf2\xb6\x54\x3a\x31\xd0\x10\x70\x05\xf1\xa1\xae\x22\xe6\ +\x4b\x82\x03\x07\xee\x32\x21\xcc\x57\xc1\xc4\xa3\x88\x0a\x07\x54\ +\x88\x80\x29\xd1\x2f\xb1\x94\x5c\x42\xff\x06\xdb\xa1\x6d\x43\x01\ +\x63\x82\x05\xf5\x02\x34\x07\xf5\xa3\x1c\x5b\xc0\x95\x8f\x31\x21\ +\xd0\x3f\x43\x17\xc1\x81\x8b\x04\x57\x94\xc1\x1a\x8c\x00\x65\x50\ +\x97\x84\x93\xc1\x46\x81\x04\x18\xc6\x03\x31\x09\x6c\x0d\x76\x58\ +\xb7\x06\x8e\x04\x21\x90\x80\x2d\x5e\x80\xe4\xc9\x6e\x48\x55\x92\ +\x72\xe8\x0c\xac\xfd\x44\x08\xee\x70\x24\x31\x38\xa0\x40\xaf\x35\ +\xd6\x51\x48\xb4\xaf\x03\x83\xad\x7d\x56\xc5\x04\x9c\x0c\x30\xa5\ +\x7e\x30\x20\xb5\x6f\x60\x3a\x44\x83\x28\x2a\xa8\x03\x83\x3d\x11\ +\x81\xf2\x6b\xef\xed\x49\xa4\xa6\xc1\x92\x21\xa6\x38\x78\x2a\xc1\ +\x03\x30\x4f\x91\x56\xc7\x09\x16\xd8\x77\x40\xc4\x1a\x3f\xf1\x4e\ +\x4e\x00\x8d\x3a\xcf\xa3\xfa\x6f\xa0\x81\x60\x10\x24\xaf\xaf\xda\ +\x83\xfe\x22\xcf\x81\x5d\x18\x0f\x52\xe8\x53\x54\xed\x8c\xb6\x99\ +\xa6\xab\x45\x76\xef\x19\x66\xaf\x81\xf4\x54\x61\x6e\x80\xb4\x15\ +\x3d\xc3\x69\xb3\xb4\x28\x04\x53\xc2\xc5\xae\xaa\x86\xb4\xff\x16\ +\x69\x1e\xd6\x00\x6c\xa9\x90\x13\xb4\xc9\x20\xd7\x55\x21\x6f\x69\ +\xe7\x87\x79\x49\x04\xf5\xc7\x18\x00\xf8\xf0\x6e\x58\xea\xa9\x04\ +\x87\xf8\x5d\x2e\xc8\x30\xee\x1d\xb1\xa9\x11\x02\x1a\x43\x45\x03\ +\xdc\x7f\x8e\xee\xff\x5f\x90\x24\x52\x62\xd2\x77\xbb\xb6\x26\x32\ +\x84\x7d\x1f\xf2\x76\xdf\x73\xd5\x4d\x1b\x80\x9d\x0e\x5a\xae\xea\ +\x4a\xa7\xeb\x73\x16\x50\x66\x2f\x28\x80\x89\x01\x3a\xa1\xcd\x9b\ +\x8c\x5e\x3b\x09\xb8\x48\x83\x41\x68\x94\xaa\xc6\x73\x68\x64\x62\ +\xf7\xc7\x88\x80\x64\xfe\xf1\xb2\x2f\x95\x9f\xce\x21\x52\x2f\xcd\ +\x2e\xd3\xa1\x7e\xd2\x79\x91\x24\x43\xd0\x04\x74\x31\x06\x0d\x40\ +\xfd\xef\x0f\x1b\x1b\x7b\x80\x4d\xff\x65\xbb\x0f\x60\x3b\x24\xdb\ +\x20\x01\x76\xb8\xba\xc2\xb6\xb8\x80\x11\xc6\xa7\x9c\xf1\x4b\xb6\ +\x81\xdd\x36\xf9\xf8\x9c\x0e\xc6\xf7\x9e\x7d\xbc\xc6\xae\x13\x3d\ +\x4c\xca\x92\x30\xc6\xe5\xa4\x53\xef\x44\x4e\x27\x3c\xe9\xde\x1c\ +\xc8\x7d\xf0\xe3\x59\x74\x4a\x1f\x32\x1a\x6b\xb2\xe1\x75\xb9\x91\ +\xd8\xf3\x35\x24\xf7\x95\x94\x40\xef\xc7\x14\x66\x13\xab\x1c\x73\ +\xe8\x03\xc5\x2d\xbc\x5e\x94\xd6\x37\x55\xd6\x9b\x88\xbc\xac\xb5\ +\x0c\xd9\xab\xc3\xe8\x3b\xd6\x5c\xc2\x6c\x18\x18\x86\x69\x95\x0a\ +\xc4\xa9\x50\x0a\x2a\xdd\x04\x26\x30\x48\x11\x92\x07\xcc\xf1\xea\ +\xb1\x93\x71\x0c\x77\x1a\x38\x50\x15\xa0\x76\x11\x2e\x9d\x21\xdd\ +\x16\x2b\x68\xc2\x39\xbc\xfa\x88\x82\x16\xdf\xaf\xa5\xbd\x5e\xdc\ +\x1b\x33\x06\x27\x5c\xad\x2e\xdc\x93\xaf\xae\x2e\x17\xd8\x83\x30\ +\x6b\x9b\x5d\xa0\xc1\x8e\xfb\xe7\xc5\xcf\x7b\xfd\x83\x26\xfe\x22\ +\x7a\x4b\x8a\xe1\x8a\x25\x67\x75\x09\x29\x98\x3e\x02\xe1\xff\xbd\ +\x13\xcd\x09\x4c\xc4\x76\x47\xdc\xd6\x07\xb8\xd8\x94\x4b\xa9\x64\ +\x0f\x26\xd1\x43\x49\x8d\xa0\xc4\x9d\x21\xbd\x81\x12\xbb\x09\x25\ +\x7e\x03\x4a\xe2\x06\x90\x7e\x12\x8c\x66\xd3\xd5\xc3\xdd\xcc\xce\ +\x2a\x0f\x77\xff\x03\x83\x3b\xb2\xf2\ +\x00\x00\x08\x1e\ \x00\ -\x00\x1c\xb5\x78\x9c\xed\x59\xdd\x6f\xdb\x36\x10\x7f\xef\x5f\xa1\ -\x29\x2f\x2d\x16\x51\x22\x29\x51\x1f\x89\xd3\x87\x05\x1d\x0a\x74\ -\x18\xb0\xb6\xd8\x63\x41\x4b\xb4\xad\x45\x16\x05\x4a\x8e\xed\xfe\ -\xf5\x3b\xea\x5b\xb6\x1c\xa4\x18\x56\x60\x6b\x14\x24\x92\xee\x8b\ -\xc7\xe3\xef\xee\x28\xe6\xf6\xed\x61\x9b\x19\x8f\x42\x95\xa9\xcc\ -\x17\x26\x46\x8e\x69\x88\x3c\x96\x49\x9a\xaf\x17\xe6\xe7\x4f\xef\ -\xac\xc0\x34\xca\x8a\xe7\x09\xcf\x64\x2e\x16\x66\x2e\xcd\xb7\x77\ -\xaf\x6e\x7f\xb2\x2c\xe3\x17\x25\x78\x25\x12\x63\x9f\x56\x1b\xe3\ -\x7d\xfe\x50\xc6\xbc\x10\xc6\xeb\x4d\x55\x15\x91\x6d\xef\xf7\x7b\ -\x94\xb6\x44\x24\xd5\xda\x7e\x63\x58\x16\x68\x96\x8f\xeb\x57\x86\ -\x61\xc0\xb0\x79\x19\x25\xf1\xc2\x6c\xe5\x8b\x9d\xca\x6a\xb9\x24\ -\xb6\x45\x26\xb6\x22\xaf\x4a\x1b\x23\x6c\x9b\x83\x78\x3c\x88\xc7\ -\x7a\xf0\xf4\x51\xc4\x72\xbb\x95\x79\x59\x6b\xe6\xe5\xd5\x48\x58\ -\x25\xab\x5e\x5a\x3b\xb3\xa7\xb5\x10\x0e\xc3\xd0\x76\x88\x4d\x88\ -\x05\x12\x56\x79\xcc\x2b\x7e\xb0\xa6\xaa\xe0\xe3\x9c\x2a\x71\x1c\ -\xc7\x06\xde\x20\xf9\x3c\xa9\xe8\x90\x41\x24\x2e\x3a\x53\x73\xc7\ -\xa3\x43\xf4\x0b\xf8\xed\x15\x3a\x02\x2a\xe5\x4e\xc5\x62\x05\x9a\ -\x02\xe5\xa2\xb2\xef\x3f\xdd\xf7\x4c\xcb\x41\x49\x95\x8c\xcc\x74\ -\xc1\x9f\x8c\x3b\x59\x91\x9c\x6f\x45\x59\xf0\x58\x94\x76\x47\xaf\ -\xf5\xf7\x69\x52\x6d\x16\x26\x73\x8b\x43\xfd\xbe\x11\xe9\x7a\x53\ -\x8d\x08\x69\xb2\x30\x61\x86\x14\x07\x41\xfd\xde\xf9\x10\xf5\x40\ -\x72\x10\x25\x8d\x68\x6b\x78\xcc\x72\xd9\x54\x2b\x91\xb1\x76\x65\ -\x61\xf2\xa2\xc8\x8e\xa8\x8b\x5d\xaf\x2a\x77\x55\xb1\xab\xbe\x88\ -\x43\x25\xf2\xc6\x06\x78\x3f\x9a\x4a\xcd\xd6\x6a\x3d\xcd\xbc\x03\ -\x03\xb7\x89\x58\x95\xda\x50\xe3\xb0\x7e\xa3\x38\x74\x6a\x1e\x70\ -\x21\xea\x82\xab\x5f\x15\x4f\x52\xc0\x5a\x23\xd7\x48\x4e\x39\x94\ -\x7a\x6e\xab\x03\x5a\x65\x25\x8b\x4e\x16\xa6\x50\x1d\x33\xf0\x5b\ -\x13\xad\x58\x66\x52\x45\x57\x04\x7b\x7e\xec\xdf\xd4\x24\x09\xc1\ -\x4d\xab\x63\x84\x6f\xcc\x41\x47\xae\x56\xa5\x80\x68\x3a\x23\x5a\ -\x1d\x50\xd0\x80\xb1\x98\x69\xd8\xcf\x1f\x8d\x25\x9c\xaf\x56\xcf\ -\x18\x0d\xcf\x8f\x16\xf4\xa3\xdd\xda\xd3\x69\x3f\x1d\xa5\x6e\x69\ -\xc0\x8d\x4c\xc4\x60\x9f\x67\x7b\x7e\x2c\xfb\x41\x6a\x4c\x47\x1b\ -\x25\x20\x07\xaf\x66\xe2\xf9\x44\xb8\xbd\x30\xec\xd9\xeb\x96\xf8\ -\x39\x4f\x2b\x48\xb6\x5d\x29\xd4\x47\x0d\xd8\xdf\xf3\xcf\xa5\x38\ -\x93\xfa\xa4\x78\x5e\x42\x76\x6c\x17\xe6\x96\x57\x2a\x3d\xbc\x86\ -\x7a\xe6\x04\x60\x31\xb8\x76\xf4\x0f\xf2\x31\x61\xcc\xbd\xb6\x48\ -\x88\x98\x83\x71\x80\xaf\x69\x18\x20\xe2\xb9\xbe\xff\x66\xf0\x1d\ -\x2f\x4c\x42\x43\x82\x08\xc5\xb4\xa7\x1e\x81\x8a\x31\x03\x6a\xe8\ -\x0e\xd4\x03\x01\x59\x46\x03\x14\x7a\x83\x24\x19\x4b\xf6\xf1\xed\ -\x63\x56\x40\x26\x14\x10\x34\xa8\x5e\x9d\x4a\x9f\x0a\xd5\x51\x27\ -\xec\x54\x94\x26\xe6\x59\xdc\x1f\x8b\x2f\x07\x80\x90\x11\x19\x94\ -\xc0\x1f\x3c\x2b\x71\x6c\x24\x30\x14\x24\xb8\x39\xb3\x32\x5f\x75\ -\x5a\x3f\x61\xa6\xf5\xc0\x92\x2a\x5d\xa7\x90\x79\xb5\x1c\xc1\x88\ -\xd6\xd7\x54\x07\xd6\x72\x34\x37\xc8\xb5\x0e\xcb\xb7\xb6\x4e\xbe\ -\xfa\xa9\x9f\xa9\xce\xf8\xe4\x31\x15\xfb\x21\x43\x97\xbc\x5f\xd4\ -\x82\xaf\x45\x0d\x71\x80\xcf\xaa\xbe\x5a\xc6\x52\xaa\x44\xa8\x8e\ -\xc5\xea\x6b\xc2\x6a\xb3\xa0\xe9\x65\xaf\x4e\x26\x03\x56\x7b\xbe\ -\x33\xcf\x2f\x37\x3c\x91\x7b\x58\xd5\x53\xe6\x57\x29\x01\x58\x04\ -\xf9\xde\x29\x27\x86\xa5\x20\x1e\x40\xcd\xc5\x61\x70\xc6\x3c\x6a\ -\xa5\x80\x52\x00\x62\x78\xc6\xdc\x29\x05\xc0\xb5\x32\x7e\x14\x30\ -\x9f\xfa\xd6\x05\xb4\xdc\xc8\xfd\x5a\xe9\xb8\x54\x6a\x27\x4e\x35\ -\xa1\x66\xee\x74\x8f\xb4\x76\x4d\x6a\xb4\x95\x79\x24\xa1\x75\xad\ -\xe5\x52\x1e\xe6\x0d\xec\xd3\x1c\xe6\x69\xf5\xb5\x1e\x5f\x10\xe8\ -\x8a\xbf\x4f\xce\x22\xd2\x4a\x1c\x86\x5a\x76\xca\xd2\x73\xf7\x3a\ -\x10\x6c\x45\xc5\x13\x5e\xf1\x61\xc1\x3b\x0a\x40\x85\x76\x65\x19\ -\x9a\x72\xf4\xc7\xfd\xbb\xbe\x04\xc6\x71\xf4\xa7\x54\x0f\x43\xf5\ -\xd2\x02\x7c\x09\x45\x7f\x61\xf6\x65\x59\x17\xfb\x38\xd2\xa9\xcf\ -\xab\xbb\x74\x0b\xcb\xa8\x3b\xf0\xcf\xd0\x08\x01\x7a\x3d\x63\x22\ -\xac\x33\x6d\x30\xda\x98\x55\xa2\xe9\xb0\xb3\x9b\x92\x24\xde\xa6\ -\x5a\xc9\xfe\x58\xa5\x59\xf6\x5e\x0f\x32\x2e\xd5\x76\xeb\x68\x57\ -\x4d\x47\xf3\xb8\xb5\xbb\x89\xd6\x6f\xeb\x21\x00\x93\x05\xef\x83\ -\x97\xf1\xa5\xc8\x16\xe6\x07\xcd\x34\xce\xb8\x6b\x25\x77\xc5\x56\ -\x26\xa2\x55\xef\x02\xb7\x1e\xe7\xe1\x9a\x32\x3c\x64\x66\x75\x56\ -\x18\x1d\x84\xbd\xc0\xf7\x3c\xdc\x16\xc6\xee\xcd\xa2\xcc\xd1\xa5\ -\x91\xb1\x6b\x0b\x7b\x2e\xc2\x14\x63\xf7\xcd\xd0\xfe\x0a\x5e\x6d\ -\xa6\x8d\x44\x41\xb6\xeb\x6a\x39\xea\x2f\x40\xfd\xcd\x80\xe2\xe9\ -\xa3\x10\x7b\xe4\x1a\x3b\x75\xbd\x70\x5c\xe3\xc3\x98\x4a\x3d\x8a\ -\x98\xef\x62\x4d\x75\x5d\x0a\x43\xd1\xf0\x12\x95\x04\x04\x85\x01\ -\xf3\x35\xd5\x23\x2e\x54\x56\x87\x5c\xa2\x42\x7f\x41\x8e\x1b\xd6\ -\x16\xa0\x97\x40\xbe\x06\xda\x82\x47\x90\x4b\x1a\xbb\x83\x2c\x66\ -\x21\xa4\x66\xe3\xd9\xc8\x2e\x01\x59\xcf\x73\x4f\x7c\x98\xa5\xce\ -\xcf\xad\xa7\x7e\x1d\x85\xa5\x6d\xdf\x2b\x40\x4f\x74\xe5\xd4\xd7\ -\x8d\x7e\xe9\x1b\xb7\x83\x3c\x46\xb1\xc3\x7c\xd6\xd0\xd5\x2e\x13\ -\x91\x78\x14\xb9\x4c\x12\x68\xf1\x4a\x3e\x88\x28\x87\x5d\x78\xfb\ -\xdc\xe4\x6e\x84\xc1\x15\x50\xf2\xdc\x80\x76\x0c\xdd\x51\x01\x2b\ -\xd1\x72\x57\x55\x63\xda\x5f\x32\xcd\x23\x40\xb1\x50\x37\x5b\xae\ -\x1e\x84\x6a\xcc\x35\xcf\x16\x6c\xf3\x55\x35\xa1\x6c\xd3\x64\xf2\ -\x2e\xf2\x64\xe2\x40\x6d\x2a\x4b\xe1\x16\xb9\x1d\x2d\xe1\x50\x41\ -\x95\xe2\xc7\x89\xa4\xa6\x36\x5b\x91\xc8\xe9\x68\xc3\x7e\xe5\x31\ -\x2d\xd3\x65\x9a\xe9\x97\xfa\x31\x13\x37\x49\x5a\x16\x00\x6f\xd8\ -\xc5\x6a\xc7\x6f\x24\x6c\x1f\x57\x99\xdc\xf7\x7c\x91\x73\xb8\x59\ -\x4b\x1e\x3f\xe8\x84\x00\xc7\x78\x0c\x15\x71\x97\xc1\x27\xc9\x38\ -\x2d\x35\x3c\x47\x80\xed\x92\x48\x1c\x0a\xa9\x2a\xeb\x98\x14\xb0\ -\xcd\x06\x98\xb3\x80\x06\x7d\xed\x9e\x93\x3c\x3c\x5b\x12\x96\x4e\ -\x34\xdb\x59\x7b\x23\xb7\xc2\x3e\x42\xeb\x7c\xb0\xef\xdb\x7a\x5d\ -\xda\x1f\xf8\xd2\xbe\x57\x7c\x55\xd9\x69\x0c\x5f\x2e\x76\xbc\xe1\ -\xf9\x5a\x14\xd0\xb8\x50\x91\xaf\x47\x86\xa1\x78\x86\xa1\x87\x5c\ -\xdf\x65\xe3\xdd\x9b\x6e\x36\x54\xe3\x0f\x30\x3d\x22\x77\x75\x9a\ -\x52\x82\xa8\xcb\x5c\x7f\xc4\x6b\x8b\x3c\x28\x20\xe2\x50\x36\xce\ -\xd5\x21\x85\x99\x7b\x09\xab\x4d\x03\x9e\x62\x15\x5f\x86\x68\x87\ -\xed\x17\x94\xfe\x20\x28\xc5\x0e\x76\x50\x48\x29\x3b\x45\xa9\xe7\ -\x23\xec\x92\x60\x06\xa5\x2c\x40\x9e\x0f\x3c\x76\x8e\x52\x80\xbc\ -\xe6\xf8\xe1\x0c\x4a\x61\xcb\xe9\x5d\x46\xe9\x79\x45\x7d\x02\xa5\ -\x33\x85\x94\x40\xe7\xd3\x17\x0d\x5e\x20\xfa\xbf\x83\x68\xc0\xbe\ -\x1b\x44\xfd\xa7\x0a\xe9\x0b\x44\x5f\x20\x3a\x0f\x51\xcc\xdc\xef\ -\x06\xd1\xf0\xa9\x7d\xe9\x37\xf4\xfa\x17\x88\xfe\x50\x10\x25\x2e\ -\xf9\x5e\x10\x75\xf1\x65\x88\xbe\x54\xd1\x7f\x11\xa2\x27\x9f\xf8\ -\xff\x25\x88\x0e\x87\x8b\x32\x11\xfa\xac\xa6\x5c\x98\x71\x7b\x9d\ -\x80\x4c\xcf\x12\x40\x46\x47\xe4\xe6\xd8\xc2\x73\x43\xe4\x06\xae\ -\x7b\x8d\x31\x7c\x64\x85\xcc\x6f\x8e\x17\x06\x6a\xc8\x90\x17\xd6\ -\x44\x98\x16\x82\xbd\x6f\x70\x81\x48\x74\x56\x50\x27\x98\xea\xcf\ -\x53\xa9\x03\x5a\x21\xa9\x8f\x11\x18\xd1\x7d\x80\xf9\xfa\xc8\x01\ -\xcc\x9e\x48\xf6\x5e\x5d\x3a\x5a\xd8\xa9\xec\xf5\xe9\x91\xbb\x17\ -\x86\x6f\xfe\xe1\xf7\x9b\x83\x02\x58\x47\x1c\x7a\xdf\x92\x33\xdf\ -\x8c\xfa\xde\xbd\xd1\xff\x25\xd6\xcd\x19\x1a\xdc\x6e\xf5\xa9\xde\ -\xdd\xab\xbf\x01\x27\x65\xb4\xab\ +\x00\x27\x42\x78\x9c\xed\x59\x5b\x8f\xdb\xb8\x15\x7e\x9f\x5f\xa1\ +\x3a\x2f\x1b\xd4\xa2\x79\x13\x49\x69\xec\xd9\x87\x06\x5b\x2c\xb0\ +\x45\x8b\x26\x41\x1f\x17\xb4\x44\x7b\xb4\x91\x25\x43\x92\xc7\x76\ +\x7e\x7d\x0f\x75\xb3\x64\x6b\x2e\x99\xd9\x4e\x76\xd3\xd8\x48\x2c\ +\xf1\x1c\xde\xbe\xf3\x9d\x8f\x97\x99\xff\x78\xd8\x24\xce\x9d\xc9\ +\x8b\x38\x4b\x17\x13\x82\xf0\xc4\x31\x69\x98\x45\x71\xba\x5e\x4c\ +\x3e\x7e\xf8\xc9\x55\x13\xa7\x28\x75\x1a\xe9\x24\x4b\xcd\x62\x92\ +\x66\x93\x1f\x6f\xae\xe6\x7f\x71\x5d\xe7\x6f\xb9\xd1\xa5\x89\x9c\ +\x7d\x5c\xde\x3a\x3f\xa7\x9f\x8a\x50\x6f\x8d\xf3\xc3\x6d\x59\x6e\ +\x83\xd9\x6c\xbf\xdf\xa3\xb8\x29\x44\x59\xbe\x9e\xbd\x75\x5c\xf7\ +\xe6\xea\x6a\x5e\xdc\xad\xaf\x1c\xc7\x81\x7e\xd3\x22\x88\xc2\xc5\ +\xa4\xa9\xb0\xdd\xe5\x49\xe5\x18\x85\x33\x93\x98\x8d\x49\xcb\x62\ +\x46\x10\x99\x4d\x4e\xee\xe1\xc9\x3d\xb4\xbd\xc7\x77\x26\xcc\x36\ +\x9b\x2c\x2d\xaa\x9a\x69\xf1\xa6\xe7\x9c\x47\xab\xce\xdb\x8e\x66\ +\xcf\x2a\x27\xe2\xfb\xfe\x0c\xd3\x19\xa5\x2e\x78\xb8\xc5\x31\x2d\ +\xf5\xc1\x1d\x56\x85\x31\x8e\x55\xa5\x18\xe3\x19\xd8\x4e\x9e\x4f\ +\xf3\x0a\x0e\x09\x40\x71\xef\x60\x2a\x6b\xbf\x77\x80\x7f\x0b\xff\ +\xba\x0a\x6d\x01\x2a\xb2\x5d\x1e\x9a\x15\xd4\x34\x28\x35\xe5\xec\ +\xdd\x87\x77\x9d\xd1\xc5\x28\x2a\xa3\x5e\x33\x2d\xfa\x83\x7e\x07\ +\x21\x49\xf5\xc6\x14\x5b\x1d\x9a\x62\xd6\x96\x57\xf5\xf7\x71\x54\ +\xde\x2e\x26\x82\x6f\x0f\xd5\xfb\xad\x89\xd7\xb7\x65\xaf\x20\x8e\ +\x16\x13\x98\x21\x13\x84\x56\xef\x3d\x02\x91\xda\xa1\x69\x2e\xe8\ +\x2c\x18\x71\x85\x18\x22\x4e\xee\x2b\x25\x2a\xa7\x76\xe4\x41\x94\ +\x85\x76\x28\x8b\xc9\xbb\x5c\xaf\xca\x5f\xdf\x43\xf8\xc3\xf2\x5f\ +\x89\x4e\x0d\xb2\x38\xde\x80\xf3\x3c\x32\xab\xc2\x56\xaa\x3b\xb7\ +\x6f\xd0\x3b\xaf\x6c\x60\xed\xfa\xdb\x42\x7f\x5b\xa8\x0d\xcc\xa8\ +\xbd\x7b\xdd\x94\x47\x0b\xc6\xd0\x95\xd5\x88\x39\x83\x31\x6f\x7f\ +\x3d\xc0\x80\x9d\xc0\x61\x14\xfe\x23\xa3\x1e\xc7\xda\x83\x40\xb0\ +\xe1\x07\x8f\xfa\x7c\xb6\x90\x3d\xd0\x4c\x33\x02\x37\xcb\xe3\x75\ +\x0c\x18\x55\x7e\x94\x20\x56\x7d\x86\x75\x60\xd2\xbd\xb9\x31\x41\ +\x21\x53\x67\x4f\x98\xfd\x79\x45\x4f\xa9\xc7\x07\x82\x91\x67\x27\ +\xd5\x0c\xe4\x7c\x28\xc3\x19\x92\xca\xd3\x7b\x11\x50\x0d\xdc\xe7\ +\xcd\x3c\x16\xb9\x67\x01\x20\x7c\xfa\xed\x01\x90\xeb\x28\xd6\xc9\ +\xdf\xed\x0f\xe8\xe6\x45\x0f\x61\x96\xd8\x94\x5a\x4c\x74\xb2\xd7\ +\xc7\xa2\x6b\xbf\x52\x9e\xe0\x36\x37\xa0\x94\x6f\xe0\xd9\xe8\xbc\ +\x6d\x83\x11\xce\x5d\x31\xe0\xdf\xb0\x13\x26\x14\xef\xcc\xeb\xa6\ +\xf0\x63\x1a\x97\x20\x8a\xbb\xc2\xe4\xef\xad\xb0\xfc\x33\xfd\x58\ +\x98\x0b\xaf\x0f\xb9\x4e\x0b\x50\xb1\xcd\x62\xb2\xd1\x65\x1e\x1f\ +\x7e\x20\x53\x6c\xbf\x48\xf8\xca\xa3\x3e\x87\x67\x8a\x29\x52\x54\ +\x09\xf6\xb6\xab\x1e\x02\x4a\x94\x7a\x88\x0a\x8e\x4f\x31\x0c\x01\ +\x5f\x21\x29\x92\xbe\x64\xa7\xf1\xae\x46\x7d\x57\xa3\xbe\x39\x64\ +\x1e\x47\x8c\x7b\x04\x72\xa3\x83\x74\x08\x47\x1f\x87\x51\xa0\x6e\ +\x1a\x8f\x79\x51\x66\xdb\xd6\xbb\x51\x4a\x28\x01\x2f\xe1\xfa\x93\ +\x93\xa1\x28\x8f\x89\xa9\x6d\x2e\x84\x27\xcb\x83\x37\xab\xea\x73\ +\x5d\x15\x65\x80\x5e\x5c\x1e\x03\xd2\xab\x92\xad\x56\x85\x81\x20\ +\x9e\x32\xff\xa1\xee\x94\x4b\xbf\xbc\x3b\x3c\xd2\x1d\x39\x61\x32\ +\x1b\x4e\xfd\xab\x92\x4f\x7c\x27\x1f\xe0\x20\x31\x79\x94\x7a\x12\ +\xb3\xd7\x23\x9e\xc4\xde\x37\x4d\x3b\xf5\x9d\x76\x15\xed\xd4\xe3\ +\xb4\x23\xf8\x15\x69\x47\xbe\xae\xda\x0d\xf0\x7c\x18\xfa\xf1\x30\ +\x8d\x87\x74\x3c\xfc\x2f\xe4\xd4\xd3\x88\x3b\xc2\x7e\x49\xd9\x73\ +\xd2\xe8\xbe\x8c\x7c\xd6\xf6\x4d\xf5\xf4\xe5\x9b\xd9\xbe\xdd\x93\ +\x77\x2f\x91\x32\x25\xb8\x8b\x5d\x3c\x79\x20\x89\x7d\xf6\xfb\x6d\ +\xe0\x30\xa2\x94\x60\xca\xc5\x14\xce\xa1\x9e\x54\x3e\x15\xc4\x3e\ +\x4a\x22\x7c\x5f\xf8\xcc\x3e\x33\x8f\x71\x01\xeb\xc3\xd4\x23\x3e\ +\xf2\x15\x56\xde\x94\x0b\x8e\x88\x4f\x79\x8f\x9d\x07\x02\x89\xe0\ +\x0b\x24\x24\xa3\x27\xca\x1f\xa1\x54\x4a\x84\xb9\xa0\xbd\x51\x1f\ +\x28\xf8\x7a\x1c\x29\x8c\x7b\xd4\x3c\x42\x29\x21\x1e\xc2\xc4\x97\ +\xfc\x19\xe2\xd6\x42\xf7\x98\xe6\x28\x21\x5c\xcf\x95\xa3\x8a\xf5\ +\xa0\x16\x61\x41\xfc\x10\x9f\x09\xdf\xf5\x13\x54\x4e\x09\xe5\xca\ +\x5e\x6a\xf5\x65\xeb\xc1\x1e\x99\xf4\xc3\xd5\xf2\xde\x1e\xef\x91\ +\xba\xff\x01\x2d\x99\x94\x0f\x52\x92\xd3\x01\x11\x3c\x5f\x22\x29\ +\xa9\x62\x03\x22\x70\x8e\x80\x6a\xac\xef\x6b\x89\x00\xac\x62\x98\ +\x51\x35\x20\x02\x03\x66\x4a\xfe\x64\xa6\x7f\x39\x5b\xec\x8c\x1e\ +\x8b\x1b\xc0\xff\xe5\x2c\x59\xad\xb4\xc6\xcf\x61\x09\x53\x63\xab\ +\xe8\x23\x0c\x59\xe9\xd5\x8a\xfe\x11\x18\x52\x65\xdf\x43\x1c\x11\ +\x9e\xfc\x4a\xb2\xc5\x04\xe2\x84\x7a\x64\xca\x61\xa1\xb6\x97\x5f\ +\x2f\x51\x2d\xe8\x04\x73\xcf\x1f\xaa\x16\xf3\x11\xc7\xbe\xa2\xcf\ +\x55\xad\xa7\x69\xd6\x6b\x2b\xd6\xab\xe8\xd5\x7c\x66\x2f\x05\xab\ +\xa7\x6e\xdd\xb5\xb7\x8a\xd1\x5d\x6c\xf6\x57\xdd\xa8\x96\xba\x23\ +\xc6\x56\xaf\x4d\xd5\x1f\x90\xb0\xde\x1e\x36\x86\x65\x96\x47\x26\ +\x6f\x4d\xa2\xfa\x0c\x4c\xcd\x90\xea\x0b\xf3\xab\x21\xe7\x6d\xab\ +\x9d\x1d\x8f\xdb\x8b\x5b\x1d\x65\x7b\xd8\xda\x9d\x1b\x3f\x67\x19\ +\x90\x13\x76\x81\xde\xb9\xa5\xda\x09\x32\xe4\x09\x8f\x79\x97\xc6\ +\xa3\xdd\x26\x22\xc2\x38\x16\xf2\xc2\xb8\xcb\x73\xc0\xc8\x4d\xf4\ +\xd1\xc0\x7c\xaa\x9f\x16\xfe\xe2\x36\xdb\xaf\x73\x8b\x4b\x99\xef\ +\xcc\x79\xcd\x28\x0b\x77\xf6\x1e\xde\xdd\xd5\xe9\xd5\xdc\xfe\xf6\ +\x3c\x6c\x5d\x77\xb9\xcc\x0e\xe3\x0d\xec\xe3\x14\xe6\xe9\x36\xf7\ +\xc9\x84\xaa\x0b\x34\x1a\x8f\xf6\x86\x59\xca\x8b\xe1\x37\x1e\x87\ +\x13\x47\xcf\x4d\xc7\xfb\x4d\x1b\x7d\x88\x37\xf1\x67\x13\x9d\x18\ +\xd7\xb9\x14\xa9\xde\xba\xeb\x24\x5b\xea\x64\x31\x59\xe9\xa4\xb8\ +\x18\x7e\xe5\x91\x66\x91\x29\xc6\xa7\x97\x2d\x7f\x03\x75\x1b\x78\ +\xd4\x0c\x9d\x6f\x4c\xa9\x23\x5d\xea\x13\xef\xda\x12\x90\x8d\x76\ +\xbd\x98\xe7\xd1\x2a\xf8\xf7\xbb\x9f\xba\x1c\x0a\xc3\xe0\x3f\x59\ +\xfe\xe9\x94\x19\xd6\x41\x2f\xb3\x1d\x20\xd3\x65\xb6\xbd\x0b\x0f\ +\x03\xab\x62\xba\xbc\x89\x37\xc0\x26\xfb\xc7\x86\xbf\x1e\x36\x09\ +\x64\x40\x67\x18\x38\xdb\xed\xe7\xa9\xd1\xba\xd9\xdc\xd4\x7f\x4c\ +\x18\xfd\xfb\x4b\x14\x6e\x62\x5b\x69\xf6\xbe\x8c\x93\xe4\x67\xdb\ +\x49\x2f\xd7\x9b\x46\xe3\x32\x31\x37\x55\x9f\xf5\x63\x3b\x8b\x59\ +\x33\x8d\x36\x55\x7b\xb3\x9c\xcf\x5a\x18\xaa\xb7\xf5\x09\x9e\x01\ +\x2b\x3b\x80\x13\xbd\x34\x10\x9c\x5f\xac\xd1\xb9\xb0\xae\xf3\x6c\ +\xb7\xdd\x00\xf8\x4d\xf5\x16\xd6\x75\x5f\x25\xd7\x1c\x43\x32\x75\ +\x83\xdb\xea\xf2\xb6\xa7\x3c\x9d\x50\x40\x2b\x76\xc2\x10\xc6\xb0\ +\xfe\xf4\xf4\xa9\xb7\x9c\xa5\x29\x04\x3c\xcb\x5d\xc8\xa9\x3b\x5d\ +\xee\x72\x33\x54\xce\xea\xb0\x02\x3d\x30\x36\xb8\x05\x81\xd2\x7f\ +\x38\x8c\x21\xc1\xe0\xcb\xa7\x0c\x61\xdf\x7e\x89\x03\x6a\xef\xd9\ +\xaf\x37\x25\xc2\x49\x1c\x3c\xe5\x5e\x53\xe2\xfc\xe2\x10\x8a\x1a\ +\xa3\x20\xb0\x87\xb1\x5f\xc7\x23\x5d\x23\x3e\x52\x04\xbe\xd4\x96\ +\xd5\xd6\x5e\xc3\x9f\x2f\xe5\x75\x05\x91\x04\x21\xc7\xcb\x70\x69\ +\x8f\xc1\x79\xf6\xc9\xd8\x57\x68\x1f\x37\xaf\x75\x9e\x06\xb4\x7d\ +\xb5\x1a\x0b\xf3\x0e\x96\xbb\xb2\xec\x97\xfd\x96\xc5\x69\x00\x04\ +\x31\x79\x5b\x7a\x92\xe8\xa6\xa0\xb2\x26\x90\x7a\x65\xc0\xdb\xb2\ +\x48\x83\xec\xe5\xb9\x3e\x02\xda\xa9\xb9\xb6\xe3\x39\x9d\xc4\x91\ +\xac\x4f\x6a\xde\xf5\xe9\x26\xa0\xb7\xba\x3c\x25\x6c\x2f\x8b\x18\ +\xf1\xf1\x79\xc4\x28\x12\x8a\x48\x41\xf8\x14\x76\x96\x0a\x74\x97\ +\x53\x07\x0e\xf9\x94\xc2\x58\xc9\x14\x44\x5a\x70\xc5\xe9\xc8\x4a\ +\x56\x41\x5d\x4d\xf2\xeb\xe3\xfc\xea\x28\x0e\x96\xfb\x3e\x8e\x98\ +\x4d\x39\x83\x6d\x13\xf5\x18\x71\x80\xd2\x0c\xc8\xcb\xfc\x29\x21\ +\x40\x73\xe1\x79\x23\x97\xe3\xff\xdf\x38\xfa\xe7\x38\x92\x96\x90\ +\x56\x10\x88\xc2\x92\x30\x8b\x23\x01\x39\xa0\x64\x0a\xcc\x54\x70\ +\x94\x56\xe2\x3b\x8e\x43\x1c\xc9\x10\xc7\x8d\x15\x4c\x09\x5b\x7d\ +\x46\x2d\x8e\xd8\x26\x33\x07\x25\xb6\x4a\x2b\xfc\xa9\xcb\xed\xce\ +\x9e\x53\xf9\x67\x85\xf1\x19\x28\x51\xca\xcf\x31\xf2\xeb\x75\x86\ +\x49\xd0\x39\x21\xec\xb9\x5c\xc1\xf2\xe4\x29\x38\x19\x29\xcc\xf9\ +\xc8\x65\xeb\xb7\x8c\x8e\x7b\x81\x0f\x83\x15\xab\x5a\x75\x61\xd1\ +\xe5\x9e\xe4\xd2\xf7\x2c\x3e\x12\xf9\x3e\x27\x8c\x8c\xfc\x0d\xe4\ +\x8f\x8a\x4f\x0e\x28\x9c\x06\x5b\x8e\x1c\x91\x95\x54\x0c\x03\x07\ +\xec\x61\x98\x4b\x65\xcf\xa7\x53\x3c\xad\xae\x9a\xdf\xf6\xe6\x09\ +\xdb\x70\xe6\x21\xca\xfd\xc1\x65\x87\x3d\xb6\x58\x85\x27\x82\xf7\ +\x13\xb1\xdd\xf0\x83\x4d\x50\xe9\xab\x7e\xba\x35\xc7\x05\x2a\xe0\ +\x18\x24\x28\x56\x67\x41\xb1\x03\x66\x44\x8e\x9c\x58\xdb\xc3\x6a\ +\xf5\xb9\xae\x37\x3c\xcd\xbd\xff\x60\xb7\x41\xea\xd7\x7c\x97\x98\ +\xc0\xdc\x19\xd0\x9b\xa8\x17\x94\xaa\xf2\x20\x28\x0c\x51\x4c\xb0\ +\x4f\xb9\x3a\x8f\x0e\xec\x40\xd3\xe8\x22\x3c\x83\xd2\xb1\x68\x5c\ +\x84\xec\x6c\x6f\xd4\x2b\xad\x0f\xcc\x01\xbe\xde\xe8\xfc\x93\xc9\ +\x6b\xfb\x5d\x5c\xc4\xcb\x38\xb1\x4d\x54\x8f\x89\xb9\x8e\xe2\x62\ +\x0b\xbb\xe0\x20\x4e\xed\x30\xae\xb3\x3b\x93\xaf\x92\x6c\xdf\xd9\ +\x4d\xaa\xe1\xc7\x5d\xea\xf0\xd3\xba\x1a\x5f\xa0\x43\x38\xdd\xed\ +\x12\x5d\xfe\xfe\xe9\x22\x47\x24\xb7\xde\xd7\xda\x6d\x13\xa3\x1e\ +\xd0\xa8\x96\x13\xe6\x31\xac\xbc\x3f\x8b\x9c\xcc\x67\xeb\xfa\x18\ +\x03\x3f\x73\x7b\xec\xba\xb9\xfa\x2f\xd9\x7f\x1d\x21\ +\x00\x00\x06\xc5\ +\x00\ +\x00\x19\x86\x78\x9c\xdd\x58\x59\x6f\xe3\x38\x12\x7e\xcf\xaf\xd0\ +\x2a\x2f\xdd\xd8\x88\xe2\xa1\x83\x54\xec\x0c\x16\x1b\xcc\x62\x80\ +\x01\x16\x98\xe9\xc6\x3c\x36\x68\x89\xb6\xb5\x91\x25\x81\x92\x63\ +\xbb\x7f\xfd\x16\x75\xcb\x76\x1a\x69\xf4\x74\x63\x32\x0a\x12\x5b\ +\x75\x90\xac\xaa\xaf\x0e\x66\xf1\xd3\x71\x97\x59\xcf\x4a\x57\x69\ +\x91\x2f\x6d\x82\xb0\x6d\xa9\x3c\x2e\x92\x34\xdf\x2c\xed\x8f\x1f\ +\x7e\x76\xb8\x6d\x55\xb5\xcc\x13\x99\x15\xb9\x5a\xda\x79\x61\xff\ +\xf4\x70\xb3\xf8\x87\xe3\x58\xff\xd6\x4a\xd6\x2a\xb1\x0e\x69\xbd\ +\xb5\x7e\xc9\x9f\xaa\x58\x96\xca\x7a\xb7\xad\xeb\x32\x72\xdd\xc3\ +\xe1\x80\xd2\x8e\x88\x0a\xbd\x71\xdf\x5b\x8e\xf3\x70\x73\xb3\xa8\ +\x9e\x37\x37\x96\x65\xc1\xbe\x79\x15\x25\xf1\xd2\xee\x14\xca\xbd\ +\xce\x1a\xc1\x24\x76\x55\xa6\x76\x2a\xaf\x2b\x97\x20\xe2\xda\xa3\ +\x78\x3c\x8a\xc7\x66\xf7\xf4\x59\xc5\xc5\x6e\x57\xe4\x55\xa3\x99\ +\x57\xb7\x13\x61\x9d\xac\x07\x69\x73\x9a\x03\x6b\x84\x88\x10\xc2\ +\xc5\xd4\xa5\xd4\x01\x09\xa7\x3a\xe5\xb5\x3c\x3a\x73\x55\x38\xe3\ +\x35\x55\x8a\x31\x76\x81\x37\x4a\xbe\x4e\x2a\x3a\x66\xe0\x8a\x17\ +\x0f\xd3\x70\xa7\xbb\x83\xfb\x4b\xf8\x1d\x14\x7a\x02\xaa\x8a\xbd\ +\x8e\xd5\x1a\x34\x15\xca\x55\xed\x3e\x7e\x78\x1c\x98\x0e\x46\x49\ +\x9d\x4c\x96\xe9\xbd\x3f\xdb\x77\x16\x92\x5c\xee\x54\x55\xca\x58\ +\x55\x6e\x4f\x6f\xf4\x0f\x69\x52\x6f\x97\x76\xe0\x95\xc7\xe6\x7d\ +\xab\xd2\xcd\xb6\x9e\x10\xd2\x64\x69\x83\x85\x8c\x70\xde\xbc\xf7\ +\x67\x88\x06\x24\x61\xc4\x68\x2b\xda\x2d\x3c\x65\x79\x1c\x31\x44\ +\x2c\x2d\x38\x0f\xe6\xfa\x49\x11\x9b\x43\x2d\xed\x47\x2d\xd7\xf5\ +\xa7\x7f\x95\x65\x76\x42\xbd\x2f\x87\xa5\x8a\x7d\x5d\xee\xeb\x4f\ +\xea\x58\xab\xbc\x5d\x13\xac\x99\x98\xd6\xb0\x8d\x1a\x9a\x99\x35\ +\x81\x39\xb1\x1f\x80\xb2\x48\xd4\xba\x32\x9c\xd6\x22\xf3\xc6\x88\ +\xc0\x0d\x0f\xb8\x10\x16\x25\xf5\x7f\xb4\x4c\x52\x00\x63\x2b\xd7\ +\x4a\xce\x39\x8c\xf9\x5e\xa7\x03\x5a\x55\x5d\x94\xbd\x2c\x58\x56\ +\x9f\x32\x30\xc7\x10\x9d\xb8\xc8\x0a\x1d\xdd\x52\xe2\x87\x71\x78\ +\xdf\x90\x0a\xf0\x7e\x5a\x9f\x22\x72\x6f\x8f\x3a\xc5\x7a\x5d\x29\ +\x70\x37\x9e\xd0\x1a\x8f\x83\x06\xec\x15\xd8\x96\xfb\xfa\xdd\x82\ +\x44\xca\xf5\xfa\x15\xbb\x91\xeb\xbb\xf1\x61\xb7\x85\x3b\x37\xfb\ +\xcb\x5e\xea\x63\x05\xc7\xc8\x54\x0c\xeb\xcb\xec\x20\x4f\xd5\xb0\ +\x49\x03\xfa\x68\xab\x15\x24\xe9\xed\x15\x7f\x7e\xc1\xdd\xbe\x10\ +\x03\x7b\xd3\x11\x3f\xe6\x69\x0d\xd9\xb8\xaf\x94\xfe\xdd\x20\xfa\ +\xbf\xf9\xc7\x4a\x5d\x48\x7d\xd0\x32\xaf\x20\x7d\x76\x4b\x7b\x27\ +\x6b\x9d\x1e\xdf\x41\xc5\xc3\x1c\x56\xe4\x77\xd8\xfc\xa0\x90\xd0\ +\x20\xf0\xee\x1c\x2a\x50\x80\x09\xe1\xe4\x8e\x09\x8e\xa8\xef\x85\ +\xe1\xfb\xf1\xec\x64\x69\x53\x26\x28\xa2\x8c\xb0\x81\x7a\x02\x2a\ +\x21\x01\x50\x85\x37\x52\x8f\x14\x64\x03\xc6\x91\xf0\x47\x49\x3a\ +\x95\x1c\xfc\x3b\xf8\xac\x04\xa0\x96\xe0\x34\x28\x6f\xbd\xca\x90\ +\x21\xf5\xc9\x64\xf4\x5c\x94\x25\xf6\x85\xdf\x9f\xcb\x4f\x47\x80\ +\x90\x15\x59\x8c\xc2\x1f\x72\x55\xe2\xd4\x4a\x10\xa8\x58\xf0\x81\ +\xaf\xca\x7c\x36\x79\xff\x85\x65\xba\x13\x38\x85\x4e\x37\x29\x24\ +\x57\x23\x47\x09\x62\xcd\x33\xd7\x81\x58\x4e\x6c\x83\x5c\x1b\xb1\ +\xfc\xe3\x71\x44\x85\x08\xfe\x34\x1c\x61\x04\x59\x1d\x70\xca\xc3\ +\x0e\x48\xc4\xc7\x5c\x50\xc2\xee\x1c\x40\x17\x0a\x7c\x02\xa0\x22\ +\x4c\x20\xec\x87\x98\x7d\x5f\x28\x2d\x5c\x53\xc9\x9a\x6f\x03\x6c\ +\x4c\x55\x4d\x9e\x53\x75\x18\xcb\xdd\x4a\x0e\x96\x95\x72\xa3\x9a\ +\x7a\x01\x3e\x5c\x37\x4f\xc7\x58\x15\x3a\x51\xba\x67\x05\xcd\x33\ +\x63\x75\x25\xa5\x1d\x1d\x6e\xce\x90\x01\xab\x0e\x7c\x7c\x9d\x5f\ +\x6d\x65\x52\x1c\xc0\xae\x73\xe6\xe7\xa2\x00\xef\x52\xe4\x09\x0c\ +\x6d\x82\x9c\xb3\x63\x00\x37\x0d\x51\xc8\x08\x66\x17\x3c\x73\x1c\ +\x8c\xb8\xcf\x3d\xea\x5f\x30\xf7\x5a\x43\x04\x9d\x4c\x9e\x14\xd8\ +\xd4\x7c\xf4\xab\x57\xdb\xe2\xb0\xd1\xc6\x37\xb5\xde\xab\x73\x4d\ +\xe8\x4d\x7b\x33\x95\x38\xfb\x16\x23\x5d\x2f\x9c\x48\x18\x5d\x67\ +\xb5\x2a\x8e\xd7\x17\x38\xa4\x39\xd8\xea\x74\xdd\x95\x50\x7e\xe1\ +\x91\x4e\xa2\xef\xb7\x61\x18\xbe\x20\x71\x1c\xbb\xc3\x39\xeb\xf4\ +\x32\x6b\x27\x8f\xe9\x2e\xfd\xac\x12\x53\xed\x3b\xac\xec\x54\x2d\ +\x13\x59\xcb\x11\x17\x3d\x05\xd2\x93\xf5\xad\x10\x26\xa5\xe8\xb7\ +\xc7\x9f\x87\xb6\x13\xc7\xd1\x1f\x85\x7e\x1a\x3b\x86\x11\x90\x2b\ +\xe8\xbc\x4b\x7b\x68\x85\xa6\xc1\xc6\x91\x49\x13\x59\x3f\xa4\x3b\ +\x88\xb6\x19\x8b\xfe\x09\xd3\x09\x20\x74\x60\xcc\x84\x4d\x75\x1b\ +\x17\x6d\x97\xd5\xaa\x1d\x7b\xae\x4e\x8a\x49\xbc\x4b\x8d\x92\xfb\ +\x7b\x9d\x66\xd9\x2f\x66\x93\x69\x7b\x74\xbb\x83\xf6\x1d\x6c\x62\ +\xc7\xc2\xed\x0d\x6d\xde\x36\xa3\x03\x66\x98\x18\x7c\x98\xc9\x95\ +\xca\x96\xf6\xaf\x86\x69\x5d\x70\x37\xba\xd8\x97\xbb\x22\x51\x9d\ +\x7a\xef\xb8\x52\xd6\xdb\x2b\xb5\x2c\xcf\xa1\x96\x15\xda\x01\x34\ +\x3e\xcb\x7a\xaf\xd5\xb4\xdb\x77\x5d\x7c\x0d\x06\x45\xb7\xb8\x79\ +\xee\xcd\xcb\xd0\xbf\x31\xf2\x03\x00\x7e\x10\x06\x2d\x5d\xef\x33\ +\x15\xa9\x67\x95\x17\x49\x02\x9d\x5e\x17\x4f\x2a\xca\x61\x5c\xef\ +\xbe\xb7\x88\x8b\x08\xcc\x5c\xa0\xe4\x7b\x9c\xdd\xef\xa4\x7e\x52\ +\xba\x15\x7a\x4e\xab\x74\x95\x66\x66\xe1\xe6\x6b\xa6\xee\x93\xb4\ +\x2a\xc1\x0c\x18\x21\x4d\xc9\xbc\x2f\x60\x72\x5a\x67\xc5\x61\xe0\ +\xab\x5c\xc2\x87\xb3\x92\xf1\x93\x31\x3c\x4f\x22\x19\x43\x72\xec\ +\x33\xb8\x10\x0c\x66\x18\x28\x59\x21\x62\xa1\x80\x29\xd7\xbb\xe3\ +\x08\x13\x4c\x03\xc1\x2d\x7c\xe7\x53\x14\x06\x84\xfa\x21\xb5\x88\ +\x40\x1c\x24\x70\x18\xdc\x61\xe0\x38\x84\x20\x4a\x89\xe0\xbe\x45\ +\x28\xe2\x9c\x89\x8e\x01\x4d\x18\x8a\x68\x48\x2c\x10\x10\x9c\x60\ +\x8f\x98\x7a\x0a\x16\x85\xc4\xb3\x9c\x73\x22\x35\x92\x46\x09\x5a\ +\x80\xc7\x43\x10\x98\x2d\xe6\x30\x90\xa7\x22\x20\x82\x02\x6b\x7a\ +\x82\xcf\xb3\x86\xa1\x21\x4a\xa6\x3a\x8f\x5d\xca\x50\xae\xc6\xa9\ +\x2d\x9b\xf3\x38\x91\x97\xc3\xd3\xc7\x75\x16\x21\x8a\x30\x27\x8c\ +\x33\xca\x7a\xba\x71\x3f\x40\x26\x5a\xed\xeb\x7a\x4a\xfb\x5f\x91\ +\xe6\x11\x20\x5f\xe9\x9e\xda\xbc\x64\x90\xde\x75\xe4\xf5\xb4\xf1\ +\x1c\x1d\x21\x91\x50\x6f\xb5\x86\xc8\x4e\xe1\x61\xa8\xed\x14\x18\ +\xe1\x1f\x82\x8c\xd1\xb5\xc1\xd8\xa0\xfb\xb2\x68\xa2\x11\x84\x93\ +\x66\xd8\x57\xc3\x16\x34\xc1\xa4\x69\x1f\x4d\xef\x33\x00\xf3\x70\ +\x38\x76\x44\x18\x41\x90\xc0\xbe\xcf\x08\xb5\x2f\x52\x4f\x1d\xcb\ +\x42\xd7\x0e\xc4\x45\xb5\x17\x0d\x77\x5b\xec\x94\x7b\x82\xe9\xe5\ +\xc9\x7d\xec\x2a\x7c\xe5\xfe\x2a\x57\x6e\x73\x05\x71\x53\x48\xd6\ +\xca\x8d\xb7\x32\xdf\xa8\x12\xda\x1d\x2a\xf3\xcd\x8b\xcb\x1e\x93\ +\x12\x6e\x6d\x1e\x22\x01\x67\x5c\xf0\x17\xe5\x4e\x67\x72\xaf\x81\ +\xd7\x65\x19\xf8\x02\xbc\xae\x64\x3f\x85\x81\xd6\x3c\x8c\xff\xd0\ +\x18\xc3\x0c\xe8\x5f\xc4\xd8\x47\x44\xf8\x57\x42\x6c\xba\x36\x0f\ +\xf0\x04\x15\x26\xc4\x0c\x4e\x1e\x84\xdc\x9f\x86\x38\x80\xcc\x16\ +\x21\x00\xe8\xef\x14\x62\x13\xe4\xb7\x19\xe2\xf0\x3b\x84\x98\x70\ +\x04\xf3\x1b\xf9\x3b\x65\xb1\x09\xce\x57\x34\x89\xbf\x54\x88\xc5\ +\x77\x08\x31\x03\x49\xcc\xf1\x95\x5b\xe5\xdb\x8d\xf0\x9b\x4d\x62\ +\x8f\x7c\x87\x08\x7b\x30\x8d\xc1\x0d\x6e\xd2\x9f\xdf\x4a\x88\xbf\ +\x75\x72\x87\x4b\xca\xbb\xdb\xcb\xff\x38\xbc\xff\xaa\x11\x11\x6e\ +\xb0\xe7\x23\x62\x68\x3c\x8f\x05\x7d\xd5\x88\xd8\x84\xfd\x1b\x46\ +\xc4\xf9\x30\x0f\xc1\x84\xeb\x43\x10\x90\x3b\xa8\xcd\x30\xa6\xc2\ +\x8c\xd5\x0c\xd9\x30\x46\x07\x81\xb0\x1c\xea\x23\x1c\x0a\x78\x69\ +\x86\x6c\x90\x09\x45\xe8\x73\x6b\x4e\x0e\x11\x7c\x0d\x29\xb7\x48\ +\x60\xbe\xf9\x22\x80\x99\x3d\x84\x7b\x3e\xf1\x84\x38\x9b\xbf\x4d\ +\x0c\x00\x98\x23\x00\xc7\xff\x67\xc0\x55\xcb\xdc\xfb\xe0\x1e\x1e\ +\x77\xcf\xdb\x42\xd8\xc2\xdd\x3c\xdc\x2c\xcc\x85\xf8\xe1\xe6\xff\ +\x51\x05\x95\x67\ \x00\x00\x0a\x3d\ \x00\ \x00\x35\xb4\x78\x9c\xe5\x5a\x5b\x6f\xa3\x48\x16\x7e\xcf\xaf\x60\ @@ -33756,7 +33576,7 @@ qt_resource_data = "\ \x45\x60\x16\x9e\xbd\xc2\xae\xe8\x15\x76\xc9\x27\x59\x56\x59\xf6\ \x9f\xef\x76\xfe\x30\x45\x4c\x74\x93\xff\xb2\xdb\x75\x9f\xae\xf0\ \x78\x50\x1f\xd3\x1f\xde\xfc\x1b\x69\x58\x64\x83\ -\x00\x00\x15\x00\ +\x00\x00\x1c\x12\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -33796,304 +33616,418 @@ qt_resource_data = "\ \x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ \x31\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ \x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\x37\x20\x72\x32\ -\x32\x35\x38\x33\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x4e\x65\x77\x20\x64\ -\x6f\x63\x75\x6d\x65\x6e\x74\x20\x32\x22\x3e\x0a\x20\x20\x3c\x64\ -\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ -\x73\x33\x36\x31\x33\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ -\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ -\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x33\x2e\ +\x31\x20\x72\x39\x38\x38\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x44\x72\ +\x61\x66\x74\x5f\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\ +\x2e\x73\x76\x67\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x36\x31\x33\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\ +\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\ +\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\ +\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\ +\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x31\x39\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x33\x35\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\ +\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ \x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ -\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\ -\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x31\ -\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\ -\x65\x63\x74\x69\x76\x65\x33\x35\x39\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ -\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\ -\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\ -\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\ -\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ -\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ -\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ -\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ -\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\ -\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x31\x32\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ -\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x31\x3d\x22\x36\x35\x37\x2e\x34\x32\x38\x35\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x39\x32\x2e\x31\x31\x37\ -\x32\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ -\x36\x39\x36\x2e\x35\x33\x32\x31\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x32\x3d\x22\x39\x32\x2e\x31\x31\x37\x32\x34\x39\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x34\x32\x39\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x38\x62\x38\x62\x38\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x39\ -\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x39\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x31\x32\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ +\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\ +\x35\x37\x2e\x34\x32\x38\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x31\x3d\x22\x39\x32\x2e\x31\x31\x37\x32\x34\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x39\x36\x2e\x35\ +\x33\x32\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ +\x22\x39\x32\x2e\x31\x31\x37\x32\x34\x39\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x39\x32\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x36\x32\x64\x39\x63\ +\x35\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x39\x34\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x34\x32\x39\x36\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ +\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x33\x30\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x31\x32\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ +\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x39\x35\x33\x34\x34\ +\x33\x33\x2c\x30\x2e\x30\x39\x36\x33\x38\x32\x39\x35\x2c\x2d\x30\ +\x2e\x30\x39\x36\x33\x38\x32\x39\x35\x2c\x30\x2e\x39\x39\x35\x33\ +\x34\x34\x33\x33\x2c\x31\x32\x2e\x39\x37\x39\x34\x37\x31\x2c\x2d\ +\x36\x32\x2e\x37\x35\x38\x34\x31\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x31\x3d\x22\x36\x35\x31\x2e\x36\x39\x33\x36\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x30\x38\x2e\ +\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ +\x36\x37\x37\x2e\x33\x37\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x32\x3d\x22\x31\x30\x38\x2e\x33\x37\x39\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\ +\x33\x30\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ \x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\ -\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x64\x64\ +\x34\x31\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ \x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x39\x36\x22\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x33\x30\x32\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x38\x30\x31\ +\x30\x31\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x33\x30\x34\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x32\x3d\x22\x31\x30\x38\x2e\x33\x37\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x37\x37\x2e\x33\ +\x37\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ +\x22\x31\x30\x38\x2e\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x31\x3d\x22\x36\x35\x31\x2e\x36\x39\x33\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x30\x2e\x39\x39\x35\x33\x34\x34\x33\x33\x2c\x30\x2e\x30\x39\ +\x36\x33\x38\x32\x39\x35\x2c\x2d\x30\x2e\x30\x39\x36\x33\x38\x32\ +\x39\x35\x2c\x30\x2e\x39\x39\x35\x33\x34\x34\x33\x33\x2c\x31\x32\ +\x2e\x39\x37\x39\x34\x37\x31\x2c\x2d\x36\x32\x2e\x37\x35\x38\x34\ +\x31\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x36\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x33\x30\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ +\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x39\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x30\x30\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ +\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\ +\x3d\x22\x36\x35\x37\x2e\x34\x32\x38\x35\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x31\x3d\x22\x39\x32\x2e\x31\x31\x37\x32\x34\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x39\ +\x36\x2e\x35\x33\x32\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x32\x3d\x22\x39\x32\x2e\x31\x31\x37\x32\x34\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x39\x30\x34\x39\x32\x38\x31\x38\x2c\x30\x2e\x34\x36\x31\ +\x34\x33\x33\x35\x37\x2c\x2d\x30\x2e\x34\x33\x36\x34\x39\x33\x38\ +\x36\x2c\x30\x2e\x39\x35\x36\x36\x33\x32\x35\x37\x2c\x2d\x35\x33\ +\x33\x2e\x38\x30\x34\x31\x37\x2c\x2d\x33\x37\x37\x2e\x34\x32\x36\ +\x36\x34\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ +\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ +\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\ +\x32\x39\x32\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x30\x30\x31\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x35\x37\x2e\x34\x32\x38\ +\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x39\ +\x32\x2e\x31\x31\x37\x32\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x32\x3d\x22\x36\x39\x36\x2e\x35\x33\x32\x31\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x39\x32\x2e\x31\x31\ +\x37\x32\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x33\x33\x34\x32\x34\x34\ +\x35\x2c\x30\x2e\x34\x34\x35\x35\x39\x31\x38\x2c\x2d\x30\x2e\x34\ +\x35\x30\x32\x33\x39\x30\x39\x2c\x30\x2e\x39\x32\x33\x37\x38\x39\ +\x38\x31\x2c\x2d\x35\x35\x32\x2e\x35\x32\x36\x37\x31\x2c\x2d\x33\ +\x36\x34\x2e\x30\x38\x33\x32\x37\x29\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x39\x32\x2d\ +\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x36\x32\x64\x39\ +\x63\x35\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x39\x34\x2d\x34\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x39\x36\x2d\x34\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ \x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ \x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ -\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x34\x33\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x34\x31\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\ -\x39\x35\x33\x34\x34\x33\x33\x2c\x30\x2e\x30\x39\x36\x33\x38\x32\ -\x39\x35\x2c\x2d\x30\x2e\x30\x39\x36\x33\x38\x32\x39\x35\x2c\x30\ -\x2e\x39\x39\x35\x33\x34\x34\x33\x33\x2c\x31\x32\x2e\x39\x37\x39\ -\x34\x37\x31\x2c\x2d\x36\x32\x2e\x37\x35\x38\x34\x31\x29\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x35\x31\x2e\x36\ -\x39\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ -\x22\x31\x30\x38\x2e\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x32\x3d\x22\x36\x37\x37\x2e\x33\x37\x37\x30\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\x38\x2e\x33\ -\x37\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x34\x33\x30\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x64\x64\x34\x31\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x34\x33\x30\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x61\x38\x30\x31\x30\x31\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x33\ -\x30\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\x38\x2e\ -\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ -\x36\x37\x37\x2e\x33\x37\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x31\x3d\x22\x31\x30\x38\x2e\x33\x37\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x35\x31\x2e\x36\x39\ -\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x39\x35\x33\x34\x34\x33\x33\ -\x2c\x30\x2e\x30\x39\x36\x33\x38\x32\x39\x35\x2c\x2d\x30\x2e\x30\ -\x39\x36\x33\x38\x32\x39\x35\x2c\x30\x2e\x39\x39\x35\x33\x34\x34\ -\x33\x33\x2c\x31\x32\x2e\x39\x37\x39\x34\x37\x31\x2c\x2d\x36\x32\ -\x2e\x37\x35\x38\x34\x31\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ -\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x30\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ -\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x34\x33\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\ -\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ -\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x33\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x79\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\ -\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ -\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x32\x38\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x37\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x31\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x33\x36\x31\x36\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ -\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\ -\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ -\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\ -\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\ -\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\ -\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\ -\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\ -\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ -\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\ -\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x67\x34\x31\x32\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\ -\x61\x74\x65\x28\x2d\x36\x34\x32\x2e\x31\x38\x32\x38\x37\x2c\x2d\ -\x36\x39\x2e\x33\x35\x38\x37\x33\x33\x29\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x39\x32\x2e\x31\x31\x37\x32\ +\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\ +\x39\x36\x2e\x35\x33\x32\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x31\x3d\x22\x39\x32\x2e\x31\x31\x37\x32\x34\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x35\x37\x2e\x34\ +\x32\x38\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x33\x33\x34\x32\x34\x34\ +\x35\x2c\x30\x2e\x34\x34\x35\x35\x39\x31\x38\x2c\x2d\x30\x2e\x34\ +\x35\x30\x32\x33\x39\x30\x39\x2c\x30\x2e\x39\x32\x33\x37\x38\x39\ +\x38\x31\x2c\x2d\x35\x32\x37\x2e\x38\x36\x31\x31\x38\x2c\x2d\x33\ +\x36\x38\x2e\x36\x32\x36\x34\x35\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ +\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x30\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x34\x32\x39\x32\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\ +\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ +\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\ +\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\ +\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\ +\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ +\x3d\x22\x33\x35\x2e\x34\x31\x37\x36\x39\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x34\ +\x30\x2e\x30\x37\x31\x35\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ +\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ +\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\ +\x22\x31\x32\x38\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x37\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x31\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x33\x36\x31\x36\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ +\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ +\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ +\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ +\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ +\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ +\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x35\x32\x31\x36\x36\x36\ +\x36\x34\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x33\x2e\x39\x34\x31\x36\x33\ +\x38\x2c\x31\x37\x2e\x31\x36\x36\x37\x32\x39\x20\x63\x20\x2d\x31\ +\x31\x2e\x37\x34\x39\x33\x30\x35\x2c\x30\x2e\x34\x32\x35\x35\x32\ +\x38\x20\x2d\x33\x32\x2e\x36\x32\x38\x37\x36\x37\x2c\x38\x2e\x35\ +\x31\x30\x39\x34\x35\x20\x2d\x33\x32\x2e\x36\x32\x38\x37\x36\x37\ +\x2c\x38\x2e\x35\x31\x30\x39\x34\x35\x20\x6c\x20\x32\x2e\x37\x32\ +\x36\x36\x33\x38\x2c\x33\x2e\x35\x39\x32\x30\x37\x31\x20\x63\x20\ +\x2d\x36\x2e\x36\x37\x38\x39\x33\x37\x2c\x31\x2e\x36\x34\x37\x39\ +\x35\x36\x20\x2d\x31\x33\x2e\x34\x33\x30\x39\x31\x39\x2c\x34\x2e\ +\x31\x34\x39\x34\x33\x32\x20\x2d\x31\x36\x2e\x39\x30\x35\x31\x35\ +\x35\x31\x2c\x37\x2e\x33\x37\x38\x33\x30\x39\x20\x2d\x32\x2e\x36\ +\x38\x37\x35\x33\x31\x33\x2c\x32\x2e\x36\x38\x34\x35\x38\x20\x2d\ +\x34\x2e\x38\x35\x34\x38\x39\x38\x37\x2c\x39\x2e\x31\x30\x31\x39\ +\x33\x34\x20\x30\x2e\x30\x39\x30\x38\x38\x38\x2c\x31\x30\x2e\x35\ +\x34\x39\x36\x38\x38\x20\x35\x2e\x39\x36\x36\x32\x36\x37\x31\x2c\ +\x32\x2e\x31\x38\x33\x31\x37\x31\x20\x31\x30\x2e\x30\x35\x30\x32\ +\x31\x36\x31\x2c\x30\x2e\x30\x39\x31\x39\x35\x20\x31\x34\x2e\x35\ +\x37\x32\x33\x36\x35\x31\x2c\x2d\x33\x2e\x36\x35\x36\x37\x39\x34\ +\x20\x31\x2e\x34\x39\x34\x36\x34\x35\x2c\x2d\x31\x2e\x32\x39\x38\ +\x38\x32\x38\x20\x34\x2e\x39\x35\x30\x37\x38\x36\x2c\x2d\x33\x2e\ +\x36\x38\x36\x37\x38\x38\x20\x38\x2e\x33\x30\x31\x30\x39\x38\x2c\ +\x2d\x36\x2e\x33\x37\x35\x31\x31\x38\x20\x6c\x20\x39\x2e\x36\x36\ +\x34\x34\x31\x36\x2c\x31\x32\x2e\x36\x35\x33\x31\x35\x33\x20\x63\ +\x20\x30\x2c\x30\x20\x32\x38\x2e\x34\x39\x36\x35\x34\x37\x2c\x2d\ +\x32\x32\x2e\x31\x39\x31\x34\x32\x32\x20\x32\x31\x2e\x32\x33\x37\ +\x34\x38\x2c\x2d\x33\x30\x2e\x38\x34\x30\x30\x33\x37\x20\x2d\x31\ +\x2e\x31\x39\x34\x33\x31\x33\x2c\x2d\x31\x2e\x34\x32\x32\x39\x33\ +\x31\x20\x2d\x33\x2e\x37\x36\x39\x31\x35\x37\x2c\x2d\x31\x2e\x39\ +\x33\x31\x33\x36\x34\x20\x2d\x37\x2e\x30\x35\x38\x39\x36\x33\x2c\ +\x2d\x31\x2e\x38\x31\x32\x32\x31\x37\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x39\x38\ +\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ +\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ \x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x39\x38\x2d\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x36\x39\x32\x2e\x36\x32\x35\x2c\x37\x39\x2e\x39\x30\x36\x32\x35\ -\x20\x63\x20\x2d\x39\x2e\x30\x30\x35\x31\x33\x2c\x30\x2e\x32\x35\ -\x37\x38\x36\x33\x20\x2d\x33\x31\x2e\x32\x35\x2c\x32\x33\x2e\x31\ -\x32\x35\x20\x2d\x33\x31\x2e\x32\x35\x2c\x32\x33\x2e\x31\x32\x35\ -\x20\x6c\x20\x37\x2e\x31\x32\x35\x2c\x33\x2e\x33\x37\x35\x20\x63\ -\x20\x2d\x35\x2e\x38\x38\x38\x32\x37\x2c\x34\x2e\x35\x33\x39\x34\ -\x33\x20\x2d\x31\x31\x2e\x38\x33\x34\x31\x34\x2c\x31\x30\x2e\x31\ -\x36\x37\x20\x2d\x31\x33\x2e\x38\x31\x32\x35\x2c\x31\x34\x2e\x38\ -\x34\x33\x37\x35\x20\x2d\x31\x2e\x33\x31\x31\x32\x2c\x33\x2e\x34\ -\x33\x38\x37\x34\x20\x2d\x30\x2e\x36\x31\x39\x37\x36\x2c\x39\x2e\ -\x38\x34\x38\x34\x32\x20\x34\x2e\x34\x30\x36\x32\x35\x2c\x38\x2e\ -\x39\x33\x37\x35\x20\x36\x2e\x32\x34\x31\x36\x37\x2c\x2d\x30\x2e\ -\x37\x32\x38\x35\x34\x20\x39\x2e\x30\x37\x33\x31\x34\x2c\x2d\x34\ -\x2e\x32\x37\x31\x37\x35\x20\x31\x31\x2e\x35\x39\x33\x37\x35\x2c\ -\x2d\x39\x2e\x34\x30\x36\x32\x35\x20\x30\x2e\x39\x32\x38\x34\x2c\ -\x2d\x32\x2e\x30\x30\x36\x36\x31\x20\x33\x2e\x35\x38\x31\x34\x31\ -\x2c\x2d\x36\x2e\x33\x33\x38\x38\x34\x20\x35\x2e\x36\x35\x36\x32\ -\x35\x2c\x2d\x31\x30\x2e\x36\x35\x36\x32\x35\x20\x6c\x20\x31\x31\ -\x2e\x34\x33\x37\x35\x2c\x35\x2e\x34\x30\x36\x32\x35\x20\x63\x20\ -\x30\x2c\x30\x20\x31\x36\x2e\x34\x38\x32\x38\x32\x2c\x2d\x33\x31\ -\x2e\x31\x34\x38\x34\x34\x36\x20\x36\x2e\x34\x33\x37\x35\x2c\x2d\ -\x33\x35\x2e\x33\x34\x33\x37\x35\x20\x2d\x30\x2e\x34\x37\x32\x32\ -\x31\x2c\x2d\x30\x2e\x31\x39\x37\x32\x31\x32\x20\x2d\x30\x2e\x39\ -\x39\x33\x34\x31\x2c\x2d\x30\x2e\x32\x39\x38\x34\x34\x31\x20\x2d\ -\x31\x2e\x35\x39\x33\x37\x35\x2c\x2d\x30\x2e\x32\x38\x31\x32\x35\ -\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x37\x38\ -\x34\x33\x31\x33\x37\x33\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x33\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\ -\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ -\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ -\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x34\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x39\x31\x2e\x37\x38\x35\x37\ -\x32\x2c\x37\x34\x2e\x35\x37\x31\x34\x32\x38\x20\x63\x20\x2d\x37\ -\x2e\x35\x35\x35\x33\x32\x2c\x2d\x33\x2e\x31\x35\x35\x33\x38\x37\ -\x20\x2d\x33\x32\x2e\x38\x35\x37\x31\x35\x2c\x32\x32\x2e\x38\x35\ -\x37\x31\x34\x33\x20\x2d\x33\x32\x2e\x38\x35\x37\x31\x35\x2c\x32\ -\x32\x2e\x38\x35\x37\x31\x34\x33\x20\x6c\x20\x32\x36\x2e\x34\x32\ -\x38\x35\x38\x2c\x31\x32\x2e\x34\x39\x39\x39\x39\x39\x20\x63\x20\ -\x30\x2c\x30\x20\x31\x36\x2e\x34\x37\x33\x38\x39\x2c\x2d\x33\x31\ -\x2e\x31\x36\x31\x38\x33\x34\x20\x36\x2e\x34\x32\x38\x35\x37\x2c\ -\x2d\x33\x35\x2e\x33\x35\x37\x31\x34\x32\x20\x7a\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x34\x31\x32\x35\x29\x3b\x66\x69\x6c\x6c\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\ -\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x33\x35\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x36\x37\x36\x2e\x31\x35\x36\x31\x35\ -\x2c\x39\x34\x2e\x30\x33\x31\x38\x32\x37\x20\x63\x20\x2d\x36\x2e\ -\x39\x34\x36\x37\x32\x2c\x33\x2e\x38\x30\x30\x39\x33\x31\x20\x2d\ -\x32\x30\x2e\x36\x37\x34\x35\x39\x2c\x31\x33\x2e\x39\x39\x30\x39\ -\x38\x33\x20\x2d\x32\x33\x2e\x39\x30\x32\x34\x34\x2c\x32\x31\x2e\ -\x36\x32\x31\x34\x36\x33\x20\x2d\x31\x2e\x33\x31\x31\x32\x2c\x33\ -\x2e\x34\x33\x38\x37\x34\x20\x2d\x30\x2e\x36\x31\x39\x36\x2c\x39\ -\x2e\x38\x33\x30\x35\x31\x20\x34\x2e\x34\x30\x36\x34\x31\x2c\x38\ -\x2e\x39\x31\x39\x35\x39\x20\x36\x2e\x32\x34\x31\x36\x37\x2c\x2d\ -\x30\x2e\x37\x32\x38\x35\x34\x20\x39\x2e\x30\x35\x35\x32\x2c\x2d\ -\x34\x2e\x32\x37\x35\x32\x32\x20\x31\x31\x2e\x35\x37\x35\x38\x31\ -\x2c\x2d\x39\x2e\x34\x30\x39\x37\x32\x20\x31\x2e\x38\x33\x38\x34\ -\x35\x2c\x2d\x33\x2e\x39\x37\x33\x35\x35\x20\x31\x30\x2e\x34\x34\ -\x31\x37\x2c\x2d\x31\x37\x2e\x30\x33\x39\x35\x31\x37\x20\x37\x2e\ -\x39\x32\x30\x32\x32\x2c\x2d\x32\x31\x2e\x31\x33\x31\x33\x33\x33\ -\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x30\x39\ -\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\ -\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ +\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x30\x30\x31\x29\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x33\x62\x32\x64\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x30\x39\x39\x30\x31\x30\ +\x39\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ +\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x4d\x20\x35\x39\x2e\x36\x36\x32\x32\x35\x33\x2c\x31\ +\x33\x2e\x31\x32\x33\x39\x36\x38\x20\x43\x20\x35\x34\x2e\x32\x30\ +\x32\x35\x33\x38\x2c\x36\x2e\x36\x31\x39\x31\x34\x34\x36\x20\x31\ +\x39\x2e\x39\x35\x31\x38\x38\x39\x2c\x31\x39\x2e\x38\x32\x38\x34\ +\x36\x34\x20\x31\x39\x2e\x39\x35\x31\x38\x38\x39\x2c\x31\x39\x2e\ +\x38\x32\x38\x34\x36\x34\x20\x6c\x20\x31\x38\x2e\x34\x35\x39\x37\ +\x39\x33\x2c\x32\x34\x2e\x31\x35\x32\x39\x33\x39\x20\x63\x20\x30\ +\x2c\x30\x20\x32\x38\x2e\x35\x30\x39\x36\x33\x38\x2c\x2d\x32\x32\ +\x2e\x32\x30\x38\x38\x31\x39\x20\x32\x31\x2e\x32\x35\x30\x35\x37\ +\x31\x2c\x2d\x33\x30\x2e\x38\x35\x37\x34\x33\x35\x20\x7a\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ +\x34\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\ +\x63\x63\x63\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\ +\x69\x6c\x6c\x3a\x23\x30\x30\x62\x65\x62\x35\x3b\x66\x69\x6c\x6c\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\ +\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x23\x30\x30\x33\x62\x32\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x30\x39\x39\x30\x31\ +\x30\x39\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\ +\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\ +\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\ +\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\ +\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\ +\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ +\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x2e\x32\ +\x39\x31\x34\x37\x37\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x31\x31\x2e\x31\x30\x38\x36\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x34\x2e\x37\x32\ +\x38\x34\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x32\x31\x2e\x32\x35\x33\x30\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ +\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x30\x30\x62\x65\x62\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x33\x62\x32\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x33\x2e\x30\x39\x39\x30\x31\x30\x39\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ +\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x6d\x20\x33\x36\x2e\x38\x34\x38\x30\x30\x32\x2c\x32\x31\x2e\x31\ +\x33\x39\x33\x33\x32\x20\x63\x20\x2d\x37\x2e\x39\x34\x35\x33\x36\ +\x36\x2c\x30\x2e\x34\x33\x30\x36\x34\x34\x20\x2d\x32\x34\x2e\x38\ +\x31\x35\x39\x39\x38\x2c\x33\x2e\x38\x34\x34\x32\x38\x20\x2d\x33\ +\x31\x2e\x30\x36\x37\x36\x32\x38\x34\x2c\x39\x2e\x36\x35\x34\x34\ +\x30\x36\x20\x2d\x32\x2e\x36\x38\x37\x35\x33\x30\x39\x2c\x32\x2e\ +\x36\x38\x34\x35\x38\x20\x2d\x34\x2e\x38\x35\x31\x36\x35\x30\x39\ +\x32\x2c\x39\x2e\x31\x31\x38\x32\x38\x33\x20\x30\x2e\x30\x39\x34\ +\x31\x33\x38\x2c\x31\x30\x2e\x35\x36\x36\x30\x33\x36\x20\x35\x2e\ +\x39\x36\x36\x32\x36\x36\x34\x2c\x32\x2e\x31\x38\x33\x31\x37\x31\ +\x20\x31\x30\x2e\x30\x36\x30\x34\x31\x33\x34\x2c\x30\x2e\x30\x38\ +\x38\x35\x36\x20\x31\x34\x2e\x35\x38\x32\x35\x36\x32\x34\x2c\x2d\ +\x33\x2e\x36\x36\x30\x31\x37\x36\x20\x33\x2e\x33\x39\x38\x30\x39\ +\x36\x2c\x2d\x32\x2e\x39\x35\x32\x39\x30\x35\x20\x31\x36\x2e\x38\ +\x38\x36\x36\x33\x34\x2c\x2d\x31\x31\x2e\x34\x38\x32\x34\x30\x37\ +\x20\x31\x36\x2e\x33\x39\x30\x39\x32\x38\x2c\x2d\x31\x36\x2e\x35\ +\x36\x30\x32\x36\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x35\x30\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\ +\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ \x00\x00\x14\x8d\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -35777,174 +35711,226 @@ qt_resource_data = "\ \x38\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ \x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\ \x3e\x0a\ -\x00\x00\x0a\x5e\ +\x00\x00\x0d\x97\ \x00\ -\x00\x29\x34\x78\x9c\xed\x5a\xdb\x8e\xdb\x46\x12\x7d\xf7\x57\x68\ -\xe9\x17\x1b\x2b\xb6\xfa\x7e\x91\x47\xce\x83\x8d\x2c\x02\xcc\x62\ -\x81\x8d\x8d\x7d\x0c\x38\x24\x47\xc3\x1d\x8a\x14\x48\x6a\x46\x9a\ -\xaf\xdf\xea\xe6\x5d\xa4\x26\x76\xec\xd8\x59\xc0\x0a\x62\x89\xa7\ -\xab\xba\xbb\xaa\xeb\x54\x57\xd1\xbe\xfa\xe9\xb8\x4b\x17\x0f\x71\ -\x51\x26\x79\xb6\xf1\x08\xc2\xde\x22\xce\xc2\x3c\x4a\xb2\xed\xc6\ -\xfb\xf8\xe1\x67\x5f\x7b\x8b\xb2\x0a\xb2\x28\x48\xf3\x2c\xde\x78\ -\x59\xee\xfd\xf4\xf6\xc5\xd5\xdf\x7c\x7f\xf1\xae\x88\x83\x2a\x8e\ -\x16\x8f\x49\x75\xb7\xf8\x25\xbb\x2f\xc3\x60\x1f\x2f\x5e\xdd\x55\ -\xd5\x7e\xbd\x5a\x3d\x3e\x3e\xa2\xa4\x01\x51\x5e\x6c\x57\xaf\x17\ -\xbe\x0f\x9a\xe5\xc3\xf6\xc5\x62\xb1\x80\x65\xb3\x72\x1d\x85\x1b\ -\xaf\x91\xdf\x1f\x8a\xd4\xc9\x45\xe1\x2a\x4e\xe3\x5d\x9c\x55\xe5\ -\x8a\x20\xb2\xf2\x7a\xf1\xb0\x17\x0f\xed\xe2\xc9\x43\x1c\xe6\xbb\ -\x5d\x9e\x95\x4e\x33\x2b\x5f\x0e\x84\x8b\xe8\xb6\x93\xb6\x9b\x79\ -\x64\x4e\x88\x18\x63\x56\x98\xae\x28\xf5\x41\xc2\x2f\x4f\x59\x15\ -\x1c\xfd\xb1\x2a\xec\x71\x4e\x95\x62\x8c\x57\x30\xd6\x4b\x7e\x9a\ -\xd4\xfa\x98\x82\x27\x2e\x6e\xc6\x8d\x0e\x57\x07\xef\xef\xe1\xff\ -\x4e\xa1\x05\x50\x99\x1f\x8a\x30\xbe\x05\xcd\x18\x65\x71\xb5\x7a\ -\xff\xe1\x7d\x37\xe8\x63\x14\x55\xd1\x60\x9a\xd6\xf9\xa3\x75\x47\ -\x27\x92\x05\xbb\xb8\xdc\x07\x61\x5c\xae\x5a\xdc\xe9\x3f\x26\x51\ -\x75\xb7\xf1\x24\xdf\x1f\xdd\xf3\x5d\x9c\x6c\xef\xaa\x01\x90\x44\ -\x1b\x0f\x2c\x64\x94\x61\xf7\xdc\xee\x61\xdd\x05\x12\x46\x8c\xd6\ -\xa2\xcd\xc4\xc3\x21\x2e\xc7\x5a\x51\x1e\xda\xad\x6c\xbc\x34\x0f\ -\xef\x51\xeb\xba\x4e\x33\x3f\x54\xfb\x43\xf5\x5b\x7c\xac\xe2\xac\ -\x9e\x02\x36\x3f\xb0\xc4\x0d\x5b\xb5\x0e\xf3\xde\xc2\x04\x57\x51\ -\x7c\x5b\xda\x89\xea\xfd\xda\x27\xd8\x30\x75\x63\x30\x0a\x4e\x8f\ -\x83\xe2\x1f\x45\x10\x25\x10\x6a\xb5\xdc\x60\xd1\x30\x4f\xd3\x38\ -\x04\xa3\x83\xf4\x31\x38\x95\x5e\x27\x00\x53\x8d\x55\x19\x55\xac\ -\x99\x14\xa6\x2d\xab\x7c\xdf\xca\x82\x89\xd5\x29\x05\xbb\x2c\xe8\ -\xc3\x8c\x79\xb1\x7e\x79\xeb\x3e\x6f\x1c\x94\x83\xf3\x93\xea\xb4\ -\x26\x6f\xbc\x5e\x27\xbf\xbd\x2d\x63\x58\x18\x0f\x30\xe7\x70\xd0\ -\x80\xb5\x84\xb7\x58\x7d\xd9\x6a\x78\x6e\x35\x32\xbf\x9a\xea\x56\ -\xbb\x5a\x8d\xcd\x6e\x50\xfb\x14\xa4\x9f\xed\x46\x17\xf3\xeb\xbb\ -\x22\x06\x8e\xbe\x9c\xf1\xe7\xd0\xdd\xe3\x25\x28\x27\xfd\x5e\xb7\ -\x0d\xf8\x31\x4b\x2a\x20\xe3\xa1\x8c\x8b\x5f\x6d\x40\xff\x2b\xfb\ -\x58\xc6\x13\xa9\x0f\x45\x90\x95\xc0\x9e\xdd\xc6\xdb\x05\x55\x91\ -\x1c\x5f\x91\x25\x86\xff\x20\xeb\x69\xac\xb8\x31\xf0\xdb\xe7\x1c\ -\x49\x2e\x39\x56\xaf\x3b\xfd\xf0\xb8\xf1\xa8\xd2\x0a\x09\x63\xfa\ -\xb5\xc3\xd3\xc6\x13\x82\x22\x6d\x14\x93\x1d\x7a\x3b\x2b\x7b\x3b\ -\x2b\x5b\x6c\x3c\xa6\x91\xa6\x86\x49\xd3\xfb\xf9\x0f\x06\xe6\xb3\ -\x1e\x35\xec\x99\x00\xa6\x1c\x9b\xaf\xe6\x51\xbf\x76\x29\x7c\x09\ -\x29\x24\xd2\x8c\xe9\x25\xe1\x58\x23\x4a\x89\xec\x5d\x7a\x24\xd6\ -\x4d\x02\x7c\xad\x85\xee\xd0\x13\xa0\x52\x41\xd2\x27\x58\xf7\xce\ -\x3b\x52\x90\x35\x18\x23\xc2\x07\xa2\x74\x28\xfa\x5d\x9d\xa7\xfe\ -\x5c\xe7\x31\x25\xff\xda\xce\x9b\x4b\x89\xe6\x73\x52\xa2\x06\xfa\ -\x61\xfc\x87\x53\xa2\xf9\xbc\x94\x38\xb7\xda\x67\xa4\x44\xf3\xbb\ -\x29\xf1\x7b\xc4\xa0\xf8\x93\x63\x10\xb2\xe2\xff\x5d\x0c\x0a\xf1\ -\xed\xae\x65\xa1\xbe\xe5\xb5\x2c\xcc\xf7\x88\x41\x21\x9e\x8f\x41\ -\xf6\xd5\x62\x10\x23\xa5\x31\xa5\x8c\xd7\xd7\xf3\x12\xee\x52\xa4\ -\x05\x11\x72\x89\xcf\x23\x90\x51\xc4\x84\x22\xa3\x08\x54\xc4\x86\ -\x15\x25\x66\x1c\x81\x9a\x19\x84\x15\x61\xa3\x10\xec\x65\x3b\x8f\ -\x76\x5e\xda\x43\xc9\xba\x07\x37\x41\x9b\xd1\xaa\x74\x35\x6b\x75\ -\xb2\x95\xf5\x58\x94\x45\xde\xc4\xd3\x0f\xfb\xdf\xa0\x22\xc0\x8b\ -\xf5\x82\x51\xf8\x83\xcc\x4a\x9c\x6a\x09\x02\x79\x09\xbe\xf0\xac\ -\xcc\x93\xad\xbf\x9f\x99\xa6\xd9\x81\x9f\x17\xc9\x36\x81\x1a\xd9\ -\xc9\x51\x82\x98\xfb\x8c\x75\xe0\xf4\x06\xb6\x41\x55\xac\x1b\xeb\ -\xaf\x56\xb6\x4c\x76\xbf\x3a\x4b\x6d\x69\x1e\x3d\x24\xf1\x63\x5f\ -\x4b\xdf\x04\xdd\x31\xee\x83\x6d\xec\x82\x1a\x02\xa6\x8e\xea\x66\ -\xe0\x26\x2f\xa2\xb8\x68\x87\xa4\xfb\x8c\x86\x9a\xb8\xaf\x9b\xce\ -\x17\x67\xc6\xc0\xac\xdd\x38\x9e\x1f\x2f\xef\x82\x28\x7f\x84\x73\ -\x3d\x1f\x7c\xca\x73\x08\x25\x81\xc4\xf9\x80\xab\xe3\xec\x65\x6a\ -\x30\xe5\x93\xc1\x93\x1b\xe4\xc4\x50\xa2\x27\x83\x87\xa2\x80\x48\ -\xf5\xd3\xe0\x14\x83\x39\x5b\xf0\x58\x1b\x46\xe5\x5d\xfe\xb8\x2d\ -\xac\x57\xaa\xe2\x10\x9f\x2b\x42\x6b\x73\xb0\xad\xac\x7f\xa8\xa9\ -\xd0\x34\x50\x03\x09\xab\xeb\xdf\xdc\xe4\xc7\xf9\x09\x1e\x93\x0c\ -\xac\xf4\x9b\x96\x8c\x60\x32\x31\xb7\x91\x68\x9b\x34\x45\x2f\x49\ -\x1c\xad\xbe\xb9\x30\x68\xad\x6f\xef\xd1\xab\x5d\x5c\x05\x51\x50\ -\x05\xfd\x89\xb7\x08\xc4\x4a\x9b\x55\xaf\xa0\x7d\x5e\xff\xfb\xfd\ -\xcf\x5d\xd6\x0b\xc3\xf5\x7f\xf2\xe2\xbe\x4f\x58\x56\x20\xb8\x81\ -\xfe\x6c\xe3\x75\x99\xd8\xf6\x65\xe1\xda\xb2\x3d\xa8\xde\x26\x3b\ -\x38\x47\xdb\x2b\xff\x1d\x5a\x56\x88\xbd\x6e\x60\x24\x6c\xa9\xd6\ -\x4f\x5a\x4f\x5b\xc4\x75\x2f\x3c\xfb\xfa\x20\x0a\x77\x89\x55\x5a\ -\xfd\x5a\x25\x69\xfa\x8b\x5d\x64\x98\x9d\x57\xcd\x46\xdb\x04\x3a\ -\xb0\xe3\x6a\xd5\x1a\xea\x9e\xb6\xbd\x03\xdc\xc9\x93\x73\xe7\xa5\ -\xc1\x4d\x9c\x6e\xbc\x6b\x3b\xb8\x98\x8c\x6e\x8b\xfc\xb0\xdf\xe5\ -\x51\xdc\xa8\xb7\x8e\xdb\x0e\x89\x38\x8c\xa5\xc5\xa2\x9a\xc9\x85\ -\xc4\x30\x68\x28\x84\xcb\x85\xfd\x93\x0f\xf9\x10\x61\x22\x05\x59\ -\xfa\x86\x21\xa5\x94\x24\x83\x9e\xa5\xdb\x44\x7c\xdc\xe7\x45\xe5\ -\xdf\x26\x69\x5c\x37\xd9\xab\xbb\x7c\x17\xaf\x4e\x90\x27\xee\x57\ -\xef\x9b\xf0\x2c\x57\xd7\xc1\xcd\xea\x7d\x11\xdc\x56\xab\x24\xcc\ -\xb3\x72\x15\xa6\x79\x19\xa3\x7d\xb6\xbd\x38\xe3\x31\xda\x27\x1b\ -\x8f\x23\x6e\x24\xe1\x92\x5e\x94\x3b\x9d\xc9\x75\xe7\xb0\xed\x0f\ -\x75\x5e\x47\x22\x81\x89\x91\xaa\xcf\xe3\x97\x76\xf1\x29\x92\x5f\ -\xee\x81\xd1\xf1\xb8\x9f\x69\x50\xc5\xaf\x7c\xb9\xf4\xf5\xeb\xe1\ -\xca\xcd\xb1\x8a\x61\xd4\xef\x83\xea\x6e\x18\xc5\x4d\x55\xd0\xd7\ -\x1a\xb0\xbf\xd4\x56\x06\x91\xad\x4e\xed\x83\x3f\x1e\xf3\x8b\x43\ -\x0a\xc6\x3c\xc4\x59\x1e\x45\x50\x3a\x14\xf9\x7d\xbc\x7e\x89\xdd\ -\xa7\x79\xac\xd3\xc4\x5a\x21\xc5\x31\x67\x8a\xb1\x16\xb7\x77\x35\ -\xf8\x62\x7d\x73\xa8\xaa\x21\xf6\xdf\x3c\xc9\xd6\x40\x96\xb8\x78\ -\xb3\x0b\x8a\xfb\xb8\x58\x67\x79\x16\x37\xbf\xfd\xb2\x0a\x8a\x6a\ -\x84\xec\x92\x68\xf4\x1c\x67\xcd\x73\x33\xa7\x9b\x2a\x4d\xe0\x6b\ -\xcd\x5b\x2c\x0a\x20\x53\x17\x45\x70\x1a\x49\x5a\xb4\x2e\x72\xd6\ -\xdd\xee\x7b\x7b\x1f\x92\x32\xb9\x49\x52\xfb\xe0\x7e\xa6\xf1\x9b\ -\x28\x29\xf7\xc0\xa2\x75\x92\xd9\x8d\xbf\xc9\x1f\xe2\xe2\x36\xcd\ -\x1f\xbb\x71\x38\x5b\xf8\xf2\x6f\x82\xf0\xde\xf2\x0e\x36\x16\x84\ -\x70\xb4\x07\x7b\x44\xde\xd0\xf1\x70\x38\xff\x5c\x40\x31\x80\x91\ -\x86\xcf\x52\x10\x48\xfa\x5a\xd0\xc5\xbb\x05\xf4\xed\x1a\x11\xc9\ -\x3a\x90\x18\xc0\x04\x43\x4c\x1b\xbe\x14\x82\x20\xdb\x2a\x6b\x8b\ -\x51\x24\x84\x62\x50\x98\x70\xc4\x0c\xd3\x74\x71\xdd\xa0\x50\x26\ -\x5d\x44\x05\x32\x5a\x30\x32\x42\xa5\x64\x88\x08\xc2\x84\x43\x35\ -\x85\x0a\x85\xcb\x0b\xe8\x78\x5e\x8b\x52\x6e\x06\xa8\xb3\x80\x21\ -\x68\x88\x60\xb7\x52\x21\x61\x09\x07\xa6\x62\x61\x27\x03\xab\xb8\ -\x44\x44\x49\xb0\x15\xcc\x27\xc8\x60\xcd\x06\x18\x68\x6b\x01\x15\ -\x12\x61\xb2\x43\x09\x60\x1a\xee\x67\x61\x25\xa5\x46\x58\x4b\x6d\ -\x6a\x4c\x19\xa2\x9c\x4d\x5c\xd6\x26\x69\xbb\x21\x22\xc4\x3c\x28\ -\x25\x45\x1a\xb6\xa2\x2c\x6a\xb0\x41\x8c\x98\x4b\xa8\x80\x7c\xa6\ -\x15\x91\xa4\x45\x01\xa4\x03\xf4\x9d\x45\x61\x33\xca\x9e\x80\xc0\ -\x60\x08\xd3\x70\x2a\x5a\x31\xc4\x6d\xd1\xd8\x1e\x29\x99\x3b\xe6\ -\xa7\x51\x30\xb8\x52\x08\x98\x09\x6c\x1d\x56\xf0\xf6\x76\x83\xe2\ -\xe8\x07\x5f\xff\x02\x7c\x75\xaf\x00\xe1\x30\xe0\x88\xcc\x68\xa0\ -\xad\x89\x0c\x5c\x8a\x82\x1b\x3e\x1a\x6c\xcb\x21\xc2\x05\x92\x8a\ -\x33\x31\x1a\x75\x2f\xe9\x98\xbb\x35\xc6\x03\x27\x5b\x65\x4b\x28\ -\x9a\xa1\xdb\x1d\xd5\x0c\xdb\xee\xe7\x38\x91\xf7\x65\x32\xdc\xf3\ -\xb6\xe8\x80\x22\x2f\x2c\xcb\x10\x3e\x67\x37\x42\x1d\x66\x66\xd8\ -\xd1\x35\xa9\x88\x70\x04\x2d\x0c\x5b\x4a\x8e\xe1\x87\xe4\xda\x71\ -\x71\x8a\x52\x05\x7d\x10\xe6\x8a\x2f\xa5\xd0\x48\x68\x03\x0d\x01\ -\x60\xca\x96\x01\x80\x29\x4b\x89\x46\x5b\x41\x52\xe0\x1a\xf3\xa5\ -\xc2\x14\x71\xac\x68\x93\x07\xb0\x51\x14\x30\xa0\x14\x07\x02\x5b\ -\x4c\x21\x46\x41\x5b\x31\x31\x58\x1b\x04\x84\x80\x76\x4b\x01\x3f\ -\x31\x16\x58\x58\x0c\xea\x70\x4d\xc4\x52\x01\xf9\x65\xab\x3d\xc1\ -\x6c\x66\xb2\x3d\x99\x34\x6c\x8a\x62\x83\xa5\xb3\xc7\x30\x26\x99\ -\xcb\x0f\x53\x2b\x87\x04\x6d\x48\xe7\xa8\x06\x05\xde\xab\x97\xd3\ -\xa6\xf3\xf5\x27\x73\x6f\x18\xce\x35\xf1\xc8\xfe\xf8\x19\x8c\x3b\ -\x8f\xfa\x61\x7c\x6c\x7f\xa7\x46\xc0\xcb\xb9\x0a\x61\xf0\x96\xec\ -\x93\x2b\x84\x79\x37\x88\x67\xdc\x00\x76\x3f\x41\xbb\x75\xd9\x0d\ -\x02\x92\xb9\xfd\x28\xf2\x23\xff\x5c\xaa\x17\x14\xdc\xa7\xc4\xd6\ -\xdd\x52\x12\x24\x1c\xc5\x80\x1b\x42\x1a\xd3\x20\x70\xa5\x6b\x24\ -\x85\x7d\x84\x90\x26\x84\xb9\xda\x41\x21\x77\xc7\x6b\xa4\xac\xb2\ -\x53\x03\x0c\x48\x58\xa3\x02\xee\x4a\xda\xa8\x1a\x4d\x1c\xc6\xa5\ -\x95\x04\xcc\xd8\x9f\x7a\x80\xb9\xfb\x94\x21\x33\x46\x2d\x5f\xb5\ -\xb1\x6f\x4c\x4c\x87\x42\x5e\xd0\x36\x03\x30\xbb\x61\xb8\x16\x29\ -\x24\x34\x39\xc2\x20\x03\x08\x49\xeb\x39\x3b\x54\xbb\xbb\x75\xf0\ -\x4c\x11\x25\x90\x3b\x6b\x8c\x42\xe3\x01\x98\x2d\x87\xa8\xb4\x35\ -\x84\xbb\x90\xad\x18\x1f\x6c\xc5\x80\x29\x50\x6d\x38\x41\x98\x85\ -\x48\x7b\x59\x53\xb7\x5a\xbd\xac\xd2\x62\x04\x71\x84\x19\xa9\x77\ -\x32\x40\x29\x6a\x1d\xd6\x80\x90\x22\x24\xf4\xee\x92\xbb\xa2\x04\ -\x92\x1e\x2c\xc9\x9d\xef\xb9\x8d\x5d\x8b\x41\xb6\x71\xca\xee\x3c\ -\xae\x27\x67\x76\xe9\xe6\x1f\xbd\x3f\xfe\x42\x1e\xaa\x1f\x3c\xfc\ -\x56\x3c\x84\xe8\x3b\xe3\xa1\x43\x7a\x1e\x1a\x79\xc6\x43\x05\xd7\ -\xd5\x94\x87\x16\x3d\xe7\xa1\xc5\xce\x79\xd8\x63\x43\x1e\xf6\xe8\ -\x90\x87\x2d\x3a\xe4\xa1\x82\xeb\xf7\x9c\x87\xee\xed\xe3\x84\x87\ -\x70\x1f\x8e\x78\xa8\xe0\x92\x3c\xe7\xa1\x82\xee\xff\x8c\x87\xca\ -\x96\xb8\x13\x1e\x5a\xc1\x73\x1e\xba\x65\xc7\x3c\x54\x58\xce\xf0\ -\x50\x61\x3e\xc3\x43\x98\x7a\xc2\x43\xd8\xc3\x84\x87\xee\x3c\xae\ -\x27\x67\x76\x91\x87\xea\xeb\xf1\xd0\xfc\xe0\xe1\x37\xe2\x21\x50\ -\xe8\x8c\x87\x35\xd2\xf1\x50\x51\x7d\xce\x43\x28\x05\x67\x78\xc8\ -\xe8\x94\x87\x80\x4d\x78\xd8\x61\x23\x1e\x76\xe8\x88\x87\x0d\x3a\ -\xe2\x21\x53\x53\x1e\x72\x36\xc7\x43\x2e\xc6\x3c\x84\xce\x60\xc2\ -\x43\xae\x26\x3c\xe4\x7a\x8e\x87\x20\x38\xe1\xa1\x5d\xf6\x8c\x87\ -\x4c\xcf\xf1\x10\x7a\x95\x09\x0f\x15\xf4\xb6\xe7\x3c\xb4\xbe\x3f\ -\xe7\x61\x7d\x1e\xd7\x93\x33\xbb\xc8\x43\xf3\x65\x9d\xcf\xd3\xd3\ -\xd3\x7c\xf3\xc3\xf1\x4c\xf3\x63\xdf\xb9\x53\x0d\x4d\x3f\x69\xdb\ -\x82\x77\xb3\x28\x34\x1b\x04\x0e\x15\x9a\x12\x8b\xb5\x0d\x91\xb6\ -\xff\x5a\x83\x42\x7b\x4f\x6d\x48\x19\xc6\xeb\x48\x54\xce\x09\x4b\ -\xc1\x38\xd2\x92\x36\x11\x65\xdc\x84\xd0\x0f\x36\x13\xda\x37\x3b\ -\x70\x9c\x74\x09\xce\x1c\x74\x4e\xbc\x55\xd6\xe0\x5e\x37\x25\xb5\ -\x27\x5a\x6b\x9b\x7a\x3b\x74\x16\x73\x2e\x26\xcd\xc6\x4d\xb3\xf4\ -\xbb\x39\x90\x2a\x45\x20\x56\xdc\xdb\x1b\x81\x34\xe7\x6e\x15\x28\ -\xd4\x5c\x2f\x24\xc0\xaa\xba\x3f\xb3\xca\x0a\xae\x0d\x49\x60\x97\ -\x50\x13\x71\x03\xb7\x9a\xc5\x24\x92\x58\xb9\xbf\xa2\x75\x7b\xb4\ -\xd6\x68\x69\xdd\xa3\x96\x02\xcc\x52\x06\xec\xa9\xfb\x40\x09\xfc\ -\xb0\x36\x72\xdb\x94\x51\xfb\x46\x4b\x83\xff\x38\x87\x00\x12\x96\ -\x09\x8a\xba\x4e\x8e\x18\x64\x6a\x97\x89\xe1\x31\x40\x1f\x48\xb0\ -\x76\x8e\x94\x18\x33\x1b\xe5\x40\xe7\xda\x6b\xb4\xf3\xe4\x0c\x76\ -\x3d\x7b\x88\xcf\xf6\x76\xd3\x7f\xe7\xf3\x17\xe8\xed\x9a\xf8\x77\ -\x5f\x57\xf6\xaf\x2a\xde\xbe\xf8\x1f\xed\x5a\x52\xf3\ +\x00\x42\x91\x78\x9c\xed\x5b\x5b\x6f\xdb\x46\x16\x7e\xcf\xaf\xe0\ +\xaa\x2f\x0d\x56\xa4\xe6\x7e\x51\xec\xf4\x61\x8b\x2e\x0a\xec\x62\ +\x81\x6d\x8b\x7d\x2c\x68\x89\xb2\xd5\x48\xa2\x41\xc9\xd7\x5f\xbf\ +\xdf\x19\xde\x6d\xca\x96\xe2\xc4\x4d\x83\x38\x4d\x4c\xce\x9c\x99\ +\x39\x73\xe6\x3b\x57\x4e\x4f\x7e\xb8\x5d\xaf\xa2\xeb\xac\xd8\x2e\ +\xf3\xcd\xe9\x88\x27\x6c\x14\x65\x9b\x59\x3e\x5f\x6e\xce\x4f\x47\ +\xbf\xfd\xfa\x53\xec\x46\xd1\x76\x97\x6e\xe6\xe9\x2a\xdf\x64\xa7\ +\xa3\x4d\x3e\xfa\xe1\xfd\x9b\x93\xbf\xc5\x71\xf4\x8f\x22\x4b\x77\ +\xd9\x3c\xba\x59\xee\x2e\xa2\x9f\x37\x1f\xb6\xb3\xf4\x32\x8b\xbe\ +\xbf\xd8\xed\x2e\xa7\x93\xc9\xcd\xcd\x4d\xb2\xac\x1a\x93\xbc\x38\ +\x9f\xbc\x8d\xe2\xf8\xfd\x9b\x37\x27\xdb\xeb\xf3\x37\x51\x14\x61\ +\xdd\xcd\x76\x3a\x9f\x9d\x8e\xaa\x01\x97\x57\xc5\x2a\x10\xce\x67\ +\x93\x6c\x95\xad\xb3\xcd\x6e\x3b\xe1\x09\x9f\x8c\x5a\xf2\x59\x4b\ +\x3e\xa3\xd5\x97\xd7\xd9\x2c\x5f\xaf\xf3\xcd\x36\x8c\xdc\x6c\xbf\ +\xeb\x10\x17\xf3\x45\x43\x4d\xdc\xdc\xc8\x40\xc4\xbd\xf7\x13\x26\ +\x26\x42\xc4\xa0\x88\xb7\x77\x9b\x5d\x7a\x1b\xf7\x87\x82\xc7\xa1\ +\xa1\x82\x31\x36\x41\x5f\x4b\x79\x18\xd5\xf4\x76\x05\x51\xec\x65\ +\x26\xf4\x76\x57\x87\xf8\x2f\xf1\xb7\x19\x50\x37\x24\xdb\xfc\xaa\ +\x98\x65\x0b\x8c\xcc\x92\x4d\xb6\x9b\xfc\xf8\xeb\x8f\x4d\x67\xcc\ +\x92\xf9\x6e\xde\x99\xa6\x96\x7e\x6f\xdd\xde\x91\x6c\xd2\x75\xb6\ +\xbd\x4c\x67\xd9\x76\x52\xb7\x87\xf1\x37\xcb\xf9\xee\xe2\x74\x64\ +\xd4\xe5\x6d\x78\xbf\xc8\x96\xe7\x17\xbb\x4e\xc3\x72\x7e\x3a\xc2\ +\x0e\xa5\xe1\x22\xbc\x77\x00\xc4\x4b\x82\x6a\xba\x69\xd3\xc3\x12\ +\xe5\x12\x99\xf0\xa8\xf0\xce\x99\x40\x54\x73\x3e\x9d\xe7\x33\x62\ +\xe5\x74\xf4\x63\x91\x2e\x76\xbf\xff\xb4\xdc\x2c\xb7\x17\x09\x89\ +\xf0\x3d\xe8\x4e\xe6\xd9\x62\x4b\xf4\xe5\xba\xf4\x86\x85\x55\xe8\ +\x43\x2f\x84\x97\xa5\xc5\x3f\x8b\x74\xbe\x04\x64\x4a\xba\x92\xb2\ +\xdf\xa3\x84\x63\xd5\x18\x8c\xda\xee\xf2\xcb\x9a\x16\x9c\xec\xee\ +\x56\x58\x9e\x1a\xe3\x59\xbe\xca\x8b\xe9\x77\x8b\x85\xc1\x39\xbe\ +\x0b\x4d\x39\x64\xb4\xdc\xdd\x4d\xf9\xbb\x51\x3b\x26\x5f\x2c\xb6\ +\x19\x84\xc2\x3a\x6d\x41\x2e\x18\x81\xb5\xc4\x28\x9a\x1c\xb3\x5a\ +\x96\x1d\xb4\x1a\x1f\x5e\x4d\x35\xab\x9d\x4c\xfa\xdb\xae\x5a\x9b\ +\x03\xb9\xc4\x81\x5c\x66\x33\x52\x9d\x7a\xa6\xe6\x1c\x76\x77\x84\ +\x96\x3e\xa9\x9c\x37\x2b\xb6\x87\x7a\xf9\xfb\x2d\x36\x1e\x4d\x23\ +\x29\xf0\x0f\x1f\xa4\xb8\x2b\x29\x38\xa4\x88\x5f\x6c\x90\xe6\x9e\ +\x30\xf5\xc4\x34\x15\x07\x71\x5e\x2c\xcf\x97\x00\x51\xa0\x13\x3c\ +\x91\xe1\xa7\x3f\x06\xc2\xe8\xec\x4d\x1a\xc1\x5a\x99\x3c\xb5\xfb\ +\x87\x03\xb5\x73\xcf\x33\xc2\x12\x4d\x9b\xaa\x18\x79\xc8\x4a\x7f\ +\x87\x3c\x50\xea\x17\x09\xaa\x12\xf7\xc3\x69\x9e\x3b\xb9\x8f\x12\ +\x80\xf1\xe2\xeb\x13\x00\x69\x43\xba\x7a\x64\x25\x6a\x7a\xa8\xe1\ +\x0a\xdb\x3f\x1d\xa5\xab\x9b\xf4\x6e\xdb\xcc\x1f\x4c\xf3\xf4\xa2\ +\xc8\xe0\x4a\xbe\xeb\x2b\x96\xe4\x4a\xc5\xa6\x87\xbf\xfe\x22\xd2\ +\x40\x2d\xeb\xee\xf3\xaa\xf1\xb7\xcd\x72\x07\xaf\x71\xb5\xcd\x8a\ +\x5f\xc8\xf2\xfe\x67\xf3\xdb\x36\x7b\x44\xf5\x6b\x91\x6e\xb6\x30\ +\xf3\xeb\xd3\xd1\x3a\xdd\x15\xcb\xdb\xef\xf9\x98\xd1\x9f\xc4\x78\ +\xa7\x85\x57\x78\x16\x4c\x24\x4e\x38\x23\xdf\x36\xc3\x67\x90\x92\ +\x10\x3a\x11\x46\xb1\xf6\x0c\x67\x90\xaf\xb1\x22\xb1\xde\xca\x96\ +\xdf\xc5\x20\xed\x62\x90\xb6\x80\xe6\xa9\x44\x2a\xcd\xa1\x1b\x8d\ +\x48\x0f\x35\xbc\x95\xa0\xf6\x18\xc3\xda\x88\x81\xca\xc4\xbe\x63\ +\xdd\x06\xad\x24\xfd\x3c\xb0\x92\x83\x26\x79\xaf\xed\xed\x2c\xe7\ +\x62\x71\xfc\x72\x6c\xd0\x26\x3f\x63\x7c\xff\x1c\xf0\x99\x6f\xe0\ +\x83\x1c\x2c\xe3\xcf\x42\xcf\x32\xf9\x7a\xc0\xb3\x4c\x7f\xd5\xb0\ +\x73\xdf\x60\x17\x60\xe7\x9e\x87\x1d\x67\xaf\x08\x3b\xfe\xe7\x5a\ +\xbb\x9e\x3c\x9f\x16\xfd\xf0\x31\x0d\x1f\xe9\xf0\xf1\xbf\x10\x53\ +\x87\x01\x77\x00\xfd\x56\xc8\x8f\x51\xa3\x7d\x1a\xf9\x51\xe1\x9b\ +\xeb\xd8\x97\xaf\x26\x7c\x3b\x58\xef\x9c\x51\x31\x8b\xf7\x26\x7a\ +\x8d\x3a\x38\x63\x62\x1d\xdb\x67\xf2\xb9\x01\x35\x61\x86\xfb\xd9\ +\xe3\x4c\xed\x79\x05\x74\xc6\xc5\xb6\x73\xea\xc3\x39\xdd\xc0\x8a\ +\xd2\xfa\xd9\xe2\x6c\xef\x8a\x7b\xb4\xf0\x60\x89\x49\x6b\x9f\x95\ +\x16\x58\x38\x5e\x52\x8b\x45\x9a\x0e\xe4\xb4\xcf\x4b\x4a\xba\x21\ +\x23\xf7\x8c\x94\x16\xe9\x62\x21\x3e\x9f\x94\x02\xae\x0e\x43\xd5\ +\x6b\x63\xea\x4f\x46\xd4\x0b\xc2\x89\x50\x92\xd9\x2f\x74\x25\x25\ +\x3f\xd2\x26\xdf\x72\xb8\x19\x93\x18\xc7\x1d\x6f\x05\x73\x57\xb6\ +\x0a\x8b\x3f\xad\xf3\xb9\x15\x70\x28\x26\xb1\xd4\xda\xa1\x15\x5d\ +\xda\xa3\x0d\x10\x6d\x09\x10\x38\xbc\xf2\xc3\x98\x3d\x63\xfe\x05\ +\x75\x26\x24\x4d\xc7\x54\x9a\x94\x59\x2c\x5e\x54\x69\xc2\xee\x5e\ +\x3f\xee\x14\x56\x3e\xe1\x77\x85\xe2\xc7\x02\x65\x7f\x84\xc0\x12\ +\xee\xa5\x75\x56\x57\x91\x82\x60\x5e\x49\xed\xc4\x38\x56\x88\x33\ +\xbc\x16\x8e\x8f\x63\xce\x29\xe4\xe0\xca\x3e\x08\x44\x31\x2e\xd1\ +\xde\xb7\xdc\x50\xd4\xa2\x35\x22\x0c\x44\x2d\x6d\x35\x60\x31\x48\ +\xbb\x18\xa4\xa5\xc0\xc9\x21\x42\xf1\xd2\xf8\x67\xf1\xf8\x9c\x8c\ +\x07\x2c\x1b\x89\xf6\x98\x42\xe5\x40\x48\x7a\x28\x5c\xb1\x96\x3e\ +\xb2\x2c\x3a\x10\x93\x1e\x0a\x56\xac\x66\x5f\xdf\xa6\x49\x1c\xd4\ +\x13\xe2\x16\xaa\x13\x9e\xbd\x14\xaa\x71\x19\xcd\xe2\x97\x36\xda\ +\x24\x0e\x9e\x73\xcc\xa5\x52\x89\x10\xdc\xbc\xed\x19\x45\x48\x5e\ +\xc1\x2c\x6a\xd7\x33\x8a\xc6\xf2\x84\x73\xd6\xa9\x53\x91\x51\x14\ +\x9e\x41\x09\x54\xc7\xe7\x93\x51\x6c\x69\x3f\x07\x08\xfd\x31\x20\ +\x74\xcc\x7d\x7c\x6d\x1e\x6b\x1d\x07\xc2\xa1\xd5\x8e\x00\xa1\xff\ +\x22\x41\x68\x3f\x33\x08\xad\xf9\xc2\x41\xf8\x22\xe9\xf9\xcf\x2b\ +\x3d\xc5\xdc\x5f\x59\x7a\x5a\x3f\x2d\x3d\xf9\xc9\xa4\x87\x3d\x6a\ +\xce\x3d\x04\x53\x39\xeb\xda\x75\xc7\x92\xf9\xc4\x32\xcf\x2c\x44\ +\xcb\x10\x10\x32\xaf\xf5\x43\x71\x4a\x91\x48\x6d\x45\x4f\x9c\x96\ +\x93\x88\x04\xef\x87\x89\xc2\x49\x9f\x30\xcb\x65\x4f\x9c\x2d\xed\ +\xe7\xb0\x88\xfa\x98\x28\xf2\x85\x6e\x59\xdb\xd7\x74\xcb\xda\x7f\ +\x71\x16\x51\x19\xfb\xe9\x50\x19\xf7\x43\xc8\xce\xab\xb1\x88\x27\ +\x2d\x73\x76\xcc\x8d\x85\xb2\x1b\xe5\xff\xa2\x3a\xfe\x9c\x34\x3f\ +\xdd\xc7\x87\xc3\xa4\xc9\x13\x23\xb5\xf8\x5a\xa5\xf9\x09\xfd\xcd\ +\x21\xd2\xd4\x3a\x51\x12\x5e\xee\x2f\x29\xcd\x90\x81\xbb\xa7\xe4\ +\x29\x25\x8f\x8f\xfd\x4a\xd1\x2d\x2c\x98\x9e\x00\x9e\x2e\x2c\xb8\ +\x9e\x00\x5e\x5a\x58\xd8\xfb\x4d\xe1\x73\x5c\x60\x89\xbd\x3a\xd2\ +\x2b\xbc\xf0\x0e\x4b\xfc\x74\xa4\x7c\x32\xa1\xab\x3f\xe1\xa9\xa9\ +\x1b\xd3\xb5\xa1\xf9\xf5\x32\xbb\x79\xd3\xcc\x76\x96\x36\xc7\x76\ +\x99\x9e\x67\x81\x39\x80\xa4\xf4\x59\x55\xc7\x59\x5e\xcc\xb3\xa2\ +\xee\x32\xe1\xa7\xd7\x55\xf1\x5f\xde\x88\x7b\xd3\xc7\x24\xcd\xda\ +\xf4\xb3\xe1\xfe\xed\x45\x3a\xcf\x6f\xa0\x07\x0f\x3b\xef\xf3\x7c\ +\x4d\xb3\x7a\xa5\xb4\x6a\xbe\x63\xb4\x78\xbf\x05\x48\x6c\x42\x21\ +\x66\x13\x6c\xb4\x9d\x58\x2f\xa6\x98\x83\x69\xfd\x78\xe4\x55\x51\ +\x40\x50\xf1\x2a\xbd\xcb\xb0\xa9\xf0\xab\x16\xf4\xf6\x22\xbf\x39\ +\x2f\x48\x38\xbb\xe2\x2a\x7b\x38\x72\x9e\xcf\xae\xe8\xb6\x5d\x7c\ +\x55\x6a\x40\x75\xc7\xab\x43\x41\x63\xe3\xb3\xb3\xfc\x76\x78\x82\ +\x9b\xe5\x06\x9b\x8d\xab\x5b\x63\xbc\x2d\xea\x3d\xa4\xa8\xef\x91\ +\x59\x6b\xf7\x50\xdc\xb6\x70\x7c\xd8\x75\xb7\xbf\x6b\x9d\xde\x2e\ +\xd7\xcb\xfb\x6c\xde\x62\xab\x21\xd9\x6e\xd2\xcb\xf8\x7c\x95\x9f\ +\xa5\xab\xd3\xd1\x22\x5d\x6d\x1f\xb1\x1f\x28\x36\xf9\x3c\xdb\x0e\ +\x6f\x2f\x3f\xfb\x03\x26\xa8\x47\x51\xc2\xf4\x64\x9d\xed\xd2\x79\ +\xba\x4b\x5b\xf0\xd5\x2d\xd2\xf0\xba\xaa\x7e\x52\xcc\x17\xd3\xff\ +\xfe\xf8\x53\xa3\x48\xb3\xd9\xf4\x7f\x79\xf1\xa1\xd5\x01\x22\x48\ +\xcf\xf2\x2b\x48\xa6\xd1\x6f\xba\xf6\x36\x9b\x92\xe9\x4e\x77\xef\ +\x97\x6b\x40\x8a\xae\x14\xfe\xfd\x76\xbd\x82\x1a\x34\x1d\x3d\x62\ +\xfa\x86\xd2\x4e\x5a\x4e\x5b\x64\xe5\x95\xc1\xc1\x5b\x96\xf3\xd9\ +\x7a\x49\x83\x26\xbf\xec\x96\xab\xd5\xcf\xb4\x48\x47\xe1\xab\x49\ +\x97\xbb\x55\xf6\x3e\xac\x59\x3e\xd6\xbb\x98\x54\xdb\xa8\xf5\xb5\ +\xb3\xcb\x93\x49\x2d\x86\xf0\x76\xde\x8a\xa7\x87\xca\x46\xc0\xab\ +\xf4\x2c\xc3\xe1\xfc\x8b\x3a\xa3\x47\xbd\xe7\x45\x7e\x75\xb9\x86\ +\xf0\xab\xe1\xb5\x58\x2f\xd3\xdd\x45\xcd\x6a\x65\x8d\x9a\x58\x34\ +\xd1\x46\xe8\x77\x4d\x85\x95\x7e\xde\x2d\xb0\xc7\xde\x4b\xc7\x48\ +\x6d\x77\x45\xfe\x21\x9b\x6e\xf2\x4d\x56\x3d\x97\x68\x9e\x8a\x77\ +\xeb\xb4\xf8\x90\x15\x65\xd7\xf5\x72\xbb\x3c\x5b\xae\x68\x4c\x78\ +\x5c\x65\xef\xe6\xcb\xed\x25\xd8\x9a\x2e\x37\x64\xb0\xde\xe5\xd7\ +\x59\xb1\x58\xe5\x37\x4d\x7f\xb6\x49\xf1\x2b\x3e\x4b\x67\x1f\x68\ +\x23\x9b\xf9\x34\x9d\x41\xdd\xae\x56\xe9\xae\x75\x2e\x04\x9c\x48\ +\xb8\x44\x3a\x2f\x98\x1e\xdb\x84\xae\x48\x22\x38\x8c\x66\x51\x2c\ +\xa1\xee\xd6\x78\xa4\x89\x51\xac\x13\x6c\x6b\x2c\x12\xad\x9c\xd6\ +\xce\xd4\x0d\xf8\x17\xfb\x55\xde\x44\x6c\x0c\x7b\xe5\x34\xd2\x7b\ +\xfa\xb6\xc7\xb9\x74\x02\xe4\xcc\x5a\xcf\x15\x5a\x9c\x92\x96\xc6\ +\xc3\xe3\xeb\x68\x15\xc5\x5c\x26\x9a\x9e\x91\xaf\x27\x5c\x68\x5a\ +\x0e\x44\xda\x63\x6e\x4d\xa1\x81\x96\x42\x1a\x07\xba\xc4\x21\x31\ +\x55\x32\x34\x86\x49\xa2\x18\xb3\x18\x84\x0d\xac\xdb\x36\xc8\x2b\ +\xb7\xc8\xc5\x3a\xac\x62\x1d\x36\xae\x29\xa3\x9a\xa0\xea\xe9\x51\ +\x25\x02\x46\x50\x19\xcc\x06\x56\x90\xbf\x39\x47\x6b\x31\xee\x1d\ +\xa7\xcd\xd8\xb0\x34\x23\xd2\x55\xc4\x55\xa2\x2a\x7e\xf0\x68\xea\ +\xcd\x30\x0b\xb1\x20\x2f\x94\xc6\x48\x26\x42\x4b\xd8\x30\x4b\xac\ +\xb1\xd6\xf9\xb6\x05\x66\x55\x1f\xce\x5b\x45\x03\xd6\xca\xd6\xb8\ +\xd9\x68\xf5\x5e\x6f\x94\xa4\x88\x1c\xb5\x5a\xc9\x95\x09\x69\xc2\ +\x90\x03\x69\x6a\x41\xf2\x48\xdb\xe0\x09\xed\xc1\x06\xd8\x8e\x63\ +\x9b\xd0\x4e\xb0\x01\x9e\x28\xe5\x9c\x27\x6e\x35\xd2\x55\x89\x65\ +\x99\xf4\x56\x80\x59\xe1\x8d\xf1\x36\x52\x49\x60\x5d\x4b\x3a\x3e\ +\x97\x30\x86\x9c\x97\x30\x00\x11\x71\x1d\x71\x9d\x48\xcb\x8c\x1a\ +\xc7\x90\x8e\x17\x04\x02\x6e\x4a\x39\x61\x4d\xb0\x1c\x55\xa4\xe3\ +\xb8\x1c\x4b\x98\xaa\x48\x41\x80\x28\x90\x71\xe7\xc0\x28\xd1\xa2\ +\xc1\x60\x04\xfa\x19\xb8\xe1\x61\x67\x38\x12\x67\x23\x30\xec\xbd\ +\x72\x8a\x3e\xab\x0b\xc8\x80\x63\x00\x1f\x57\x00\x21\x9c\x51\x38\ +\x69\x83\x50\x4a\x46\x67\x51\xc0\x56\x85\x1d\xed\xb1\xb7\x06\x9d\ +\x0d\xd8\xda\x96\x7a\x26\x48\xb3\x39\x9b\x4a\xe0\x3c\x48\xba\x42\ +\x7f\xdc\xca\xbe\x6a\xb9\x8f\xd6\x44\x29\x1c\x56\x1d\x73\x88\x51\ +\x79\xfc\x98\xc0\x80\x65\xd8\x1c\x41\x83\x23\x20\x53\x24\x6b\x53\ +\xee\xa1\xe4\xb1\x1e\x55\xbf\xd3\x00\xcd\x30\x00\x94\x08\x98\x45\ +\x08\x9d\xa5\x93\x4a\x44\xe1\xb9\x54\x29\x1d\x8e\x0e\x20\x71\x95\ +\x3e\xd1\xd9\x30\x21\x71\x26\xde\x40\x6a\x82\xd8\x31\x4c\x7b\x37\ +\x56\x89\x84\x1e\x33\xd1\xa8\xd2\xd8\x12\x22\x8c\x67\xda\x62\x02\ +\x86\x5e\x49\x6c\x81\x3b\x9c\xa9\x4f\x1c\x43\x50\x20\x71\xe2\xe5\ +\x66\x5a\x2d\x36\x61\xd7\xa6\x06\x0d\xe6\xf0\x0a\x80\x23\xa6\x2c\ +\xc7\xda\x92\x56\xe0\x4c\x41\x93\xc0\x0e\xf1\x05\x31\x56\xa2\x0e\ +\x6f\xb4\x21\xa3\xac\x24\xb5\x05\x77\xca\x72\x4b\x98\x53\x9e\x3b\ +\x16\x88\x69\x7e\x9e\x04\x31\x94\x56\xa3\x42\xad\xac\x74\x86\xc4\ +\xe9\x8d\xd7\x56\x05\x70\x73\xe6\x05\x07\xe7\xba\xd2\x0c\x09\x5b\ +\x66\x74\xd3\x20\x93\xea\x30\xc1\x9f\xb3\x9c\x07\xb5\xe4\x4a\x43\ +\xfc\x41\x13\xa4\xd3\x4c\x51\x5b\x7d\xfa\x41\x49\x48\xc7\x65\x52\ +\xaf\x5b\x9e\xc9\x7d\xff\x9b\x10\xbc\xb4\x52\xa2\xfb\x55\xbf\x93\ +\x47\x6c\x36\xe8\xce\x8b\x18\x71\xd2\x75\xba\xbb\x2a\xb2\xee\xb5\ +\x99\x13\x1a\xfb\xc0\x99\x0c\x79\x8f\xaa\xf0\x31\xec\x3d\x6a\xd2\ +\x07\x0e\xa4\x7a\x25\xf7\x00\x56\xa6\x67\x57\xbb\x5d\xb7\xed\x8f\ +\x7c\xb9\x99\xc2\x0f\x67\x45\xdd\x1a\x5e\x56\x08\x68\x76\x53\x55\ +\xb7\x3d\x5c\x2c\x9e\xa7\x08\x31\x8b\x02\x9e\xa7\xeb\xb4\xa8\xb5\ +\x8c\xb2\xa7\xec\x55\x3c\x57\x57\xee\x4d\x63\x15\x08\x4a\x95\x68\ +\x27\xbd\x6a\xd3\xa5\x3a\xfe\x23\xb7\x03\xb3\x63\xda\x1e\xfa\x1e\ +\x46\x19\x13\xc2\xe2\x4e\x76\x45\xe1\x2e\x19\x21\x0f\x10\x37\xad\ +\xbb\x81\x2a\xa0\xf1\x9e\xc6\x0a\xb2\x94\x9c\xbe\xd6\xf9\x0a\xfe\ +\xd5\x73\x97\x62\xcc\xde\xb6\xe7\xde\x0d\x22\xc2\x45\x1a\xbc\x2b\ +\x21\x75\x27\x3f\xac\xe0\xd0\x03\xc0\x17\x70\xe2\x7d\x0c\x76\x43\ +\x89\x7f\x47\x9a\xa2\x00\x27\xb8\x1f\x4b\x11\x4a\x9f\xe4\xcc\xa8\ +\xa4\x2c\x60\xa7\xc7\x9a\xac\x93\x35\xcc\xc0\x96\x08\x0d\x1b\xe6\ +\xe4\x58\x42\xef\x2c\x53\xc2\x44\xc2\x27\x54\x8f\xb0\x06\x61\x08\ +\xdc\xbf\x50\xc6\x44\xd4\x6b\x1c\xc2\x88\x31\x15\x55\xa1\xde\x2e\ +\xf2\x70\x1c\xd6\x69\xc3\x69\xa8\x11\x1c\x87\x14\x96\x50\x1a\xa7\ +\x35\xd6\x90\x3d\x0c\x30\xdc\x89\x72\x89\x86\xb7\xd3\x63\x49\xce\ +\x8e\xc3\xd0\xde\x1f\xac\x9d\xcd\x09\x34\xd9\x1e\xa2\x40\x0a\x58\ +\x11\x86\xcf\xea\x9f\xf6\x2c\xcf\xbb\x07\x79\xae\x64\xe7\xa3\xfe\ +\x63\xcc\x90\x84\x98\x54\xe4\x5c\xc7\x65\xd4\x54\xbe\xc1\x79\x78\ +\xc8\xc6\x41\x76\xf0\x89\xf0\x51\x5e\x08\xf7\xb6\x4d\xbb\xbb\x80\ +\x19\xc6\x22\x07\xe4\x60\x77\x03\x00\x3d\xfc\xbd\x80\xdd\x1f\xf7\ +\x1e\x1b\x0a\x0b\xfb\x6b\x24\x97\x66\xec\x60\xe7\x1d\x4e\x4a\xb5\ +\x25\x97\x2a\x2c\x34\xba\x2c\x19\xd8\x71\x53\x3c\x88\x52\x32\x85\ +\x1a\x09\xa4\x0e\xa1\x5b\xf9\x14\xc1\x33\x45\xe4\x18\x2d\x8e\x86\ +\x85\x20\x6c\x3f\x55\x87\xe8\xbe\xb3\x62\x23\xe9\x82\x52\xdf\x7a\ +\xcc\x20\xc1\xed\x33\x04\x94\xac\x3e\x2e\x8d\x74\x09\x30\x03\x80\ +\x1a\xf6\xd6\xbd\x9a\xd8\xaa\xa1\xed\x8d\xdb\x6b\x95\x91\xd1\x7c\ +\xff\xb0\x06\x24\x25\x7f\xfb\xd0\x4c\x87\xd7\xe2\x6a\x95\x4d\xb3\ +\xeb\x0c\x50\x9a\xef\x0f\xfb\xe5\xab\x18\xcf\x47\xf7\xdf\xd2\xa2\ +\x03\xe7\xc9\xf9\x50\xa2\xf3\x78\xc0\x01\x6e\x4b\x2e\x1c\x5f\xf8\ +\x83\xe5\x31\x68\xd6\x24\xf4\x42\xd3\x71\xf3\x97\x58\xad\xd7\xf2\ +\x49\x25\x80\x3a\xff\x23\x4b\x0f\x76\x1c\xfa\xae\x8d\xee\x54\x27\ +\x1f\xc1\x16\x96\xb2\x73\x4f\xb5\x07\x7b\x9b\x20\x56\xb1\xa6\x73\ +\xd5\xb3\xa7\x36\x8f\xbb\x83\x1e\x73\x18\x42\x8e\xb8\x96\x8f\x9b\ +\xe9\xa1\xc7\x0d\xf1\xb8\x79\xaa\xf5\x18\x69\x0c\xd2\x1f\x2d\x94\ +\x85\x92\xee\xa7\xeb\x91\xdd\x3f\xe9\x25\xad\x56\x06\x09\x95\xa8\ +\xbe\x95\x35\xaf\xe4\x29\x2d\x93\x8e\x87\x6c\x11\xd1\x38\xcc\xba\ +\xdf\xe3\x24\xbf\x01\xf0\x38\x00\xc6\x03\x28\xf9\x06\xc1\x47\x10\ +\x14\x54\xb2\x41\x7a\x23\x11\xdd\x23\x9b\x94\x0a\xff\x7d\x43\xe0\ +\x27\x42\xa0\xfe\x06\xc1\xc3\x20\x48\x79\x2b\x97\x63\x41\x71\xb1\ +\x73\xd6\xee\x43\xe0\x40\x46\xf0\x22\x60\x21\x3d\x37\x56\x22\x4a\ +\xe7\x5f\x77\xb6\x18\x20\x80\x8c\x00\xe1\x99\x10\x63\x28\xba\xd5\ +\x5c\x6b\x51\x96\x39\xb5\x45\x42\x48\xd5\xb1\x2c\x36\x54\xd4\x50\ +\x4e\x30\x13\xca\x48\x4c\x82\x8e\x9a\xb4\xe6\x74\xf8\x78\xe0\x9c\ +\x5b\x17\xad\xa2\x70\xe7\x03\x81\x3b\x73\x78\xc4\xb1\x31\x8d\xac\ +\x24\x54\x34\xa4\xd2\x5e\x53\xe9\x10\x39\x0b\xcc\x89\x42\x33\x72\ +\x49\x47\x45\x13\x19\x9a\xe3\xa6\x3d\xa6\x3a\x9b\x50\x04\x09\x6a\ +\x57\x09\x5c\x21\xa2\xfe\x50\xb1\xa3\xeb\x74\x68\x9e\x55\x85\x42\ +\x00\x97\x58\xf5\xdc\xeb\xb2\x70\xe3\x75\x28\x49\x80\x5d\xcb\xac\ +\x54\x35\x97\x5c\x34\x6d\x65\x15\x8a\xa6\xd2\x94\x90\xc1\xbf\x1a\ +\x2a\xab\x50\x75\xcf\x59\xa5\x24\x4d\x2f\x13\xe9\xa1\x17\x54\xba\ +\xd3\xc8\x44\x1c\x15\x18\x95\xd2\x4e\xd3\x00\xc5\x90\x36\x51\xfd\ +\x83\xe6\x40\x0a\x15\xb8\x04\x13\x42\x52\x41\x0f\xcb\xe0\x17\xe3\ +\xaa\x64\x9e\x98\x63\x4e\x50\xe9\x98\x85\x5a\x9a\x86\x96\x78\xac\ +\x85\x7c\x0f\xa9\x1b\x11\x50\x71\x4d\x86\x15\x90\xf2\x11\xa3\x4d\ +\xd3\xfd\x23\x03\x22\xa4\x3b\xbc\x9a\xf2\x54\xbe\xb6\x6d\x12\xb6\ +\xd9\x76\xbb\xad\x7e\xd5\xdf\x51\x28\xd4\x3d\xa1\xef\x1b\xef\xdf\ +\xfc\x1f\x48\xa4\xe7\x17\ \x00\x00\x09\x90\ \x00\ \x00\x23\x6d\x78\x9c\xed\x59\x5b\x8f\xdb\xd6\x11\x7e\xf7\xaf\x50\ @@ -36239,179 +36225,181 @@ qt_resource_data = "\ \x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\ \x74\x32\x39\x39\x33\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ \x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0a\xa7\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ -\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\ -\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\x65\ -\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\x22\ -\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\ -\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\ -\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\ -\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\ -\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\ -\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\ -\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ -\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\ -\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\ -\x78\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\ -\x70\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x34\x30\ -\x35\x34\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x33\x32\x22\x0a\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\ -\x6f\x6e\x3d\x22\x30\x2e\x34\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x66\ -\x69\x6e\x69\x73\x68\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x6f\x75\x74\x70\x75\x74\x5f\x65\x78\ -\x74\x65\x6e\x73\x69\x6f\x6e\x3d\x22\x6f\x72\x67\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x75\x74\x70\x75\x74\x2e\x73\x76\x67\ -\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x22\x3e\x0a\x20\x20\x3c\x64\ -\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ -\x73\x34\x30\x35\x36\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ -\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ -\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ -\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\ -\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\x30\x36\ -\x32\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ -\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ -\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ -\x6d\x3d\x22\x32\x2e\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x39\x2e\x30\x33\x33\ -\x31\x37\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x79\x3d\x22\x38\x2e\x34\x31\x36\x38\x34\x33\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\ -\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\ -\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\ -\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ -\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x36\x38\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x32\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x32\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x34\x30\x35\x39\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ -\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ -\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ -\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ -\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ -\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x30\x30\x64\x30\x30\x30\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x37\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ -\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ -\x32\x2e\x33\x37\x35\x34\x33\x36\x37\x2c\x33\x35\x2e\x32\x31\x38\ -\x32\x33\x35\x20\x43\x20\x31\x32\x2e\x36\x38\x38\x31\x37\x37\x2c\ -\x34\x32\x2e\x34\x38\x34\x38\x36\x31\x20\x31\x33\x2e\x39\x30\x35\ -\x34\x38\x33\x2c\x35\x37\x2e\x31\x36\x32\x33\x31\x37\x20\x31\x33\ -\x2e\x39\x30\x35\x34\x38\x33\x2c\x35\x37\x2e\x31\x36\x32\x33\x31\ -\x37\x20\x4c\x20\x32\x37\x2e\x37\x36\x30\x36\x37\x38\x2c\x35\x37\ -\x2e\x31\x36\x32\x33\x31\x37\x20\x43\x20\x32\x37\x2e\x37\x36\x30\ -\x36\x37\x38\x2c\x35\x37\x2e\x31\x36\x32\x33\x31\x37\x20\x33\x38\ -\x2e\x32\x37\x38\x36\x2c\x32\x33\x2e\x30\x32\x37\x38\x36\x37\x20\ -\x35\x31\x2e\x31\x37\x36\x34\x30\x32\x2c\x31\x32\x2e\x39\x38\x35\ -\x37\x38\x34\x20\x43\x20\x36\x34\x2e\x30\x37\x34\x31\x38\x35\x2c\ -\x32\x2e\x39\x34\x33\x36\x39\x30\x31\x20\x36\x31\x2e\x33\x39\x33\ -\x34\x32\x34\x2c\x34\x2e\x37\x38\x39\x31\x38\x32\x34\x20\x36\x31\ -\x2e\x33\x39\x33\x34\x32\x34\x2c\x34\x2e\x37\x38\x39\x31\x38\x32\ -\x34\x20\x43\x20\x36\x31\x2e\x33\x39\x33\x34\x32\x34\x2c\x34\x2e\ -\x37\x38\x39\x31\x38\x32\x34\x20\x34\x31\x2e\x39\x35\x37\x38\x33\ -\x37\x2c\x38\x2e\x30\x34\x30\x34\x31\x39\x31\x20\x33\x30\x2e\x34\ -\x30\x30\x34\x33\x35\x2c\x32\x32\x2e\x33\x34\x33\x30\x31\x37\x20\ -\x43\x20\x31\x38\x2e\x38\x34\x33\x30\x31\x32\x2c\x33\x36\x2e\x36\ -\x34\x35\x35\x39\x35\x20\x31\x39\x2e\x35\x31\x33\x32\x31\x33\x2c\ -\x34\x31\x2e\x39\x35\x31\x34\x30\x33\x20\x31\x39\x2e\x35\x31\x33\ -\x32\x31\x33\x2c\x34\x31\x2e\x39\x35\x31\x34\x30\x33\x20\x43\x20\ -\x31\x39\x2e\x35\x31\x33\x32\x31\x33\x2c\x34\x31\x2e\x39\x35\x31\ -\x34\x30\x33\x20\x31\x37\x2e\x32\x32\x39\x30\x38\x38\x2c\x33\x38\ -\x2e\x31\x38\x31\x31\x30\x32\x20\x31\x30\x2e\x39\x35\x31\x31\x35\ -\x39\x2c\x33\x36\x2e\x30\x39\x37\x37\x32\x32\x20\x43\x20\x34\x2e\ -\x36\x37\x33\x32\x32\x39\x32\x2c\x33\x34\x2e\x30\x31\x34\x33\x32\ -\x32\x20\x32\x2e\x35\x35\x33\x32\x34\x32\x39\x2c\x33\x35\x2e\x31\ -\x36\x37\x37\x36\x35\x20\x32\x2e\x33\x37\x35\x34\x33\x36\x37\x2c\ -\x33\x35\x2e\x32\x31\x38\x32\x33\x35\x20\x7a\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x38\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\ -\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\ -\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\ -\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x66\x69\x6e\x69\x73\x68\x2e\ -\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x34\x2e\x36\x30\x39\x32\x30\x34\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ -\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x34\x2e\x36\x30\x39\x32\ -\x30\x34\x38\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ -\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0a\xc1\ +\x00\ +\x00\x2f\x10\x78\x9c\xed\x59\x59\x8f\xdb\x46\x12\x7e\x9f\x5f\xc1\ +\x95\x5f\x62\xac\x48\xf5\xc1\x3e\x28\xcf\x38\x0f\x31\xb2\x08\x90\ +\xc5\x02\x1b\x1b\xfb\x18\x50\x22\x35\xc3\x98\x22\x05\x92\x73\xf9\ +\xd7\xef\x57\xcd\x43\x94\x44\x79\xc6\x47\x1c\x20\xb0\xc6\x9e\x21\ +\xab\xaa\xbb\x8e\xfe\xaa\xba\xba\x75\xf9\xe3\xc3\x36\xf7\xee\xd2\ +\xaa\xce\xca\xe2\x6a\xc6\x03\x36\xf3\xd2\x62\x5d\x26\x59\x71\x7d\ +\x35\x7b\xf7\xf6\x67\xdf\xce\xbc\xba\x89\x8b\x24\xce\xcb\x22\xbd\ +\x9a\x15\xe5\xec\xc7\xd7\x17\x97\xff\xf0\x7d\xef\xa7\x2a\x8d\x9b\ +\x34\xf1\xee\xb3\xe6\xc6\xfb\xa5\x78\x5f\xaf\xe3\x5d\xea\xfd\x70\ +\xd3\x34\xbb\xe5\x62\x71\x7f\x7f\x1f\x64\x1d\x31\x28\xab\xeb\xc5\ +\x4b\xcf\xf7\x5f\x5f\x5c\x5c\xd6\x77\xd7\x17\x9e\xe7\x41\x6f\x51\ +\x2f\x93\xf5\xd5\xac\x1b\xb0\xbb\xad\x72\x27\x98\xac\x17\x69\x9e\ +\x6e\xd3\xa2\xa9\x17\x3c\xe0\x8b\xd9\x5e\x7c\xbd\x17\x5f\x93\xf6\ +\xec\x2e\x5d\x97\xdb\x6d\x59\xd4\x6e\x64\x51\xbf\x18\x09\x57\xc9\ +\x66\x90\x26\x6b\xee\xa5\x13\xe2\x51\x14\x2d\x98\x58\x08\xe1\x43\ +\xc2\xaf\x1f\x8b\x26\x7e\xf0\x0f\x87\xc2\xc6\xa9\xa1\x82\x31\xb6\ +\x00\x6f\x2f\xf9\x3c\xa9\xe5\x43\x8e\x50\x9c\x35\xc6\x71\xc7\xda\ +\x11\xfe\x1d\xfe\x0f\x03\x7a\x42\x50\x97\xb7\xd5\x3a\xdd\x60\x64\ +\x1a\x14\x69\xb3\x78\xf3\xf6\xcd\xc0\xf4\x59\x90\x34\xc9\x68\x9a\ +\x3e\xfa\x07\x7a\x0f\x96\xa4\x88\xb7\x69\xbd\x8b\xd7\x69\xbd\xe8\ +\xe9\x6e\xfc\x7d\x96\x34\x37\x57\x33\x1d\xee\x1e\xdc\xfb\x4d\x9a\ +\x5d\xdf\x34\x23\x42\x96\x5c\xcd\xe0\xa1\xd4\x5c\xb8\xf7\x11\x80\ +\x78\x2b\xd0\x4d\xb7\x1c\x38\x2c\x08\x6d\x20\x03\xee\x55\x91\xb5\ +\xda\x09\xf5\x96\x2f\x93\x72\x4d\xa6\x5c\xcd\xde\x54\xf1\xa6\xf9\ +\xfd\xe7\xac\xc8\xea\x9b\x80\x42\xf8\x1a\x72\x97\x49\xba\xa9\x49\ +\xbe\xd5\x4b\x6f\x50\x1c\x3a\x1e\xb8\x08\x5e\x1a\x57\xff\xaa\xe2\ +\x24\x03\x64\x5a\xb9\x56\xf2\x90\x13\x0a\xcb\xba\x31\x18\x55\x37\ +\xe5\xae\x97\x85\x25\xcd\x63\x0e\xf5\x44\xf4\xd7\x65\x5e\x56\xcb\ +\x17\x8c\x99\x15\x8b\x5e\x39\x52\x89\x18\x65\xcd\xe3\x92\xbf\x9a\ +\xed\xc7\x94\x9b\x4d\x9d\x22\x28\x6c\x44\x73\x71\xc1\x08\xe8\x12\ +\x33\x6f\xf1\x7c\x6d\xa1\xde\x6c\x18\x7b\x86\x36\x3e\xad\x2d\x1c\ +\xb4\x5d\x2e\x0e\xdd\xee\xa8\xc3\x82\xec\xb0\x20\xbb\x74\x4d\xa9\ +\xd3\xcf\x34\xac\x43\xf3\x48\x68\x39\x14\x95\xc9\xa0\x71\xbf\xa8\ +\xbb\xdf\x1f\xe0\xb8\xb7\xf4\xa4\xc0\x2f\x3e\x29\xf1\xd8\x4a\x70\ +\x64\x03\xfe\xb0\x49\x99\x0f\x84\xa9\x8f\x4c\xd3\x59\xe0\x97\x55\ +\x76\x9d\x01\x44\x4e\x4e\xf0\x40\xba\xcf\xe1\x18\x04\x63\xe4\x9b\ +\xd4\x82\xed\x63\xf2\x31\xef\x8f\x07\x2a\x6b\x9f\x36\x84\x05\x8a\ +\x9c\xea\x0c\x39\x36\xe5\xd0\x43\xee\x24\xd5\x17\x05\xaa\x0b\xf7\ +\xf1\x34\x4f\xad\xdc\x67\x05\x40\x47\xe2\xef\x17\x00\xca\x86\x38\ +\x3f\xa9\x12\xbd\x3c\xd2\x30\x87\xfb\x57\xb3\x38\xbf\x8f\x1f\xeb\ +\x61\x7e\x57\x9a\x97\x37\x55\x8a\xad\xe4\xc5\x61\x62\x49\x1e\x86\ +\xbe\x3e\xc0\xdf\xa1\x12\xa9\x91\x96\x3d\xfb\xba\x23\xbe\x2b\xb2\ +\x06\xbb\xc6\x6d\x9d\x56\xbf\x51\xe5\xfd\x4f\xf1\xae\x4e\x4f\xa4\ +\xde\x56\x71\x51\xa3\xcc\x6f\xaf\x66\xdb\xb8\xa9\xb2\x87\x1f\xf8\ +\x9c\xd1\x4f\xa0\x23\xab\x44\x14\xe2\x59\x30\x11\x58\x61\xb5\x7c\ +\x39\x0c\x5f\x23\x4a\x42\xa8\x40\xe8\x90\xed\xd7\x70\x8d\xf8\x6a\ +\x23\x02\x13\x19\xb9\xb7\x77\x33\x29\xbb\x99\x94\xad\x90\x79\x61\ +\x20\x43\xc5\x91\x1b\x43\x48\x9f\x5b\x78\xbb\x40\x9d\x29\x86\x7d\ +\x11\x83\x94\xf6\xa3\x51\x75\x9b\xa8\x92\x1b\xf7\x39\xaa\x92\x93\ +\x25\xf9\x6c\xed\x1d\xa9\xb3\xbe\xf8\x74\x75\x6c\xb2\x26\x3f\x51\ +\x7c\xff\x1a\xf0\xe9\xef\xe0\x43\x1c\x0c\xe3\x4f\x42\xcf\x30\xf9\ +\xed\x80\x67\x98\xfa\x5b\xc3\xce\x7e\x87\x9d\x83\x9d\x7d\x1a\x76\ +\x9c\x7d\x43\xd8\xf1\xbf\xb6\xda\x1d\xc4\xf3\xe3\xa1\x9f\x5e\xa6\ +\xe9\x25\x9d\x5e\xfe\x2f\xc4\xd4\xf3\x80\x3b\x81\x7e\x23\xe4\xe7\ +\xa4\xd1\xb9\x8c\xfc\xac\xf6\xcd\x8e\xea\xcb\xdf\xa6\x7d\x7b\x76\ +\xde\x59\x1d\xfa\xcc\x3f\x7b\xd0\x1b\xd2\xc1\x6a\xed\x2b\xdf\x3c\ +\x71\x9e\x9b\x3a\x17\x6a\x1e\xad\x4f\x4f\x6a\x4f\x27\xa0\xd5\xd6\ +\x37\xa3\x55\x9f\x3e\xd3\x4d\x68\x94\x26\x5a\x6f\x56\x67\x35\x9e\ +\xc9\xc2\x67\x47\x4c\x1a\xf3\x64\xb4\x60\xc2\xa7\x47\x6a\xb3\x89\ +\xe3\x89\x33\xed\xd3\x91\x92\x76\xaa\xc8\x3d\x11\xa5\x4d\xbc\xd9\ +\x88\x3f\x2f\x4a\x0e\x57\xcf\x43\xd5\xb7\xc6\xd4\x5f\x8c\xa8\x2f\ +\x68\x27\xdc\x95\xcc\xf9\xa0\x83\xbd\x4f\x97\x07\x8e\x0d\x44\x07\ +\xda\x72\xcb\xf7\x2e\x3f\xb6\x54\x61\xf0\xb3\xdf\x56\x1e\x04\xb6\ +\x0a\x1d\x18\xa2\x8e\x64\xc5\x94\xec\xc7\x6b\xfd\x53\x05\xe8\x4f\ +\x74\x5e\x4a\xfe\x89\x1b\xd2\xd7\x0e\xd1\x9f\xec\xfc\x28\x53\xa6\ +\xdd\xf7\x4f\x37\xf4\xe7\x07\x40\x7f\x42\x00\xec\x67\x06\x60\xf2\ +\x8e\x11\x6e\x7d\xc3\x5b\x46\x1c\x99\xbf\xe9\x3d\x23\xbc\xfb\x58\ +\x99\xb8\x5c\xd0\xf5\xac\x7b\x1a\xf6\x76\xba\xda\x4d\xee\xb2\xf4\ +\xfe\x62\x98\x6d\x15\x0f\xab\xb6\x8b\xaf\x53\x67\x1c\x30\xd2\xb6\ +\xa0\x1d\x63\x55\x56\x49\x5a\xf5\x2c\xed\x3e\x07\xac\xce\xfe\xf6\ +\x5b\x8b\x8b\x43\x48\xd2\xac\x03\x9f\x4d\xf3\xeb\x9b\x38\x29\xef\ +\xd1\x3e\x1e\x33\x3f\x94\x25\x1a\x46\x19\x58\x1b\x31\x6b\x4e\xd8\ +\xd4\x72\x72\x19\x68\x6d\x23\xa3\x4f\x98\x64\x0f\x0b\x22\xcb\x8c\ +\x3d\x1d\x79\x5b\x55\x08\x94\x9f\xc7\x8f\x29\x9c\x72\x7f\xfa\x40\ +\xd7\x37\xe5\xfd\x75\x45\xc1\x69\xaa\xdb\xf4\x78\x64\x52\xae\x6f\ +\xe9\x1b\x11\xff\xb6\x4d\x80\xee\x1e\x7e\x24\x41\x63\xfd\xd5\xaa\ +\x7c\x98\x9e\xe0\x3e\x2b\xe0\xac\xdf\xdd\xec\xf3\x7d\xed\x39\x96\ +\xe8\xef\xfa\x8d\x31\x67\x24\x1e\xf6\x68\x3c\x66\x3d\x9e\x67\x6d\ +\xe3\x87\x6c\x9b\x7d\x48\x93\x3d\xb6\x06\x91\xba\x88\x77\xfe\x75\ +\x5e\xae\xe2\xfc\x6a\xb6\x89\xf3\xfa\xc4\x7c\x27\x51\x94\x49\x5a\ +\x4f\xbb\x57\xae\xfe\x40\x05\x3a\x90\x68\x61\x7a\xb9\x4d\x9b\x38\ +\x89\x9b\x78\x0f\xbe\x9e\x22\x35\xef\x3b\x9f\xcb\x2a\xd9\x2c\xff\ +\xfb\xe6\xe7\x21\x91\xd6\xeb\xe5\xff\xca\xea\xfd\x3e\x07\x48\x20\ +\x5e\x95\xb7\x88\xcc\x90\xde\xf4\xd5\xc4\x7a\x49\xc7\x8b\xb8\x79\ +\x9d\x6d\x01\x29\xfa\xda\xe7\x9f\x0f\xdb\x1c\x69\x30\x30\x0e\x84\ +\xa9\xcf\xdd\x4f\xda\x4e\x5b\xa5\xed\xd7\x3a\x93\xdf\x84\x25\xeb\ +\x6d\x46\x83\x16\xbf\x35\x59\x9e\xff\x42\x4a\x46\x09\xdf\x4d\x9a\ +\x35\x79\x3a\xaa\x02\x8b\xce\xfa\x3e\x4d\x47\xce\x5d\x2e\x7a\xef\ +\xdd\xdb\xf5\x3e\x2a\x07\x60\x1c\xe2\x9a\xc7\xab\x14\x6b\xf2\x2b\ +\x31\xbd\x13\xee\x75\x55\xde\xee\xb6\x88\x79\x37\xbc\x8f\xe6\x2e\ +\x6e\x6e\x26\x76\x89\xa2\xc0\x1a\x95\x95\x8f\x34\xb8\x8b\x9b\xdb\ +\x2a\x1d\x97\x35\x77\x8c\xc1\xb8\x50\x48\xe5\x8f\xbb\x1a\x5a\x31\ +\x4f\xd8\xc0\x1a\xa9\x98\x98\xdb\x80\x6b\x29\x94\x8d\xbc\xb5\xe7\ +\xe3\xe4\x26\x4d\x28\x15\x0e\x74\xc2\x5a\xae\x8c\xf0\x7c\x15\x30\ +\x2d\xd4\x1c\x07\x45\xce\x15\x5a\xc9\x81\xa2\x02\xfc\xc6\x21\x85\ +\x7b\x6c\x8e\x92\x61\x55\xc8\x0c\x1d\x81\x38\x87\x14\xe4\x99\x31\ +\x11\x0f\x41\xb1\x21\x26\x8d\x40\x89\xa4\x51\xde\xaf\x1e\x87\xb4\ +\xc6\xf1\x46\xcc\x45\x84\xa2\x20\x18\x8b\xbc\x9f\x70\xde\x09\x38\ +\x1d\x22\x43\xa2\xca\x30\x0c\xb5\x17\x05\xdc\xa2\x57\xe6\x86\x48\ +\x28\xed\x8c\x59\xcf\x06\x2c\xc2\x01\xf5\x80\x06\xcb\x65\xc0\x99\ +\xd1\x11\xd7\x73\x46\x06\xb6\x96\x49\xe8\x84\xa4\xe4\x63\x52\xf7\ +\x44\x56\x77\x83\xbc\x56\x0a\xb5\xa9\x65\x7a\x47\xc2\x70\x41\x44\ +\x1c\x47\x6d\x89\xc9\x71\xe4\x8a\x94\xb2\xc6\xcc\x7d\xd4\x41\x58\ +\xcc\xc9\x43\xf8\x17\xe1\xf4\x4b\x24\x1a\x90\x7b\x3c\x0c\x88\x84\ +\xcf\x1c\x8f\x5a\x11\x15\x66\x82\x0f\x51\x8a\xaf\xd4\x5a\xd2\x3b\ +\x17\x24\x07\x02\x4e\xe1\x2a\x1c\x51\x38\x1e\xd4\xa9\x91\xd1\xc8\ +\x46\x27\xd7\xbe\x76\x52\x02\x16\xf6\x0e\xce\xfd\xde\xfb\x3d\xa5\ +\xf3\x87\x0c\x55\xdc\x1a\xee\x2c\x02\x12\xf4\xdc\xc7\xa2\x08\xc9\ +\x14\x51\x04\x58\x8a\x28\x14\x04\x44\x2a\xf7\x4c\xa0\x9c\xba\xb9\ +\x6f\xd0\x0e\x90\xb7\xf0\x86\x07\x61\x68\xad\x25\x6f\x8c\x12\x46\ +\xc2\x08\x26\x23\x23\x04\x6c\x17\x91\x36\x5e\x08\x3a\x4d\x80\x77\ +\x25\xc9\x1b\xeb\x56\x0c\x23\xa0\x0c\x91\xe3\x1e\x57\x81\x34\x4c\ +\x23\x72\x14\x2f\x44\xd9\xe3\x3a\x08\x75\xab\x1e\xe6\x7b\x9d\xe0\ +\xdc\xef\x86\x1a\xaf\x97\xc4\x18\x8c\x0e\x19\x87\x05\x9e\x13\x06\ +\x41\x63\xc8\x20\xea\x7c\xa2\xd1\xc4\x6f\x15\xc1\xd1\x30\x00\xc6\ +\xb8\x46\xa8\x07\x55\x34\xd8\xd9\xe7\xd3\x45\x06\x53\x26\x44\x54\ +\x99\x54\xa1\x88\x60\x80\x08\x19\x10\x3c\x07\x54\x59\x08\xa4\xc2\ +\x29\x4b\x4b\x44\xa3\x1c\xa0\x73\xcf\x87\xda\xc8\x61\x9c\x9a\x25\ +\xd3\xad\x74\x84\x9e\x4b\x4b\x0a\xb5\xe1\xa1\xa0\xe4\xe2\x92\x5b\ +\xa0\xde\x6f\x97\x16\x98\x0d\x09\x2d\x7c\x20\x70\xd8\xa8\x43\x43\ +\x8b\x08\x69\x3c\x71\x43\xc8\x08\x23\x6e\x49\x5a\xf7\xc0\x70\xb6\ +\x22\x8f\x30\xa3\x0a\x0d\x26\x90\x16\x0e\x58\xa1\x68\x55\xa0\x18\ +\xfa\x54\xbb\xa2\x1c\x96\xc2\x05\x82\x1f\xc1\x41\x46\x52\xe8\xe1\ +\x5d\x06\x11\x1b\xe0\x60\x08\x3d\x0e\x7e\x58\x4a\x37\x58\xf1\xd0\ +\x21\x14\xd9\xeb\x06\x13\x28\x08\xd9\xd2\x25\xb4\x33\x5b\x76\x71\ +\x23\xad\x88\xae\xd0\x04\x6c\x1e\x49\x4e\x0b\x17\x5a\x83\xc5\x71\ +\xf6\xd3\x07\x00\x26\xd9\xfd\x7b\x07\xd9\x0e\xb1\xce\x35\xbf\x07\ +\xf9\x88\xd4\x3f\x91\x99\x7d\x96\x7b\x83\xe0\xdc\xdf\x97\x21\xff\ +\x70\x50\x47\xa4\xb2\x82\x22\xe8\x82\x0a\xeb\x8c\x94\x32\xea\x72\ +\x57\x40\x11\x65\x02\x45\x83\x79\x1f\xf6\xd7\x28\x6d\xa3\x37\xdc\ +\xda\x01\x31\xea\xd5\x06\xfb\x05\x35\x98\xf4\x71\x2f\xa3\x86\xaf\ +\x6e\xaa\xf2\x7d\xba\x2c\xca\x62\x74\xc4\x39\xa8\xda\x07\xd5\xf8\ +\x58\x51\x3b\xf5\x70\x61\xe8\xe6\xea\x35\xb5\xaf\x6d\xa3\xb1\x14\ +\xfd\x2b\x75\x8a\xd8\x05\x96\xab\xdb\xa6\x19\xd3\xfe\x28\xb3\x62\ +\x89\x1d\x2e\xad\x7a\xaa\x7b\xc9\xd1\x2a\x34\xcb\xb0\xa7\x1d\x1b\ +\xee\x27\x31\x9a\xb7\xaa\x8a\x1f\x9d\x0b\x47\xde\x8d\x77\x8e\x7f\ +\x7b\x8a\x4a\xbd\x15\x3c\x9a\x4b\x40\x94\x45\x0a\xab\x81\xdd\x44\ +\x08\x41\x05\x50\xa9\x00\x67\x25\xcd\x34\xd2\x04\xc8\x96\xd6\xca\ +\xb9\x04\x94\x0c\x0b\x01\x3c\x2a\xec\x02\x89\xa2\xe7\x06\x0f\x52\ +\x84\x5a\x7b\xc4\xd5\xe8\xee\x0c\x12\x0c\x78\x41\xbe\xa2\xec\xb3\ +\xc8\x58\xa5\x39\x0d\xd5\x82\x53\xd6\x91\x8a\x50\xa1\xf4\xcf\x15\ +\xa0\x86\x55\xb6\x50\x01\xd4\x33\xa1\xd4\x5c\x52\xc9\x22\xa4\xef\ +\x97\xf0\xb9\xdb\xe4\xbe\xab\xc6\xb6\x4b\x8d\x01\xda\x9d\x75\xff\ +\x99\x5e\xcb\xa3\x4b\xb6\xb8\x5a\x1f\xaf\xe7\x70\x18\x19\xb0\xb2\ +\x44\x0b\xf2\xc3\xf1\x99\x0d\x47\xb2\x97\xc7\x48\x72\xaf\xd5\x6d\ +\x9e\x2e\xd3\xbb\x14\x36\x25\x63\x6c\x1d\x82\x41\xbe\xda\xc6\xd5\ +\xfb\xb4\x6a\x59\x77\x59\x9d\xad\xb2\x9c\x66\x71\x8f\x79\xfa\x2a\ +\xc9\xea\x1d\xfa\x88\x65\x56\x90\xe2\x57\xe5\x5d\x5a\x6d\xf2\xf2\ +\x7e\xe0\xa7\x45\x8c\x3f\xfe\x2a\x5e\xbf\xa7\xce\xa3\x48\x96\xf1\ +\x1a\x6d\xf1\x6d\x1e\x37\xe9\x44\x1f\x61\xec\x69\xd4\xa8\x77\x07\ +\x22\xdc\xa9\x57\x4c\xb0\x1f\xa7\x8e\x8a\x03\xbb\x6a\x3b\x7f\x15\ +\xe2\x47\x4d\xb0\x1f\xa7\xd8\xae\x7f\xd1\xaa\x9d\xd4\xcc\x87\xe9\ +\xbd\xd8\x1b\x84\xe7\xc3\x93\xc7\x3c\xec\x29\xa8\x17\x06\xa0\x62\ +\x11\x47\x9e\x9f\x97\x1a\x09\xed\x91\xd4\x9c\xdc\x79\xa3\xa2\x84\ +\xda\xa0\x3f\xb2\xae\xc6\x1a\x26\x25\x5a\x85\xfd\xd3\x88\x4f\xa1\ +\xc1\xa9\x12\xd5\xc7\x44\xa8\x7b\x3a\xe4\xd1\xcb\x33\xa8\x9a\x28\ +\x05\xd3\x55\xe6\x0b\x2a\x83\x5b\xe5\x2f\xa8\x0c\x87\x8b\x20\x0d\ +\xba\x44\xa9\x38\x9a\x43\x4d\x10\xc0\x76\xa1\x03\xa9\x0c\x9a\x30\ +\x44\x56\x44\x22\xc4\xb6\x87\x27\x74\x75\xc6\xed\x47\xe8\x22\xb0\ +\x73\x4b\x6c\x66\xa0\xf2\x88\x63\x5f\x37\xa8\x17\x38\x15\x1e\xa4\ +\xee\x80\xb8\x68\xe2\xf2\xfb\x4c\x3e\x7f\xbd\x4c\x7d\x21\x37\x96\ +\x6f\xa2\x67\x27\xe6\xe4\x72\xc0\x69\xa3\x08\x5b\xfc\x4b\xea\xf0\ +\xb7\xcd\xef\x68\x2a\x81\x29\x43\x81\x6c\xa5\xd5\xe8\xca\xfa\x24\ +\xbf\x51\xfb\xed\x99\xfc\x36\x01\x7a\x11\xa3\x47\x5f\xe4\x1c\xe4\ +\xf7\x29\xdb\x41\x8b\xa3\xb4\x73\x29\x43\x3e\x1f\xa6\x47\x7e\x0f\ +\xc2\xf3\xe1\xa9\xcf\x6f\x34\xd9\x68\xd1\xd1\xd9\x19\x24\xef\x79\ +\xb9\x03\xb1\x8f\xe7\xb8\x51\xa1\x46\xd3\x2f\xba\x2f\xb8\x86\x57\ +\xd7\x2b\x31\x1c\x71\xac\xa0\x23\x8d\x00\xb4\xcf\x27\xf5\x77\x00\ +\x7e\x12\x00\xfd\x09\x94\x7c\x87\xe0\x09\x04\x05\xf5\xac\x2c\x92\ +\xd2\xd5\xd4\x48\x86\xf8\xf7\x1d\x81\x5f\x09\x81\x13\x8d\xc8\x77\ +\x08\x4e\x41\x10\xcd\x38\xe7\x72\x2e\xa8\xd3\xb7\xd6\x98\x1e\x81\ +\x97\x8b\xeb\xd7\x17\x97\x74\x75\xf7\xfa\xe2\xff\x60\xb5\xa6\xde\ +\ \x00\x00\x0a\x7e\ \x00\ \x00\x39\x49\x78\x9c\xe5\x5b\x59\x6f\xe3\xba\x15\x7e\xcf\xaf\x50\ @@ -36582,178 +36570,179 @@ qt_resource_data = "\ \xcb\xdd\x3a\x51\x7b\x74\x02\xf9\xeb\xe7\x4f\xdb\xeb\xf5\xcb\x1d\ \x4a\xda\x12\xe7\xf5\x68\xd6\xe4\xb0\xb3\x2a\x7b\x9d\xad\xf3\x56\ \xf8\xb9\xb6\x79\xf6\xed\xc5\xff\x01\xea\x49\x79\xab\ -\x00\x00\x0a\x96\ +\x00\x00\x0a\xaa\ \x00\ -\x00\x29\x84\x78\x9c\xed\x5a\x59\x6f\xdb\x48\x12\x7e\xcf\xaf\xd0\ -\x2a\x2f\x09\x56\x6c\xf6\x7d\x28\x96\xe7\x21\xc1\x0c\x06\xf0\x62\ -\x81\x9d\x04\xfb\x18\xd0\x24\x2d\x73\x4d\x91\x02\x49\xd9\x92\x7f\ -\xfd\x56\x37\x6f\x91\xf6\xe4\x9a\x64\x1e\xa2\x20\xb1\xf8\x75\xf5\ -\x51\xc7\x57\x5d\x45\xe7\xe2\x97\xe3\x2e\x5d\xdc\xc7\x45\x99\xe4\ -\xd9\x66\x49\x10\x5e\x2e\xe2\x2c\xcc\xa3\x24\xdb\x6e\x96\x1f\xde\ -\xff\xea\xe9\xe5\xa2\xac\x82\x2c\x0a\xd2\x3c\x8b\x37\xcb\x2c\x5f\ -\xfe\x72\xf9\xe2\xe2\x1f\x9e\xb7\x78\x5b\xc4\x41\x15\x47\x8b\x87\ -\xa4\xba\x5d\xfc\x9e\xdd\x95\x61\xb0\x8f\x17\xaf\x6e\xab\x6a\xbf\ -\xf6\xfd\x87\x87\x07\x94\x34\x20\xca\x8b\xad\xff\x7a\xe1\x79\x97\ -\x2f\x5e\x5c\x94\xf7\xdb\x17\x8b\xc5\x02\xf6\xcd\xca\x75\x14\x6e\ -\x96\xcd\x84\xfd\xa1\x48\x9d\x60\x14\xfa\x71\x1a\xef\xe2\xac\x2a\ -\x7d\x82\x88\xbf\xec\xc5\xc3\x5e\x3c\xb4\xbb\x27\xf7\x71\x98\xef\ -\x76\x79\x56\xba\x99\x59\xf9\x72\x20\x5c\x44\x37\x9d\xb4\x3d\xcd\ -\x03\x73\x42\xc4\x18\xe3\x63\xea\x53\xea\x81\x84\x57\x9e\xb2\x2a\ -\x38\x7a\xe3\xa9\x70\xc6\xb9\xa9\x14\x63\xec\xc3\x58\x2f\xf9\x69\ -\x52\xeb\x63\x0a\xa6\x78\xf2\x30\x6e\x74\xb8\x3b\x98\x7f\x0f\x7f\ -\xbb\x09\x2d\x80\xca\xfc\x50\x84\xf1\x0d\xcc\x8c\x51\x16\x57\xfe\ -\xbb\xf7\xef\xba\x41\x0f\xa3\xa8\x8a\x06\xcb\xb4\xd6\x1f\xed\x3b\ -\x72\x49\x16\xec\xe2\x72\x1f\x84\x71\xe9\xb7\xb8\x9b\xff\x90\x44\ -\xd5\xed\x66\x29\xf9\xfe\xe8\x9e\x6f\xe3\x64\x7b\x5b\x0d\x80\x24\ -\xda\x2c\x41\x43\x46\x19\x76\xcf\xed\x19\xd6\x5d\x24\x61\xc4\x68\ -\x2d\xda\x2c\x3c\x1c\xe2\x1a\x91\x45\x61\x94\x3c\x9b\x1d\xe5\xa1\ -\x3d\xd2\x66\xf9\xae\x08\x6e\xaa\x8f\x57\x79\x78\x87\x5a\x43\x76\ -\xeb\xe4\x87\x6a\x7f\xa8\x3e\xc6\xc7\x2a\xce\xea\x05\x41\x95\x81\ -\x5e\x6e\xd8\x4e\x43\x23\x9d\x06\x31\x4e\x96\x97\x80\x5c\x44\xf1\ -\x4d\x69\x47\x6a\x75\xec\x13\xe8\x43\xdd\x18\x8c\x82\x4f\xe2\xa0\ -\xf8\xad\x08\xa2\x04\x22\xb1\x96\x1b\x9c\x22\xcc\xd3\x34\x0e\xc1\ -\x26\x41\xfa\x10\x9c\xca\x65\x27\x00\x4b\x8d\xa7\x32\xaa\x58\xb3\ -\x28\x2c\x5b\x56\xf9\xbe\x95\x05\xcd\xab\x53\x0a\xea\x5a\xd0\x83\ -\x15\xf3\x62\xfd\xf2\xc6\x7d\xde\x38\x28\x07\xdf\x24\xd5\x69\x4d\ -\xde\x2c\xfb\x39\xf9\xcd\x4d\x19\xc3\xc6\x78\x80\x39\x7f\xc0\x0c\ -\xd8\x4b\x2c\x17\xfe\xd7\xed\x86\xe7\x76\x23\xf3\xbb\xa9\x6e\xb7\ -\x0b\x7f\xac\x76\x83\xda\xa7\x20\xfd\x6c\x33\x3a\x4a\xac\x6f\x8b\ -\x18\x28\xfc\x72\xc6\x9e\x43\x73\x8f\xb7\xa0\x9c\xf4\x67\xdd\x36\ -\xe0\x87\x2c\xa9\x80\xab\x87\x32\x2e\xfe\xb0\xf1\xfe\xef\xec\x43\ -\x19\x4f\xa4\xde\x17\x41\x56\x02\xb9\x76\x9b\xe5\x2e\xa8\x8a\xe4\ -\xf8\x8a\xac\x30\xfc\x81\xac\xa8\xb1\xe2\xc6\xc0\x77\x8f\x73\x24\ -\xb9\xe4\x58\xbd\xee\xe6\x87\xc7\xcd\x92\x2a\xad\x90\x30\xa6\xdf\ -\x3b\x3c\x6d\x96\x42\x50\xa4\x8d\x62\xb2\x43\x6f\x66\x65\x6f\x66\ -\x65\x8b\xcd\x92\x69\xa4\xa9\x61\xd2\xf4\x76\xfe\xc2\xc0\x7c\xd6\ -\xa2\x86\x3d\x13\xc0\x94\x63\xf3\xcd\x2c\xea\xd5\x26\x85\x1f\x42\ -\x0a\x89\x34\x63\x7a\x45\x38\xd6\x88\x52\x22\x7b\x93\x1e\x89\x35\ -\x93\x00\x5b\x6b\xa1\x3b\xf4\x04\xa8\x54\x40\x60\x82\x75\x6f\xbc\ -\x23\x05\x59\x83\x31\x22\x7c\x20\x4a\x87\xa2\x3f\xd4\x78\xea\xaf\ -\x35\x1e\x53\xf2\xc7\x1a\x6f\x26\xe3\x99\xcf\xc9\x78\x18\xd3\x80\ -\x46\x5f\x9c\xf1\xcc\xe7\x65\x3c\x0c\x5c\x16\xe6\x8b\x33\x9e\xf9\ -\xd3\x8c\xf7\x23\x42\x4c\xfc\xc5\x21\x06\x49\xef\x6f\xcd\xcf\xb9\ -\x18\x14\xe2\xfb\xdd\xba\x42\x7d\xcf\x5b\x57\x98\x1f\x11\x83\x42\ -\x3c\x1f\x83\xec\x9b\xc5\x20\x46\x4a\x63\x4a\x19\xaf\x6f\xdf\x15\ -\x5c\x95\x48\x0b\x22\xe4\x0a\x9f\x47\x20\xa3\x88\x09\x45\x46\x11\ -\xa8\x88\x0d\x2b\x4a\xcc\x38\x02\x35\x33\x08\x2b\xc2\x46\x21\xd8\ -\xcb\x76\x16\xed\xac\xb4\x87\x8a\x71\x0f\x66\x82\x26\xa3\x9d\xd2\ -\x55\xaa\xd5\xc9\xd6\xd5\x63\x51\x16\x2d\x27\x96\xbe\xdf\x7f\x84\ -\x0b\x1f\x2f\xd6\x0b\x46\xe1\x1f\x32\x2b\x71\xaa\x25\x08\xf4\x0d\ -\xf0\x03\xcf\xca\x3c\xda\xea\xfb\x99\x65\x9a\x13\x78\x79\x91\x6c\ -\x13\xa8\x72\x9d\x1c\x25\x88\xb9\xcf\x78\x0e\x78\x6f\xa0\x1b\x14\ -\xbd\xba\xd1\xfe\xc2\xb7\x55\xb0\xfb\xd6\x69\x6a\x0b\xf2\xe8\x3e\ -\x89\x1f\xfa\x52\xf9\x3a\xe8\xdc\xb8\x0f\xb6\xb1\x0b\x6a\x08\x98\ -\x3a\xaa\x9b\x81\xeb\xbc\x88\xe2\xa2\x1d\x92\xee\x33\x1a\x6a\xe2\ -\xbe\xee\x39\x5f\x9c\x29\x03\xab\x76\xe3\x78\x7e\xbc\xbc\x0d\xa2\ -\xfc\x01\xfc\x7a\x3e\xf8\x98\xe7\x10\x4a\x02\x89\xf3\x01\x57\xa6\ -\x19\x04\xd5\x0c\xa5\x7a\x32\x78\xb2\xe1\x04\x4d\x0b\xa6\x52\x4d\ -\x06\x0f\x45\x01\x91\xea\xa5\xc1\x29\x06\x75\xb6\x94\x75\x09\xb9\ -\xbc\xcd\x1f\xb6\x85\xb5\x4a\x55\x1c\xe2\xf3\x89\xd0\xd0\x1c\x6c\ -\x23\xeb\x1d\x6a\x2a\x34\xed\xd3\x40\xc2\xce\xf5\xae\xaf\xf3\xe3\ -\xfc\x02\x0f\x49\x06\x5a\x7a\x4d\x43\x46\xa8\x9e\xd8\xa2\x91\x68\ -\x5b\x34\x25\x26\x7a\x37\x12\xc7\x3e\x79\x9d\x0f\x59\xdd\x27\x76\ -\x6c\xc6\x76\xc1\x31\xd9\x25\x8f\x71\x64\xb3\x51\x13\x26\xbb\xb8\ -\x0a\xa2\xa0\x0a\xfa\x90\x68\x11\x08\xa6\x36\xed\x5e\x40\x77\xbd\ -\xfe\xcf\xbb\x5f\xbb\xb4\x18\x86\xeb\xff\xe6\xc5\x5d\x9f\xd1\xac\ -\x40\x70\x0d\x0d\xdb\x66\xd9\xa5\x6a\xdb\x97\x85\x6b\x9b\x0e\x82\ -\xea\x32\xd9\x81\xa3\x6d\x2b\xfd\x4f\xe8\x68\x21\x38\xbb\x81\x91\ -\xb0\xe5\x62\xbf\x68\xbd\x6c\x11\xd7\xad\xf2\xec\xdb\x85\x28\xdc\ -\x25\x76\x92\xff\x47\x95\xa4\xe9\xef\x76\x93\x41\xfa\x6e\x16\x4d\ -\xaa\x34\xbe\x74\x7b\xd6\x5f\x5b\x2d\xfc\x46\x8d\x36\xff\x0e\xb4\ -\xbc\xf0\x5b\x33\xb8\xa7\x6d\x6f\x1e\x17\x38\xe4\xdc\xc2\x69\x70\ -\x1d\xa7\x9b\xe5\x95\x1d\x5c\x4c\x46\xb7\x45\x7e\xd8\xef\xf2\x28\ -\x6e\xa6\xb7\x66\xdd\x0e\x79\x0c\xa1\xa8\xfb\x8c\x56\xcd\xa4\x52\ -\x62\x18\xb4\x1b\xc2\xa5\xd2\xfe\xc9\x83\x74\x8a\x30\x91\x82\xac\ -\x3c\xc3\x90\x52\x4a\x92\x41\x47\xd3\x1d\x22\x3e\xee\xf3\xa2\xf2\ -\x6e\x92\x34\xae\x3b\x73\xff\x36\xdf\xc5\xfe\x09\xd2\xcc\x9d\xff\ -\xae\x89\xee\xd2\xbf\x0a\xae\x7d\xd7\xb3\xfb\x49\x98\x67\xa5\x1f\ -\xa6\x79\x19\xa3\x7d\xb6\x7d\x72\xc5\x63\xb4\x4f\x36\x4b\x8e\xb8\ -\x91\x84\x4b\xfa\xa4\xdc\xe9\x4c\xae\xf3\xc3\xb6\x77\xf9\xfc\x1c\ -\x89\x04\x26\x46\xaa\xfe\x1a\x78\xea\x14\x9f\x22\xf9\xf5\x16\x18\ -\xb9\xc7\x7d\x4d\x83\x2a\x7e\xe5\xc9\x95\xa7\x5f\x0f\x77\x6e\xdc\ -\x2a\x86\x9c\xd8\x07\xd5\xed\x30\xc6\x9b\xa2\xa2\x2f\x55\xe0\x7c\ -\xa9\x2d\x6e\x8d\x50\xcc\x3d\x78\xe3\x31\xaf\x38\xa4\xa0\xcc\x7d\ -\x9c\xe5\x91\xad\xb5\x8b\xfc\x2e\x1e\x94\xde\xf6\xb1\xce\x32\x6b\ -\x85\x14\xc7\x9c\xc1\xd5\x6a\xdc\x47\x6b\xd3\x0a\xd8\x3b\x1f\x8c\ -\xb2\xbe\x3e\x54\xd5\x10\xfb\x5f\x9e\x64\x6b\xe0\x54\x5c\xbc\xd9\ -\x05\xc5\x5d\x5c\xac\xb3\x3c\x8b\x9b\xef\x5e\x59\x05\x45\x35\x42\ -\x76\x49\x34\x7a\x8e\xb3\xe6\xb9\x59\xd3\x2d\x95\x42\xda\xa9\xd6\ -\xbc\xc5\xa2\x00\x32\x7e\x51\x04\xa7\x91\xa4\x45\xeb\x62\x09\x0a\ -\xa8\x06\xeb\x15\xbf\x4f\xca\xe4\x3a\x49\xed\x83\xfb\x9a\xc6\x6f\ -\xa2\xa4\xdc\x03\x9d\xd6\x49\x66\x0f\xfe\x26\xbf\x8f\x8b\x9b\x34\ -\x7f\xe8\xc6\xc1\xc9\xf0\xc3\xbb\x0e\xc2\x3b\x4b\x40\x38\x58\x10\ -\x82\x8f\x0f\xd6\x57\xcb\xa1\x07\xc0\x4b\xff\x5a\x40\x51\x81\x91\ -\x86\xcf\x4a\x10\x89\xb8\x16\x74\xf1\x76\x01\xed\xbd\x46\x44\xb2\ -\x0e\x24\x06\x30\xc1\x10\xd3\x86\xaf\x84\x20\xc8\x76\xd4\xda\x62\ -\x14\x09\xf0\x17\x14\x38\x1c\xc1\x95\xa2\xe9\xe2\xaa\x41\xa1\xdc\ -\x7a\x12\x15\xc8\x68\xc1\xc8\x08\x95\x92\x21\x22\x08\x13\x0e\xd5\ -\x14\x2a\x1d\x2e\x9f\x40\xc7\xeb\x5a\x94\x72\x33\x40\x9d\x06\x0c\ -\x41\x63\x05\xa7\x95\x0a\x09\xcb\x3c\x50\x15\x0b\xbb\x18\x68\xc5\ -\x25\x22\x4a\x82\xae\xa0\x3e\x41\x06\x6b\x36\xc0\x60\xb6\x16\x50\ -\x69\x11\x26\x3b\x94\x00\xa6\xe1\x9e\x17\x56\x52\x6a\x84\xb5\xd4\ -\xa6\xc6\x94\x21\xca\xe9\xc4\x65\xad\x92\xb6\x07\x22\x42\xcc\x83\ -\x52\x52\xa4\xe1\x28\xca\xa2\x06\x1b\xc4\x88\x79\x0a\x15\x90\xd8\ -\xb4\x22\x92\xb4\x28\x80\x74\x80\xbe\xb5\x28\x1c\x46\x59\x0f\x08\ -\x0c\x8a\x30\x0d\x5e\xd1\x8a\x21\x6e\x8b\xcf\xd6\xa5\x64\xce\xcd\ -\x8f\xa3\x60\x70\x25\x15\x50\x14\x68\xab\xc6\x57\x49\x01\x45\xd6\ -\xa7\x11\x97\x28\xfe\x6d\x89\x6b\x94\xfe\x49\xdc\x29\x71\xdd\x2b\ -\x43\xf0\x0a\xf8\xca\x8c\x06\xda\x22\xcb\xc0\x35\x29\xb8\xe1\xa3\ -\xc1\xb6\xbe\x22\x5c\x20\xa9\x38\x13\xa3\x51\xf7\x52\x8f\xb9\x7b\ -\x64\x3c\x70\xb2\x65\xbb\x84\x2a\x1c\xda\xe7\x61\x8b\xe8\x6f\xbb\ -\xaf\xe3\xd4\xde\xd7\xdd\x70\xf3\xdb\x22\x05\xaa\xc6\xb0\x2c\x43\ -\xf8\x9c\xdd\x11\x75\xbc\x99\x61\x8b\xd8\xe4\x24\xc2\x11\xf4\x44\ -\x6c\x25\x39\x86\x2f\x92\x6b\x47\xca\x29\x4a\x15\x34\x56\x98\x2b\ -\xbe\x92\x42\x23\xa1\x0d\x74\x18\x80\x29\x5b\x18\x00\xa6\x2c\x37\ -\x9a\xd9\x0a\xb2\x03\xd7\x98\xaf\x14\xa6\x50\x41\x2b\xda\x24\x04\ -\x6c\x14\x05\x0c\xb8\xc5\x81\xc9\x16\xb3\x35\x34\xcc\x56\x4c\x0c\ -\xf6\x06\x01\x21\xa0\x7f\x53\x40\x54\x8c\x05\x16\x16\x83\xc2\x5e\ -\x13\xb1\x52\x90\x05\x64\x3b\x7b\x82\xd9\x14\x65\x9b\x3c\x69\xd8\ -\x14\xc5\x06\x4b\xa7\x8f\x61\x4c\x32\x97\x28\xa6\x5a\x0e\x99\xda\ -\xb0\xcf\x71\x0e\x0a\xc2\x57\x2f\xa7\x5d\xec\xeb\x4f\x26\xe1\x30\ -\x9c\x6b\x06\x92\xfd\xf1\x33\x18\x77\x1e\xf5\xc3\xf8\xd8\xfe\x49\ -\xd5\x80\x57\x73\x35\xc3\xe0\xb5\xdb\x27\xd7\x0c\xf3\x66\x10\xcf\ -\x98\x01\xf4\x7e\x84\xfe\xed\x69\x33\x08\xc8\xea\x2e\xff\x90\x9f\ -\xf9\xe7\xa9\xc2\x41\xc1\xc5\x4a\x6c\x25\x2e\x25\x41\xc2\x51\x0c\ -\xb8\x21\xa4\x31\x0d\x02\x77\xbb\x46\x52\xd8\x47\x08\x69\x42\x98\ -\x2b\x22\x14\x72\x97\xbd\x46\xca\x4e\x76\xd3\x00\x03\x12\xd6\xa8\ -\x80\x4b\x93\x36\x53\x8d\x26\x0e\xe3\xd2\x4a\x02\x66\xec\x57\x3d\ -\xc0\xdc\xc5\xca\x90\x19\xa3\x96\xaf\xda\xd8\x57\x30\xa6\x43\x21\ -\x2f\x68\x9b\x01\x98\x3d\x30\xdc\x8f\x14\x12\x9a\x1c\x61\x90\x01\ -\x84\xa4\xf5\x9a\x1d\xaa\xdd\x25\x3b\x78\xa6\x88\x12\xc8\x9d\x35\ -\x46\xa1\x15\x01\xcc\xd6\x45\x54\xda\x62\xc2\xdd\xcc\x56\x8c\x0f\ -\x8e\x62\x40\x15\x28\x3b\x9c\x20\xac\x42\xa4\xbd\xb5\xa9\xdb\xad\ -\xde\x56\x69\x31\x82\x38\xc2\x8c\xd4\x27\x19\xa0\x14\xb5\x06\x6b\ -\x40\x48\x11\x52\x22\x48\x55\xae\x3a\x81\xa4\x07\x5b\x72\x67\x7b\ -\x6e\x63\xd7\x62\x90\x6d\xdc\x64\xe7\x8f\xab\x89\xcf\x9e\x2a\x01\ -\x46\x2f\xa4\xbf\x92\x87\xea\x27\x0f\xbf\x17\x0f\x21\xfa\xce\x78\ -\xe8\x90\x9e\x87\x46\x9e\xf1\x50\xc1\x75\x35\xe5\xa1\x45\xcf\x79\ -\x68\xb1\x73\x1e\xf6\xd8\x90\x87\x3d\x3a\xe4\x61\x8b\x0e\x79\xa8\ -\xe0\xfa\x3d\xe7\xa1\x7b\x9d\x39\xe1\x21\xdc\x87\x23\x1e\x2a\xb8\ -\x24\xcf\x79\xa8\x88\x38\xe7\xa1\xb2\xb5\xee\x84\x87\x56\xf0\x9c\ -\x87\x6e\xdb\x31\x0f\x15\x96\x33\x3c\x54\x98\xcf\xf0\x10\x96\x9e\ -\xf0\x10\xce\x30\xe1\xa1\xf3\xc7\xd5\xc4\x67\x4f\xf2\x50\x7d\x3b\ -\x1e\x9a\x9f\x3c\xfc\x4e\x3c\x04\x0a\x9d\xf1\xb0\x46\x3a\x1e\x2a\ -\xaa\xcf\x79\x08\xa5\xe0\x0c\x0f\x19\x9d\xf2\x10\xb0\x09\x0f\x3b\ -\x6c\xc4\xc3\x0e\x1d\xf1\xb0\x41\x47\x3c\x64\x6a\xca\x43\xce\xe6\ -\x78\xc8\xc5\x98\x87\xd0\x19\x4c\x78\xc8\xd5\x84\x87\x5c\xcf\xf1\ -\x10\x04\x27\x3c\xb4\xdb\x9e\xf1\x90\xe9\x39\x1e\x42\xaf\x32\xe1\ -\xa1\x82\x26\xf7\x9c\x87\xd6\xf6\xe7\x3c\xac\xfd\x71\x35\xf1\xd9\ -\x93\x3c\x34\x5f\xd7\xf9\x3c\x3e\x3e\xce\x37\x3f\x1c\xcf\x34\x3f\ -\x14\x92\x16\xd5\xd0\xfd\x93\xb6\x2d\x78\x3b\x8b\x42\xb3\x41\xc0\ -\xa9\xd0\x94\x58\xac\x6d\x88\xb4\xfd\xdf\x1d\x14\xfa\x7c\x6a\x43\ -\xca\x30\x5e\x47\xa2\x72\x46\x58\x09\xc6\x91\x96\xb4\x89\x28\xe3\ -\x16\x84\x7e\xb0\x59\xd0\xbe\xe2\x01\x77\xd2\x15\x18\x73\xd0\x39\ -\xf1\x76\xb2\x06\xf3\xba\x25\xa9\xf5\x68\x3d\xdb\xd4\xc7\xa1\xb3\ -\x98\x33\x31\x69\x0e\x6e\x9a\xad\xdf\xce\x81\x54\x29\x02\xb1\xe2\ -\x5e\xe3\x08\xa4\x39\x77\xbb\x40\xa1\xe6\x7a\x21\x01\x5a\xd5\xfd\ -\x99\x9d\xac\xe0\xda\x90\x04\x4e\x09\x35\x11\x37\x70\xab\x59\x4c\ -\x22\x89\x95\xfb\x9d\xaf\x3b\xa3\xd5\x46\x4b\x6b\x1e\xb5\x12\xa0\ -\x96\x32\xa0\x4f\xdd\x07\x4a\xe0\x87\xd5\x91\xdb\xa6\x8c\xda\x57\ -\x5b\x1a\xec\xc7\x39\x04\x90\xb0\x4c\x50\xd4\x75\x72\xc4\x20\x53\ -\x9b\x4c\x0c\xdd\x00\x7d\x20\xc1\xda\x19\x52\x62\xcc\x6c\x94\x03\ -\x9d\x6b\xab\xd1\xce\x92\x33\xd8\xd5\xac\x13\x9f\xed\xed\xa6\xff\ -\x2f\xe8\x6f\xd0\xdb\x35\xf1\xef\x7e\x5c\xd8\x5f\x6d\x5c\xbe\xf8\ -\x3f\x45\x39\x68\xb0\ +\x00\x28\xe1\x78\x9c\xed\x5a\x5b\x6f\xdb\x46\x16\x7e\xcf\xaf\xe0\ +\x2a\x2f\x09\x56\x1c\xcd\xfd\xa2\x58\xe9\x43\x83\x2e\x0a\x78\xb1\ +\xc0\xa6\xc5\x3e\x16\xb4\x44\xcb\x5c\x4b\xa2\x40\x52\xb6\xe4\x5f\ +\xbf\xdf\x0c\x29\x8a\x94\x68\x37\x6d\x9a\x64\x1f\xa2\x22\x95\xf8\ +\xcd\x99\xdb\x39\xe7\x3b\x17\x26\x57\x3f\xec\xd7\xab\xe8\x21\x2d\ +\xca\x2c\xdf\xcc\x46\x8c\xd0\x51\x94\x6e\xe6\xf9\x22\xdb\x2c\x67\ +\xa3\x5f\x7f\xf9\x29\xb6\xa3\xa8\xac\x92\xcd\x22\x59\xe5\x9b\x74\ +\x36\xda\xe4\xa3\x1f\xde\xbf\xba\xfa\x5b\x1c\x47\x3f\x16\x69\x52\ +\xa5\x8b\xe8\x31\xab\xee\xa2\x9f\x37\xf7\xe5\x3c\xd9\xa6\xd1\x9b\ +\xbb\xaa\xda\x4e\x27\x93\xc7\xc7\x47\x92\x35\x20\xc9\x8b\xe5\xe4\ +\x6d\x14\xc7\xef\x5f\xbd\xba\x2a\x1f\x96\xaf\xa2\x28\xc2\xbe\x9b\ +\x72\xba\x98\xcf\x46\xcd\x84\xed\xae\x58\x05\xc1\xc5\x7c\x92\xae\ +\xd2\x75\xba\xa9\xca\x09\x23\x6c\x32\x3a\x89\xcf\x4f\xe2\x73\xbf\ +\x7b\xf6\x90\xce\xf3\xf5\x3a\xdf\x94\x61\xe6\xa6\x7c\xdd\x11\x2e\ +\x16\xb7\xad\xb4\x3f\xcd\xa3\x08\x42\xcc\x39\x37\xa1\x7c\xc2\x79\ +\x0c\x89\xb8\x3c\x6c\xaa\x64\x1f\xf7\xa7\xe2\x8c\x43\x53\x39\xa5\ +\x74\x82\xb1\x93\xe4\xa7\x49\x4d\xf7\x2b\xa8\xe2\xd9\xc3\x84\xd1\ +\xee\xee\x50\xff\x16\x7f\xda\x09\x47\x80\x94\xf9\xae\x98\xa7\xb7\ +\x98\x99\x92\x4d\x5a\x4d\x3e\xfc\xf2\xa1\x1d\x8c\x29\x59\x54\x8b\ +\xce\x32\x47\xed\xf7\xf6\xed\x99\x64\x93\xac\xd3\x72\x9b\xcc\xd3\ +\x72\x72\xc4\xc3\xfc\xc7\x6c\x51\xdd\xcd\x46\x5a\x6e\xf7\xe1\xf9\ +\x2e\xcd\x96\x77\x55\x07\xc8\x16\xb3\x11\x6e\x28\xb8\xa0\xe1\xf9\ +\x78\x86\x69\xeb\x49\x94\x08\x5e\x8b\x36\x0b\x77\x87\xa4\x25\x82\ +\xb0\xa8\x70\xd6\xea\xfe\xfc\x45\x3e\xf7\x87\x9a\x8d\x3e\x6e\x92\ +\xed\x6f\xd7\xf9\xfc\x9e\x1c\x35\xd9\x2e\x94\xef\xaa\xed\xae\xfa\ +\x2d\xdd\x57\xe9\xa6\x5e\x11\x77\xe9\x5c\x2c\x0c\xfb\x69\xa4\x77\ +\xa9\x8e\x93\xb3\xd1\x7b\x20\x57\x8b\xf4\xb6\xf4\x23\xf5\x7d\xfc\ +\x13\x2e\xc4\xc3\x18\x46\x61\x94\x34\x29\xfe\x51\x24\x8b\x0c\xae\ +\x58\xcb\x75\x4e\x31\xcf\x57\xab\x74\x0e\xa5\x24\xab\xc7\xe4\x50\ +\x8e\x5a\x01\x2c\xd5\x9f\x2a\xb8\x11\xcd\xa2\x58\xb6\xac\xf2\xed\ +\x51\x16\x17\xaf\x0e\x2b\xdc\xd6\x83\x31\x56\xcc\x8b\xe9\xeb\xdb\ +\xf0\x79\x17\xa0\x1c\xc6\xc9\xaa\xc3\x94\xbd\x1b\x9d\xe6\xe4\xb7\ +\xb7\x65\x8a\x8d\x69\x07\x0b\x06\xc1\x0c\xec\xa5\x46\xd1\xe4\xf3\ +\x76\xa3\x43\xbb\xb1\xe1\xdd\x4c\xbb\xdb\xd5\xa4\x7f\xed\x06\xf5\ +\x4f\xc9\xea\x0f\xab\x31\x70\x62\x7a\x57\xa4\xe0\xf0\xeb\x01\x7d\ +\x76\xd5\xdd\xdf\x82\x4b\x76\x3a\xeb\xb2\x01\x7f\xdd\x64\x15\xc8\ +\xba\x2b\xd3\xe2\xa3\x77\xf8\x7f\x6d\x7e\x2d\xd3\x0b\xa9\x5f\x8a\ +\x64\x53\x82\x5d\xeb\xd9\x68\x9d\x54\x45\xb6\x7f\xc3\xc6\x14\xff\ +\x21\x2c\x5a\x6a\xa4\x73\x63\x45\x34\x77\x92\xba\x71\x2c\x19\xb1\ +\x82\x19\x2a\xde\xb6\xcb\xcc\xf7\xb3\x11\x37\x96\x12\xa5\xf9\xe9\ +\x84\xf3\xc3\x6c\xa4\xa4\x20\xc6\x32\xc7\x5b\xf4\x76\x50\xf6\x76\ +\x50\xb6\x98\x8d\x84\x25\x96\x3b\xa1\xdd\x49\xdd\x7f\xd2\x3f\x5f\ +\x54\xac\x13\x2f\xf8\x31\xc7\xbd\xff\x32\xc5\xc6\xb5\x66\xf1\xa5\ +\xb4\xd2\x50\xa5\xb0\x63\x26\xa9\x25\x9c\x33\x7d\x52\xe9\x9e\x79\ +\x35\x29\x49\xb4\x55\xb6\x45\x0f\x40\xb5\x01\x8f\x19\xb5\x27\x5b\ +\xef\x39\x64\x1d\xa5\x84\xc9\x8e\x28\xef\x8a\x7e\x53\xe5\x99\x2f\ +\xab\x3c\x61\xf4\xb7\x55\xde\x40\xe0\x73\x7f\x24\xf0\x51\xca\x13\ +\xbe\xf8\xd3\x81\xcf\xfd\xb1\xc0\x47\x41\x69\xe5\xfe\x74\xe0\x73\ +\xbf\x1b\xf8\xbe\x85\x8b\xa9\x2f\xec\x62\x52\xfe\x7f\xf3\x73\xc8\ +\x07\x95\xfa\x7a\xc9\x57\x99\xaf\x99\x7c\x95\xfb\x16\x3e\xa8\xd4\ +\xcb\x3e\x28\xfe\x32\x1f\xa4\xc8\x83\x8e\x3a\xab\x83\x2b\x52\xe2\ +\xb8\xb6\x92\x49\x39\x56\xc8\x9b\x46\x19\x86\x7c\xcc\x09\xe5\xc2\ +\xc9\x0b\x97\x14\x9c\x08\x48\xf4\x5c\xd2\x30\xef\x67\x9c\xb9\xbe\ +\x4b\x5a\xe1\x08\x35\x4c\xf4\x7c\xf2\x24\xdb\xaa\xb8\x55\xdb\x16\ +\x95\xe4\x16\x7a\x43\xf7\x71\x9c\xd2\x16\xb0\xd5\xc1\x17\xdc\x7d\ +\x51\xb1\x18\x5d\xa8\xfe\x61\xfb\x1b\x2a\x00\x1a\x4d\x23\xc1\xf1\ +\x3f\x36\x28\x71\xa8\x25\x18\x1a\x0a\x7c\xd1\x41\x99\x27\x5f\x96\ +\xbf\xb0\x4c\x73\x82\x38\x2f\xb2\x65\x86\xea\x37\xc8\x71\x46\x44\ +\xf8\xf4\xe7\xc0\x9c\x9d\xbb\xa1\x18\xb6\xcd\xed\xaf\x26\xbe\x3a\ +\x0e\xbf\xda\x9b\xfa\x3a\x7d\xf1\x90\xa5\x8f\xa7\x12\xfa\x26\x69\ +\xed\xba\x4d\x96\x69\xf0\x72\x78\x50\xed\xe6\xcd\xc0\x4d\x5e\x2c\ +\xd2\xe2\x38\xa4\xc3\xa7\x37\xd4\x10\xa1\x6e\x46\x5f\x9d\x5d\x06\ +\xab\xb6\xe3\x74\x78\xbc\xbc\x4b\x16\xf9\x23\xec\x7a\x3e\xf8\x94\ +\xe7\xf0\x2d\x41\x2c\x9c\xca\xb6\x25\xe4\x89\x0c\xb0\x87\x62\x44\ +\x32\xc7\xda\x13\x9d\x06\xfd\x79\x0c\xa1\x4a\x32\xca\x2e\x06\x77\ +\x45\x01\x07\x8e\x57\xc9\x21\xc5\xa5\x96\xd0\xdb\x71\xf5\xf2\x2e\ +\x7f\x5c\x16\x5e\x37\x55\xb1\x4b\xcf\x27\xa2\xdb\xd9\xf9\x3e\x37\ +\xde\xd5\x0c\x69\xba\xab\x8e\x84\x9f\x1b\xdf\xdc\xe4\xfb\xe1\x05\ +\x1e\xb3\x0d\xee\x1a\x37\xfd\x1a\xe3\xf6\x42\x23\x8d\xc4\xb1\x83\ +\x33\xc6\x3c\x23\xb1\x3f\xc5\xb4\xf3\xa1\xc3\xf3\x43\xeb\x64\x9f\ +\xad\xb3\xa7\x74\xe1\x63\x54\xe3\x2b\xeb\xb4\x4a\x16\x49\x95\x9c\ +\xfc\xe2\x88\xc0\xa3\x8e\xc1\xf8\x0a\xbd\xf7\xf4\xdf\x1f\x7e\x6a\ +\x83\xe5\x7c\x3e\xfd\x4f\x5e\xdc\x9f\xe2\x9c\x17\x48\x6e\xd0\xcd\ +\xcd\x46\x6d\x00\xf7\x4d\xdb\x7c\xea\x83\x44\x52\xbd\xcf\xd6\xb0\ +\xb6\x6f\xb4\xff\x8e\x7e\x17\x1e\xda\x0e\xf4\x84\x3d\x21\x4f\x8b\ +\xd6\xcb\x16\x69\xdd\x48\x0f\xbe\x7b\x58\xcc\xd7\x99\x9f\x34\xf9\ +\x58\x65\xab\xd5\xcf\x7e\x93\x4e\x50\x6f\x16\xcd\xaa\x55\xda\x89\ +\xf4\x93\xe6\xf4\xc7\x60\xdc\xb9\xdc\xd5\xe4\x78\xfb\xf0\xb4\x3c\ +\x69\x25\xb8\xcb\x85\x33\xad\x92\x9b\x74\x35\x1b\x5d\xfb\xc1\xe8\ +\x62\x74\x59\xe4\xbb\xed\x3a\x5f\xa4\xcd\xf4\xa3\x36\x97\x5d\x0e\ +\x77\x1d\x30\x8a\xaa\x81\xb8\xca\x9c\x30\xd6\xa8\x26\xae\x1e\x9f\ +\x62\xc5\x14\xa1\x4c\x2b\x36\x8e\x1d\x9a\x10\x63\x34\x33\x6f\x2f\ +\x43\x4a\xba\xdf\xe6\x45\x15\xdf\x66\xab\xb4\x6e\xd6\x27\x77\xf9\ +\x3a\x9d\x1c\x10\x62\xee\x27\x1f\x1a\x9f\x2e\x27\xd7\xc9\xcd\xe4\ +\x43\x91\xdc\x56\x93\x6c\x9e\x6f\xca\xc9\x7c\x95\x97\x29\xd9\x6e\ +\x96\xcf\xae\xb8\x5f\x6c\xb3\xd9\x48\x12\xe9\x34\x93\x9a\x3f\x2b\ +\x77\x38\x93\x6b\xed\xb0\x3c\x59\x7a\x78\x8e\x26\x8a\x32\xa7\xcd\ +\x29\x05\x3c\x77\x8a\x4f\x91\xfc\x7c\x0d\xf4\xcc\x13\x7e\xae\x92\ +\x2a\x7d\x13\xeb\x71\x6c\xdf\x76\x77\x6e\xcc\xaa\x3a\x58\x5b\x50\ +\x14\xf9\x7d\x5a\xc7\x80\x29\x0c\x28\x2d\xa2\x9b\xd4\xe6\x5d\x33\ +\x00\x6f\x4e\x8b\x15\x58\x5a\x4d\xe5\x11\x5b\x24\x88\x92\x45\x91\ +\x1c\xa6\x9b\x7c\x93\x76\xe9\xb5\x4d\xaa\xbb\x2e\x5d\x9a\x4d\x4e\ +\xb5\x10\xee\xbc\xf2\xd5\xb3\x53\x46\x84\x87\xb8\x3f\x16\x17\xbb\ +\x15\x14\xf4\x90\x6e\xf2\xc5\xa2\xd9\xaf\x53\xdb\xbf\x7c\x56\x5f\ +\x4c\x40\xc1\xd3\x9b\x5d\x55\x75\xb1\xff\xe6\xd9\x66\x1a\x2e\xf2\ +\x6e\x9d\x14\xf7\x69\x11\xce\xdd\xfc\x8e\xcb\x2a\x29\xaa\x1e\xb2\ +\xce\x16\xbd\xe7\x74\xd3\x3c\x7f\xb2\x4e\xba\x68\x5d\x85\xa1\x32\ +\x6b\xb0\xd3\x85\x1f\xb2\x32\xbb\xc9\x56\xfe\x21\xfc\x5c\xa5\xef\ +\x16\x59\xb9\x05\x35\xa7\xd9\xc6\x1f\xfc\x5d\xfe\x90\x16\xb7\xab\ +\xfc\xb1\x1d\x87\xc3\xe0\x2b\xbe\x49\xe6\xf7\x9e\xcc\x38\x58\x32\ +\x87\xbf\xec\xbc\xdd\x47\x5d\xcd\xc3\xe2\xff\x8c\x50\x9c\x50\x24\ +\x2c\x6b\xc7\x8a\x69\xa8\x4b\xf1\xe8\xc7\x88\x1b\x6b\x09\xd3\xa2\ +\x05\x99\x03\xa6\x04\x11\xd6\xa1\x38\x42\x12\xf3\xad\xba\xf5\x18\ +\x27\x0a\x76\x1a\x2b\x27\x89\x70\xc2\xf2\xe8\xba\x41\x51\xc7\x3d\ +\x8b\x2a\xe2\xac\x12\xac\x87\x6a\x2d\x08\x53\x4c\xa8\x80\x5a\x94\ +\x5d\xb0\xdb\x33\x68\x7f\x5d\x8f\x72\xe9\x3a\x68\xb8\x81\x20\xe8\ +\xd8\x70\x5a\x6d\x88\xf2\x2c\xc6\x55\xa9\xf2\x8b\xe1\x56\x52\x13\ +\x66\x34\xee\x8a\xeb\x33\x82\x6c\x2d\x3a\x18\x66\x5b\x85\x8a\x8d\ +\x09\xdd\xa2\x0c\x98\x45\xbd\xa0\xbc\xa4\xb6\x84\x5a\x6d\x5d\x8d\ +\x19\xc7\x4c\xb8\x93\xd4\xf5\x95\xac\x3f\x10\x53\x6a\x18\xd4\x9a\ +\x13\x8b\xa3\x18\x8f\xa2\xf8\x24\x82\xb9\xe7\x50\x85\x20\x69\x0d\ +\xd3\xec\x88\x02\xe4\x1d\xf4\x47\x8f\xe2\x30\xc6\x5b\x40\xa1\x7e\ +\xa5\xc2\xc2\x2a\xa8\x3d\x88\xe4\x42\xb6\x26\x65\x43\x66\x7e\xea\ +\x39\x43\x28\xcd\x40\x4d\x84\x00\xd3\xcf\x46\x05\x8a\xb5\x4f\x23\ +\x2c\x33\xf2\x3b\x61\xbf\x20\x61\xc3\xab\x48\x58\x03\x36\x72\xbd\ +\x81\x63\x79\xe6\x90\x6a\x95\x74\xb2\x37\x78\xac\xcc\x98\x54\x44\ +\x1b\x29\x54\x6f\x34\xbc\x25\x14\x21\x17\xf5\x07\x0e\xbe\xec\xd7\ +\xa8\xe2\xd1\x8f\x77\x7b\xce\xc9\xb2\xfd\xd9\x0f\xe5\xa7\xba\x1d\ +\xd5\x83\xaf\x6f\x50\x6f\xce\xcb\x72\x8e\xcf\x59\x9e\xa9\xfd\xcc\ +\x75\x7b\x4e\x5f\xc3\xc1\x49\x39\x25\x5a\x3b\x3b\xd6\x38\x2b\x4e\ +\x65\x4c\x34\x8f\x50\x40\x44\x31\x3c\xc3\x50\xaa\xc6\x70\x5e\xed\ +\x94\x90\x40\x0c\x3a\x34\xc4\x02\x21\xf1\xad\x95\x8a\x62\x04\x12\ +\x2d\xed\x98\xfb\x90\x44\x8d\x8d\x10\xc2\x0c\xc7\xb3\x05\x45\x2d\ +\x77\xe8\x72\xc0\x0a\xcf\x14\x1f\x19\x84\x00\x7d\x09\xf7\x2b\x70\ +\x9f\xe7\x15\x75\x51\x6c\x88\x7f\xf5\x3b\x96\xdc\x6f\xe6\xd8\x25\ +\xb0\x8a\x62\x90\x5f\x5a\x2e\xfd\xa1\x28\xe1\x16\x2d\x62\xcc\xc0\ +\x2d\x54\xf5\x56\x44\x08\x3a\x92\x59\x40\x14\x8a\x63\xb4\x4f\xb2\ +\x86\x38\x81\x2e\x28\x07\xdf\xbc\xbe\xec\x6c\xdf\x7e\x32\x7f\x42\ +\x5a\x1d\x28\x1c\x50\x06\x80\x30\x55\x5e\xc4\x68\x1a\x1e\x92\x6a\ +\x57\xa4\xbe\xb8\xee\x18\x70\xf9\x3b\xa5\x01\x1d\x0f\x15\x06\x9d\ +\x17\x6d\x9f\x9c\xc4\x87\x2f\xa9\x5e\xb8\x24\x6e\xf5\x84\x06\xad\ +\x7b\xc9\x7e\x84\x80\x1b\x38\xff\x31\xec\x7b\x80\x78\x2e\xa3\x1b\ +\x64\x3c\xe6\xcb\x6d\xad\x19\x51\x21\x19\x6a\xcf\x0d\xe7\x1a\x04\ +\x49\xd7\x12\xad\xfc\xa3\x24\x8a\x31\x11\xb2\xbb\x21\x21\x0b\x83\ +\x2d\x7e\x72\x98\x06\xcc\x99\x06\x55\xc8\x66\xbc\x99\xea\x2c\x0b\ +\x98\xd4\x5e\x12\x98\xf3\x3f\x6d\x07\x0b\x19\x4f\x10\xd7\x47\x7d\ +\x66\xb5\x8e\x18\x4b\x5d\x8b\x4a\x60\x48\xdc\x52\xf8\x03\x23\x71\ +\x71\x44\x1c\xdd\xc3\x90\xf6\x94\xe6\xf5\x9a\x2d\x6a\x43\xf6\xeb\ +\x3c\x83\xcc\x0c\xc1\xad\xc6\x38\xfa\x0d\x60\xbe\x60\xe1\xda\x67\ +\xf9\x90\x32\xbd\x98\xec\x1c\xc5\xe1\x2a\xa8\x07\x82\x20\x56\x61\ +\xda\xa7\x53\x1e\x76\xab\xb7\x35\x56\xf5\x20\x49\xa8\x60\xf5\x49\ +\x3a\x28\x27\x47\x85\x35\xa0\xc0\xe5\x34\xe1\x08\x62\x3e\xf1\x3a\ +\xe3\xb7\x94\x41\xf7\xd2\xfb\xae\xc7\x18\xf4\xef\x27\x07\x7b\x5c\ +\x5f\xd8\xec\xb9\xdc\xdc\x7b\x05\xfd\x99\x3c\x34\xdf\x79\xf8\xb5\ +\x78\x08\xef\x3b\xe3\x61\x40\x4e\x3c\x74\xfa\x8c\x87\x48\x37\x03\ +\x3c\xf4\xe8\x39\x0f\x3d\x76\xce\xc3\x13\xd6\xe5\xe1\x09\xed\xf2\ +\xf0\x88\x76\x79\x68\x50\x28\x9f\xf3\x30\xbc\xaf\xbc\xe0\xa1\x61\ +\xa2\xc7\x43\xc3\xe4\x05\x0f\x0d\x92\xf7\x19\x0f\x8d\x2f\x42\x2f\ +\x78\xe8\x05\xcf\x79\x18\xb6\xed\xf3\xd0\x50\x3d\xc0\x43\x43\xe5\ +\x00\x0f\xb1\xf4\x05\x0f\x71\x86\x0b\x1e\x06\x7b\x5c\x5f\xd8\xec\ +\x59\x1e\x9a\xbf\x8e\x87\xee\x3b\x0f\xbf\x12\x0f\x41\xa1\x33\x1e\ +\xd6\x48\xcb\x43\x94\x8b\xe7\x3c\x14\x7c\x88\x87\x82\x5f\xf2\x10\ +\xd8\x05\x0f\x5b\xac\xc7\xc3\x16\xed\xf1\xb0\x41\x7b\x3c\x14\xe6\ +\x92\x87\x52\x0c\xf1\x50\xaa\x3e\x0f\x51\xba\x5f\xf0\x50\x9a\x0b\ +\x1e\x4a\x3b\xc4\x43\x08\x5e\xf0\xd0\x6f\x7b\xc6\x43\x61\x87\x78\ +\x88\x66\xe2\x82\x87\x06\x15\xf2\x39\x0f\xbd\xee\xcf\x79\x58\xdb\ +\xe3\xfa\xc2\x66\xcf\xf2\xd0\x7d\x5e\x6b\xf2\xf4\xf4\x34\xdc\x9d\ +\x48\x3a\xd0\x9d\xc0\x42\x54\x19\x87\x16\x5a\x10\x68\x4e\x88\x63\ +\x77\x82\x0e\x42\x4b\x5e\x97\xfd\x0a\x51\x2c\xf2\xff\x78\x03\xca\ +\x32\x63\x56\x7f\xb3\xd0\xaf\x30\x2f\xc3\xb8\xff\xb6\x1a\xb3\x40\ +\x5e\x98\x68\xcc\x85\x37\x15\x1a\x94\x58\xa0\x42\xc0\xd0\x58\xd6\ +\xeb\xa0\xcb\x69\x44\xea\xc9\x7e\x12\x6c\xe9\xd7\xe5\x86\xd8\x5a\ +\xe2\x1c\x58\x45\xd8\x41\x8d\xe1\x6b\xc0\xed\xf1\x84\x58\x50\x0a\ +\xe1\x0f\x08\x77\xc0\xc1\x19\x36\x10\x0c\xad\x0b\x64\x1d\x35\x1a\ +\x80\xb6\xce\xf7\x32\xde\x12\xd4\xa9\x48\x61\x3d\x34\x5c\x71\xb0\ +\x92\xe6\x3c\x42\xc8\xa6\xdc\x61\x0e\x0c\xec\xb8\x34\xa1\xa1\xf2\ +\x2e\x11\x26\x49\x7f\x8a\xc8\x9f\xc2\x72\x33\xf6\xb7\x75\xdc\xbf\ +\x78\x80\x22\xd0\x10\xf1\x80\x08\x6b\xd1\x12\x41\x79\x82\x6a\x35\ +\x46\x2a\x83\x8f\x39\xb4\x69\xde\x51\xb1\x11\x96\x57\x67\x4f\x2f\ +\xb6\x4f\x97\xff\x2a\xe7\x8b\xb7\x4f\x8d\x8b\x85\xaf\x2b\xff\x37\ +\x03\xef\x5f\xfd\x0f\xe7\xda\x3c\xaf\ \x00\x00\x11\x72\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -37878,59 +37867,59 @@ qt_resource_struct = "\ \x00\x00\x00\x64\x00\x00\x00\x00\x00\x01\x00\x00\x01\x64\ \x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x04\xc4\ \x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x03\x12\ -\x00\x00\x06\x02\x00\x01\x00\x00\x00\x01\x00\x07\x71\x1b\ +\x00\x00\x06\x02\x00\x01\x00\x00\x00\x01\x00\x07\x65\xdf\ \x00\x00\x03\xb0\x00\x00\x00\x00\x00\x01\x00\x06\xc2\xc8\ -\x00\x00\x08\x38\x00\x01\x00\x00\x00\x01\x00\x08\x24\xe5\ -\x00\x00\x0a\x7e\x00\x01\x00\x00\x00\x01\x00\x08\xe3\xcd\ -\x00\x00\x04\xba\x00\x01\x00\x00\x00\x01\x00\x07\x0d\xaf\ -\x00\x00\x06\x4a\x00\x00\x00\x00\x00\x01\x00\x07\x8e\x65\ -\x00\x00\x07\x5e\x00\x01\x00\x00\x00\x01\x00\x07\xe7\x03\ -\x00\x00\x06\xbe\x00\x00\x00\x00\x00\x01\x00\x07\xb8\x34\ -\x00\x00\x08\xd2\x00\x01\x00\x00\x00\x01\x00\x08\x5e\x74\ -\x00\x00\x0a\xce\x00\x01\x00\x00\x00\x01\x00\x08\xff\xdd\ +\x00\x00\x08\x38\x00\x01\x00\x00\x00\x01\x00\x08\x19\xa9\ +\x00\x00\x0a\x7e\x00\x01\x00\x00\x00\x01\x00\x08\xe2\xf6\ +\x00\x00\x04\xba\x00\x01\x00\x00\x00\x01\x00\x07\x02\x73\ +\x00\x00\x06\x4a\x00\x00\x00\x00\x00\x01\x00\x07\x83\x29\ +\x00\x00\x07\x5e\x00\x01\x00\x00\x00\x01\x00\x07\xdb\xc7\ +\x00\x00\x06\xbe\x00\x00\x00\x00\x00\x01\x00\x07\xac\xf8\ +\x00\x00\x08\xd2\x00\x01\x00\x00\x00\x01\x00\x08\x5a\x4a\ +\x00\x00\x0a\xce\x00\x01\x00\x00\x00\x01\x00\x08\xff\x1a\ \x00\x00\x03\xf6\x00\x01\x00\x00\x00\x01\x00\x06\xdb\xea\ -\x00\x00\x07\x84\x00\x01\x00\x00\x00\x01\x00\x07\xec\xc7\ -\x00\x00\x06\x24\x00\x00\x00\x00\x00\x01\x00\x07\x7b\xcf\ -\x00\x00\x04\x1a\x00\x00\x00\x00\x00\x01\x00\x06\xe1\x69\ -\x00\x00\x06\x92\x00\x01\x00\x00\x00\x01\x00\x07\xa7\x2a\ +\x00\x00\x07\x84\x00\x01\x00\x00\x00\x01\x00\x07\xe1\x8b\ +\x00\x00\x06\x24\x00\x00\x00\x00\x00\x01\x00\x07\x70\x93\ +\x00\x00\x04\x1a\x00\x01\x00\x00\x00\x01\x00\x06\xe1\x69\ +\x00\x00\x06\x92\x00\x01\x00\x00\x00\x01\x00\x07\x9b\xee\ \x00\x00\x03\xd2\x00\x01\x00\x00\x00\x01\x00\x06\xd1\x7e\ -\x00\x00\x0a\x08\x00\x00\x00\x00\x00\x01\x00\x08\xc6\x13\ +\x00\x00\x0a\x08\x00\x00\x00\x00\x00\x01\x00\x08\xc5\x22\ \x00\x00\x03\x30\x00\x01\x00\x00\x00\x01\x00\x06\x9d\x12\ -\x00\x00\x05\x0a\x00\x01\x00\x00\x00\x01\x00\x07\x28\xce\ -\x00\x00\x09\xc0\x00\x01\x00\x00\x00\x01\x00\x08\xb2\x1d\ -\x00\x00\x09\xe2\x00\x01\x00\x00\x00\x01\x00\x08\xbc\x7f\ -\x00\x00\x04\xe8\x00\x00\x00\x00\x00\x01\x00\x07\x16\xb5\ +\x00\x00\x05\x0a\x00\x01\x00\x00\x00\x01\x00\x07\x1d\x92\ +\x00\x00\x09\xc0\x00\x01\x00\x00\x00\x01\x00\x08\xad\xf3\ +\x00\x00\x09\xe2\x00\x01\x00\x00\x00\x01\x00\x08\xbb\x8e\ +\x00\x00\x04\xe8\x00\x00\x00\x00\x00\x01\x00\x07\x0b\x79\ \x00\x00\x02\xfe\x00\x01\x00\x00\x00\x01\x00\x06\x95\x59\ -\x00\x00\x07\xee\x00\x01\x00\x00\x00\x01\x00\x08\x0d\xbb\ -\x00\x00\x09\x2c\x00\x00\x00\x00\x00\x01\x00\x08\x6e\xbc\ -\x00\x00\x05\x5e\x00\x01\x00\x00\x00\x01\x00\x07\x3a\x3e\ -\x00\x00\x09\x50\x00\x00\x00\x00\x00\x01\x00\x08\x85\x6f\ -\x00\x00\x07\x18\x00\x00\x00\x00\x00\x01\x00\x07\xce\xd6\ -\x00\x00\x04\x6c\x00\x01\x00\x00\x00\x01\x00\x06\xfc\xd1\ -\x00\x00\x0a\x9e\x00\x00\x00\x00\x00\x01\x00\x08\xee\x67\ -\x00\x00\x05\xb8\x00\x00\x00\x00\x00\x01\x00\x07\x51\x7d\ +\x00\x00\x07\xee\x00\x01\x00\x00\x00\x01\x00\x08\x02\x7f\ +\x00\x00\x09\x2c\x00\x00\x00\x00\x00\x01\x00\x08\x6a\x92\ +\x00\x00\x05\x5e\x00\x01\x00\x00\x00\x01\x00\x07\x2f\x02\ +\x00\x00\x09\x50\x00\x00\x00\x00\x00\x01\x00\x08\x81\x45\ +\x00\x00\x07\x18\x00\x00\x00\x00\x00\x01\x00\x07\xc3\x9a\ +\x00\x00\x04\x6c\x00\x01\x00\x00\x00\x01\x00\x06\xf1\x69\ +\x00\x00\x0a\x9e\x00\x00\x00\x00\x00\x01\x00\x08\xed\xa4\ +\x00\x00\x05\xb8\x00\x00\x00\x00\x00\x01\x00\x07\x46\x41\ \x00\x00\x03\x5c\x00\x00\x00\x00\x00\x01\x00\x06\xa5\x19\ -\x00\x00\x0a\xfe\x00\x00\x00\x00\x00\x01\x00\x09\x0b\xb6\ -\x00\x00\x09\x98\x00\x00\x00\x00\x00\x01\x00\x08\xa2\xf6\ +\x00\x00\x0a\xfe\x00\x00\x00\x00\x00\x01\x00\x09\x0a\xf3\ +\x00\x00\x09\x98\x00\x00\x00\x00\x00\x01\x00\x08\x9e\xcc\ \x00\x00\x03\x80\x00\x01\x00\x00\x00\x01\x00\x06\xba\x39\ -\x00\x00\x08\x5a\x00\x01\x00\x00\x00\x01\x00\x08\x2d\x8e\ -\x00\x00\x0a\x2e\x00\x00\x00\x00\x00\x01\x00\x08\xce\xa0\ -\x00\x00\x05\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x63\xbc\ -\x00\x00\x06\xf0\x00\x01\x00\x00\x00\x01\x00\x07\xc5\x25\ -\x00\x00\x08\xb0\x00\x00\x00\x00\x00\x01\x00\x08\x49\xe3\ -\x00\x00\x04\x90\x00\x01\x00\x00\x00\x01\x00\x07\x03\x6e\ -\x00\x00\x07\x3e\x00\x01\x00\x00\x00\x01\x00\x07\xe0\x8e\ -\x00\x00\x05\x3e\x00\x01\x00\x00\x00\x01\x00\x07\x34\xbf\ -\x00\x00\x08\xfc\x00\x01\x00\x00\x00\x01\x00\x08\x64\xe9\ -\x00\x00\x07\xc6\x00\x01\x00\x00\x00\x01\x00\x08\x02\x49\ -\x00\x00\x08\x10\x00\x01\x00\x00\x00\x01\x00\x08\x15\x0f\ -\x00\x00\x0a\x54\x00\x01\x00\x00\x00\x01\x00\x08\xd9\x4b\ -\x00\x00\x09\x74\x00\x01\x00\x00\x00\x01\x00\x08\x98\x46\ -\x00\x00\x04\x3c\x00\x01\x00\x00\x00\x01\x00\x06\xf4\x88\ -\x00\x00\x07\xa6\x00\x00\x00\x00\x00\x01\x00\x07\xf2\x77\ -\x00\x00\x05\x8c\x00\x00\x00\x00\x00\x01\x00\x07\x42\x23\ -\x00\x00\x06\x72\x00\x01\x00\x00\x00\x01\x00\x07\x9d\xb6\ -\x00\x00\x08\x7e\x00\x00\x00\x00\x00\x01\x00\x08\x34\xdf\ +\x00\x00\x08\x5a\x00\x01\x00\x00\x00\x01\x00\x08\x22\x52\ +\x00\x00\x0a\x2e\x00\x01\x00\x00\x00\x01\x00\x08\xcd\xaf\ +\x00\x00\x05\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x58\x80\ +\x00\x00\x06\xf0\x00\x01\x00\x00\x00\x01\x00\x07\xb9\xe9\ +\x00\x00\x08\xb0\x00\x00\x00\x00\x00\x01\x00\x08\x45\xb9\ +\x00\x00\x04\x90\x00\x01\x00\x00\x00\x01\x00\x06\xf8\x32\ +\x00\x00\x07\x3e\x00\x01\x00\x00\x00\x01\x00\x07\xd5\x52\ +\x00\x00\x05\x3e\x00\x01\x00\x00\x00\x01\x00\x07\x29\x83\ +\x00\x00\x08\xfc\x00\x01\x00\x00\x00\x01\x00\x08\x60\xbf\ +\x00\x00\x07\xc6\x00\x01\x00\x00\x00\x01\x00\x07\xf7\x0d\ +\x00\x00\x08\x10\x00\x01\x00\x00\x00\x01\x00\x08\x09\xd3\ +\x00\x00\x0a\x54\x00\x01\x00\x00\x00\x01\x00\x08\xd8\x74\ +\x00\x00\x09\x74\x00\x01\x00\x00\x00\x01\x00\x08\x94\x1c\ +\x00\x00\x04\x3c\x00\x01\x00\x00\x00\x01\x00\x06\xe9\x47\ +\x00\x00\x07\xa6\x00\x00\x00\x00\x00\x01\x00\x07\xe7\x3b\ +\x00\x00\x05\x8c\x00\x00\x00\x00\x00\x01\x00\x07\x36\xe7\ +\x00\x00\x06\x72\x00\x01\x00\x00\x00\x01\x00\x07\x92\x7a\ +\x00\x00\x08\x7e\x00\x00\x00\x00\x00\x01\x00\x08\x29\xa3\ \x00\x00\x02\xaa\x00\x01\x00\x00\x00\x01\x00\x06\x7b\xb1\ \x00\x00\x02\xd6\x00\x01\x00\x00\x00\x01\x00\x06\x85\x1e\ " diff --git a/src/Mod/Draft/Resources/icons/Draft_Apply.svg b/src/Mod/Draft/Resources/icons/Draft_Apply.svg index 674fd4e9e..50f0714d5 100755 --- a/src/Mod/Draft/Resources/icons/Draft_Apply.svg +++ b/src/Mod/Draft/Resources/icons/Draft_Apply.svg @@ -1,5 +1,6 @@ + + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="Draft_Apply.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + version="1.1"> + + inkscape:window-y="0" + inkscape:window-maximized="1" /> @@ -80,71 +93,69 @@ id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer"> - - - - - - - - - + + + + + + + diff --git a/src/Mod/Draft/Resources/icons/Draft_Construction.svg b/src/Mod/Draft/Resources/icons/Draft_Construction.svg index c2c5eafb0..923d5088b 100644 --- a/src/Mod/Draft/Resources/icons/Draft_Construction.svg +++ b/src/Mod/Draft/Resources/icons/Draft_Construction.svg @@ -14,8 +14,8 @@ height="64px" id="svg3611" version="1.1" - inkscape:version="0.47 r22583" - sodipodi:docname="New document 2"> + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="Draft_Construction.svg"> + + + + + + + image/svg+xml - + @@ -119,23 +160,29 @@ id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer"> - - - - - + + + + diff --git a/src/Mod/Draft/Resources/icons/Draft_Finish.svg b/src/Mod/Draft/Resources/icons/Draft_Finish.svg index 0dbfa6ff6..07cda3851 100755 --- a/src/Mod/Draft/Resources/icons/Draft_Finish.svg +++ b/src/Mod/Draft/Resources/icons/Draft_Finish.svg @@ -1,29 +1,210 @@ + + id="svg3612" + version="1.1" + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="Draft_Finish.svg"> + id="defs3614"> + + + + + id="perspective3620" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="false" + inkscape:snap-nodes="true" + inkscape:object-nodes="true" /> + id="metadata3617"> image/svg+xml + @@ -59,11 +245,60 @@ inkscape:label="Layer 1" inkscape:groupmode="layer"> + inkscape:connector-curvature="0" + id="path4235-8-7" + d="m 28.873502,8.1632589 c -2.837435,0.2881572 -5.0625,2.7115381 -5.0625,5.6250001 0,1.085407 0.311381,2.077914 0.843749,2.9375 L 11.061002,29.882009 C 10.198524,29.34446 9.1833717,29.007008 8.0922517,29.007008 c -3.1076916,0 -5.6250003,2.51731 -5.6250003,5.625001 0,3.10769 2.5173087,5.625 5.6250003,5.625 0.2913453,0 0.5955877,-0.01981 0.8749994,-0.0625 l 14.4999999,14.65625 c -0.07495,0.3663 -0.124999,0.73654 -0.124999,1.125 0,3.10769 2.517309,5.625 5.624999,5.625 3.107692,0 5.625001,-2.51731 5.625001,-5.625 0,-0.51871 -0.08736,-1.02305 -0.21875,-1.500001 l 7.562499,-7.687499 c 1.448885,0.75273 3.039722,1.2967 4.750001,1.53125 8.007085,1.09811 15.37064,-4.49291 16.46875,-12.5 1.09811,-8.007087 -4.492914,-15.401885 -12.5,-16.5 -8.007087,-1.098115 -15.370636,4.524164 -16.46875,12.53125 -0.690574,5.035429 1.240843,9.80409 4.781249,12.9375 l -6.593749,6.6875 c -0.943363,-0.7142 -2.131802,-1.125 -3.406251,-1.125 -1.376472,0 -2.647179,0.4918 -3.624999,1.3125 L 12.154751,38.538259 c 0.971456,-1.01124 1.5625,-2.39326 1.5625,-3.90625 0,-0.77692 -0.15276,-1.5143 -0.4375,-2.1875 l 13.843751,-13.53125 c 0.70626,0.319315 1.487018,0.499999 2.3125,0.499999 3.10769,0 5.624999,-2.517309 5.624999,-5.624999 0,-3.107691 -2.517309,-5.6250001 -5.624999,-5.6250001 -0.194232,0 -0.373339,-0.019209 -0.5625,0 z" + style="opacity:0.525;fill:#000000;fill-opacity:1;stroke:none" /> + + + + + + diff --git a/src/Mod/Draft/Resources/icons/Draft_Lock.svg b/src/Mod/Draft/Resources/icons/Draft_Lock.svg index 8c46a656d..06e3c6858 100755 --- a/src/Mod/Draft/Resources/icons/Draft_Lock.svg +++ b/src/Mod/Draft/Resources/icons/Draft_Lock.svg @@ -1,5 +1,6 @@ + + id="svg3612" + version="1.1" + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="Draft_Finish.svg"> + id="defs3614"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30,37 +210,16 @@ offset="1" id="stop3277" /> - - + y1="671.11084" + x2="2900.1479" + y2="671.11084" /> @@ -76,13 +235,33 @@ + y1="671.11084" + x2="2900.1479" + y2="671.11084" /> + + @@ -97,21 +276,54 @@ - + gradientTransform="matrix(-0.1937875,0,0,-0.1937875,670.27087,167.83649)" + x1="2754.6858" + y1="671.11084" + x2="2900.1479" + y2="671.11084" /> + + + + + + + + inkscape:window-width="1280" + inkscape:window-height="777" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="false" + inkscape:snap-nodes="true" + inkscape:object-nodes="true" /> + id="metadata3617"> image/svg+xml + @@ -146,56 +363,74 @@ id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer"> + + + - - - - + id="g4327" + transform="matrix(1.0803489,0,0,1.0803489,-5.9760819,-8.3209228)"> - - - - - - + transform="matrix(0.13587109,-0.99072652,0.99072652,0.13587109,7.1263136,81.286094)" + d="m 65.272727,36.272728 a 13.545455,13.545455 0 1 1 -27.09091,0 13.545455,13.545455 0 1 1 27.09091,0 z" + sodipodi:ry="13.545455" + sodipodi:rx="13.545455" + sodipodi:cy="36.272728" + sodipodi:cx="51.727272" + id="path4278" + style="color:#000000;fill:url(#linearGradient4331);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + + + + diff --git a/src/Mod/Draft/Resources/icons/Draft_SelectPlane.svg b/src/Mod/Draft/Resources/icons/Draft_SelectPlane.svg index 276b2135b..5fd36c60c 100644 --- a/src/Mod/Draft/Resources/icons/Draft_SelectPlane.svg +++ b/src/Mod/Draft/Resources/icons/Draft_SelectPlane.svg @@ -14,8 +14,8 @@ height="64px" id="svg3612" version="1.1" - inkscape:version="0.47 r22583" - sodipodi:docname="Draft_BSpline.svg"> + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="Draft_SelectPlane.svg"> + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="false" + inkscape:snap-nodes="true" + inkscape:object-nodes="true" /> @@ -222,37 +225,60 @@ inkscape:label="Layer 1" inkscape:groupmode="layer"> + id="g4075"> + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path3305" + d="M 33.636364,3.0909091 9.4545455,16 l 0,45.454545 L 12.545455,61.272727 51.636364,39.818182 51.272727,3.0909091 z" + style="fill:#00bcbf;stroke:#004550;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:0.73333335;opacity:1" /> + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3190" + d="M 2.6817614,19.853542 34.227331,2.7648421" + style="fill:none;stroke:#004550;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3190-7" + d="M 2.6817603,43.362531 61.318239,11.546559" + style="fill:none;stroke:#004550;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3190-9" + d="M 12.681761,61.180713 61.136421,34.819286" + style="fill:none;stroke:#004550;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3190-1" + d="m 51.778932,61.073314 9.545569,-4.361427" + style="fill:none;stroke:#004550;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + inkscape:connector-curvature="0" + id="path3224" + d="m 9.6363637,2.6639428 0,58.7180442" + style="fill:none;stroke:#004550;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + + + diff --git a/src/Mod/Draft/Resources/icons/Draft_Snap.svg b/src/Mod/Draft/Resources/icons/Draft_Snap.svg index 2d491b621..3d44556d1 100644 --- a/src/Mod/Draft/Resources/icons/Draft_Snap.svg +++ b/src/Mod/Draft/Resources/icons/Draft_Snap.svg @@ -14,10 +14,21 @@ height="64" id="svg4025" version="1.1" - inkscape:version="0.48.1 r9760" - sodipodi:docname="Draft_Edit.svg"> + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="Draft_Snap.svg"> + + + + + + + + + @@ -91,7 +122,7 @@ image/svg+xml - + @@ -100,28 +131,40 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(0,32)"> + + transform="translate(14.83703,-21.048975)" /> + + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> diff --git a/src/Mod/Draft/Resources/icons/Snap_Lock.svg b/src/Mod/Draft/Resources/icons/Snap_Lock.svg index a5fbc85b3..367b1198a 100644 --- a/src/Mod/Draft/Resources/icons/Snap_Lock.svg +++ b/src/Mod/Draft/Resources/icons/Snap_Lock.svg @@ -14,8 +14,8 @@ height="64px" id="svg3230" sodipodi:version="0.32" - inkscape:version="0.48.1 r9760" - sodipodi:docname="Draft_Lock.svg" + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="Snap_Lock.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.1"> @@ -141,7 +141,7 @@ image/svg+xml - + @@ -160,13 +160,14 @@ inkscape:export-xdpi="6.5019679" inkscape:export-filename="/home/yorik/Documents/Lab/Draft/icons/close.png" transform="translate(-6,-8)" - id="g2385"> + id="g2385" + style="stroke-width:15.48087467;stroke-miterlimit:4;stroke-dasharray:none"> + d="m 2820.6698,645.73677 c 0,0 -15.7005,16.69534 -17.7546,34.75655 -2.5648,22.55078 8.1728,28.79829 10.4273,53.29339 2.2546,24.49509 -7.3273,42.70091 -7.3273,42.70091 l -68.4824,0 -0.2819,-130.41983 83.4189,-0.33102 z" + style="fill:url(#linearGradient2403);fill-opacity:1;fill-rule:evenodd;stroke:none" + inkscape:connector-curvature="0" /> @@ -197,8 +199,9 @@ + d="m 2832.0579,513.74833 c 0,0 -24.6429,-0.35715 -41.7857,11.78571 -17.1429,12.14286 -25.7143,23.21429 -31.4286,40.35714 -5.7143,17.14286 -4.2857,27.85714 -4.2857,27.85714 l 12.5,3.92858 c 0,0 -0.3433,-0.89433 1.3531,-12.59076 1.6899,-11.65095 5.8505,-25.49622 16.0291,-36.92479 10.1785,-11.42857 27.8827,-17.92521 41.1892,-17.38802 13.3065,0.53719 8.2143,-2.025 8.2143,-2.025 z" + style="fill:url(#radialGradient2411);fill-opacity:1;fill-rule:evenodd;stroke:none" + inkscape:connector-curvature="0" /> diff --git a/src/Mod/Drawing/Gui/TaskOrthoViews.ui b/src/Mod/Drawing/Gui/TaskOrthoViews.ui index 92718a990..580a74765 100644 --- a/src/Mod/Drawing/Gui/TaskOrthoViews.ui +++ b/src/Mod/Drawing/Gui/TaskOrthoViews.ui @@ -7,7 +7,7 @@ 0 0 259 - 491 + 496 @@ -122,22 +122,22 @@ - 0 + 0 - 90 + 90 - 180 + 180 - 270 + 270 diff --git a/src/Mod/Fem/App/AppFem.cpp b/src/Mod/Fem/App/AppFem.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/AppFemPy.cpp b/src/Mod/Fem/App/AppFemPy.cpp old mode 100644 new mode 100755 index 838a5aeab..9bb9cead4 --- a/src/Mod/Fem/App/AppFemPy.cpp +++ b/src/Mod/Fem/App/AppFemPy.cpp @@ -150,7 +150,82 @@ static PyObject * SMESH_PCA(PyObject *self, PyObject *args) Base::Matrix4D Trafo = pca.Transform(); /*Let´s transform the input mesh with the PCA Matrix*/ inputMesh->getFemMeshPtr()->transformGeometry(Trafo); - //inputMesh->getFemMeshPtr()->getSMesh()->ExportUNV("C:/PCA_alignment.unv"); + //inputMesh->getFemMeshPtr()->getSMesh()->ExportUNV("C:/Temp/PCA_alignment.unv"); + //Now lets check if the smallest dimension of the BBox is oriented towards the Z-Axis. If not, lets rotate it around the X or Y axis + //Use the SMESH structure for that + // aMesh.Transform(Trafo); + + //Base::Rotation rotatex,rotatey,rotatez; + //const Base::Vector3d rotate_axis_x(1.0,0.0,0.0),rotate_axis_y(0.0,1.0,0.0),rotate_axis_z(0.0,0.0,1.0); + //double bbox_length_x,bbox_length_y,bbox_length_z; + ////Rotate around the each axes and choose the settings for the min bbox + //Base::Matrix4D final_trafo; + //Base::BoundBox3f aBBox; + ////Get the current BBOX and look for the size + //aBBox = aMesh.GetBoundBox(); + //bbox_length_x = aBBox.LengthX();bbox_length_y = aBBox.LengthY();bbox_length_z = aBBox.LengthZ(); + ////Now do the rotation stuff + //if (bbox_length_z < bbox_length_x && bbox_length_z < bbox_length_y) + // Py_Return; + //else if ( + + + //MeshCore::MeshKernel atempkernel; + + //float it_steps=10.0; + //double step_size; + //double alpha_x=0.0,alpha_y=0.0,alpha_z=0.0; + //double perfect_ax=0.0,perfect_ay=0.0,perfect_az=0.0; + + ////Do a Monte Carlo approach and start from the Principal Axis System + ////and rotate +/- 60° around each axis in a first iteration + //double angle_range_min_x=-PI/3.0,angle_range_max_x=PI/3.0, + // angle_range_min_y=-PI/3.0,angle_range_max_y=PI/3.0, + // angle_range_min_z=-PI/3.0,angle_range_max_z=PI/3.0; + + ////We rotate until we are 0.1° sure to be in the right position + //for (step_size = (2.0*PI/it_steps);step_size>(2.0*PI/3600.0);step_size=(2.0*PI/it_steps)) + //{ + // for(alpha_x=angle_range_min_x;alpha_xnext(); current_node.Set(float(aNode->X()),float(aNode->Y()),float(aNode->Z())); current_node = matrix * current_node; - if(current_node.z > billet_thickness || current_node.z < 0.0) + if(current_node.z > billet_thickness || current_node.z < -0.1) { //lets jump out of the function as soon as we find a //Node that is higher or lower than billet thickness @@ -564,7 +639,7 @@ static PyObject * minBoundingBox(PyObject *self, PyObject *args) float(0.0),float(0.0),float(0.0),float(1.0)); inputMesh->getFemMeshPtr()->transformGeometry(trans_matrix); - //inputMesh->getFemMeshPtr()->getSMesh()->ExportUNV("C:/fine_tuning.unv"); + //inputMesh->getFemMeshPtr()->getSMesh()->ExportUNV("C:/temp/fine_tuning.unv"); } PY_CATCH; diff --git a/src/Mod/Fem/App/CMakeLists.txt b/src/Mod/Fem/App/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/FemMesh.cpp b/src/Mod/Fem/App/FemMesh.cpp old mode 100644 new mode 100755 index a3c98e586..13f2a9f81 --- a/src/Mod/Fem/App/FemMesh.cpp +++ b/src/Mod/Fem/App/FemMesh.cpp @@ -58,9 +58,13 @@ #include #include +//to simplify parsing input files we use the boost lib +#include + using namespace Fem; using namespace Base; +using namespace boost; TYPESYSTEM_SOURCE(Fem::FemMesh , Base::Persistence); @@ -374,23 +378,32 @@ void FemMesh::readNastran(const std::string &Filename) inputfile.open(Filename.c_str()); inputfile.seekg(std::ifstream::beg); std::string line1,line2,temp; + std::vector token_results; + token_results.clear(); Base::Vector3d current_node; std::vector vertices; vertices.clear(); + std::vector nodal_id; + nodal_id.clear(); std::vector tetra_element; std::vector > all_elements; std::vector element_id; element_id.clear(); + bool nastran_free_format = false; do { std::getline(inputfile,line1); if (line1.size() == 0) continue; - if (line1.find("GRID*")!= std::string::npos) //We found a Grid line + if (!nastran_free_format && line1.find(",")!= std::string::npos) + nastran_free_format = true; + if (!nastran_free_format && line1.find("GRID*")!= std::string::npos ) //We found a Grid line { //Now lets extract the GRID Points = Nodes //As each GRID Line consists of two subsequent lines we have to //take care of that as well std::getline(inputfile,line2); + //Get the Nodal ID + nodal_id.push_back(atoi(line1.substr(8,24).c_str())); //Extract X Value current_node.x = atof(line1.substr(40,56).c_str()); //Extract Y Value @@ -400,7 +413,7 @@ void FemMesh::readNastran(const std::string &Filename) vertices.push_back(current_node); } - else if (line1.find("CTETRA")!= std::string::npos) + else if (!nastran_free_format && line1.find("CTETRA")!= std::string::npos) { tetra_element.clear(); //Lets extract the elements @@ -422,6 +435,46 @@ void FemMesh::readNastran(const std::string &Filename) all_elements.push_back(tetra_element); } + else if (nastran_free_format && line1.find("GRID")!= std::string::npos ) //We found a Grid line + { + char_separator sep(","); + tokenizer > tokens(line1, sep); + token_results.assign(tokens.begin(),tokens.end()); + if (token_results.size() < 3) + continue;//Line does not include Nodal coordinates + nodal_id.push_back(atoi(token_results[1].c_str())); + current_node.x = atof(token_results[3].c_str()); + current_node.y = atof(token_results[4].c_str()); + current_node.z = atof(token_results[5].c_str()); + vertices.push_back(current_node); + } + else if (nastran_free_format && line1.find("CTETRA")!= std::string::npos) + { + tetra_element.clear(); + //Lets extract the elements + //As each Element Line consists of two subsequent lines as well + //we have to take care of that + //At a first step we only extract Quadratic Tetrahedral Elements + std::getline(inputfile,line2); + char_separator sep(","); + tokenizer > tokens(line1.append(line2), sep); + token_results.assign(tokens.begin(),tokens.end()); + if (token_results.size() < 11) + continue;//Line does not include enough nodal IDs + element_id.push_back(atoi(token_results[1].c_str())); + tetra_element.push_back(atoi(token_results[3].c_str())); + tetra_element.push_back(atoi(token_results[4].c_str())); + tetra_element.push_back(atoi(token_results[5].c_str())); + tetra_element.push_back(atoi(token_results[6].c_str())); + tetra_element.push_back(atoi(token_results[7].c_str())); + tetra_element.push_back(atoi(token_results[8].c_str())); + tetra_element.push_back(atoi(token_results[10].c_str())); + tetra_element.push_back(atoi(token_results[11].c_str())); + tetra_element.push_back(atoi(token_results[12].c_str())); + tetra_element.push_back(atoi(token_results[13].c_str())); + + all_elements.push_back(tetra_element); + } } while (inputfile.good()); @@ -431,10 +484,10 @@ void FemMesh::readNastran(const std::string &Filename) std::vector::const_iterator anodeiterator; SMESHDS_Mesh* meshds = this->myMesh->GetMeshDS(); meshds->ClearMesh(); - int j=1; + unsigned int j=0; for(anodeiterator=vertices.begin(); anodeiterator!=vertices.end(); anodeiterator++) { - meshds->AddNodeWithID((*anodeiterator).x,(*anodeiterator).y,(*anodeiterator).z,j); + meshds->AddNodeWithID((*anodeiterator).x,(*anodeiterator).y,(*anodeiterator).z,nodal_id[j]); j++; } @@ -442,7 +495,8 @@ void FemMesh::readNastran(const std::string &Filename) { //Die Reihenfolge wie hier die Elemente hinzugefügt werden ist sehr wichtig. //Ansonsten ist eine konsistente Datenstruktur nicht möglich - meshds->AddVolumeWithID( + meshds->AddVolumeWithID + ( meshds->FindNode(all_elements[i][0]), meshds->FindNode(all_elements[i][2]), meshds->FindNode(all_elements[i][1]), @@ -458,6 +512,7 @@ void FemMesh::readNastran(const std::string &Filename) } } + void FemMesh::read(const char *FileName) { Base::FileInfo File(FileName); diff --git a/src/Mod/Fem/App/FemMesh.h b/src/Mod/Fem/App/FemMesh.h old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/FemMeshObject.cpp b/src/Mod/Fem/App/FemMeshObject.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/FemMeshObject.h b/src/Mod/Fem/App/FemMeshObject.h old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/FemMeshProperty.cpp b/src/Mod/Fem/App/FemMeshProperty.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/FemMeshProperty.h b/src/Mod/Fem/App/FemMeshProperty.h old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/FemMeshPy.xml b/src/Mod/Fem/App/FemMeshPy.xml old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/FemMeshPyImp.cpp b/src/Mod/Fem/App/FemMeshPyImp.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/HypothesisPy.cpp b/src/Mod/Fem/App/HypothesisPy.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/HypothesisPy.h b/src/Mod/Fem/App/HypothesisPy.h old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/Makefile.am b/src/Mod/Fem/App/Makefile.am old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/PreCompiled.cpp b/src/Mod/Fem/App/PreCompiled.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/App/PreCompiled.h b/src/Mod/Fem/App/PreCompiled.h old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/CMakeLists.txt b/src/Mod/Fem/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/FemExample.py b/src/Mod/Fem/FemExample.py old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/AppFemGui.cpp b/src/Mod/Fem/Gui/AppFemGui.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/AppFemGuiPy.cpp b/src/Mod/Fem/Gui/AppFemGuiPy.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/CMakeLists.txt b/src/Mod/Fem/Gui/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Command.cpp b/src/Mod/Fem/Gui/Command.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Makefile.am b/src/Mod/Fem/Gui/Makefile.am old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/PreCompiled.cpp b/src/Mod/Fem/Gui/PreCompiled.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/PreCompiled.h b/src/Mod/Fem/Gui/PreCompiled.h old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/Fem.qrc b/src/Mod/Fem/Gui/Resources/Fem.qrc old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/Makefile.am b/src/Mod/Fem/Gui/Resources/Makefile.am old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/UpdateResources.bat b/src/Mod/Fem/Gui/Resources/UpdateResources.bat old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/icons/Fem_FemMesh.svg b/src/Mod/Fem/Gui/Resources/icons/Fem_FemMesh.svg old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_af.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_af.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_de.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_de.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_es.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_es.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_it.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_it.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_no.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_no.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_no.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_no.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_pt.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pt.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_se.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_se.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_se.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_se.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_zh.qm old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_zh.ts old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp b/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/ViewProviderFemMesh.h b/src/Mod/Fem/Gui/ViewProviderFemMesh.h old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Workbench.cpp b/src/Mod/Fem/Gui/Workbench.cpp old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Gui/Workbench.h b/src/Mod/Fem/Gui/Workbench.h old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Init.py b/src/Mod/Fem/Init.py old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/InitGui.py b/src/Mod/Fem/InitGui.py old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/Makefile.am b/src/Mod/Fem/Makefile.am old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/convert2TetGen.py b/src/Mod/Fem/convert2TetGen.py old mode 100644 new mode 100755 diff --git a/src/Mod/Fem/fem.dox b/src/Mod/Fem/fem.dox old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/ApplyingBC_IC.py b/src/Mod/Machining_Distortion/ApplyingBC_IC.py old mode 100644 new mode 100755 index 5006fd9f7..ffefaf1f9 --- a/src/Mod/Machining_Distortion/ApplyingBC_IC.py +++ b/src/Mod/Machining_Distortion/ApplyingBC_IC.py @@ -61,14 +61,15 @@ def ApplyingBC_IC(Casedir,YoungModulus,PoissonCoeff,OUTER_GRID_No1,OUTER_GRID_No # AC_file.close() os.chdir(str(Casedir)) + fnull = open(os.devnull, 'w') if os.name != "posix": process = subprocess.Popen("type geometry_fe_input.inp Applied_Conditions.txt> final_fe_input.inp",shell=True) process.wait() process = subprocess.Popen("del /Q geometry_fe_input.inp",shell=True) process.wait() else: - CommandLine = "cat Applied_Conditions.txt >> geometry_fe_input.inp" - - + commandline = "cat Applied_Conditions.txt >> geometry_fe_input.inp" + result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) # + fnull.close() return diff --git a/src/Mod/Machining_Distortion/CMakeLists.txt b/src/Mod/Machining_Distortion/CMakeLists.txt old mode 100644 new mode 100755 index 6bf855e77..5dc518f21 --- a/src/Mod/Machining_Distortion/CMakeLists.txt +++ b/src/Mod/Machining_Distortion/CMakeLists.txt @@ -4,6 +4,8 @@ SET(MachDist_SRCS InitGui.py ApplyingBC_IC.py mach_dist_gui.py + machdist_rc.py + Parameter.py postprocess.py postprocess_gui.py calculix_postprocess.py @@ -15,11 +17,11 @@ SET(MachDist_SRCS SOURCE_GROUP("" FILES ${MachDist_SRCS}) -ADD_CUSTOM_TARGET( ALL +ADD_CUSTOM_TARGET(Machining_Distortion ALL SOURCES ${MachDist_SRCS} ) -fc_copy_sources(MachDistortion "${CMAKE_BINARY_DIR}/Mod/Machining_Distortion" ${MachDist_SRCS}) +fc_copy_sources(Machining_Distortion "${CMAKE_BINARY_DIR}/Mod/Machining_Distortion" ${MachDist_SRCS}) INSTALL( diff --git a/src/Mod/Machining_Distortion/Init.py b/src/Mod/Machining_Distortion/Init.py old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/InitGui.py b/src/Mod/Machining_Distortion/InitGui.py old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/MachiningDistortionCommands.py b/src/Mod/Machining_Distortion/MachiningDistortionCommands.py old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/Parameter.py b/src/Mod/Machining_Distortion/Parameter.py old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/Parameter.ui b/src/Mod/Machining_Distortion/Parameter.ui old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/Resources/machdist_resources.qrc b/src/Mod/Machining_Distortion/Resources/machdist_resources.qrc old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/Resources/ui/userprefs-base.ui b/src/Mod/Machining_Distortion/Resources/ui/userprefs-base.ui old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/User_Interface_Mach_Dist.py b/src/Mod/Machining_Distortion/User_Interface_Mach_Dist.py old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/User_Interface_Mach_Dist.ui b/src/Mod/Machining_Distortion/User_Interface_Mach_Dist.ui old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/calculix_postprocess.py b/src/Mod/Machining_Distortion/calculix_postprocess.py old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/mach_dist_gui.py b/src/Mod/Machining_Distortion/mach_dist_gui.py old mode 100644 new mode 100755 index 61945cafe..6edc6e906 --- a/src/Mod/Machining_Distortion/mach_dist_gui.py +++ b/src/Mod/Machining_Distortion/mach_dist_gui.py @@ -14,13 +14,13 @@ from ApplyingBC_IC import ApplyingBC_IC from calculix_postprocess import calculix_postprocess import FreeCAD,Fem,Part - +homepath = os.path.expanduser("~") class MyForm(QtGui.QDialog,Ui_dialog): def __init__(self, parent=None): QtGui.QDialog.__init__(self, parent) self.setupUi(self) - os.chdir("c:/") + os.chdir(homepath) #Define some global variables self.filename = QtCore.QString("") self.dirname = QtCore.QString("") @@ -188,14 +188,17 @@ class MyForm(QtGui.QDialog,Ui_dialog): self.button_select_file.setEnabled(False) self.button_select_output.setEnabled(False) self.button_start_calculation.setEnabled(False) - os.chdir("/") + os.chdir(homepath) ##Get values from the GUI if ( os.path.exists(str(self.dirname)) ): - os.chdir("c:/") + os.chdir(homepath) shutil.rmtree(str(self.dirname)) os.mkdir(str(self.dirname)) batch = open(str(self.dirname + "/" + "lcmt_CALCULIX_Calculation_batch.bat"),'wb') + batch.write("#!/bin/bash\n") + batch.write("export CCX_NPROC=4\n") + #Tell calculixs solver spooles how many cpus to use #batch.write("export CCX_NPROC=" + str(self.params.GetInt("NumberCPUs")) + "\n") #If we have a tcsh @@ -233,6 +236,7 @@ class MyForm(QtGui.QDialog,Ui_dialog): ltc6 = self.JobTable.item(job,27).data(QtCore.Qt.DisplayRole).toDouble()[0] plate_thickness = self.JobTable.item(job,28).data(QtCore.Qt.DisplayRole).toDouble()[0] filename_without_suffix = self.JobTable.item(job,0).text().split("/").takeLast().split(".")[0] + print current_file_name meshobject = Fem.read(str(current_file_name)) #Perform PCA Fem.SMESH_PCA(meshobject) @@ -267,9 +271,11 @@ class MyForm(QtGui.QDialog,Ui_dialog): #Now lets check if the part is still in the billet due to the rotation. If not, we directly skip to the next rotation value if(Fem.checkBB(meshobject,translation,plate_thickness)): print "Too heavy rotations" + print str(plate_thickness) l= l + z_rot_intervall continue print "it seems that nothing changed" + print str(plate_thickness) #Use the placedment as optional argument for the write() method #translated_mesh.setTransform(translation) Case_Dir = str(self.dirname) + "/" + filename_without_suffix + "/" + filename_without_suffix +\ @@ -283,7 +289,7 @@ class MyForm(QtGui.QDialog,Ui_dialog): os.mkdir(str(Case_Dir)) - os.chdir("c:/") + os.chdir(homepath) #Lets generate a sigini Input Deck for the calculix user subroutine sigini_input = open (str(Case_Dir + "/" + "sigini_input.txt"),'wb') @@ -309,103 +315,128 @@ class MyForm(QtGui.QDialog,Ui_dialog): meshobject.writeABAQUS(str(Case_Dir + "/" + "geometry_fe_input.inp"), translation) ApplyingBC_IC(Case_Dir, young_modulus,poisson_ratio,node_numbers[0],node_numbers[1],node_numbers[2]) #Now lets generate a LSF Job-File to be used by the Airbus Clusters - lsf_input = open (str(Case_Dir + "/" + "job.lsf"),"wb") - lsf_input.write("#!/bin/bash\n") - lsf_input.write("export CCX_NPROC=" + str(self.params.GetInt("NumberCPUs")) + "\n") - lsf_input.write("#BSUB -n "+ str(self.params.GetInt("NumberCPUs")) + "\n") - lsf_input.write("#BSUB -W 10:00\n") - lsf_input.write("#BSUB -o %J.out\n") - lsf_input.write("#BSUB -e %J.err\n") - lsf_input.write("#BSUB -J calculix\n") - lsf_input.write("#BSUB -q loc_all_hiio\n") - lsf_input.write(str("datadir=\"" + self.params.GetString("Linux Home Path") + "/" + self.dirname[str(self.dirname).rfind("/")+1:] + "/" + filename_without_suffix + "/" + filename_without_suffix + - "_"+"x_rot"+ str(int(j))+ - "_"+"y_rot"+ str(int(k))+ - "_"+"z_rot"+ str(int(l))+ - "_"+"z_l"+ str(int(i)) + "\"\n")) - lsf_input.write("cd $datadir\n") - lsf_input.write(self.params.GetString("Solver Link") + " -i final_fe_input\n") - lsf_input.close() - - batch.write(str("cd \"" + self.params.GetString("Linux Home Path") + "/" + self.dirname[str(self.dirname).rfind("/")+1:] + "/" + filename_without_suffix + "/" + filename_without_suffix + - "_"+"x_rot"+ str(int(j))+ - "_"+"y_rot"+ str(int(k))+ - "_"+"z_rot"+ str(int(l))+ - "_"+"z_l"+ str(int(i)) + "\"\n")) - batch.write("job.lsf\n") + #lsf_input = open (str(Case_Dir + "/" + "job.lsf"),"wb") + #lsf_input.write("#!/bin/bash\n") + #lsf_input.write("export CCX_NPROC=" + str(self.params.GetInt("NumberCPUs")) + "\n") + #lsf_input.write("#BSUB -n "+ str(self.params.GetInt("NumberCPUs")) + "\n") + #lsf_input.write("#BSUB -W 10:00\n") + #lsf_input.write("#BSUB -o %J.out\n") + #lsf_input.write("#BSUB -e %J.err\n") + #lsf_input.write("#BSUB -J calculix\n") + #lsf_input.write("#BSUB -q loc_dev_par\n") + #lsf_input.write(str("datadir=\"" + homepath + "/" + self.dirname[str(self.dirname).rfind("/")+1:] + "/" + filename_without_suffix + "/" + filename_without_suffix + + #"_"+"x_rot"+ str(int(j))+ + #"_"+"y_rot"+ str(int(k))+ + #"_"+"z_rot"+ str(int(l))+ + #"_"+"z_l"+ str(int(i)) + "\"\n")) + #lsf_input.write("cd $datadir\n") + #lsf_input.write("ccx -i geometry_fe_input\n") + #lsf_input.close() + batch.write("cd \"" + str(Case_Dir) + "\"\n") + batch.write("ccx -i geometry_fe_input\n") l= l + z_rot_intervall k = k + y_rot_intervall j = j + x_rot_intervall i = i+ z_offset_intervall - print "Ale Schleifen beendet" - batch.write("cd \"" + self.params.GetString("Linux Home Path") + "\"\n") - batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"sigini_output.txt\" -exec rm -f {} \;\n") - batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"*.out\" -exec rm -f {} \;\n") - batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"*.err\" -exec rm -f {} \;\n") - batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"*.dat\" -exec rm -f {} \;\n") - batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"*.sta\" -exec rm -f {} \;\n") - batch.write("tar cf \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + ".tar\" \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\"\n")) - batch.write("rm -rf \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\"\n") + batch.write("cd \"" + homepath + "\"\n") + #batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"sigini_output.txt\" -exec rm -f {} \;\n") + #batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"*.out\" -exec rm -f {} \;\n") + #batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"*.err\" -exec rm -f {} \;\n") + #batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"*.dat\" -exec rm -f {} \;\n") + #batch.write("find \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\" -name \"*.sta\" -exec rm -f {} \;\n") + #batch.write("tar cf \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + ".tar\" \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\"\n")) + #batch.write("rm -rf \"" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "\"\n") batch.close() - os.chdir("c:/") + os.chdir(homepath) fnull = open(os.devnull, 'w') - #Generate the full zip name: - zipname = tempfile.gettempdir() + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".zip" - #Check if the zip file already exists. If yes, then we have to remove it - if os.path.exists(zipname): - try: - os.remove(zipname) - except Exception,e: - print e - - #Zip the whole directory structure now and save the zip file in the temp folder for further processing - commandline = FreeCAD.getHomePath() + "bin/7z a -tzip -mx=0 " + "\"" + zipname + "\" " + "\"" + str(self.dirname) + "\"" - result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) - #somehow we have to check for a false return code! - if not result: - shutil.rmtree(str(self.dirname)) - - #Now send the zip file to the server for calculation - commandline = FreeCAD.getHomePath() + "bin/pscp -r -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ - "\"" + zipname + "\" " + self.params.GetString("Servername") + ":" + self.params.GetString("Linux Home Path") - result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) - #Now unzip, change into the directory and start the batch file - commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ - self.params.GetString("Servername") + " unzip -o \"" + self.params.GetString("Linux Home Path") + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".zip\"" + # #Generate the full tar name: + # tarname = homepath + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".tar" + # #Check if the tar file already exists. If yes, then we have to remove it + # if os.path.exists(tarname): + # try: + # os.remove(tarname) + # except Exception,e: + # print e + # + # #tar the whole directory structure now and save the zip file in the temp folder for further processing + # commandline = "tar cf \"" + tarname + "\" \"" + str(self.dirname) + "\" \n" + # print commandline + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # #somehow we have to check for a false return code! + # if not result: + # shutil.rmtree(str(self.dirname)) + # + # #Now send the zip file to the server for calculation + # commandline = "scp -r \"" + tarname + "\" " + self.params.GetString("Servername") + ":" + homepath + # print commandline + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # + # #Now untar, change into the directory and start the batch file + # commandline = "ssh " + self.params.GetString("Servername") + " tar -xf \"" + tarname + "\"" + # print commandline + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # + # commandline = "ssh " + self.params.GetString("Servername") + " chmod +x -R \"" + homepath + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + "\"" + # print commandline + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # + # #Now we copy the batch file one level ahead as otherwise we cannot delete the calculation folder + # commandline = "ssh " + self.params.GetString("Servername") + " mv \"" + homepath + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + "/lcmt_CALCULIX_Calculation_batch.bat\" " + homepath + # print commandline + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # + #Set proper rights on the batch file + commandline = "chmod +x \"" + str(self.dirname) + "/lcmt_CALCULIX_Calculation_batch.bat\"" print commandline result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) - commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ - self.params.GetString("Servername") + " chmod +x -R \"" + self.params.GetString("Linux Home Path") + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + "\"" - print commandline - result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) - commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ - self.params.GetString("Servername") + " chmod +x -R \"" + self.params.GetString("Linux Home Path") + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + "\"" - print commandline - result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) - #Now we copy the batch file one level ahead as otherwise we cannot delete the calculation folder - commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ - self.params.GetString("Servername") + " mv \"" + self.params.GetString("Linux Home Path") + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + "/lcmt_CALCULIX_Calculation_batch.bat\" " + self.params.GetString("Linux Home Path") - print commandline + #Start the Batch-File + commandline = "\"" + str(self.dirname) + "/lcmt_CALCULIX_Calculation_batch.bat\"" + print commandline result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) + # + + + #Now send the zip file to the server for calculation + # commandline = FreeCAD.getHomePath() + "bin/pscp -r -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ + # "\"" + zipname + "\" " + self.params.GetString("Servername") + ":" + self.params.GetString("Linux Home Path") + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # #Now unzip, change into the directory and start the batch file + # commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ + # self.params.GetString("Servername") + " unzip -o \"" + self.params.GetString("Linux Home Path") + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".zip\"" + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ + # self.params.GetString("Servername") + " chmod +x -R \"" + self.params.GetString("Linux Home Path") + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + "\"" + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ + # self.params.GetString("Servername") + " chmod +x -R \"" + self.params.GetString("Linux Home Path") + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + "\"" + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # #Now we copy the batch file one level ahead as otherwise we cannot delete the calculation folder + # commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ + # self.params.GetString("Servername") + " mv \"" + self.params.GetString("Linux Home Path") + "/" + str(self.dirname)[str(self.dirname).rfind("/")+1:] + "/lcmt_CALCULIX_Calculation_batch.bat\" " + self.params.GetString("Linux Home Path") + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) + # #Start the Batch-File + # commandline = FreeCAD.getHomePath() + "bin/plink -batch -l "+ self.params.GetString("Linux User Name") + " -pw " + self.params.GetString("Linux Password") + " " + \ + # self.params.GetString("Servername") + " " + self.params.GetString("Linux Home Path") + "lcmt_CALCULIX_Calculation_batch.bat" + # result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) #commandline = "plink -batch -l UN -pw PW dynabox \'/home/rmjzettl/" + str(self.dirname[str(self.dirname).rfind("/")+1:] + "/") + "lcmt_CALCULIX_Calculation_batch.bat\'" - #result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) + #result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) #commandline = "pscp -r -l UN -pw PW dynabox:\"/home/rmjzettl/"+ str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".tar\" " + str(self.dirname)[0:3] - #result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) + #result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) #commandline = "plink -batch -l UN -pw PW dynabox rm -f \"/home/rmjzettl/"+ str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".tar\"" - #result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) + #result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) #commandline = "plink -batch -l UN -pw PW dynabox rm -f \"/home/rmjzettl/"+ str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".zip\"" - #result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) + #result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) #commandline = "7z x \"" + str(self.dirname)[0:3] + str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".tar\" -o\"" + str(self.dirname[0:str(self.dirname).rfind("/")]) + "\"" - #result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) + #result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) #commandline = "del /Q \"" + str(self.dirname)[0:3] + str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".tar\"" - #result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) + #result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) #commandline = "del /Q \"" + str(self.dirname)[0:3] + str(self.dirname)[str(self.dirname).rfind("/")+1:] + ".zip\"" - #result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) + #result = subprocess.call(commandline, shell = False, stdout = fnull, stderr = fnull) fnull.close() #Reset the GUI - os.chdir("c:/") + os.chdir(homepath) #Reset the table to be fully empty i = self.JobTable.rowCount() while i > 0: diff --git a/src/Mod/Machining_Distortion/machdist_rc.py b/src/Mod/Machining_Distortion/machdist_rc.py old mode 100644 new mode 100755 diff --git a/src/Mod/Machining_Distortion/postprocess.py b/src/Mod/Machining_Distortion/postprocess.py old mode 100644 new mode 100755 index 79fa4a9d7..250c81414 --- a/src/Mod/Machining_Distortion/postprocess.py +++ b/src/Mod/Machining_Distortion/postprocess.py @@ -2,17 +2,22 @@ # Form implementation generated from reading ui file 'postprocess.ui' # -# Created: Wed Jan 26 13:34:56 2011 -# by: PyQt4 UI code generator 4.7.4 +# Created: Mon Aug 20 15:18:09 2012 +# by: PyQt4 UI code generator 4.8.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + _fromUtf8 = lambda s: s + class Ui_dialog(object): def setupUi(self, dialog): - dialog.setObjectName("dialog") - dialog.resize(380, 170) + dialog.setObjectName(_fromUtf8("dialog")) + dialog.resize(425, 240) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) @@ -20,76 +25,70 @@ class Ui_dialog(object): dialog.setSizePolicy(sizePolicy) dialog.setMinimumSize(QtCore.QSize(0, 0)) self.gridLayout_2 = QtGui.QGridLayout(dialog) - self.gridLayout_2.setObjectName("gridLayout_2") - self.groupBox_2 = QtGui.QGroupBox(dialog) - self.groupBox_2.setObjectName("groupBox_2") - self.gridLayout = QtGui.QGridLayout(self.groupBox_2) - self.gridLayout.setObjectName("gridLayout") - self.check_fly_to_buy_7 = QtGui.QCheckBox(self.groupBox_2) - self.check_fly_to_buy_7.setMinimumSize(QtCore.QSize(148, 18)) - self.check_fly_to_buy_7.setChecked(False) - self.check_fly_to_buy_7.setObjectName("check_fly_to_buy_7") - self.gridLayout.addWidget(self.check_fly_to_buy_7, 0, 0, 1, 1) - self.check_fly_to_buy_4 = QtGui.QCheckBox(self.groupBox_2) - self.check_fly_to_buy_4.setMinimumSize(QtCore.QSize(148, 18)) - self.check_fly_to_buy_4.setChecked(False) - self.check_fly_to_buy_4.setObjectName("check_fly_to_buy_4") - self.gridLayout.addWidget(self.check_fly_to_buy_4, 0, 1, 1, 1) - spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) - self.gridLayout.addItem(spacerItem, 1, 0, 1, 1) - spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) - self.gridLayout.addItem(spacerItem1, 1, 1, 1, 1) - self.check_fly_to_buy_8 = QtGui.QCheckBox(self.groupBox_2) - self.check_fly_to_buy_8.setMinimumSize(QtCore.QSize(148, 18)) - self.check_fly_to_buy_8.setChecked(False) - self.check_fly_to_buy_8.setObjectName("check_fly_to_buy_8") - self.gridLayout.addWidget(self.check_fly_to_buy_8, 2, 0, 1, 1) - self.check_fly_to_buy_2 = QtGui.QCheckBox(self.groupBox_2) - self.check_fly_to_buy_2.setMinimumSize(QtCore.QSize(148, 18)) - self.check_fly_to_buy_2.setChecked(False) - self.check_fly_to_buy_2.setObjectName("check_fly_to_buy_2") - self.gridLayout.addWidget(self.check_fly_to_buy_2, 2, 1, 1, 1) - spacerItem2 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) - self.gridLayout.addItem(spacerItem2, 3, 0, 1, 1) - spacerItem3 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) - self.gridLayout.addItem(spacerItem3, 3, 1, 1, 1) - self.check_fly_to_buy_5 = QtGui.QCheckBox(self.groupBox_2) - self.check_fly_to_buy_5.setMinimumSize(QtCore.QSize(148, 18)) - self.check_fly_to_buy_5.setChecked(False) - self.check_fly_to_buy_5.setObjectName("check_fly_to_buy_5") - self.gridLayout.addWidget(self.check_fly_to_buy_5, 4, 0, 1, 1) - self.check_fly_to_buy_3 = QtGui.QCheckBox(self.groupBox_2) - self.check_fly_to_buy_3.setMinimumSize(QtCore.QSize(148, 18)) - self.check_fly_to_buy_3.setChecked(False) - self.check_fly_to_buy_3.setObjectName("check_fly_to_buy_3") - self.gridLayout.addWidget(self.check_fly_to_buy_3, 4, 1, 1, 1) - self.gridLayout_2.addWidget(self.groupBox_2, 0, 0, 1, 2) + self.gridLayout_2.setObjectName(_fromUtf8("gridLayout_2")) self.buttonBox = QtGui.QDialogButtonBox(dialog) self.buttonBox.setOrientation(QtCore.Qt.Vertical) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) - self.buttonBox.setObjectName("buttonBox") - self.gridLayout_2.addWidget(self.buttonBox, 0, 2, 1, 1) + self.buttonBox.setObjectName(_fromUtf8("buttonBox")) + self.gridLayout_2.addWidget(self.buttonBox, 0, 3, 1, 1) self.button_select_results_folder = QtGui.QPushButton(dialog) - self.button_select_results_folder.setObjectName("button_select_results_folder") - self.gridLayout_2.addWidget(self.button_select_results_folder, 1, 0, 1, 1) + self.button_select_results_folder.setObjectName(_fromUtf8("button_select_results_folder")) + self.gridLayout_2.addWidget(self.button_select_results_folder, 3, 0, 1, 1) self.button_start_postprocessing = QtGui.QPushButton(dialog) self.button_start_postprocessing.setEnabled(False) self.button_start_postprocessing.setMinimumSize(QtCore.QSize(0, 23)) - self.button_start_postprocessing.setObjectName("button_start_postprocessing") - self.gridLayout_2.addWidget(self.button_start_postprocessing, 1, 1, 1, 1) + self.button_start_postprocessing.setObjectName(_fromUtf8("button_start_postprocessing")) + self.gridLayout_2.addWidget(self.button_start_postprocessing, 3, 1, 1, 1) + self.groupBox_2 = QtGui.QGroupBox(dialog) + self.groupBox_2.setObjectName(_fromUtf8("groupBox_2")) + self.verticalLayout_2 = QtGui.QVBoxLayout(self.groupBox_2) + self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2")) + self.check_abs_disp_x = QtGui.QRadioButton(self.groupBox_2) + self.check_abs_disp_x.setObjectName(_fromUtf8("check_abs_disp_x")) + self.verticalLayout_2.addWidget(self.check_abs_disp_x) + spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) + self.verticalLayout_2.addItem(spacerItem) + self.check_abs_disp_y = QtGui.QRadioButton(self.groupBox_2) + self.check_abs_disp_y.setObjectName(_fromUtf8("check_abs_disp_y")) + self.verticalLayout_2.addWidget(self.check_abs_disp_y) + spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) + self.verticalLayout_2.addItem(spacerItem1) + self.check_abs_disp_z = QtGui.QRadioButton(self.groupBox_2) + self.check_abs_disp_z.setObjectName(_fromUtf8("check_abs_disp_z")) + self.verticalLayout_2.addWidget(self.check_abs_disp_z) + self.gridLayout_2.addWidget(self.groupBox_2, 0, 0, 1, 1) + self.groupBox_3 = QtGui.QGroupBox(dialog) + self.groupBox_3.setObjectName(_fromUtf8("groupBox_3")) + self.verticalLayout_3 = QtGui.QVBoxLayout(self.groupBox_3) + self.verticalLayout_3.setObjectName(_fromUtf8("verticalLayout_3")) + self.check_rot_x = QtGui.QRadioButton(self.groupBox_3) + self.check_rot_x.setObjectName(_fromUtf8("check_rot_x")) + self.verticalLayout_3.addWidget(self.check_rot_x) + spacerItem2 = QtGui.QSpacerItem(20, 33, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) + self.verticalLayout_3.addItem(spacerItem2) + self.check_rot_y = QtGui.QRadioButton(self.groupBox_3) + self.check_rot_y.setObjectName(_fromUtf8("check_rot_y")) + self.verticalLayout_3.addWidget(self.check_rot_y) + spacerItem3 = QtGui.QSpacerItem(20, 34, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) + self.verticalLayout_3.addItem(spacerItem3) + self.check_rot_z = QtGui.QRadioButton(self.groupBox_3) + self.check_rot_z.setObjectName(_fromUtf8("check_rot_z")) + self.verticalLayout_3.addWidget(self.check_rot_z) + self.gridLayout_2.addWidget(self.groupBox_3, 0, 1, 1, 1) self.retranslateUi(dialog) QtCore.QMetaObject.connectSlotsByName(dialog) def retranslateUi(self, dialog): dialog.setWindowTitle(QtGui.QApplication.translate("dialog", "Machining Distortion Prediction", None, QtGui.QApplication.UnicodeUTF8)) - self.groupBox_2.setTitle(QtGui.QApplication.translate("dialog", "Output Elements", None, QtGui.QApplication.UnicodeUTF8)) - self.check_fly_to_buy_7.setText(QtGui.QApplication.translate("dialog", "Max Displacement X", None, QtGui.QApplication.UnicodeUTF8)) - self.check_fly_to_buy_4.setText(QtGui.QApplication.translate("dialog", "Min Displacement X", None, QtGui.QApplication.UnicodeUTF8)) - self.check_fly_to_buy_8.setText(QtGui.QApplication.translate("dialog", "Max Displacement Y", None, QtGui.QApplication.UnicodeUTF8)) - self.check_fly_to_buy_2.setText(QtGui.QApplication.translate("dialog", "Min Displacement Y", None, QtGui.QApplication.UnicodeUTF8)) - self.check_fly_to_buy_5.setText(QtGui.QApplication.translate("dialog", "Max Displacement Z", None, QtGui.QApplication.UnicodeUTF8)) - self.check_fly_to_buy_3.setText(QtGui.QApplication.translate("dialog", "Min Displacement Z", None, QtGui.QApplication.UnicodeUTF8)) self.button_select_results_folder.setText(QtGui.QApplication.translate("dialog", "Select Results Folder", None, QtGui.QApplication.UnicodeUTF8)) self.button_start_postprocessing.setText(QtGui.QApplication.translate("dialog", "Start Postprocessing", None, QtGui.QApplication.UnicodeUTF8)) + self.groupBox_2.setTitle(QtGui.QApplication.translate("dialog", "Select Z-Axis", None, QtGui.QApplication.UnicodeUTF8)) + self.check_abs_disp_x.setText(QtGui.QApplication.translate("dialog", "Absolute Displacement X", None, QtGui.QApplication.UnicodeUTF8)) + self.check_abs_disp_y.setText(QtGui.QApplication.translate("dialog", "Absolute Displacement Y", None, QtGui.QApplication.UnicodeUTF8)) + self.check_abs_disp_z.setText(QtGui.QApplication.translate("dialog", "Absolute Displacement Z", None, QtGui.QApplication.UnicodeUTF8)) + self.groupBox_3.setTitle(QtGui.QApplication.translate("dialog", "Select Y-Axis", None, QtGui.QApplication.UnicodeUTF8)) + self.check_rot_x.setText(QtGui.QApplication.translate("dialog", "Rotation around X-Axis", None, QtGui.QApplication.UnicodeUTF8)) + self.check_rot_y.setText(QtGui.QApplication.translate("dialog", "Rotation around Y-Axis", None, QtGui.QApplication.UnicodeUTF8)) + self.check_rot_z.setText(QtGui.QApplication.translate("dialog", "Rotation around Z-Axis", None, QtGui.QApplication.UnicodeUTF8)) diff --git a/src/Mod/Machining_Distortion/postprocess.ui b/src/Mod/Machining_Distortion/postprocess.ui old mode 100644 new mode 100755 index f4d23a117..fdd46ed19 --- a/src/Mod/Machining_Distortion/postprocess.ui +++ b/src/Mod/Machining_Distortion/postprocess.ui @@ -6,8 +6,8 @@ 0 0 - 380 - 170 + 425 + 240 @@ -26,164 +26,7 @@ Machining Distortion Prediction - - - - Output Elements - - - - - - - 148 - 18 - - - - Max Displacement X - - - false - - - - - - - - 148 - 18 - - - - Min Displacement X - - - false - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - 148 - 18 - - - - Max Displacement Y - - - false - - - - - - - - 148 - 18 - - - - Min Displacement Y - - - false - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - 148 - 18 - - - - Max Displacement Z - - - false - - - - - - - - 148 - 18 - - - - Min Displacement Z - - - false - - - - - - - + Qt::Vertical @@ -193,14 +36,14 @@ - + Select Results Folder - + false @@ -216,6 +59,118 @@ + + + + Select Z-Axis + + + + + + Absolute Displacement X + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Absolute Displacement Y + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Absolute Displacement Z + + + + + + + + + + Select Y-Axis + + + + + + Rotation around X-Axis + + + + + + + Qt::Vertical + + + + 20 + 33 + + + + + + + + Rotation around Y-Axis + + + + + + + Qt::Vertical + + + + 20 + 34 + + + + + + + + Rotation around Z-Axis + + + + + + diff --git a/src/Mod/Machining_Distortion/postprocess_gui.py b/src/Mod/Machining_Distortion/postprocess_gui.py old mode 100644 new mode 100755 index b6c6392a3..cf5d3ef19 --- a/src/Mod/Machining_Distortion/postprocess_gui.py +++ b/src/Mod/Machining_Distortion/postprocess_gui.py @@ -102,34 +102,86 @@ class MyForm(QtGui.QDialog,Ui_dialog): def start_gnu_plot(self,list,lc_coeff,ltc_coeff): + filename = "graph" + title = "Absolut Displacement in " + x_axis_label ="" + y_axis_label="" + z_axis_label="" + #define all the different variations that could occur and assign proper variable names + if self.check_abs_disp_x.isChecked(): + filename = filename + "_max_disp_x" + title = title + "X vs. " + z_axis_label = "Abs Displacement in X-Direction" + abs_disp_column = 12 + if self.check_abs_disp_y.isChecked(): + filename = filename + "_max_disp_y" + title = title + "Y vs. " + z_axis_label = "Abs Displacement in Y-Direction" + abs_disp_column = 13 + if self.check_abs_disp_z.isChecked(): + filename = filename + "_max_disp_z" + title = title + "Z vs. " + z_axis_label = "Abs Displacement in Z-Direction" + abs_disp_column = 14 + + #The Z-Level Offset is fix and therefore the corresponding variables are predefined: + filename = filename + "_offset_z" + title = title + "Z-Level Offset " + x_axis_label = "Z-Offset" + offset_column = 1 + + if self.check_rot_x.isChecked(): + filename = filename + "_rotation_x" + title = title + "and Rotation around X-Axis" + y_axis_label = "Rotation around X-Axis" + rot_column = 2 + if self.check_rot_y.isChecked(): + filename = filename + "_rotation_y" + title = title + "and Rotation around Y-Axis" + y_axis_label = "Rotation around Y-Axis" + rot_column = 3 + if self.check_rot_z.isChecked(): + filename = filename + "_rotation_z" + title = title + "and Rotation around Z-Axis" + y_axis_label = "Rotation around Z-Axis" + rot_column = 4 + + + gnu_plot_input_file = open(str(self.dirname + "/gnu_plot_input.txt"),"wb") gnu_plot_input_file.write( "set term png\n" + - "set output \"max_disp_z.png\"\n"+ + "set output \"" + filename + ".png\"\n"+ "set surface\n" + "set grid\n"+ "set hidden3d\n"+ "set dgrid3d " + str(len(list)-1) + "," + str(len(list)-1) + ",100\n" + "set view 80,05,1.3,1.0\n"+ - "set title \"Abs Displacement in Z vs. Z-Level Offset and Rotation around Z-Axis\" 0,-2\n"+ + "set title \"" + title + "\" offset 0,-2\n"+ "show title\n"+ + "set label \"Fly to Buy Ratio = " + str( "set label \"L Coefficients used for the calculation:" + lc_coeff[0] + "," + lc_coeff[1] + "," + lc_coeff[2] + "," + lc_coeff[3] + "," + lc_coeff[4] + "," + lc_coeff[5][:-1] + "\" at screen 0.1, screen 0.95 left font \"Arial,8\"\n"+ "set label \"LT Coefficients used for the calculation:" + ltc_coeff[0] + "," + ltc_coeff[1] + "," + ltc_coeff[2] + "," + ltc_coeff[3] + "," + ltc_coeff[4] + "," + ltc_coeff[5][:-1] + "\" at screen 0.1, screen 0.93 left font \"Arial,8\"\n"+ - "set label \"Z-Offset\\nin [mm]\" at screen 0.5, screen 0.1 center rotate by 0\n"+ - "set label \"Rotation around Z-Axis\\nin [" + str(chr(248)) +"]\" at screen 0.91, screen 0.2 center rotate by 50\n"+ - "set label \"Max Displacement Z direction\\nin [mm]\" at screen 0.03, screen 0.5 center rotate by 90\n"+ + "set label \"" + x_axis_label + "\\nin [mm]\" at screen 0.5, screen 0.1 center rotate by 0\n"+ + "set label \"" + y_axis_label +"\\nin [" + str(chr(248)) +"]\" at screen 0.91, screen 0.2 center rotate by 50\n"+ + "set label \"" + z_axis_label + "\\nin [mm]\" at screen 0.03, screen 0.5 center rotate by 90\n"+ "set xtics in nomirror offset character 0,-0.5\n"+ - "splot \"postprocessing_input.txt\" u 1:4:14 with pm3d title \"\"\n" + + "splot \"postprocessing_input.txt\" u " + str(offset_column) + ":" + str(rot_column) + ":" + str(abs_disp_column) + " with pm3d title \"\"\n" + "exit" ) - - - + gnu_plot_input_file.close() os.chdir(str(self.dirname)) fnull = open(os.devnull, 'w') - commandline = FreeCAD.getHomePath() + "bin/gnuplot/gnuplot gnu_plot_input.txt" + commandline = FreeCAD.getHomePath() + "gnuplot gnu_plot_input.txt" result = subprocess.call(commandline, shell = True, stdout = fnull, stderr = fnull) fnull.close() - + self.button_start_postprocessing.setEnabled(False) + #Reset all radio buttons + self.check_rot_x.setChecked(False) + self.check_rot_y.setChecked(False) + self.check_rot_z.setChecked(False) + self.check_abs_disp_x.setChecked(False) + self.check_abs_disp_y.setChecked(False) + self.check_abs_disp_z.setChecked(False) diff --git a/src/Mod/Part/App/TopoShapePy.xml b/src/Mod/Part/App/TopoShapePy.xml index c144c1986..222bfd204 100644 --- a/src/Mod/Part/App/TopoShapePy.xml +++ b/src/Mod/Part/App/TopoShapePy.xml @@ -296,7 +296,12 @@ The parameter is a list of shapes. - Checks whether a point is inside or outside a given shape + Checks whether a point is inside or outside the shape. +isInside(App.Vector, float, Boolean) => Boolean +The App.Vector is the point you want to check if it's inside or not +float gives the tolerance +Boolean indicates if the point lying directly on a face is considered to be inside or not + diff --git a/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Groove.svg b/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Groove.svg old mode 100644 new mode 100755 index 28e52af97..e4aee8ca0 --- a/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Groove.svg +++ b/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Groove.svg @@ -15,7 +15,7 @@ id="svg2901" sodipodi:version="0.32" inkscape:version="0.48.3.1 r9886" - sodipodi:docname="PartDesign_Groove.svg" + sodipodi:docname="PartDesign_Groove_alt.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.1" inkscape:export-filename="/home/yorik/PartDesign_Groove.png" @@ -23,6 +23,17 @@ inkscape:export-ydpi="90"> + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inkscape:object-paths="true" + inkscape:object-nodes="true" + inkscape:snap-intersection-paths="true" /> @@ -202,7 +371,7 @@ image/svg+xml - + @@ -210,56 +379,41 @@ id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer"> - - - - - - - - - - + + + + + + diff --git a/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Pocket.svg b/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Pocket.svg old mode 100644 new mode 100755 index 17460ccbb..8000798e5 --- a/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Pocket.svg +++ b/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Pocket.svg @@ -134,11 +134,11 @@ @@ -486,6 +486,15 @@ id="linearGradient3698-9" xlink:href="#linearGradient3669-0" inkscape:collect="always" /> + @@ -514,7 +523,7 @@ image/svg+xml - + @@ -542,16 +551,16 @@ id="path3679" sodipodi:nodetypes="czc" /> - + diff --git a/src/Mod/PartDesign/Gui/TaskPatternRectangularParameters.cpp b/src/Mod/PartDesign/Gui/TaskPatternRectangularParameters.cpp index e836e6932..5ef0a2a96 100644 --- a/src/Mod/PartDesign/Gui/TaskPatternRectangularParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskPatternRectangularParameters.cpp @@ -44,7 +44,7 @@ using namespace Gui; /* TRANSLATOR PartDesignGui::TaskPatternRectangularParameters */ TaskPatternRectangularParameters::TaskPatternRectangularParameters(QWidget *parent) - : TaskBox(Gui::BitmapFactory().pixmap("document-new"),tr("TaskPatternRectangularParameters"),true, parent) + : TaskBox(Gui::BitmapFactory().pixmap("document-new"),tr("Parameters rectangular pattern"),true, parent) { // we need a separate container widget to add all controls to proxy = new QWidget(this); diff --git a/src/Mod/Sketcher/Gui/CommandCreateGeo.cpp b/src/Mod/Sketcher/Gui/CommandCreateGeo.cpp index 3822e1214..0a0184711 100644 --- a/src/Mod/Sketcher/Gui/CommandCreateGeo.cpp +++ b/src/Mod/Sketcher/Gui/CommandCreateGeo.cpp @@ -500,7 +500,7 @@ class DrawSketchHandlerLineSet: public DrawSketchHandler { public: DrawSketchHandlerLineSet() - : Mode(STATUS_SEEK_First),SegmentMode(SEGMENT_MODE_Line), + : Mode(STATUS_SEEK_First),SegmentMode(SEGMENT_MODE_Line), TransitionMode(TRANSITION_MODE_Free),suppressTransition(false),EditCurve(2), firstVertex(-1),firstCurve(-1),previousCurve(-1),previousPosId(Sketcher::none) {} virtual ~DrawSketchHandlerLineSet() {} @@ -517,7 +517,7 @@ public: SEGMENT_MODE_Arc, SEGMENT_MODE_Line }; - + enum TRANSITION_MODE { TRANSITION_MODE_Free, @@ -631,7 +631,7 @@ public: else EditCurve[1] = EditCurve[0] + EditCurve[1]; } - else if (TransitionMode == TRANSITION_MODE_Perpendicular_L || + else if (TransitionMode == TRANSITION_MODE_Perpendicular_L || TransitionMode == TRANSITION_MODE_Perpendicular_R) { Base::Vector2D Perpendicular(-dirVec.y,dirVec.x); EditCurve[1].ProjToLine(EditCurve[2] - EditCurve[0], Perpendicular); @@ -812,19 +812,19 @@ public: Sketcher::end : Sketcher::start; Sketcher::PointPos lastEndPosId = (SegmentMode == SEGMENT_MODE_Arc && startAngle > endAngle) ? Sketcher::start : Sketcher::end; - // in case of a tangency constraint, the coincident constraint is redundant + // in case of a tangency constraint, the coincident constraint is redundant std::string constrType = "Coincident"; - if (!suppressTransition) { - if (TransitionMode == TRANSITION_MODE_Tangent) - constrType = "Tangent"; - else if (TransitionMode == TRANSITION_MODE_Perpendicular_L || - TransitionMode == TRANSITION_MODE_Perpendicular_R) + if (!suppressTransition) { + if (TransitionMode == TRANSITION_MODE_Tangent) + constrType = "Tangent"; + else if (TransitionMode == TRANSITION_MODE_Perpendicular_L || + TransitionMode == TRANSITION_MODE_Perpendicular_R) constrType = "Perpendicular"; - } + } Gui::Command::doCommand(Gui::Command::Doc, "App.ActiveDocument.%s.addConstraint(Sketcher.Constraint('%s',%i,%i,%i,%i)) ", sketchgui->getObject()->getNameInDocument(), constrType.c_str(), - previousCurve, previousPosId, lastCurve, lastStartPosId); + previousCurve, previousPosId, lastCurve, lastStartPosId); if (Mode == STATUS_Close) { int firstGeoId; Sketcher::PointPos firstPosId; @@ -884,14 +884,14 @@ public: applyCursor(); Mode = STATUS_SEEK_Second; - if (SegmentMode == SEGMENT_MODE_Arc) { - TransitionMode = TRANSITION_MODE_Tangent; - EditCurve.resize(3); + if (SegmentMode == SEGMENT_MODE_Arc) { + TransitionMode = TRANSITION_MODE_Tangent; + EditCurve.resize(3); EditCurve[2] = EditCurve[0]; } else { - TransitionMode = TRANSITION_MODE_Free; - EditCurve.resize(2); + TransitionMode = TRANSITION_MODE_Free; + EditCurve.resize(2); } SegmentMode = SEGMENT_MODE_Line; EditCurve[1] = EditCurve[0]; @@ -912,7 +912,7 @@ protected: int previousCurve; Sketcher::PointPos previousPosId; std::vector sugConstr1, sugConstr2; - + Base::Vector2D CenterPoint; Base::Vector3d dirVec; float startAngle, endAngle, arcRadius; @@ -1077,7 +1077,7 @@ public: float dy = rx * sin(angle) + ry * cos(angle); EditCurve[i] = Base::Vector2D(CenterPoint.fX + dx, CenterPoint.fY + dy); } - + // Display radius and arc angle float radius = (onSketchPos - EditCurve[0]).Length(); @@ -1789,7 +1789,7 @@ CmdSketcherCreateFillet::CmdSketcherCreateFillet() sAppModule = "Sketcher"; sGroup = QT_TR_NOOP("Sketcher"); sMenuText = QT_TR_NOOP("Create fillet"); - sToolTipText = QT_TR_NOOP("Create a fillet between two lines or at a coincidental point"); + sToolTipText = QT_TR_NOOP("Create a fillet between two lines or at a coincident point"); sWhatsThis = sToolTipText; sStatusTip = sToolTipText; sPixmap = "Sketcher_CreateFillet"; diff --git a/src/WindowsInstaller/Bitmaps/BackgroundBitmap.bmp b/src/WindowsInstaller/Bitmaps/BackgroundBitmap.bmp index ac89dd19e..cfbf36ac8 100644 Binary files a/src/WindowsInstaller/Bitmaps/BackgroundBitmap.bmp and b/src/WindowsInstaller/Bitmaps/BackgroundBitmap.bmp differ