General cleanup & optimisations.

Pushing memory to (safe-ish) limits.
This commit is contained in:
Blaz Kristan 2021-03-03 22:04:24 +01:00
parent 6e19e6f0a0
commit e5417d12ca
12 changed files with 632 additions and 641 deletions

View File

@ -2808,7 +2808,7 @@ typedef struct particle {
uint16_t WS2812FX::mode_starburst(void) {
uint8_t numStars = 1 + (SEGLEN >> 3);
if (numStars > 15) numStars = 15;
if (numStars > 11) numStars = 11; // allowing for more segments
uint16_t dataSize = sizeof(star) * numStars;
if (!SEGENV.allocateData(dataSize)) return mode_static(); //allocation failed

View File

@ -60,11 +60,11 @@
/* How many color transitions can run at once */
#define MAX_NUM_TRANSITIONS 8
/* How much data bytes all segments combined may allocate */
#define MAX_SEGMENT_DATA 2560
#define MAX_SEGMENT_DATA 4096
#else
#define MAX_NUM_SEGMENTS 16
#define MAX_NUM_TRANSITIONS 16
#define MAX_SEGMENT_DATA 8192
#define MAX_NUM_SEGMENTS 18
#define MAX_NUM_TRANSITIONS 18
#define MAX_SEGMENT_DATA 16384
#endif
#define LED_SKIP_AMOUNT 1

View File

@ -79,7 +79,8 @@ void deserializeConfig() {
JsonArray ap_ip = ap[F("ip")];
for (byte i = 0; i < 4; i++) {
apIP[i] = ap_ip;
}*/
}
*/
noWifiSleep = doc[F("wifi")][F("sleep")] | !noWifiSleep; // inverted
noWifiSleep = !noWifiSleep;
@ -137,7 +138,7 @@ void deserializeConfig() {
if (mem <= MAX_LED_MEMORY) busses.add(bc);
}
if (lC > ledCount) ledCount = lC; // fix incorrect total length (honour analog setup)
strip.finalizeInit();
//strip.finalizeInit(); // will be done in WLED::beginStrip()
JsonObject hw_btn_ins_0 = hw[F("btn")][F("ins")][0];
CJSON(buttonEnabled, hw_btn_ins_0[F("type")]);

View File

@ -166,7 +166,6 @@
<div id="Segments" class="tabcontent">
<div id="segutil" class="staytop">
</div>
<div id="segcont">
Loading...
@ -178,10 +177,8 @@
<div id="Favorites" class="tabcontent">
<div id="putil" class="staytop">
</div>
<div id="pql">
</div>
<div id="pcont">
Loading...

View File

@ -153,12 +153,12 @@ function cTheme(light) {
function loadBg(iUrl) {
let bg = document.getElementById('bg');
let img = document.createElement("img");
img.src = iUrl;
if (iUrl == "") {
var today = new Date();
if (today.getMonth() == 11 && (today.getDate() > 23 && today.getDate() < 28)) img.src = "https://aircoookie.github.io/xmas.png";
}
let img = document.createElement("img");
img.src = iUrl;
if (iUrl == "") {
var today = new Date();
if (today.getMonth() == 11 && (today.getDate() > 23 && today.getDate() < 28)) img.src = "https://aircoookie.github.io/xmas.png";
}
img.addEventListener('load', (event) => {
var a = parseFloat(cfg.theme.alpha.bg);
if (isNaN(a)) a = 0.6;
@ -468,21 +468,20 @@ function populateQL()
{
var cn = "";
if (pQL.length > 0) {
cn += `<p class="labels">Quick load</p>`;
cn += `<p class="labels">Quick load</p>`;
var it = 0;
for (var key of (pQL||[]))
{
cn += `<button class="xxs btn psts" id="p${key[0]}qlb" onclick="setPreset(${key[0]});">${key[1]}</button>`;
it++;
if (it > 4) {
it = 0;
cn += '<br>';
}
}
if (it != 0) cn+= '<br>';
var it = 0;
for (var key of (pQL||[])) {
cn += `<button class="xxs btn psts" id="p${key[0]}qlb" onclick="setPreset(${key[0]});">${key[1]}</button>`;
it++;
if (it > 4) {
it = 0;
cn += '<br>';
}
}
if (it != 0) cn+= '<br>';
cn += `<p class="labels">All presets</p>`;
cn += `<p class="labels">All presets</p>`;
}
d.getElementById('pql').innerHTML = cn;
}
@ -504,12 +503,12 @@ function populatePresets(fromls)
if (!isObject(key[1])) continue;
let i = parseInt(key[0]);
var qll = key[1].ql;
if (qll) pQL.push([i, qll]);
is.push(i);
if (qll) pQL.push([i, qll]);
is.push(i);
cn += `<div class="seg pres" id="p${i}o">`;
if (cfg.comp.pid) cn += `<div class="pid">${i}</div>`;
cn += `<div class="segname pname" onclick="setPreset(${i})">${pName(i)}</div>
cn += `<div class="seg pres" id="p${i}o">`;
if (cfg.comp.pid) cn += `<div class="pid">${i}</div>`;
cn += `<div class="segname pname" onclick="setPreset(${i})">${pName(i)}</div>
<i class="icons e-icon flr ${expanded[i+100] ? "exp":""}" id="sege${i+100}" onclick="expand(${i+100})">&#xe395;</i>
<div class="segin" id="seg${i+100}"></div>
</div><br>`;
@ -593,6 +592,7 @@ ${inforow("Signal strength",i.wifi.signal +"% ("+ i.wifi.rssi, " dBm)")}
${inforow("Uptime",getRuntimeStr(i.uptime))}
${inforow("Free heap",heap," kB")}
${inforow("Estimated current",pwru)}
${inforow("Average FPS",i.leds.fps)}
${inforow("MAC address",i.mac)}
${inforow("Filesystem",i.fs.u + "/" + i.fs.t + " kB (" +Math.round(i.fs.u*100/i.fs.t) + "%)")}
${inforow("Environment",i.arch + " " + i.core + " (" + i.lwip + ")")}
@ -616,56 +616,56 @@ function populateSegments(s)
if (i > lSeg) lSeg = i;
cn += `<div class="seg">
<label class="check schkl">
&nbsp;
<input type="checkbox" id="seg${i}sel" onchange="selSeg(${i})" ${inst.sel ? "checked":""}>
<span class="checkmark schk"></span>
</label>
<div class="segname" onclick="selSegEx(${i})">
Segment ${i}
</div>
<i class="icons e-icon flr ${expanded[i] ? "exp":""}" id="sege${i}" onclick="expand(${i})">&#xe395;</i>
<div class="segin ${expanded[i] ? "expanded":""}" id="seg${i}">
<table class="segt">
<tr>
<td class="segtd">Start LED</td>
<td class="segtd">Stop LED</td>
</tr>
<tr>
<td class="segtd"><input class="noslide segn" id="seg${i}s" type="number" min="0" max="${ledCount-1}" value="${inst.start}" oninput="updateLen(${i})"></td>
<td class="segtd"><input class="noslide segn" id="seg${i}e" type="number" min="0" max="${ledCount}" value="${inst.stop}" oninput="updateLen(${i})"></td>
</tr>
</table>
<table class="segt">
<tr>
<td class="segtd">Grouping</td>
<td class="segtd">Spacing</td>
</tr>
<tr>
<td class="segtd"><input class="noslide segn" id="seg${i}grp" type="number" min="1" max="255" value="${inst.grp}" oninput="updateLen(${i})"></td>
<td class="segtd"><input class="noslide segn" id="seg${i}spc" type="number" min="0" max="255" value="${inst.spc}" oninput="updateLen(${i})"></td>
</tr>
</table>
<div class="h bp" id="seg${i}len"></div>
<i class="icons e-icon pwr ${powered[i] ? "act":""}" id="seg${i}pwr" onclick="setSegPwr(${i})">&#xe08f;</i>
<div class="sliderwrap il sws">
<input id="seg${i}bri" class="noslide sis" onchange="setSegBri(${i})" oninput="updateTrail(this)" max="255" min="1" type="range" value="${inst.bri}" />
<div class="sliderdisplay"></div>
</div>
<i class="icons e-icon cnf cnf-s" id="segc${i}" onclick="setSeg(${i})">&#xe390;</i>
<i class="icons e-icon del" id="segd${i}" onclick="delSeg(${i})">&#xe037;</i>
<label class="check revchkl">
Reverse direction
<input type="checkbox" id="seg${i}rev" onchange="setRev(${i})" ${inst.rev ? "checked":""}>
<span class="checkmark schk"></span>
</label>
<label class="check revchkl">
Mirror effect
<input type="checkbox" id="seg${i}mi" onchange="setMi(${i})" ${inst.mi ? "checked":""}>
<span class="checkmark schk"></span>
</label>
</div>
</div><br>`;
<label class="check schkl">
&nbsp;
<input type="checkbox" id="seg${i}sel" onchange="selSeg(${i})" ${inst.sel ? "checked":""}>
<span class="checkmark schk"></span>
</label>
<div class="segname" onclick="selSegEx(${i})">
Segment ${i}
</div>
<i class="icons e-icon flr ${expanded[i] ? "exp":""}" id="sege${i}" onclick="expand(${i})">&#xe395;</i>
<div class="segin ${expanded[i] ? "expanded":""}" id="seg${i}">
<table class="segt">
<tr>
<td class="segtd">Start LED</td>
<td class="segtd">Stop LED</td>
</tr>
<tr>
<td class="segtd"><input class="noslide segn" id="seg${i}s" type="number" min="0" max="${ledCount-1}" value="${inst.start}" oninput="updateLen(${i})"></td>
<td class="segtd"><input class="noslide segn" id="seg${i}e" type="number" min="0" max="${ledCount}" value="${inst.stop}" oninput="updateLen(${i})"></td>
</tr>
</table>
<table class="segt">
<tr>
<td class="segtd">Grouping</td>
<td class="segtd">Spacing</td>
</tr>
<tr>
<td class="segtd"><input class="noslide segn" id="seg${i}grp" type="number" min="1" max="255" value="${inst.grp}" oninput="updateLen(${i})"></td>
<td class="segtd"><input class="noslide segn" id="seg${i}spc" type="number" min="0" max="255" value="${inst.spc}" oninput="updateLen(${i})"></td>
</tr>
</table>
<div class="h bp" id="seg${i}len"></div>
<i class="icons e-icon pwr ${powered[i] ? "act":""}" id="seg${i}pwr" onclick="setSegPwr(${i})">&#xe08f;</i>
<div class="sliderwrap il sws">
<input id="seg${i}bri" class="noslide sis" onchange="setSegBri(${i})" oninput="updateTrail(this)" max="255" min="1" type="range" value="${inst.bri}" />
<div class="sliderdisplay"></div>
</div>
<i class="icons e-icon cnf cnf-s" id="segc${i}" onclick="setSeg(${i})">&#xe390;</i>
<i class="icons e-icon del" id="segd${i}" onclick="delSeg(${i})">&#xe037;</i>
<label class="check revchkl">
Reverse direction
<input type="checkbox" id="seg${i}rev" onchange="setRev(${i})" ${inst.rev ? "checked":""}>
<span class="checkmark schk"></span>
</label>
<label class="check revchkl">
Mirror effect
<input type="checkbox" id="seg${i}mi" onchange="setMi(${i})" ${inst.mi ? "checked":""}>
<span class="checkmark schk"></span>
</label>
</div>
</div><br>`;
}
d.getElementById('segcont').innerHTML = cn;
@ -677,9 +677,9 @@ function populateSegments(s)
noNewSegs = false;
}
for (var i = 0; i <= lSeg; i++) {
updateLen(i);
updateTrail(d.getElementById(`seg${i}bri`));
if (segCount < 2) d.getElementById(`segd${lSeg}`).style.display = "none";
updateLen(i);
updateTrail(d.getElementById(`seg${i}bri`));
if (segCount < 2) d.getElementById(`segd${lSeg}`).style.display = "none";
}
d.getElementById('rsbtn').style.display = (segCount > 1) ? "inline":"none";
}
@ -813,18 +813,18 @@ function genPalPrevCss(id)
function generateListItemHtml(listName, id, name, clickAction, extraHtml = '')
{
return `<div class="lstI" data-id="${id}">
<label class="check schkl">
&nbsp;
<input type="radio" value="${id}" name="${listName}" onChange="${clickAction}()">
<span class="checkmark schk"></span>
</label>
<div class="lstIcontent" onClick="${clickAction}(${id})">
<span class="lstIname">
${name}
</span>
${extraHtml}
</div>
</div>`;
<label class="check schkl">
&nbsp;
<input type="radio" value="${id}" name="${listName}" onChange="${clickAction}()">
<span class="checkmark schk"></span>
</label>
<div class="lstIcontent" onClick="${clickAction}(${id})">
<span class="lstIname">
${name}
</span>
${extraHtml}
</div>
</div>`;
}
function updateTrail(e, slidercol)
@ -919,9 +919,9 @@ function updateUI(scrollto=false)
function updateSelectedPalette(scrollto=false)
{
var parent = d.getElementById('selectPalette');
var selectedPaletteInput = parent.querySelector(`input[name="palette"][value="${selectedPal}"]`);
if (selectedPaletteInput) {
selectedPaletteInput.checked = true;
var selPaletteInput = parent.querySelector(`input[name="palette"][value="${selectedPal}"]`);
if (selPaletteInput) {
selPaletteInput.checked = true;
}
var selElement = parent.querySelector('.selected');
if (selElement) {
@ -945,9 +945,9 @@ function updateSelectedFx(scrollto=false)
{
var parent = d.getElementById('fxlist');
var selectedEffectInput = parent.querySelector(`input[name="fx"][value="${selectedFx}"]`);
if (selectedEffectInput) {
selectedEffectInput.checked = true;
var selEffectInput = parent.querySelector(`input[name="fx"][value="${selectedFx}"]`);
if (selEffectInput) {
selEffectInput.checked = true;
}
var selElement = parent.querySelector('.selected');
if (selElement) {
@ -1089,9 +1089,7 @@ function requestJson(command, rinfo = true, verbose = true, callback = null) {
if (!i) {
showToast('No Segments!', true);
updateUI(false);
if (callback) {
callback();
}
if (callback) callback();
return;
}
@ -1205,25 +1203,25 @@ function makeSeg() {
if (pend < ledCount) ns = pend;
}
var cn = `<div class="seg">
<div class="segname newseg">
New segment ${lowestUnused}
</div>
<br>
<div class="segin expanded">
<table class="segt">
<tr>
<td class="segtd">Start LED</td>
<td class="segtd">Stop LED</td>
</tr>
<tr>
<td class="segtd"><input class="noslide segn" id="seg${lowestUnused}s" type="number" min="0" max="${ledCount-1}" value="${ns}" oninput="updateLen(${lowestUnused})"></td>
<td class="segtd"><input class="noslide segn" id="seg${lowestUnused}e" type="number" min="0" max="${ledCount}" value="${ledCount}" oninput="updateLen(${lowestUnused})"></td>
</tr>
</table>
<div class="h" id="seg${lowestUnused}len">${ledCount - ns} LEDs</div>
<i class="icons e-icon cnf cnf-s half" id="segc${lowestUnused}" onclick="setSeg(${lowestUnused}); resetUtil();">&#xe390;</i>
</div>
</div>`;
<div class="segname newseg">
New segment ${lowestUnused}
</div>
<br>
<div class="segin expanded">
<table class="segt">
<tr>
<td class="segtd">Start LED</td>
<td class="segtd">Stop LED</td>
</tr>
<tr>
<td class="segtd"><input class="noslide segn" id="seg${lowestUnused}s" type="number" min="0" max="${ledCount-1}" value="${ns}" oninput="updateLen(${lowestUnused})"></td>
<td class="segtd"><input class="noslide segn" id="seg${lowestUnused}e" type="number" min="0" max="${ledCount}" value="${ledCount}" oninput="updateLen(${lowestUnused})"></td>
</tr>
</table>
<div class="h" id="seg${lowestUnused}len">${ledCount - ns} LEDs</div>
<i class="icons e-icon cnf cnf-s half" id="segc${lowestUnused}" onclick="setSeg(${lowestUnused}); resetUtil();">&#xe390;</i>
</div>
</div>`;
d.getElementById('segutil').innerHTML = cn;
}
@ -1233,41 +1231,38 @@ function resetUtil() {
}
function makeP(i) {
return `
<input type="text" class="ptxt noslide" id="p${i}txt" autocomplete="off" maxlength=32 value="${(i>0)?pName(i):""}" placeholder="Enter name..."/><br>
<div class="c">Quick load label: <input type="text" class="stxt noslide" maxlength=2 value="${qlName(i)}" id="p${i}ql" autocomplete="off"/></div>
<div class="h">(leave empty for no Quick load button)</div>
return `<input type="text" class="ptxt noslide" id="p${i}txt" autocomplete="off" maxlength=32 value="${(i>0)?pName(i):""}" placeholder="Enter name..."/><br>
<div class="c">Quick load label: <input type="text" class="stxt noslide" maxlength=2 value="${qlName(i)}" id="p${i}ql" autocomplete="off"/></div>
<div class="h">(leave empty for no Quick load button)</div>
<label class="check revchkl">
${(i>0)?"Overwrite with state":"Use current state"}
<input type="checkbox" id="p${i}cstgl" onchange="tglCs(${i})" ${(i>0)?"":"checked"}>
<span class="checkmark schk"></span>
</label><br>
<div class="po2" id="p${i}o2">
API command<br>
<textarea class="noslide" id="p${i}api"></textarea>
</div>
<div class="po1" id="p${i}o1">
<label class="check revchkl">
${(i>0)?"Overwrite with state":"Use current state"}
<input type="checkbox" id="p${i}cstgl" onchange="tglCs(${i})" ${(i>0)?"":"checked"}>
Include brightness
<input type="checkbox" id="p${i}ibtgl" checked>
<span class="checkmark schk"></span>
</label><br>
<div class="po2" id="p${i}o2">
API command<br>
<textarea class="noslide" id="p${i}api"></textarea>
</div>
<div class="po1" id="p${i}o1">
<label class="check revchkl">
Include brightness
<input type="checkbox" id="p${i}ibtgl" checked>
<span class="checkmark schk"></span>
</label>
<label class="check revchkl">
Save segment bounds
<input type="checkbox" id="p${i}sbtgl" checked>
<span class="checkmark schk"></span>
</label>
</div>
<div class="c">Save to ID <input class="noslide" id="p${i}id" type="number" oninput="checkUsed(${i})" max=250 min=1 value=${(i>0)?i:getLowestUnusedP()}></div>
<div class="c">
<button class="btn btn-i btn-p" onclick="saveP(${i})"><i class="icons btn-icon">&#xe390;</i>${(i>0)?"Save changes":"Save preset"}</button>
${(i>0)?'<button class="btn btn-i btn-p" onclick="delP('+i+')"><i class="icons btn-icon">&#xe037;</i>Delete preset</button>':
'<button class="btn btn-p" onclick="resetPUtil()">Cancel</button>'}
</div>
<div class="pwarn ${(i>0)?"bp":""} c" id="p${i}warn">
</div>
${(i>0)? ('<div class="h">ID ' +i+ '</div>'):""}`;
</label>
<label class="check revchkl">
Save segment bounds
<input type="checkbox" id="p${i}sbtgl" checked>
<span class="checkmark schk"></span>
</label>
</div>
<div class="c">Save to ID <input class="noslide" id="p${i}id" type="number" oninput="checkUsed(${i})" max=250 min=1 value=${(i>0)?i:getLowestUnusedP()}></div>
<div class="c">
<button class="btn btn-i btn-p" onclick="saveP(${i})"><i class="icons btn-icon">&#xe390;</i>${(i>0)?"Save changes":"Save preset"}</button>
${(i>0)?'<button class="btn btn-i btn-p" onclick="delP('+i+')"><i class="icons btn-icon">&#xe037;</i>Delete preset</button>':'<button class="btn btn-p" onclick="resetPUtil()">Cancel</button>'}
</div>
<div class="pwarn ${(i>0)?"bp":""} c" id="p${i}warn">
</div>
${(i>0)? ('<div class="h">ID ' +i+ '</div>'):""}`;
}
function makePUtil() {
@ -1419,9 +1414,7 @@ function toggleCY() {
function setPreset(i) {
var obj = {"ps": i};
showToast("Loading preset " + pName(i) +" (" + i + ")");
requestJson(obj);
}
@ -1444,9 +1437,9 @@ function saveP(i) {
d.getElementById(`p${i}warn`).innerHTML = "&#9888; Syntax error in custom JSON API command";
return;
} else if (raw.indexOf("Please") == 0) {
d.getElementById(`p${i}warn`).innerHTML = "&#9888; Please refresh the page before modifying this preset";
d.getElementById(`p${i}warn`).innerHTML = "&#9888; Please refresh the page before modifying this preset";
return;
}
}
}
obj.o = true;
} else {
@ -1646,13 +1639,13 @@ function loadPalettesData()
}
function getPalettesDataCached() {
var palettesDataJson = localStorage.getItem(lsPalKey);
if (palettesDataJson) {
var palDataJson = localStorage.getItem(lsPalKey);
if (palDataJson) {
try {
palettesDataJson = JSON.parse(palettesDataJson);
palDataJson = JSON.parse(palDataJson);
var d = new Date();
if (palettesDataJson && palettesDataJson.expiration && palettesDataJson.expiration > d.getTime()) {
palettesData = palettesDataJson.p;
if (palDataJson && palDataJson.expiration && palDataJson.expiration > d.getTime()) {
palettesData = palDataJson.p;
redrawPalPrev();
return true;
}
@ -1718,20 +1711,26 @@ function clean(c) {
function expand(i,a)
{
var seg = d.getElementById('seg' +i);
if (!a) expanded[i] = !expanded[i];
d.getElementById('seg' +i).style.display = (expanded[i]) ? "block":"none";
seg.style.display = (expanded[i]) ? "block":"none";
d.getElementById('sege' +i).style.transform = (expanded[i]) ? "rotate(180deg)":"rotate(0deg)";
if (i > 100) { //presets
var p = i-100;
d.getElementById(`p${p}o`).style.background = (expanded[i] || p != currentPreset)?"var(--c-2)":"var(--c-6)";
if (d.getElementById('seg' +i).innerHTML == "") {
d.getElementById('seg' +i).innerHTML = makeP(p);
var papi = papiVal(p);
d.getElementById(`p${p}api`).value = papi;
if (papi.indexOf("Please") == 0) d.getElementById(`p${p}cstgl`).checked = true;
tglCs(p);
if (seg.innerHTML == "") {
seg.innerHTML = makeP(p);
var papi = papiVal(p);
d.getElementById(`p${p}api`).value = papi;
if (papi.indexOf("Please") == 0) d.getElementById(`p${p}cstgl`).checked = true;
tglCs(p);
}
seg = seg.parentElement;
}
if (expanded[i]) seg.scrollIntoView({
behavior: 'smooth',
block: 'center',
});
}
function unfocusSliders() {

View File

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

View File

@ -246,7 +246,7 @@ bool deserializeState(JsonObject root)
}
if (!didSet && lowestActive < strip.getMaxSegments()) deserializeSegment(segVar, lowestActive);
} else { //set only the segment with the specified ID
deserializeSegment(segVar, it);
deserializeSegment(segVar, id);
}
} else {
JsonArray segs = segVar.as<JsonArray>();

View File

@ -80,7 +80,7 @@ void _overlayAnalogClock()
void _overlayAnalogCountdown()
{
if (now() < countdownTime)
if ((unsigned long)now() < countdownTime)
{
long diff = countdownTime - now();
double pval = 60;

View File

@ -82,8 +82,6 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
if (irPin>=0 && pinManager.isPinAllocated(irPin)) pinManager.deallocatePin(irPin);
#endif
if (btnPin>=0 && pinManager.isPinAllocated(btnPin)) pinManager.deallocatePin(btnPin);
//TODO remove all busses, but not in this system call
//busses->removeAll();
skipFirstLed = request->hasArg(F("SL"));
useRGBW = false;
@ -120,14 +118,12 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
break; // no parameter
}
// actual finalization is done in loop()
// actual finalization is done in WLED::loop() (removing old busses and adding new)
if (busConfigs[s] != nullptr) delete busConfigs[s];
busConfigs[s] = new BusConfig(type, pins, start, length, colorOrder, request->hasArg(cv), skipFirstLed);
}
ledCount = request->arg(F("LC")).toInt();
// if (t > 0 && t <= MAX_LEDS) ledCount = t;
//DMA method uses too much ram, TODO: limit!
// upate other pins
#ifndef WLED_DISABLE_INFRARED

View File

@ -593,7 +593,7 @@ void WLED::handleConnection()
// reconnect WiFi to clear stale allocations if heap gets too low
if (millis() - heapTime > 5000) {
uint32_t heap = ESP.getFreeHeap();
if (heap < 9000 && lastHeap < 9000) {
if (heap < JSON_BUFFER_SIZE+512 && lastHeap < JSON_BUFFER_SIZE+512) {
DEBUG_PRINT(F("Heap too low! "));
DEBUG_PRINTLN(heap);
forceReconnect = true;

View File

@ -8,7 +8,7 @@
*/
// version code in format yymmddb (b = daily build)
#define VERSION 2103020
#define VERSION 2103030
//uncomment this if you have a "my_config.h" file you'd like to use
//#define WLED_USE_MY_CONFIG

View File

@ -256,7 +256,7 @@ void getSettingsJS(byte subPage, char* dest)
if (subPage == 2)
{
// add usermod pins as d.um_p array
// add reserved and usermod pins as d.um_p array
DynamicJsonDocument doc(JSON_BUFFER_SIZE/2);
JsonObject mods = doc.createNestedObject(F("um"));
usermods.addToConfig(mods);
@ -279,7 +279,7 @@ void getSettingsJS(byte subPage, char* dest)
if (i) oappend(SET_F(","));
oappend(SET_F("6,7,8,9,10,11")); // flash memory pins
#ifdef WLED_DEBUG
oappend(SET_F(",1"));
oappend(SET_F(",1")); // debug output (TX) pin
#endif
}
oappend(SET_F("];"));
@ -336,8 +336,6 @@ void getSettingsJS(byte subPage, char* dest)
}
sappend('v',SET_F("CA"),briS);
//sappend('c',SET_F("EW"),useRGBW);
//sappend('i',SET_F("CO"),strip.getColorOrder());
sappend('v',SET_F("AW"),strip.rgbwMode);
sappend('c',SET_F("BO"),turnOnAtBoot);
@ -353,7 +351,6 @@ void getSettingsJS(byte subPage, char* dest)
sappend('v',SET_F("TL"),nightlightDelayMinsDefault);
sappend('v',SET_F("TW"),nightlightMode);
sappend('i',SET_F("PB"),strip.paletteBlend);
// sappend('c',SET_F("RV"),strip.reverseMode);
sappend('c',SET_F("SL"),skipFirstLed);
sappend('v',SET_F("RL"),rlyPin);
sappend('c',SET_F("RM"),rlyMde);