Usermod config level up, step 2: Working!

- remove settings_um2
- remove addToConfigMenu
- settings.htm: add isO and ldS (inspired by settings_um.htm): add usermod buttons to urows
settings_um.htm: check url um var and if set show only this usermod. Only show globalGPIOs if no usermod
This commit is contained in:
Ewowi
2022-09-01 22:37:52 +02:00
parent 7bb50da4b8
commit 42ec2725f8
9 changed files with 292 additions and 655 deletions

View File

@@ -318,12 +318,6 @@ writeChunks(
method: "gzip",
filter: "html-minify",
},
{
file: "settings_um2.htm",
name: "PAGE_settings_um2",
method: "gzip",
filter: "html-minify",
},
{
file: "settings_pin.htm",
name: "PAGE_settings_pin",

View File

@@ -1418,10 +1418,6 @@ class AudioReactive : public Usermod {
sync[F("mode")] = audioSyncEnabled;
}
void addToConfigMenu(JsonObject& root) {
JsonObject top = root.createNestedObject(FPSTR(_name));
}
/*
* readFromConfig() can be used to read back the custom settings you added with addToConfig().

View File

@@ -26,6 +26,34 @@
alert("Loading of configuration script failed.\nIncomplete page data!");
});
}
function isO(i) { return (i && typeof i === 'object' && !Array.isArray(i)); }
// load settings and insert values into DOM
function ldS() {
var url = (loc?`http://${locip}`:'') + '/cfg.json';
fetch(url, {
method: 'get'
})
.then(res => {
if (!res.ok) gId('lserr').style.display = "inline";
return res.json();
})
.then(json => {
umCfg = json.um;
urows="";
if (isO(umCfg)) {
for (const [k,o] of Object.entries(umCfg)) {
urows += `<button type="submit" onclick="window.location=\'./settings/um?um=${k}\'">${k} (UM)</button>`;
}
}
gId("configMenu").innerHTML = urows;
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=0';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
})
.catch((error)=>{
gId('lserr').style.display = "inline";
console.log(error);
});
}
function S(){
if (window.location.protocol == "file:") {
loc = true;
@@ -35,10 +63,8 @@
localStorage.setItem('locIp', locip);
}
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=0';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
gId("configMenu").innerHTML = '<button type="submit" onclick="window.location=\'./settings/ar?um=1\'">Audio Reactive (UM)</button>\
<button type="submit" onclick="window.location=\'./settings/ar?um=2\'">Weather mod (UM)</button>';
//WLEDSR: add ldS and move loadJS there (like in settings_um)
ldS();
}
</script>
<style>

View File

@@ -45,7 +45,7 @@
}
}
ldS();
if (!numM) gId("um").innerHTML = "No Usermods installed.";
if (!numM) gId("um").innerHTML = ""; //WLEDSR: Do not display no usermods installed
}
// https://stackoverflow.com/questions/3885817/how-do-i-check-that-a-number-is-float-or-integer
function isF(n) { return n === +n && n !== (n|0); }
@@ -191,10 +191,21 @@
urows="";
if (isO(umCfg)) {
for (const [k,o] of Object.entries(umCfg)) {
urows += `<hr><h3>${k}</h3>`;
addField(k,'unknown',o);
//WLEDSR: read url parameter. e.g. um=AudioReactive and if set only add the usermod with the same name
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const userMod = urlParams.get('um')
if (userMod == "" || userMod == k) {
urows += `<div id=${k}><hr><h3>${k}</h3>`;
addField(k,'unknown',o);
urows += `</div> <!--ewowi-->`;
}
}
}
//WLEDSR: only show globalGPIOs if no usermod info is shown (url without um parameter)
gId("globalGPIOs").style.display = urows===""?"block":"none";
if (urows==="") urows = "Usermods configuration not found.<br>Press <i>Save</i> to initialize defaults.";
gId("um").innerHTML = urows;
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=8';
@@ -219,8 +230,10 @@
<div class="helpB"><button type="button" onclick="H()">?</button></div>
<button type="button" onclick="B()">Back</button><button type="submit">Save</button><br>
<span id="lssuc" style="color:green; display:none">&#10004; Configuration saved!</span>
<span id="lserr" style="color:red; display:none">&#9888; Could not load configuration.</span><hr>
<span id="lserr" style="color:red; display:none">&#9888; Could not load configuration.</span>
</div>
<div id="globalGPIOs" style="display:none;"> <!--WLEDSR: show in ldS-->
<hr>
<h2>Usermod Setup</h2>
Global I<sup>2</sup>C GPIOs (HW)<br>
<i style="color: orange;">(only changable on ESP32, change requires reboot!)</i><br>
@@ -232,6 +245,7 @@
MOSI:<input type="number" min="-1" max="33" name="MOSI" onchange="check(this,'if')" class="s" placeholder="MOSI">
MISO:<input type="number" min="-1" max="33" name="MISO" onchange="check(this,'if')" class="s" placeholder="MISO">
SCLK:<input type="number" min="-1" max="33" name="SCLK" onchange="check(this,'if')" class="s" placeholder="SCLK">
</div>
<div id="um">Loading settings...</div>
<hr><button type="button" onclick="B()">Back</button><button type="submit">Save</button>
</form>

View File

@@ -1,239 +0,0 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=500">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
<title>Usermod Settings</title>
<script>
var d = document;
var umCfg = {};
var pins = [6,7,8,9,10,11];
var pinO = ["rsvd","rsvd","rsvd","rsvd","rsvd","rsvd"], owner;
var loc = false, locip;
var urows;
var numM = 0;
function gId(s) { return d.getElementById(s); }
function isO(i) { return (i && typeof i === 'object' && !Array.isArray(i)); }
function H() { window.open("https://github.com/Aircoookie/WLED/wiki/Settings#usermod-settings"); }
function B() { window.open("/settings","_self"); }
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript
function loadJS(FILE_URL, async = true) {
let scE = d.createElement("script");
scE.setAttribute("src", FILE_URL);
scE.setAttribute("type", "text/javascript");
scE.setAttribute("async", async);
d.body.appendChild(scE);
// success event
scE.addEventListener("load", () => {
//console.log("File loaded");
GetV();
});
// error event
scE.addEventListener("error", (ev) => {
console.log("Error on loading file", ev);
alert("Loading of configuration script failed.\nIncomplete page data!");
});
}
function S() {
if (window.location.protocol == "file:") {
loc = true;
locip = localStorage.getItem('locIp');
if (!locip) {
locip = prompt("File Mode. Please enter WLED IP!");
localStorage.setItem('locIp', locip);
}
}
ldS();
if (!numM) gId("um").innerHTML = "No Usermods installed.";
}
// https://stackoverflow.com/questions/3885817/how-do-i-check-that-a-number-is-float-or-integer
function isF(n) { return n === +n && n !== (n|0); }
function isI(n) { return n === +n && n === (n|0); }
function check(o,k) { // input object, pin owner key
var n = o.name.replace("[]","").substr(-3);
if (o.type=="number" && n.substr(0,3)=="pin") {
for (var i=0; i<pins.length; i++) {
if (k==pinO[i]) continue;
if (o.value==pins[i] && pinO[i]==="if") { o.style.color="lime"; break; }
if (o.value==pins[i] || o.value<-1 || o.value>39) { o.style.color="red"; break; } else o.style.color=o.value>33?"orange":"#fff";
}
} else {
switch (o.name) {
case "SDA": break;
case "SCL": break;
case "MOSI": break;
case "SCLK": break;
case "CS": break;
default: return;
}
for (var i=0; i<pins.length; i++) {
if (k==pinO[i]) continue;
if (o.value==pins[i] && pinO[i]==="if") { o.style.color="lime"; break; }
if (o.value==pins[i] || o.value<-1 || o.value>39) { o.style.color="red"; break; } else o.style.color=o.value>33?"orange":"#fff";
}
}
}
function getPins(o) {
if (isO(o)) {
for (const [k,v] of Object.entries(o)) {
if (isO(v)) {
owner = k;
getPins(v);
continue;
}
if (k.replace("[]","").substr(-3)=="pin") {
if (Array.isArray(v)) {
for (var i=0; i<v.length; i++) if (v[i]>=0) { pins.push(v[i]); pinO.push(owner); }
} else {
if (v>=0) { pins.push(v); pinO.push(owner); }
}
} else if (Array.isArray(v)) {
for (var i=0; i<v.length; i++) getPins(v[i]);
}
}
}
}
function addField(k,f,o,a=false) { //key, field, (sub)object, isArray
if (isO(o)) {
urows += '<hr style="width:260px">';
for (const [s,v] of Object.entries(o)) {
// possibility to nest objects (only 1 level)
if (f!=='unknown' && !k.includes(":")) addField(k+":"+f,s,v);
else addField(k,s,v);
}
} else if (Array.isArray(o)) {
for (var j=0; j<o.length; j++) {
addField(k,f,o[j],true);
}
} else {
var c, t = typeof o;
switch (t) {
case "boolean":
t = "checkbox"; c = 'value="true"' + (o ? ' checked' : '');
break;
case "number":
c = `value="${o}"`;
if (f.substr(-3)==="pin") {
c += ' max="39" min="-1" class="s"';
t = "int";
} else {
c += ' step="any" class="xxl"';
}
break;
default:
t = "text"; c = `value="${o}" style="width:250px;"`;
break;
}
if (k.includes(":")) urows += k.substr(k.indexOf(":")+1);
urows += ` ${f}: `;
// https://stackoverflow.com/questions/11657123/posting-both-checked-and-unchecked-checkboxes
if (t=="checkbox") urows += `<input type="hidden" name="${k}:${f}${a?"[]":""}" value="false">`;
else if (!a) urows += `<input type="hidden" name="${k}:${f}${a?"[]":""}" value="${t}">`;
urows += `<input type="${t==="int"?"number":t}" name="${k}:${f}${a?"[]":""}" ${c} oninput="check(this,'${k.substr(k.indexOf(":")+1)}')"><br>`;
}
}
// https://stackoverflow.com/questions/39729741/javascript-change-input-text-to-select-option
function addDropdown(um,fld) {
let sel = d.createElement('select');
let arr = d.getElementsByName(um+":"+fld);
let inp = arr[1]; // assume 1st field to be hidden (type)
if (inp && inp.tagName === "INPUT" && (inp.type === "text" || inp.type === "number")) { // may also use nodeName
let v = inp.value;
let n = inp.name;
// copy the existing input element's attributes to the new select element
for (var i = 0; i < inp.attributes.length; ++ i) {
var att = inp.attributes[i];
// type and value don't apply, so skip them
// ** you might also want to skip style, or others -- modify as needed **
if (att.name != 'type' && att.name != 'value' && att.name != 'class' && att.name != 'style') {
sel.setAttribute(att.name, att.value);
}
}
sel.setAttribute("data-val", v);
// finally, replace the old input element with the new select element
inp.parentElement.replaceChild(sel, inp);
return sel;
}
return null;
}
function addOption(sel,txt,val) {
if (sel===null) return; // select object missing
let opt = d.createElement("option");
opt.value = val;
opt.text = txt;
sel.appendChild(opt);
for (let i=0; i<sel.childNodes.length; i++) {
let c = sel.childNodes[i];
if (c.value == sel.dataset.val) sel.selectedIndex = i;
}
}
// https://stackoverflow.com/questions/26440494/insert-text-after-this-input-element-with-javascript
function addInfo(name,el,txt) {
let obj = d.getElementsByName(name);
if (!obj.length) return;
if (typeof el === "string" && obj[0]) obj[0].placeholder = el;
else if (obj[el]) obj[el].insertAdjacentHTML('afterend', '&nbsp;'+txt);
}
// load settings and insert values into DOM
function ldS() {
var url = (loc?`http://${locip}`:'') + '/cfg.json';
fetch(url, {
method: 'get'
})
.then(res => {
if (!res.ok) gId('lserr').style.display = "inline";
return res.json();
})
.then(json => {
umCfg = json.um;
getPins(json);
urows="";
if (isO(umCfg)) {
for (const [k,o] of Object.entries(umCfg)) {
urows += `<hr><h3>${k}</h3>`;
addField(k,'unknown',o);
}
}
if (urows==="") urows = "Usermods configuration not found.<br>Press <i>Save</i> to initialize defaults.";
gId("um").innerHTML = urows;
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=8';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
})
.catch((error)=>{
gId('lserr').style.display = "inline";
console.log(error);
});
}
function svS(e) {
e.preventDefault();
if (d.Sf.checkValidity()) d.Sf.submit(); //https://stackoverflow.com/q/37323914
}
</script>
<style>@import url("style.css");</style>
</head>
<body onload="S()">
<form id="form_s" name="Sf" method="post" onsubmit="svS(event)">
<div class="toprow">
<div class="helpB"><button type="button" onclick="H()">?</button></div>
<button type="button" onclick="B()">Back</button><button type="submit">Save</button><br>
<span id="lssuc" style="color:green; display:none">&#10004; Configuration saved!</span>
<span id="lserr" style="color:red; display:none">&#9888; Could not load configuration.</span><hr>
</div>
<h2>Usermod Setup</h2>
Global I<sup>2</sup>C GPIOs (HW)<br>
<i style="color: orange;">(only changable on ESP32, change requires reboot!)</i><br>
SDA:<input type="number" min="-1" max="33" name="SDA" onchange="check(this,'if')" class="s" placeholder="SDA">
SCL:<input type="number" min="-1" max="33" name="SCL" onchange="check(this,'if')" class="s" placeholder="SCL">
<hr style="width:260px">
Global SPI GPIOs (HW)<br>
<i style="color: orange;">(only changable on ESP32, change requires reboot!)</i><br>
MOSI:<input type="number" min="-1" max="33" name="MOSI" onchange="check(this,'if')" class="s" placeholder="MOSI">
SCLK:<input type="number" min="-1" max="33" name="SCLK" onchange="check(this,'if')" class="s" placeholder="SCLK">
<div id="um">Loading settings...</div>
<hr><button type="button" onclick="B()">Back</button><button type="submit">Save</button>
</form>
</body>
</html>

View File

@@ -268,7 +268,6 @@ class Usermod {
virtual void addToJsonInfo(JsonObject& obj) {}
virtual void readFromJsonState(JsonObject& obj) {}
virtual void addToConfig(JsonObject& obj) {}
virtual void addToConfigMenu(JsonObject& obj) {}
virtual bool readFromConfig(JsonObject& obj) { return true; } // Note as of 2021-06 readFromConfig() now needs to return a bool, see usermod_v2_example.h
virtual void onMqttConnect(bool sessionPresent) {}
virtual bool onMqttMessage(char* topic, char* payload) { return false; }
@@ -293,7 +292,6 @@ class UsermodManager {
void addToJsonInfo(JsonObject& obj);
void readFromJsonState(JsonObject& obj);
void addToConfig(JsonObject& obj);
void addToConfigMenu(JsonObject& obj);
bool readFromConfig(JsonObject& obj);
void onMqttConnect(bool sessionPresent);
bool onMqttMessage(char* topic, char* payload);

View File

@@ -64,77 +64,85 @@ const uint8_t PAGE_settingsCss[] PROGMEM = {
// Autogenerated from wled00/data/settings.htm, do not edit!!
const uint16_t PAGE_settings_length = 1090;
const uint16_t PAGE_settings_length = 1231;
const uint8_t PAGE_settings[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xad, 0x56, 0x6d, 0x6f, 0xdb, 0x36,
0x10, 0xfe, 0xee, 0x5f, 0xc1, 0xb0, 0x58, 0x2d, 0xa1, 0xb2, 0xfc, 0x92, 0x61, 0xd8, 0x64, 0xc9,
0x41, 0x9b, 0x97, 0xd6, 0x43, 0x8c, 0x06, 0x4b, 0xd2, 0x6c, 0x40, 0xbe, 0xd0, 0xe4, 0xc9, 0x66,
0x23, 0x91, 0x02, 0x49, 0x29, 0xf1, 0xdc, 0xfc, 0xf7, 0x1d, 0x65, 0xe7, 0xad, 0x0d, 0xba, 0x61,
0x0d, 0x0c, 0x58, 0x26, 0x79, 0x7c, 0xee, 0xee, 0x79, 0xee, 0x4e, 0x4e, 0x77, 0x0e, 0x3e, 0xee,
0x9f, 0xfd, 0x75, 0x72, 0x48, 0x96, 0xae, 0x2c, 0x26, 0xa9, 0xff, 0x26, 0x05, 0x53, 0x8b, 0x8c,
0x82, 0xa2, 0xb8, 0x06, 0x26, 0x26, 0x69, 0x09, 0x8e, 0x11, 0xbe, 0x64, 0xc6, 0x82, 0xcb, 0xe8,
0xf9, 0xd9, 0x51, 0xef, 0x57, 0xba, 0xdd, 0xed, 0x70, 0xad, 0x1c, 0x28, 0xdc, 0xbe, 0x96, 0xc2,
0x2d, 0x33, 0x01, 0x8d, 0xe4, 0xd0, 0x6b, 0x17, 0x91, 0x54, 0xd2, 0x49, 0x56, 0xf4, 0x2c, 0x67,
0x05, 0x64, 0xc3, 0xa8, 0x64, 0x37, 0xb2, 0xac, 0xcb, 0xfb, 0x75, 0x6d, 0xc1, 0xb4, 0x0b, 0x36,
0xc7, 0xb5, 0xd2, 0x94, 0x74, 0x14, 0x2b, 0x21, 0xa3, 0x8d, 0x84, 0xeb, 0x4a, 0x1b, 0x87, 0x5e,
0x9c, 0x74, 0x05, 0x4c, 0x2e, 0x8e, 0x0f, 0x0f, 0xc8, 0x29, 0x38, 0x27, 0xd5, 0xc2, 0xa6, 0xfd,
0xcd, 0x66, 0x6a, 0xb9, 0x91, 0x95, 0x9b, 0x74, 0x1a, 0x66, 0x48, 0xa1, 0xb9, 0xac, 0x22, 0x91,
0x09, 0xcd, 0xeb, 0x12, 0x03, 0x8a, 0x70, 0x23, 0xdb, 0x19, 0x8e, 0xf3, 0x5a, 0x71, 0x27, 0xb5,
0x22, 0x8b, 0xa9, 0x08, 0x5c, 0xb8, 0x36, 0xe0, 0x6a, 0xa3, 0x88, 0x88, 0x17, 0xe0, 0x0e, 0x0b,
0xf0, 0xa6, 0xef, 0x56, 0xed, 0xd1, 0xed, 0xbd, 0x69, 0xa1, 0x99, 0xf8, 0xfd, 0x34, 0x70, 0x11,
0x64, 0x3b, 0x83, 0x70, 0x5d, 0x80, 0x23, 0x3a, 0x13, 0x31, 0x37, 0xc0, 0x1c, 0x6c, 0x2f, 0x05,
0x74, 0xe3, 0x9d, 0x86, 0x63, 0x1d, 0x23, 0x2f, 0x6f, 0x9d, 0x33, 0x72, 0x5e, 0x3b, 0xc0, 0x03,
0xc3, 0x69, 0xe4, 0xc2, 0xe8, 0xeb, 0x7d, 0xb7, 0xaa, 0x80, 0x46, 0xd4, 0xc1, 0x8d, 0xeb, 0x7f,
0x66, 0x0d, 0xbb, 0x03, 0xf8, 0xc6, 0x90, 0xd9, 0x95, 0x42, 0x08, 0x08, 0x23, 0x11, 0xcf, 0xb5,
0x58, 0xc5, 0xac, 0xaa, 0x40, 0x89, 0xfd, 0xa5, 0x2c, 0x44, 0xa0, 0xbd, 0x3d, 0x13, 0xe2, 0xb0,
0xc1, 0x28, 0x8e, 0xa5, 0x45, 0xf6, 0xc1, 0x04, 0xd4, 0xc7, 0x4c, 0xa3, 0x20, 0xcc, 0x26, 0xeb,
0xf7, 0xe0, 0x3e, 0x05, 0xe1, 0xed, 0xf3, 0x76, 0x60, 0x8c, 0x36, 0x18, 0x1e, 0xda, 0xa1, 0x74,
0x56, 0x17, 0x10, 0x17, 0x7a, 0x11, 0xd0, 0x43, 0xbf, 0x4f, 0xb6, 0xc9, 0x23, 0xcb, 0x24, 0x97,
0x05, 0xb4, 0x69, 0xa0, 0x56, 0x06, 0xd3, 0x3d, 0xde, 0xee, 0xeb, 0x9c, 0xe0, 0xc5, 0x5c, 0x2e,
0x6a, 0xc3, 0x5a, 0xb6, 0x36, 0x69, 0x90, 0x9c, 0xe1, 0x05, 0x11, 0x5f, 0xaa, 0xa9, 0xe2, 0xba,
0xac, 0x90, 0x34, 0x20, 0x15, 0x5b, 0x00, 0x11, 0xcc, 0xb1, 0x1d, 0x8a, 0xf1, 0x3c, 0x10, 0x7c,
0x1a, 0x84, 0x6b, 0xea, 0x1d, 0x24, 0x34, 0xcb, 0xae, 0xa5, 0x12, 0xfa, 0x1a, 0xa3, 0xe0, 0x2d,
0x5e, 0x5c, 0x19, 0xed, 0x34, 0xd7, 0xc5, 0xeb, 0xd7, 0x41, 0xab, 0xe1, 0x20, 0x0a, 0x5a, 0x71,
0x33, 0x6f, 0x51, 0x9c, 0x3a, 0x6d, 0x10, 0xd5, 0xcb, 0x37, 0x75, 0x50, 0xfa, 0xc4, 0xf9, 0xb4,
0xa2, 0x61, 0xf8, 0xe5, 0xcb, 0xd6, 0x0c, 0xef, 0x97, 0x15, 0x06, 0x7c, 0x84, 0xf8, 0x64, 0xa6,
0x05, 0xc4, 0xe4, 0xa4, 0x00, 0x66, 0x81, 0x20, 0x11, 0x60, 0x48, 0x5b, 0x4b, 0xd3, 0x13, 0x0c,
0x29, 0x7a, 0x82, 0x68, 0x9f, 0x22, 0x46, 0x2d, 0x5a, 0x18, 0x7a, 0xab, 0xb6, 0x1c, 0x3c, 0xfc,
0x1e, 0x5d, 0x3a, 0x57, 0x25, 0xfd, 0x3e, 0x7d, 0xd3, 0x1e, 0x27, 0x94, 0x86, 0x6f, 0x68, 0xdf,
0x6e, 0x2b, 0xb3, 0x6f, 0xe3, 0xcf, 0x76, 0xaf, 0xca, 0x06, 0x34, 0xda, 0x19, 0x86, 0x91, 0x2f,
0x39, 0xba, 0x21, 0x6b, 0x06, 0xaa, 0xa6, 0x61, 0x2c, 0x15, 0x8a, 0xf0, 0xe1, 0x6c, 0x76, 0x9c,
0x75, 0x53, 0xd4, 0xda, 0x21, 0x17, 0xbe, 0x2a, 0x32, 0x6a, 0xeb, 0x79, 0x29, 0x1d, 0x45, 0x01,
0x78, 0x21, 0xf9, 0x95, 0x6f, 0xa7, 0x27, 0xac, 0x64, 0x97, 0xdd, 0xf8, 0xc1, 0x0d, 0x33, 0x7b,
0x75, 0x99, 0x0d, 0x2f, 0xbb, 0x74, 0xf2, 0xb6, 0x16, 0x52, 0x93, 0x3f, 0x80, 0x21, 0xb3, 0x0d,
0x90, 0xe0, 0x7c, 0x16, 0xa6, 0xfd, 0x0d, 0xf4, 0xe4, 0xd2, 0x3d, 0xfd, 0xfc, 0xb8, 0xcb, 0x91,
0x77, 0x79, 0x81, 0x6d, 0xb0, 0x44, 0x22, 0x4b, 0x2d, 0x9e, 0xfa, 0xeb, 0xde, 0x76, 0xd2, 0xfe,
0xb6, 0x29, 0x53, 0xeb, 0x56, 0xd8, 0xa3, 0x1d, 0x5f, 0xbf, 0x6b, 0x5f, 0xf2, 0x3d, 0x56, 0xc8,
0x85, 0x4a, 0x78, 0x2b, 0xc2, 0x78, 0xce, 0xf8, 0xd5, 0xc2, 0xe8, 0x5a, 0x89, 0xe4, 0xd5, 0x68,
0x34, 0x1a, 0x2f, 0x41, 0x2e, 0x96, 0x2e, 0x19, 0x0e, 0x06, 0xd5, 0xcd, 0xb8, 0x64, 0x66, 0x21,
0x55, 0x32, 0xb8, 0xf5, 0xe3, 0x68, 0xdd, 0xeb, 0x2d, 0x93, 0xdf, 0x9a, 0xe5, 0xed, 0xc6, 0xc9,
0xfa, 0xf1, 0xcd, 0xdd, 0xdd, 0xdd, 0x31, 0x56, 0x8a, 0x36, 0xc9, 0xab, 0x3c, 0xcf, 0xc7, 0x39,
0xce, 0xa2, 0x5e, 0xce, 0x4a, 0x59, 0xac, 0x92, 0x4f, 0x60, 0x04, 0x53, 0x2c, 0xfa, 0x00, 0x45,
0x03, 0x4e, 0x72, 0x16, 0x59, 0xa6, 0x6c, 0x0f, 0x27, 0x8e, 0xcc, 0xc7, 0x42, 0xda, 0xaa, 0x60,
0xab, 0x64, 0x8e, 0xb9, 0x5e, 0x8d, 0xe7, 0xda, 0x08, 0x30, 0xc9, 0xb0, 0xba, 0x21, 0xd8, 0x0f,
0x52, 0x90, 0x16, 0x77, 0xb3, 0xdb, 0x33, 0x58, 0xf5, 0xb5, 0x4d, 0x70, 0xc4, 0x04, 0x18, 0x48,
0xb8, 0xf1, 0x61, 0xe5, 0xdf, 0x90, 0xfc, 0xd2, 0x94, 0x52, 0xdd, 0x05, 0x7e, 0x7f, 0xde, 0x4e,
0xbe, 0x04, 0xcb, 0x8a, 0x07, 0x98, 0xcc, 0x4f, 0xa4, 0x47, 0x7e, 0xc6, 0x94, 0xc2, 0xbb, 0x9c,
0x46, 0xcd, 0x92, 0xb0, 0xda, 0x69, 0x32, 0x18, 0xf3, 0xda, 0x58, 0x8c, 0xbc, 0xd2, 0xd2, 0x33,
0xd2, 0x52, 0xd7, 0x52, 0x96, 0xf6, 0x37, 0x53, 0xd7, 0x33, 0x87, 0xe2, 0xf8, 0xea, 0xcb, 0x28,
0x76, 0x0c, 0x0e, 0xc3, 0x67, 0xf5, 0x93, 0x78, 0x3c, 0xc7, 0xd1, 0x79, 0xa7, 0x63, 0xf7, 0x6b,
0x1d, 0x69, 0x9f, 0x76, 0x27, 0xef, 0x90, 0xb6, 0x7b, 0xa1, 0xc8, 0xf3, 0x48, 0xdf, 0x81, 0x78,
0x54, 0x09, 0xd7, 0x32, 0x97, 0x08, 0x78, 0x21, 0x8f, 0xa4, 0x1f, 0xc9, 0x75, 0xf5, 0x2d, 0x6c,
0xe7, 0xf9, 0x0a, 0xfb, 0x2e, 0x2c, 0x0e, 0x0f, 0x8b, 0xb0, 0xbe, 0x39, 0x4f, 0x0c, 0xe4, 0x60,
0x40, 0x71, 0xb0, 0x9d, 0x7f, 0x8b, 0xf9, 0x3f, 0x61, 0x8f, 0x0e, 0x10, 0xb9, 0x33, 0x3a, 0x20,
0xfb, 0x8f, 0x27, 0xd7, 0x3d, 0x74, 0x2a, 0x64, 0xd3, 0xd2, 0xf8, 0xa8, 0x57, 0x27, 0xdb, 0x79,
0x17, 0xc7, 0x71, 0xda, 0xc7, 0xf3, 0xc9, 0x8f, 0xe4, 0x56, 0x7b, 0xc2, 0xce, 0xb1, 0xf6, 0xc8,
0xd4, 0x6b, 0x9d, 0x33, 0x0e, 0x0f, 0x79, 0x75, 0xee, 0x90, 0x7d, 0x04, 0xa2, 0xbc, 0x99, 0x3b,
0x45, 0x49, 0x5b, 0x0a, 0xb8, 0xdc, 0x16, 0xaa, 0xd2, 0x0a, 0xe8, 0xff, 0x52, 0x0b, 0x01, 0xd1,
0xf7, 0xc1, 0xec, 0x4f, 0xf2, 0xb1, 0x76, 0x55, 0xed, 0x5e, 0x46, 0xac, 0xf6, 0x05, 0xd5, 0x9d,
0x9c, 0xe2, 0xe3, 0x21, 0xa5, 0x17, 0x12, 0xcb, 0xc9, 0x12, 0xbc, 0x5c, 0x67, 0xf8, 0x24, 0xaf,
0xc9, 0x8c, 0x71, 0xa3, 0xed, 0xcb, 0x94, 0x6e, 0x5d, 0x6e, 0x75, 0xc0, 0xd1, 0x65, 0x5f, 0x88,
0x09, 0x68, 0x89, 0x00, 0xec, 0x66, 0xe9, 0x56, 0x18, 0xef, 0x79, 0x85, 0x2f, 0xbc, 0xc7, 0x5c,
0xe0, 0x0f, 0xec, 0x64, 0xdf, 0xd6, 0xfe, 0x2f, 0xd6, 0x3f, 0x2e, 0x21, 0x4f, 0x91, 0x72, 0x09,
0x00, 0x00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xad, 0x56, 0xef, 0x6f, 0xdb, 0x36,
0x10, 0xfd, 0xee, 0xbf, 0x82, 0x61, 0xb7, 0x44, 0x42, 0x65, 0xd9, 0x49, 0x87, 0x61, 0x93, 0x2d,
0x17, 0x6d, 0x92, 0xae, 0x19, 0x12, 0x24, 0x40, 0x92, 0x76, 0xc3, 0x36, 0xa0, 0xb4, 0x78, 0xb2,
0xd9, 0x48, 0xa4, 0x40, 0x9e, 0x9c, 0x78, 0xae, 0xff, 0xf7, 0x1d, 0x69, 0x27, 0x71, 0xda, 0xa0,
0x2b, 0xb6, 0x7c, 0x89, 0xc2, 0x5f, 0x8f, 0x77, 0xef, 0xbd, 0x3b, 0x7a, 0xb8, 0x75, 0x70, 0xba,
0x7f, 0xf1, 0xfb, 0xd9, 0x21, 0x9b, 0x62, 0x5d, 0x8d, 0x86, 0xfe, 0x2f, 0xab, 0x84, 0x9e, 0xe4,
0x1c, 0x34, 0xa7, 0x31, 0x08, 0x39, 0x1a, 0xd6, 0x80, 0x82, 0x15, 0x53, 0x61, 0x1d, 0x60, 0xce,
0x2f, 0x2f, 0xde, 0x74, 0x7f, 0xe2, 0xeb, 0xd9, 0x4e, 0x61, 0x34, 0x82, 0xa6, 0xe9, 0x6b, 0x25,
0x71, 0x9a, 0x4b, 0x98, 0xa9, 0x02, 0xba, 0x61, 0x90, 0x28, 0xad, 0x50, 0x89, 0xaa, 0xeb, 0x0a,
0x51, 0x41, 0xbe, 0x9b, 0xd4, 0xe2, 0x46, 0xd5, 0x6d, 0x7d, 0x37, 0x6e, 0x1d, 0xd8, 0x30, 0x10,
0x63, 0x1a, 0x6b, 0xc3, 0x59, 0x47, 0x8b, 0x1a, 0x72, 0x3e, 0x53, 0x70, 0xdd, 0x18, 0x8b, 0x74,
0x0b, 0x2a, 0xac, 0x60, 0xf4, 0xfe, 0xf8, 0xf0, 0x80, 0x9d, 0x03, 0xa2, 0xd2, 0x13, 0x37, 0xec,
0xad, 0x26, 0x87, 0xae, 0xb0, 0xaa, 0xc1, 0x51, 0x67, 0x26, 0x2c, 0xab, 0x4c, 0xa1, 0x9a, 0x44,
0xe6, 0xd2, 0x14, 0x6d, 0x4d, 0x01, 0x25, 0x34, 0x91, 0x6f, 0xed, 0x0e, 0xca, 0x56, 0x17, 0xa8,
0x8c, 0x66, 0x93, 0x23, 0x19, 0x61, 0xbc, 0xb0, 0x80, 0xad, 0xd5, 0x4c, 0xa6, 0x13, 0xc0, 0xc3,
0x0a, 0xfc, 0xd6, 0xd7, 0xf3, 0xb0, 0xb4, 0xbc, 0xdb, 0x5a, 0x19, 0x21, 0x7f, 0x3d, 0x8f, 0x30,
0x81, 0x7c, 0xab, 0x1f, 0x2f, 0x2a, 0x40, 0x66, 0x72, 0x99, 0x16, 0x16, 0x04, 0xc2, 0xfa, 0x50,
0xc4, 0x57, 0xb7, 0xf3, 0x78, 0x60, 0x52, 0xe2, 0xe5, 0x15, 0xa2, 0x55, 0xe3, 0x16, 0x81, 0x16,
0x6c, 0xc1, 0x13, 0x8c, 0x93, 0xcf, 0xe7, 0x71, 0xde, 0x00, 0x4f, 0x38, 0xc2, 0x0d, 0xf6, 0x3e,
0x8a, 0x99, 0xb8, 0x05, 0xf8, 0x62, 0xa3, 0x70, 0x73, 0x4d, 0x10, 0x10, 0x27, 0x32, 0x1d, 0x1b,
0x39, 0x4f, 0x45, 0xd3, 0x80, 0x96, 0xfb, 0x53, 0x55, 0xc9, 0xc8, 0xf8, 0xfd, 0x42, 0xca, 0xc3,
0x19, 0x45, 0x71, 0xac, 0x1c, 0xb1, 0x0f, 0x36, 0xe2, 0x3e, 0x66, 0x9e, 0x44, 0x71, 0x3e, 0x5a,
0xfc, 0x02, 0xf8, 0x2e, 0x8a, 0x97, 0x8f, 0xef, 0x03, 0x6b, 0x8d, 0xa5, 0xf0, 0x68, 0x1f, 0x49,
0xe7, 0x4c, 0x05, 0x69, 0x65, 0x26, 0x11, 0x3f, 0xf4, 0xf3, 0x6c, 0x9d, 0x3c, 0xb1, 0xcc, 0x4a,
0x55, 0x41, 0x48, 0x83, 0xb4, 0xb2, 0x94, 0xee, 0xf1, 0x7a, 0xde, 0x94, 0x8c, 0x0e, 0x96, 0x6a,
0xd2, 0x5a, 0x11, 0xd8, 0x5a, 0xa5, 0xc1, 0x4a, 0x41, 0x07, 0x64, 0xfa, 0xa7, 0x3e, 0xd2, 0x85,
0xa9, 0x1b, 0x22, 0x0d, 0x58, 0x23, 0x26, 0xc0, 0xa4, 0x40, 0xb1, 0xc5, 0x29, 0x9e, 0x7b, 0x82,
0x95, 0x3b, 0xdd, 0xd0, 0x02, 0xb7, 0xb7, 0xb9, 0x19, 0x7f, 0x84, 0x02, 0x79, 0x9e, 0x7b, 0x92,
0xe8, 0x0a, 0x9a, 0xdb, 0x7a, 0x65, 0xad, 0x98, 0xa7, 0xca, 0x85, 0xef, 0x43, 0x81, 0xe4, 0x79,
0x14, 0x2f, 0x4a, 0xc0, 0x62, 0x1a, 0x45, 0x24, 0xf4, 0x4b, 0x3e, 0x45, 0x6c, 0xb2, 0x5e, 0x8f,
0x3f, 0x0f, 0x3e, 0xc8, 0x38, 0x8f, 0x9f, 0xf3, 0x5e, 0x51, 0x4e, 0xd2, 0x8f, 0xce, 0x68, 0x9e,
0x2c, 0xc8, 0xac, 0x53, 0x23, 0x33, 0x4e, 0xaa, 0xf3, 0x65, 0x9c, 0xe2, 0x14, 0x74, 0x44, 0x1c,
0x44, 0x98, 0x9a, 0xab, 0x4f, 0x9f, 0x22, 0x6f, 0x0e, 0x5e, 0x91, 0x1d, 0x2d, 0x8f, 0x53, 0x87,
0x73, 0x62, 0x45, 0x2a, 0xd7, 0x54, 0x62, 0x9e, 0x73, 0xa5, 0x2b, 0xa5, 0x81, 0x64, 0xc2, 0x00,
0x16, 0xc5, 0xf1, 0xfd, 0xf9, 0x85, 0x2a, 0xa3, 0xb6, 0xde, 0x2f, 0x27, 0x39, 0xa6, 0x6d, 0x9d,
0xb4, 0xd6, 0x5c, 0xbb, 0x9c, 0xf3, 0xc4, 0x27, 0x18, 0xe6, 0xe3, 0xb8, 0x34, 0x36, 0xf2, 0x4c,
0xe3, 0x1f, 0xe4, 0xa7, 0xbf, 0x28, 0xb5, 0xd3, 0x90, 0x6a, 0x4a, 0xaa, 0x58, 0x05, 0xee, 0x76,
0x5b, 0x38, 0xfa, 0x3c, 0xff, 0x30, 0x24, 0x0b, 0x20, 0xa5, 0xe8, 0x79, 0xc8, 0xb9, 0x6b, 0xc7,
0xb5, 0x42, 0x4e, 0xba, 0x14, 0x95, 0x2a, 0xae, 0x7c, 0x95, 0x69, 0x69, 0xae, 0x49, 0xb2, 0x22,
0x90, 0x9f, 0xef, 0xa4, 0x3d, 0xb7, 0x2e, 0x8b, 0x5e, 0x5b, 0xbf, 0x6c, 0xeb, 0xfc, 0xbb, 0x05,
0x2e, 0x77, 0xf8, 0xc8, 0x7f, 0x58, 0x74, 0x79, 0x12, 0x0f, 0x7b, 0x2b, 0xc4, 0xd1, 0x87, 0x41,
0xc8, 0x72, 0x25, 0xde, 0x09, 0xe8, 0x96, 0x52, 0x55, 0x9a, 0x4c, 0xf1, 0xf6, 0xe2, 0xe4, 0x38,
0x0f, 0xf7, 0x27, 0x6b, 0xe7, 0x7f, 0x85, 0xd3, 0xbb, 0xdb, 0x1c, 0xb1, 0xf1, 0xb2, 0xc9, 0xfb,
0x3c, 0xd9, 0xda, 0x25, 0x71, 0x53, 0x0a, 0x88, 0xd4, 0xf0, 0x9c, 0x7c, 0x03, 0x99, 0xc9, 0xa6,
0xf7, 0xf0, 0x81, 0x37, 0xbc, 0xb2, 0xdc, 0x9b, 0x2f, 0x23, 0x37, 0x7c, 0x96, 0x6e, 0xda, 0x58,
0x83, 0xa6, 0x30, 0xd5, 0xf6, 0x76, 0x14, 0xea, 0xbb, 0x9f, 0x44, 0x21, 0xb8, 0xdc, 0xef, 0xa8,
0xce, 0xd1, 0x58, 0x72, 0x9c, 0x2f, 0xed, 0x23, 0x84, 0xda, 0x17, 0x45, 0x71, 0xd4, 0xf0, 0x38,
0x26, 0x85, 0x57, 0xdb, 0xe8, 0x7c, 0xdd, 0x90, 0x99, 0xdf, 0x10, 0x3e, 0x3b, 0x31, 0x12, 0x52,
0x76, 0x56, 0x81, 0x70, 0xc0, 0x48, 0x0e, 0xb0, 0x2c, 0xf4, 0x99, 0xa3, 0x33, 0xb2, 0x6b, 0xf2,
0x00, 0xd1, 0x3d, 0x44, 0x4c, 0x02, 0x1a, 0x19, 0x21, 0x09, 0x4e, 0x5c, 0x76, 0x86, 0xbd, 0x75,
0x2f, 0x1a, 0x86, 0x7c, 0x47, 0x1d, 0x5f, 0xb6, 0x0b, 0x5f, 0xe9, 0x5d, 0x51, 0xa9, 0x89, 0xce,
0x8a, 0x80, 0x3f, 0x18, 0x8b, 0xe2, 0x6a, 0x62, 0x4d, 0xab, 0x65, 0xf6, 0x6c, 0x6f, 0x6f, 0x6f,
0x30, 0x05, 0x35, 0x99, 0x62, 0xb6, 0xdb, 0xef, 0x37, 0x37, 0x83, 0x5a, 0xd8, 0x89, 0xd2, 0x59,
0x7f, 0xe9, 0xbb, 0xf0, 0xa2, 0xdb, 0x9d, 0x66, 0x3f, 0xcf, 0xa6, 0xcb, 0x95, 0x7a, 0x8b, 0xcd,
0x93, 0x2f, 0x5e, 0xbc, 0x18, 0x10, 0x09, 0xc6, 0x66, 0xcf, 0xca, 0xb2, 0x1c, 0x94, 0xd4, 0x82,
0xbb, 0xa5, 0xa8, 0x55, 0x35, 0xcf, 0xde, 0x81, 0x95, 0x42, 0x8b, 0xe4, 0x2d, 0x54, 0x33, 0x40,
0x55, 0x88, 0xc4, 0x09, 0xed, 0xba, 0x24, 0x86, 0x2a, 0x07, 0x6b, 0x15, 0xb2, 0x31, 0x85, 0x7f,
0x35, 0x18, 0x1b, 0x2b, 0xc1, 0x66, 0xbb, 0xcd, 0x0d, 0x23, 0x29, 0x94, 0x64, 0x01, 0x77, 0x35,
0xdb, 0xb5, 0x54, 0xec, 0xad, 0xcb, 0xa8, 0xb3, 0x46, 0x14, 0x48, 0xbc, 0xba, 0xc3, 0xa9, 0xbf,
0x21, 0xfb, 0x71, 0x56, 0x2b, 0x7d, 0x1b, 0xf8, 0xdd, 0x7a, 0x68, 0xf8, 0x19, 0x31, 0x56, 0x44,
0x94, 0xcc, 0xf7, 0xac, 0xcb, 0x7e, 0xa0, 0x94, 0xe2, 0xdb, 0x9c, 0xf6, 0x66, 0x53, 0x26, 0x5a,
0x34, 0xac, 0x3f, 0x28, 0x5a, 0xeb, 0x28, 0xf2, 0xc6, 0x28, 0xcf, 0x48, 0xa0, 0x2e, 0x50, 0x36,
0xec, 0xad, 0x1e, 0x1b, 0xcf, 0x1c, 0xf9, 0xdd, 0x3b, 0x31, 0xe7, 0x44, 0x2e, 0xbd, 0x01, 0x8f,
0x96, 0x84, 0xa2, 0xe5, 0x31, 0xbd, 0x18, 0xb7, 0xa5, 0xb1, 0xf3, 0x79, 0x69, 0xf0, 0x1e, 0xdf,
0x19, 0xbd, 0x26, 0xda, 0xee, 0x2a, 0x80, 0x3d, 0x8e, 0xf4, 0x15, 0x88, 0x8d, 0xea, 0xba, 0x56,
0xa5, 0x22, 0xc0, 0xf7, 0xea, 0x8d, 0xf2, 0x2f, 0x51, 0xdb, 0x7c, 0x09, 0xdb, 0x79, 0xbc, 0x68,
0xbf, 0x0a, 0x4b, 0x3d, 0xd3, 0x11, 0xac, 0xf7, 0xdd, 0x99, 0x85, 0x12, 0x2c, 0xe8, 0x02, 0x5c,
0xe7, 0xdf, 0x62, 0xfe, 0x26, 0xec, 0xbd, 0x03, 0x42, 0xee, 0xec, 0x1d, 0xb0, 0xfd, 0xcd, 0x86,
0x7d, 0x07, 0x3d, 0x94, 0x6a, 0x16, 0x68, 0xdc, 0x68, 0x09, 0xa3, 0x75, 0x9b, 0x4f, 0xd3, 0x74,
0xd8, 0xa3, 0xf5, 0xd1, 0xff, 0xc9, 0xad, 0xf5, 0x84, 0x5d, 0x92, 0xf7, 0xd8, 0x91, 0xd7, 0xba,
0x14, 0x05, 0xdc, 0xe7, 0xd5, 0xb9, 0x45, 0xf6, 0x11, 0xc8, 0xfa, 0x66, 0x8c, 0x9a, 0xb3, 0x60,
0x05, 0x1a, 0xae, 0x8d, 0xaa, 0x0d, 0xf5, 0x8a, 0xff, 0xa4, 0x16, 0x01, 0xd2, 0xdd, 0x07, 0x27,
0xbf, 0xb1, 0xd3, 0x16, 0x9b, 0x16, 0x9f, 0x46, 0xac, 0xf0, 0x2e, 0xef, 0x8c, 0xce, 0xe9, 0x73,
0x9f, 0xd2, 0x13, 0x89, 0x85, 0xaa, 0x06, 0x2f, 0xd7, 0x05, 0x7d, 0xd9, 0x36, 0x3b, 0x11, 0x85,
0x35, 0xee, 0x69, 0xac, 0xdb, 0xd6, 0x6b, 0x1d, 0x6a, 0x23, 0xdd, 0x13, 0x31, 0x01, 0x81, 0x08,
0xa0, 0x6a, 0x56, 0x38, 0xa7, 0x78, 0x2f, 0x1b, 0x7a, 0xe7, 0x37, 0xb9, 0xa0, 0x7f, 0xa8, 0x92,
0x7d, 0x59, 0xfb, 0x5f, 0x96, 0xff, 0x00, 0x35, 0x4e, 0xf4, 0x3b, 0x69, 0x0a, 0x00, 0x00
};
@@ -1590,166 +1598,173 @@ const uint8_t PAGE_settings_sec[] PROGMEM = {
// Autogenerated from wled00/data/settings_um.htm, do not edit!!
const uint16_t PAGE_settings_um_length = 2526;
const uint16_t PAGE_settings_um_length = 2635;
const uint8_t PAGE_settings_um[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xdd, 0x58, 0x5b, 0x73, 0xdb, 0x36,
0x16, 0x7e, 0xf7, 0xaf, 0xa0, 0x11, 0x8f, 0x4d, 0x8e, 0x68, 0x4a, 0x8e, 0xb7, 0xdd, 0x44, 0x12,
0xe4, 0x4d, 0x9c, 0xb4, 0xd1, 0xe6, 0x62, 0xcf, 0x28, 0x6d, 0x67, 0xc7, 0xeb, 0xa9, 0x69, 0x12,
0x92, 0x10, 0x53, 0x20, 0x17, 0x00, 0x7d, 0x59, 0x59, 0xff, 0x7d, 0xbf, 0x03, 0x92, 0xba, 0x38,
0x76, 0xb6, 0xed, 0x4e, 0x5f, 0xf6, 0x45, 0x22, 0x81, 0x73, 0x0e, 0x0e, 0xbe, 0x73, 0x67, 0x7f,
0xfb, 0xcd, 0xc9, 0xf1, 0xe7, 0x7f, 0x9c, 0xbe, 0xf5, 0xa6, 0x76, 0x96, 0x0d, 0xfa, 0xf5, 0xaf,
0x88, 0x53, 0x2f, 0x8b, 0xd5, 0x84, 0x33, 0xa1, 0xd8, 0xa0, 0x3f, 0x13, 0x36, 0xf6, 0x92, 0x69,
0xac, 0x8d, 0xb0, 0x9c, 0x95, 0x76, 0xbc, 0xff, 0xa2, 0x59, 0xdd, 0x52, 0xf1, 0x4c, 0x70, 0x76,
0x2d, 0xc5, 0x4d, 0x91, 0x6b, 0xcb, 0xbc, 0x24, 0x57, 0x56, 0x28, 0x90, 0xdd, 0xc8, 0xd4, 0x4e,
0xf9, 0x77, 0x9d, 0xce, 0x92, 0xf4, 0xc1, 0x56, 0x2a, 0xae, 0x65, 0x22, 0xf6, 0xdd, 0x4b, 0x28,
0x95, 0xb4, 0x32, 0xce, 0xf6, 0x4d, 0x12, 0x67, 0x82, 0x1f, 0x84, 0xb3, 0xf8, 0x56, 0xce, 0xca,
0xd9, 0xf2, 0xbd, 0x34, 0x42, 0xbb, 0x97, 0xf8, 0x12, 0xef, 0x2a, 0x67, 0x5f, 0x9d, 0x3c, 0xe8,
0x5b, 0x69, 0x33, 0x31, 0xf8, 0x09, 0x94, 0xb3, 0x3c, 0xf5, 0x46, 0xc2, 0x5a, 0xa9, 0x26, 0xa6,
0xdf, 0xae, 0xd6, 0xfb, 0x26, 0xd1, 0xb2, 0xb0, 0x83, 0xad, 0xeb, 0x58, 0x7b, 0xf9, 0x8d, 0x12,
0x3a, 0xcc, 0xf2, 0x44, 0x16, 0x61, 0xa9, 0xf3, 0x1b, 0x13, 0xa6, 0x3c, 0xcd, 0x93, 0x72, 0x06,
0xfd, 0xc2, 0x72, 0x76, 0x3c, 0x9e, 0xf0, 0xf9, 0x22, 0x2c, 0xa4, 0x32, 0xfc, 0xec, 0xfb, 0xf0,
0xaf, 0xe1, 0x8b, 0xf0, 0x65, 0x78, 0xd0, 0x09, 0x0f, 0x0e, 0xce, 0x69, 0xf1, 0x84, 0x9f, 0x31,
0x6d, 0xae, 0x53, 0x16, 0xfe, 0xf7, 0xbf, 0x73, 0x3a, 0x85, 0x6f, 0x1f, 0x84, 0xaa, 0x9c, 0x7d,
0xe4, 0x9d, 0xde, 0xb8, 0x54, 0x89, 0x95, 0xb9, 0xf2, 0x26, 0xc3, 0xd4, 0x17, 0xc1, 0x5c, 0x0b,
0x5b, 0x6a, 0xe5, 0xa5, 0xd1, 0x44, 0xd8, 0xb7, 0x99, 0x20, 0x05, 0x5e, 0xdf, 0xb9, 0xad, 0xc5,
0x92, 0x54, 0x9a, 0x93, 0x35, 0x52, 0xb1, 0xbb, 0xcb, 0xf2, 0xcb, 0x2f, 0x22, 0xb1, 0x8c, 0x73,
0x7b, 0x57, 0x88, 0x7c, 0x4c, 0x6b, 0xdb, 0xaf, 0xb4, 0x8e, 0xef, 0x22, 0x69, 0xdc, 0xff, 0x06,
0xff, 0x3b, 0x3f, 0x98, 0xdf, 0x48, 0x95, 0xe6, 0x37, 0x51, 0x5e, 0x08, 0xe5, 0xb3, 0xa9, 0xb5,
0x85, 0xe9, 0xb6, 0xdb, 0x13, 0x69, 0xa7, 0xe5, 0x65, 0x94, 0xe4, 0xb3, 0xf6, 0x2b, 0xa9, 0x93,
0x3c, 0xcf, 0xaf, 0xa4, 0x68, 0xff, 0xf2, 0xe1, 0xed, 0x9b, 0xf6, 0x8d, 0xbc, 0x92, 0xed, 0x06,
0xc3, 0x67, 0x65, 0x05, 0xea, 0xbe, 0xa9, 0x17, 0xd8, 0x9a, 0xf4, 0xd7, 0x0f, 0xa5, 0xb7, 0x97,
0x54, 0x21, 0xfb, 0xd5, 0x88, 0x6c, 0xbc, 0x4e, 0x9d, 0xe5, 0x71, 0xfa, 0xf7, 0x91, 0x2f, 0x42,
0xcb, 0xb7, 0x3b, 0xc1, 0x3c, 0x13, 0xd6, 0x53, 0x3c, 0x8d, 0x12, 0x2d, 0x62, 0x2b, 0x6a, 0x00,
0x7c, 0x56, 0xd9, 0x8a, 0x05, 0x3d, 0x15, 0x41, 0xd8, 0x2b, 0x6b, 0xb5, 0xbc, 0x2c, 0xad, 0xc0,
0x86, 0x4e, 0x58, 0x28, 0x82, 0xf0, 0xe1, 0x3a, 0xe1, 0x80, 0xe3, 0xac, 0xb8, 0xb5, 0xed, 0x2f,
0xf1, 0x75, 0xdc, 0x08, 0xf8, 0x8a, 0x30, 0x36, 0x77, 0x0a, 0x22, 0x6c, 0x10, 0xa6, 0xd1, 0x65,
0x9e, 0xde, 0x45, 0x71, 0x01, 0xa5, 0xd3, 0xe3, 0xa9, 0xcc, 0x52, 0x5f, 0x11, 0x7d, 0x9c, 0xa6,
0x6f, 0xaf, 0xa1, 0xc5, 0x07, 0x69, 0xe0, 0xae, 0x42, 0xfb, 0x8c, 0x74, 0x66, 0xa1, 0x1f, 0xf0,
0xc1, 0xfc, 0x47, 0x61, 0x7f, 0xf6, 0x83, 0xc5, 0xe3, 0x74, 0x42, 0xeb, 0x5c, 0x43, 0x3d, 0xd0,
0xc1, 0xd7, 0x4d, 0x9e, 0x89, 0x28, 0xcb, 0x27, 0x3e, 0x7b, 0x4b, 0xeb, 0x5e, 0x7d, 0x79, 0x00,
0xe3, 0x8d, 0x65, 0x26, 0xdc, 0x35, 0xe0, 0xdc, 0x1a, 0xd7, 0xfd, 0x50, 0xaf, 0xc3, 0x92, 0x60,
0x1c, 0xcb, 0x49, 0xa9, 0x63, 0x87, 0x56, 0x75, 0x0d, 0x6f, 0x1c, 0x83, 0x21, 0x8d, 0xfe, 0xa9,
0x86, 0x0a, 0xb6, 0x2a, 0x00, 0x9a, 0xf0, 0x8a, 0x78, 0x22, 0xbc, 0x34, 0xb6, 0xf1, 0x36, 0xe0,
0x5d, 0x03, 0x78, 0x04, 0x73, 0x30, 0x3a, 0xa0, 0x0b, 0xf7, 0xa8, 0xed, 0x02, 0x17, 0x74, 0xf2,
0xa2, 0x42, 0xe7, 0x36, 0x4f, 0xf2, 0x6c, 0x77, 0xd7, 0x77, 0x6e, 0xd9, 0x09, 0x7d, 0x17, 0x04,
0x9c, 0x28, 0xb2, 0x91, 0xcd, 0x35, 0xa4, 0x92, 0x2b, 0x0e, 0xad, 0x98, 0xd1, 0xc5, 0x93, 0x61,
0xc1, 0x82, 0xe0, 0xfe, 0xbe, 0x26, 0x03, 0xff, 0xac, 0x80, 0xc2, 0x3f, 0x40, 0xbe, 0xf7, 0x31,
0x4f, 0x45, 0xe4, 0x9d, 0x66, 0x22, 0x36, 0xc2, 0x03, 0x10, 0x42, 0x7b, 0xe4, 0x3a, 0xde, 0xf0,
0x14, 0x2a, 0x85, 0x1b, 0x12, 0xcd, 0xa6, 0xc4, 0x2a, 0xf2, 0x82, 0x00, 0x54, 0x29, 0xf4, 0x75,
0xb1, 0x81, 0x33, 0x28, 0x24, 0x58, 0x39, 0x63, 0x41, 0x24, 0x15, 0x00, 0x7d, 0xf7, 0xf9, 0xe3,
0x07, 0xce, 0x3e, 0xe5, 0x5e, 0x1d, 0xd2, 0xc6, 0x43, 0x3c, 0xda, 0x38, 0x23, 0x28, 0xd8, 0x46,
0x78, 0xfc, 0xb0, 0x1e, 0x1e, 0x9c, 0xf3, 0x16, 0xe2, 0x41, 0x6c, 0x73, 0xee, 0x77, 0xee, 0x37,
0xe3, 0x68, 0xf8, 0x18, 0x21, 0xff, 0x8a, 0x30, 0x99, 0x8a, 0xe4, 0x8a, 0x7c, 0x34, 0x98, 0x53,
0xb6, 0x50, 0x5c, 0x44, 0x94, 0x6d, 0x22, 0x2d, 0x8a, 0x2c, 0x4e, 0xe0, 0x45, 0x67, 0xe7, 0x70,
0x36, 0xe8, 0x69, 0xca, 0x4b, 0x63, 0xb5, 0xbf, 0x7f, 0x18, 0xf4, 0xe4, 0xd8, 0x67, 0xb8, 0xc7,
0xa5, 0xd0, 0xc0, 0x5d, 0x44, 0xe4, 0x90, 0x08, 0x54, 0x64, 0x0b, 0xbc, 0xaa, 0x86, 0xb0, 0x13,
0x1e, 0x06, 0xc1, 0x7c, 0x9c, 0x6b, 0x9f, 0xe4, 0x4a, 0xe4, 0x03, 0xd9, 0xa7, 0x2c, 0x13, 0x65,
0x42, 0x4d, 0xec, 0xb4, 0x27, 0x5b, 0xad, 0x00, 0x82, 0xec, 0x36, 0xa7, 0x34, 0x73, 0x26, 0xcf,
0x83, 0x39, 0x5e, 0x45, 0x74, 0x1d, 0x67, 0x25, 0xf4, 0x24, 0x52, 0x2c, 0x42, 0xae, 0x1c, 0x43,
0xec, 0x8a, 0x08, 0x08, 0xdb, 0x3b, 0xb8, 0x1b, 0x4c, 0x9b, 0x6b, 0xce, 0x32, 0x39, 0x13, 0xac,
0x77, 0x89, 0x98, 0xba, 0x5a, 0x3c, 0xc2, 0x7f, 0x7f, 0x5f, 0xaf, 0xf4, 0xf7, 0x0f, 0x96, 0xcf,
0x83, 0xc3, 0x97, 0x5f, 0xc9, 0xd1, 0x22, 0x6d, 0xc4, 0x6c, 0xee, 0x2c, 0x79, 0x0e, 0x8f, 0x18,
0x2c, 0xac, 0x26, 0x82, 0x75, 0xd9, 0xb3, 0xf1, 0x78, 0xcc, 0x16, 0x0b, 0x91, 0x19, 0x31, 0x37,
0x37, 0xd2, 0x26, 0x53, 0xbf, 0xc2, 0x2d, 0x98, 0x27, 0x70, 0x11, 0x36, 0x7a, 0xf3, 0x8a, 0x75,
0xab, 0xa7, 0xe3, 0x0f, 0xf5, 0xd3, 0xc7, 0x93, 0xd1, 0x70, 0xb5, 0xf8, 0xbe, 0x7e, 0x3c, 0x1e,
0xb1, 0xae, 0x3b, 0xb6, 0x97, 0x8a, 0x71, 0x5c, 0x66, 0xb6, 0x5b, 0xd9, 0x6c, 0x41, 0xc8, 0xfd,
0x7f, 0xa2, 0xb6, 0x72, 0x3e, 0x44, 0xdf, 0x29, 0x4e, 0x24, 0x4f, 0x85, 0x16, 0x55, 0xee, 0x0f,
0xe8, 0xe2, 0x94, 0x53, 0xec, 0x99, 0x0a, 0xe5, 0x39, 0xf2, 0xc4, 0x89, 0xab, 0x00, 0x11, 0xc2,
0x4e, 0x4b, 0x41, 0xc4, 0x41, 0x4d, 0x2c, 0x83, 0xc0, 0x55, 0x37, 0xae, 0xc2, 0x46, 0x92, 0x0c,
0x7a, 0x64, 0x14, 0x8f, 0x5c, 0xb4, 0x71, 0xc8, 0x6f, 0xb8, 0x32, 0x49, 0xda, 0x2c, 0x26, 0xb2,
0x52, 0x80, 0x7c, 0xd6, 0x02, 0x7d, 0xdb, 0x97, 0x0d, 0xf4, 0x96, 0xa0, 0x3f, 0xb3, 0xe7, 0x03,
0xde, 0x41, 0x4e, 0x71, 0x46, 0x29, 0x4a, 0x33, 0xf5, 0x69, 0x2d, 0x70, 0xb5, 0xb2, 0x7a, 0x77,
0x2a, 0x05, 0x8d, 0x1e, 0x5f, 0x51, 0x3f, 0x4d, 0xfa, 0x84, 0x2a, 0x8f, 0xa8, 0xb1, 0xbc, 0x2d,
0x1d, 0xbd, 0x82, 0x13, 0x69, 0xfa, 0x07, 0x29, 0x90, 0xdc, 0x11, 0xce, 0x21, 0xc0, 0x43, 0x2d,
0x5e, 0x02, 0xab, 0x10, 0x8c, 0xae, 0xfc, 0xb7, 0xf8, 0x5e, 0x7f, 0xaa, 0x3d, 0x67, 0xac, 0xba,
0x3f, 0xe9, 0x3e, 0xff, 0xbe, 0x53, 0xdc, 0xb2, 0xc1, 0x5e, 0x6f, 0x85, 0xbd, 0x0c, 0xf5, 0x23,
0xd8, 0x43, 0x0a, 0x2b, 0xd5, 0x95, 0x82, 0xe2, 0xe4, 0x5e, 0x96, 0x9c, 0x43, 0xaa, 0x24, 0x2b,
0x53, 0x6c, 0xc2, 0xc2, 0xc1, 0xd1, 0x9a, 0x0e, 0x10, 0x11, 0x74, 0x57, 0xef, 0x2d, 0xec, 0xb7,
0xac, 0x5b, 0x5d, 0x3c, 0x7e, 0x61, 0xb5, 0xc2, 0x5e, 0xe3, 0xd2, 0xba, 0xaf, 0x9a, 0x4b, 0x6b,
0x5c, 0x7a, 0xf3, 0x76, 0x67, 0xfa, 0x3c, 0x44, 0x55, 0x75, 0xd0, 0xb9, 0xcc, 0x65, 0xc2, 0xac,
0x69, 0x11, 0x54, 0xaf, 0x8e, 0xc9, 0xac, 0x0e, 0xc7, 0xcb, 0x1c, 0x05, 0x2a, 0x56, 0xac, 0x9b,
0x71, 0xe6, 0x12, 0xde, 0x65, 0x7e, 0xcb, 0x42, 0xc3, 0xf7, 0x2a, 0xb7, 0x67, 0x56, 0x97, 0x82,
0xed, 0xb5, 0x7c, 0x75, 0xc4, 0xaa, 0x84, 0x08, 0xb7, 0xee, 0xc2, 0x53, 0x2a, 0xd7, 0xee, 0x39,
0x19, 0x75, 0xc2, 0xeb, 0x1a, 0x7e, 0x51, 0x73, 0xed, 0xcc, 0xd5, 0x82, 0x5d, 0x84, 0xb5, 0x9f,
0x71, 0xbb, 0xe6, 0x57, 0x47, 0x3e, 0xe1, 0xec, 0xa1, 0xb5, 0xe3, 0xec, 0xf0, 0x25, 0xf3, 0x66,
0x52, 0x71, 0xb6, 0x7f, 0x00, 0xe9, 0x59, 0x6c, 0x0c, 0x67, 0x86, 0xed, 0x41, 0x5d, 0x26, 0x15,
0xea, 0x76, 0xd7, 0x91, 0xa2, 0xb0, 0x16, 0x9c, 0xc5, 0xea, 0x6e, 0x49, 0x73, 0x7b, 0x9b, 0xb1,
0xbd, 0xde, 0x66, 0x6e, 0x00, 0x0f, 0xd5, 0x7d, 0xd2, 0x7d, 0x43, 0x8b, 0x07, 0xe6, 0xfc, 0x0e,
0xe6, 0xec, 0xb1, 0x8b, 0xc5, 0x03, 0xe3, 0xc0, 0x11, 0x6b, 0x17, 0x10, 0x8d, 0xae, 0x44, 0x91,
0x8a, 0xdb, 0x93, 0xb1, 0x23, 0x68, 0x1d, 0xa0, 0x4e, 0xd5, 0x24, 0x17, 0xde, 0xce, 0xdc, 0x2e,
0xba, 0x1e, 0x2e, 0xb8, 0x84, 0x8c, 0xf3, 0xec, 0xa8, 0xd9, 0xee, 0x4b, 0x55, 0x94, 0xd6, 0x23,
0xc8, 0x39, 0x9b, 0xca, 0x34, 0x45, 0xff, 0xec, 0x55, 0x8d, 0xea, 0xce, 0x5c, 0x2c, 0xba, 0xc4,
0xbd, 0x33, 0x97, 0x47, 0x14, 0x75, 0xc0, 0x12, 0x3a, 0xd6, 0x0a, 0x8f, 0x63, 0x98, 0x8c, 0x0d,
0x2e, 0xba, 0x12, 0x75, 0xf0, 0x7f, 0x96, 0xb6, 0x33, 0xcf, 0x16, 0x10, 0xb6, 0x52, 0x7b, 0x43,
0xd2, 0xce, 0xdc, 0x61, 0xcc, 0x49, 0xf1, 0xa5, 0x05, 0xc1, 0xf0, 0x6d, 0xd1, 0x3b, 0x73, 0xb3,
0x40, 0x0f, 0xe3, 0x04, 0xd5, 0x0e, 0xe3, 0xdb, 0xa9, 0x34, 0xe1, 0xde, 0xce, 0xfc, 0x69, 0xe4,
0x16, 0x7b, 0x01, 0x3a, 0xf3, 0x4b, 0x3d, 0xb8, 0x58, 0x6c, 0x84, 0xe4, 0x1b, 0x9d, 0x17, 0xe8,
0x4c, 0x54, 0x55, 0x64, 0x9f, 0xea, 0x02, 0x45, 0x46, 0x5d, 0x6e, 0x80, 0xa0, 0x5d, 0xef, 0x8f,
0xcd, 0xeb, 0xbb, 0x4f, 0xd0, 0xb4, 0x09, 0x9e, 0xe0, 0xec, 0xe0, 0x9c, 0xaa, 0xaf, 0x44, 0x82,
0x1f, 0x7e, 0x3a, 0xfd, 0xe9, 0x33, 0xdd, 0x4c, 0x46, 0x36, 0x9e, 0x10, 0x15, 0xcc, 0x5b, 0x79,
0x47, 0xb5, 0x08, 0x00, 0xee, 0xef, 0x57, 0x75, 0xba, 0x5e, 0x0a, 0x2a, 0x15, 0x04, 0x5e, 0x1d,
0x82, 0x3d, 0xe9, 0xea, 0x56, 0x6f, 0x33, 0xf0, 0x64, 0x14, 0x37, 0x7d, 0xe4, 0xb2, 0xf4, 0xb4,
0x5a, 0xba, 0xea, 0x11, 0x0c, 0x5f, 0xdf, 0x46, 0x20, 0xf6, 0xaa, 0x9e, 0x74, 0x9b, 0x1b, 0x27,
0x0b, 0xca, 0x39, 0xd1, 0xeb, 0x0b, 0xce, 0xa7, 0xd7, 0x17, 0x9c, 0xc3, 0xae, 0x2d, 0x3c, 0x68,
0x5e, 0xab, 0xe5, 0xd0, 0x54, 0x4a, 0x06, 0x8b, 0xba, 0x91, 0x79, 0xd8, 0xe2, 0x52, 0x53, 0xb8,
0x0f, 0x12, 0xd7, 0x61, 0xca, 0xa8, 0x88, 0x35, 0x40, 0xab, 0xb1, 0x6b, 0xf2, 0x7e, 0xdd, 0xef,
0x86, 0xc8, 0xbc, 0x6a, 0x29, 0xa7, 0xcc, 0xb2, 0x0d, 0x23, 0x9d, 0x14, 0xf4, 0x54, 0xa5, 0x16,
0x97, 0x33, 0x89, 0x02, 0xa0, 0x89, 0xa0, 0xe2, 0xe8, 0x11, 0x68, 0xf2, 0x6b, 0xbb, 0xe5, 0x8e,
0x0f, 0x99, 0xa2, 0x86, 0x13, 0xa5, 0x08, 0x38, 0xc3, 0x08, 0xdc, 0x86, 0x62, 0xa3, 0xe1, 0x46,
0x65, 0x22, 0x8c, 0x49, 0x4e, 0x95, 0xd1, 0x51, 0x2a, 0x69, 0xe3, 0x13, 0x5a, 0x4b, 0xb3, 0x9e,
0xdc, 0xe7, 0xeb, 0x1b, 0x48, 0xf0, 0x4d, 0x6d, 0x16, 0x11, 0xdd, 0x16, 0xf7, 0xa7, 0x05, 0xd8,
0x9a, 0x5a, 0x4d, 0x72, 0x1a, 0x91, 0x0e, 0xc9, 0x11, 0xb9, 0x0d, 0x36, 0xfd, 0x6e, 0xa8, 0xc6,
0x79, 0x73, 0xa1, 0x46, 0xfb, 0x47, 0x3c, 0x8b, 0x54, 0xaf, 0x4e, 0x27, 0xff, 0x81, 0x67, 0xa3,
0x3b, 0x5f, 0x4d, 0x5b, 0x76, 0x77, 0x57, 0x9e, 0x75, 0xce, 0x8f, 0xe8, 0x27, 0x72, 0x70, 0x4e,
0xf3, 0x2c, 0x45, 0xc9, 0xb5, 0x5d, 0x2a, 0x3e, 0xb4, 0x0b, 0x0d, 0x51, 0x8b, 0xd0, 0xdc, 0xbf,
0x4a, 0xbf, 0x60, 0x5f, 0x59, 0x6a, 0x66, 0x31, 0x7d, 0x8c, 0xd1, 0x25, 0xe3, 0xf6, 0x28, 0xb9,
0xbb, 0xea, 0xd2, 0x14, 0x3d, 0xd6, 0x42, 0x7e, 0x5f, 0x9b, 0x8e, 0xa8, 0x1d, 0x9e, 0x8f, 0x05,
0xe5, 0x69, 0x6a, 0xb9, 0x8f, 0xdc, 0xa8, 0x86, 0x49, 0x8d, 0xb5, 0x5c, 0xcb, 0x4c, 0xf9, 0xb7,
0xc5, 0xda, 0xc9, 0x78, 0x12, 0x7d, 0x31, 0x80, 0x38, 0x9c, 0x63, 0xb4, 0x9e, 0xe6, 0x69, 0x97,
0xe1, 0x12, 0x6c, 0x11, 0x44, 0x76, 0x8a, 0x09, 0x0c, 0x03, 0x08, 0x80, 0xc8, 0xaf, 0x9a, 0x96,
0x1a, 0xa9, 0x45, 0x6b, 0x2a, 0xf1, 0xae, 0x17, 0x49, 0xa5, 0x81, 0xce, 0x77, 0x94, 0x68, 0x33,
0xa9, 0x04, 0xc2, 0x4b, 0x38, 0x61, 0x3e, 0xfa, 0xf1, 0x25, 0x3f, 0x59, 0xbb, 0x9a, 0x83, 0x45,
0x54, 0xce, 0xc2, 0x55, 0x4f, 0x52, 0xa5, 0x14, 0xce, 0x58, 0x48, 0x05, 0xd4, 0x91, 0xac, 0x77,
0x27, 0x80, 0xf6, 0x91, 0x0a, 0x59, 0x93, 0x2d, 0xb3, 0xd1, 0x54, 0x0f, 0xfa, 0xd3, 0xc3, 0x01,
0x65, 0x9a, 0x7e, 0x1b, 0x0f, 0x17, 0xe1, 0x5a, 0x1d, 0x5b, 0xd6, 0x52, 0x64, 0x86, 0x1e, 0xa3,
0x20, 0x75, 0x7c, 0x4d, 0x9e, 0xe6, 0x6c, 0x39, 0x0e, 0x6c, 0xce, 0x4a, 0x2a, 0xc7, 0xa0, 0x94,
0x97, 0x2a, 0x8d, 0x28, 0xdf, 0x9c, 0x6a, 0x61, 0x8c, 0xd7, 0x97, 0x83, 0x51, 0x7c, 0x2d, 0xfa,
0x6d, 0x39, 0xf0, 0x6c, 0xee, 0xd5, 0x5f, 0x19, 0xe4, 0xbf, 0x31, 0x39, 0x55, 0xc5, 0xc3, 0x60,
0x92, 0x08, 0x1f, 0x9b, 0x3b, 0xaa, 0xaf, 0x02, 0xf5, 0xb4, 0xfa, 0x0d, 0x53, 0x34, 0xb3, 0x6e,
0xdb, 0x00, 0xc4, 0xa3, 0x82, 0xbf, 0x60, 0x21, 0x1a, 0x0c, 0x58, 0x02, 0x13, 0x17, 0x35, 0xc0,
0x80, 0xf2, 0x37, 0xd8, 0x20, 0x5c, 0x9f, 0x17, 0xc5, 0xc6, 0x3c, 0x67, 0xae, 0x47, 0xd4, 0x0a,
0x0a, 0xcc, 0x6e, 0x82, 0xc6, 0xcd, 0x37, 0x95, 0xe2, 0x3e, 0x0d, 0xb0, 0xa3, 0x71, 0xe4, 0x12,
0xf1, 0xcf, 0xb8, 0x53, 0x2a, 0xed, 0x9d, 0x8f, 0x6a, 0xe6, 0x56, 0x91, 0x8e, 0x67, 0x12, 0x34,
0x8b, 0xad, 0x7e, 0xbb, 0xfe, 0xee, 0xd1, 0x77, 0x27, 0x0f, 0xfe, 0x26, 0x67, 0xf4, 0xb9, 0xc4,
0x2b, 0x75, 0xe6, 0xb3, 0xba, 0x39, 0x45, 0x12, 0x0a, 0x7a, 0x20, 0x74, 0x04, 0x30, 0x88, 0x88,
0x53, 0xe4, 0x6c, 0x0c, 0xc7, 0xc8, 0xf7, 0x84, 0x00, 0x67, 0xf0, 0x4a, 0xa4, 0x71, 0x98, 0x79,
0xb6, 0xe5, 0x49, 0xbc, 0xd3, 0xd3, 0xaf, 0xa6, 0xa9, 0x18, 0xa3, 0x31, 0x8a, 0xb9, 0xf3, 0x43,
0xce, 0x8a, 0xdc, 0x58, 0x06, 0xbe, 0x4a, 0x03, 0x14, 0x75, 0x52, 0x9f, 0xf4, 0x26, 0x01, 0xa9,
0xbc, 0x6e, 0x0a, 0xb9, 0xcd, 0x31, 0x4b, 0xde, 0xb0, 0xc1, 0xd6, 0xfa, 0xe2, 0x54, 0x64, 0xc5,
0x6b, 0xaa, 0x17, 0xa5, 0xb5, 0xb8, 0x7a, 0x55, 0xae, 0xaa, 0x17, 0x92, 0x99, 0x64, 0x32, 0xb9,
0xe2, 0xec, 0x1d, 0x29, 0x73, 0xd4, 0x6f, 0x57, 0x1b, 0x50, 0x18, 0x12, 0x96, 0x3c, 0x5b, 0x4f,
0x30, 0xbd, 0x26, 0xa6, 0xd7, 0x71, 0x72, 0xb5, 0xe2, 0xdb, 0x38, 0xa5, 0xd2, 0x97, 0xd5, 0xee,
0xb2, 0x24, 0xd1, 0x50, 0xd0, 0x14, 0xb1, 0x72, 0xb7, 0xce, 0x8c, 0x29, 0x93, 0x65, 0x5b, 0xe1,
0x7a, 0xfa, 0xee, 0x44, 0x0b, 0xa1, 0x7a, 0xb5, 0x3d, 0xbb, 0x2a, 0x87, 0x31, 0x07, 0xbb, 0xcf,
0x0e, 0x3a, 0x9d, 0xce, 0x5f, 0x7a, 0xde, 0xf1, 0xe6, 0x30, 0x0f, 0xd1, 0xe9, 0x36, 0x59, 0x04,
0x02, 0x07, 0xde, 0xba, 0x5c, 0xf2, 0x8d, 0x4d, 0xb9, 0x18, 0x22, 0x1e, 0x48, 0xdd, 0xda, 0x7d,
0xf6, 0xf2, 0xc5, 0x8b, 0x17, 0x24, 0xb5, 0xcc, 0x52, 0xe7, 0xee, 0x64, 0x9c, 0xcd, 0x28, 0x88,
0x6a, 0xe9, 0x2e, 0xc4, 0x2a, 0x60, 0xa6, 0xcf, 0xd7, 0xbf, 0x89, 0x95, 0x05, 0x0c, 0xfc, 0x7c,
0xb0, 0xf5, 0x63, 0x96, 0x5f, 0xc6, 0x99, 0x37, 0xec, 0x9b, 0xb2, 0x18, 0x3c, 0x07, 0x17, 0xfe,
0x8e, 0xbd, 0x1f, 0x4f, 0x87, 0x27, 0xc6, 0xf3, 0xdf, 0xfd, 0x12, 0xd0, 0xd5, 0xfb, 0x72, 0x53,
0xa7, 0x7a, 0x66, 0x19, 0x6c, 0xf9, 0xf0, 0x8b, 0x3b, 0xfa, 0x22, 0xa8, 0x26, 0xf4, 0x3d, 0x8e,
0x3e, 0x6d, 0xbc, 0x1d, 0x9d, 0x1e, 0x3e, 0x0f, 0xab, 0x35, 0xe1, 0x69, 0xf1, 0xaf, 0x52, 0x22,
0x02, 0xf1, 0x80, 0x36, 0xd3, 0x6e, 0x07, 0x14, 0x81, 0x24, 0x12, 0x33, 0x60, 0xb7, 0x6e, 0x46,
0x6a, 0x4b, 0xd5, 0xb5, 0x78, 0xd5, 0x0d, 0x56, 0xfd, 0xe1, 0xe1, 0xd2, 0xb9, 0x30, 0x35, 0x92,
0x19, 0x9d, 0x60, 0xbe, 0xb7, 0xd6, 0x78, 0xd0, 0x38, 0x17, 0xec, 0x79, 0x5b, 0xcb, 0xf6, 0xd1,
0x5b, 0xcf, 0xc5, 0x8e, 0x71, 0xe0, 0x61, 0xaa, 0xec, 0x6e, 0x74, 0x3f, 0x4f, 0x9f, 0x57, 0x7f,
0x51, 0xa4, 0xe1, 0xf4, 0x9b, 0x07, 0x3e, 0x75, 0x1e, 0xf8, 0x08, 0x77, 0x6f, 0xeb, 0xb1, 0x31,
0xa2, 0xc6, 0x7b, 0x74, 0x3a, 0xfc, 0xf3, 0x41, 0xa6, 0xa1, 0xfa, 0x77, 0xa2, 0xec, 0xe6, 0xf0,
0x3f, 0x04, 0xb3, 0xe3, 0x1c, 0x78, 0x1f, 0x87, 0xa3, 0x93, 0xdf, 0x09, 0x34, 0xb1, 0xfc, 0x21,
0xa4, 0x1d, 0xa3, 0x33, 0xed, 0xfb, 0xee, 0xd6, 0x6f, 0x3c, 0x73, 0x69, 0xdb, 0xf7, 0x7f, 0xd0,
0x9b, 0x88, 0xb3, 0xca, 0x60, 0x14, 0xb2, 0xa8, 0x16, 0x83, 0xe6, 0xab, 0x5d, 0x53, 0x02, 0xa2,
0x28, 0x6a, 0x42, 0x4e, 0xff, 0x39, 0xf9, 0x08, 0xb9, 0x83, 0x32, 0x2f, 0x22, 0x9b, 0xb2, 0x33,
0xa5, 0x6a, 0xfa, 0x5e, 0xff, 0x1f, 0x35, 0x83, 0x43, 0xb5, 0xc5, 0x17, 0x00, 0x00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xdd, 0x59, 0x6b, 0x77, 0xdb, 0xc6,
0x11, 0xfd, 0xce, 0x5f, 0x01, 0xad, 0x75, 0x24, 0xe0, 0x10, 0x02, 0x29, 0xab, 0x49, 0x6d, 0x92,
0x0b, 0xd5, 0x96, 0x9d, 0x98, 0xb5, 0x1d, 0xe9, 0x94, 0x79, 0x9c, 0x1e, 0x45, 0xa7, 0x02, 0x81,
0x25, 0xb9, 0x16, 0xb8, 0x40, 0x17, 0x0b, 0x3d, 0x4a, 0xf1, 0xbf, 0xf7, 0xce, 0x02, 0xe0, 0x43,
0x0f, 0x37, 0x49, 0xfb, 0xa9, 0x1f, 0x62, 0x11, 0x8b, 0xd9, 0xd9, 0xd9, 0x3b, 0x77, 0x5e, 0xc8,
0x60, 0xe7, 0xdd, 0xe9, 0xc9, 0x8f, 0x7f, 0x3f, 0x7b, 0xef, 0xcc, 0xcc, 0x3c, 0x0d, 0x07, 0xf5,
0xbf, 0x22, 0x4a, 0x9c, 0x34, 0x52, 0x53, 0xce, 0x84, 0x62, 0xe1, 0x60, 0x2e, 0x4c, 0xe4, 0xc4,
0xb3, 0x48, 0x17, 0xc2, 0x70, 0x56, 0x9a, 0xc9, 0xc1, 0xab, 0x66, 0xb5, 0xa5, 0xa2, 0xb9, 0xe0,
0xec, 0x5a, 0x8a, 0x9b, 0x3c, 0xd3, 0x86, 0x39, 0x71, 0xa6, 0x8c, 0x50, 0x10, 0xbb, 0x91, 0x89,
0x99, 0xf1, 0x6f, 0xba, 0xdd, 0x95, 0xe8, 0x83, 0x57, 0x89, 0xb8, 0x96, 0xb1, 0x38, 0xb0, 0x0f,
0xbe, 0x54, 0xd2, 0xc8, 0x28, 0x3d, 0x28, 0xe2, 0x28, 0x15, 0xfc, 0xd0, 0x9f, 0x47, 0xb7, 0x72,
0x5e, 0xce, 0x57, 0xcf, 0x65, 0x21, 0xb4, 0x7d, 0x88, 0xc6, 0x78, 0x56, 0x19, 0x7b, 0x74, 0x72,
0x38, 0x30, 0xd2, 0xa4, 0x22, 0xfc, 0x09, 0x92, 0xf3, 0x2c, 0x71, 0x46, 0xc2, 0x18, 0xa9, 0xa6,
0xc5, 0xa0, 0x53, 0xad, 0x0f, 0x8a, 0x58, 0xcb, 0xdc, 0x84, 0xad, 0xeb, 0x48, 0x3b, 0xd9, 0x8d,
0x12, 0xda, 0x4f, 0xb3, 0x58, 0xe6, 0x7e, 0xa9, 0xb3, 0x9b, 0xc2, 0x4f, 0x78, 0x92, 0xc5, 0xe5,
0x1c, 0xf6, 0xf9, 0xe5, 0xfc, 0x64, 0x32, 0xe5, 0x8b, 0xa5, 0x9f, 0x4b, 0x55, 0xf0, 0xf3, 0x6f,
0xfd, 0x3f, 0xfb, 0xaf, 0xfc, 0xd7, 0xfe, 0x61, 0xd7, 0x3f, 0x3c, 0xbc, 0xa0, 0xc5, 0x53, 0x7e,
0xce, 0x74, 0x71, 0x9d, 0x30, 0xff, 0x3f, 0xff, 0xb9, 0xa0, 0x53, 0xf8, 0xce, 0xa1, 0xaf, 0xca,
0xf9, 0x67, 0xde, 0xed, 0x4f, 0x4a, 0x15, 0x1b, 0x99, 0x29, 0x67, 0x3a, 0x4c, 0x5c, 0xe1, 0x2d,
0xb4, 0x30, 0xa5, 0x56, 0x4e, 0x12, 0x4c, 0x85, 0x79, 0x9f, 0x0a, 0x32, 0xe0, 0xed, 0x9d, 0x7d,
0xb5, 0x5c, 0x89, 0xca, 0xe2, 0x74, 0x43, 0x54, 0xec, 0xed, 0xb1, 0x6c, 0xfc, 0x45, 0xc4, 0x86,
0x71, 0x6e, 0xee, 0x72, 0x91, 0x4d, 0x68, 0x6d, 0xe7, 0x8d, 0xd6, 0xd1, 0x5d, 0x20, 0x0b, 0xfb,
0x77, 0x6b, 0xff, 0x07, 0xd7, 0x5b, 0xdc, 0x48, 0x95, 0x64, 0x37, 0x41, 0x96, 0x0b, 0xe5, 0xb2,
0x99, 0x31, 0x79, 0xd1, 0xeb, 0x74, 0xa6, 0xd2, 0xcc, 0xca, 0x71, 0x10, 0x67, 0xf3, 0xce, 0x1b,
0xa9, 0xe3, 0x2c, 0xcb, 0xae, 0xa4, 0xe8, 0xfc, 0xf2, 0xe9, 0xfd, 0xbb, 0xce, 0x8d, 0xbc, 0x92,
0x9d, 0x06, 0xc3, 0x17, 0x65, 0x05, 0xea, 0x41, 0x51, 0x2f, 0xb0, 0x0d, 0xed, 0x6f, 0x1f, 0x6a,
0xef, 0xac, 0xa4, 0x7c, 0xf6, 0x8f, 0x42, 0xa4, 0x93, 0x4d, 0xe9, 0x34, 0x8b, 0x92, 0xbf, 0x8e,
0x5c, 0xe1, 0x1b, 0xbe, 0xd3, 0xf5, 0x16, 0xa9, 0x30, 0x8e, 0xe2, 0x49, 0x10, 0x6b, 0x11, 0x19,
0x51, 0x03, 0xe0, 0xb2, 0xca, 0x57, 0xcc, 0xeb, 0xab, 0x00, 0xca, 0xde, 0x18, 0xa3, 0xe5, 0xb8,
0x34, 0x02, 0x2f, 0x74, 0xcc, 0x7c, 0xe1, 0xf9, 0x0f, 0xd7, 0x09, 0x07, 0x1c, 0x67, 0xc4, 0xad,
0xe9, 0x7c, 0x89, 0xae, 0xa3, 0x46, 0xc1, 0x23, 0xc1, 0xa8, 0xb8, 0x53, 0x50, 0x61, 0x3c, 0x3f,
0x09, 0xc6, 0x59, 0x72, 0x17, 0x44, 0x39, 0x8c, 0x4e, 0x4e, 0x66, 0x32, 0x4d, 0x5c, 0x45, 0xf2,
0x51, 0x92, 0xbc, 0xbf, 0x86, 0x15, 0x9f, 0x64, 0x01, 0xba, 0x0a, 0xed, 0x32, 0xb2, 0x99, 0xf9,
0xae, 0xc7, 0xc3, 0xc5, 0xf7, 0xc2, 0xfc, 0xec, 0x7a, 0xcb, 0xa7, 0xe5, 0x84, 0xd6, 0x99, 0x86,
0x79, 0x90, 0x03, 0xd7, 0x8b, 0x2c, 0x15, 0x41, 0x9a, 0x4d, 0x5d, 0xf6, 0x9e, 0xd6, 0x9d, 0xfa,
0xf2, 0x00, 0xc6, 0x99, 0xc8, 0x54, 0xd8, 0x6b, 0x80, 0xdc, 0x1a, 0xd7, 0xfd, 0x54, 0xaf, 0xc3,
0x93, 0xd8, 0x38, 0x91, 0xd3, 0x52, 0x47, 0x16, 0xad, 0xea, 0x1a, 0xce, 0x24, 0xc2, 0x86, 0x24,
0xf8, 0x55, 0x0d, 0x15, 0x7c, 0x95, 0x03, 0x34, 0xe1, 0xe4, 0xd1, 0x54, 0x38, 0x49, 0x64, 0xa2,
0x1d, 0xc0, 0xbb, 0x01, 0xf0, 0x08, 0xee, 0x60, 0x74, 0x40, 0x0f, 0xf4, 0xa8, 0xfd, 0x02, 0x0a,
0x5a, 0x7d, 0x41, 0xae, 0x33, 0x93, 0xc5, 0x59, 0xba, 0xb7, 0xe7, 0x5a, 0x5a, 0x76, 0x7d, 0xd7,
0x06, 0x01, 0x27, 0x89, 0x74, 0x64, 0x32, 0x0d, 0xad, 0x44, 0xc5, 0xa1, 0x11, 0x73, 0xba, 0x78,
0x3c, 0xcc, 0x99, 0xe7, 0xdd, 0xdf, 0xd7, 0x62, 0xd8, 0x3f, 0xcf, 0x61, 0xf0, 0x77, 0xd0, 0xef,
0x7c, 0xce, 0x12, 0x11, 0x38, 0x67, 0xa9, 0x88, 0x0a, 0xe1, 0x00, 0x08, 0xa1, 0x1d, 0xa2, 0x8e,
0x33, 0x3c, 0x83, 0x49, 0xfe, 0x96, 0xc6, 0x62, 0x5b, 0x63, 0x15, 0x79, 0x9e, 0x07, 0xa9, 0x04,
0xf6, 0xda, 0xd8, 0xc0, 0x19, 0x14, 0x12, 0xac, 0x9c, 0x33, 0x2f, 0x90, 0x0a, 0x80, 0x7e, 0xf8,
0xf1, 0xf3, 0x27, 0xce, 0xd8, 0x56, 0x20, 0x7c, 0xb7, 0x19, 0x08, 0x9c, 0xf3, 0x36, 0x98, 0x2f,
0x76, 0x38, 0x77, 0xbb, 0xf7, 0xdb, 0x11, 0x33, 0x7c, 0x4a, 0x90, 0x3f, 0x12, 0x8c, 0x67, 0x22,
0xbe, 0x22, 0x36, 0x7a, 0x0b, 0xca, 0x0b, 0x8a, 0x8b, 0x80, 0xf2, 0x4a, 0xa0, 0x45, 0x9e, 0x46,
0x31, 0xf8, 0x72, 0x7e, 0x01, 0x5a, 0xc1, 0xa2, 0xa2, 0x1c, 0x17, 0x46, 0xbb, 0x07, 0x47, 0x5e,
0x5f, 0x4e, 0x5c, 0x06, 0x8b, 0xc7, 0x42, 0x03, 0x61, 0x11, 0x10, 0xf5, 0x10, 0x92, 0xc8, 0x0b,
0x78, 0x54, 0x8d, 0x60, 0xd7, 0x3f, 0xf2, 0xbc, 0xc5, 0x24, 0xd3, 0x2e, 0xe9, 0x95, 0x88, 0x7c,
0x39, 0xa0, 0x7c, 0x12, 0xa4, 0x42, 0x4d, 0xcd, 0xac, 0x2f, 0xdb, 0x6d, 0x0f, 0x8a, 0xcc, 0x0e,
0xa7, 0x84, 0x72, 0x2e, 0x2f, 0xbc, 0x05, 0x1e, 0x45, 0x70, 0x1d, 0xa5, 0x25, 0xec, 0x24, 0x51,
0x2c, 0x42, 0xaf, 0x9c, 0x40, 0xed, 0x5a, 0x08, 0x58, 0x9a, 0x3b, 0x10, 0x0b, 0x4e, 0xcc, 0x34,
0x67, 0xa9, 0x9c, 0x0b, 0xd6, 0x1f, 0x23, 0x7a, 0xae, 0x96, 0x4f, 0xec, 0xbf, 0xbf, 0xaf, 0x57,
0x06, 0x07, 0x87, 0xab, 0xdf, 0xe1, 0xd1, 0xeb, 0x47, 0x7a, 0xb4, 0x48, 0x1a, 0x35, 0xdb, 0x6f,
0x56, 0x7b, 0x8e, 0x8e, 0x19, 0x7c, 0xa9, 0xa6, 0x82, 0xf5, 0xd8, 0x8b, 0xc9, 0x64, 0xc2, 0x96,
0x4b, 0x91, 0x16, 0x62, 0x51, 0xdc, 0x48, 0x13, 0xcf, 0xdc, 0x0a, 0x37, 0x6f, 0x11, 0x83, 0x0c,
0x6c, 0xf4, 0xee, 0x0d, 0xeb, 0x55, 0xbf, 0x4e, 0x3e, 0xd5, 0xbf, 0x3e, 0x9f, 0x8e, 0x86, 0xeb,
0xc5, 0x8f, 0xf5, 0xcf, 0x93, 0x11, 0xeb, 0xd9, 0x63, 0xfb, 0x89, 0x98, 0x44, 0x65, 0x6a, 0x7a,
0x95, 0xcf, 0x96, 0x84, 0xdc, 0xff, 0x27, 0x6a, 0x6b, 0xf2, 0x21, 0xce, 0xce, 0x70, 0x22, 0x31,
0x15, 0x56, 0x54, 0x59, 0xde, 0xa3, 0x8b, 0x53, 0xf6, 0x30, 0xe7, 0xca, 0x97, 0x17, 0xc8, 0x08,
0xa7, 0x36, 0xd7, 0x07, 0x08, 0x30, 0x2d, 0x05, 0x09, 0x7b, 0xb5, 0xb0, 0xf4, 0x3c, 0x5b, 0xc7,
0xb8, 0xf2, 0x1b, 0x4d, 0xd2, 0xeb, 0x93, 0x53, 0x1c, 0xa2, 0x68, 0x43, 0xc8, 0xaf, 0x50, 0x99,
0x34, 0x6d, 0x97, 0x0d, 0x59, 0x19, 0x40, 0x9c, 0x35, 0x40, 0xdf, 0x0c, 0x64, 0x03, 0xbd, 0x21,
0xe8, 0xcf, 0xcd, 0x45, 0xc8, 0xbb, 0xc8, 0x1e, 0xd6, 0x29, 0x79, 0x59, 0xcc, 0x5c, 0x5a, 0xf3,
0x6c, 0x55, 0xac, 0x9e, 0xad, 0x49, 0x5e, 0x63, 0xc7, 0x23, 0xe9, 0xe7, 0x45, 0x9f, 0x31, 0xe5,
0x09, 0x33, 0x56, 0xb7, 0xa5, 0xa3, 0xd7, 0x70, 0x22, 0x21, 0x7f, 0x27, 0x05, 0xd2, 0x38, 0xc2,
0xd9, 0x07, 0x78, 0xa8, 0xba, 0x2b, 0x60, 0x15, 0x82, 0xd1, 0x16, 0xfa, 0x36, 0xdf, 0x1f, 0xcc,
0xb4, 0x63, 0x9d, 0x55, 0x77, 0x22, 0xbd, 0x97, 0xdf, 0x76, 0xf3, 0x5b, 0x16, 0xee, 0xf7, 0xd7,
0xd8, 0x4b, 0xbf, 0x78, 0x02, 0x7b, 0x68, 0x61, 0xa5, 0xba, 0x52, 0x30, 0x9c, 0xe8, 0x65, 0x88,
0x1c, 0x52, 0xc5, 0x69, 0x99, 0xe0, 0x25, 0x3c, 0xec, 0x1d, 0x6f, 0xd8, 0x00, 0x15, 0x5e, 0x6f,
0xfd, 0xdc, 0xc6, 0xfb, 0xb6, 0xb1, 0xab, 0xcb, 0xa7, 0x2f, 0xac, 0xd6, 0xd8, 0x17, 0xb8, 0x74,
0x31, 0x50, 0xcd, 0xa5, 0x0b, 0x5c, 0x7a, 0xfb, 0x76, 0xe7, 0xc5, 0x85, 0x8f, 0xfa, 0x69, 0xa1,
0xb3, 0x99, 0x4b, 0xfb, 0x59, 0xd3, 0x0c, 0xa8, 0x7e, 0x1d, 0x93, 0x59, 0x1d, 0x8e, 0xe3, 0x0c,
0xa5, 0x28, 0x52, 0xac, 0x97, 0x71, 0x66, 0x13, 0xde, 0x38, 0xbb, 0x65, 0xbe, 0xe6, 0xfb, 0x15,
0xed, 0x99, 0xd1, 0xa5, 0x60, 0xfb, 0x6d, 0x57, 0x1d, 0xb3, 0x2a, 0x21, 0x82, 0xd6, 0x3d, 0x30,
0xa5, 0xa2, 0x76, 0xdf, 0xea, 0xa8, 0x13, 0x5e, 0x4f, 0xf3, 0xcb, 0x7a, 0xd7, 0xee, 0x42, 0x2d,
0xd9, 0xa5, 0x5f, 0xf3, 0x8c, 0x9b, 0x0d, 0x5e, 0x1d, 0xbb, 0x1a, 0x38, 0x3b, 0x68, 0xe2, 0x38,
0x3b, 0x7a, 0xcd, 0x9c, 0xb9, 0x54, 0x9c, 0x1d, 0x1c, 0x42, 0x7b, 0x1a, 0x15, 0x05, 0x67, 0x05,
0xdb, 0x87, 0xb9, 0x4c, 0x2a, 0x54, 0xe8, 0x9e, 0x15, 0x45, 0x09, 0xcd, 0x39, 0x8b, 0xd4, 0xdd,
0x4a, 0xe6, 0xf6, 0x36, 0x65, 0xfb, 0xfd, 0xed, 0xdc, 0x80, 0x3d, 0x54, 0xe1, 0xc9, 0xf6, 0x2d,
0x2b, 0x1e, 0xb8, 0xf3, 0x1b, 0xb8, 0xb3, 0xcf, 0x2e, 0x97, 0x0f, 0x9c, 0x03, 0x22, 0xd6, 0x14,
0x10, 0x8d, 0xad, 0x24, 0x91, 0x88, 0xdb, 0xd3, 0x89, 0x15, 0x68, 0x1f, 0xa2, 0x22, 0xd5, 0x22,
0x97, 0xce, 0xee, 0xc2, 0x2c, 0x7b, 0x0e, 0x2e, 0xb8, 0x82, 0x8c, 0xf3, 0xec, 0xb8, 0x79, 0x3d,
0x90, 0x2a, 0x2f, 0x8d, 0x43, 0x90, 0x73, 0x36, 0x93, 0x49, 0x82, 0x4e, 0xd9, 0xa9, 0x5a, 0xd2,
0xdd, 0x85, 0x58, 0xf6, 0x68, 0xf7, 0xee, 0x42, 0x1e, 0x53, 0xd4, 0x01, 0x4b, 0xd8, 0x58, 0x1b,
0x3c, 0x89, 0xe0, 0x32, 0x16, 0x5e, 0xf6, 0x24, 0x2a, 0xde, 0x7f, 0xad, 0x6d, 0x77, 0x91, 0x2d,
0xa1, 0x6c, 0x6d, 0xf6, 0x96, 0xa6, 0xdd, 0x85, 0xc5, 0x98, 0x93, 0xe1, 0x2b, 0x0f, 0x62, 0xc3,
0xd7, 0x55, 0xef, 0x2e, 0xf4, 0x12, 0xdd, 0x8a, 0x55, 0x54, 0x13, 0xc6, 0x35, 0x33, 0x59, 0xf8,
0xfb, 0xbb, 0x8b, 0xe7, 0x91, 0x5b, 0xee, 0x7b, 0xe8, 0xc1, 0xc7, 0x3a, 0xbc, 0x5c, 0x6e, 0x85,
0xe4, 0x3b, 0x9d, 0xe5, 0xe8, 0x41, 0x54, 0x55, 0x64, 0x9f, 0xeb, 0xf7, 0x44, 0x4a, 0xfd, 0xac,
0x87, 0xa0, 0xdd, 0xec, 0x84, 0x8b, 0xb7, 0x77, 0x3f, 0xc0, 0xd2, 0x26, 0x78, 0xbc, 0xf3, 0xc3,
0x0b, 0xaa, 0xbe, 0x12, 0x09, 0x7e, 0xf8, 0xc3, 0xd9, 0x4f, 0x3f, 0xd2, 0xcd, 0x64, 0x60, 0xa2,
0x29, 0x49, 0xc1, 0xbd, 0x15, 0x3b, 0xaa, 0x45, 0x00, 0x70, 0x7f, 0xbf, 0xae, 0xd3, 0xf5, 0x92,
0x57, 0x99, 0x20, 0xf0, 0x68, 0x11, 0xec, 0x4b, 0x5b, 0xb7, 0xfa, 0xdb, 0x81, 0x27, 0x83, 0xa8,
0xe9, 0x18, 0x57, 0xa5, 0xa7, 0xdd, 0x2e, 0xaa, 0x1e, 0x41, 0xf3, 0xcd, 0xd7, 0x08, 0xc4, 0x7e,
0xd5, 0x7d, 0xee, 0x70, 0x6d, 0x75, 0xc1, 0x38, 0xab, 0x7a, 0x73, 0xc1, 0x72, 0x7a, 0x73, 0xc1,
0x12, 0x76, 0x63, 0xe1, 0x41, 0x9b, 0x5a, 0x2d, 0xfb, 0xba, 0x32, 0xd2, 0x5b, 0xd6, 0x8d, 0xcc,
0xc3, 0x66, 0x96, 0xda, 0xbf, 0x03, 0x88, 0xd8, 0x5e, 0x52, 0x06, 0x79, 0xa4, 0x01, 0x5a, 0x8d,
0x5d, 0x93, 0xf7, 0xeb, 0xce, 0xd6, 0x47, 0xe6, 0x55, 0x2b, 0x3d, 0x65, 0x9a, 0x6e, 0x39, 0xe9,
0x34, 0xa7, 0x5f, 0x55, 0x6a, 0xb1, 0x39, 0x93, 0x24, 0x00, 0x9a, 0xf0, 0xaa, 0x1d, 0x7d, 0x02,
0x4d, 0x3e, 0xf6, 0x5b, 0x66, 0xf7, 0x21, 0x53, 0xd4, 0x70, 0xa2, 0x14, 0x01, 0x67, 0x38, 0x81,
0x1b, 0x5f, 0x6c, 0xb5, 0xd6, 0xa8, 0x4c, 0x84, 0x31, 0xe9, 0xa9, 0x32, 0x3a, 0x4a, 0x25, 0xbd,
0xf8, 0x01, 0x4d, 0x64, 0xb1, 0x99, 0xdc, 0x17, 0x9b, 0x2f, 0x90, 0xe0, 0x9b, 0xda, 0x2c, 0x02,
0xba, 0x2d, 0xee, 0x4f, 0x0b, 0xf0, 0x35, 0x35, 0x95, 0x44, 0x1a, 0x91, 0x0c, 0x89, 0x88, 0xdc,
0x78, 0xdb, 0xbc, 0x1b, 0xaa, 0x49, 0xd6, 0x5c, 0xa8, 0xb1, 0xfe, 0x09, 0x66, 0x91, 0xe9, 0xd5,
0xe9, 0xc4, 0x1f, 0x30, 0x1b, 0x7d, 0xf8, 0x7a, 0xae, 0x32, 0x7b, 0x7b, 0xf2, 0xbc, 0x7b, 0x71,
0x4c, 0xff, 0x04, 0x16, 0xce, 0x59, 0x96, 0x26, 0x28, 0xb9, 0xa6, 0x47, 0xc5, 0x87, 0xde, 0xc2,
0x42, 0xd4, 0x22, 0xb4, 0xf1, 0x6f, 0x92, 0x2f, 0x78, 0xaf, 0x0c, 0xb5, 0xad, 0x98, 0x33, 0x26,
0xe8, 0x87, 0x71, 0x7b, 0x94, 0xdc, 0x3d, 0x35, 0x2e, 0xf2, 0x3e, 0x6b, 0x23, 0xbf, 0x6f, 0xcc,
0x41, 0xd4, 0xf8, 0x2e, 0x26, 0x82, 0xf2, 0x34, 0x35, 0xd7, 0xc7, 0x76, 0x28, 0xc3, 0x4c, 0xc6,
0xda, 0xb6, 0x39, 0xa6, 0xfc, 0xdb, 0x66, 0x9d, 0x78, 0x32, 0x0d, 0xbe, 0x14, 0x80, 0xd8, 0x5f,
0x60, 0x88, 0x9e, 0x65, 0x49, 0x8f, 0xe1, 0x12, 0x6c, 0xe9, 0x05, 0x66, 0x86, 0x59, 0x0b, 0xa3,
0x06, 0x80, 0xc8, 0xae, 0x9a, 0xe6, 0x19, 0xa9, 0x45, 0x6b, 0x2a, 0xf1, 0xb6, 0x17, 0x49, 0x64,
0x01, 0x9b, 0xef, 0x28, 0xd1, 0xa6, 0x52, 0x09, 0x84, 0x97, 0xb0, 0xca, 0x5c, 0x74, 0xde, 0xab,
0xfd, 0xe4, 0xed, 0x6a, 0xe2, 0x15, 0x41, 0x39, 0xf7, 0xd7, 0x3d, 0x49, 0x95, 0x52, 0xd0, 0x80,
0xfb, 0x54, 0x40, 0xad, 0xc8, 0x66, 0x77, 0x02, 0x68, 0x9f, 0xa8, 0x90, 0xb5, 0x98, 0x9d, 0x7f,
0x28, 0xd2, 0x1f, 0x0e, 0x20, 0x85, 0x88, 0x74, 0x8c, 0x71, 0x9f, 0x2b, 0x71, 0xe3, 0xfc, 0xf4,
0xb7, 0x4f, 0x23, 0xfb, 0x7c, 0x16, 0xe9, 0x68, 0x4e, 0xe5, 0x95, 0x3c, 0x54, 0x8d, 0x00, 0xfd,
0xcd, 0x09, 0x0a, 0xdc, 0x65, 0x08, 0x16, 0xc4, 0xbd, 0xdc, 0xe1, 0x62, 0x33, 0x6f, 0x26, 0xf2,
0xda, 0x91, 0x09, 0xa7, 0x4c, 0x16, 0xa2, 0xae, 0xe3, 0xbf, 0xa3, 0x90, 0x1e, 0x06, 0x1d, 0xfc,
0xb8, 0xf4, 0x37, 0x8a, 0xe6, 0xaa, 0x70, 0xd3, 0xec, 0x57, 0xef, 0x67, 0x83, 0x0e, 0x14, 0x84,
0xce, 0xaf, 0xb7, 0x47, 0xf1, 0xce, 0xc1, 0x81, 0xb8, 0xc9, 0x6e, 0xe4, 0xc1, 0x01, 0x9e, 0x80,
0xd5, 0xd2, 0x02, 0x3a, 0x4d, 0xb3, 0x71, 0x94, 0x7e, 0x7f, 0x36, 0x3c, 0x2d, 0x1e, 0xc3, 0x4a,
0x69, 0xc5, 0x6a, 0x3a, 0x66, 0x63, 0xdc, 0xf0, 0x0a, 0x49, 0x4a, 0x65, 0x8a, 0xe6, 0xd0, 0xd5,
0x9b, 0xa6, 0xe6, 0x70, 0x56, 0x7f, 0x97, 0x28, 0x1e, 0x4c, 0x78, 0x2a, 0xc3, 0x78, 0x97, 0x95,
0x2a, 0x09, 0x28, 0x77, 0x9e, 0x69, 0x51, 0x14, 0xce, 0x40, 0x86, 0xa3, 0xe8, 0x5a, 0x0c, 0x3a,
0x32, 0x74, 0x4c, 0xe6, 0xd4, 0xdf, 0x46, 0xe4, 0xbf, 0x30, 0xef, 0x55, 0x85, 0xb0, 0x08, 0xe0,
0xcb, 0xa7, 0xa6, 0xa5, 0xea, 0x5b, 0x46, 0x3d, 0x63, 0x7f, 0x85, 0x56, 0xcd, 0x84, 0xde, 0x29,
0x40, 0x88, 0xe3, 0x9c, 0xbf, 0x62, 0x3e, 0x9a, 0x25, 0xb0, 0x0a, 0x6e, 0xa2, 0x66, 0x1e, 0xb4,
0xf8, 0x0d, 0x7c, 0xf2, 0x37, 0x7d, 0x24, 0xb6, 0xa6, 0xd0, 0xe2, 0x7a, 0x44, 0x6d, 0xad, 0xc0,
0xc4, 0x29, 0x68, 0x48, 0x7e, 0x57, 0x19, 0xee, 0xd2, 0xd8, 0x3d, 0x9a, 0x04, 0xb6, 0xa8, 0xfc,
0x8c, 0x3b, 0x25, 0xd2, 0xdc, 0xb9, 0xa8, 0xcc, 0x76, 0x15, 0xa5, 0x65, 0x2e, 0x21, 0xb3, 0x6c,
0x0d, 0x3a, 0xf5, 0xd7, 0x9a, 0x81, 0x3d, 0x39, 0xfc, 0x8b, 0x9c, 0xd3, 0x47, 0x1e, 0xa7, 0xd4,
0xa9, 0xcb, 0xea, 0x46, 0x1b, 0x09, 0xd5, 0xeb, 0x43, 0xd0, 0x0a, 0xc0, 0xdf, 0x22, 0x4a, 0x50,
0x7f, 0x30, 0xd2, 0xa3, 0x76, 0x11, 0x02, 0x9c, 0x21, 0xc2, 0x50, 0x92, 0x40, 0xd9, 0x79, 0x8b,
0x48, 0xc2, 0xe8, 0xd7, 0x3f, 0x8a, 0xa6, 0xfa, 0x8d, 0x26, 0x68, 0x4c, 0x6c, 0x4c, 0x71, 0x96,
0x67, 0x85, 0x61, 0xd8, 0x57, 0x59, 0x80, 0x06, 0x85, 0xcc, 0x27, 0xbb, 0x49, 0x01, 0x71, 0xac,
0x6e, 0x4a, 0x4c, 0x86, 0x09, 0xf8, 0x86, 0x85, 0xad, 0xcd, 0xc5, 0x99, 0x48, 0xf3, 0xb7, 0x54,
0xfb, 0x4a, 0x63, 0x70, 0xf5, 0xaa, 0xf4, 0x56, 0x0f, 0xa4, 0x33, 0x4e, 0x65, 0x7c, 0xc5, 0xd9,
0x07, 0x32, 0xe6, 0x78, 0xd0, 0xa9, 0x5e, 0x84, 0x15, 0xf3, 0x9a, 0x3d, 0xad, 0x67, 0x36, 0xbd,
0xa5, 0x4d, 0x6f, 0xa3, 0xf8, 0x6a, 0xbd, 0x6f, 0xeb, 0x94, 0xca, 0x5e, 0x56, 0xd3, 0x65, 0x25,
0xa2, 0x61, 0x60, 0x91, 0x47, 0xca, 0xde, 0x3a, 0x2d, 0x8a, 0x32, 0x5e, 0xb5, 0x48, 0x76, 0x3e,
0xe9, 0x4d, 0xb5, 0x10, 0xaa, 0x5f, 0xfb, 0xb3, 0x67, 0x49, 0x1b, 0xee, 0xbd, 0x38, 0xec, 0x76,
0xbb, 0x7f, 0xea, 0x3b, 0x27, 0xdb, 0x9f, 0x20, 0xa0, 0x3a, 0xd9, 0x21, 0x8f, 0x40, 0x61, 0xe8,
0x6c, 0xea, 0x25, 0x6e, 0x6c, 0xeb, 0xc5, 0x40, 0xf4, 0x40, 0x6b, 0x6b, 0xef, 0xc5, 0xeb, 0x57,
0xaf, 0x5e, 0x91, 0xd6, 0x32, 0x4d, 0x2c, 0xdd, 0xc9, 0x39, 0xdb, 0x51, 0x10, 0xd4, 0xda, 0x6b,
0x50, 0xea, 0xa0, 0xde, 0x0a, 0x3e, 0xa7, 0x55, 0x1f, 0xb4, 0xad, 0xbe, 0x8a, 0xf9, 0x97, 0x9b,
0x5f, 0xfd, 0xca, 0x1c, 0x64, 0x78, 0x19, 0x7e, 0x6f, 0x37, 0x3b, 0xc3, 0x41, 0x51, 0xe6, 0xe1,
0x4b, 0x1c, 0x80, 0x3f, 0x27, 0x8e, 0x55, 0xe6, 0xb8, 0x1f, 0x7e, 0xf1, 0x5a, 0x04, 0xd3, 0x40,
0x6e, 0xdb, 0x5f, 0xcf, 0x6a, 0xa1, 0x0b, 0x0a, 0xdd, 0xd1, 0x27, 0x4f, 0x35, 0xa5, 0x0f, 0x8e,
0xf4, 0xed, 0xe6, 0xfd, 0xe8, 0xec, 0xe8, 0xa5, 0x5f, 0xad, 0x09, 0x47, 0x8b, 0x7f, 0x96, 0x12,
0xc1, 0x8a, 0x1f, 0xe8, 0xae, 0xcd, 0x0e, 0xd4, 0x21, 0x5a, 0x49, 0x25, 0x66, 0xdf, 0xde, 0x56,
0x13, 0x56, 0xb7, 0x20, 0xeb, 0x26, 0xb8, 0x6a, 0x8b, 0x8f, 0x56, 0x3c, 0xc4, 0xb0, 0xec, 0xb4,
0xe0, 0x72, 0xab, 0x99, 0xef, 0x6f, 0x34, 0x5c, 0x34, 0xc6, 0x7a, 0xfb, 0xeb, 0xae, 0xd9, 0xd9,
0x2c, 0x41, 0x76, 0x63, 0xe8, 0x60, 0x98, 0x6e, 0xce, 0x6b, 0xfd, 0xc6, 0x03, 0x31, 0x93, 0x3b,
0x5f, 0x3b, 0xaf, 0xf5, 0xdc, 0x81, 0xd8, 0x18, 0x3e, 0x37, 0x3d, 0xd5, 0x78, 0x8f, 0xce, 0x86,
0x1b, 0x20, 0xd7, 0x18, 0xb7, 0xfe, 0x47, 0x20, 0x37, 0x18, 0xb7, 0xe8, 0x63, 0xc2, 0xef, 0x43,
0xd9, 0x7e, 0x7e, 0xf8, 0x43, 0x30, 0xdb, 0x9d, 0xa1, 0xf3, 0x79, 0x38, 0x3a, 0xfd, 0x9d, 0x40,
0xd3, 0x96, 0x3f, 0x86, 0xb4, 0xdd, 0x69, 0x7d, 0xfb, 0xf1, 0xb7, 0x5e, 0xb3, 0xb5, 0x72, 0xee,
0xc7, 0xaf, 0x9f, 0xf9, 0xbc, 0x73, 0x3f, 0xb2, 0xcd, 0x08, 0x6c, 0x51, 0x08, 0xa2, 0xbe, 0x84,
0xcd, 0xd7, 0xc9, 0xa6, 0x68, 0x04, 0x41, 0x50, 0x8b, 0x51, 0xf0, 0x7d, 0x3d, 0xeb, 0xad, 0x12,
0x58, 0xeb, 0x77, 0x65, 0xb0, 0x0e, 0xa5, 0x6a, 0xfc, 0xa1, 0x74, 0x4e, 0xb9, 0x9d, 0xfe, 0xb7,
0xc4, 0xbf, 0x01, 0x66, 0x5e, 0xa0, 0x84, 0xac, 0x18, 0x00, 0x00
};
@@ -1869,170 +1884,6 @@ const uint8_t PAGE_settings_2D[] PROGMEM = {
};
// Autogenerated from wled00/data/settings_um2.htm, do not edit!!
const uint16_t PAGE_settings_um2_length = 2514;
const uint8_t PAGE_settings_um2[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xdd, 0x58, 0xdb, 0x72, 0xdb, 0x38,
0x12, 0x7d, 0xd7, 0x57, 0xd0, 0x88, 0xcb, 0x26, 0x4b, 0x34, 0x25, 0xc7, 0x3b, 0xb3, 0x89, 0x24,
0xc8, 0x93, 0x38, 0xc9, 0x44, 0x9b, 0x8b, 0x5d, 0xa5, 0xb9, 0xd4, 0x96, 0xd7, 0x35, 0xa6, 0x44,
0x48, 0x42, 0x4c, 0x81, 0x5c, 0x00, 0xf4, 0x65, 0x65, 0xfd, 0xfb, 0x9e, 0x06, 0x49, 0x5d, 0x1c,
0x3b, 0xb3, 0x33, 0x5b, 0xfb, 0xb2, 0x2f, 0x12, 0x09, 0x36, 0x9a, 0x8d, 0xd3, 0xdd, 0xa7, 0xbb,
0xd9, 0xdb, 0x79, 0x73, 0x7a, 0xf2, 0xd3, 0xdf, 0xcf, 0xde, 0x7a, 0x33, 0x3b, 0x4f, 0xfb, 0xbd,
0xea, 0x57, 0xc4, 0x89, 0x97, 0xc6, 0x6a, 0xca, 0x99, 0x50, 0xac, 0xdf, 0x9b, 0x0b, 0x1b, 0x7b,
0xe3, 0x59, 0xac, 0x8d, 0xb0, 0x9c, 0x15, 0x76, 0x72, 0xf0, 0xa2, 0x5e, 0x6d, 0xa8, 0x78, 0x2e,
0x38, 0xbb, 0x96, 0xe2, 0x26, 0xcf, 0xb4, 0x65, 0xde, 0x38, 0x53, 0x56, 0x28, 0x88, 0xdd, 0xc8,
0xc4, 0xce, 0xf8, 0x77, 0xed, 0xf6, 0x4a, 0xf4, 0xc1, 0xa3, 0x44, 0x5c, 0xcb, 0xb1, 0x38, 0x70,
0x37, 0xa1, 0x54, 0xd2, 0xca, 0x38, 0x3d, 0x30, 0xe3, 0x38, 0x15, 0xfc, 0x30, 0x9c, 0xc7, 0xb7,
0x72, 0x5e, 0xcc, 0x57, 0xf7, 0x85, 0x11, 0xda, 0xdd, 0xc4, 0x23, 0xdc, 0xab, 0x8c, 0x7d, 0xf5,
0xe6, 0x7e, 0xcf, 0x4a, 0x9b, 0x8a, 0xfe, 0xcf, 0x90, 0x9c, 0x67, 0x89, 0x37, 0x14, 0xd6, 0x4a,
0x35, 0x35, 0xbd, 0x56, 0xb9, 0xde, 0x33, 0x63, 0x2d, 0x73, 0xdb, 0x6f, 0x5c, 0xc7, 0xda, 0xcb,
0x6e, 0x94, 0xd0, 0x61, 0x9a, 0x8d, 0x65, 0x1e, 0x16, 0x3a, 0xbb, 0x31, 0x61, 0xc2, 0x93, 0x6c,
0x5c, 0xcc, 0x61, 0x5f, 0x58, 0xcc, 0x4f, 0x26, 0x53, 0xbe, 0x58, 0x86, 0xb9, 0x54, 0x86, 0x9f,
0x7f, 0x1f, 0xfe, 0x35, 0x7c, 0x11, 0xbe, 0x0c, 0x0f, 0xdb, 0xe1, 0xe1, 0xe1, 0x05, 0x2d, 0x9e,
0xf2, 0x73, 0xa6, 0xcd, 0x75, 0xc2, 0xc2, 0xdf, 0xff, 0xbb, 0xa0, 0xb7, 0xf0, 0x9d, 0xc3, 0x50,
0x15, 0xf3, 0x4f, 0xbc, 0xdd, 0x9d, 0x14, 0x6a, 0x6c, 0x65, 0xa6, 0xbc, 0xe9, 0x20, 0xf1, 0x45,
0xb0, 0xd0, 0xc2, 0x16, 0x5a, 0x79, 0x49, 0x34, 0x15, 0xf6, 0x6d, 0x2a, 0xc8, 0x80, 0xd7, 0x77,
0xee, 0xd1, 0x72, 0x25, 0x2a, 0xcd, 0xe9, 0x86, 0xa8, 0xd8, 0xdb, 0x63, 0xd9, 0xe8, 0x8b, 0x18,
0x5b, 0xc6, 0xb9, 0xbd, 0xcb, 0x45, 0x36, 0xa1, 0xb5, 0x9d, 0x57, 0x5a, 0xc7, 0x77, 0x91, 0x34,
0xee, 0x7f, 0x6b, 0xff, 0x7b, 0x3f, 0x58, 0xdc, 0x48, 0x95, 0x64, 0x37, 0x51, 0x96, 0x0b, 0xe5,
0xb3, 0x99, 0xb5, 0xb9, 0xe9, 0xb4, 0x5a, 0x53, 0x69, 0x67, 0xc5, 0x28, 0x1a, 0x67, 0xf3, 0xd6,
0x2b, 0xa9, 0xc7, 0x59, 0x96, 0x5d, 0x49, 0xd1, 0xfa, 0xf5, 0xe3, 0xdb, 0x37, 0xad, 0x1b, 0x79,
0x25, 0x5b, 0x35, 0x86, 0xcf, 0x8a, 0x12, 0xd4, 0x03, 0x53, 0x2d, 0xb0, 0x0d, 0xed, 0xaf, 0x1f,
0x6a, 0x6f, 0xad, 0xa4, 0x42, 0xf6, 0x9b, 0x11, 0xe9, 0x64, 0x53, 0x3a, 0xcd, 0xe2, 0xe4, 0x6f,
0x43, 0x5f, 0x84, 0x96, 0xef, 0xb4, 0x83, 0x45, 0x2a, 0xac, 0xa7, 0x78, 0x12, 0x8d, 0xb5, 0x88,
0xad, 0xa8, 0x00, 0xf0, 0x59, 0xe9, 0x2b, 0x16, 0x74, 0x55, 0x04, 0x65, 0xaf, 0xac, 0xd5, 0x72,
0x54, 0x58, 0x81, 0x07, 0x7a, 0xcc, 0x42, 0x11, 0x84, 0x0f, 0xd7, 0x09, 0x07, 0xbc, 0xce, 0x8a,
0x5b, 0xdb, 0xfa, 0x12, 0x5f, 0xc7, 0xb5, 0x82, 0xaf, 0x04, 0x63, 0x73, 0xa7, 0xa0, 0xc2, 0x06,
0x61, 0x12, 0x8d, 0xb2, 0xe4, 0x2e, 0x8a, 0x73, 0x18, 0x9d, 0x9c, 0xcc, 0x64, 0x9a, 0xf8, 0x8a,
0xe4, 0xe3, 0x24, 0x79, 0x7b, 0x0d, 0x2b, 0x3e, 0x4a, 0x83, 0x70, 0x15, 0xda, 0x67, 0x64, 0x33,
0x0b, 0xfd, 0x80, 0xf7, 0x17, 0x3f, 0x0a, 0xfb, 0x8b, 0x1f, 0x2c, 0x1f, 0x97, 0x13, 0x5a, 0x67,
0x1a, 0xe6, 0x41, 0x0e, 0xb1, 0x6e, 0xb2, 0x54, 0x44, 0x69, 0x36, 0xf5, 0xd9, 0x5b, 0x5a, 0xf7,
0xaa, 0xc3, 0x03, 0x18, 0x6f, 0x22, 0x53, 0xe1, 0x8e, 0x81, 0xe0, 0xd6, 0x38, 0xee, 0xc7, 0x6a,
0x1d, 0x9e, 0xc4, 0xc6, 0x89, 0x9c, 0x16, 0x3a, 0x76, 0x68, 0x95, 0xc7, 0xf0, 0x26, 0x31, 0x36,
0x24, 0xd1, 0x3f, 0xd4, 0x40, 0xc1, 0x57, 0x39, 0x40, 0x13, 0x5e, 0x1e, 0x4f, 0x85, 0x97, 0xc4,
0x36, 0xde, 0x01, 0xbc, 0x1b, 0x00, 0x0f, 0xe1, 0x0e, 0x46, 0x2f, 0xe8, 0x20, 0x3c, 0x2a, 0xbf,
0x20, 0x04, 0x9d, 0xbe, 0x28, 0xd7, 0x99, 0xcd, 0xc6, 0x59, 0xba, 0xb7, 0xe7, 0xbb, 0xb0, 0x6c,
0x87, 0xbe, 0x4b, 0x02, 0x4e, 0x12, 0xe9, 0xd0, 0x66, 0x1a, 0x5a, 0x29, 0x14, 0x07, 0x56, 0xcc,
0xe9, 0xe0, 0xe3, 0x41, 0xce, 0x82, 0xe0, 0xfe, 0xbe, 0x12, 0xc3, 0xfe, 0x79, 0x0e, 0x83, 0xdf,
0x41, 0xbf, 0xf7, 0x29, 0x4b, 0x44, 0xe4, 0x9d, 0xa5, 0x22, 0x36, 0xc2, 0x03, 0x10, 0x42, 0x7b,
0x14, 0x3a, 0xde, 0xe0, 0x0c, 0x26, 0x85, 0x5b, 0x1a, 0xcd, 0xb6, 0xc6, 0x32, 0xf3, 0x82, 0x00,
0x52, 0x09, 0xec, 0x75, 0xb9, 0x81, 0x77, 0x50, 0x4a, 0xb0, 0x62, 0xce, 0x82, 0x48, 0x2a, 0x00,
0xfa, 0xfe, 0xa7, 0x4f, 0x1f, 0x39, 0xfb, 0x9c, 0x79, 0x55, 0x4a, 0x1b, 0x0f, 0xf9, 0x68, 0xe3,
0x94, 0xa0, 0x60, 0x5b, 0xe9, 0xf1, 0x6e, 0x33, 0x3d, 0x38, 0xe7, 0x4d, 0xe4, 0x83, 0xd8, 0xe1,
0xdc, 0x6f, 0xdf, 0x6f, 0xe7, 0xd1, 0xe0, 0x31, 0x41, 0xfe, 0x95, 0xe0, 0x78, 0x26, 0xc6, 0x57,
0x14, 0xa3, 0xc1, 0x82, 0xd8, 0x42, 0x71, 0x11, 0x11, 0xdb, 0x44, 0x5a, 0xe4, 0x69, 0x3c, 0x46,
0x14, 0x9d, 0x5f, 0x20, 0xd8, 0x60, 0xa7, 0x29, 0x46, 0xc6, 0x6a, 0xff, 0xe0, 0x28, 0xe8, 0xca,
0x89, 0xcf, 0x70, 0x8e, 0x91, 0xd0, 0xc0, 0x5d, 0x44, 0x14, 0x90, 0x48, 0x54, 0xb0, 0x05, 0x6e,
0x55, 0x2d, 0xd8, 0x0e, 0x8f, 0x82, 0x60, 0x31, 0xc9, 0xb4, 0x4f, 0x7a, 0x25, 0xf8, 0x40, 0xf6,
0x88, 0x65, 0xa2, 0x54, 0xa8, 0xa9, 0x9d, 0x75, 0x65, 0xb3, 0x19, 0x40, 0x91, 0xdd, 0xe1, 0x44,
0x33, 0xe7, 0xf2, 0x22, 0x58, 0xe0, 0x56, 0x44, 0xd7, 0x71, 0x5a, 0xc0, 0x4e, 0x12, 0xc5, 0x22,
0xf4, 0xca, 0x09, 0xd4, 0xae, 0x85, 0x80, 0xb0, 0xbd, 0x43, 0xb8, 0xc1, 0xb5, 0x99, 0xe6, 0x2c,
0x95, 0x73, 0xc1, 0xba, 0x23, 0xe4, 0xd4, 0xd5, 0xf2, 0x91, 0xfd, 0xf7, 0xf7, 0xd5, 0x4a, 0xef,
0xe0, 0x70, 0x75, 0xdd, 0x3f, 0x7a, 0xf9, 0x95, 0x1e, 0x2d, 0x92, 0x5a, 0xcd, 0xf6, 0x93, 0xd5,
0x9e, 0xa3, 0x63, 0x06, 0x0f, 0xab, 0xa9, 0x60, 0x1d, 0xf6, 0x6c, 0x32, 0x99, 0xb0, 0xe5, 0x52,
0xa4, 0x46, 0x2c, 0xcc, 0x8d, 0xb4, 0xe3, 0x99, 0x5f, 0xe2, 0x16, 0x2c, 0xc6, 0x08, 0x11, 0x36,
0x7c, 0xf3, 0x8a, 0x75, 0xca, 0xab, 0x93, 0x8f, 0xd5, 0xd5, 0xa7, 0xd3, 0xe1, 0x60, 0xbd, 0xf8,
0xa1, 0xba, 0x3c, 0x19, 0xb2, 0x8e, 0x7b, 0x6d, 0x37, 0x11, 0x93, 0xb8, 0x48, 0x6d, 0xa7, 0xf4,
0xd9, 0x92, 0x90, 0xfb, 0xff, 0x44, 0x6d, 0x1d, 0x7c, 0xc8, 0xbe, 0x33, 0xbc, 0x91, 0x22, 0x15,
0x56, 0x94, 0xdc, 0x1f, 0xd0, 0xc1, 0x89, 0x53, 0xec, 0xb9, 0x0a, 0xe5, 0x05, 0x78, 0xe2, 0xd4,
0x55, 0x80, 0x08, 0x69, 0xa7, 0xa5, 0x20, 0xe1, 0xa0, 0x12, 0x96, 0x41, 0xe0, 0xaa, 0x1b, 0x57,
0x61, 0xad, 0x49, 0x06, 0x5d, 0x72, 0x8a, 0x47, 0x21, 0x5a, 0x07, 0xe4, 0x37, 0x42, 0x99, 0x34,
0x6d, 0x17, 0x13, 0x59, 0x1a, 0x40, 0x31, 0x6b, 0x81, 0xbe, 0xed, 0xc9, 0x1a, 0x7a, 0x4b, 0xd0,
0x9f, 0xdb, 0x8b, 0x3e, 0x6f, 0x83, 0x53, 0x9c, 0x53, 0xf2, 0xc2, 0xcc, 0x7c, 0x5a, 0x0b, 0x5c,
0xad, 0x2c, 0xef, 0x9d, 0x49, 0x41, 0x6d, 0xc7, 0x57, 0xd2, 0x4f, 0x8b, 0x3e, 0x61, 0xca, 0x23,
0x66, 0xac, 0x4e, 0x4b, 0xaf, 0x5e, 0xc3, 0x09, 0x9a, 0x7e, 0x27, 0x05, 0xc8, 0x1d, 0xe9, 0x1c,
0x02, 0x3c, 0xd4, 0xe2, 0x15, 0xb0, 0x0a, 0xc9, 0xe8, 0xca, 0x7f, 0x93, 0xef, 0xf7, 0x66, 0xda,
0x73, 0xce, 0xaa, 0xfa, 0x93, 0xce, 0xf3, 0xef, 0xdb, 0xf9, 0x2d, 0xeb, 0xef, 0x77, 0xd7, 0xd8,
0xcb, 0x50, 0x3f, 0x82, 0x3d, 0xb4, 0xb0, 0x42, 0x5d, 0x29, 0x18, 0x4e, 0xe1, 0x65, 0x29, 0x38,
0xa4, 0x1a, 0xa7, 0x45, 0x82, 0x87, 0xf0, 0x70, 0x70, 0xbc, 0x61, 0x03, 0x54, 0x04, 0x9d, 0xf5,
0x7d, 0x13, 0xcf, 0x9b, 0xd6, 0xad, 0x2e, 0x1f, 0x3f, 0xb0, 0x5a, 0x63, 0xaf, 0x71, 0x68, 0xdd,
0x53, 0xf5, 0xa1, 0x35, 0x0e, 0xbd, 0x7d, 0xba, 0x73, 0x7d, 0x11, 0xa2, 0xaa, 0x3a, 0xe8, 0x1c,
0x73, 0x99, 0x30, 0xad, 0x5b, 0x04, 0xd5, 0xad, 0x72, 0x32, 0xad, 0xd2, 0x71, 0x94, 0xa1, 0x40,
0xc5, 0x8a, 0x75, 0x52, 0xce, 0x1c, 0xe1, 0x8d, 0xb2, 0x5b, 0x16, 0x1a, 0xbe, 0x5f, 0x86, 0x3d,
0xb3, 0xba, 0x10, 0x6c, 0xbf, 0xe9, 0xab, 0x63, 0x56, 0x12, 0x22, 0xc2, 0xba, 0x83, 0x48, 0x29,
0x43, 0xbb, 0xeb, 0x74, 0x54, 0x84, 0xd7, 0x31, 0xfc, 0xb2, 0xda, 0xb5, 0xbb, 0x50, 0x4b, 0x76,
0x19, 0x56, 0x71, 0xc6, 0xed, 0x46, 0x5c, 0x1d, 0xfb, 0x84, 0xb3, 0x87, 0xd6, 0x8e, 0xb3, 0xa3,
0x97, 0xcc, 0x9b, 0x4b, 0xc5, 0xd9, 0xc1, 0x21, 0xb4, 0xa7, 0xb1, 0x31, 0x9c, 0x19, 0xb6, 0x0f,
0x73, 0x99, 0x54, 0xa8, 0xdb, 0x1d, 0x27, 0x8a, 0xc2, 0x9a, 0x73, 0x16, 0xab, 0xbb, 0x95, 0xcc,
0xed, 0x6d, 0xca, 0xf6, 0xbb, 0xdb, 0xdc, 0x80, 0x3d, 0x54, 0xf7, 0xc9, 0xf6, 0x2d, 0x2b, 0x1e,
0xb8, 0xf3, 0x3b, 0xb8, 0xb3, 0xcb, 0x2e, 0x97, 0x0f, 0x9c, 0x83, 0x40, 0xac, 0x42, 0x40, 0xd4,
0xb6, 0x92, 0x44, 0x22, 0x6e, 0x4f, 0x27, 0x4e, 0xa0, 0x79, 0x88, 0x3a, 0x55, 0x89, 0x5c, 0x7a,
0xbb, 0x0b, 0xbb, 0xec, 0x78, 0x38, 0xe0, 0x0a, 0x32, 0xce, 0xd3, 0xe3, 0xfa, 0x71, 0x4f, 0xaa,
0xbc, 0xb0, 0x1e, 0x41, 0xce, 0xd9, 0x4c, 0x26, 0x09, 0xfa, 0x67, 0xaf, 0x6c, 0x54, 0x77, 0x17,
0x62, 0xd9, 0xa1, 0xdd, 0xbb, 0x0b, 0x79, 0x4c, 0x59, 0x07, 0x2c, 0x61, 0x63, 0x65, 0xf0, 0x24,
0x86, 0xcb, 0x58, 0xff, 0xb2, 0x23, 0x51, 0x07, 0xff, 0x6b, 0x6d, 0xbb, 0x8b, 0x74, 0x09, 0x65,
0x6b, 0xb3, 0xb7, 0x34, 0xed, 0x2e, 0x1c, 0xc6, 0x9c, 0x0c, 0x5f, 0x79, 0x10, 0x1b, 0xbe, 0xad,
0x7a, 0x77, 0x61, 0x96, 0xe8, 0x61, 0x9c, 0xa2, 0x2a, 0x60, 0x7c, 0x3b, 0x93, 0x26, 0xdc, 0xdf,
0x5d, 0x3c, 0x8d, 0xdc, 0x72, 0x3f, 0x40, 0x67, 0x3e, 0xd2, 0xfd, 0xcb, 0xe5, 0x56, 0x4a, 0xbe,
0xd1, 0x59, 0x8e, 0xce, 0x44, 0x95, 0x45, 0xf6, 0xa9, 0x2e, 0x50, 0xa4, 0xd4, 0xe5, 0x06, 0x48,
0xda, 0xcd, 0xfe, 0xd8, 0xbc, 0xbe, 0xfb, 0x0c, 0x4b, 0xeb, 0xe4, 0x09, 0xce, 0x0f, 0x2f, 0xa8,
0xfa, 0x4a, 0x10, 0xfc, 0xe0, 0xf3, 0xd9, 0xcf, 0x3f, 0xd1, 0xc9, 0x64, 0x64, 0xe3, 0x29, 0x49,
0xc1, 0xbd, 0x65, 0x74, 0x94, 0x8b, 0x00, 0xe0, 0xfe, 0x7e, 0x5d, 0xa7, 0xab, 0xa5, 0xa0, 0x34,
0x41, 0xe0, 0xd6, 0x21, 0xd8, 0x95, 0xae, 0x6e, 0x75, 0xb7, 0x13, 0x4f, 0x46, 0x71, 0xdd, 0x47,
0xae, 0x4a, 0x4f, 0xb3, 0xa9, 0xcb, 0x1e, 0xc1, 0xf0, 0xcd, 0xc7, 0x48, 0xc4, 0x6e, 0xd9, 0x93,
0xee, 0x70, 0xe3, 0x74, 0xc1, 0x38, 0xa7, 0x7a, 0x73, 0xc1, 0xc5, 0xf4, 0xe6, 0x82, 0x0b, 0xd8,
0x8d, 0x85, 0x07, 0xcd, 0x6b, 0xb9, 0x1c, 0x9a, 0xd2, 0xc8, 0x60, 0x59, 0x35, 0x32, 0x0f, 0x5b,
0x5c, 0x6a, 0x0a, 0x0f, 0x20, 0xe2, 0x3a, 0x4c, 0x19, 0xe5, 0xb1, 0x06, 0x68, 0x15, 0x76, 0x35,
0xef, 0x57, 0xfd, 0x6e, 0x08, 0xe6, 0x55, 0x2b, 0x3d, 0x45, 0x9a, 0x6e, 0x39, 0xe9, 0x34, 0xa7,
0xab, 0x92, 0x5a, 0x1c, 0x67, 0x92, 0x04, 0x40, 0x13, 0x41, 0xb9, 0xa3, 0x4b, 0xa0, 0xc9, 0xaf,
0xfd, 0x96, 0xb9, 0x7d, 0x60, 0x8a, 0x0a, 0x4e, 0x94, 0x22, 0xe0, 0x0c, 0x27, 0x70, 0x1b, 0x8a,
0xad, 0x86, 0x1b, 0x95, 0x89, 0x30, 0x26, 0x3d, 0x25, 0xa3, 0xa3, 0x54, 0xd2, 0x83, 0xcf, 0x68,
0x2d, 0xcd, 0x26, 0xb9, 0x2f, 0x36, 0x1f, 0x80, 0xe0, 0xeb, 0xda, 0x2c, 0x22, 0x3a, 0x2d, 0xce,
0x4f, 0x0b, 0xf0, 0x35, 0xb5, 0x9a, 0x14, 0x34, 0x22, 0x19, 0x50, 0x20, 0x72, 0x1b, 0x6c, 0xc7,
0xdd, 0x40, 0x4d, 0xb2, 0xfa, 0x40, 0xb5, 0xf5, 0x8f, 0x44, 0x16, 0x99, 0x5e, 0xbe, 0x9d, 0xe2,
0x07, 0x91, 0x8d, 0xee, 0x7c, 0x3d, 0x6d, 0xd9, 0xbd, 0x3d, 0x79, 0xde, 0xbe, 0x38, 0xa6, 0x9f,
0xc8, 0xc1, 0x39, 0xcb, 0xd2, 0x04, 0x25, 0xd7, 0x76, 0xa8, 0xf8, 0xd0, 0x53, 0x58, 0x88, 0x5a,
0x84, 0xe6, 0xfe, 0x55, 0xf2, 0x05, 0xcf, 0x95, 0xa5, 0x66, 0x16, 0xd3, 0xc7, 0x04, 0x5d, 0x32,
0x4e, 0x8f, 0x92, 0xbb, 0xa7, 0x46, 0x26, 0xef, 0xb2, 0x26, 0xf8, 0x7d, 0x63, 0x3a, 0xa2, 0x76,
0x78, 0x31, 0x11, 0xc4, 0xd3, 0xd4, 0x72, 0x1f, 0xbb, 0x51, 0x0d, 0x93, 0x1a, 0x6b, 0xba, 0x96,
0x99, 0xf8, 0xb7, 0xc9, 0x5a, 0xe3, 0xc9, 0x34, 0xfa, 0x62, 0x00, 0x71, 0xb8, 0xc0, 0x68, 0x3d,
0xcb, 0x92, 0x0e, 0xc3, 0x21, 0xd8, 0x32, 0x88, 0xec, 0x0c, 0x13, 0x18, 0x06, 0x10, 0x00, 0x91,
0x5d, 0xd5, 0x2d, 0x35, 0xa8, 0x45, 0x6b, 0x2a, 0xf1, 0xae, 0x17, 0x49, 0xa4, 0x81, 0xcd, 0x77,
0x44, 0xb4, 0xa9, 0x54, 0x02, 0xe9, 0x25, 0x9c, 0x32, 0x1f, 0xfd, 0xf8, 0x6a, 0x3f, 0x79, 0xbb,
0x9c, 0x83, 0x45, 0x54, 0xcc, 0xc3, 0x75, 0x4f, 0x52, 0x52, 0x0a, 0x67, 0x2c, 0xa4, 0x02, 0xea,
0x44, 0x36, 0xbb, 0x13, 0x40, 0xfb, 0x48, 0x85, 0xac, 0xc4, 0x56, 0x6c, 0x34, 0xd3, 0xfd, 0xde,
0xec, 0xa8, 0x4f, 0x4c, 0xd3, 0x6b, 0xe1, 0xe2, 0x32, 0xdc, 0xa8, 0x63, 0xab, 0x5a, 0x0a, 0x66,
0xe8, 0x32, 0x4a, 0x52, 0xb7, 0xaf, 0xe6, 0x69, 0xce, 0x56, 0xe3, 0xc0, 0xf6, 0xac, 0xa4, 0x32,
0x0c, 0x4a, 0x59, 0xa1, 0x92, 0x88, 0xf8, 0xe6, 0x4c, 0x0b, 0x63, 0xbc, 0x9e, 0xec, 0x0f, 0xe3,
0x6b, 0xd1, 0x6b, 0xc9, 0xbe, 0x67, 0x33, 0xaf, 0xfa, 0xca, 0x20, 0xff, 0x85, 0xc9, 0xa9, 0x2c,
0x1e, 0x06, 0x93, 0x44, 0xf8, 0xd8, 0xdc, 0x51, 0x7e, 0x15, 0xa8, 0xa6, 0xd5, 0x6f, 0xb8, 0xa2,
0x9e, 0x75, 0x5b, 0x06, 0x20, 0x1e, 0xe7, 0xfc, 0x05, 0x0b, 0xd1, 0x60, 0xc0, 0x13, 0x98, 0xb8,
0xa8, 0x01, 0x06, 0x94, 0xff, 0x81, 0x0f, 0xc2, 0xcd, 0x79, 0x51, 0x6c, 0xcd, 0x73, 0xe6, 0x7a,
0x48, 0xad, 0xa0, 0xc0, 0xec, 0x26, 0x68, 0xdc, 0x7c, 0x53, 0x1a, 0xee, 0xd3, 0x00, 0x3b, 0x9c,
0x44, 0x8e, 0x88, 0x7f, 0xc1, 0x99, 0x12, 0x69, 0xef, 0x7c, 0x54, 0x33, 0xb7, 0x0a, 0x3a, 0x9e,
0x4b, 0xc8, 0x2c, 0x1b, 0xbd, 0x56, 0xf5, 0xdd, 0xa3, 0xe7, 0xde, 0xdc, 0xff, 0x41, 0xce, 0xe9,
0x73, 0x89, 0x57, 0xe8, 0xd4, 0x67, 0x55, 0x73, 0x0a, 0x12, 0x0a, 0xba, 0x10, 0x74, 0x02, 0x70,
0x88, 0x88, 0x13, 0x70, 0x36, 0x86, 0x63, 0xf0, 0x3d, 0x21, 0xc0, 0x19, 0xa2, 0x12, 0x34, 0x0e,
0x37, 0xcf, 0x1b, 0x9e, 0xc4, 0x3d, 0x5d, 0xfd, 0x66, 0xea, 0x8a, 0x31, 0x9c, 0xa0, 0x98, 0xbb,
0x38, 0xe4, 0x2c, 0xcf, 0x8c, 0x65, 0xd8, 0x57, 0x5a, 0x80, 0xa2, 0x4e, 0xe6, 0x93, 0xdd, 0xa4,
0x20, 0x91, 0xd7, 0x75, 0x21, 0xb7, 0x19, 0x66, 0xc9, 0x1b, 0xd6, 0x6f, 0x6c, 0x2e, 0xce, 0x44,
0x9a, 0xbf, 0xa6, 0x7a, 0x51, 0x58, 0x8b, 0xa3, 0x97, 0xe5, 0xaa, 0xbc, 0x21, 0x9d, 0xe3, 0x54,
0x8e, 0xaf, 0x38, 0x7b, 0x4f, 0xc6, 0x1c, 0xf7, 0x5a, 0xe5, 0x03, 0x18, 0x0c, 0x0d, 0xab, 0x3d,
0x8d, 0x27, 0x36, 0xbd, 0xa6, 0x4d, 0xaf, 0xe3, 0xf1, 0xd5, 0x7a, 0xdf, 0xd6, 0x5b, 0x4a, 0x7b,
0x59, 0x15, 0x2e, 0x2b, 0x11, 0x0d, 0x03, 0x4d, 0x1e, 0x2b, 0x77, 0xea, 0xd4, 0x98, 0x62, 0xbc,
0x6a, 0x2b, 0x5c, 0x4f, 0xdf, 0x99, 0x6a, 0x21, 0x54, 0xb7, 0xf2, 0x67, 0x47, 0x65, 0x70, 0x66,
0x7f, 0xef, 0xd9, 0x61, 0xbb, 0xdd, 0xfe, 0x4b, 0xd7, 0x3b, 0xd9, 0x1e, 0xe6, 0xa1, 0x3a, 0xd9,
0x21, 0x8f, 0x40, 0x61, 0xdf, 0xdb, 0xd4, 0x4b, 0xb1, 0xb1, 0xad, 0x17, 0x43, 0xc4, 0x03, 0xad,
0x8d, 0xbd, 0x67, 0x2f, 0x5f, 0xbc, 0x78, 0x41, 0x5a, 0x8b, 0x34, 0x71, 0xe1, 0x4e, 0xce, 0xd9,
0xce, 0x82, 0xa8, 0xd2, 0xee, 0x52, 0xac, 0x04, 0x66, 0xf6, 0x7c, 0xf3, 0x9b, 0x58, 0x91, 0xc3,
0xc1, 0xcf, 0xfb, 0x8d, 0x1f, 0xd3, 0x6c, 0x14, 0xa7, 0xde, 0xa0, 0x67, 0x8a, 0xbc, 0xff, 0x1c,
0xbb, 0xf0, 0x77, 0xe2, 0xfd, 0x78, 0x36, 0x38, 0x35, 0x9e, 0xff, 0xfe, 0xd7, 0x80, 0x8e, 0xde,
0x93, 0xdb, 0x36, 0x55, 0x33, 0x4b, 0xbf, 0xe1, 0x23, 0x2e, 0xee, 0xe8, 0x8b, 0xa0, 0x9a, 0xd2,
0xf7, 0x38, 0xfa, 0xb4, 0xf1, 0x76, 0x78, 0x76, 0xf4, 0x3c, 0x2c, 0xd7, 0x84, 0xa7, 0xc5, 0x3f,
0x0b, 0x89, 0x0c, 0xc4, 0x05, 0xda, 0x4c, 0xbb, 0x13, 0x50, 0x06, 0x92, 0x4a, 0xcc, 0x80, 0x9d,
0xaa, 0x19, 0xa9, 0x3c, 0x55, 0xd5, 0xe2, 0x75, 0x37, 0x58, 0xf6, 0x87, 0x47, 0xab, 0xe0, 0xc2,
0xd4, 0x48, 0x6e, 0x74, 0x8a, 0xf9, 0xfe, 0x46, 0xe3, 0x41, 0xe3, 0x5c, 0xb0, 0xef, 0x35, 0x56,
0xed, 0xa3, 0xb7, 0xc9, 0xc5, 0x6e, 0x63, 0xdf, 0xc3, 0x54, 0xd9, 0xd9, 0xea, 0x7e, 0x9e, 0x7e,
0x5f, 0xf5, 0x45, 0x91, 0x86, 0xd3, 0x6f, 0xbe, 0xf0, 0xa9, 0xf7, 0x61, 0x1f, 0xe1, 0xee, 0x35,
0x1e, 0x1b, 0x23, 0x2a, 0xbc, 0x87, 0x67, 0x83, 0xff, 0x3d, 0xc8, 0x34, 0x54, 0xff, 0x41, 0x94,
0xdd, 0x1c, 0xfe, 0xa7, 0x60, 0x76, 0x3b, 0x1d, 0xce, 0x1f, 0xfe, 0x38, 0xd0, 0x1f, 0xfe, 0x2c,
0xd2, 0x1f, 0x2a, 0x36, 0x69, 0x50, 0xfe, 0x80, 0xba, 0xfb, 0xf5, 0x27, 0xb4, 0x9a, 0x8f, 0xa3,
0x28, 0xaa, 0xe3, 0x5f, 0xff, 0x1e, 0xa1, 0xac, 0xb8, 0xa1, 0xf1, 0x87, 0xc8, 0xa1, 0x45, 0x2c,
0x88, 0x3f, 0x62, 0x4a, 0xa2, 0x4d, 0xfa, 0x76, 0xfe, 0x6f, 0x7c, 0x47, 0x58, 0x8b, 0x51, 0x17,
0x00, 0x00
};
// Autogenerated from wled00/data/settings_pin.htm, do not edit!!
const uint16_t PAGE_settings_pin_length = 471;
const uint8_t PAGE_settings_pin[] PROGMEM = {

View File

@@ -27,7 +27,6 @@ void UsermodManager::addToJsonState(JsonObject& obj) { for (byte i = 0; i < n
void UsermodManager::addToJsonInfo(JsonObject& obj) { for (byte i = 0; i < numMods; i++) ums[i]->addToJsonInfo(obj); }
void UsermodManager::readFromJsonState(JsonObject& obj) { for (byte i = 0; i < numMods; i++) ums[i]->readFromJsonState(obj); }
void UsermodManager::addToConfig(JsonObject& obj) { for (byte i = 0; i < numMods; i++) ums[i]->addToConfig(obj); }
void UsermodManager::addToConfigMenu(JsonObject& obj) { for (byte i = 0; i < numMods; i++) ums[i]->addToConfigMenu(obj); }
bool UsermodManager::readFromConfig(JsonObject& obj) {
bool allComplete = true;
for (byte i = 0; i < numMods; i++) {

View File

@@ -534,7 +534,6 @@ void serveSettings(AsyncWebServerRequest* request, bool post)
else if (url.indexOf("dmx") > 0) subPage = 7;
else if (url.indexOf("um") > 0) subPage = 8;
else if (url.indexOf("2D") > 0) subPage = 10;
else if (url.indexOf("ar") > 0) subPage = 11;
else if (url.indexOf("lock") > 0) subPage = 251;
}
else if (url.indexOf("/update") >= 0) subPage = 9; // update page, for PIN check
@@ -599,7 +598,6 @@ void serveSettings(AsyncWebServerRequest* request, bool post)
case 8: response = request->beginResponse_P(200, "text/html", PAGE_settings_um, PAGE_settings_um_length); break;
case 9: response = request->beginResponse_P(200, "text/html", PAGE_update, PAGE_update_length); break;
case 10: response = request->beginResponse_P(200, "text/html", PAGE_settings_2D, PAGE_settings_2D_length); break;
case 11: response = request->beginResponse_P(200, "text/html", PAGE_settings_um2, PAGE_settings_um2_length); break;
case 251: {
correctPIN = !strlen(settingsPIN); // lock if a pin is set
createEditHandler(correctPIN);