From 89cbf71abd74c6b7240380b97feb0815408ad791 Mon Sep 17 00:00:00 2001 From: Marcos Chaparro Date: Fri, 15 Dec 2023 15:12:16 -0300 Subject: [PATCH] luna_m600: UI update And also fix max voltage setting for 60V builds Signed-off-by: Marcos Chaparro --- hwconf/luna/m600/luna_tune_M600.qml | 1854 +++++++++++++++++++++++ hwconf/luna/m600/mcconf_luna_m600_60V.h | 2 +- hwconf/luna/m600/qmlui_luna_m600.c | 883 ++++++----- hwconf/luna/m600/qmlui_luna_m600.h | 2 +- 4 files changed, 2288 insertions(+), 453 deletions(-) create mode 100644 hwconf/luna/m600/luna_tune_M600.qml diff --git a/hwconf/luna/m600/luna_tune_M600.qml b/hwconf/luna/m600/luna_tune_M600.qml new file mode 100644 index 00000000..bdef7f28 --- /dev/null +++ b/hwconf/luna/m600/luna_tune_M600.qml @@ -0,0 +1,1854 @@ +import QtQuick 2.7 +import QtQuick.Controls 2.2 +import QtQuick.Layouts 1.3 +import Qt.labs.settings 1.0 as QSettings +import Vedder.vesc.vescinterface 1.0 +import Vedder.vesc.bleuart 1.0 +import Vedder.vesc.commands 1.0 +import Vedder.vesc.configparams 1.0 +import Vedder.vesc.utility 1.0 +Item { + id: mainItem + anchors.fill: parent + //anchors.margins: 10 //fix this + property BleUart mBle: VescIf.bleDevice() + property Commands mCommands: VescIf.commands() + property var fwVersion: mCommands.getFwVersion() + property ConfigParams mMcConf: VescIf.mcConfig() + property ConfigParams mAppConf: VescIf.appConfig() + property ConfigParams mInfoConf: VescIf.infoConfig() + property bool isHorizontal: width > height + property bool scheduleConfWrite: false + property bool fixedThrottle: false + property var parentTabBar: parent.tabBarItem + + Component.onCompleted: { + parentTabBar.visible = true + parentTabBar.enabled = true + readSettings() + } + + ColumnLayout { + anchors.fill: parent + + TabBar { + id: tabBar + currentIndex: swipeView.currentIndex + Layout.fillWidth: true + implicitWidth: 0 + clip: true + property int buttons: 5 + property int buttonWidth: 100 + + TabButton { + text: qsTr("Ride") + width: Math.max(tabBar.buttonWidth,tabBar.width / tabBar.buttons) + } + TabButton { + text: qsTr("Tune") + width: Math.max(tabBar.buttonWidth,tabBar.width / tabBar.buttons) + } + TabButton { + text: qsTr("Bike CFG") + width: Math.max(tabBar.buttonWidth,tabBar.width / tabBar.buttons) + } + TabButton { + text: qsTr("Logging") + width: Math.max(tabBar.buttonWidth,tabBar.width / tabBar.buttons) + } + TabButton { + text: qsTr("Firmware") + width: Math.max(tabBar.buttonWidth,tabBar.width / tabBar.buttons) + } + } + + SwipeView { + id: swipeView + currentIndex: tabBar.currentIndex + Layout.fillHeight: true + Layout.fillWidth: true + clip: true + Page { + RtDataSetup { + anchors.fill: parent + updateData: swipeView.currentIndex == 0 + } + } + Page { + background: Rectangle { + opacity: 0.0 + } + + ColumnLayout { + anchors.topMargin: 5 + anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + + TabBar { + id: profilesBar + currentIndex: profileSwipeView.currentIndex + property var lastProfileIndex: currentIndex + Layout.fillWidth: true + implicitWidth: 0 + clip: true + property int buttons: 3 + property int buttonWidth: 100 + + TabButton { + text: qsTr("Street\nlegal") + width: Math.max( + profilesBar.buttonWidth, + profilesBar.width / profilesBar.buttons) + } + TabButton { + text: qsTr("Trail") + width: Math.max( + profilesBar.buttonWidth, + profilesBar.width / profilesBar.buttons) + } + TabButton { + text: qsTr("Ludicrous") + width: Math.max( + profilesBar.buttonWidth, + profilesBar.width / profilesBar.buttons) + } + } + SwipeView { + id: profileSwipeView + currentIndex: profilesBar.currentIndex + Layout.fillHeight: true + Layout.fillWidth: true + clip: true + interactive: false + // Street Legal + Page + { + ColumnLayout { + anchors.topMargin: 5 + anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + + ScrollView { + clip: true + contentWidth: parent.width + Layout.fillHeight: true + + ColumnLayout { + anchors.topMargin: 5 + anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + visible: true + spacing: 5 + + Item { + // Spacer + Layout.fillWidth: true + Layout.fillHeight: true + } + + GroupBox { + id: streetTorqueBox + Layout.fillWidth: true + + RowLayout { + // anchors.topMargin: 5 + //anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: streetTorqueSlider + stepSize: 10 + from: 20 + value: 30 + to: 100 //max phase amps + Layout.fillWidth: true + + ToolTip { + parent: streetTorqueSlider.handle + visible: streetTorqueSlider.pressed + text: streetTorqueSlider.value.toFixed(1)+" A" + } + } + } + } + + GroupBox { + id: streetPasBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "PAS\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: streetPasSlider + stepSize: 1 + from: 0 + value: 20 + to: streetTorqueSlider.value.toFixed( + 1) //% of phase amps + Layout.fillWidth: true + + ToolTip { + parent: streetPasSlider.handle + visible: streetPasSlider.pressed + text: streetPasSlider.value.toFixed(1)+" A" + } + } + } + } + + GroupBox { + id: streetPowerBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Power" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: streetPowerSlider + stepSize: 250 + from: 0 + value: 500 + to: 2500 + Layout.fillWidth: true + + ToolTip { + parent: streetPowerSlider.handle + visible: streetPowerSlider.pressed + text: streetPowerSlider.value.toFixed(1)+" W" + } + } + } + } + + GroupBox { + id: streetSpeedBox + Layout.fillWidth: true + visible : false + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Speed\nLimit" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: streetSpeedSlider + stepSize: 1 + from: 20 + value: 20 + to: 60 + Layout.fillWidth: true + + ToolTip { + parent: streetSpeedSlider.handle + visible: streetSpeedSlider.pressed + text: streetSpeedSlider.value.toFixed(1) + (VescIf.useImperialUnits() ? " mph":" km/h") + } + } + } + } + + GroupBox { + id: streetThrottleResponseBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nResponse" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: streetThrottleResponseSlider + stepSize: 0.1 + from: 3 + value: 0.9 + to: 0.3 + Layout.fillWidth: true + + ToolTip { + parent: streetThrottleResponseSlider.handle + visible: streetThrottleResponseSlider.pressed + text: streetThrottleResponseSlider.value.toFixed(1)+" sec" + } + } + } + } + + GroupBox { + id: streetThrottleExpoBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nLinearity" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: streetThrottleExpoSlider + stepSize: 1 + from: 0 + value: 100 + to: 100 + Layout.fillWidth: true + + ToolTip { + parent: streetThrottleExpoSlider.handle + visible: streetThrottleExpoSlider.pressed + text: streetThrottleExpoSlider.value.toFixed(1)+"%" + } + } + } + } + GroupBox { + id: streetPasResponseBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "PAS\nResponse" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: streetPasResponseSlider + stepSize: 0.1 + from: 1.5 + value: 0.8 + to: 0.3 + Layout.fillWidth: true + + ToolTip { + parent: streetPasResponseSlider.handle + visible: streetPasResponseSlider.pressed + text: streetPasResponseSlider.value.toFixed(1)+" sec" + } + } + } + } + GroupBox { + id: streetFWExpoBox + Layout.fillWidth: true + RowLayout { + anchors.fill: parent + clip: false + spacing: 5 + Text { + text: "Field\nWeakening" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: streetFWSlider + stepSize: 1 + from: 0 + value: 2 + to: 7 + Layout.fillWidth: true + ToolTip { + parent: streetFWSlider.handle + visible: streetFWSlider.pressed + text: streetFWSlider.value.toFixed(1)+" A" + } + } + } + } + GroupBox { + id: streetFixedThrottleBox + Layout.fillWidth: true + RowLayout { + anchors.fill: parent + clip: false + spacing: 5 + Text { + text: "Fixed Throttle\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + CheckBox { + id: streetFixedThrottleCheckbox + checked: false + Layout.fillWidth: true + } + } + } + } + } + } + } + + // Trail + Page { + ColumnLayout { + anchors.topMargin: 5 + anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + + ScrollView { + clip: true + contentWidth: parent.width + Layout.fillHeight: true + + ColumnLayout { + anchors.topMargin: 5 + anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + + Item { + // Spacer + Layout.fillWidth: true + Layout.fillHeight: true + } + + GroupBox { + id: trailTorqueBox + Layout.fillWidth: true + + RowLayout { + // anchors.topMargin: 5 + //anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: trailTorqueSlider + stepSize: 10 + from: 20 + value: 70 + to: 100 //max phase amps + Layout.fillWidth: true + + ToolTip { + parent: trailTorqueSlider.handle + visible: trailTorqueSlider.pressed + text: trailTorqueSlider.value.toFixed(1)+" A" + } + } + } + } + + GroupBox { + id: trailPasBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "PAS\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: trailPasSlider + stepSize: 1 + from: 0 + value: 60 + to: trailTorqueSlider.value.toFixed( + 1) //% of phase amps + Layout.fillWidth: true + + ToolTip { + parent: trailPasSlider.handle + visible: trailPasSlider.pressed + text: trailPasSlider.value.toFixed(1)+" A" + } + } + } + } + + GroupBox { + id: trailPowerBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Power" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: trailPowerSlider + stepSize: 250 + from: 0 + value: 2000 + to: 2500 + Layout.fillWidth: true + + ToolTip { + parent: trailPowerSlider.handle + visible: trailPowerSlider.pressed + text: trailPowerSlider.value.toFixed(1)+" W" + } + } + } + } + + GroupBox { + id: trailSpeedBox + Layout.fillWidth: true + visible : false + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Speed\nLimit" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: trailSpeedSlider + stepSize: 1 + from: 20 + value: 60 + to: 60 + Layout.fillWidth: true + + ToolTip { + parent: trailSpeedSlider.handle + visible: trailSpeedSlider.pressed + text: trailSpeedSlider.value.toFixed(1) + (VescIf.useImperialUnits() ? " mph":" km/h") + } + } + } + } + + GroupBox { + id: trailThrottleResponseBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nResponse" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: trailThrottleResponseSlider + stepSize: 0.1 + from: 3 + value: 0.4 + to: 0.3 + Layout.fillWidth: true + + ToolTip { + parent: trailThrottleResponseSlider.handle + visible: trailThrottleResponseSlider.pressed + text: trailThrottleResponseSlider.value.toFixed(1)+" sec" + } + } + } + } + + GroupBox { + id: trailThrottleExpoBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nLinearity" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: trailThrottleExpoSlider + stepSize: 1 + from: 0 + value: 100 + to: 100 + Layout.fillWidth: true + + ToolTip { + parent: trailThrottleExpoSlider.handle + visible: trailThrottleExpoSlider.pressed + text: trailThrottleExpoSlider.value.toFixed(1)+"%" + } + } + } + } + GroupBox { + id: trailPasResponseBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "PAS\nResponse" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: trailPasResponseSlider + stepSize: 0.1 + from: 1.5 + value: 0.6 + to: 0.3 + Layout.fillWidth: true + + ToolTip { + parent: trailPasResponseSlider.handle + visible: trailPasResponseSlider.pressed + text: trailPasResponseSlider.value.toFixed(1)+" sec" + } + } + } + } + GroupBox { + id: trailFWExpoBox + Layout.fillWidth: true + RowLayout { + anchors.fill: parent + clip: false + spacing: 5 + Text { + text: "Field\nWeakening" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: trailFWSlider + stepSize: 1 + from: 0 + value: 7 + to: 7 + Layout.fillWidth: true + ToolTip { + parent: trailFWSlider.handle + visible: trailFWSlider.pressed + text: trailFWSlider.value.toFixed(1)+" A" + } + } + } + } + GroupBox { + id: trailFixedThrottleBox + Layout.fillWidth: true + RowLayout { + anchors.fill: parent + clip: false + spacing: 5 + Text { + text: "Fixed Throttle\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + CheckBox { + id: trailFixedThrottleCheckbox + checked: false + Layout.fillWidth: true + } + } + } + } + } + } + } + + // Ludicrous + Page { + ColumnLayout { + anchors.topMargin: 5 + anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + + ScrollView { + clip: true + contentWidth: parent.width + Layout.fillHeight: true + + ColumnLayout { + anchors.topMargin: 5 + anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + + Item { + // Spacer + Layout.fillWidth: true + Layout.fillHeight: true + } + + GroupBox { + id: torqueBox + Layout.fillWidth: true + + RowLayout { + // anchors.topMargin: 5 + //anchors.bottomMargin: 1 + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: torqueSlider + stepSize: 10 + from: 20 + value: 100 + to: 100 //max phase amps + Layout.fillWidth: true + + ToolTip { + parent: torqueSlider.handle + visible: torqueSlider.pressed + text: torqueSlider.value.toFixed(1)+" A" + } + } + } + } + + GroupBox { + id: pasBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "PAS\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: pasSlider + stepSize: 1 + from: 0 + value: 90 + to: torqueSlider.value.toFixed( + 1) //% of phase amps + Layout.fillWidth: true + + ToolTip { + parent: pasSlider.handle + visible: pasSlider.pressed + text: pasSlider.value.toFixed(1)+" A" + } + } + } + } + + GroupBox { + id: powerBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Power" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: powerSlider + stepSize: 250 + from: 0 + value: 2500 + to: 2500 + Layout.fillWidth: true + + ToolTip { + parent: powerSlider.handle + visible: powerSlider.pressed + text: powerSlider.value.toFixed(1)+" W" + } + } + } + } + + GroupBox { + id: speedBox + Layout.fillWidth: true + visible : false + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Speed\nLimit" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: speedSlider + stepSize: 1 + from: 20 + value: 60 + to: 60 + Layout.fillWidth: true + + ToolTip { + parent: speedSlider.handle + visible: speedSlider.pressed + text: speedSlider.value.toFixed(1) + (VescIf.useImperialUnits() ? " mph":" km/h") + } + } + } + } + + GroupBox { + id: throttleResponseBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nResponse" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: throttleResponseSlider + stepSize: 0.1 + from: 3 + value: 0.3 + to: 0.3 + Layout.fillWidth: true + + ToolTip { + parent: throttleResponseSlider.handle + visible: throttleResponseSlider.pressed + text: throttleResponseSlider.value.toFixed(1)+" sec" + } + } + } + } + + GroupBox { + id: throttleExpoBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "Throttle\nLinearity" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: throttleExpoSlider + stepSize: 1 + from: 0 + value: 95 + to: 100 + Layout.fillWidth: true + + ToolTip { + parent: throttleExpoSlider.handle + visible: throttleExpoSlider.pressed + text: throttleExpoSlider.value.toFixed(1)+"%" + } + } + } + } + GroupBox { + id: pasResponseBox + Layout.fillWidth: true + + RowLayout { + anchors.fill: parent + + clip: false + spacing: 5 + Text { + text: "PAS\nResponse" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: pasResponseSlider + stepSize: 0.1 + from: 1.5 + value: 0.3 + to: 0.3 + Layout.fillWidth: true + + ToolTip { + parent: pasResponseSlider.handle + visible: pasResponseSlider.pressed + text: pasResponseSlider.value.toFixed(1)+" sec" + } + } + } + } + GroupBox { + id: fWExpoBox + Layout.fillWidth: true + RowLayout { + anchors.fill: parent + clip: false + spacing: 5 + Text { + text: "Field\nWeakening" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + Slider { + id: fWSlider + stepSize: 1 + from: 0 + value: 7 + to: 7 + Layout.fillWidth: true + ToolTip { + parent: fWSlider.handle + visible: fWSlider.pressed + text: fWSlider.value.toFixed(1)+" A" + } + } + } + } + GroupBox { + id: fixedThrottleBox + Layout.fillWidth: true + RowLayout { + anchors.fill: parent + clip: false + spacing: 5 + Text { + text: "Fixed Throttle\nAmps" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + CheckBox { + id: fixedThrottleCheckbox + checked: false + Layout.fillWidth: true + } + } + } + } + } + } + } + } + RowLayout { + id: profilesRow + clip: false + visible: true + spacing: 5 + + Button { + text: "Read\nSettings" + Layout.columnSpan: 2 + Layout.preferredWidth: 200 + Layout.preferredHeight: 80 + Layout.fillWidth: true + onClicked: { + readSettings() + } + } + Button { + id: tuneWriteSettingsButton + text: "Write\nSettings" + Layout.columnSpan: 2 + Layout.preferredWidth: 200 + Layout.preferredHeight: 80 + Layout.fillWidth: true + onClicked: { + writeSettings() + } + } + } + } + } + + Page { + background: Rectangle { + opacity: 0.0 + } + + ColumnLayout { + anchors.topMargin: 5 + anchors.bottomMargin: 1 + anchors.fill: parent + + ScrollView { + clip: true + contentWidth: parent.width + Layout.fillHeight: true + GridLayout { + id: grid2 + anchors.fill: parent + columns: 1 + columnSpacing: 5 + rowSpacing: 10 + GroupBox { + id: battSelectorBox + title: qsTr("Battery Presets") + Layout.fillWidth: true + Layout.columnSpan: 1 + + RowLayout { + anchors.fill: parent + spacing: 10 + + Button { + id: wolfButton + text: "LUNA X2\n48V" + Layout.columnSpan: 2 + Layout.preferredWidth: 200 + Layout.preferredHeight: 70 + Layout.fillWidth: true + + onClicked: { + battCurrBox.realValue = 60.0 + battCellsBox.realValue = 13 + battOvervoltageBox.realValue = 60.0 + battUndervoltageStartBox.realValue = 40 + battUndervoltageEndBox.realValue = 39 + } + } + + Button { + text: "LUNA X2.5\n60V" + Layout.columnSpan: 2 + Layout.preferredWidth: 200 + Layout.preferredHeight: 70 + Layout.fillWidth: true + onClicked: { + battCurrBox.realValue = 50.0 + battCellsBox.realValue = 16 + battOvervoltageBox.realValue = 72.0 + battUndervoltageStartBox.realValue = 49.0 + battUndervoltageEndBox.realValue = 48.0 + } + } + } + } + GroupBox { + id: battCurrentBox + title: qsTr("Battery") + Layout.fillWidth: true + Layout.columnSpan: 1 + + RowLayout { + anchors.fill: parent + spacing: 0 + + Text { + text: "Current\nMax" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + + DoubleSpinBox { + id: battCurrBox + Layout.fillWidth: true + decimals: 2 + realValue: 60.0 + realFrom: 0.0 + realTo: 60.0 + prefix: "I: " + suffix: " A" + } + } + } + GroupBox { + id: batt8Box + Layout.fillWidth: true + Layout.columnSpan: 1 + RowLayout { + anchors.fill: parent + spacing: 0 + Text { + text: "Cells" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + DoubleSpinBox { + id: battCellsBox + Layout.fillWidth: true + decimals: 0 + realValue: 13.0 + realFrom: 13.0 + realTo: 20.0 + suffix: "s" + } + } + } + GroupBox { + id: battBox + Layout.fillWidth: true + Layout.columnSpan: 1 + RowLayout { + anchors.fill: parent + spacing: 0 + + Text { + text: "Overvoltage" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + + DoubleSpinBox { + id: battOvervoltageBox + Layout.fillWidth: true + decimals: 2 + realValue: 55.0 + realFrom: 0.0 + realTo: 86.0 + prefix: "V: " + suffix: " V" + } + } + } + GroupBox { + id: batt2Box + Layout.fillWidth: true + Layout.columnSpan: 1 + RowLayout { + anchors.fill: parent + spacing: 0 + + Text { + text: "Undervoltage\nCutoff Start" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + + DoubleSpinBox { + id: battUndervoltageStartBox + Layout.fillWidth: true + decimals: 2 + realValue: 40.0 + realFrom: 0.0 + realTo: 86.0 + prefix: "V: " + suffix: " V" + } + } + } + GroupBox { + id: batt3Box + Layout.fillWidth: true + Layout.columnSpan: 1 + RowLayout { + anchors.fill: parent + spacing: 0 + + Text { + text: "Undervoltage\nCutoff End" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + + DoubleSpinBox { + id: battUndervoltageEndBox + Layout.fillWidth: true + decimals: 2 + realValue: 39.0 + realFrom: 0.0 + realTo: 86.0 + prefix: "V: " + suffix: " V" + } + } + } + + GroupBox { + id: batt4Box + title: qsTr("Speedo") + Layout.fillWidth: true + Layout.columnSpan: 1 + RowLayout { + anchors.fill: parent + spacing: 0 + + Text { + text: "Wheel\nSize" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + +ComboBox { + id: wheelDiameterBox + textRole: "text" + currentIndex: 1 + model: ListModel { + id: wheelDiameterModel + ListElement{text:"26\"";value:0.676} + ListElement{text:"27.5\"";value:0.714} + ListElement{text:"29\"";value:0.752} + } +} +} + } + + GroupBox { + id: encoderBox + title: qsTr("Encoder") + Layout.fillWidth: true + Layout.columnSpan: 1 + RowLayout { + anchors.fill: parent + spacing: 0 + + Button { + id: encoderOffsetButton + text: "Offset\ncorrection" + Layout.preferredHeight: 70 + Layout.preferredWidth: 120 + onClicked: { + m600detectDialog.open() + } + } + + DoubleSpinBox { + id: encoderOffsetBox + Layout.fillWidth: true + decimals: 1 + realValue: 0.0 + realFrom: 0.0 + realTo: 460.0 + suffix: "°" + } + } + } + GroupBox { + Layout.fillWidth: true + Layout.columnSpan: 1 + RowLayout { + anchors.fill: parent + spacing: 0 + + Text { + text: "Invert Motor\nDirection" + color:{color=Utility.getAppHexColor("lightText")} + horizontalAlignment: Text.AlignHCenter + Layout.minimumWidth: 100 + } + + Switch { + id: motorDirectionBox + Layout.fillWidth: true + } + } + } + + Item { + // Spacer + Layout.fillWidth: true + Layout.fillHeight: true + } + } + } + + RowLayout { + id: bikeCfgRow + clip: false + visible: true + spacing: 5 + + Button { + text: "Read\nSettings" + Layout.columnSpan: 2 + Layout.preferredWidth: 200 + Layout.preferredHeight: 80 + Layout.fillWidth: true + onClicked: { + readSettings() + } + } + Button { + id: bikeWriteSettingsButton + text: "Write\nSettings" + Layout.columnSpan: 2 + Layout.preferredWidth: 200 + Layout.preferredHeight: 80 + Layout.fillWidth: true + onClicked: { + writeSettings() + bikeWriteSettingsButton.background.color = Utility.getAppHexColor("lightBackground"); + } + } + } + } + + } + + // Logging + Page { + background: Rectangle { + opacity: 0.0 + } + + ScrollView { + clip: true + contentWidth: parent.width + Layout.fillHeight: true + GridLayout { + id: gridLog + anchors.fill: parent + columns: 1 + columnSpacing: 5 + rowSpacing: 10 + + GroupBox { + id: batt6Box + title: "Data Logging" + Layout.fillWidth: true + Layout.columnSpan: 1 + + Switch { + id: rtLogEnBox + text: "Enable Data Logging" + anchors.centerIn: parent + Layout.fillWidth: true + Layout.columnSpan: 2 + + onClicked: { + if (checked) { + if (VescIf.openRtLogFile( + rtLogFileText.text)) { + Utility.startGnssForegroundService() + VescIf.setWakeLock(true) + } + } else { + VescIf.closeRtLogFile() + Utility.stopGnssForegroundService() + + if (!VescIf.useWakeLock()) { + VescIf.setWakeLock(false) + } + } + } + + Timer { + repeat: true + running: true + interval: 500 + onTriggered: { + if (rtLogEnBox.checked + && !VescIf.isRtLogOpen()) { + Utility.stopGnssForegroundService() + if (!VescIf.useWakeLock()) { + VescIf.setWakeLock(false) + } + } + rtLogEnBox.checked = VescIf.isRtLogOpen() + } + } + } +} + + GroupBox { + Layout.fillWidth: true + Layout.columnSpan: 1 + + RowLayout { + anchors.fill: parent + spacing: 5 + + Button { + text: "Choose Log\nDirectory..." + Layout.preferredHeight: 70 + + Layout.preferredWidth: 120 + onClicked: { + if (Utility.requestFilePermission()) { + logFilePicker.enabled = true + logFilePicker.visible = true + } else { + VescIf.emitMessageDialog("File Permissions","Unable to request file system permission.",false,false) + } + } + } + + TextInput { + color:{color=Utility.getAppHexColor("lightText")} + id: rtLogFileText + font.pointSize: 12 + text: "./log" + + QSettings.Settings { + property alias rtLog: rtLogFileText.text + property alias rtLogEnable: rtLogEnBox.checked + property alias m600profileIndex: profilesBar.currentIndex + + property alias m600streetTorque: streetTorqueSlider.value + property alias m600streetPas: streetPasSlider.value + property alias m600streetPower: streetPowerSlider.value + property alias m600streetSpeed: streetSpeedSlider.value + property alias m600streetThrottleResponse: streetThrottleResponseSlider.value + property alias m600streetThrottleExpo: streetThrottleExpoSlider.value + property alias m600streetPasResponseSlider: streetPasResponseSlider.value + property alias m600streetFW: streetFWSlider.value + property alias m600streetFixedThrottle: streetFixedThrottleCheckbox.checked + + property alias m600trailTorque: trailTorqueSlider.value + property alias m600trailPas: trailPasSlider.value + property alias m600trailPower: trailPowerSlider.value + property alias m600trailSpeed: trailSpeedSlider.value + property alias m600trailThrottleResponse: trailThrottleResponseSlider.value + property alias m600trailThrottleExpo: trailThrottleExpoSlider.value + property alias m600trailPasResponseSlider: streetPasResponseSlider.value + property alias m600trailFW: trailFWSlider.value + property alias m600trailFixedThrottle: trailFixedThrottleCheckbox.checked + + property alias m600ludiTorque: torqueSlider.value + property alias m600ludiPas: pasSlider.value + property alias m600ludiPower: powerSlider.value + property alias m600ludiSpeed: speedSlider.value + property alias m600ludiThrottleResponse: throttleResponseSlider.value + property alias m600ludiThrottleExpo: throttleExpoSlider.value + property alias m600ludiPasResponseSlider: pasResponseSlider.value + property alias m600ludiFW: fWSlider.value + property alias m600ludiFixedThrottle: fixedThrottleCheckbox.checked + + property alias m600battCurrentMaxSetting: battCurrBox.realValue + property alias m600battCellseSetting: battCellsBox.realValue + property alias m600overVoltageSetting: battOvervoltageBox.realValue + property alias m600underVoltageStartSetting: battUndervoltageStartBox.realValue + property alias m600underVoltageEndSetting: battUndervoltageEndBox.realValue + property alias m600wheelDiameterSetting: wheelDiameterBox.currentIndex + property alias m600encoderOffsetSetting: encoderOffsetBox.realValue + property alias m600motorDirectionSetting: motorDirectionBox.position + } + } + } + } + } + } + DirectoryPicker { + id: logFilePicker + anchors.fill: parent + showDotAndDotDot: true + visible: false + enabled: false + + onDirSelected: { + rtLogFileText.text = fileName + } + } + } + + // FW update + Page { + background: Rectangle { + opacity: 0.0 + } + + FwUpdate { + anchors.fill: parent + showUploadAllButton: false + } + } + // Support + } + } + +function readSettings() { + mCommands.getMcconf() + mCommands.getAppConf() + + var useImperial = VescIf.useImperialUnits() + var impFact = useImperial?1.60934:1.0 + + var power = mMcConf.getParamDouble("l_watt_max") + var torque = mMcConf.getParamDouble("l_current_max") + var speed = -mMcConf.getParamDouble("l_min_erpm") / impFact + var pas = mAppConf.getParamDouble("app_pas_conf.current_scaling") * torque + var throttleResponse = mAppConf.getParamDouble("app_adc_conf.ramp_time_pos") + var pasResponse = mAppConf.getParamDouble("app_pas_conf.ramp_time_pos") + var throttleExpo = 100.0-(mAppConf.getParamDouble("app_adc_conf.throttle_exp")) * -20.0 + var battCurr = mMcConf.getParamDouble("l_in_current_max") + var battOvervoltage = mMcConf.getParamDouble("l_max_vin") + var battUndervoltageStart = mMcConf.getParamDouble("l_battery_cut_start") + var battUndervoltageEnd = mMcConf.getParamDouble("l_battery_cut_end") + var battCells = mMcConf.getParamInt("si_battery_cells") + var encoderOffset = mMcConf.getParamDouble("foc_encoder_offset") + var fieldWeak = mMcConf.getParamDouble("foc_fw_current_max") + var fixedThrottle + var motorDirection = mMcConf.getParamBool("m_invert_direction") + + if ((power == streetPowerSlider.value) && (torque == streetTorqueSlider.value)) { + profilesBar.setCurrentIndex(0) + streetTorqueSlider.value = torque + streetPowerSlider.value = power + streetSpeedSlider.value = speed + streetPasSlider.value = pas + streetThrottleResponseSlider.value = throttleResponse + streetPasResponseSlider.value = pasResponse + streetFWSlider.value = fieldWeak + streetThrottleExpoSlider.value = throttleExpo + } + if ((power == trailPowerSlider.value) && (torque == trailTorqueSlider.value)) { + profilesBar.setCurrentIndex(1) + trailTorqueSlider.value = torque + trailPowerSlider.value = power + trailSpeedSlider.value = speed + trailPasSlider.value = pas + trailThrottleResponseSlider.value = throttleResponse + trailPasResponseSlider.value = pasResponse + trailFWSlider.value = fieldWeak + trailThrottleExpoSlider.value = throttleExpo + } + if ((power == powerSlider.value) && (torque == torqueSlider.value)) { + profilesBar.setCurrentIndex(2) + torqueSlider.value = torque + powerSlider.value = power + speedSlider.value = speed + pasSlider.value = pas + throttleResponseSlider.value = throttleResponse + pasResponseSlider.value = pasResponse + fWSlider.value = fieldWeak + throttleExpoSlider.value = throttleExpo + } + battCurrBox.realValue = mMcConf.getParamDouble("l_in_current_max") + battCellsBox.realValue = mMcConf.getParamInt("si_battery_cells") + battOvervoltageBox.realValue = mMcConf.getParamDouble("l_max_vin") + battUndervoltageStartBox.realValue = mMcConf.getParamDouble("l_battery_cut_start") + battUndervoltageEndBox.realValue = mMcConf.getParamDouble("l_battery_cut_end") + motorDirectionBox.position = mMcConf.getParamBool("m_invert_direction") + if(mMcConf.getParamDouble("si_wheel_diameter") <= 0.7){wheelDiameterBox.currentIndex=0} + if(mMcConf.getParamDouble("si_wheel_diameter") >= 0.7){wheelDiameterBox.currentIndex=1} + if(mMcConf.getParamDouble("si_wheel_diameter") >= 0.75){wheelDiameterBox.currentIndex=2} + if(encoderOffset >= 360.1) { + encoderOffsetBox.realValue = 0.0 + encoderOffsetBox.prefix ="ERROR (" + encoderOffsetBox.suffix ="°)" + tabBar.currentIndex = 2 + encoderOffsetButton.background.color = "#ff9595"; + VescIf.emitMessageDialog("Offset Calibration Required","Go to BIKE CFG tab, run Offset Calibration and then Write Settings.\n\nLet the rear wheel rotate freely during calibration.",false, false) + } else { + encoderOffsetBox.realValue = encoderOffset + encoderOffsetBox.prefix ="" + encoderOffsetBox.suffix ="°" + encoderOffsetButton.background.color = Utility.getAppHexColor("lightBackground"); + } +} + +function writeSettings() { + var useImperial = VescIf.useImperialUnits() + var impFact = useImperial ? 1.60934 : 1.0 + + if(profilesBar.currentIndex == 0) { + mMcConf.updateParamDouble("l_current_max", streetTorqueSlider.value) + mMcConf.updateParamDouble("l_watt_max", streetPowerSlider.value) + //mMcConf.updateParamDouble("l_min_erpm", -streetSpeedSlider.value * impFact) + mMcConf.updateParamDouble("foc_fw_current_max", streetFWSlider.value) + mAppConf.updateParamDouble("app_pas_conf.current_scaling", streetPasSlider.value / streetTorqueSlider.value) + mAppConf.updateParamDouble("app_adc_conf.ramp_time_pos", streetThrottleResponseSlider.value) + mAppConf.updateParamDouble("app_pas_conf.ramp_time_pos", streetPasResponseSlider.value) + mAppConf.updateParamDouble("app_pas_conf.ramp_time_neg", streetPasResponseSlider.value / 2) + mAppConf.updateParamDouble("app_adc_conf.throttle_exp", (100.0 - streetThrottleExpoSlider.value) / -20.0) + fixedThrottle = streetFixedThrottleCheckbox.checked + } + if(profilesBar.currentIndex == 1) { + mMcConf.updateParamDouble("l_current_max", trailTorqueSlider.value) + mMcConf.updateParamDouble("l_watt_max", trailPowerSlider.value) + //mMcConf.updateParamDouble("l_min_erpm", -trailSpeedSlider.value * impFact) + mMcConf.updateParamDouble("foc_fw_current_max", trailFWSlider.value) + mAppConf.updateParamDouble("app_pas_conf.current_scaling", trailPasSlider.value / trailTorqueSlider.value) + mAppConf.updateParamDouble("app_adc_conf.ramp_time_pos", trailThrottleResponseSlider.value) + mAppConf.updateParamDouble("app_pas_conf.ramp_time_pos", trailPasResponseSlider.value) + mAppConf.updateParamDouble("app_pas_conf.ramp_time_neg", trailPasResponseSlider.value / 2) + mAppConf.updateParamDouble("app_adc_conf.throttle_exp", (100.0 - trailThrottleExpoSlider.value) / -20.0) + fixedThrottle = trailFixedThrottleCheckbox.checked + } + if(profilesBar.currentIndex == 2) { + mMcConf.updateParamDouble("l_current_max", torqueSlider.value) + mMcConf.updateParamDouble("l_watt_max", powerSlider.value) + //mMcConf.updateParamDouble("l_min_erpm", -speedSlider.value * impFact) + mMcConf.updateParamDouble("foc_fw_current_max", fWSlider.value) + mAppConf.updateParamDouble("app_pas_conf.current_scaling", pasSlider.value / torqueSlider.value) + mAppConf.updateParamDouble("app_adc_conf.ramp_time_pos", throttleResponseSlider.value) + mAppConf.updateParamDouble("app_pas_conf.ramp_time_pos", pasResponseSlider.value) + mAppConf.updateParamDouble("app_pas_conf.ramp_time_neg", pasResponseSlider.value / 8 + 0.15) + mAppConf.updateParamDouble("app_adc_conf.throttle_exp", (100.0 - throttleExpoSlider.value) / -20.0) + fixedThrottle = fixedThrottleCheckbox.checked + } + mMcConf.updateParamDouble("l_in_current_max", battCurrBox.realValue) + mMcConf.updateParamInt("si_battery_cells", battCellsBox.realValue) + mMcConf.updateParamDouble("l_max_vin",battOvervoltageBox.realValue) + mMcConf.updateParamDouble("l_battery_cut_start",battUndervoltageStartBox.realValue) + mMcConf.updateParamDouble("l_battery_cut_end",battUndervoltageEndBox.realValue) + mMcConf.updateParamDouble("si_wheel_diameter",wheelDiameterModel.get(wheelDiameterBox.currentIndex).value) + mMcConf.updateParamDouble("foc_encoder_offset",encoderOffsetBox.realValue) + mMcConf.updateParamBool("m_invert_direction", motorDirectionBox.position) + scheduleConfWrite = true +} + + Connections { + target: mMcConf + function onUpdated() { + confTimer.mcConfRx = true + } + } + + Connections { + target: mAppConf + function onUpdated() { + confTimer.appConfRx = true + + } + } + + Timer { + id: statusTimer + interval: 1600 + running: false + repeat: false + onTriggered: { + connectedText.text = VescIf.getConnectedPortName() + connectedRect.color = "#4f4f4f" + } + } + + Timer { + id: uiTimer + interval: 1000 + running: true + repeat: true + onTriggered: { + } + } + + Timer { + id: confTimer + interval: 1000 + running: true + repeat: true + + property bool mcConfRx: false + property bool appConfRx: false + property int writingStage: 0 + + onTriggered: { + VescIf.setSpeedGaugeUseNegativeValues(false) + if(tabBar.currentIndex !== 3) { + if (VescIf.isPortConnected() && VescIf.getLastFwRxParams().hwTypeStr() === "VESC") { + if(scheduleConfWrite) { + if(writingStage === 0) { + mCommands.setMcconf(true) + writingStage = 1 + } else { + if(writingStage === 1) { + mCommands.getMcconf() + writingStage = 2 + } else { + if(writingStage === 2) { + mCommands.setAppConf(true) + writingStage = 3 + } else { + if(fixedThrottle) { + mCommands.sendTerminalCmd("fix_throttle 1") + } else { + mCommands.sendTerminalCmd("fix_throttle 0") + } + writingStage = 0 + scheduleConfWrite = false + } + } + } + } + if (!mcConfRx) { + mCommands.getMcconf() + } + if (!appConfRx) { + mCommands.getAppConf() + } + } + } + timeText.text=Qt.formatTime(new Date(),"hh:mm") + } + } + Timer { + id: rtTimer + interval: 50 + running: true + repeat: true + onTriggered: { + if (VescIf.isPortConnected()) { + if (VescIf.isRtLogOpen()) { + interval = 50 + mCommands.getValues() + mCommands.getValuesSetup() + } else { + if (tabBar.currentIndex == 0) { + interval = 50 + mCommands.getValuesSetup() + + } + } + } + } + } + + Dialog { + id: m600detectDialog + standardButtons: Dialog.Ok | Dialog.Cancel + modal: true + focus: true + closePolicy: Popup.CloseOnEscape + title: "Detect Magnetic Encoder Offset" + x:10 + y:Math.max((parent.height-height)/2,10) + parent: ApplicationWindow.overlay + width: parent.width - 20 + ColumnLayout { + anchors.fill: parent + anchors.margins: 10 + spacing: 10 + Text { + id: detectLambdaLabel + color:{color=Utility.getAppHexColor("lightText")} + verticalAlignment: Text.AlignVCenter + Layout.fillWidth: true + wrapMode: Text.WordWrap + text: + "This will turn the motor slowly. Lift the rear wheel and make " + + "sure that nothing is in the way.\nAfter detection, write the settings and powercycle the controller" + } + } + + onAccepted: { + mCommands.measureEncoder(15.0) + } + } + + Connections { + target: mCommands + + function onEncoderParamReceived(res) { + VescIf.emitStatusMessage("Encoder Result Received", true) + encoderOffsetBox.realValue = res.offset + encoderOffsetBox.prefix ="" + encoderOffsetBox.suffix ="°" + encoderOffsetBox.decimals = 1 + encoderOffsetButton.background.color = Utility.getAppHexColor("lightBackground"); + bikeWriteSettingsButton.background.color = "#ff9595"; + } + } +} diff --git a/hwconf/luna/m600/mcconf_luna_m600_60V.h b/hwconf/luna/m600/mcconf_luna_m600_60V.h index dcb9fd9b..30ca05cc 100644 --- a/hwconf/luna/m600/mcconf_luna_m600_60V.h +++ b/hwconf/luna/m600/mcconf_luna_m600_60V.h @@ -55,7 +55,7 @@ #define MCCONF_L_MIN_VOLTAGE 30 // Maximum Input Voltage -#define MCCONF_L_MAX_VOLTAGE 60 +#define MCCONF_L_MAX_VOLTAGE 72 // Battery Voltage Cutoff Start #define MCCONF_L_BATTERY_CUT_START 49 diff --git a/hwconf/luna/m600/qmlui_luna_m600.c b/hwconf/luna/m600/qmlui_luna_m600.c index 83d1a0b4..710d1109 100644 --- a/hwconf/luna/m600/qmlui_luna_m600.c +++ b/hwconf/luna/m600/qmlui_luna_m600.c @@ -2,455 +2,436 @@ #include "qmlui_luna_m600.h" -uint8_t data_qml_hw[7198] = { - 0x00, 0x01, 0x82, 0xaf, 0x78, 0xda, 0xed, 0x5d, 0xeb, 0x56, 0xe4, 0x36, 0xb6, 0xfe, 0xcf, 0x53, - 0x28, 0x3e, 0x6b, 0x66, 0xaa, 0xa6, 0x2b, 0xa6, 0xaa, 0x68, 0xe8, 0x34, 0x09, 0x99, 0x45, 0xd3, - 0xd0, 0x61, 0x1d, 0x98, 0x10, 0xa0, 0x9b, 0x3f, 0xac, 0xc5, 0x12, 0x2e, 0x55, 0x95, 0x07, 0xdf, - 0x62, 0xc9, 0x14, 0x4c, 0x0e, 0xef, 0x34, 0xcf, 0x30, 0x4f, 0x76, 0x24, 0xf9, 0xee, 0xf2, 0x45, - 0x76, 0xd9, 0x40, 0x11, 0x39, 0x93, 0x4c, 0x61, 0x4b, 0x5b, 0xb2, 0xb4, 0x2f, 0xda, 0x5b, 0x5b, - 0x9f, 0x75, 0xd3, 0xb1, 0x5d, 0x02, 0xbe, 0xa1, 0xc9, 0x04, 0xb9, 0xea, 0x3d, 0xc2, 0x1a, 0xff, - 0x8f, 0x6e, 0x11, 0xe4, 0x4e, 0xa1, 0x86, 0xc0, 0x48, 0x1d, 0xfe, 0xa8, 0xfb, 0x85, 0x94, 0xdf, - 0x5d, 0x6d, 0x77, 0xd3, 0xb4, 0x6f, 0x75, 0x03, 0x29, 0xe1, 0xcd, 0xdf, 0xc8, 0x6f, 0x9e, 0xae, - 0xdd, 0x81, 0xb1, 0xfa, 0x61, 0x23, 0x7d, 0x4b, 0x3d, 0xb0, 0x2d, 0xe2, 0xda, 0x06, 0xa6, 0xcf, - 0xc6, 0xd9, 0x67, 0x27, 0xf0, 0xd1, 0xf6, 0x08, 0xa6, 0xe4, 0xb7, 0xe2, 0x47, 0xaa, 0x01, 0x6f, - 0xb1, 0x8a, 0x11, 0x21, 0xba, 0x35, 0x63, 0xcf, 0x86, 0x00, 0x62, 0xf0, 0xdb, 0x45, 0x70, 0x23, - 0x2c, 0x58, 0xda, 0xd9, 0xbc, 0x42, 0xb7, 0x06, 0xf2, 0x20, 0xbd, 0x57, 0xf0, 0x58, 0xb3, 0x4d, - 0x13, 0x5a, 0x13, 0x5c, 0xfc, 0xdc, 0x9a, 0xea, 0x33, 0x07, 0xba, 0xd0, 0x2c, 0x2c, 0xe3, 0x11, - 0xdd, 0xd0, 0xc9, 0x23, 0x7f, 0x7c, 0x4c, 0x90, 0x09, 0xfe, 0xd8, 0x00, 0xf4, 0xd2, 0x27, 0xbb, - 0xc0, 0x84, 0xba, 0xc5, 0x6e, 0xf1, 0x1b, 0xd0, 0xd2, 0xe6, 0xb6, 0x8b, 0xd5, 0xa9, 0x6e, 0x18, - 0xbb, 0x80, 0xd2, 0x44, 0x16, 0xe1, 0x0f, 0x36, 0x37, 0xc3, 0x47, 0x26, 0x74, 0x67, 0xba, 0x85, - 0x77, 0xc1, 0x68, 0xe8, 0x3f, 0x98, 0xea, 0x0f, 0x80, 0xcc, 0x75, 0xcc, 0xcb, 0x39, 0xae, 0xed, - 0x20, 0x97, 0xb6, 0xf4, 0xc9, 0x40, 0x5f, 0xd9, 0x4b, 0x99, 0xf4, 0xc7, 0x2e, 0xed, 0x0b, 0xd6, - 0x8e, 0xa7, 0xec, 0x4d, 0x3f, 0xa3, 0x7b, 0x5d, 0x43, 0xbd, 0x7e, 0xba, 0xf4, 0x41, 0xf8, 0x8e, - 0x66, 0xf8, 0x2b, 0xaa, 0x13, 0xbe, 0x7e, 0xb6, 0xca, 0x3d, 0x74, 0xc1, 0x74, 0xf1, 0x0d, 0xb9, - 0x58, 0xb7, 0xad, 0xdd, 0xb8, 0xa2, 0x3a, 0x43, 0xe4, 0x28, 0xbc, 0xbf, 0xdc, 0x0e, 0x1b, 0xab, - 0x33, 0x7f, 0xac, 0xcc, 0x53, 0x8d, 0xfd, 0x1d, 0xb5, 0x64, 0x6a, 0xfe, 0xe3, 0xf2, 0x4a, 0xfb, - 0x8e, 0x93, 0xaa, 0x05, 0xfd, 0xbf, 0xab, 0xaa, 0x1d, 0x5b, 0x53, 0x3b, 0x55, 0x4f, 0x0f, 0x6e, - 0x2c, 0x57, 0xbc, 0xb5, 0x6d, 0x03, 0xe8, 0xf8, 0x17, 0xdb, 0xd5, 0xff, 0x4d, 0x79, 0x14, 0xd2, - 0x99, 0x58, 0xe8, 0x13, 0x32, 0x07, 0x3f, 0x83, 0x39, 0xd2, 0x67, 0x73, 0x92, 0x53, 0x1c, 0x6b, - 0x73, 0x34, 0xf1, 0x0c, 0xc4, 0x28, 0x5e, 0xb9, 0x3a, 0xa1, 0x63, 0x3e, 0x85, 0x06, 0x46, 0x39, - 0x45, 0xe9, 0x7c, 0xa1, 0xc9, 0xe5, 0xdc, 0xb5, 0x09, 0x31, 0xf2, 0x8b, 0xb1, 0xa1, 0xf5, 0xe7, - 0xfe, 0x12, 0xde, 0x7e, 0x82, 0x6e, 0xc8, 0x09, 0x2a, 0xe1, 0x7f, 0x46, 0xdc, 0xc2, 0x2e, 0xfe, - 0x83, 0x8e, 0xbd, 0x63, 0x5b, 0xac, 0x84, 0x6d, 0xb1, 0xdf, 0x06, 0x22, 0x88, 0xb2, 0xd6, 0x1f, - 0x51, 0xa9, 0x24, 0x35, 0xf5, 0x5e, 0xc7, 0x3a, 0xe5, 0x04, 0xb0, 0x07, 0x88, 0xeb, 0xa1, 0xfc, - 0x32, 0xc8, 0x82, 0xb4, 0xc8, 0x24, 0x5b, 0xc6, 0x45, 0x70, 0x12, 0xca, 0x5b, 0x30, 0x6c, 0x4f, - 0x1b, 0x41, 0x17, 0x0c, 0xcf, 0xb4, 0x7c, 0xb9, 0x4d, 0x34, 0x9c, 0xcb, 0xd0, 0xd1, 0x53, 0xbf, - 0xb1, 0x44, 0xf1, 0x50, 0x28, 0xfc, 0x17, 0x4d, 0xdd, 0x8e, 0x25, 0x20, 0x49, 0x2b, 0x1c, 0x81, - 0xf0, 0xd2, 0x3c, 0x97, 0xdd, 0x3e, 0xb6, 0x26, 0xe8, 0x61, 0x17, 0xe0, 0x85, 0xee, 0xa0, 0x6f, - 0x3a, 0x5a, 0xa8, 0xc9, 0xfb, 0xa9, 0x0a, 0x7e, 0x8f, 0x39, 0xcd, 0x2b, 0x36, 0xc9, 0xbb, 0xe9, - 0x17, 0xe6, 0x1d, 0xa2, 0x03, 0xaa, 0x6b, 0x3a, 0x09, 0x9e, 0x0f, 0xd3, 0x0d, 0x1a, 0xba, 0x13, - 0xd4, 0x49, 0xdd, 0x8f, 0x26, 0x93, 0xaa, 0x1f, 0x70, 0xeb, 0x11, 0x62, 0x33, 0x99, 0xdd, 0xae, - 0x2a, 0x13, 0xb4, 0x31, 0x1a, 0x0e, 0xd3, 0xe4, 0xd8, 0x48, 0xf1, 0x02, 0x99, 0xc1, 0x62, 0x17, - 0x41, 0x0f, 0x64, 0x17, 0xfc, 0x8e, 0x2f, 0xdd, 0x9e, 0x72, 0xae, 0x4f, 0x90, 0xd2, 0x5f, 0x2a, - 0xb2, 0xf0, 0xc9, 0x9e, 0x42, 0x32, 0xa7, 0x0a, 0xe4, 0xa1, 0xe7, 0x8f, 0xaf, 0x9a, 0x68, 0x73, - 0x10, 0xdc, 0xf2, 0x39, 0x7d, 0x13, 0xa4, 0x4a, 0xe0, 0x34, 0xc5, 0xa7, 0x46, 0x5d, 0xbb, 0xf4, - 0xac, 0xd7, 0xda, 0xb5, 0x4f, 0xfa, 0x1d, 0x02, 0x07, 0x47, 0x5f, 0x5e, 0x69, 0xf7, 0x4e, 0xec, - 0x19, 0x55, 0xf9, 0xb3, 0x57, 0xda, 0xbb, 0x23, 0xdd, 0x35, 0x17, 0x54, 0x18, 0x5f, 0x69, 0xf7, - 0x2e, 0x3c, 0x87, 0x99, 0xe3, 0x67, 0xec, 0xdd, 0x53, 0x2c, 0xba, 0x17, 0xa1, 0x02, 0xca, 0xd1, - 0x71, 0x91, 0x72, 0x2a, 0x51, 0x60, 0x41, 0x83, 0x22, 0xda, 0xeb, 0x17, 0x6e, 0x9a, 0x72, 0xd4, - 0x97, 0x80, 0x86, 0x4b, 0x28, 0x31, 0x90, 0x73, 0x9d, 0xc1, 0x19, 0xca, 0x19, 0xe5, 0xf0, 0x3a, - 0x27, 0x9f, 0x21, 0x81, 0xd4, 0x2c, 0x78, 0x4e, 0x49, 0xa9, 0xd2, 0xe5, 0x4d, 0xd1, 0xe5, 0x39, - 0x13, 0x48, 0x10, 0x23, 0x5f, 0xa4, 0xcc, 0xc1, 0xde, 0x5e, 0x46, 0x23, 0x17, 0xb3, 0x4c, 0xce, - 0x04, 0x95, 0xbc, 0xde, 0x2d, 0xd4, 0xee, 0x66, 0xae, 0xed, 0x59, 0x74, 0xae, 0xce, 0x91, 0x46, - 0xa0, 0x35, 0x33, 0x8a, 0x86, 0xc1, 0x76, 0x20, 0x35, 0x10, 0x8f, 0xd4, 0x38, 0xa8, 0xcb, 0x9d, - 0xc9, 0x34, 0x57, 0x62, 0x2d, 0xf3, 0xc6, 0x8a, 0xd8, 0xce, 0x29, 0x5f, 0xf2, 0x65, 0xad, 0x47, - 0xb6, 0xe0, 0x2d, 0x5d, 0x50, 0xd8, 0x66, 0x58, 0x76, 0xb4, 0x21, 0x3c, 0x01, 0xb9, 0x25, 0x7d, - 0x96, 0x88, 0x17, 0x27, 0xd9, 0x0b, 0xb3, 0x37, 0xb6, 0x66, 0xac, 0x53, 0xb9, 0xcf, 0x73, 0x4d, - 0x7b, 0x56, 0x04, 0xa8, 0x01, 0xa4, 0x3d, 0x41, 0x38, 0x6b, 0xeb, 0x8b, 0x05, 0x22, 0xa8, 0x71, - 0x51, 0x6d, 0xd8, 0x73, 0x0d, 0x2d, 0x5b, 0x59, 0x19, 0x10, 0x93, 0x33, 0x9f, 0x4c, 0x40, 0x54, - 0x88, 0x86, 0x80, 0x18, 0x09, 0x2f, 0x1a, 0x6a, 0xc8, 0x5e, 0xf1, 0x5a, 0x62, 0xab, 0x4e, 0xf9, - 0xa2, 0x75, 0x85, 0xa8, 0x46, 0x2d, 0xd4, 0xae, 0xc4, 0x45, 0x88, 0x5c, 0x5b, 0x06, 0x9a, 0x41, - 0x23, 0x47, 0xc7, 0x96, 0xe9, 0xdb, 0xd2, 0xc2, 0xe9, 0xd7, 0x09, 0xb9, 0x24, 0xa5, 0x9c, 0x9b, - 0xd4, 0x0f, 0x35, 0xf9, 0x32, 0x4d, 0xdc, 0xaf, 0xa9, 0x45, 0x9a, 0x0e, 0xd9, 0xa5, 0x0b, 0x75, - 0x39, 0x54, 0x42, 0x43, 0x75, 0xe2, 0x4d, 0x74, 0x8d, 0xaa, 0x60, 0xfc, 0xe7, 0x1a, 0xae, 0xfc, - 0xbb, 0x45, 0x6b, 0x89, 0x02, 0xa5, 0x7a, 0x91, 0xbb, 0xbc, 0xa8, 0xd4, 0xac, 0xb8, 0x74, 0xbd, - 0x51, 0x77, 0xed, 0xb1, 0x82, 0x02, 0x15, 0xd0, 0x8b, 0x9b, 0x9b, 0xc0, 0xd7, 0x3f, 0xe0, 0x84, - 0xa9, 0x9f, 0xc2, 0x72, 0xdc, 0xc0, 0x17, 0x3e, 0x2d, 0x67, 0x47, 0x01, 0x4b, 0xdd, 0xc8, 0x6a, - 0x37, 0xb5, 0xe0, 0xcd, 0xac, 0x79, 0x1d, 0xcb, 0x5e, 0xc7, 0xca, 0xa7, 0xf8, 0x93, 0x4a, 0xaa, - 0x61, 0x54, 0x30, 0x68, 0xb5, 0x47, 0x2f, 0x54, 0x55, 0x80, 0x39, 0x52, 0xc5, 0x6d, 0x8b, 0x50, - 0xd2, 0x01, 0xdb, 0x05, 0xc1, 0x14, 0x2e, 0xb0, 0x42, 0xd5, 0x8b, 0x38, 0x5d, 0xa8, 0x72, 0x4d, - 0x06, 0x5a, 0x89, 0x91, 0x56, 0x65, 0xa8, 0xd5, 0x18, 0xab, 0x09, 0x83, 0x85, 0x57, 0x10, 0x93, - 0xaa, 0x31, 0xa7, 0x75, 0xd9, 0x33, 0xbc, 0x12, 0xe1, 0x57, 0xd1, 0x8b, 0xe9, 0x19, 0xda, 0x12, - 0x72, 0x6b, 0xd5, 0xaa, 0xa9, 0xef, 0xda, 0x50, 0xb1, 0x02, 0x9e, 0x47, 0xd1, 0xf5, 0x85, 0x9a, - 0x59, 0xe7, 0x93, 0xfd, 0x50, 0x73, 0x68, 0xb8, 0x23, 0xcb, 0x75, 0xf0, 0xa5, 0xed, 0xfe, 0xee, - 0x21, 0x4a, 0xa1, 0x8d, 0x41, 0xaa, 0x45, 0xe3, 0xdc, 0x5e, 0xd4, 0x16, 0xaf, 0xc4, 0xd4, 0xae, - 0x24, 0x69, 0xcb, 0xba, 0xac, 0xa9, 0xcc, 0xb5, 0x23, 0x7b, 0xab, 0xc8, 0x60, 0x8e, 0x54, 0xd5, - 0xad, 0x7a, 0x49, 0x17, 0x6f, 0x0d, 0x66, 0x21, 0x5e, 0xf7, 0x29, 0x61, 0x60, 0xfc, 0xda, 0xda, - 0x37, 0x1d, 0xac, 0x34, 0x22, 0xa5, 0xd9, 0x86, 0xed, 0xee, 0xfe, 0xc1, 0xff, 0x6f, 0xef, 0xab, - 0xbf, 0xf5, 0xc2, 0xb6, 0x25, 0xf6, 0x1d, 0xe7, 0x17, 0xf4, 0x70, 0xc0, 0x6e, 0xf7, 0x14, 0x83, - 0xc9, 0x13, 0xeb, 0xaf, 0xd2, 0x7f, 0x6a, 0xd4, 0xca, 0x3c, 0xda, 0x1f, 0xd8, 0xa7, 0xb4, 0x2c, - 0x93, 0xce, 0xd3, 0x2e, 0x1f, 0x00, 0x95, 0xff, 0xfd, 0xcb, 0x01, 0x62, 0x1b, 0x4f, 0x8d, 0x48, - 0x07, 0x52, 0x61, 0xea, 0x96, 0x6e, 0x7a, 0x66, 0xc2, 0x77, 0xab, 0x4b, 0xa8, 0xfe, 0x9b, 0x5d, - 0x18, 0xfa, 0x04, 0xb9, 0x0d, 0xe7, 0x30, 0xab, 0x0d, 0x7c, 0x62, 0x8d, 0x48, 0x61, 0x82, 0x9c, - 0x0b, 0xfd, 0xdf, 0x88, 0xbd, 0x77, 0x23, 0x02, 0x53, 0xd7, 0x36, 0x77, 0xc1, 0xb8, 0x59, 0xe5, - 0x7b, 0x68, 0x78, 0xb4, 0xe9, 0xad, 0x66, 0xb5, 0x89, 0xcd, 0x67, 0x8b, 0x2a, 0x05, 0xea, 0x8c, - 0x00, 0x67, 0x0e, 0x31, 0x02, 0x90, 0x72, 0xf3, 0x2a, 0xbc, 0xb0, 0x92, 0x86, 0x8c, 0xc4, 0xd3, - 0xb6, 0x8d, 0x4b, 0xdd, 0x69, 0x38, 0xbb, 0xf1, 0x26, 0x51, 0xde, 0x2c, 0xab, 0x73, 0x68, 0x4d, - 0x0c, 0xd4, 0x98, 0x72, 0xb4, 0x02, 0xc8, 0x21, 0xed, 0xb8, 0x08, 0x63, 0x34, 0x69, 0x4c, 0xdb, - 0xd7, 0x2d, 0x39, 0x84, 0xf9, 0x3c, 0x53, 0xcd, 0x7f, 0xc4, 0xf6, 0xe4, 0x7a, 0xa3, 0xfe, 0x3b, - 0x05, 0xec, 0x37, 0xd3, 0x39, 0x4f, 0x1d, 0xcb, 0xe6, 0xd3, 0xab, 0x34, 0xfa, 0x67, 0x10, 0xaf, - 0x9b, 0xc5, 0xff, 0x93, 0xdb, 0xd7, 0xb3, 0xfd, 0x0b, 0x69, 0x5a, 0xd7, 0xda, 0xb4, 0x52, 0x99, - 0x6b, 0xc7, 0xae, 0xae, 0x60, 0x56, 0x57, 0xb2, 0xaa, 0xe3, 0xe6, 0x56, 0xb5, 0x52, 0x85, 0x37, - 0x36, 0x11, 0xec, 0x1a, 0xf5, 0xa9, 0xc9, 0xfe, 0x0b, 0xb0, 0xa7, 0x6f, 0xd9, 0x66, 0x47, 0xec, - 0xd3, 0xb2, 0xc1, 0x8e, 0xe9, 0xb6, 0x69, 0xad, 0x63, 0xaa, 0xd2, 0x54, 0xaf, 0x68, 0xaa, 0xed, - 0x05, 0x72, 0xa5, 0xb1, 0x5e, 0x2f, 0x63, 0xcd, 0xe6, 0x4c, 0x1a, 0xea, 0x75, 0x35, 0xd4, 0x6c, - 0xf6, 0x5a, 0x31, 0xd5, 0xe3, 0xed, 0xe1, 0x4b, 0x19, 0xeb, 0xed, 0x61, 0x73, 0x6b, 0x3d, 0x6e, - 0x5a, 0xf9, 0x55, 0xdb, 0xcf, 0x78, 0x56, 0xdb, 0xb6, 0xa0, 0x09, 0xca, 0xad, 0xda, 0xd0, 0x04, - 0xdd, 0x1c, 0x2b, 0x7a, 0x25, 0xad, 0xa8, 0xb8, 0x4c, 0x5f, 0x38, 0x08, 0x4d, 0x5a, 0xb2, 0xa2, - 0x0d, 0x58, 0x05, 0x34, 0x31, 0x63, 0xd2, 0x00, 0x37, 0x36, 0xc0, 0x7c, 0xba, 0xaf, 0xad, 0x13, - 0xdd, 0xd4, 0x89, 0xb4, 0xc3, 0x6b, 0x6a, 0x87, 0xf9, 0x24, 0xbe, 0xb8, 0xcb, 0x3c, 0x7e, 0x29, - 0x9f, 0x79, 0xe7, 0xed, 0xd9, 0xe0, 0xc4, 0x8c, 0xb6, 0x6c, 0x83, 0x93, 0x94, 0xdb, 0xb4, 0xc1, - 0x49, 0xba, 0x59, 0x1b, 0x0c, 0xde, 0x81, 0x5e, 0x70, 0x28, 0xc5, 0xc3, 0xe8, 0xd8, 0x74, 0x90, - 0xab, 0x43, 0xe3, 0xab, 0xa5, 0x13, 0xdc, 0xeb, 0x83, 0x7f, 0x00, 0x05, 0x98, 0xce, 0x5c, 0xd9, - 0x55, 0xc0, 0x9d, 0xb9, 0x39, 0xaf, 0xc8, 0x84, 0x92, 0xd6, 0x3a, 0xb5, 0x0b, 0x15, 0x6c, 0x26, - 0x9e, 0x23, 0xec, 0xd8, 0x16, 0x46, 0xd2, 0xfd, 0x5d, 0x2b, 0xeb, 0x1b, 0xef, 0x05, 0x87, 0x13, - 0x28, 0x6d, 0xf0, 0xba, 0xee, 0x07, 0x67, 0x24, 0xb1, 0x15, 0x73, 0x3c, 0x54, 0x57, 0x31, 0xc8, - 0x5b, 0xab, 0xd8, 0xe3, 0xa1, 0xfa, 0xb1, 0xb1, 0x41, 0x1e, 0xaa, 0x5b, 0x6f, 0x6f, 0x27, 0x38, - 0x77, 0x7e, 0xdb, 0xde, 0x13, 0xce, 0x6f, 0xa4, 0xd5, 0xdd, 0xe1, 0xfc, 0x26, 0x72, 0xdc, 0x66, - 0x8c, 0x34, 0xe9, 0x38, 0xd7, 0x57, 0x00, 0x87, 0x0f, 0x8e, 0x2d, 0xcd, 0xf0, 0x9a, 0x9a, 0xe1, - 0x13, 0xdd, 0x42, 0xd0, 0xa5, 0xd6, 0x53, 0xda, 0xe1, 0x35, 0xb7, 0xc3, 0x4c, 0x0c, 0xd7, 0x7b, - 0x17, 0x79, 0x34, 0x5c, 0x29, 0x39, 0xeb, 0xcd, 0x5a, 0xe0, 0x78, 0x66, 0x3b, 0xb2, 0xbe, 0x89, - 0x06, 0xba, 0xb0, 0xbc, 0x09, 0xf2, 0xcb, 0x56, 0xf7, 0x2f, 0xeb, 0x6f, 0x72, 0x9f, 0xcd, 0xe2, - 0x9e, 0x41, 0x2c, 0xfd, 0xde, 0xf5, 0xcd, 0xd1, 0x92, 0x2e, 0xef, 0xfa, 0xe7, 0x69, 0xbd, 0x22, - 0x6f, 0x77, 0xa4, 0x6e, 0xaf, 0xe6, 0xef, 0xfe, 0x20, 0xfd, 0xdd, 0x74, 0x16, 0x55, 0xa7, 0xae, - 0xee, 0x32, 0xfd, 0x96, 0xb3, 0xaa, 0xfe, 0x24, 0x0e, 0xee, 0xb3, 0x59, 0xdb, 0xa3, 0xab, 0x16, - 0x3d, 0xdb, 0x17, 0xb5, 0xb3, 0x7f, 0x1a, 0x33, 0x7b, 0xa4, 0x23, 0x63, 0x72, 0x6d, 0x5d, 0x21, - 0x78, 0x87, 0x2c, 0x86, 0xaf, 0x23, 0x2d, 0xed, 0x7a, 0x5a, 0xda, 0xa3, 0xab, 0x35, 0x4f, 0x88, - 0x6e, 0x6c, 0x5a, 0x3f, 0xb4, 0x69, 0x58, 0x5f, 0x83, 0x5d, 0x0d, 0xa7, 0xb2, 0x65, 0x73, 0x1a, - 0x91, 0x6d, 0xd3, 0x8a, 0x46, 0x44, 0xdf, 0x66, 0x6a, 0xf2, 0xf3, 0x99, 0xce, 0x24, 0x20, 0xa2, - 0xb4, 0xa0, 0x6b, 0x65, 0x41, 0xe9, 0xcc, 0x01, 0x79, 0x64, 0xf7, 0x65, 0xad, 0xe8, 0xc1, 0x1c, - 0x69, 0x77, 0xf5, 0x05, 0xb0, 0x42, 0x10, 0x39, 0xd5, 0xdb, 0x9a, 0xd2, 0x18, 0x4d, 0x27, 0xab, - 0xcc, 0x20, 0x48, 0x9b, 0x31, 0x75, 0x8b, 0x46, 0xea, 0x65, 0xf5, 0x63, 0x75, 0xa9, 0xf2, 0x12, - 0x4f, 0x45, 0x0f, 0x4a, 0x10, 0x85, 0xca, 0xe0, 0x72, 0x38, 0xf6, 0x54, 0x39, 0x4e, 0x8e, 0x84, - 0xc3, 0x11, 0x52, 0xb6, 0x12, 0x0e, 0x47, 0xc2, 0xe1, 0x74, 0x67, 0xdd, 0x25, 0xb0, 0x4d, 0x95, - 0xd6, 0x7c, 0x8e, 0xe5, 0x29, 0x61, 0xda, 0x52, 0xe2, 0xda, 0x48, 0x5c, 0x1b, 0x89, 0x6b, 0x23, - 0x43, 0x4d, 0x09, 0x65, 0xb0, 0xee, 0xb0, 0x36, 0x1f, 0x24, 0xac, 0x4d, 0x41, 0x10, 0x6a, 0x69, - 0x92, 0x5b, 0x8b, 0x43, 0x2d, 0x53, 0x6e, 0x27, 0x14, 0xb5, 0x4c, 0x57, 0x1e, 0x94, 0x5f, 0xc9, - 0xde, 0x4b, 0x48, 0x1b, 0x09, 0x69, 0x23, 0xad, 0xea, 0xb3, 0x5a, 0xd5, 0xb5, 0x47, 0xb4, 0xd9, - 0x69, 0x6e, 0x50, 0xab, 0xf4, 0xb7, 0x04, 0xb4, 0xa9, 0xb0, 0xd6, 0xed, 0xe3, 0xd9, 0x64, 0xc8, - 0xb6, 0x68, 0xa7, 0x25, 0x9a, 0x4d, 0x5b, 0x46, 0x5a, 0x82, 0xd9, 0x48, 0x30, 0x1b, 0x69, 0xa2, - 0x9f, 0xd1, 0x44, 0xbf, 0x05, 0x2c, 0x9b, 0xf1, 0x50, 0x82, 0xd9, 0xa4, 0x6d, 0x67, 0x07, 0x58, - 0x36, 0x4b, 0x84, 0xdb, 0xb4, 0x9f, 0x12, 0xc9, 0xa6, 0x2d, 0x0b, 0x2a, 0x81, 0x6c, 0x24, 0x90, - 0x8d, 0xb4, 0xc1, 0x6b, 0x65, 0x83, 0xdf, 0x02, 0x8e, 0xcd, 0x8e, 0xc4, 0xb1, 0x89, 0xcd, 0x6f, - 0x17, 0x30, 0x36, 0x4b, 0x84, 0x5b, 0x34, 0xbf, 0x12, 0xc4, 0xe6, 0x05, 0x0c, 0xb5, 0xc4, 0xb0, - 0x59, 0x6b, 0xc3, 0x2b, 0x31, 0x6c, 0xde, 0x8a, 0xf9, 0x7d, 0x7b, 0x10, 0x36, 0xef, 0xe5, 0x91, - 0xbe, 0xc4, 0xae, 0x6f, 0xb7, 0x08, 0x36, 0x65, 0x6d, 0xb4, 0xb9, 0x13, 0x2c, 0xf1, 0x6b, 0x3a, - 0xb5, 0xc2, 0x12, 0xbe, 0x46, 0xc2, 0xd7, 0x48, 0x13, 0xfc, 0xd2, 0x26, 0x58, 0xa2, 0xd7, 0xbc, - 0x51, 0xe3, 0xdb, 0x01, 0x78, 0x4d, 0x11, 0xfd, 0x0e, 0x8c, 0xae, 0x84, 0xae, 0x69, 0xc7, 0xd8, - 0x4a, 0xe4, 0x1a, 0x89, 0x5c, 0x23, 0xad, 0xec, 0x4b, 0xa6, 0x63, 0xbd, 0x25, 0xe0, 0x9a, 0x1d, - 0xe9, 0xe5, 0xa6, 0xb2, 0xa5, 0xba, 0x74, 0x70, 0xbb, 0x82, 0xad, 0x29, 0x20, 0x2e, 0x51, 0x6b, - 0x56, 0x33, 0xb4, 0x12, 0xb4, 0x46, 0x82, 0xd6, 0x48, 0x23, 0xfb, 0x22, 0x46, 0x76, 0xdd, 0x31, - 0x6b, 0x3e, 0x48, 0xcc, 0x9a, 0xcc, 0x4c, 0xb6, 0x6b, 0x49, 0x5b, 0x46, 0xac, 0x49, 0xd3, 0x94, - 0x80, 0x35, 0x2b, 0x59, 0x4d, 0x89, 0x57, 0x23, 0xf1, 0x6a, 0xa4, 0x01, 0x6d, 0xac, 0x01, 0x5a, - 0xc0, 0xab, 0x59, 0x96, 0x43, 0x09, 0x57, 0x53, 0x5e, 0x52, 0xb4, 0xe0, 0xf3, 0xc0, 0xda, 0x34, - 0x84, 0xaf, 0x39, 0xf1, 0x26, 0xba, 0x46, 0xb5, 0x37, 0x96, 0x10, 0x36, 0x4d, 0xf5, 0xb1, 0x84, - 0xb0, 0xc9, 0x48, 0xab, 0x84, 0xb0, 0xe9, 0xc6, 0xe0, 0x4b, 0x08, 0x9b, 0x2a, 0x0d, 0xf9, 0x2c, - 0x0b, 0x56, 0x89, 0x5e, 0x23, 0xd1, 0x6b, 0x24, 0x7a, 0x8d, 0x8c, 0x39, 0xbd, 0x09, 0xe0, 0x9a, - 0x15, 0xb3, 0x26, 0xde, 0x34, 0x72, 0x4d, 0x27, 0xa0, 0x35, 0x1d, 0xe0, 0xd5, 0x48, 0xa8, 0x9a, - 0x36, 0xec, 0xba, 0x23, 0x51, 0x6a, 0x24, 0x4a, 0x8d, 0xb4, 0x9e, 0xcf, 0x64, 0x3d, 0x9d, 0x75, - 0x07, 0xa8, 0xf9, 0xb8, 0x02, 0x40, 0x8d, 0xc4, 0xa6, 0x69, 0x62, 0x8f, 0x9d, 0xd6, 0x61, 0x69, - 0x9c, 0x96, 0x11, 0x69, 0x1c, 0x09, 0x46, 0xb3, 0xba, 0x19, 0x96, 0x38, 0x34, 0x12, 0x87, 0x46, - 0x1a, 0xe1, 0xe7, 0x31, 0xc2, 0x6f, 0x02, 0x82, 0x66, 0x5b, 0x42, 0xd0, 0x44, 0x26, 0xb2, 0x03, - 0xf4, 0x19, 0xa7, 0x75, 0xe0, 0x19, 0x47, 0x62, 0xce, 0xb4, 0x60, 0x28, 0xb1, 0x84, 0x9b, 0x91, - 0x70, 0x33, 0xd2, 0xd4, 0xae, 0xcb, 0x67, 0xf5, 0x24, 0xd2, 0xcc, 0x9b, 0xb1, 0xb2, 0xb8, 0x03, - 0x90, 0x19, 0xdc, 0x3a, 0xbe, 0x0c, 0x96, 0xd0, 0x32, 0xcf, 0x6a, 0x8f, 0x89, 0x44, 0x95, 0x01, - 0x12, 0x55, 0x46, 0x5a, 0xd9, 0x97, 0xb4, 0xb2, 0xe4, 0xcd, 0x01, 0xca, 0x6c, 0xc9, 0xa3, 0x76, - 0xfe, 0x66, 0x6c, 0xc7, 0x58, 0x32, 0x9d, 0xc2, 0xc8, 0x48, 0x04, 0x99, 0xae, 0x8c, 0xad, 0x04, - 0x8f, 0x91, 0xe0, 0x31, 0xd2, 0xd2, 0xbe, 0xa0, 0xa5, 0x5d, 0x7f, 0xdc, 0x98, 0x8f, 0xdb, 0x12, - 0x36, 0x26, 0x65, 0x62, 0xbb, 0x40, 0x8c, 0xe9, 0x0c, 0x2c, 0x46, 0xe2, 0xc4, 0xb4, 0x65, 0x52, - 0x1d, 0x09, 0x11, 0x23, 0x21, 0x62, 0xa4, 0x2d, 0x7d, 0x99, 0x5c, 0xa8, 0xb7, 0x84, 0x0e, 0x23, - 0x5d, 0xd6, 0x28, 0x5f, 0xa9, 0x23, 0x6f, 0xd5, 0xe9, 0x08, 0x13, 0xc6, 0xf9, 0xb3, 0xc0, 0xc1, - 0x88, 0x16, 0x7c, 0x0e, 0xbb, 0x3b, 0x95, 0x88, 0x31, 0x12, 0x31, 0x46, 0xda, 0xdc, 0x67, 0xb6, - 0xb9, 0x53, 0x09, 0x16, 0x03, 0x9e, 0x59, 0xdf, 0xb4, 0x6f, 0x61, 0xa7, 0x6d, 0xe3, 0xc4, 0x4c, - 0xdb, 0x85, 0x88, 0x99, 0x4a, 0x74, 0x98, 0x55, 0x8d, 0xa3, 0x04, 0x86, 0x91, 0xc0, 0x30, 0xd2, - 0x4e, 0x36, 0x16, 0xfe, 0x16, 0x80, 0x61, 0xa6, 0x12, 0x13, 0xe6, 0x0d, 0x62, 0xc2, 0x88, 0xdf, - 0x15, 0x51, 0x81, 0x3c, 0x8a, 0xe1, 0xda, 0x74, 0x5a, 0x10, 0xa6, 0xe5, 0x37, 0x56, 0xd1, 0x66, - 0x09, 0xd0, 0xb6, 0x92, 0x99, 0x15, 0xc1, 0xc2, 0xf8, 0xe4, 0x11, 0x62, 0x5b, 0x15, 0xac, 0x1f, - 0xa8, 0xab, 0x73, 0x04, 0xe9, 0x8a, 0xfe, 0x02, 0x11, 0x42, 0xa9, 0x56, 0x28, 0xaa, 0x80, 0x09, - 0x35, 0x0e, 0x5a, 0x72, 0xe1, 0x40, 0x6b, 0x17, 0x8c, 0x45, 0x2a, 0xd0, 0x45, 0xc5, 0x14, 0xb9, - 0x2e, 0x9a, 0x04, 0xac, 0x3b, 0xae, 0x50, 0x01, 0xd9, 0x6a, 0x21, 0x28, 0xc6, 0x0f, 0x42, 0xd5, - 0xea, 0xc8, 0x88, 0x6d, 0x1d, 0x18, 0xba, 0x2f, 0x9b, 0xd5, 0x8a, 0xc2, 0xa5, 0x43, 0x15, 0x0e, - 0x54, 0xaf, 0xbf, 0x02, 0x9f, 0xd7, 0xe5, 0x4f, 0xe1, 0x39, 0xe5, 0x1b, 0x54, 0x9e, 0x85, 0xae, - 0x5c, 0x9d, 0xa0, 0xb0, 0xab, 0x41, 0xcd, 0xa6, 0x9d, 0x0d, 0xf8, 0x84, 0x93, 0x94, 0x8c, 0x22, - 0xc4, 0x28, 0x8b, 0xe4, 0xf0, 0xf7, 0xfa, 0x1d, 0xeb, 0xaa, 0xf4, 0x9d, 0x4c, 0x1a, 0x42, 0x01, - 0x88, 0xd5, 0x2d, 0xd4, 0xee, 0x66, 0x74, 0x75, 0x6a, 0xd1, 0xf7, 0x39, 0x47, 0x1a, 0x81, 0xd6, - 0xcc, 0x28, 0x02, 0xbb, 0xb2, 0x99, 0xc6, 0x21, 0x8f, 0x2c, 0x4a, 0x39, 0xcc, 0x69, 0x7c, 0xe9, - 0x96, 0x00, 0xa6, 0x91, 0x30, 0x22, 0x4b, 0x1d, 0xcc, 0x15, 0xf1, 0xcd, 0x10, 0x21, 0x30, 0xaa, - 0x9a, 0x00, 0x54, 0x02, 0xa0, 0x53, 0x0d, 0x80, 0xa6, 0xea, 0x22, 0x03, 0x7d, 0x71, 0xf5, 0x89, - 0xd0, 0xba, 0x9d, 0x69, 0x8a, 0x19, 0x2d, 0x5c, 0x2e, 0x96, 0xb5, 0x57, 0xf2, 0xbe, 0xc4, 0xe3, - 0xaa, 0xf8, 0x40, 0xa4, 0x18, 0x44, 0x96, 0xe9, 0xae, 0xbd, 0x88, 0x4a, 0x8e, 0x86, 0xe5, 0xc1, - 0xed, 0x1a, 0x1e, 0x17, 0x1b, 0x81, 0x5b, 0x48, 0xc8, 0x81, 0xe7, 0xb2, 0xd7, 0x12, 0xf1, 0xb1, - 0x88, 0x4e, 0x98, 0x7d, 0xfe, 0x1d, 0x5f, 0xd2, 0x85, 0xf7, 0x27, 0x5a, 0x17, 0xb9, 0x8f, 0x02, - 0x49, 0xc2, 0x0d, 0xd7, 0x6e, 0x39, 0x4a, 0x74, 0x54, 0x1d, 0xda, 0xaf, 0xeb, 0xb8, 0x35, 0x76, - 0xd6, 0xa2, 0x85, 0xc8, 0x50, 0x6c, 0xbf, 0xa1, 0xa6, 0x67, 0x15, 0x98, 0x9d, 0x60, 0x76, 0xae, - 0xad, 0x53, 0xf8, 0x20, 0xee, 0x45, 0x75, 0xe7, 0x39, 0xb5, 0xec, 0x2d, 0xad, 0xe4, 0x21, 0x09, - 0x66, 0x9c, 0x7d, 0xb6, 0x3d, 0xba, 0xac, 0xbc, 0x70, 0x74, 0xab, 0x9e, 0x3f, 0x94, 0x14, 0x90, - 0x3a, 0x11, 0x88, 0x15, 0x5d, 0x95, 0x09, 0xd2, 0x74, 0x93, 0x2e, 0x94, 0xab, 0x96, 0x0c, 0x99, - 0x95, 0x99, 0xf1, 0x2d, 0x3c, 0xab, 0xa1, 0x0e, 0x6b, 0xd5, 0x3b, 0xf2, 0x63, 0x92, 0x35, 0x6b, - 0x5d, 0xda, 0x35, 0x9b, 0x62, 0x6b, 0x14, 0xfd, 0x81, 0x72, 0xf4, 0x31, 0xfd, 0x57, 0x1c, 0xf9, - 0xce, 0x9b, 0xfa, 0xb5, 0x44, 0xc3, 0x66, 0xdd, 0xb9, 0x4e, 0x0d, 0xd5, 0xeb, 0x0f, 0x22, 0xac, - 0xd3, 0xa6, 0x86, 0x7c, 0x8d, 0x0a, 0xb2, 0x43, 0xfd, 0x88, 0x0c, 0x03, 0x4b, 0xc5, 0xd8, 0x24, - 0x6e, 0xb1, 0xb2, 0x5e, 0x64, 0x43, 0xff, 0x22, 0x8a, 0x71, 0xd8, 0x44, 0x31, 0x8e, 0xb6, 0x1a, - 0x29, 0xc6, 0xda, 0xd5, 0x98, 0x66, 0x1c, 0xd7, 0xd1, 0x8c, 0x91, 0x8e, 0xc3, 0x6b, 0xaa, 0xe2, - 0xa4, 0x86, 0xeb, 0x74, 0x09, 0xf8, 0xeb, 0x3d, 0x72, 0xef, 0x6d, 0x83, 0x50, 0x4f, 0x56, 0x2a, - 0xba, 0x17, 0x59, 0x01, 0x26, 0x66, 0x60, 0x7d, 0x16, 0x82, 0xdb, 0xdb, 0xcf, 0xb6, 0x10, 0xfc, - 0x61, 0xa7, 0xc9, 0x42, 0xf0, 0x5b, 0xb3, 0x85, 0xe0, 0xb7, 0x35, 0xd5, 0x92, 0x63, 0xa9, 0x26, - 0x3b, 0x55, 0x93, 0x5f, 0xad, 0x49, 0x24, 0xa5, 0xd7, 0xd6, 0x81, 0x47, 0xec, 0xe9, 0x14, 0x5c, - 0x10, 0xe8, 0x12, 0xa9, 0x35, 0x5f, 0x44, 0x6b, 0x26, 0x27, 0x84, 0xcf, 0xc3, 0xfa, 0xe8, 0xce, - 0xf7, 0x43, 0xa9, 0x3b, 0x5f, 0x93, 0xee, 0xdc, 0x92, 0xba, 0xf3, 0xf9, 0x75, 0xe7, 0xa1, 0x35, - 0x91, 0x9a, 0xf3, 0xc5, 0x35, 0x27, 0x9d, 0x85, 0xf5, 0xd1, 0x9b, 0x5b, 0x1f, 0xa5, 0xde, 0x5c, - 0x49, 0x6f, 0xb6, 0xad, 0x38, 0xdf, 0xd7, 0xde, 0xd6, 0xe1, 0x70, 0x53, 0xf6, 0x33, 0xef, 0xea, - 0xfc, 0xc9, 0xd4, 0xed, 0xd5, 0x1c, 0x21, 0xe3, 0xda, 0x62, 0x99, 0xc4, 0x52, 0xc3, 0x2e, 0x89, - 0xc0, 0x81, 0x6d, 0xde, 0xda, 0x31, 0x9b, 0x33, 0x56, 0x5e, 0xb0, 0x01, 0xfb, 0xac, 0x43, 0x13, - 0x91, 0x18, 0x23, 0x96, 0x0d, 0xe6, 0xb9, 0xcd, 0x38, 0x57, 0x61, 0x3f, 0xfd, 0x91, 0xd4, 0xfc, - 0xfd, 0xb2, 0x63, 0xaa, 0x41, 0x1f, 0x42, 0xce, 0x32, 0xed, 0x09, 0xa2, 0x6c, 0x70, 0xa2, 0x63, - 0x72, 0xca, 0x7e, 0x26, 0x26, 0x6c, 0x89, 0x38, 0x2f, 0x10, 0x3d, 0x66, 0x55, 0x0e, 0x0d, 0xc4, - 0x46, 0xe4, 0x0f, 0x3e, 0x77, 0xca, 0x78, 0xe7, 0x5a, 0x51, 0x7e, 0x4c, 0x7c, 0x11, 0xfb, 0xc3, - 0x0e, 0x78, 0xda, 0xdc, 0x74, 0x75, 0x13, 0xd3, 0xd9, 0x7c, 0x37, 0xda, 0x31, 0xcd, 0xb2, 0xda, - 0x1f, 0xd4, 0xed, 0x74, 0xfd, 0x0f, 0xa3, 0xf7, 0x09, 0xa5, 0x90, 0x53, 0xe3, 0x63, 0xa6, 0xfc, - 0xf6, 0x38, 0x28, 0xff, 0xb4, 0xf1, 0xba, 0xd4, 0x0d, 0xb2, 0x34, 0x3a, 0x76, 0x6e, 0x6d, 0x85, - 0x73, 0xe8, 0xd7, 0x93, 0x1a, 0x47, 0x4c, 0xe3, 0x08, 0xe5, 0x41, 0x15, 0xcc, 0xcd, 0xaf, 0xd3, - 0x29, 0x46, 0xc4, 0xa7, 0x50, 0x3b, 0x0a, 0xc9, 0xeb, 0x5e, 0x53, 0x42, 0x54, 0xc0, 0x34, 0xa2, - 0xdb, 0x96, 0x52, 0x57, 0x23, 0x2c, 0xa5, 0x29, 0x7d, 0x18, 0x36, 0x26, 0x11, 0xaa, 0x95, 0x1a, - 0xc0, 0x76, 0xb5, 0x52, 0x98, 0x92, 0x97, 0xb9, 0x33, 0x1c, 0x4e, 0xa8, 0x72, 0xd0, 0x08, 0xd5, - 0x12, 0x86, 0x3d, 0x53, 0x6d, 0x07, 0x59, 0xbd, 0x7e, 0xcb, 0x09, 0xf3, 0xcf, 0xb0, 0xb6, 0x4c, - 0xb3, 0xc1, 0x4b, 0xac, 0x2a, 0x47, 0x4d, 0x56, 0x95, 0xcf, 0xe7, 0x8c, 0xbf, 0xdf, 0x69, 0xb4, - 0x71, 0xf3, 0xdf, 0xff, 0xac, 0x99, 0x5f, 0x2d, 0x35, 0x69, 0xe3, 0xb5, 0xdb, 0xb1, 0x75, 0x8f, - 0x5c, 0x02, 0x4e, 0x6d, 0x62, 0xbb, 0xd7, 0xd6, 0x67, 0xbd, 0xb6, 0x32, 0x94, 0x9e, 0x72, 0xe2, - 0xba, 0x58, 0xe8, 0x44, 0x9b, 0xd7, 0x54, 0x63, 0x26, 0x1b, 0xfb, 0x68, 0xe4, 0x9f, 0x49, 0x8f, - 0x75, 0xbc, 0xd8, 0x12, 0xfc, 0x5c, 0xa3, 0xf8, 0x27, 0x1a, 0x57, 0x13, 0xf1, 0x5a, 0x9f, 0x62, - 0xac, 0x9f, 0xc2, 0xbb, 0xd2, 0x79, 0x83, 0x5b, 0xfd, 0x0e, 0x1d, 0x4c, 0x67, 0xf2, 0xb8, 0x81, - 0xe8, 0x22, 0xe9, 0x4d, 0x1c, 0x37, 0x78, 0xb9, 0x03, 0x05, 0x8c, 0xdf, 0x72, 0x0e, 0x14, 0xc8, - 0x43, 0x03, 0x2f, 0x77, 0x68, 0x80, 0x5d, 0x05, 0xd3, 0xa2, 0xc6, 0xa9, 0xfd, 0x2a, 0xb7, 0xb1, - 0x60, 0x0f, 0x94, 0x5a, 0xd9, 0x4f, 0x51, 0x79, 0xa5, 0xff, 0x63, 0xe7, 0x47, 0x15, 0xca, 0xce, - 0x2a, 0xb0, 0xaf, 0x72, 0xdb, 0xb3, 0x19, 0x7d, 0x97, 0x97, 0x3e, 0xc2, 0xc0, 0x4d, 0xb3, 0x3c, - 0x24, 0x10, 0x1e, 0x12, 0xa0, 0xb3, 0xb2, 0x76, 0xc7, 0x04, 0xca, 0x8a, 0xb6, 0x1d, 0x65, 0xde, - 0xa9, 0x11, 0xf4, 0x51, 0x3e, 0x43, 0x02, 0x43, 0x3e, 0x57, 0x5e, 0x95, 0xa7, 0xb2, 0xb1, 0xf2, - 0x4a, 0x95, 0x0d, 0x88, 0x4b, 0xe8, 0xcb, 0x1d, 0x56, 0x2e, 0x4b, 0x03, 0x0b, 0x71, 0x68, 0x41, - 0xf6, 0x4d, 0x0d, 0xf1, 0x41, 0x09, 0x79, 0x4d, 0xe3, 0x8b, 0xf9, 0x63, 0x4b, 0x88, 0xdf, 0x1a, - 0x8c, 0x62, 0xae, 0x35, 0x6a, 0x4f, 0xdb, 0xeb, 0x53, 0xd0, 0x0b, 0x8e, 0x05, 0xf7, 0x05, 0x97, - 0xff, 0xac, 0x4a, 0x80, 0x5d, 0xcf, 0x02, 0x30, 0xe7, 0x6c, 0x9c, 0x8f, 0x74, 0x03, 0xd5, 0xff, - 0x76, 0x9e, 0x1b, 0x56, 0xe5, 0xce, 0x11, 0x9b, 0x89, 0x7e, 0xbf, 0x86, 0x0f, 0x12, 0x9a, 0x13, - 0xcc, 0x92, 0x1a, 0xbe, 0x58, 0x18, 0x1f, 0xd9, 0x2e, 0xf2, 0x55, 0xf1, 0x05, 0x72, 0xef, 0x75, - 0x0d, 0xd5, 0x08, 0x0e, 0x05, 0x6f, 0x84, 0x11, 0xb9, 0x82, 0x77, 0xe8, 0xc4, 0xd6, 0xee, 0x7a, - 0x6c, 0x6e, 0xfa, 0x6d, 0x39, 0x25, 0x00, 0xd1, 0x45, 0xb0, 0xe0, 0xcb, 0x05, 0x7d, 0xd1, 0x0c, - 0x1b, 0xa3, 0x78, 0x78, 0xc5, 0xba, 0x12, 0x0f, 0x8a, 0xed, 0x14, 0x8d, 0x89, 0xf0, 0x34, 0x7f, - 0x17, 0x7f, 0xa3, 0x20, 0x1a, 0x95, 0x5a, 0x53, 0x94, 0x33, 0xaa, 0xdc, 0x1b, 0xe8, 0xbf, 0x06, - 0x5f, 0xef, 0x52, 0x37, 0x85, 0x20, 0x6c, 0x5c, 0xe4, 0x20, 0x48, 0x04, 0x35, 0x9e, 0xeb, 0x59, - 0x16, 0xd7, 0xfd, 0x42, 0xa5, 0x75, 0xa6, 0x3c, 0xee, 0x21, 0xb5, 0x56, 0xec, 0x3b, 0x58, 0x95, - 0xc5, 0x6d, 0xeb, 0xd2, 0xd5, 0x67, 0x33, 0xe4, 0x8a, 0x07, 0x4f, 0xd9, 0x34, 0xc6, 0xaa, 0x50, - 0x0d, 0x64, 0xbd, 0x96, 0xa8, 0xfe, 0xf5, 0xaf, 0x20, 0x64, 0x04, 0x1d, 0x73, 0x7e, 0xfc, 0x95, - 0x07, 0x5e, 0x9b, 0xc9, 0xea, 0x8a, 0x6c, 0xd9, 0x1a, 0x6b, 0xae, 0xce, 0x9e, 0xad, 0xc7, 0x94, - 0x97, 0xe7, 0x89, 0x2e, 0x9a, 0xf3, 0x46, 0xbe, 0x43, 0x5c, 0x82, 0x27, 0x6a, 0x7f, 0x37, 0xd6, - 0x31, 0xbe, 0xf9, 0x0a, 0x03, 0xa0, 0xdb, 0x1d, 0x6d, 0x25, 0x85, 0x67, 0x6e, 0xe6, 0x36, 0x35, - 0x10, 0x6c, 0xb9, 0x12, 0x06, 0x40, 0x6d, 0xf7, 0x51, 0x55, 0xd5, 0x56, 0x36, 0x84, 0xd6, 0x62, - 0x47, 0x88, 0x29, 0x82, 0x50, 0xb3, 0xb8, 0xe8, 0x77, 0x0f, 0x61, 0xc2, 0x4c, 0xe5, 0x19, 0x72, - 0x4d, 0x1d, 0x63, 0xdd, 0xb6, 0xea, 0xab, 0x04, 0x76, 0x19, 0xbe, 0xc5, 0x3d, 0x63, 0x7d, 0x72, - 0x55, 0xc4, 0x97, 0x86, 0x4c, 0x14, 0x1b, 0x41, 0x9d, 0xa4, 0x89, 0x85, 0x1f, 0x6f, 0x6b, 0x40, - 0xac, 0xd6, 0x12, 0x22, 0x47, 0xcb, 0x21, 0x53, 0x27, 0xa7, 0x08, 0x63, 0xea, 0xc6, 0xfa, 0xfb, - 0x67, 0xab, 0x7d, 0xec, 0x58, 0x61, 0x6f, 0x05, 0xe2, 0xa1, 0xc6, 0xca, 0x60, 0x35, 0x7a, 0x5f, - 0xfd, 0x25, 0x38, 0xb1, 0x41, 0x30, 0x95, 0x80, 0xc1, 0x99, 0x00, 0xfc, 0x88, 0x59, 0x4c, 0xd6, - 0x89, 0x1a, 0x52, 0x57, 0x6c, 0x88, 0x6b, 0xf8, 0x01, 0xa8, 0xa9, 0xe8, 0xc5, 0x95, 0x7d, 0xeb, - 0x66, 0x81, 0xad, 0x8e, 0x8f, 0x2d, 0xa7, 0x16, 0x06, 0x56, 0x77, 0xbb, 0x1b, 0x91, 0x6f, 0x15, - 0x2e, 0xdc, 0x85, 0x6b, 0xd6, 0x0c, 0x52, 0x14, 0x57, 0x37, 0x39, 0xfe, 0x02, 0xae, 0x03, 0xa5, - 0x37, 0xb5, 0x2d, 0xaa, 0xa3, 0x6c, 0xba, 0xde, 0x0a, 0x70, 0x03, 0xc7, 0x75, 0xb5, 0xad, 0xba, - 0x49, 0x45, 0x46, 0x11, 0xd7, 0x8b, 0xbf, 0x85, 0xf1, 0x30, 0x35, 0xfc, 0x51, 0x53, 0x74, 0x1d, - 0x97, 0xba, 0x57, 0x2e, 0x79, 0x04, 0xd0, 0xd0, 0x21, 0xf6, 0xc7, 0x7c, 0x37, 0xc7, 0x67, 0x5a, - 0x99, 0xa8, 0xef, 0xfb, 0xee, 0x82, 0x15, 0x97, 0x89, 0x19, 0xd2, 0x6c, 0xb7, 0x3e, 0x80, 0x24, - 0x0a, 0xb2, 0x80, 0x42, 0x80, 0xa2, 0x4f, 0xd0, 0x55, 0x93, 0xf9, 0x41, 0x1b, 0xab, 0x36, 0x83, - 0x89, 0x8b, 0x10, 0xb9, 0xe4, 0x5f, 0x75, 0xdf, 0x05, 0xc9, 0xbf, 0x92, 0xf0, 0x7f, 0xed, 0xb4, - 0x72, 0x06, 0x71, 0xd8, 0xc4, 0x59, 0xfa, 0x6b, 0xe3, 0x2d, 0xd1, 0x67, 0xdf, 0x66, 0x8d, 0x5a, - 0xc8, 0x7e, 0xa8, 0xb5, 0x9d, 0x36, 0x78, 0x6e, 0x61, 0xd8, 0xc6, 0x45, 0xf6, 0x33, 0x75, 0x2d, - 0xcd, 0x46, 0xe6, 0x9b, 0x3b, 0xd1, 0xbc, 0x94, 0x7c, 0x8b, 0xa7, 0xdd, 0x96, 0x19, 0xaa, 0x6f, - 0xb6, 0xd5, 0xec, 0x67, 0x0a, 0x5a, 0xe3, 0x89, 0xf4, 0xeb, 0x24, 0x38, 0xa4, 0xbb, 0xf7, 0x3c, - 0xba, 0x0a, 0x9b, 0x39, 0xba, 0xea, 0x80, 0x7a, 0x12, 0x75, 0x2e, 0x6a, 0x28, 0x0f, 0x8a, 0x2e, - 0x52, 0x16, 0xab, 0x36, 0x4c, 0x5c, 0xa8, 0x1b, 0xa1, 0x14, 0x27, 0xfe, 0x68, 0xf3, 0xe5, 0x38, - 0x59, 0x2e, 0xc3, 0xe1, 0xaf, 0xf6, 0xa9, 0xfb, 0x12, 0x1c, 0xff, 0x6e, 0xbd, 0x85, 0x40, 0x7e, - 0xe3, 0xdf, 0xad, 0xb7, 0xb0, 0x2c, 0xbd, 0xb9, 0xb7, 0x3b, 0x6b, 0xd7, 0x97, 0xdd, 0xa5, 0x5b, - 0xc9, 0xf6, 0x40, 0x5b, 0xac, 0xf0, 0xac, 0xa2, 0xcb, 0x1b, 0x65, 0x92, 0x1b, 0xfc, 0x68, 0x9f, - 0x76, 0x5a, 0x6e, 0x97, 0xef, 0xb5, 0x2e, 0xb6, 0x86, 0x37, 0xd1, 0x23, 0xa9, 0x6d, 0x5d, 0x60, - 0x19, 0x75, 0x2e, 0xaf, 0x4e, 0xbb, 0xa2, 0xca, 0xe9, 0xfa, 0x92, 0xea, 0xb4, 0x2d, 0xa4, 0x8c, - 0x76, 0x68, 0x63, 0xdb, 0x16, 0x4f, 0x3e, 0xda, 0xcb, 0xd2, 0xd9, 0xa1, 0x60, 0x26, 0x5b, 0x0c, - 0xe4, 0xb2, 0x23, 0x6b, 0x1a, 0xcc, 0x75, 0x56, 0x20, 0x9d, 0x6e, 0x44, 0x91, 0xb5, 0xc6, 0x24, - 0x71, 0x7a, 0xd5, 0x3a, 0xd5, 0xb4, 0x0c, 0x4e, 0x3b, 0x15, 0xbf, 0x04, 0x76, 0xd8, 0x29, 0x7c, - 0x08, 0x7c, 0x8d, 0x14, 0x62, 0x92, 0x1a, 0xe5, 0x70, 0xb6, 0xd2, 0x16, 0x83, 0x1b, 0x41, 0xe9, - 0x76, 0x02, 0x04, 0x92, 0xf6, 0x1a, 0xb2, 0xef, 0x91, 0xfb, 0x2d, 0x38, 0xb2, 0x9a, 0x6c, 0x29, - 0x8d, 0x00, 0xd0, 0x5e, 0x7b, 0x1e, 0x3b, 0xe9, 0xf5, 0x2d, 0x71, 0x46, 0x36, 0xd5, 0x6a, 0xde, - 0x09, 0xda, 0x6e, 0xda, 0x3e, 0xb4, 0x26, 0x85, 0x2d, 0xfb, 0x27, 0xd0, 0xda, 0x6b, 0x37, 0x75, - 0xde, 0x22, 0x6a, 0x35, 0x7b, 0xc4, 0x23, 0xed, 0xa9, 0xad, 0xd8, 0x64, 0x2a, 0xf1, 0x39, 0x6a, - 0x32, 0x9b, 0x0e, 0xdd, 0xde, 0x2b, 0xa6, 0x33, 0x14, 0xa3, 0x06, 0x97, 0x12, 0x17, 0x55, 0xc7, - 0xc6, 0x3a, 0xfb, 0x2d, 0x18, 0x4a, 0xae, 0x1b, 0xe6, 0x59, 0x31, 0x5c, 0x2f, 0x10, 0xf8, 0x0e, - 0xce, 0xa2, 0x54, 0x06, 0xc5, 0xa3, 0x38, 0xb1, 0x1f, 0x8f, 0x2c, 0x08, 0x49, 0xb0, 0x18, 0x4f, - 0x2a, 0x6e, 0x29, 0x0e, 0x74, 0x99, 0x1b, 0x10, 0x9f, 0xdb, 0x8b, 0xcf, 0x36, 0xd9, 0xb7, 0x26, - 0xf4, 0xbf, 0xf4, 0x7f, 0x25, 0xdb, 0x00, 0xf1, 0x97, 0x00, 0x0a, 0x93, 0x06, 0x83, 0x78, 0x6c, - 0x58, 0x24, 0x3f, 0xd1, 0x86, 0x05, 0xc4, 0x2f, 0x90, 0x41, 0xdf, 0xb5, 0x3c, 0xaa, 0xbc, 0x1c, - 0x4e, 0x01, 0x7b, 0x3c, 0xee, 0xf8, 0x4f, 0x2a, 0x01, 0x6d, 0x00, 0x9f, 0x6e, 0x6e, 0x82, 0x23, - 0xdd, 0x35, 0x17, 0x74, 0x74, 0x80, 0xe7, 0x4c, 0x20, 0x41, 0x2f, 0x9d, 0x54, 0x74, 0xb4, 0xf8, - 0xca, 0xfb, 0x51, 0x81, 0x89, 0x2a, 0x34, 0xab, 0x5f, 0x1d, 0xc3, 0x86, 0x93, 0x7d, 0xc3, 0xf0, - 0xf7, 0x30, 0x8a, 0xa6, 0x2d, 0x3b, 0x42, 0x85, 0x2c, 0xca, 0xf2, 0x6a, 0x3d, 0xc7, 0xb1, 0x5d, - 0x22, 0x53, 0xaf, 0x5e, 0x55, 0xea, 0x55, 0xde, 0xac, 0xac, 0xbc, 0x61, 0xf6, 0x86, 0xd2, 0xaf, - 0xb0, 0x3f, 0x3e, 0x75, 0x12, 0xb0, 0x82, 0x21, 0xe5, 0x9f, 0x63, 0xc1, 0x6f, 0x2d, 0x03, 0x2b, - 0x33, 0x2e, 0x87, 0x42, 0xc7, 0x03, 0xd2, 0xb9, 0x58, 0xe7, 0x88, 0xda, 0x69, 0x04, 0x0e, 0x6c, - 0xcb, 0x12, 0x3d, 0xdb, 0xd1, 0x28, 0x29, 0xab, 0xdd, 0xc1, 0x1d, 0x0b, 0x24, 0x71, 0xd4, 0xdc, - 0xed, 0x6c, 0x90, 0xa3, 0xe5, 0x2b, 0x26, 0x97, 0x8f, 0x60, 0x3c, 0x80, 0xc1, 0xb1, 0xb9, 0x3b, - 0xf4, 0xb8, 0xa7, 0x9c, 0x7c, 0xfd, 0xe7, 0xfe, 0xcd, 0x29, 0x5d, 0x23, 0xdd, 0x28, 0xef, 0xc2, - 0xfd, 0x21, 0xcf, 0xd3, 0x27, 0xe3, 0x0b, 0xe2, 0x86, 0xe9, 0x5d, 0x33, 0x44, 0x4e, 0x20, 0x26, - 0x47, 0x8b, 0xf3, 0x87, 0x33, 0xe8, 0x42, 0x13, 0xf7, 0xfa, 0xbc, 0x4c, 0xb8, 0x79, 0xa6, 0x62, - 0x83, 0x65, 0x6e, 0x7c, 0xbf, 0xdd, 0xaf, 0x71, 0xc2, 0x4b, 0xac, 0x4b, 0xa7, 0x90, 0xcc, 0xd5, - 0xa9, 0x61, 0xdb, 0x6e, 0x8f, 0xff, 0x74, 0xa1, 0x35, 0xb1, 0xcd, 0x5e, 0xff, 0xef, 0x1f, 0xe9, - 0xd5, 0x57, 0x89, 0x4d, 0xbb, 0x49, 0x65, 0x9c, 0x76, 0xc8, 0x81, 0x13, 0xbe, 0x26, 0xef, 0xbd, - 0x1f, 0x80, 0xbf, 0x0d, 0xff, 0x56, 0x3b, 0xe3, 0x8b, 0x68, 0x0e, 0x4b, 0x41, 0x41, 0x6e, 0xd0, - 0xa9, 0x4b, 0xfb, 0x17, 0xef, 0xb6, 0xa7, 0xdc, 0xd3, 0xa7, 0x73, 0xef, 0x56, 0xbd, 0x47, 0x13, - 0xe6, 0x1b, 0x62, 0xa4, 0x0c, 0x76, 0xb6, 0x47, 0xc3, 0xd1, 0xa0, 0xf8, 0x0d, 0x4a, 0x1e, 0xad, - 0x3c, 0x40, 0x35, 0x8e, 0x3a, 0xd6, 0xde, 0x27, 0xce, 0x0e, 0xc4, 0x05, 0xb1, 0x9d, 0x5e, 0x7f, - 0x4d, 0xbe, 0x90, 0x51, 0xb4, 0xb4, 0x08, 0x0f, 0x67, 0x6f, 0x4c, 0x3d, 0x8b, 0x0f, 0x64, 0xf6, - 0xb3, 0x09, 0xfe, 0xf8, 0x98, 0x07, 0xb6, 0x69, 0x52, 0xde, 0xc2, 0x8c, 0xd9, 0x4f, 0x35, 0x6a, - 0x7a, 0xa7, 0xc1, 0xab, 0xa7, 0x9e, 0xec, 0x3b, 0xce, 0x81, 0xff, 0x88, 0x3f, 0xbb, 0x87, 0x2e, - 0xf0, 0x30, 0x3a, 0x36, 0xa9, 0xc3, 0x41, 0xe7, 0x27, 0xce, 0xd2, 0x49, 0xdc, 0xfc, 0x6a, 0xe9, - 0x24, 0xcc, 0x9f, 0x67, 0xe5, 0x75, 0xd3, 0x39, 0x82, 0x1a, 0x5b, 0x5e, 0x26, 0x6b, 0xfe, 0x03, - 0x8c, 0xd4, 0x9d, 0xe1, 0xc7, 0xad, 0xf7, 0x80, 0x7d, 0xf8, 0x73, 0x18, 0x93, 0xe7, 0x41, 0x29, - 0x5a, 0xd8, 0x3c, 0xd5, 0x58, 0xcb, 0xac, 0x13, 0x5c, 0x06, 0xfd, 0x73, 0xa7, 0x3d, 0xc5, 0xb8, - 0x59, 0x50, 0xff, 0xf0, 0xc6, 0x84, 0x0f, 0x4a, 0xdc, 0x86, 0x1f, 0x7e, 0x2b, 0xad, 0x15, 0xb8, - 0x73, 0x7e, 0xc5, 0xac, 0xca, 0x67, 0x34, 0x78, 0xc4, 0x8a, 0x92, 0xf8, 0xbe, 0x98, 0x86, 0xa9, - 0x5b, 0x37, 0xc8, 0x75, 0x4c, 0x4a, 0x60, 0x33, 0x7c, 0xaf, 0xb8, 0xe3, 0xd4, 0xf7, 0xa2, 0x1d, - 0x08, 0x46, 0x6c, 0xa9, 0x36, 0x74, 0x9c, 0x1b, 0x5a, 0xe4, 0x86, 0x8d, 0x74, 0xe8, 0x5b, 0xde, - 0x60, 0x8d, 0xfa, 0x6c, 0xd6, 0x8c, 0xd2, 0xfb, 0x7b, 0xf0, 0x0e, 0xf1, 0x2b, 0x65, 0x22, 0x5b, - 0x55, 0xb4, 0xe1, 0x44, 0xf3, 0x69, 0xd3, 0xfb, 0xce, 0x0d, 0xd1, 0x4d, 0x74, 0x43, 0x9d, 0xbb, - 0xc4, 0x18, 0x25, 0xa2, 0x49, 0xc2, 0xfd, 0x2c, 0xa2, 0x95, 0x0c, 0x84, 0x51, 0x62, 0xa3, 0x21, - 0x5d, 0x5c, 0x82, 0xef, 0x41, 0x4f, 0xac, 0x87, 0x61, 0xed, 0x1b, 0xf4, 0xe0, 0x28, 0x7d, 0xf6, - 0xee, 0xdf, 0x47, 0x80, 0xa5, 0x8c, 0x7a, 0x18, 0xc2, 0x29, 0x9d, 0x4f, 0x3a, 0x15, 0xa9, 0x29, - 0x4d, 0xd5, 0x4e, 0x84, 0x4b, 0x4a, 0x89, 0xd0, 0x9a, 0x37, 0xf7, 0xba, 0x95, 0xa9, 0xbd, 0x14, - 0xf6, 0x28, 0xa5, 0x71, 0xeb, 0xe3, 0xd0, 0xd3, 0xde, 0xd0, 0xf9, 0xe4, 0x70, 0x6f, 0xc5, 0xd4, - 0x0e, 0xad, 0x89, 0x30, 0x2d, 0xc4, 0x0e, 0x84, 0xa4, 0xc7, 0x84, 0x85, 0x9b, 0x72, 0xea, 0x1f, - 0x5b, 0xa4, 0xa7, 0x60, 0x3d, 0xae, 0xcd, 0x31, 0x89, 0xe3, 0xba, 0xa9, 0x38, 0x43, 0x49, 0xfb, - 0x53, 0x5b, 0xbb, 0x09, 0xca, 0xde, 0xd8, 0xbc, 0x70, 0x82, 0xc8, 0x94, 0x7d, 0x7a, 0x92, 0x7d, - 0x78, 0xb2, 0x82, 0xc0, 0x74, 0x51, 0x30, 0x2f, 0xa9, 0x68, 0x60, 0x74, 0x37, 0x1d, 0x92, 0xc8, - 0xa1, 0xfd, 0x89, 0xae, 0x12, 0x7b, 0x8a, 0x49, 0xe7, 0x9b, 0x9d, 0x7b, 0xbd, 0x99, 0x44, 0x07, - 0x5e, 0x03, 0x95, 0xc4, 0x16, 0x09, 0xbd, 0x40, 0x69, 0xec, 0x15, 0x6d, 0x1f, 0xf7, 0x59, 0x2e, - 0x67, 0x2f, 0xd4, 0x12, 0x7b, 0x85, 0x5b, 0xe5, 0xa9, 0xac, 0xa9, 0xe4, 0xb6, 0x3d, 0x1d, 0x8b, - 0x83, 0x44, 0x3c, 0xa8, 0x37, 0x8c, 0xcd, 0x44, 0x11, 0x2d, 0x96, 0xea, 0x14, 0x8b, 0x74, 0x5c, - 0x72, 0xa9, 0x73, 0xb4, 0xa0, 0xdf, 0xff, 0x15, 0xaf, 0x4c, 0x3b, 0x4b, 0x1b, 0x64, 0xb4, 0x1d, - 0xae, 0xe3, 0xb2, 0xfd, 0x49, 0xef, 0x2f, 0xb0, 0xde, 0x40, 0x9c, 0x7d, 0xbb, 0x92, 0x30, 0x3b, - 0x7b, 0xcf, 0xcc, 0xe3, 0xe5, 0x16, 0x0a, 0x2a, 0x26, 0x74, 0x52, 0xa6, 0x4e, 0x7a, 0x87, 0x88, - 0xc7, 0x26, 0x02, 0xfe, 0x2b, 0xe8, 0xda, 0xd2, 0x36, 0xd9, 0x5e, 0x4a, 0x4b, 0x65, 0xec, 0x63, - 0x9a, 0x6b, 0xf2, 0xb7, 0x2c, 0xb3, 0x4c, 0x53, 0xb0, 0x33, 0x2b, 0xcc, 0x33, 0xa3, 0x98, 0x67, - 0x0a, 0x48, 0x2d, 0xb3, 0x4c, 0x7e, 0xcf, 0x5a, 0xe7, 0x98, 0xfc, 0x1d, 0xd5, 0x25, 0x86, 0xc9, - 0xdb, 0x3a, 0xce, 0xf0, 0x4b, 0xe5, 0x76, 0x69, 0x19, 0xbb, 0xe4, 0xef, 0x4c, 0x96, 0x72, 0x4b, - 0xce, 0x76, 0x62, 0x2e, 0xb3, 0x94, 0x6f, 0xa9, 0xd6, 0xe0, 0x15, 0xa7, 0x92, 0x4d, 0x72, 0x39, - 0x24, 0x35, 0xdc, 0x65, 0x5c, 0x32, 0x4e, 0x70, 0x89, 0x00, 0x83, 0x38, 0x1d, 0xf1, 0x46, 0x2c, - 0x65, 0x95, 0x5c, 0xe1, 0x94, 0x33, 0x44, 0x43, 0x5e, 0x70, 0x6a, 0xb1, 0xc1, 0x54, 0x80, 0x03, - 0x1a, 0x4d, 0x7e, 0xee, 0x76, 0x52, 0xfd, 0x85, 0x49, 0xfe, 0x6e, 0x51, 0x4d, 0x5b, 0x5e, 0xb6, - 0x11, 0x54, 0x63, 0x99, 0x53, 0xbd, 0xb3, 0xd3, 0x68, 0xbd, 0x53, 0xb5, 0x6d, 0xd3, 0x60, 0xe1, - 0x53, 0xb2, 0x5f, 0x51, 0x67, 0xa1, 0x10, 0xf1, 0xb3, 0x3e, 0xed, 0x15, 0x75, 0x81, 0x0e, 0x39, - 0xdf, 0x01, 0xa2, 0xf5, 0xfc, 0x2d, 0x20, 0x5a, 0xed, 0xa7, 0x3d, 0x06, 0x78, 0xd5, 0xff, 0xa3, - 0x74, 0x6b, 0x68, 0x6f, 0xf8, 0x54, 0x25, 0x46, 0x35, 0x9b, 0xfd, 0x59, 0xa8, 0xd9, 0x51, 0x37, - 0xcd, 0x6e, 0x57, 0xb5, 0x3b, 0x7e, 0x8a, 0xc9, 0xa7, 0x17, 0x96, 0x94, 0xc0, 0xd6, 0xce, 0x50, - 0x1d, 0x25, 0xed, 0x61, 0xf1, 0x16, 0x17, 0xd8, 0x4b, 0x45, 0xa4, 0x97, 0x0a, 0xfa, 0x90, 0x89, - 0x60, 0x4f, 0x39, 0x3c, 0x3f, 0xff, 0xf5, 0x1c, 0xf4, 0x94, 0xe2, 0xa2, 0x3e, 0x0e, 0x0e, 0x2d, - 0xfa, 0xdf, 0xff, 0xf4, 0xe3, 0x62, 0x04, 0xde, 0x66, 0x13, 0x2e, 0x69, 0x9b, 0xe3, 0x02, 0x32, - 0x85, 0x67, 0xb7, 0x95, 0xff, 0x99, 0x4e, 0x3f, 0x6e, 0x7f, 0xdc, 0x56, 0xe2, 0xb3, 0xd9, 0x85, - 0x79, 0xe5, 0x01, 0x48, 0x15, 0x38, 0xa0, 0x5e, 0xdd, 0xad, 0x0b, 0x39, 0xa3, 0x9e, 0xa3, 0xdf, - 0x3d, 0xca, 0x8a, 0x13, 0x65, 0xa0, 0x7c, 0xb1, 0x59, 0x92, 0xf7, 0xa7, 0xe3, 0xff, 0x3d, 0x04, - 0x07, 0x47, 0x5f, 0x58, 0x07, 0x07, 0xec, 0xd8, 0x14, 0xc8, 0xa9, 0x45, 0xfd, 0x6f, 0xaa, 0x95, - 0x90, 0x05, 0xf8, 0x09, 0x73, 0x10, 0xa5, 0xd4, 0x5e, 0x5b, 0xd7, 0xd6, 0x09, 0x2d, 0x4b, 0x9f, - 0x31, 0xbf, 0xde, 0xf5, 0xb7, 0x2d, 0x01, 0x55, 0x5f, 0x6c, 0x63, 0x63, 0x4a, 0x17, 0x44, 0xc6, - 0x23, 0x98, 0x78, 0x2c, 0x44, 0x04, 0xb4, 0x98, 0x9e, 0xaa, 0x0c, 0x96, 0xb3, 0xbf, 0x97, 0xe2, - 0x25, 0xa5, 0x93, 0x95, 0x9e, 0xeb, 0xb4, 0x8d, 0x28, 0x9e, 0x3c, 0xb1, 0x59, 0x53, 0x0a, 0x69, - 0xb5, 0x75, 0xa4, 0x9e, 0x81, 0xd5, 0xc5, 0x11, 0x91, 0xcc, 0x51, 0xff, 0x60, 0x08, 0x3a, 0x0e, - 0x6e, 0x50, 0x79, 0x29, 0x4a, 0x04, 0x66, 0xcb, 0x86, 0x61, 0x52, 0x6c, 0x42, 0xb9, 0xf5, 0x37, - 0xce, 0x4a, 0x22, 0x19, 0x83, 0x62, 0x57, 0x46, 0x8c, 0x58, 0x14, 0x4c, 0x19, 0x14, 0xfa, 0x4e, - 0x1b, 0x71, 0x60, 0xb5, 0x94, 0x54, 0x14, 0x1d, 0x19, 0x80, 0xef, 0x8b, 0x5c, 0x90, 0xbf, 0x87, - 0x23, 0x26, 0xd4, 0xbd, 0x1c, 0x7f, 0x72, 0x90, 0xeb, 0x1f, 0x24, 0xa8, 0x85, 0x11, 0x88, 0x1c, - 0x72, 0xa5, 0x21, 0x98, 0x41, 0x81, 0x3b, 0xb4, 0x29, 0x32, 0xc2, 0x15, 0x8d, 0x16, 0xc4, 0x66, - 0x06, 0x02, 0xde, 0x55, 0x1f, 0xb4, 0x74, 0xd5, 0x1f, 0xa1, 0xfc, 0xce, 0x16, 0x2c, 0xcf, 0x5f, - 0x45, 0x3f, 0x2d, 0x34, 0xab, 0xea, 0x27, 0x9d, 0xcf, 0xf1, 0xf3, 0xf7, 0x35, 0x3f, 0xf4, 0x35, - 0x00, 0xbd, 0x30, 0x72, 0x56, 0xee, 0xcb, 0xb2, 0x70, 0x23, 0x0f, 0x91, 0xc5, 0x2c, 0x97, 0x8a, - 0xa6, 0x80, 0x3d, 0xa1, 0x3c, 0xe5, 0xa4, 0x4b, 0x53, 0xaa, 0x8b, 0x46, 0x0d, 0x75, 0x51, 0x91, - 0x87, 0x5c, 0x5b, 0x15, 0x15, 0x38, 0xe4, 0x4d, 0x34, 0x51, 0x81, 0x6b, 0xdb, 0x82, 0x22, 0xca, - 0x71, 0x3d, 0x5b, 0xd1, 0x43, 0xb9, 0x5e, 0xf6, 0xa6, 0xc0, 0xe0, 0x36, 0xd5, 0x42, 0x95, 0x3e, - 0x7b, 0x7f, 0x75, 0xe5, 0x51, 0xe6, 0xda, 0xbf, 0x22, 0xdd, 0x51, 0x1a, 0x81, 0x10, 0x55, 0x1d, - 0xed, 0xa9, 0x85, 0xd2, 0xa8, 0x85, 0x80, 0x56, 0x10, 0xc8, 0x82, 0xce, 0xc6, 0x3a, 0x4a, 0x15, - 0xc3, 0xb8, 0xa9, 0x62, 0x68, 0x41, 0x27, 0x38, 0xed, 0x2c, 0x4c, 0xba, 0xd0, 0x04, 0xd3, 0xf6, - 0x95, 0x80, 0xb3, 0x2c, 0xff, 0x9d, 0x88, 0x7e, 0xb7, 0x52, 0xef, 0xbc, 0x7a, 0x81, 0x77, 0x0a, - 0x65, 0xfd, 0x07, 0xf0, 0x8e, 0x7a, 0xa8, 0xa3, 0xed, 0x7e, 0x8b, 0xe2, 0xdc, 0x5c, 0x92, 0xa7, - 0x82, 0x96, 0xbd, 0x54, 0x10, 0x32, 0xa1, 0xa9, 0x41, 0x7e, 0x74, 0xab, 0x5f, 0x44, 0x28, 0x3f, - 0x36, 0x35, 0x28, 0x08, 0x6e, 0xf5, 0xab, 0xfb, 0x13, 0xc6, 0xa5, 0x06, 0x65, 0x91, 0x2d, 0x01, - 0x3a, 0xcb, 0x21, 0xa9, 0x41, 0x75, 0x90, 0xab, 0x26, 0x5d, 0x16, 0x95, 0x1a, 0x54, 0xc5, 0xb8, - 0x2a, 0x69, 0x2e, 0x07, 0x5e, 0x06, 0xcb, 0xf0, 0xef, 0xcc, 0xa9, 0xed, 0x95, 0x46, 0x61, 0xfa, - 0x49, 0x09, 0xad, 0xd0, 0x56, 0x99, 0x1d, 0xbd, 0x41, 0xb1, 0x97, 0x5f, 0x48, 0xae, 0x30, 0xb4, - 0x36, 0x28, 0x09, 0xd1, 0xf9, 0xd4, 0x30, 0x65, 0xd1, 0x89, 0x67, 0xb0, 0xc4, 0x8e, 0xa9, 0x1f, - 0xcb, 0x08, 0x10, 0x00, 0x82, 0xd4, 0xc3, 0x38, 0xe1, 0x23, 0x79, 0x4c, 0x98, 0x4e, 0x16, 0x1d, - 0x83, 0xdd, 0xb0, 0x2f, 0xb1, 0x54, 0x84, 0x1e, 0xbc, 0x6d, 0xf9, 0xb9, 0x9c, 0x93, 0x5e, 0x36, - 0x33, 0x88, 0x09, 0x20, 0x07, 0xb8, 0x51, 0x4d, 0x5e, 0xf7, 0xfc, 0x21, 0x8b, 0x39, 0x10, 0x65, - 0x48, 0x08, 0xb4, 0x1f, 0x48, 0x7c, 0xb3, 0x0e, 0x40, 0xbf, 0x72, 0xdc, 0x83, 0xfc, 0x2e, 0x64, - 0xe1, 0x78, 0x78, 0xfa, 0x18, 0x81, 0xc4, 0xc3, 0xfc, 0x49, 0x7c, 0x3f, 0xc2, 0xcc, 0x19, 0xed, - 0x24, 0x20, 0x16, 0x23, 0xe0, 0x9d, 0x74, 0x0a, 0x6a, 0x08, 0xde, 0x93, 0xbe, 0x5b, 0x02, 0xa4, - 0xa3, 0xf9, 0x23, 0x41, 0xb5, 0x4c, 0x22, 0x23, 0x38, 0x4e, 0x88, 0x3a, 0x08, 0x1f, 0x9f, 0xd9, - 0x2e, 0x61, 0x49, 0xc2, 0x99, 0x4c, 0x99, 0xa8, 0x3a, 0x4b, 0x48, 0x4d, 0x44, 0xcf, 0xde, 0x4f, - 0xd9, 0x3f, 0x8a, 0xf8, 0xab, 0x7b, 0x7a, 0xe1, 0x6b, 0x0f, 0xf3, 0x5e, 0x3b, 0x35, 0xb7, 0xb9, - 0x90, 0x45, 0x05, 0x2f, 0x5d, 0xd9, 0x93, 0x68, 0x26, 0x5b, 0xe8, 0xcb, 0xc6, 0x52, 0xb6, 0xfe, - 0x2d, 0x15, 0x2a, 0x10, 0xf2, 0x68, 0x76, 0x9e, 0xd2, 0xa5, 0x22, 0x46, 0x2a, 0x2c, 0x46, 0x3b, - 0xc6, 0xa3, 0x5a, 0xb4, 0x17, 0x17, 0x4c, 0x31, 0xa5, 0x40, 0xa8, 0x4b, 0x26, 0x3d, 0x06, 0x02, - 0xe2, 0x2e, 0xd2, 0x17, 0xe8, 0xcd, 0xd0, 0x57, 0x8c, 0xfe, 0x89, 0x66, 0x90, 0xe8, 0xf7, 0x88, - 0xab, 0x05, 0x9c, 0x87, 0x0d, 0x44, 0x17, 0x8a, 0x79, 0x01, 0xd6, 0xef, 0xe8, 0x22, 0x71, 0x2b, - 0x2f, 0x59, 0x2f, 0x01, 0x9e, 0xa6, 0x63, 0xc6, 0x42, 0x11, 0x3f, 0xf5, 0xf8, 0x06, 0x5a, 0x49, - 0xe6, 0xdd, 0x7c, 0x71, 0xf9, 0xe8, 0x20, 0x96, 0x9e, 0xd7, 0xa7, 0x6b, 0x50, 0xca, 0x53, 0xdf, - 0x0e, 0x2f, 0x0e, 0x94, 0xa2, 0x8c, 0x40, 0xda, 0xb1, 0x25, 0x9d, 0x53, 0x96, 0x3d, 0x48, 0xcb, - 0x27, 0x07, 0x8e, 0xb7, 0x30, 0xac, 0x4a, 0x37, 0x8c, 0x73, 0xa4, 0x70, 0x94, 0x3d, 0x55, 0x8d, - 0x9a, 0x96, 0x6e, 0xa7, 0x24, 0x1d, 0x55, 0x28, 0x93, 0x2d, 0xaf, 0xe3, 0x23, 0x91, 0x3c, 0xc9, - 0xe2, 0xd4, 0xaf, 0x1a, 0x9d, 0x1f, 0x6f, 0xb4, 0x92, 0x8a, 0x97, 0xf7, 0x12, 0x63, 0xd1, 0x64, - 0xcf, 0xd4, 0x2c, 0x84, 0x99, 0x6a, 0x7c, 0x1a, 0x6a, 0xad, 0x1d, 0x6b, 0xbc, 0xf5, 0x56, 0xbb, - 0x78, 0x77, 0xf4, 0xed, 0x53, 0xeb, 0xba, 0x3a, 0x59, 0xae, 0xc9, 0x97, 0xb7, 0xa8, 0xce, 0x76, - 0xa9, 0x97, 0x03, 0x8d, 0x03, 0x73, 0x42, 0xad, 0xbe, 0xfe, 0x70, 0x13, 0x2e, 0x35, 0xc1, 0x48, - 0xe9, 0x28, 0x7b, 0x52, 0xb4, 0x03, 0x43, 0xa5, 0xdf, 0xe2, 0x47, 0xc3, 0x33, 0x13, 0x22, 0x86, - 0xb5, 0x94, 0xb7, 0x08, 0x29, 0x07, 0xe7, 0x5e, 0x39, 0x8b, 0xb3, 0x16, 0xd7, 0x3d, 0x6d, 0x14, - 0xa5, 0x3f, 0x7f, 0x17, 0x1a, 0x88, 0x32, 0xd6, 0x10, 0x17, 0xe8, 0x92, 0x86, 0x22, 0x1b, 0x23, - 0xdc, 0x52, 0x9c, 0x1b, 0xda, 0x4e, 0xc6, 0x6a, 0x91, 0x19, 0x76, 0x49, 0x91, 0x11, 0xde, 0x6e, - 0x73, 0x39, 0x50, 0x65, 0xa5, 0x2a, 0xad, 0x9a, 0x00, 0x42, 0x60, 0xd8, 0x75, 0xca, 0x7f, 0xdb, - 0xf9, 0xac, 0x9b, 0x1a, 0xe1, 0xc0, 0xfc, 0xf6, 0x45, 0x4b, 0x5e, 0x20, 0xe2, 0xe5, 0x65, 0x30, - 0x97, 0xca, 0x36, 0x7b, 0x87, 0xdc, 0xbd, 0xd2, 0x0a, 0x3b, 0x58, 0xfd, 0x2e, 0x35, 0x7b, 0xd9, - 0x9c, 0x6b, 0x36, 0xe2, 0x53, 0x7e, 0x6c, 0x1f, 0x36, 0xc3, 0x3f, 0xd9, 0xcf, 0xe7, 0x24, 0x12, - 0xc8, 0x68, 0xc7, 0xa0, 0x3b, 0xf1, 0x77, 0x19, 0xf1, 0x6e, 0x50, 0x5d, 0xfd, 0xf5, 0x0e, 0xfc, - 0x5f, 0xf8, 0xfb, 0x00, 0x5a, 0x5a, 0xe2, 0x83, 0x5c, 0xa6, 0x3d, 0x61, 0x8c, 0x97, 0xe2, 0x27, - 0xea, 0x64, 0x79, 0x38, 0x73, 0x8f, 0x43, 0x98, 0x9e, 0xd9, 0x86, 0xae, 0x3d, 0xee, 0x82, 0x33, - 0xdb, 0xf1, 0x1c, 0xf5, 0x80, 0xdd, 0xfa, 0xd5, 0x3a, 0xc4, 0x1a, 0x74, 0x12, 0xf9, 0x4b, 0x21, - 0x2a, 0x31, 0xef, 0x20, 0x38, 0x85, 0x33, 0x0b, 0x11, 0x5d, 0x03, 0xc1, 0x57, 0xa9, 0x82, 0xbd, - 0xe1, 0x78, 0xf9, 0xfc, 0x90, 0x3a, 0xdd, 0x43, 0x89, 0xf3, 0x53, 0x02, 0xd4, 0x91, 0xee, 0xf5, - 0x82, 0x03, 0x53, 0x73, 0x7e, 0x0e, 0x0a, 0x7c, 0x0f, 0xfc, 0x1f, 0x2c, 0xb6, 0x30, 0x1e, 0xd0, - 0x4a, 0xfd, 0x44, 0x6a, 0x8d, 0xcb, 0x3f, 0xcd, 0x41, 0x05, 0x98, 0x76, 0x90, 0x6f, 0x10, 0x5f, - 0xe9, 0xd6, 0xc4, 0x5e, 0xa8, 0xec, 0xf8, 0xb1, 0x01, 0x1f, 0xa3, 0x92, 0x8b, 0xe5, 0xa3, 0x58, - 0x94, 0x70, 0x02, 0xe1, 0xee, 0x80, 0x9f, 0x00, 0xc9, 0x3d, 0x51, 0x55, 0x79, 0x2a, 0x6a, 0x09, - 0xd5, 0x2a, 0x73, 0x6c, 0x09, 0x17, 0x1c, 0x67, 0x2a, 0xf8, 0x6e, 0x0a, 0x9b, 0x6a, 0x7f, 0x9a, - 0x4f, 0xa0, 0x79, 0x3b, 0x81, 0x27, 0xf0, 0x36, 0x31, 0x71, 0x89, 0x33, 0x55, 0x2b, 0xe2, 0x83, - 0x31, 0x17, 0x98, 0x8e, 0x5a, 0xfe, 0x37, 0x4e, 0xbe, 0x15, 0x7c, 0xe3, 0x44, 0xf0, 0x9c, 0xcd, - 0xc2, 0x85, 0x0e, 0x0b, 0x01, 0x04, 0x24, 0xaf, 0x6c, 0x77, 0x72, 0x45, 0x6f, 0x6d, 0xe4, 0x1e, - 0x18, 0xca, 0x15, 0x20, 0xe5, 0x72, 0xae, 0x63, 0x3a, 0x6f, 0x86, 0x01, 0x88, 0xe7, 0x5a, 0x3c, - 0x51, 0x80, 0xfb, 0xe8, 0x00, 0x1b, 0xf6, 0xc2, 0x78, 0x54, 0xc1, 0x89, 0x3e, 0x5d, 0xca, 0x1f, - 0x60, 0xe9, 0x06, 0x26, 0xbc, 0x43, 0x40, 0x01, 0xef, 0xf2, 0xc9, 0x62, 0xcf, 0x45, 0xb4, 0x16, - 0x24, 0xc0, 0xb2, 0xc9, 0x9c, 0xa5, 0x17, 0xd0, 0x66, 0x74, 0x9f, 0xfe, 0x02, 0x3e, 0xaa, 0xd7, - 0xd6, 0xfe, 0x94, 0xbe, 0x78, 0x30, 0x03, 0x94, 0xa3, 0x06, 0xfe, 0x2e, 0x3b, 0x2f, 0x80, 0x43, - 0x20, 0x30, 0xd6, 0x0e, 0x8f, 0xe3, 0x6a, 0x8f, 0x9a, 0xe1, 0x3f, 0x63, 0x87, 0xfe, 0xd8, 0x69, - 0x43, 0xe4, 0x2a, 0x85, 0x92, 0x9e, 0x50, 0xdd, 0xfb, 0x9a, 0x86, 0x9c, 0x9c, 0xb3, 0xad, 0xb1, - 0x9e, 0x31, 0x11, 0x64, 0x9d, 0x0d, 0x04, 0xa8, 0x37, 0xda, 0x4e, 0x86, 0xd5, 0x52, 0x3e, 0x5f, - 0xa1, 0xc6, 0xc8, 0x3f, 0x8b, 0xf2, 0x2a, 0xf5, 0x46, 0xc9, 0x61, 0xb1, 0x57, 0xa6, 0x2a, 0x22, - 0x5f, 0x15, 0xf3, 0x13, 0x4c, 0xe0, 0x0e, 0xd1, 0x2e, 0x25, 0x12, 0x44, 0x5e, 0x4a, 0x95, 0xec, - 0x53, 0x39, 0x28, 0x50, 0x27, 0x31, 0x1f, 0xbc, 0x75, 0x65, 0x72, 0x64, 0xbb, 0x26, 0x0c, 0x1b, - 0x3f, 0xd7, 0xb5, 0x79, 0x2e, 0xc0, 0x21, 0xe6, 0x07, 0xcb, 0x3f, 0x3d, 0x9e, 0xda, 0x1e, 0x2e, - 0xfa, 0x70, 0x4d, 0x95, 0x6a, 0x9a, 0x20, 0x86, 0x7a, 0xcc, 0xb4, 0x87, 0x65, 0x2f, 0x80, 0xa1, - 0x63, 0x82, 0xd8, 0xc2, 0x8d, 0x65, 0x46, 0x41, 0x2e, 0xdb, 0x00, 0x06, 0xe3, 0x1e, 0x86, 0x94, - 0x58, 0xb8, 0x8d, 0x3e, 0xa5, 0xef, 0xec, 0xf2, 0x8f, 0x6e, 0xa8, 0x3f, 0xdd, 0xba, 0x3f, 0xb3, - 0x7f, 0x0b, 0x95, 0xd5, 0xa5, 0x0d, 0x66, 0x2e, 0xb4, 0x48, 0x48, 0x88, 0x11, 0xc6, 0x78, 0x00, - 0xf0, 0x1c, 0x72, 0x2d, 0x46, 0x1b, 0xf7, 0x2c, 0x9d, 0xe5, 0xeb, 0x52, 0x26, 0xa4, 0x9c, 0x4b, - 0x59, 0x95, 0x11, 0x0f, 0xce, 0x6c, 0xd2, 0x57, 0x80, 0xe6, 0xee, 0x4f, 0xfe, 0x59, 0xca, 0x9f, - 0xfd, 0xc6, 0x7e, 0x56, 0xde, 0x15, 0x1f, 0x72, 0x7b, 0xa7, 0xfc, 0xb4, 0x79, 0xfb, 0xf3, 0x4f, - 0x9b, 0x41, 0x0d, 0xa5, 0x74, 0xc5, 0x52, 0xae, 0xc6, 0x36, 0x37, 0x6b, 0x9f, 0xce, 0x03, 0xfe, - 0xf1, 0x3c, 0x90, 0x38, 0x46, 0xf8, 0xfe, 0xe3, 0xce, 0x7b, 0x65, 0xf9, 0x4e, 0x7f, 0x23, 0x7f, - 0x51, 0x95, 0xe8, 0xd7, 0x39, 0xfa, 0x57, 0x2e, 0x74, 0x40, 0xf2, 0x38, 0x6b, 0x02, 0xa3, 0x79, - 0xd9, 0x89, 0xaa, 0x38, 0x53, 0x17, 0x37, 0xbc, 0x91, 0xf3, 0xa7, 0x40, 0x40, 0x36, 0x54, 0xf3, - 0x1b, 0x79, 0x21, 0xd9, 0x40, 0xe7, 0xf3, 0xc8, 0xd1, 0x39, 0xd2, 0x90, 0x4e, 0x87, 0xa9, 0xe7, - 0x22, 0xdc, 0xcf, 0x8f, 0x7a, 0xb1, 0x04, 0xbe, 0x0b, 0x1e, 0x68, 0x0d, 0xd2, 0xf8, 0xa2, 0x8f, - 0x81, 0x82, 0x73, 0x84, 0x3d, 0x83, 0x80, 0x90, 0x08, 0xdf, 0x19, 0xce, 0x86, 0x77, 0x4a, 0xd3, - 0xe5, 0x68, 0xab, 0xaa, 0x1f, 0x71, 0x2f, 0xaf, 0x93, 0x93, 0x29, 0x27, 0x90, 0x2d, 0x97, 0xe3, - 0x4b, 0x2e, 0xd5, 0x08, 0x3f, 0x7a, 0xb8, 0x14, 0x69, 0xea, 0x26, 0xc3, 0x2e, 0xbc, 0x6a, 0x7c, - 0x16, 0x27, 0x27, 0xb5, 0x32, 0xfe, 0xb4, 0xec, 0xff, 0x03, 0x54, 0x27, 0x0e, 0x05, +uint8_t data_qml_hw[6892] = { + 0x00, 0x01, 0x7b, 0x50, 0x78, 0xda, 0xed, 0x5d, 0x6d, 0x53, 0xe3, 0x38, 0xb6, 0xfe, 0xce, 0xaf, + 0xd0, 0xe6, 0xd6, 0x6e, 0x25, 0x3b, 0x69, 0x77, 0x12, 0x1a, 0xba, 0x3b, 0x73, 0xd9, 0x2d, 0x9a, + 0x86, 0x1e, 0xea, 0xc2, 0x34, 0x03, 0x74, 0x73, 0x3f, 0x50, 0x45, 0x09, 0x47, 0x49, 0x54, 0xf8, + 0xad, 0x6d, 0x85, 0xc0, 0xce, 0xe5, 0x3f, 0xed, 0x6f, 0xd8, 0x5f, 0x76, 0x25, 0xbf, 0xdb, 0xf1, + 0x8b, 0x6c, 0xcb, 0x84, 0xd0, 0xca, 0xec, 0xce, 0x04, 0x5b, 0x3a, 0x92, 0xa5, 0x73, 0xce, 0x73, + 0x74, 0x2c, 0x3d, 0xc1, 0xba, 0x65, 0xda, 0x04, 0x7c, 0x47, 0x93, 0x09, 0xb2, 0x95, 0x7b, 0xe4, + 0xa8, 0xee, 0xbf, 0xb0, 0x41, 0x90, 0x3d, 0x85, 0x2a, 0x02, 0x43, 0x65, 0xf0, 0x2b, 0xf6, 0x0a, + 0x75, 0x7e, 0xd8, 0xea, 0xf8, 0xad, 0x6e, 0xde, 0x62, 0x0d, 0x75, 0x82, 0x8b, 0x7f, 0x90, 0x3f, + 0x16, 0x58, 0xbd, 0x03, 0x23, 0xe5, 0xfd, 0x56, 0xf2, 0x92, 0x72, 0x60, 0x1a, 0xc4, 0x36, 0x35, + 0x87, 0xde, 0x1b, 0xa5, 0xef, 0x9d, 0xc0, 0x47, 0x73, 0x41, 0x1c, 0x2a, 0x7e, 0x3b, 0xba, 0xa5, + 0x68, 0xf0, 0xd6, 0x51, 0x1c, 0x44, 0x08, 0x36, 0x66, 0xec, 0xde, 0x00, 0x40, 0x07, 0xfc, 0x71, + 0xe1, 0x5f, 0x08, 0x0a, 0x16, 0x76, 0x36, 0xab, 0xd0, 0xad, 0x86, 0x16, 0x90, 0x5e, 0xcb, 0xb9, + 0xad, 0x9a, 0xba, 0x0e, 0x8d, 0x89, 0x93, 0x7f, 0xdf, 0x98, 0xe2, 0x99, 0x05, 0x6d, 0xa8, 0xe7, + 0x96, 0x59, 0x10, 0xac, 0x61, 0xf2, 0xe8, 0xde, 0x3e, 0x26, 0x48, 0x07, 0x7f, 0x6e, 0x01, 0xfa, + 0xc1, 0x93, 0x31, 0xd0, 0x21, 0x36, 0xd8, 0x25, 0xf7, 0x02, 0x34, 0xd4, 0xb9, 0x69, 0x3b, 0xca, + 0x14, 0x6b, 0xda, 0x18, 0x50, 0x99, 0xc8, 0x20, 0xee, 0x8d, 0xb7, 0x6f, 0x83, 0x5b, 0x3a, 0xb4, + 0x67, 0xd8, 0x70, 0xc6, 0x60, 0x38, 0xf0, 0x6e, 0x4c, 0xf1, 0x03, 0x20, 0x73, 0xec, 0xb8, 0xe5, + 0x2c, 0xdb, 0xb4, 0x90, 0x4d, 0x5b, 0xfa, 0xa4, 0xa1, 0x6f, 0xec, 0xa1, 0x74, 0xfa, 0x65, 0x4c, + 0xfb, 0xe2, 0xa8, 0xc7, 0x53, 0xf6, 0xa4, 0x9f, 0xd1, 0x3d, 0x56, 0x51, 0xb7, 0x97, 0x2c, 0x7d, + 0x10, 0x3c, 0xa3, 0x1e, 0x7c, 0x0b, 0xeb, 0x04, 0x8f, 0x9f, 0xae, 0x72, 0x0f, 0x6d, 0x30, 0x5d, + 0x7e, 0x47, 0xb6, 0x83, 0x4d, 0x63, 0x1c, 0x55, 0x54, 0x66, 0x88, 0x1c, 0x05, 0xd7, 0x57, 0xdb, + 0x61, 0x63, 0x75, 0xe6, 0x8d, 0x95, 0x7e, 0xaa, 0xb2, 0xbf, 0xc3, 0x96, 0x74, 0xd5, 0xbb, 0x5d, + 0x5c, 0x69, 0xdf, 0xb2, 0x12, 0xb5, 0xa0, 0xf7, 0x77, 0x59, 0xb5, 0x63, 0x63, 0x6a, 0x26, 0xea, + 0x61, 0xff, 0xc2, 0x6a, 0xc5, 0x5b, 0xd3, 0xd4, 0x00, 0x76, 0x7e, 0x33, 0x6d, 0xfc, 0x2f, 0xaa, + 0xa3, 0x90, 0xce, 0xc4, 0x12, 0x4f, 0xc8, 0x1c, 0xfc, 0x03, 0xcc, 0x11, 0x9e, 0xcd, 0x49, 0x46, + 0x71, 0x47, 0x9d, 0xa3, 0xc9, 0x42, 0x43, 0x4c, 0xe2, 0x95, 0x8d, 0x09, 0x1d, 0xf3, 0x29, 0xd4, + 0x1c, 0x94, 0x51, 0x94, 0xce, 0x17, 0x9a, 0x5c, 0xce, 0x6d, 0x93, 0x10, 0x2d, 0xbb, 0x18, 0x1b, + 0x5a, 0x6f, 0xee, 0x2f, 0xe1, 0xed, 0x27, 0x68, 0x07, 0x9a, 0xa0, 0x10, 0xf7, 0xcf, 0x50, 0x5b, + 0xd8, 0xc7, 0xfd, 0x42, 0xc7, 0xde, 0x32, 0x0d, 0x56, 0xc2, 0x34, 0xd8, 0x77, 0x0d, 0x11, 0x44, + 0x55, 0xeb, 0xcf, 0xb0, 0x54, 0x5c, 0x9a, 0x72, 0x8f, 0x1d, 0x4c, 0x35, 0x01, 0xec, 0x01, 0x62, + 0x2f, 0x50, 0x76, 0x19, 0x64, 0x40, 0x5a, 0x64, 0x92, 0x2e, 0x63, 0x23, 0x38, 0x09, 0xec, 0xcd, + 0x1f, 0xb6, 0xa7, 0x2d, 0xbf, 0x0b, 0xda, 0x42, 0x37, 0x3c, 0xbb, 0x8d, 0x35, 0x9c, 0xa9, 0xd0, + 0xe1, 0x5d, 0xaf, 0xb1, 0x58, 0xf1, 0xc0, 0x28, 0xbc, 0x07, 0x4d, 0x5c, 0x56, 0x17, 0x36, 0xab, + 0x7c, 0x6c, 0x4c, 0xd0, 0xc3, 0x18, 0x38, 0x4b, 0x6c, 0xa1, 0xef, 0x18, 0x2d, 0x95, 0xf8, 0xf5, + 0x44, 0x05, 0xaf, 0x2f, 0x6e, 0xcb, 0x57, 0x6c, 0xfa, 0xc6, 0xc9, 0x47, 0x71, 0x9b, 0xa2, 0x43, + 0x85, 0x55, 0x4c, 0xfc, 0xfb, 0x83, 0x64, 0x83, 0x1a, 0xb6, 0x32, 0xea, 0x84, 0xb3, 0x44, 0xfd, + 0x0a, 0xb8, 0x5d, 0x10, 0x62, 0x32, 0x63, 0xdc, 0x29, 0x2b, 0xe3, 0x37, 0x31, 0x1c, 0x0c, 0xb6, + 0x12, 0x45, 0xd9, 0x10, 0xb8, 0x05, 0x52, 0xa3, 0xc0, 0x3e, 0x04, 0x3d, 0x90, 0x31, 0xf8, 0xe1, + 0x5c, 0xda, 0xdd, 0xce, 0x39, 0x9e, 0xa0, 0x4e, 0x6f, 0xa5, 0xc8, 0xd2, 0x13, 0x7b, 0x0a, 0xc9, + 0x9c, 0x7a, 0x86, 0x87, 0xae, 0x37, 0x70, 0x4a, 0xac, 0xcd, 0xbe, 0x7f, 0xc9, 0x53, 0xe1, 0xb7, + 0x20, 0x51, 0xc2, 0x49, 0x4a, 0x7c, 0xaa, 0xd5, 0xb5, 0xcb, 0x85, 0xf1, 0x52, 0xbb, 0xf6, 0x09, + 0xdf, 0x21, 0x70, 0x70, 0xf4, 0xe5, 0x85, 0x76, 0xef, 0xc4, 0x9c, 0x51, 0x5f, 0x3e, 0x7b, 0xa1, + 0xbd, 0x3b, 0xc2, 0xb6, 0xbe, 0xa4, 0x16, 0xfb, 0x8c, 0xdd, 0x7b, 0x8a, 0x8c, 0xe3, 0x22, 0xb0, + 0xf0, 0x0c, 0xf7, 0x10, 0x5a, 0x7f, 0x81, 0x87, 0xf0, 0x1b, 0xe4, 0x71, 0x0f, 0xbf, 0xb9, 0x5e, + 0x3d, 0xc3, 0xd6, 0x39, 0x5c, 0x48, 0xe4, 0x25, 0x92, 0x23, 0xb4, 0x32, 0x64, 0x79, 0x9f, 0x33, + 0x38, 0x43, 0x19, 0x13, 0x11, 0x7c, 0xce, 0xc9, 0x67, 0x48, 0x20, 0xf5, 0xb9, 0x0b, 0xab, 0xa0, + 0x54, 0x61, 0xec, 0x90, 0xf7, 0x59, 0x58, 0x13, 0x48, 0x10, 0x13, 0x9f, 0xe7, 0x4f, 0xc1, 0xde, + 0x5e, 0xca, 0x29, 0xe6, 0x6b, 0x55, 0xf6, 0xd5, 0x9c, 0xa7, 0xbb, 0x85, 0xea, 0xdd, 0xcc, 0x36, + 0x17, 0x06, 0x9d, 0xcc, 0x73, 0xa4, 0x12, 0x68, 0xcc, 0xb4, 0xbc, 0x51, 0x30, 0x2d, 0x48, 0x5d, + 0xf4, 0x23, 0x75, 0xcf, 0xca, 0x6a, 0x5f, 0x9e, 0xb6, 0x56, 0x2e, 0xe5, 0x20, 0x51, 0xd6, 0x50, + 0x11, 0xd3, 0x3a, 0x75, 0xc3, 0xa9, 0xb4, 0x03, 0x4f, 0x17, 0xbc, 0xa5, 0x60, 0x6d, 0xea, 0x41, + 0xd9, 0xe1, 0x16, 0xf7, 0xf8, 0x67, 0x96, 0xf4, 0x74, 0x26, 0x02, 0xfe, 0xf4, 0xc7, 0x61, 0x4f, + 0x6c, 0xcc, 0x58, 0xa7, 0x32, 0xef, 0x67, 0xc2, 0x66, 0xda, 0x46, 0x28, 0x06, 0xd1, 0x9e, 0x20, + 0x27, 0x8d, 0xa3, 0xf9, 0x16, 0xe3, 0xd7, 0xb8, 0x28, 0x87, 0xd6, 0x4c, 0xac, 0x63, 0x51, 0x8b, + 0x06, 0x1d, 0x72, 0xe6, 0x89, 0xf1, 0x85, 0x72, 0xc9, 0xe0, 0xb0, 0x33, 0x6e, 0xd8, 0xe6, 0x80, + 0xf0, 0x72, 0x38, 0xdf, 0xae, 0x52, 0x3e, 0x0f, 0xda, 0x79, 0x7d, 0x6e, 0x9e, 0xff, 0xbd, 0x20, + 0x36, 0x42, 0xe4, 0xda, 0xd0, 0xd0, 0x0c, 0x6a, 0x19, 0x4e, 0xb8, 0xc8, 0x21, 0xf3, 0xba, 0x9f, + 0x98, 0x96, 0x24, 0xbc, 0x77, 0x9d, 0xfa, 0x81, 0xab, 0x5f, 0x95, 0xe9, 0xf4, 0x2a, 0x3a, 0x91, + 0xba, 0x43, 0x76, 0x69, 0x43, 0x2c, 0x87, 0x8a, 0x6b, 0xa8, 0x4e, 0x16, 0x13, 0xac, 0x52, 0x17, + 0xec, 0xfc, 0x5c, 0xc3, 0x95, 0x7d, 0x35, 0x2f, 0xd8, 0xc8, 0x71, 0xaa, 0x17, 0x99, 0xf1, 0x47, + 0xa9, 0x67, 0x75, 0x0a, 0x03, 0x92, 0xaa, 0xc1, 0x49, 0x03, 0x07, 0xca, 0xe1, 0x17, 0xdd, 0xac, + 0x09, 0x54, 0x09, 0xbe, 0x47, 0x45, 0x50, 0xe5, 0xa5, 0x20, 0x80, 0xe7, 0xaa, 0xc0, 0x09, 0xf3, + 0x54, 0x5b, 0x85, 0x91, 0x4e, 0xee, 0xdd, 0x62, 0xcd, 0xe5, 0x00, 0xf5, 0x5a, 0x00, 0x5f, 0x17, + 0xec, 0xeb, 0x01, 0x7f, 0x95, 0x20, 0xa0, 0x4a, 0x40, 0x90, 0x50, 0x65, 0x6a, 0xd4, 0x9a, 0x56, + 0xa2, 0xcb, 0x15, 0x95, 0x21, 0x51, 0xdc, 0xa4, 0x9a, 0x61, 0x04, 0xd8, 0xeb, 0x27, 0x26, 0x5c, + 0x03, 0xe5, 0xaa, 0x9e, 0xa7, 0xd9, 0x5c, 0x95, 0x2b, 0x6a, 0x41, 0x23, 0x6d, 0x68, 0xaa, 0x15, + 0xcd, 0xb4, 0xa3, 0x8e, 0x96, 0x04, 0x1f, 0x3f, 0xbf, 0x53, 0x61, 0x4e, 0xab, 0xea, 0x58, 0xf0, + 0x89, 0xa5, 0x32, 0x79, 0x3f, 0xcc, 0x59, 0xd0, 0x96, 0x90, 0x5d, 0xa9, 0x56, 0x45, 0xff, 0x26, + 0xc2, 0xa5, 0x72, 0xac, 0x34, 0xf2, 0x3e, 0x5f, 0x28, 0xac, 0x5a, 0x9f, 0xcc, 0x87, 0x8a, 0x43, + 0xe3, 0xae, 0x6c, 0x5d, 0x47, 0x7a, 0x69, 0xda, 0x3f, 0x16, 0x88, 0x4a, 0x10, 0x31, 0x48, 0x95, + 0x64, 0x9c, 0x9b, 0xcb, 0xca, 0xe6, 0x15, 0x9b, 0xda, 0x46, 0x96, 0x16, 0xc9, 0x69, 0x6a, 0x73, + 0x62, 0x6c, 0xaf, 0x89, 0x0d, 0x66, 0x58, 0x55, 0xd5, 0xaa, 0x97, 0x34, 0x58, 0xab, 0x31, 0x0b, + 0x51, 0x9c, 0xd7, 0x09, 0x92, 0xcc, 0xd7, 0xc6, 0xbe, 0x6e, 0x39, 0x9d, 0x5a, 0xa2, 0x54, 0x53, + 0x33, 0xed, 0xf1, 0x9f, 0xee, 0x7f, 0xf6, 0xbe, 0x79, 0xaf, 0x31, 0x58, 0x8a, 0x7f, 0xdf, 0xb2, + 0x7e, 0x43, 0x0f, 0x07, 0xec, 0x72, 0xb7, 0xa3, 0x31, 0x7b, 0x62, 0xfd, 0xed, 0xf4, 0x9e, 0x6a, + 0xb5, 0x32, 0x0f, 0x73, 0xed, 0xfb, 0x54, 0x96, 0xa1, 0xd3, 0x79, 0x1a, 0xbb, 0x03, 0xa0, 0xb8, + 0x7f, 0xff, 0x76, 0x80, 0x58, 0x38, 0x52, 0x4b, 0xb4, 0x6f, 0x15, 0x3a, 0x36, 0xb0, 0xbe, 0xd0, + 0x63, 0x6b, 0xb5, 0xaa, 0x82, 0xaa, 0x3f, 0xd9, 0x85, 0x86, 0x27, 0xc8, 0xae, 0x39, 0x87, 0x69, + 0x6f, 0xe0, 0x09, 0xab, 0x25, 0xca, 0x21, 0xc8, 0xba, 0xc0, 0xff, 0x42, 0xec, 0xb9, 0x6b, 0x09, + 0x98, 0xda, 0xa6, 0x3e, 0x06, 0xa3, 0x7a, 0x95, 0xef, 0xa1, 0xb6, 0xa0, 0x4d, 0x6f, 0xd7, 0xab, + 0x4d, 0x4c, 0x77, 0xb6, 0xa8, 0x53, 0xa0, 0x8b, 0x0f, 0x60, 0xcd, 0xa1, 0x83, 0x00, 0xa4, 0xda, + 0xdc, 0x44, 0x17, 0x1a, 0x79, 0xc8, 0xd0, 0x3c, 0x4d, 0x53, 0xbb, 0xc4, 0x56, 0xcd, 0xd9, 0x8d, + 0x5e, 0xb8, 0x64, 0xcd, 0xb2, 0x32, 0x87, 0xc6, 0x44, 0x43, 0xb5, 0x25, 0x87, 0x11, 0x40, 0x86, + 0x68, 0xcb, 0x46, 0x8e, 0x83, 0x26, 0xb5, 0x65, 0x7b, 0xbe, 0x25, 0x43, 0xb0, 0x3b, 0xcf, 0xd4, + 0xf3, 0x1f, 0xb1, 0xf7, 0x5b, 0xdd, 0x61, 0xef, 0x97, 0x0e, 0xd8, 0xaf, 0xe7, 0x73, 0x9e, 0x5a, + 0xb6, 0xcd, 0xa7, 0x17, 0x09, 0xfa, 0x67, 0xd0, 0xd9, 0x34, 0xc4, 0xff, 0xc9, 0xf1, 0xf5, 0x6c, + 0xff, 0x42, 0x42, 0xeb, 0x46, 0x43, 0x2b, 0xb5, 0x39, 0x31, 0xb8, 0xda, 0x00, 0x56, 0x1b, 0xa1, + 0xea, 0xa8, 0x3e, 0xaa, 0x96, 0xba, 0xf0, 0xda, 0x10, 0xc1, 0x3e, 0xc3, 0x1e, 0x85, 0xec, 0xbf, + 0x02, 0x73, 0xfa, 0x9a, 0x31, 0x3b, 0x54, 0x1f, 0xc1, 0x80, 0x1d, 0xc9, 0x15, 0x89, 0xd6, 0x91, + 0x54, 0x09, 0xd5, 0x0d, 0xa1, 0xda, 0x5c, 0x22, 0x5b, 0x82, 0xf5, 0x66, 0x81, 0x35, 0x9b, 0x33, + 0x09, 0xd4, 0x9b, 0x0a, 0xd4, 0x6c, 0xf6, 0x84, 0x40, 0xf5, 0x68, 0x67, 0xb0, 0x2e, 0xb0, 0xde, + 0x19, 0xd4, 0x47, 0xeb, 0x51, 0xdd, 0xca, 0x2f, 0x1a, 0x3f, 0xa3, 0x59, 0x15, 0x8d, 0xa0, 0x31, + 0xc9, 0x42, 0x31, 0x34, 0x26, 0x37, 0x03, 0x45, 0xaf, 0x24, 0x8a, 0xf2, 0xdb, 0xf4, 0x85, 0x85, + 0xd0, 0x44, 0x10, 0x8a, 0xd6, 0x50, 0x15, 0x50, 0x07, 0xc6, 0x24, 0x00, 0xd7, 0x06, 0x60, 0x77, + 0xba, 0xaf, 0x8d, 0x13, 0xac, 0x63, 0x22, 0x71, 0x78, 0x43, 0x71, 0xd8, 0x9d, 0xc4, 0xb5, 0x2f, + 0x99, 0x47, 0xeb, 0x5a, 0x33, 0xef, 0xbe, 0x3e, 0x0c, 0x8e, 0xcd, 0xa8, 0x60, 0x0c, 0x8e, 0x4b, + 0x16, 0x89, 0xc1, 0x71, 0xb9, 0x69, 0x0c, 0x06, 0xbf, 0x80, 0xae, 0x7f, 0xc0, 0x63, 0xe1, 0xa0, + 0x63, 0xdd, 0x42, 0x36, 0x86, 0xda, 0x37, 0x03, 0x13, 0xa7, 0xdb, 0x03, 0xff, 0x04, 0x1d, 0xa0, + 0x5b, 0xf3, 0xce, 0xb8, 0x03, 0xee, 0xf4, 0xb7, 0xf3, 0x92, 0x9d, 0x4f, 0x12, 0xad, 0x13, 0x6f, + 0xa1, 0xfc, 0x97, 0x89, 0xe7, 0xc8, 0xb1, 0x4c, 0xc3, 0x41, 0x72, 0xf9, 0xbb, 0x51, 0xe8, 0x1b, + 0xbd, 0x0b, 0x0e, 0x26, 0x50, 0x62, 0xf0, 0xa6, 0xbe, 0x0f, 0x4e, 0x59, 0xa2, 0x10, 0x38, 0x1e, + 0x28, 0x4d, 0x00, 0x79, 0xbb, 0x09, 0x1e, 0x0f, 0x94, 0x8f, 0xb5, 0x01, 0x79, 0xa0, 0x6c, 0xbf, + 0xbe, 0x37, 0xc1, 0x99, 0xf3, 0x2b, 0xfa, 0x9d, 0x70, 0x76, 0x23, 0x42, 0xdf, 0x0e, 0x67, 0x37, + 0x91, 0xb1, 0x6c, 0x76, 0x90, 0x2a, 0x17, 0xce, 0xd5, 0x1d, 0xc0, 0xe1, 0x83, 0x65, 0x4a, 0x18, + 0xde, 0x50, 0x18, 0x3e, 0xc1, 0x06, 0x82, 0x36, 0x45, 0x4f, 0x89, 0xc3, 0x1b, 0x8e, 0xc3, 0xcc, + 0x0c, 0x37, 0xfb, 0x2d, 0xf2, 0x70, 0xd0, 0x68, 0x73, 0xd6, 0xab, 0x45, 0xe0, 0x68, 0x66, 0x5b, + 0x42, 0xdf, 0x58, 0x03, 0x6d, 0x20, 0x6f, 0x4c, 0xfc, 0x2a, 0xea, 0xfe, 0x75, 0xf3, 0x21, 0xf7, + 0xd9, 0x10, 0xf7, 0x0c, 0x3a, 0x72, 0xdd, 0xbb, 0xb9, 0x7b, 0xb4, 0xe4, 0x92, 0x77, 0xf3, 0xf7, + 0x69, 0xbd, 0xa0, 0xd5, 0xee, 0x50, 0xd9, 0x69, 0xb6, 0xde, 0xfd, 0x20, 0xd7, 0xbb, 0xc9, 0x5d, + 0x54, 0xad, 0x2e, 0x75, 0x57, 0xe5, 0x0b, 0xde, 0x55, 0xf5, 0x93, 0x2c, 0x70, 0x9f, 0x0d, 0x6d, + 0x8f, 0xae, 0x04, 0xae, 0x6c, 0xd7, 0x8a, 0xb3, 0x3f, 0x0d, 0xcc, 0x1e, 0x61, 0xa4, 0x4d, 0xae, + 0x8d, 0x2b, 0x04, 0xef, 0x90, 0xc1, 0x28, 0x6d, 0x24, 0xd2, 0x6e, 0x26, 0xd2, 0x1e, 0x5d, 0x6d, + 0xf8, 0x86, 0xe8, 0xda, 0xd0, 0xfa, 0x5e, 0x24, 0xb0, 0xbe, 0x04, 0x5c, 0x0d, 0xa6, 0x52, 0x30, + 0x9c, 0x86, 0x62, 0x45, 0xa2, 0x68, 0x28, 0xf4, 0x75, 0x6e, 0x4d, 0x7e, 0x3e, 0xe8, 0x8c, 0x93, + 0x0b, 0x4a, 0x04, 0xdd, 0x28, 0x04, 0xa5, 0x33, 0x07, 0xe4, 0x91, 0xdd, 0xf5, 0xa2, 0xe8, 0xc1, + 0x1c, 0xa9, 0x77, 0xd5, 0x0d, 0xb0, 0xc4, 0x10, 0x5d, 0xa9, 0xb7, 0x15, 0xad, 0x31, 0x9c, 0x4e, + 0x56, 0x99, 0xd1, 0x79, 0xd6, 0x53, 0x6a, 0x81, 0x20, 0xb5, 0x5e, 0xff, 0x58, 0x5e, 0xaa, 0xb8, + 0xc4, 0x53, 0xde, 0x8d, 0x02, 0x06, 0xa1, 0x22, 0xce, 0x1b, 0x97, 0x6b, 0xaa, 0x98, 0xec, 0x46, + 0x72, 0xda, 0x70, 0x39, 0x5b, 0xc9, 0x69, 0x23, 0x39, 0x6d, 0x04, 0x6a, 0x4b, 0xf0, 0x91, 0xec, + 0x34, 0xa2, 0x63, 0x4c, 0xc2, 0x5c, 0x9e, 0x24, 0xa7, 0x91, 0xe4, 0x34, 0x92, 0x9c, 0x46, 0xe6, + 0x8b, 0x62, 0xce, 0x60, 0xd3, 0xb9, 0x69, 0xde, 0x4b, 0x6e, 0x9a, 0x9c, 0x4c, 0xd2, 0xca, 0x24, + 0x0b, 0x4b, 0x26, 0xad, 0x4a, 0x16, 0x93, 0x4f, 0x5a, 0x95, 0x2b, 0x4f, 0xbb, 0x37, 0xc2, 0x7b, + 0xc9, 0x4b, 0x23, 0x79, 0x69, 0x24, 0xaa, 0x3e, 0x2b, 0xaa, 0x6e, 0x3c, 0x2d, 0xcd, 0x6e, 0x7d, + 0x40, 0x2d, 0xf3, 0xdf, 0x92, 0x95, 0xa6, 0x04, 0xad, 0xc5, 0x93, 0xd2, 0xa4, 0xc4, 0x0a, 0xc4, + 0x69, 0x49, 0x49, 0x23, 0x0a, 0xa4, 0x25, 0x23, 0x8d, 0x64, 0xa4, 0x91, 0x10, 0xfd, 0x8c, 0x10, + 0xfd, 0x1a, 0x08, 0x69, 0x46, 0x03, 0xc9, 0x48, 0x93, 0xc4, 0xce, 0x16, 0x08, 0x69, 0x56, 0x04, + 0x8b, 0xc4, 0x4f, 0x49, 0x47, 0x23, 0x0a, 0x41, 0x25, 0x1b, 0x8d, 0x64, 0xa3, 0x91, 0x18, 0xbc, + 0x51, 0x18, 0xfc, 0x1a, 0xc8, 0x68, 0x76, 0x25, 0x19, 0x4d, 0x04, 0xbf, 0x6d, 0x70, 0xd1, 0xac, + 0x08, 0x16, 0x08, 0xbf, 0x92, 0x89, 0x66, 0x0d, 0x40, 0x2d, 0x89, 0x68, 0x36, 0x1a, 0x78, 0x25, + 0x11, 0xcd, 0x6b, 0x81, 0xdf, 0xd7, 0xc7, 0x43, 0xf3, 0x4e, 0x9e, 0xcb, 0x8b, 0xbd, 0xf5, 0x6d, + 0x97, 0x86, 0xa6, 0xa8, 0x0d, 0x91, 0x6f, 0x82, 0x25, 0x09, 0x4d, 0xab, 0x28, 0x2c, 0x39, 0x68, + 0x24, 0x07, 0x8d, 0x84, 0xe0, 0x75, 0x43, 0xb0, 0xa4, 0xa0, 0x79, 0xa5, 0xe0, 0xdb, 0x02, 0x03, + 0x4d, 0x9e, 0xfc, 0x16, 0x40, 0x57, 0xf2, 0xcf, 0x88, 0x01, 0x5b, 0x49, 0x3f, 0x23, 0xe9, 0x67, + 0x24, 0xca, 0xae, 0x73, 0x3b, 0xd6, 0x6b, 0x62, 0x9f, 0xd9, 0x95, 0xab, 0xdc, 0xc4, 0x6e, 0xa9, + 0x36, 0x17, 0xb8, 0x6d, 0x71, 0xcf, 0xe4, 0x08, 0x97, 0xd4, 0x33, 0xcd, 0x80, 0x56, 0x32, 0xcf, + 0x48, 0xe6, 0x19, 0x09, 0xb2, 0x6b, 0x01, 0xd9, 0x4d, 0x27, 0x9e, 0x79, 0x2f, 0x89, 0x67, 0x52, + 0x33, 0x29, 0x16, 0x49, 0x05, 0xd3, 0xce, 0x24, 0x65, 0x4a, 0xd6, 0x99, 0x46, 0xa8, 0x29, 0x49, + 0x67, 0x24, 0xe9, 0x8c, 0x04, 0xd0, 0xda, 0x1e, 0x40, 0x00, 0xe9, 0xcc, 0xaa, 0x1d, 0x4a, 0xce, + 0x99, 0xe2, 0x92, 0xbc, 0x05, 0x9f, 0x87, 0x9b, 0xa6, 0x26, 0x07, 0xcd, 0xc9, 0x62, 0x82, 0x55, + 0xea, 0xbd, 0x1d, 0xc9, 0x43, 0x53, 0xd7, 0x1f, 0x4b, 0x1e, 0x9a, 0x5a, 0x5a, 0xd0, 0x48, 0x1b, + 0x9a, 0x6a, 0x85, 0x98, 0xe4, 0xb2, 0xe4, 0xa1, 0xe1, 0x57, 0x21, 0x7e, 0x07, 0xfc, 0x2c, 0x51, + 0xa7, 0xa4, 0xa0, 0x91, 0x14, 0x34, 0x92, 0x82, 0x46, 0x26, 0x8e, 0x5e, 0x05, 0xfb, 0x4c, 0xc3, + 0xad, 0x0f, 0xaf, 0x9a, 0x7e, 0xa6, 0x15, 0xe6, 0x99, 0x16, 0x48, 0x67, 0x24, 0xdf, 0x8c, 0x08, + 0x5c, 0xb7, 0x24, 0xd5, 0x8c, 0xa4, 0x9a, 0x91, 0xe8, 0xf9, 0x4c, 0xe8, 0x69, 0x6d, 0x3a, 0xcb, + 0xcc, 0xc7, 0x06, 0x2c, 0x33, 0x92, 0x60, 0xa6, 0x0e, 0x1e, 0x5b, 0xc2, 0xb9, 0x65, 0x2c, 0xc1, + 0xb4, 0x32, 0x96, 0x64, 0x94, 0x69, 0x0e, 0xc3, 0x92, 0x4c, 0x46, 0x92, 0xc9, 0x48, 0x10, 0x7e, + 0x1e, 0x10, 0x7e, 0x15, 0x3c, 0x32, 0x3b, 0x92, 0x47, 0x26, 0x84, 0xc8, 0x16, 0x28, 0x64, 0x2c, + 0xe1, 0xec, 0x31, 0x96, 0x24, 0x8e, 0x11, 0x00, 0x94, 0x8e, 0xe4, 0x8c, 0x91, 0x9c, 0x31, 0x12, + 0x6a, 0x37, 0xe5, 0x07, 0xee, 0x24, 0x5d, 0xcc, 0xab, 0x41, 0x59, 0xa7, 0x05, 0xa6, 0x18, 0x47, + 0x38, 0x49, 0x8c, 0x23, 0xf9, 0x61, 0x9e, 0x15, 0x8f, 0x89, 0xa4, 0x86, 0x01, 0x92, 0x1a, 0x46, + 0xa2, 0xec, 0x3a, 0x51, 0x96, 0xbc, 0x3a, 0x56, 0x98, 0x6d, 0x79, 0x5e, 0xce, 0x7b, 0x19, 0xdb, + 0x32, 0x21, 0x4c, 0xab, 0x5c, 0x30, 0x92, 0x06, 0xa6, 0x2d, 0xb0, 0x95, 0x0c, 0x30, 0x92, 0x01, + 0x46, 0x22, 0xed, 0x1a, 0x91, 0x76, 0xf3, 0xc9, 0x5f, 0x3e, 0xee, 0x48, 0xee, 0x97, 0x04, 0xc4, + 0xb6, 0x41, 0xfb, 0xd2, 0x1a, 0xe3, 0x8b, 0x24, 0x7b, 0x11, 0x05, 0xa9, 0x96, 0xe4, 0x79, 0x91, + 0x3c, 0x2f, 0x12, 0x4b, 0xd7, 0xb3, 0x17, 0xea, 0x35, 0x51, 0xbc, 0xc8, 0x25, 0x6b, 0xb8, 0x5f, + 0xa9, 0xa5, 0xd5, 0xaa, 0xd5, 0x12, 0xb1, 0x8b, 0xf5, 0xb3, 0x70, 0xba, 0xf0, 0x16, 0x7c, 0x0e, + 0xdc, 0x9d, 0x4a, 0xda, 0x17, 0x49, 0xfb, 0x22, 0x31, 0xf7, 0x99, 0x31, 0x77, 0x2a, 0x19, 0x5f, + 0xc0, 0x33, 0xfb, 0x1b, 0xf1, 0x08, 0x3b, 0x15, 0x4d, 0xf6, 0x32, 0x15, 0xcb, 0xf3, 0x32, 0x95, + 0x14, 0x2f, 0x4d, 0xc1, 0x51, 0xb2, 0xbb, 0x48, 0x76, 0x17, 0x89, 0x93, 0xb5, 0x8d, 0x5f, 0x00, + 0xbb, 0xcb, 0x54, 0x12, 0xbb, 0xbc, 0x42, 0x62, 0x17, 0xfe, 0xab, 0x3c, 0x2e, 0xd0, 0xcd, 0x62, + 0xd8, 0x26, 0x9d, 0x16, 0xe4, 0xd0, 0xf2, 0x5b, 0x4d, 0xbc, 0x59, 0x8c, 0x79, 0xad, 0x60, 0x66, + 0x79, 0xb8, 0x30, 0x3e, 0x2d, 0x08, 0x31, 0x8d, 0x12, 0xd5, 0xf7, 0xdd, 0xd5, 0x39, 0x82, 0x34, + 0xa2, 0xbf, 0x40, 0x84, 0x50, 0xa9, 0x25, 0x8e, 0xca, 0x57, 0x42, 0xd5, 0x25, 0x2d, 0xb9, 0xb0, + 0xa0, 0x31, 0x06, 0x23, 0x9e, 0x0a, 0x34, 0xa8, 0x98, 0x22, 0xdb, 0x46, 0x13, 0x5f, 0x75, 0x47, + 0x25, 0x2e, 0x20, 0x5d, 0x2d, 0x20, 0xc5, 0xf8, 0xc0, 0x55, 0xad, 0x8a, 0x8d, 0x98, 0xc6, 0x81, + 0x86, 0x3d, 0xdb, 0x2c, 0x77, 0x14, 0x36, 0x1d, 0xaa, 0x60, 0xa0, 0xba, 0xbd, 0x06, 0x7a, 0x5e, + 0x55, 0x3f, 0xb9, 0xe7, 0xd4, 0x7d, 0x41, 0xb5, 0x30, 0xd0, 0x95, 0x8d, 0x09, 0x0a, 0xba, 0xea, + 0xd7, 0xac, 0xdb, 0x59, 0x5f, 0x4f, 0x5c, 0x91, 0x52, 0x51, 0xb8, 0x14, 0x65, 0x19, 0x1f, 0xfe, + 0x6e, 0xaf, 0x65, 0x5f, 0x95, 0xbc, 0x92, 0xda, 0x86, 0x90, 0xc3, 0x44, 0x75, 0x0b, 0xd5, 0xbb, + 0x19, 0x8d, 0x4e, 0x0d, 0xfa, 0x3c, 0xe7, 0x48, 0x25, 0xd0, 0x98, 0x69, 0x79, 0x8c, 0x55, 0x26, + 0xf3, 0x38, 0xe4, 0x91, 0x65, 0x29, 0x07, 0x19, 0x8d, 0xaf, 0x5c, 0xe2, 0xe0, 0x34, 0xe2, 0x66, + 0x64, 0xa9, 0xc2, 0xb9, 0xc2, 0xff, 0x32, 0x84, 0x8b, 0x51, 0x8a, 0x83, 0x45, 0xaa, 0x06, 0x73, + 0x54, 0x55, 0xaa, 0x9f, 0x2f, 0x36, 0x9e, 0x70, 0x05, 0xe2, 0xcc, 0xf4, 0x67, 0xb4, 0x70, 0xb1, + 0x9d, 0x55, 0x0e, 0xcd, 0x3d, 0x13, 0x76, 0xca, 0x16, 0xfc, 0xa1, 0xa5, 0xf3, 0xc4, 0xdd, 0xb6, + 0xb9, 0x0c, 0x4b, 0x96, 0x30, 0x80, 0x54, 0x58, 0x41, 0xb1, 0x01, 0xb8, 0x85, 0x84, 0x5c, 0x20, + 0x8d, 0x2a, 0xb4, 0xc9, 0x75, 0x94, 0x92, 0x60, 0xc2, 0x00, 0xf7, 0x87, 0x73, 0x49, 0x23, 0xe9, + 0x4f, 0xb4, 0x32, 0xb2, 0x1f, 0xc1, 0x19, 0x5d, 0x02, 0x23, 0xe2, 0x70, 0xec, 0xfe, 0xad, 0x19, + 0x94, 0x65, 0x78, 0xc7, 0x61, 0x79, 0xce, 0xbe, 0xea, 0x8a, 0xac, 0xf6, 0x2a, 0xcc, 0x89, 0xcd, + 0x0d, 0x57, 0x05, 0x2e, 0x68, 0x4a, 0x4f, 0xd5, 0xd2, 0xd4, 0xa6, 0x5e, 0x45, 0xee, 0x6a, 0x3e, + 0x12, 0x9d, 0x7c, 0xfb, 0x7d, 0x1f, 0xfc, 0xef, 0xe8, 0xda, 0x78, 0xf7, 0xe1, 0x3b, 0xff, 0xc2, + 0xaa, 0x32, 0x24, 0x09, 0x80, 0x27, 0x1e, 0xa8, 0x7a, 0x5f, 0x59, 0x44, 0xed, 0xb7, 0x3d, 0x95, + 0x30, 0x2c, 0x89, 0x16, 0x84, 0x1c, 0x2c, 0x6c, 0x66, 0x52, 0x0a, 0x0d, 0x82, 0xb4, 0xef, 0x2c, + 0xab, 0x03, 0xf6, 0xc0, 0x6e, 0x16, 0x22, 0x94, 0x0a, 0x42, 0x9a, 0xe6, 0xa4, 0x25, 0x0d, 0xb7, + 0x2b, 0xcb, 0xf9, 0x7a, 0x8f, 0xec, 0x7b, 0x53, 0x23, 0x14, 0xe0, 0x84, 0xf4, 0xeb, 0x9b, 0x31, + 0x09, 0x05, 0x5e, 0x10, 0x68, 0x93, 0xb4, 0xd4, 0x77, 0xcd, 0x64, 0x1e, 0x1a, 0x93, 0xb4, 0xc4, + 0xed, 0x8f, 0x82, 0x93, 0x4e, 0x4f, 0x2d, 0x19, 0x6c, 0xd2, 0xf2, 0x94, 0x9d, 0x6b, 0x63, 0x77, + 0x20, 0x6d, 0xaf, 0xc2, 0xfa, 0x5b, 0xb8, 0xe9, 0xed, 0x88, 0x33, 0xbd, 0x5d, 0x91, 0xa6, 0xf7, + 0x7e, 0xd4, 0x8a, 0xe9, 0x7d, 0x54, 0x84, 0x1b, 0xdf, 0xbb, 0x0f, 0x15, 0x64, 0x3e, 0xad, 0x39, + 0x6f, 0x51, 0x33, 0x16, 0x62, 0x9a, 0x43, 0x61, 0xbf, 0x6e, 0x28, 0x24, 0x43, 0x20, 0xce, 0x08, + 0xa8, 0x62, 0xd6, 0xd8, 0x77, 0xa7, 0xfe, 0xec, 0x5c, 0x1b, 0xa7, 0xf0, 0x81, 0xdf, 0x99, 0xb6, + 0x97, 0x15, 0x16, 0x9c, 0x09, 0x6e, 0x94, 0xfd, 0xe5, 0x44, 0xb2, 0xcf, 0xe6, 0xe2, 0x56, 0x43, + 0x17, 0x16, 0x36, 0xaa, 0xe5, 0x7a, 0xe3, 0x06, 0x52, 0xe5, 0xed, 0x4a, 0x43, 0x18, 0x98, 0x20, + 0x15, 0xeb, 0x50, 0x73, 0xaa, 0xe0, 0x5f, 0xe8, 0xb3, 0xc6, 0xd5, 0xe2, 0x1a, 0x56, 0xef, 0xc8, + 0x7b, 0xdf, 0x5a, 0xb1, 0xd6, 0xa5, 0x59, 0xb1, 0x29, 0x06, 0xac, 0xf8, 0x81, 0x6a, 0xf4, 0x31, + 0xfd, 0x3f, 0x3f, 0xab, 0xef, 0x62, 0xea, 0xd5, 0xe2, 0x7d, 0x25, 0xf8, 0xe2, 0xdc, 0xeb, 0x07, + 0x1e, 0xd5, 0x11, 0xe9, 0x21, 0x5f, 0xa2, 0x83, 0x6c, 0xd1, 0x3f, 0xb2, 0x70, 0x45, 0x3a, 0xc6, + 0x3a, 0x91, 0x48, 0x63, 0xbf, 0xe8, 0x47, 0x8a, 0xcf, 0xef, 0x18, 0x07, 0x75, 0x1c, 0xe3, 0x70, + 0xbb, 0x96, 0x63, 0xac, 0x5c, 0x8d, 0x79, 0xc6, 0x51, 0x15, 0xcf, 0x18, 0xfa, 0x38, 0x67, 0x43, + 0x5d, 0x9c, 0xf4, 0x70, 0xad, 0x86, 0x80, 0xb1, 0x95, 0x94, 0x74, 0x74, 0x6b, 0x89, 0x00, 0x93, + 0x6b, 0xd9, 0x0d, 0x09, 0x04, 0x77, 0x76, 0x9e, 0x2d, 0x10, 0xfc, 0xb0, 0x5b, 0x27, 0x10, 0xfc, + 0x5e, 0x2f, 0x10, 0xfc, 0xbe, 0xa1, 0x5e, 0x72, 0x24, 0xdd, 0x64, 0xab, 0x6e, 0x32, 0x9e, 0xca, + 0xb9, 0x36, 0x0e, 0x16, 0xc4, 0x9c, 0x4e, 0x81, 0x9b, 0x29, 0x92, 0x5e, 0x73, 0x2d, 0x5e, 0x33, + 0x2b, 0x63, 0xb7, 0x21, 0xbe, 0xf3, 0xdd, 0x40, 0xfa, 0xce, 0x97, 0xe4, 0x3b, 0xb7, 0xa5, 0xef, + 0x7c, 0x7e, 0xdf, 0x79, 0x68, 0x4c, 0xa4, 0xe7, 0x5c, 0xbb, 0xe7, 0xf4, 0xde, 0x4a, 0x6c, 0x88, + 0xdf, 0xdc, 0xfe, 0x28, 0xfd, 0x66, 0x23, 0xbf, 0x29, 0xda, 0x71, 0xbe, 0xab, 0xfc, 0x5a, 0xc7, + 0xa5, 0xd2, 0x34, 0x9f, 0xf9, 0xad, 0xce, 0x4f, 0xe6, 0x6e, 0xaf, 0xe6, 0x08, 0x69, 0xd7, 0x06, + 0x3b, 0x25, 0x25, 0x3d, 0xec, 0x8a, 0x09, 0x1c, 0x98, 0xfa, 0xad, 0x19, 0xa9, 0xb9, 0xbb, 0x11, + 0x88, 0x0d, 0xd8, 0x67, 0x0c, 0x75, 0x44, 0x22, 0xfe, 0x7b, 0x36, 0x98, 0xe7, 0x26, 0xd3, 0xdc, + 0x0e, 0xfb, 0xea, 0x8d, 0xa4, 0xea, 0xbd, 0x2f, 0x3b, 0xa6, 0x1e, 0xf4, 0x21, 0xd0, 0x2c, 0xdd, + 0x9c, 0x20, 0xaa, 0x06, 0x27, 0xd8, 0x21, 0xa7, 0xec, 0x6b, 0x6c, 0xc2, 0x56, 0x84, 0xbb, 0x05, + 0xc2, 0xdb, 0xac, 0xca, 0xa1, 0x86, 0xd8, 0x88, 0xfc, 0xe9, 0xce, 0x5d, 0x67, 0xb4, 0x7b, 0xdd, + 0xe9, 0xfc, 0xea, 0x9d, 0x33, 0x1b, 0x28, 0xbb, 0xef, 0x77, 0x9f, 0x8a, 0x0a, 0xbf, 0x57, 0x76, + 0xe2, 0xc5, 0xdf, 0x0f, 0xdf, 0x15, 0x16, 0xff, 0x98, 0x28, 0xbc, 0x33, 0xf2, 0x0a, 0x3f, 0x6d, + 0xb1, 0x7f, 0x9e, 0xcf, 0x6f, 0x20, 0x43, 0xa5, 0x83, 0x50, 0x7d, 0x6f, 0xdc, 0xa1, 0x57, 0x4f, + 0xba, 0x8e, 0x16, 0x77, 0xc4, 0xf9, 0x73, 0xf3, 0x75, 0x3a, 0x75, 0x10, 0xa9, 0xb7, 0x35, 0xce, + 0xab, 0x7b, 0x4d, 0x05, 0x51, 0x4b, 0x51, 0x09, 0x36, 0x8d, 0xce, 0x1a, 0x36, 0xc9, 0xa4, 0xb7, + 0xea, 0x0c, 0x2b, 0xb0, 0xef, 0xd6, 0xde, 0x28, 0xa3, 0xef, 0x0e, 0x06, 0x13, 0x6a, 0xe5, 0x2a, + 0xa1, 0xe6, 0xae, 0x99, 0x33, 0xc5, 0xb4, 0x90, 0xd1, 0xed, 0xad, 0x67, 0x83, 0x55, 0x93, 0x20, + 0x31, 0xa9, 0x06, 0xeb, 0x08, 0x0f, 0x87, 0x75, 0xc2, 0xc3, 0xe7, 0x5b, 0x55, 0xbf, 0xdb, 0xad, + 0xf5, 0x06, 0xe6, 0x3f, 0xff, 0xde, 0xb0, 0x05, 0xb2, 0xf4, 0xa4, 0xb5, 0x83, 0xb0, 0x63, 0xe3, + 0x1e, 0xd9, 0x04, 0x9c, 0x9a, 0xc4, 0xb4, 0xaf, 0x8d, 0xcf, 0xb8, 0xb2, 0x33, 0x94, 0x4b, 0xde, + 0xd8, 0xe7, 0x62, 0x89, 0x89, 0x3a, 0xaf, 0xe8, 0xc6, 0x74, 0x36, 0xf6, 0xe1, 0xc8, 0x3f, 0x93, + 0x1f, 0x6b, 0x79, 0x91, 0xc6, 0xf9, 0x9b, 0xd2, 0xfc, 0xbf, 0x23, 0xdd, 0xcc, 0xc4, 0x2b, 0xfd, + 0x5e, 0x74, 0xf5, 0x73, 0x46, 0x8d, 0x0e, 0x45, 0xde, 0xe2, 0x3b, 0x74, 0x30, 0x9d, 0xc9, 0x33, + 0x91, 0xbc, 0x41, 0xd2, 0xab, 0x38, 0x13, 0xb9, 0xbe, 0x53, 0x8f, 0x4c, 0xdf, 0x32, 0x4e, 0x3d, + 0xca, 0x93, 0x8d, 0xeb, 0x3b, 0xd9, 0xc8, 0x3e, 0x39, 0xd3, 0xa2, 0x44, 0xe7, 0x0f, 0x15, 0x17, + 0x63, 0xc1, 0x1e, 0x28, 0x44, 0xd9, 0x4f, 0x61, 0xf9, 0x4e, 0xef, 0xd7, 0xd6, 0xcf, 0x53, 0x16, + 0x1d, 0xa8, 0xa4, 0xce, 0xfd, 0xc4, 0x9c, 0xcd, 0xe8, 0xb3, 0xac, 0xfb, 0x9c, 0xa5, 0x0b, 0xcd, + 0xaf, 0xf8, 0x24, 0x23, 0x1d, 0xe6, 0x57, 0x75, 0x96, 0x51, 0x74, 0xfe, 0x77, 0xb7, 0x42, 0x16, + 0xa7, 0xf3, 0x19, 0x12, 0x18, 0x28, 0x6e, 0xe7, 0x45, 0x2d, 0x3d, 0xb6, 0x1a, 0x87, 0x9e, 0x6c, + 0x40, 0x6c, 0x42, 0x1f, 0xee, 0xb0, 0x34, 0xce, 0xf4, 0x5d, 0xfe, 0xa1, 0x01, 0xd9, 0x2f, 0x79, + 0xf1, 0x0f, 0x4a, 0xa0, 0x6b, 0xaa, 0x1b, 0x9d, 0x1f, 0x1b, 0x5c, 0xfa, 0x56, 0x63, 0x14, 0x33, + 0xe1, 0x45, 0x9c, 0xfb, 0xc6, 0x53, 0xd0, 0xf5, 0xc9, 0x48, 0x7a, 0x9c, 0xf1, 0x3c, 0xab, 0xe2, + 0xff, 0x62, 0x0e, 0xcb, 0xa8, 0x9c, 0xb3, 0x71, 0x3e, 0xc2, 0x1a, 0xaa, 0xfe, 0x8b, 0xbd, 0x76, + 0x50, 0xd5, 0x5d, 0xed, 0xb0, 0x99, 0xe8, 0xf5, 0x2a, 0x2c, 0x2a, 0x02, 0x7c, 0x70, 0xd8, 0x76, + 0x83, 0x2f, 0x86, 0xe3, 0x1c, 0x99, 0x36, 0xf2, 0x7c, 0xeb, 0x05, 0xb2, 0xef, 0xb1, 0x8a, 0x2a, + 0x64, 0x7b, 0xfc, 0x27, 0x72, 0x10, 0xb9, 0x82, 0x77, 0xe8, 0xc4, 0x54, 0xef, 0xba, 0x6c, 0x6e, + 0x7a, 0xa2, 0x56, 0x19, 0x00, 0xd1, 0xa8, 0x96, 0xf3, 0xe1, 0xfc, 0xbe, 0xa8, 0x9a, 0xe9, 0xa0, + 0x68, 0x78, 0xf9, 0xba, 0x12, 0x0d, 0x8a, 0x69, 0xe5, 0x8d, 0x09, 0xf7, 0x34, 0xff, 0x25, 0xfa, + 0x65, 0xa4, 0x70, 0x54, 0x2a, 0x4d, 0x51, 0xc6, 0xa8, 0xba, 0xe1, 0x7d, 0xef, 0x25, 0x2c, 0xde, + 0x2e, 0xb1, 0xce, 0x45, 0x9c, 0x67, 0x23, 0x0b, 0x41, 0xc2, 0xe9, 0xf1, 0xec, 0x85, 0x61, 0xb8, + 0xbe, 0x9f, 0xab, 0x34, 0x66, 0xce, 0xe3, 0x1e, 0x52, 0xb4, 0xe2, 0xf9, 0xf5, 0x4d, 0xd3, 0xb8, + 0xb4, 0xf1, 0x6c, 0x86, 0x6c, 0xfe, 0x64, 0x28, 0x9b, 0xc5, 0xc8, 0x13, 0x2a, 0xbe, 0xa9, 0x57, + 0xb2, 0xd4, 0xbf, 0xfd, 0x0d, 0x04, 0x7a, 0x80, 0x1d, 0x57, 0x1d, 0xbf, 0xba, 0x89, 0xd4, 0x7a, + 0xa6, 0x9a, 0xaf, 0x95, 0xdc, 0xb9, 0x04, 0x11, 0x8a, 0xd9, 0x5c, 0x39, 0xab, 0xa4, 0x88, 0xb9, + 0x9d, 0x61, 0x62, 0x96, 0x68, 0x08, 0x9c, 0x35, 0xee, 0x2d, 0x52, 0x21, 0x3d, 0x51, 0xf0, 0xdd, + 0xc4, 0x64, 0xe5, 0x0b, 0xcc, 0x66, 0xee, 0xb4, 0x7b, 0xf0, 0xfa, 0x60, 0x6e, 0x52, 0x70, 0x60, + 0xa1, 0x4a, 0x90, 0xcd, 0x34, 0xed, 0x47, 0x45, 0x51, 0x84, 0xbc, 0xdd, 0xd9, 0x88, 0xd7, 0x3b, + 0xcc, 0x0d, 0x04, 0x6e, 0xc5, 0x46, 0x3f, 0x16, 0xc8, 0x21, 0x0c, 0x26, 0xcf, 0x90, 0xad, 0x63, + 0xc7, 0xc1, 0xa6, 0x51, 0xdd, 0x21, 0xb0, 0x8f, 0xe6, 0xa1, 0xed, 0x19, 0xeb, 0x93, 0xad, 0x20, + 0x37, 0x2c, 0x64, 0x96, 0x58, 0x8b, 0x5c, 0x2d, 0x29, 0x2c, 0xf8, 0xb9, 0xd8, 0x1a, 0xc2, 0x2a, + 0x85, 0x0f, 0x19, 0x3e, 0x0e, 0xe9, 0x98, 0x9c, 0x22, 0xc7, 0xa1, 0x6b, 0x52, 0xef, 0x65, 0x58, + 0xb7, 0xc3, 0x3a, 0x06, 0xa2, 0xd1, 0x72, 0x3a, 0xfd, 0xce, 0x37, 0x2f, 0x08, 0x26, 0x26, 0xf0, + 0x07, 0x14, 0x30, 0x1a, 0x33, 0xe0, 0x3c, 0x3a, 0x2c, 0xcd, 0x69, 0x85, 0x65, 0x95, 0x4e, 0xdf, + 0x75, 0x94, 0xfd, 0x8a, 0xee, 0x92, 0xdf, 0x19, 0x56, 0x71, 0xae, 0xdc, 0x6f, 0x0d, 0x8e, 0x0d, + 0xab, 0x12, 0x7b, 0x65, 0x7b, 0x29, 0xff, 0x70, 0x7d, 0x12, 0x04, 0xbf, 0xdc, 0x35, 0xa7, 0x74, + 0x59, 0xae, 0x58, 0x26, 0x8d, 0x1b, 0x7c, 0xd6, 0xdd, 0x51, 0x55, 0xcf, 0xa1, 0xbc, 0xa5, 0xd3, + 0xdf, 0xe1, 0xb7, 0xf1, 0x3f, 0x82, 0x44, 0x8d, 0x12, 0x7c, 0xa9, 0xa8, 0x86, 0x96, 0x4d, 0x97, + 0x09, 0x36, 0x79, 0x04, 0x50, 0xc3, 0xd0, 0xf1, 0x9e, 0x7b, 0x9c, 0x11, 0xfb, 0x37, 0x16, 0xea, + 0xad, 0xe1, 0xc6, 0xa0, 0x61, 0xbc, 0x93, 0x12, 0xcd, 0x5e, 0x23, 0xfb, 0x84, 0x7e, 0xfe, 0x3e, + 0x93, 0x80, 0xde, 0xef, 0x13, 0xb4, 0x95, 0xf8, 0x0e, 0x94, 0xad, 0xa6, 0xcd, 0x38, 0xc4, 0x46, + 0x88, 0x5c, 0x9a, 0xf6, 0x0f, 0xf6, 0xfe, 0x34, 0xfe, 0x57, 0x9c, 0x3c, 0x57, 0x4c, 0x2b, 0x67, + 0xd0, 0x09, 0x9a, 0xa0, 0x5f, 0x5b, 0x90, 0xcf, 0x7e, 0xd9, 0x3c, 0x6c, 0x21, 0xfd, 0x33, 0xe7, + 0x62, 0xda, 0x70, 0x77, 0xaf, 0x05, 0x6d, 0x5c, 0xa4, 0x7f, 0xe4, 0x55, 0xd0, 0x6c, 0xa4, 0x7e, + 0xb1, 0x2e, 0x9c, 0x97, 0x82, 0x5f, 0xb2, 0x13, 0xdb, 0x32, 0xe3, 0xc4, 0x4f, 0xb7, 0x9a, 0xfe, + 0x91, 0x1f, 0x61, 0x3a, 0x91, 0x7c, 0x9c, 0x98, 0x86, 0xb4, 0xf7, 0x9c, 0x47, 0x57, 0x41, 0x33, + 0x47, 0x57, 0x2d, 0x48, 0x8f, 0x73, 0xb6, 0x86, 0x0d, 0x65, 0x11, 0xb9, 0x86, 0xce, 0xa2, 0x69, + 0xc3, 0xc4, 0x86, 0x58, 0x0b, 0xac, 0x38, 0xf6, 0x87, 0xc8, 0x87, 0x73, 0xc5, 0xba, 0x36, 0x1c, + 0x7c, 0x13, 0x2f, 0xdd, 0xb3, 0xe0, 0xe8, 0xbb, 0xf0, 0x16, 0x7c, 0xfb, 0x8d, 0xbe, 0x0b, 0x6f, + 0x61, 0xd5, 0x7a, 0x33, 0x2f, 0xb7, 0xd6, 0xae, 0x67, 0xbb, 0x2b, 0x97, 0xe2, 0xed, 0x01, 0x51, + 0xaa, 0xf0, 0xac, 0xa6, 0xeb, 0x36, 0xca, 0x2c, 0xd7, 0xff, 0x22, 0x5e, 0x76, 0xd2, 0x6e, 0x57, + 0xaf, 0x09, 0x37, 0x5b, 0x6d, 0x31, 0xc1, 0xa1, 0xd5, 0x0a, 0x37, 0x58, 0x26, 0xdd, 0xb5, 0x57, + 0x4b, 0xac, 0xa9, 0xba, 0x72, 0x3d, 0x4b, 0xb5, 0x44, 0x1b, 0x29, 0x93, 0x1d, 0x60, 0xac, 0x68, + 0xf3, 0x74, 0x47, 0x7b, 0xd5, 0x3a, 0x5b, 0x34, 0xcc, 0x78, 0x8b, 0xbe, 0x5d, 0xb6, 0x84, 0xa6, + 0xfe, 0x5c, 0xa7, 0x0d, 0xd2, 0x6a, 0xc7, 0x14, 0x59, 0x6b, 0xcc, 0x12, 0xa7, 0x57, 0xc2, 0xa5, + 0x26, 0x6d, 0x70, 0xda, 0xaa, 0xf9, 0xc5, 0xd8, 0xa9, 0x4e, 0xe1, 0x83, 0xbf, 0xd6, 0x18, 0x67, + 0xd3, 0x9d, 0x09, 0x69, 0x8b, 0x11, 0x5a, 0xa0, 0x64, 0x3b, 0x2b, 0x6c, 0x68, 0x4d, 0x1b, 0x32, + 0xef, 0x91, 0xfd, 0xdd, 0x3f, 0x14, 0x19, 0x6f, 0x29, 0x8f, 0x2f, 0xad, 0x69, 0x7b, 0x0b, 0x76, + 0x96, 0xe8, 0x7b, 0xec, 0x14, 0x66, 0xa2, 0xd5, 0x62, 0x56, 0x35, 0x91, 0x6d, 0x1f, 0x1a, 0x93, + 0xdc, 0x96, 0xd3, 0xcc, 0x6b, 0x4d, 0xdb, 0x4d, 0xec, 0xe8, 0x0f, 0x5b, 0x4d, 0x1f, 0x22, 0x48, + 0xae, 0xd4, 0x1a, 0x36, 0x99, 0xd8, 0x91, 0x1b, 0x36, 0x99, 0xde, 0xa7, 0x2b, 0xee, 0x11, 0x93, + 0x5b, 0xe7, 0xc2, 0x06, 0x57, 0x76, 0xd4, 0x29, 0x96, 0xe9, 0x60, 0xf6, 0x9d, 0x33, 0x2d, 0x2a, + 0x3a, 0x8f, 0x5d, 0x92, 0x79, 0xe6, 0x48, 0xe2, 0xfa, 0x87, 0x20, 0x4a, 0x13, 0xbc, 0x61, 0xce, + 0xd3, 0xcb, 0xad, 0xe5, 0xa4, 0x24, 0x58, 0x9e, 0x25, 0x91, 0x83, 0xe3, 0xa7, 0x89, 0xce, 0x4c, + 0xee, 0xce, 0xcd, 0xe5, 0x67, 0x93, 0xec, 0x1b, 0x13, 0xfa, 0x6f, 0xfa, 0xbf, 0x82, 0x94, 0x76, + 0xf4, 0x3b, 0x3a, 0xb9, 0xbb, 0xd9, 0xfc, 0xdc, 0x62, 0x50, 0x24, 0x7b, 0x07, 0x08, 0x4b, 0xee, + 0x7a, 0xfc, 0xc5, 0xc5, 0x19, 0xd2, 0xd5, 0x74, 0x0a, 0xd8, 0x73, 0xb3, 0x77, 0xbf, 0x53, 0x0b, + 0x10, 0x41, 0x1b, 0xfe, 0xf6, 0x2d, 0x38, 0xba, 0x02, 0x0b, 0x6b, 0x02, 0x09, 0x5a, 0xf7, 0x3e, + 0x97, 0xa3, 0xe5, 0x37, 0xb7, 0x1f, 0x25, 0x5c, 0xe2, 0x5c, 0xf3, 0xf9, 0xcd, 0xd2, 0x4c, 0x38, + 0xd9, 0xd7, 0x34, 0x2f, 0x13, 0x9f, 0x37, 0x61, 0xe9, 0xb1, 0x49, 0x0d, 0xcd, 0xc5, 0xc2, 0xb2, + 0x4c, 0x9b, 0x24, 0x54, 0x35, 0x38, 0xcf, 0xb3, 0x35, 0x5d, 0x18, 0xae, 0x81, 0xa6, 0x7f, 0x2e, + 0xc0, 0xeb, 0xbd, 0x7e, 0x60, 0xea, 0x3a, 0x34, 0x26, 0x0e, 0x4b, 0x2d, 0x9e, 0xaa, 0xaa, 0x69, + 0x4c, 0xfd, 0x77, 0x3c, 0x89, 0x3b, 0xfb, 0x96, 0x75, 0xe0, 0xdd, 0x72, 0xef, 0xdd, 0x43, 0x1b, + 0x2c, 0x1c, 0x74, 0xac, 0x53, 0x57, 0x81, 0xa1, 0x16, 0xbd, 0x2a, 0x8a, 0x5d, 0xfc, 0x66, 0x60, + 0x12, 0x6c, 0xc9, 0x62, 0xe5, 0xb1, 0x6e, 0x1d, 0x41, 0x95, 0x29, 0x46, 0xac, 0xd0, 0x3f, 0x87, + 0xca, 0xee, 0xe0, 0xe3, 0xf6, 0xbb, 0xf1, 0x50, 0x19, 0x44, 0xa2, 0xdd, 0x50, 0x92, 0x16, 0xd4, + 0x4f, 0x55, 0xd6, 0x2a, 0xeb, 0xc0, 0x19, 0xb4, 0xa1, 0xee, 0x1d, 0x63, 0xe8, 0x76, 0xb4, 0x9b, + 0x25, 0xf5, 0xea, 0x37, 0x3a, 0x7c, 0xe8, 0x44, 0xf2, 0xbd, 0xa0, 0xb9, 0xb0, 0x96, 0xef, 0x84, + 0xbd, 0x8a, 0x69, 0xfb, 0x66, 0x32, 0xdc, 0x38, 0x93, 0x8a, 0x78, 0x93, 0x2f, 0x43, 0xc7, 0xc6, + 0x0d, 0xb2, 0x2d, 0x9d, 0x0a, 0x78, 0x1b, 0x3c, 0x53, 0xd4, 0x71, 0xea, 0x31, 0x69, 0x07, 0xfc, + 0xd1, 0x5a, 0xa9, 0x0d, 0x2d, 0xeb, 0x86, 0x16, 0xb9, 0x61, 0xa3, 0x1c, 0x20, 0xc2, 0x8d, 0xa3, + 0x52, 0x4f, 0x6b, 0xcc, 0xa8, 0xbc, 0xbf, 0xfb, 0xcf, 0x10, 0x3d, 0x52, 0x2a, 0x1e, 0x2d, 0x93, + 0x0d, 0x27, 0xaa, 0x27, 0x9b, 0x5e, 0xb7, 0x6e, 0x08, 0xd6, 0xd1, 0x0d, 0x75, 0xc9, 0xb1, 0x31, + 0x8a, 0xc5, 0x80, 0xdc, 0xfd, 0xcc, 0x93, 0x15, 0x0f, 0x5f, 0x19, 0x6d, 0xeb, 0x80, 0x9a, 0xcf, + 0x9b, 0x2e, 0x5f, 0xff, 0x82, 0xba, 0x37, 0xe8, 0xc1, 0xea, 0xf4, 0xd8, 0x93, 0xbf, 0x09, 0x69, + 0xac, 0x98, 0xec, 0x20, 0xec, 0x2a, 0x9c, 0x4d, 0x3a, 0x11, 0x89, 0x09, 0x4d, 0xd4, 0x8e, 0x85, + 0x38, 0x85, 0x42, 0x68, 0xcd, 0x9b, 0x7b, 0x6c, 0xa4, 0x6a, 0xaf, 0x84, 0x2a, 0x85, 0x32, 0x6e, + 0x3d, 0x76, 0x52, 0xda, 0x1b, 0x3a, 0x9b, 0x2e, 0x09, 0x48, 0xbe, 0x34, 0x1a, 0x7e, 0x70, 0xcb, + 0x42, 0x6c, 0x77, 0x61, 0x72, 0x4c, 0x58, 0x88, 0x98, 0x51, 0xff, 0xd8, 0x20, 0xdd, 0x8e, 0x83, + 0xa3, 0xda, 0x2e, 0x53, 0x5d, 0x54, 0x37, 0x11, 0x1b, 0x14, 0xb4, 0x3f, 0x35, 0xd5, 0x1b, 0xbf, + 0xec, 0x8d, 0xe9, 0x16, 0x8e, 0x09, 0x99, 0xb2, 0x1f, 0x5b, 0x64, 0x3f, 0xb5, 0x58, 0x22, 0x60, + 0xba, 0xcc, 0x99, 0x97, 0x44, 0x04, 0x1f, 0x5e, 0x4d, 0x86, 0x11, 0x19, 0xb2, 0x3f, 0x99, 0xa6, + 0xd6, 0xed, 0xe8, 0x74, 0xbe, 0xd9, 0x21, 0x8a, 0x9b, 0x49, 0x78, 0x7a, 0xc2, 0x77, 0x46, 0xec, + 0x55, 0x5c, 0xd7, 0x77, 0x19, 0x7b, 0x79, 0x29, 0xdf, 0x1e, 0xdb, 0x48, 0xd0, 0x0d, 0x7c, 0xc4, + 0x5e, 0x6e, 0x7a, 0x3b, 0xf1, 0xd6, 0x2e, 0x9e, 0x6a, 0xa7, 0x63, 0x71, 0x10, 0x8b, 0xe1, 0xba, + 0x83, 0xe8, 0xc5, 0x53, 0x9e, 0x2c, 0xf6, 0xaa, 0x2d, 0x32, 0xe8, 0xa8, 0xe4, 0x4a, 0xe7, 0x68, + 0x41, 0xaf, 0xff, 0x0d, 0x3f, 0xa9, 0x76, 0x56, 0x92, 0x5a, 0xb4, 0x1d, 0xd7, 0xc3, 0xa5, 0xfb, + 0x93, 0xcc, 0x09, 0xb0, 0xde, 0x40, 0x27, 0xfd, 0x74, 0x05, 0x4b, 0x63, 0xf6, 0x9c, 0xa9, 0xdb, + 0xab, 0x2d, 0xe4, 0x54, 0x8c, 0x79, 0xa4, 0x54, 0x9d, 0x64, 0x56, 0xc7, 0x8d, 0x27, 0x7c, 0xfd, + 0xcb, 0xe9, 0xda, 0x4a, 0x6a, 0x6b, 0x2f, 0xe1, 0xa3, 0x52, 0xc8, 0x98, 0xd4, 0x9a, 0xec, 0x34, + 0x63, 0x5a, 0x69, 0x72, 0xb2, 0xa9, 0xdc, 0x3a, 0x33, 0x8c, 0x74, 0x26, 0x47, 0xd4, 0xaa, 0xca, + 0x64, 0xf7, 0x4c, 0xb8, 0xc6, 0x64, 0x67, 0x41, 0x57, 0x14, 0x26, 0x2b, 0xdd, 0x9b, 0xd2, 0x97, + 0xd2, 0x14, 0x67, 0x91, 0xba, 0x64, 0x67, 0x13, 0x0b, 0xb5, 0x25, 0x23, 0x05, 0x98, 0xa9, 0x2c, + 0xc5, 0x69, 0xd0, 0x0a, 0xba, 0x62, 0x95, 0xaa, 0x49, 0xa6, 0x86, 0x24, 0x86, 0xbb, 0x48, 0x4b, + 0x46, 0x31, 0x2d, 0xe1, 0x50, 0x10, 0xab, 0x25, 0xdd, 0x88, 0xac, 0xac, 0x54, 0x2b, 0xac, 0x62, + 0x85, 0xa8, 0xa9, 0x0b, 0x56, 0x25, 0x35, 0x98, 0x72, 0x68, 0x40, 0xad, 0xc9, 0xcf, 0x63, 0xbc, + 0xaf, 0x18, 0x98, 0xe4, 0xf2, 0xdd, 0x57, 0xc1, 0xf2, 0x12, 0xb2, 0x7b, 0xde, 0x30, 0x87, 0x8b, + 0xe3, 0xbe, 0x7a, 0xbc, 0xc3, 0x41, 0x72, 0x5f, 0x35, 0xf0, 0x29, 0xc8, 0x31, 0x54, 0x09, 0x14, + 0x42, 0x7d, 0xc6, 0xd3, 0x6e, 0x5e, 0x17, 0xe8, 0x90, 0xbb, 0x59, 0x1b, 0x5a, 0xcf, 0x4b, 0xdb, + 0xd0, 0x6a, 0xff, 0xbd, 0x47, 0x17, 0x85, 0xef, 0x7b, 0x7f, 0x16, 0xa6, 0x73, 0xf6, 0x06, 0x4f, + 0x65, 0x66, 0x54, 0xb1, 0xd9, 0x7f, 0x70, 0x35, 0x3b, 0x6c, 0xa7, 0xd9, 0x9d, 0xb2, 0x76, 0x47, + 0x4f, 0x91, 0xf8, 0x64, 0x60, 0x49, 0x05, 0x6c, 0xef, 0x0e, 0x94, 0x61, 0x1c, 0x0f, 0xf3, 0xd3, + 0x52, 0x60, 0x2f, 0xb1, 0xe2, 0x5e, 0x29, 0xe8, 0x11, 0xe9, 0x80, 0xbd, 0xce, 0xe1, 0xf9, 0xf9, + 0xd7, 0x73, 0xd0, 0xed, 0xe4, 0x17, 0xf5, 0x0e, 0x55, 0xd3, 0xa2, 0xff, 0xf9, 0x77, 0x2f, 0x2a, + 0x46, 0xe0, 0x6d, 0x7a, 0x93, 0x04, 0x6d, 0x73, 0x94, 0x23, 0x26, 0xf7, 0x20, 0x50, 0xe7, 0xbf, + 0xa6, 0xd3, 0x8f, 0x3b, 0x1f, 0x77, 0x3a, 0xd1, 0x41, 0x9f, 0xfc, 0x7d, 0x4d, 0xfe, 0x48, 0x1c, + 0xd0, 0x35, 0xdd, 0xad, 0x0d, 0x5d, 0x45, 0x3d, 0x47, 0x3f, 0x16, 0x54, 0x15, 0x27, 0x9d, 0x7e, + 0xe7, 0x8b, 0xc9, 0xb6, 0x37, 0x7d, 0x3a, 0xfe, 0x9f, 0x43, 0x70, 0x70, 0xf4, 0x85, 0x75, 0xb0, + 0xcf, 0xb6, 0xec, 0x82, 0x8c, 0x5a, 0x74, 0xe5, 0x4d, 0xbd, 0x12, 0x32, 0x80, 0x7b, 0x5c, 0x09, + 0x84, 0xdb, 0x60, 0xae, 0x8d, 0x6b, 0xe3, 0x84, 0x96, 0xa5, 0xf7, 0xd8, 0x8a, 0xde, 0xf6, 0x52, + 0x8d, 0x80, 0xba, 0x2f, 0x96, 0x92, 0x98, 0xd2, 0x80, 0x48, 0x7b, 0x04, 0x93, 0x85, 0x4d, 0x0b, + 0x03, 0x35, 0x92, 0x17, 0x6e, 0x9a, 0x02, 0xb1, 0x5d, 0x53, 0x2b, 0xfb, 0xba, 0x0a, 0x27, 0x2b, + 0x39, 0xd7, 0x49, 0x8c, 0xc8, 0x9f, 0x3c, 0xbe, 0x59, 0xeb, 0xe4, 0xca, 0x12, 0x75, 0x3e, 0x8b, + 0xf1, 0x9a, 0x44, 0xb9, 0x90, 0xd4, 0xb9, 0x31, 0x7f, 0x08, 0x84, 0xa5, 0x35, 0xc0, 0x3f, 0x81, + 0x9f, 0xd8, 0x00, 0x63, 0x10, 0xa6, 0x36, 0xa8, 0xbd, 0xe4, 0x6d, 0xde, 0x61, 0x61, 0xc3, 0x20, + 0x6e, 0x36, 0x81, 0xdd, 0x7a, 0x29, 0xaf, 0x82, 0x3c, 0x46, 0x3f, 0x7f, 0x29, 0xc3, 0x27, 0x2c, + 0x4c, 0xa5, 0xf4, 0x73, 0xd7, 0x4e, 0x5b, 0x51, 0xae, 0xa9, 0x50, 0x54, 0x98, 0x1b, 0xe9, 0x83, + 0x37, 0x79, 0x4b, 0x90, 0xbf, 0x07, 0x23, 0xc6, 0xd5, 0xbd, 0x8c, 0xf5, 0x64, 0x3f, 0x73, 0x7d, + 0x10, 0x93, 0x16, 0x64, 0x20, 0x32, 0xc4, 0x15, 0x26, 0x60, 0xfa, 0x39, 0xcb, 0xa1, 0xb7, 0x3c, + 0x23, 0x5c, 0xd2, 0x68, 0x4e, 0x66, 0xa6, 0xcf, 0xb1, 0xba, 0xea, 0x01, 0x41, 0x9f, 0xea, 0x23, + 0x94, 0xdd, 0xd9, 0x9c, 0xf0, 0xfc, 0x45, 0xf4, 0xd3, 0x40, 0xb3, 0xb2, 0x7e, 0xd2, 0xf9, 0x1c, + 0x3d, 0x7f, 0x5f, 0xb3, 0x53, 0x5f, 0x7d, 0xd0, 0x75, 0xf3, 0x66, 0xe0, 0x4d, 0xc9, 0x5a, 0x96, + 0x25, 0x1b, 0xdd, 0x14, 0x59, 0xa4, 0x72, 0x89, 0x6c, 0x0a, 0xd8, 0xe3, 0xda, 0x5b, 0x14, 0x5f, + 0xd2, 0x14, 0xfa, 0xa2, 0x61, 0x4d, 0x5f, 0x94, 0xb7, 0x42, 0xae, 0xec, 0x8a, 0x72, 0x16, 0xe4, + 0x75, 0x3c, 0x51, 0xce, 0xd2, 0x56, 0x80, 0x23, 0xca, 0x58, 0x7a, 0x0a, 0xf1, 0x43, 0x99, 0xab, + 0xec, 0xb7, 0x1c, 0x83, 0x5b, 0xd7, 0x0b, 0x95, 0xae, 0xd9, 0x7b, 0xcd, 0x9d, 0x47, 0xd1, 0xd2, + 0xfe, 0x05, 0xf9, 0x8e, 0xc2, 0x0c, 0x04, 0xaf, 0xeb, 0x10, 0xe7, 0x16, 0x0a, 0xb3, 0x16, 0x1c, + 0x5e, 0x81, 0x63, 0xe7, 0x52, 0x3a, 0xd7, 0x51, 0xe8, 0x18, 0x46, 0x75, 0x1d, 0x83, 0x00, 0x9f, + 0x60, 0x89, 0x09, 0x4c, 0xda, 0xf0, 0x04, 0x53, 0xf1, 0x4e, 0xc0, 0x5a, 0xb5, 0xff, 0x56, 0x4c, + 0xbf, 0x5d, 0xab, 0xb7, 0x5e, 0xbc, 0xc1, 0x5b, 0xb9, 0xb6, 0xfe, 0x01, 0xfc, 0x42, 0x57, 0xa8, + 0xc3, 0x9d, 0x9e, 0x40, 0x73, 0xae, 0x6f, 0xc9, 0x53, 0x4e, 0x64, 0x2f, 0x34, 0x84, 0x54, 0x6a, + 0xaa, 0x9f, 0x9d, 0xdd, 0xea, 0xe5, 0x09, 0xca, 0xce, 0x4d, 0xf5, 0x73, 0x92, 0x5b, 0xbd, 0xf2, + 0xfe, 0x04, 0x79, 0xa9, 0x7e, 0x51, 0x66, 0x8b, 0x43, 0xce, 0x6a, 0x4a, 0xaa, 0x5f, 0x9e, 0xe4, + 0xaa, 0x28, 0x97, 0x65, 0xa5, 0xfa, 0x65, 0x39, 0xae, 0x52, 0x99, 0xab, 0x89, 0x97, 0xfe, 0x2a, + 0x29, 0x28, 0x5b, 0xd4, 0x76, 0x0b, 0xb3, 0x30, 0xbd, 0xb8, 0x85, 0x96, 0x78, 0xab, 0xd4, 0x1b, + 0xbd, 0x7e, 0xfe, 0x2a, 0x3f, 0x57, 0x5c, 0x6e, 0x6a, 0xad, 0x5f, 0x90, 0xa2, 0xf3, 0xa4, 0x39, + 0x54, 0x45, 0x27, 0x0b, 0xaa, 0xb2, 0x54, 0xa4, 0x97, 0xcb, 0xf0, 0x4f, 0xa0, 0xf9, 0x5b, 0x2b, + 0xe8, 0x75, 0xc3, 0xab, 0x1b, 0x3f, 0xda, 0x43, 0x27, 0x8b, 0x8e, 0xc1, 0x38, 0xe8, 0x4b, 0x64, + 0x15, 0xc1, 0x0a, 0xde, 0x34, 0xbc, 0x5d, 0x18, 0x93, 0x6e, 0xfa, 0x9c, 0x1d, 0x33, 0x40, 0xf7, + 0x70, 0xb5, 0xa2, 0xbb, 0x75, 0xcf, 0x1f, 0xd2, 0x67, 0xde, 0xc2, 0xbd, 0x11, 0x1c, 0xed, 0xfb, + 0x16, 0x5f, 0xaf, 0x03, 0xd0, 0xab, 0x1c, 0xf5, 0x20, 0xbb, 0x0b, 0xe9, 0xa3, 0xe0, 0xd8, 0x3d, + 0x56, 0x02, 0xc9, 0xc2, 0x71, 0xef, 0x44, 0xd7, 0xc3, 0xf3, 0xda, 0xc3, 0xdd, 0xd8, 0x81, 0xed, + 0xf0, 0xd0, 0x77, 0x72, 0xf3, 0x48, 0x70, 0x70, 0x3c, 0x79, 0xb5, 0xe0, 0x14, 0xb7, 0xea, 0x8d, + 0x04, 0xf5, 0x32, 0xb1, 0x5d, 0x3c, 0x7e, 0x06, 0x84, 0x0e, 0xc6, 0x41, 0x70, 0xfb, 0xcc, 0xb4, + 0x09, 0xdb, 0xd8, 0x93, 0x3a, 0x0c, 0x1c, 0x56, 0x67, 0x1b, 0x6e, 0x62, 0xd9, 0xb3, 0x77, 0x53, + 0xf6, 0x4f, 0x87, 0xff, 0xd1, 0x17, 0x38, 0xf7, 0xb1, 0x07, 0x59, 0x8f, 0x9d, 0x98, 0xdb, 0xcc, + 0xe3, 0xf2, 0x39, 0x0f, 0x5d, 0xda, 0x93, 0x70, 0x26, 0x05, 0xf4, 0x65, 0x6b, 0x65, 0x87, 0xdd, + 0x2d, 0x35, 0x2a, 0x10, 0xe8, 0x68, 0x7a, 0x9e, 0x92, 0xa5, 0x42, 0x45, 0xca, 0x2d, 0x46, 0x3b, + 0xe6, 0x66, 0xb5, 0x68, 0x2f, 0x2e, 0x98, 0x63, 0x4a, 0x30, 0x1a, 0x16, 0x4c, 0x7a, 0x74, 0x0c, + 0xdd, 0x5d, 0x22, 0x7d, 0x81, 0x8b, 0x19, 0xfa, 0xe6, 0xa0, 0xdf, 0xd1, 0x0c, 0x12, 0x7c, 0x8f, + 0x5c, 0xb7, 0xe0, 0x64, 0x9d, 0x4c, 0xa7, 0x81, 0x62, 0x56, 0x82, 0xf5, 0x2f, 0x34, 0x48, 0xdc, + 0xce, 0x3a, 0xfa, 0x1a, 0x23, 0xee, 0xc0, 0x0e, 0x53, 0xa1, 0x50, 0x9f, 0xba, 0xee, 0x0b, 0xb4, + 0x48, 0xd1, 0x4e, 0xa0, 0x43, 0x8e, 0x96, 0xe7, 0x0f, 0xae, 0xe7, 0x71, 0xba, 0x3d, 0x65, 0xbe, + 0xbc, 0x7c, 0xb4, 0xa8, 0x03, 0xb7, 0x69, 0xc9, 0x3d, 0x2a, 0xbf, 0xf3, 0xfd, 0xf0, 0xe2, 0xa0, + 0x93, 0x77, 0xbe, 0x96, 0x76, 0x6c, 0xc5, 0xe7, 0x14, 0x9d, 0xc5, 0xa5, 0xe5, 0xe3, 0x03, 0xe7, + 0xb6, 0x30, 0x28, 0x3b, 0xbc, 0x1b, 0xed, 0x8e, 0x72, 0xc2, 0x7d, 0x53, 0xe5, 0x8c, 0x1d, 0xc9, + 0x76, 0x0a, 0x8e, 0x96, 0x73, 0x9d, 0xb8, 0xcd, 0xea, 0xf8, 0x90, 0xe7, 0xd4, 0x71, 0xfe, 0xa6, + 0xaf, 0x0a, 0x9d, 0x1f, 0x95, 0xec, 0xb6, 0xe4, 0x3c, 0x32, 0x9c, 0xf5, 0x10, 0x23, 0xde, 0xa3, + 0xd3, 0x89, 0x59, 0x08, 0xf6, 0xa8, 0xb9, 0xd3, 0x50, 0x29, 0x76, 0xac, 0xf0, 0xd4, 0xdb, 0x62, + 0xb9, 0x56, 0xe8, 0xd3, 0x27, 0xe2, 0xba, 0x2a, 0x67, 0xc6, 0xe3, 0x0f, 0x6f, 0x50, 0x9f, 0x6d, + 0xd3, 0x55, 0x0e, 0xd4, 0x0e, 0xf4, 0x09, 0x45, 0x7d, 0xfc, 0x70, 0x13, 0x84, 0x9a, 0x60, 0xd8, + 0xe1, 0xe4, 0x3b, 0xa9, 0x7a, 0xca, 0x9b, 0xb7, 0x03, 0x83, 0x4e, 0x4f, 0x20, 0x53, 0x45, 0x6a, + 0x42, 0xf8, 0xce, 0xfa, 0x67, 0x05, 0x21, 0xc5, 0x4c, 0x8f, 0x9c, 0x9b, 0x8a, 0xb7, 0x2a, 0x6f, + 0x37, 0xde, 0xe2, 0x97, 0xe3, 0x72, 0x8d, 0x04, 0x00, 0x51, 0xa4, 0x1a, 0xfc, 0x06, 0x5d, 0xd0, + 0x50, 0x88, 0x31, 0xdc, 0x2d, 0x45, 0xbb, 0x42, 0xeb, 0x6d, 0xf1, 0x8d, 0xff, 0xc5, 0x56, 0x64, + 0x61, 0xdc, 0xb1, 0xf7, 0x07, 0x51, 0xa6, 0xa6, 0xad, 0x43, 0xc2, 0xd0, 0xb7, 0x6b, 0xa0, 0x25, + 0xe3, 0xc6, 0xa2, 0x01, 0x47, 0xbf, 0x33, 0x9f, 0x8f, 0x75, 0x3d, 0xa6, 0x50, 0x4f, 0xb1, 0xa5, + 0x4f, 0x16, 0x84, 0xdb, 0x24, 0x0f, 0xc0, 0x77, 0x44, 0x86, 0x12, 0x65, 0x08, 0x57, 0x8a, 0x88, + 0x1c, 0xd4, 0x36, 0x41, 0xd7, 0xa9, 0xee, 0xee, 0x64, 0xab, 0x7d, 0x62, 0x76, 0x7c, 0xe8, 0xee, + 0xf1, 0x96, 0xbc, 0x40, 0x64, 0x61, 0x65, 0x14, 0x2f, 0xf4, 0x0b, 0xec, 0x19, 0x32, 0xdf, 0xb3, + 0x96, 0x60, 0x68, 0xf9, 0xb3, 0x54, 0xec, 0x65, 0xb1, 0x79, 0x71, 0x95, 0xcc, 0x53, 0xcf, 0xb8, + 0x8a, 0x6d, 0x45, 0x47, 0x00, 0xd8, 0x0b, 0xdf, 0x94, 0xb2, 0xa5, 0x49, 0xdf, 0x63, 0x3b, 0xd5, + 0xe8, 0x53, 0x40, 0x7b, 0xe2, 0xbd, 0xce, 0x74, 0xc6, 0x7e, 0x75, 0xe5, 0xeb, 0x1d, 0xf8, 0xbf, + 0xe0, 0xfb, 0x01, 0x34, 0xd4, 0xd8, 0xef, 0x41, 0xe8, 0xe6, 0x84, 0x69, 0x69, 0x42, 0xf9, 0xe8, + 0x6a, 0x6e, 0xe1, 0xa4, 0xae, 0xb9, 0x3c, 0x5d, 0x67, 0xa6, 0x86, 0xd5, 0xc7, 0x31, 0x38, 0x33, + 0xad, 0x85, 0xa5, 0x1c, 0xb0, 0x4b, 0x5f, 0x8d, 0x43, 0x47, 0x85, 0x56, 0x6c, 0xa3, 0x54, 0x40, + 0xbd, 0xe7, 0x76, 0x10, 0x9c, 0xc2, 0x99, 0x81, 0x08, 0x56, 0x81, 0xff, 0x5b, 0x0a, 0xfe, 0x4b, + 0xe8, 0x28, 0x4e, 0x7f, 0x18, 0xc7, 0x08, 0x04, 0x1f, 0xc7, 0xa7, 0x90, 0xcc, 0x15, 0xba, 0x5e, + 0xef, 0x76, 0x7d, 0x3a, 0xc6, 0xb9, 0x4b, 0xd9, 0xf2, 0xc6, 0xfb, 0x4f, 0xef, 0xed, 0xa8, 0x3f, + 0x8c, 0x65, 0x2f, 0xbc, 0x32, 0x63, 0x40, 0x5d, 0x04, 0xed, 0x99, 0xfb, 0x0a, 0xfa, 0x0a, 0x1b, + 0x13, 0x73, 0xa9, 0xb0, 0x43, 0x49, 0x1a, 0x7c, 0x0c, 0x4b, 0x2e, 0x57, 0x39, 0x1e, 0xc1, 0x1b, + 0x10, 0xe3, 0x70, 0x39, 0x70, 0xc9, 0x78, 0x32, 0x09, 0x74, 0x4a, 0xf7, 0xda, 0x07, 0x05, 0x74, + 0xba, 0x9c, 0xc3, 0x2e, 0xd5, 0x62, 0x52, 0xd9, 0x9c, 0x1c, 0xae, 0xc4, 0x1c, 0x9a, 0x6f, 0x36, + 0xc7, 0xde, 0xfc, 0x9e, 0x40, 0xfd, 0x76, 0x02, 0x4f, 0xe0, 0x6d, 0x6c, 0xc6, 0xa2, 0x85, 0x50, + 0x53, 0xe6, 0x0e, 0xb6, 0xc8, 0xa6, 0xa3, 0x96, 0x4d, 0xc9, 0xfd, 0x3d, 0x87, 0x92, 0x9b, 0x93, + 0xf2, 0x68, 0x69, 0x43, 0x8b, 0x25, 0x19, 0x7c, 0x91, 0x57, 0xa6, 0x3d, 0xb9, 0xa2, 0x97, 0x56, + 0xca, 0xb9, 0x84, 0x1d, 0x99, 0xd6, 0xd4, 0xb9, 0x9c, 0x63, 0x87, 0xce, 0x9b, 0xa6, 0x01, 0xb2, + 0xb0, 0x0d, 0x77, 0x2b, 0x82, 0x9b, 0x05, 0x00, 0x8e, 0x66, 0x2e, 0xb5, 0x47, 0x05, 0x9c, 0xe0, + 0xe9, 0xca, 0x0e, 0x05, 0xb6, 0xa1, 0x41, 0x87, 0x77, 0x08, 0x74, 0xc0, 0x2f, 0xd9, 0x62, 0x9d, + 0x85, 0x8d, 0x68, 0x2d, 0x48, 0x80, 0x61, 0x92, 0x39, 0xdb, 0xc0, 0x40, 0x9b, 0xc1, 0x9e, 0xfc, + 0x25, 0x7c, 0x54, 0xae, 0x8d, 0xfd, 0x29, 0x7d, 0x70, 0x7f, 0x06, 0xa8, 0x46, 0xf5, 0xbd, 0xf7, + 0xf8, 0x6e, 0x01, 0x27, 0xa0, 0x07, 0x61, 0xed, 0xb8, 0x99, 0x62, 0xf5, 0x51, 0xd5, 0xbc, 0x7b, + 0x8c, 0x4d, 0x94, 0xf1, 0x92, 0x22, 0xbb, 0x93, 0x6b, 0xe2, 0x31, 0x07, 0xbf, 0xaf, 0xaa, 0xc8, + 0xca, 0x38, 0xf1, 0x12, 0x79, 0x23, 0x1d, 0x41, 0xd6, 0x59, 0xdf, 0x72, 0xba, 0xc3, 0x9d, 0x78, + 0xe2, 0x2e, 0xee, 0x2e, 0x12, 0x2e, 0xa3, 0x24, 0xd3, 0x10, 0x48, 0xdf, 0xca, 0xca, 0x35, 0xf8, + 0x4d, 0xb9, 0x4b, 0x22, 0xba, 0xbe, 0x46, 0x74, 0x69, 0x36, 0xe9, 0xda, 0xc8, 0xe9, 0x65, 0x2f, + 0xe7, 0xd8, 0xce, 0x94, 0x0b, 0x37, 0x83, 0xe0, 0xef, 0x4f, 0x09, 0x7f, 0x32, 0x05, 0x9c, 0x23, + 0x67, 0xa1, 0x11, 0x10, 0x08, 0x71, 0x5f, 0x79, 0xa4, 0xd7, 0x2d, 0x85, 0xfb, 0x40, 0x68, 0xab, + 0x8a, 0x97, 0x4a, 0x2a, 0xae, 0x93, 0xb1, 0x05, 0x84, 0x63, 0x1b, 0x48, 0x86, 0x6f, 0x5e, 0xa9, + 0x11, 0xfc, 0x34, 0xc4, 0xca, 0x12, 0xaa, 0x9d, 0xad, 0x23, 0xe1, 0xa1, 0x22, 0x7e, 0xf2, 0xe0, + 0x8c, 0x3d, 0x43, 0xd1, 0x0f, 0xec, 0xfc, 0x3f, 0x7f, 0x4c, 0xff, 0x61, }; diff --git a/hwconf/luna/m600/qmlui_luna_m600.h b/hwconf/luna/m600/qmlui_luna_m600.h index d8d4963e..92a9941d 100644 --- a/hwconf/luna/m600/qmlui_luna_m600.h +++ b/hwconf/luna/m600/qmlui_luna_m600.h @@ -8,7 +8,7 @@ #include // Constants -#define DATA_QML_HW_SIZE 7198 +#define DATA_QML_HW_SIZE 6892 // Variables extern uint8_t data_qml_hw[];