Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-12-19 21:56:08 +0300
committerTon Roosendaal <ton@blender.org>2005-12-19 21:56:08 +0300
commit72d805f17d5e7732cf37c70c1ae732efd5d509c2 (patch)
tree69640121e30ca61b5c120a146c8f397a17839ae8
parent75a227e62009d8fb29f5bd7984ce82dcc4e68797 (diff)
parentc1a2851c0d791f3e041ec6d33747cd056919b6ad (diff)
Orange: monday merger with bf-blender (loadsa bugfixes).
ALso: a bit tidying up in editaction.c and python Object.c
-rw-r--r--source/blender/blenkernel/intern/DerivedMesh.c2
-rw-r--r--source/blender/blenkernel/intern/modifier.c11
-rw-r--r--source/blender/include/BIF_editaction.h4
-rw-r--r--source/blender/include/BIF_editconstraint.h1
-rw-r--r--source/blender/include/BIF_resources.h2
-rw-r--r--source/blender/python/api2_2x/Object.c14
-rw-r--r--source/blender/render/intern/source/imagetexture.c51
-rw-r--r--source/blender/render/intern/source/rendercore.c6
-rw-r--r--source/blender/render/intern/source/texture.c35
-rw-r--r--source/blender/src/blenderbuttons.c3025
-rw-r--r--source/blender/src/drawobject.c62
-rw-r--r--source/blender/src/editaction.c17
-rw-r--r--source/blender/src/editconstraint.c36
-rw-r--r--source/blender/src/editdeform.c33
-rw-r--r--source/blender/src/editipo_mods.c4
-rw-r--r--source/blender/src/editmesh.c2
-rw-r--r--source/blender/src/editmesh_tools.c2
-rw-r--r--source/blender/src/fluidsim.c14
-rw-r--r--source/blender/src/header_action.c73
-rw-r--r--source/blender/src/header_filesel.c2
-rw-r--r--source/blender/src/header_info.c8
-rw-r--r--source/blender/src/header_nla.c8
-rw-r--r--source/blender/src/header_view3d.c87
-rw-r--r--source/blender/src/outliner.c1
-rwxr-xr-xsource/blender/src/transform.c8
-rwxr-xr-xsource/blender/src/transform_conversions.c1
-rwxr-xr-xsource/blender/src/transform_generics.c9
-rw-r--r--source/blender/src/transform_manipulator.c23
-rw-r--r--source/gameengine/Ketsji/KX_IpoActuator.cpp16
-rw-r--r--source/gameengine/Ketsji/KX_KetsjiEngine.cpp29
-rw-r--r--source/gameengine/Ketsji/KX_KetsjiEngine.h11
-rw-r--r--source/gameengine/Ketsji/KX_Scene.cpp20
-rw-r--r--source/gameengine/Ketsji/KX_Scene.h22
33 files changed, 1964 insertions, 1675 deletions
diff --git a/source/blender/blenkernel/intern/DerivedMesh.c b/source/blender/blenkernel/intern/DerivedMesh.c
index a0713d3a7dd..0156d77c161 100644
--- a/source/blender/blenkernel/intern/DerivedMesh.c
+++ b/source/blender/blenkernel/intern/DerivedMesh.c
@@ -2266,7 +2266,7 @@ void loadFluidsimMesh(Object *srcob, int useRenderParams)
float *bbStart = NULL, *bbSize = NULL;
float lastBB[3];
int displaymode = 0;
- int curFrame = G.scene->r.cfra - 1; /* start with 0 */
+ int curFrame = G.scene->r.cfra - G.scene->r.sfra; /* start with 0 at start frame */
char targetDir[FILE_MAXFILE+FILE_MAXDIR], targetFile[FILE_MAXFILE+FILE_MAXDIR];
char debugStrBuffer[256];
//snprintf(debugStrBuffer,256,"loadFluidsimMesh call (obid '%s', rp %d)\n", srcob->id.name, useRenderParams); // debug
diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c
index 7f0a4e07309..3b37c2aba6c 100644
--- a/source/blender/blenkernel/intern/modifier.c
+++ b/source/blender/blenkernel/intern/modifier.c
@@ -1205,9 +1205,14 @@ static void *booleanModifier_applyModifier(ModifierData *md, Object *ob, void *d
{
// XXX doesn't handle derived data
BooleanModifierData *bmd = (BooleanModifierData*) md;
- DispListMesh *dlm = NewBooleanMeshDLM(bmd->object, ob, 1+bmd->operation);
-
- return derivedmesh_from_displistmesh(dlm, NULL);
+
+ /* we do a quick sanity check */
+ if( ((Mesh *)ob->data)->totface>3 && bmd->object && ((Mesh *)bmd->object->data)->totface>3) {
+ DispListMesh *dlm= NewBooleanMeshDLM(bmd->object, ob, 1+bmd->operation);
+
+ return derivedmesh_from_displistmesh(dlm, NULL);
+ }
+ else return derivedData;
}
/***/
diff --git a/source/blender/include/BIF_editaction.h b/source/blender/include/BIF_editaction.h
index 74ffbca1b9b..7471e80baa9 100644
--- a/source/blender/include/BIF_editaction.h
+++ b/source/blender/include/BIF_editaction.h
@@ -78,6 +78,10 @@ void transform_meshchannel_keys(char mode, struct Key *key);
struct Key *get_action_mesh_key(void);
int get_nearest_key_num(struct Key *key, short *mval, float *x);
void set_snap_actionchannels(void);
+void up_sel_action(void);
+void down_sel_action(void);
+void top_sel_action(void);
+void bottom_sel_action(void);
/* Handles */
void sethandles_meshchannel_keys(int code, struct Key *key);
diff --git a/source/blender/include/BIF_editconstraint.h b/source/blender/include/BIF_editconstraint.h
index 2ab72a304c2..5db034f57de 100644
--- a/source/blender/include/BIF_editconstraint.h
+++ b/source/blender/include/BIF_editconstraint.h
@@ -51,6 +51,7 @@ struct bConstraintChannel *get_active_constraint_channel(struct Object *ob);
void object_test_constraints(struct Object *owner);
void add_constraint(int only_IK);
+void ob_clear_constraints(void);
char *get_con_subtarget_name(struct bConstraint *con, struct Object *target);
diff --git a/source/blender/include/BIF_resources.h b/source/blender/include/BIF_resources.h
index d026d61b16f..70fecc83bad 100644
--- a/source/blender/include/BIF_resources.h
+++ b/source/blender/include/BIF_resources.h
@@ -158,7 +158,7 @@ typedef enum {
ICON_BPIBFOLDER_ERR,
ICON_UGLY_GREEN_RING,
ICON_GHOST,
- ICON_BLANK32,
+ ICON_SORTBYEXT,
ICON_BLANK33,
ICON_VERTEXSEL,
ICON_EDGESEL,
diff --git a/source/blender/python/api2_2x/Object.c b/source/blender/python/api2_2x/Object.c
index 0530295bcec..f74a0a176e4 100644
--- a/source/blender/python/api2_2x/Object.c
+++ b/source/blender/python/api2_2x/Object.c
@@ -44,6 +44,9 @@ struct rctf;
#include "DNA_view3d_types.h"
#include "DNA_object_force.h"
#include "DNA_userdef_types.h"
+#include "DNA_oops_types.h"
+
+#include "BKE_action.h"
#include "BKE_depsgraph.h"
#include "BKE_effect.h"
#include "BKE_font.h"
@@ -59,15 +62,20 @@ struct rctf;
#include "BKE_curve.h"
#include "BKE_global.h"
#include "BKE_main.h"
-#include "BIF_editview.h"
+
#include "BSE_editipo.h"
#include "BSE_edit.h"
+
#include "BIF_space.h"
-#include "DNA_oops_types.h"
+#include "BIF_editview.h"
+
#include "BLI_arithb.h"
#include "BLI_blenlib.h"
+
#include "BDR_editobject.h"
+
#include "MEM_guardedalloc.h"
+
#include "mydevice.h"
#include "blendef.h"
#include "Scene.h"
@@ -2219,7 +2227,6 @@ static PyObject *Object_insertMatrixKey( BPy_Object * self, PyObject * args )
int curframe;
/* for copying the current object/bone matrices to the new action */
- bPoseChannel *pchan;
float localQuat[4];
float tmat[4][4], startpos[4][4];
@@ -2273,7 +2280,6 @@ static PyObject *Object_insertMatrixKey( BPy_Object * self, PyObject * args )
static PyObject *Object_bake_to_action( BPy_Object * self, PyObject * args )
{
- Object *ob= self->object;
/* for doing the time trick, similar to editaction bake_action_with_client() */
//int oldframe;
diff --git a/source/blender/render/intern/source/imagetexture.c b/source/blender/render/intern/source/imagetexture.c
index 2ddf08b29cc..f412df84bca 100644
--- a/source/blender/render/intern/source/imagetexture.c
+++ b/source/blender/render/intern/source/imagetexture.c
@@ -496,6 +496,8 @@ static void boxsample(ImBuf *ibuf, float minx, float miny, float maxx, float max
rf->ymin= miny*(ibuf->y);
rf->ymax= maxy*(ibuf->y);
+ texr.talpha= texres->talpha; /* is read by boxsample_clip */
+
if(imapextend) {
CLAMP(rf->xmin, 0.0f, ibuf->x-1);
CLAMP(rf->xmax, 0.0f, ibuf->x-1);
@@ -552,7 +554,7 @@ static void boxsample(ImBuf *ibuf, float minx, float miny, float maxx, float max
if(texres->talpha==0) texres->ta= 1.0;
if(alphaclip!=1.0) {
- /* this is for laetr investigation, premul or not? */
+ /* this is for later investigation, premul or not? */
/* texres->tr*= alphaclip; */
/* texres->tg*= alphaclip; */
/* texres->tb*= alphaclip; */
@@ -589,13 +591,15 @@ int imagewraposa(Tex *tex, Image *ima, float *texvec, float *dxt, float *dyt, Te
ImBuf *ibuf, *previbuf;
float fx, fy, minx, maxx, miny, maxy, dx, dy;
float maxd, pixsize, val1, val2, val3;
- int curmap;
+ int curmap, retval;
texres->tin= texres->ta= texres->tr= texres->tg= texres->tb= 0.0;
-
+
+ /* we need to set retval OK, otherwise texture code generates normals itself... */
+ retval= texres->nor?3:1;
+
if(ima==NULL || ima->ok== 0) {
- if(texres->nor) return 3;
- else return 1;
+ return retval;
}
if(ima->ibuf==NULL) {
@@ -698,10 +702,10 @@ int imagewraposa(Tex *tex, Image *ima, float *texvec, float *dxt, float *dyt, Te
if(boundary==0) {
if( (tex->flag & TEX_CHECKER_ODD)==0) {
if((xs+ys) & 1);
- else return 0;
+ else return retval;
}
if( (tex->flag & TEX_CHECKER_EVEN)==0) {
- if((xs+ys) & 1) return 0;
+ if((xs+ys) & 1) return retval;
}
fx-= xs;
fy-= ys;
@@ -735,12 +739,12 @@ int imagewraposa(Tex *tex, Image *ima, float *texvec, float *dxt, float *dyt, Te
if(tex->extend == TEX_CLIPCUBE) {
if(fx+minx<0.0 || fy+miny<0.0 || fx-minx>1.0 || fy-miny>1.0 || texvec[2]<-1.0 || texvec[2]>1.0) {
- return 0;
+ return retval;
}
}
else if(tex->extend==TEX_CLIP || tex->extend==TEX_CHECKER) {
if(fx+minx<0.0 || fy+miny<0.0 || fx-minx>1.0 || fy-miny>1.0) {
- return 0;
+ return retval;
}
}
else {
@@ -806,9 +810,13 @@ int imagewraposa(Tex *tex, Image *ima, float *texvec, float *dxt, float *dyt, Te
boxsample(ibuf, fx-minx+dyt[0], fy-miny+dyt[1], fx+minx+dyt[0], fy+miny+dyt[1], &texr);
val3= texr.tr + texr.tg + texr.tb;
+ /* don't switch x or y! */
+ texres->nor[0]= (val1-val2);
+ texres->nor[1]= (val1-val3);
+
if(previbuf!=ibuf) { /* interpolate */
- boxsample(previbuf, fx-2.0f*minx, fy-2.0f*miny, fx+minx, fy+miny, &texr);
+ boxsample(previbuf, fx-minx, fy-miny, fx+minx, fy+miny, &texr);
/* calc rgb */
dx= 2.0f*(pixsize-maxd)/pixsize;
@@ -829,11 +837,22 @@ int imagewraposa(Tex *tex, Image *ima, float *texvec, float *dxt, float *dyt, Te
val2= dy*val2+ dx*(texr.tr + texr.tg + texr.tb);
boxsample(previbuf, fx-minx+dyt[0], fy-miny+dyt[1], fx+minx+dyt[0], fy+miny+dyt[1], &texr);
val3= dy*val3+ dx*(texr.tr + texr.tg + texr.tb);
+
+ if(dx>=1.0f) {
+ texres->nor[0]= (val1-val2);
+ texres->nor[1]= (val1-val3);
+ }
+ else {
+ dy= 1.0f-dx;
+ texres->tb= dy*texres->tb+ dx*texr.tb;
+ texres->tg= dy*texres->tg+ dx*texr.tg;
+ texres->tr= dy*texres->tr+ dx*texr.tr;
+ texres->ta= dy*texres->ta+ dx*texr.ta;
+
+ texres->nor[0]= dy*texres->nor[0] + dx*(val1-val2);
+ texres->nor[1]= dy*texres->nor[1] + dx*(val1-val3);
+ }
}
-
- /* don't switch x or y! */
- texres->nor[0]= (val1-val2);
- texres->nor[1]= (val1-val3);
}
else {
maxx= fx+minx;
@@ -910,9 +929,7 @@ int imagewraposa(Tex *tex, Image *ima, float *texvec, float *dxt, float *dyt, Te
}
else {
texres->tin= 0.0f;
- return 0;
}
- if(texres->nor) return 3;
- else return 1;
+ return retval;
}
diff --git a/source/blender/render/intern/source/rendercore.c b/source/blender/render/intern/source/rendercore.c
index 739b4a4757f..890a0b26674 100644
--- a/source/blender/render/intern/source/rendercore.c
+++ b/source/blender/render/intern/source/rendercore.c
@@ -495,9 +495,9 @@ static void scanlinehaloPS(int *rectz, long *rectdelta, float *rowbuf, short ys)
float *buf= rowbuf;
int xt;
for(xt=0; xt<R.rectx; xt++, buf+=4) {
- buf[0]= sqrt(buf[0]); // invers gamma 2.0
- buf[1]= sqrt(buf[1]);
- buf[2]= sqrt(buf[2]);
+ buf[0]= sasqrt(buf[0]); // invers gamma 2.0
+ buf[1]= sasqrt(buf[1]);
+ buf[2]= sasqrt(buf[2]);
}
didgamma= 1;
}
diff --git a/source/blender/render/intern/source/texture.c b/source/blender/render/intern/source/texture.c
index dff275e0a71..f792a07e307 100644
--- a/source/blender/render/intern/source/texture.c
+++ b/source/blender/render/intern/source/texture.c
@@ -1501,22 +1501,8 @@ void do_material_tex(ShadeInput *shi)
else texvec[2]= 0.0;
if(shi->osatex) {
-
- if(mtex->projx) {
- dxt[0]= dx[mtex->projx-1];
- dyt[0]= dy[mtex->projx-1];
- }
- else dxt[0]= 0.0;
- if(mtex->projy) {
- dxt[1]= dx[mtex->projy-1];
- dyt[1]= dy[mtex->projy-1];
- }
- else dxt[1]= 0.0;
- if(mtex->projx) {
- dxt[2]= dx[mtex->projz-1];
- dyt[2]= dy[mtex->projz-1];
- }
- else dxt[2]= 0.0;
+ VECCOPY(dxt, dx);
+ VECCOPY(dyt, dy);
}
do_2d_mapping(mtex, texvec, shi->vlr, dxt, dyt);
@@ -1544,21 +1530,8 @@ void do_material_tex(ShadeInput *shi)
else texvec[2]= mtex->size[2]*(mtex->ofs[2]);
if(shi->osatex) {
- if(mtex->projx) {
- dxt[0]= mtex->size[0]*dx[mtex->projx-1];
- dyt[0]= mtex->size[0]*dy[mtex->projx-1];
- }
- else dxt[0]= 0.0;
- if(mtex->projy) {
- dxt[1]= mtex->size[1]*dx[mtex->projy-1];
- dyt[1]= mtex->size[1]*dy[mtex->projy-1];
- }
- else dxt[1]= 0.0;
- if(mtex->projx) {
- dxt[2]= mtex->size[2]*dx[mtex->projz-1];
- dyt[2]= mtex->size[2]*dy[mtex->projz-1];
- }
- else dxt[2]= 0.0;
+ VECCOPY(dxt, dx);
+ VECCOPY(dyt, dy);
}
}
diff --git a/source/blender/src/blenderbuttons.c b/source/blender/src/blenderbuttons.c
index 48b15f7555e..e8a31711523 100644
--- a/source/blender/src/blenderbuttons.c
+++ b/source/blender/src/blenderbuttons.c
@@ -1,1482 +1,1551 @@
/* DataToC output of file <blenderbuttons> */
-int datatoc_blenderbuttons_size= 47257;
+int datatoc_blenderbuttons_size= 49463;
char datatoc_blenderbuttons[]= {
-137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 2, 0, 0, 0, 1, 0, 8,
- 2, 0, 0, 0, 74,242, 89, 48, 0, 0, 0, 6, 98, 75, 71, 68, 0,255, 0,255, 0,255,160,189,167,147, 0, 0, 0, 9,112, 72,
- 89,115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0, 0, 0, 7,116, 73, 77, 69, 7,213, 12, 18, 16, 37, 2,171, 28,
- 71,146, 0, 0, 32, 0, 73, 68, 65, 84,120,218,236, 93,119, 88, 20,215,218,127,103,102, 27,101,165, 91,130, 10,162, 96,236, 40,
-198,142,162,162,241,106, 76, 98, 20,141, 98, 98,238, 53, 17,140, 38, 26, 53, 98,138, 55,205, 20,141, 88,114, 53, 97,205,151,196,
- 36,162,137,104,138, 49,198,130,138, 65,197,130,149, 88, 0, 69, 68, 64,234, 46,187,203,214,105,223, 31, 7, 39,235,150,217,217,
- 69, 76,155,223,227,227, 51, 59,204, 59,115,230,204, 57,191,183,156,242, 98,143,204, 92, 14, 34, 68,136, 16, 33,226,159, 7, 92,
-172, 2, 17, 34, 68,136, 16, 21,128, 8, 17, 34, 68,136, 16, 21,128, 8, 17, 34, 68,136, 16, 21,128, 8, 17, 34, 68,136, 16, 21,
-128, 8, 17, 34, 68,136,248,251, 64,194, 29, 77,140,111, 47, 92,236,167,220,114,219,159,162,236,159, 80,214, 78,252,158, 63, 55,
- 39, 39, 39, 33, 33, 65,172,103, 81, 86,148,253,147,203, 10, 82, 0,127,105,164,164,164,112,199, 42,149,234, 15,121,122, 70, 70,
- 6,134, 97,127,123,147,129,171,234,233,211,167,239,216,177, 3, 29, 79,153, 50, 69, 52,166,254,126, 31,250,254,119, 37, 17,127,
-152, 7,112, 15, 91, 64,113,113,241,234,213,171,209,241,146, 37, 75,162,163,163,239,195,155,176, 44, 11, 0,247,159,130, 83, 82,
- 82, 74, 75, 75, 1, 32, 50, 50,242, 15, 81, 63, 78,181,160,211,146,228,228,228,240,223, 97,219,182,109,252,229, 79, 73, 73,217,
-190,125, 59, 58,254,254,251,239,199,140, 25,131,142,119,236,216,209,114, 58, 32, 46, 46, 14, 0,206,156, 57,227,197, 95,255,153,
- 40, 41, 41, 89,185,114, 37,247, 51, 45, 45, 45, 42, 42,234, 79,174, 54,254,192, 50,139, 10,192, 57,137,163,255, 61,165,111, 68,
- 67,111,109, 95,225,223, 33,160,241,150,246,141,169,175,255,177,180,216,210, 80,169, 84,145,145,145,165,165,165,165,165,165,123,
-247,238,189,255,118, 19,170,112,149, 74,165, 82,169, 82, 82, 82, 86,173, 90, 5, 0, 75,151, 46,117,122,241,164, 73,147,208, 1,
- 69,209, 86,210, 98,181, 88, 17, 40,138,114, 37,226,148,253,237, 48,102,204,152, 22,213, 1, 60,218, 11, 41, 0, 17,174,236, 0,
- 0, 64,196,122, 31,154, 37,122,180, 23, 93,224, 15, 44,179,168, 0,156, 99,245,234,213,219,151,191, 58,245,157,247, 60,250, 6,
- 41, 41, 41,136,250, 1,160,206, 88, 15, 33,240,202,193, 55,117, 37,154,148,231,238, 31, 45, 58, 54,166,150,126, 52,167, 3,198,
-141, 27, 87, 90, 90, 26, 25, 25,121, 63, 95,246,240,225,195, 0, 48,114,228, 72, 59, 29,192, 3,138,162,172, 86,210,106,189,139,
-253,243,243,243,251,247,239,239,246,137, 83,167, 78, 69, 7,211,167, 79, 63,112,224, 0,167, 0,188,248, 64, 2,107,233,204,153,
- 51, 57, 57, 57, 99,199,142,181, 61,185,127,255,254,109,219,182,161, 99,167, 67, 17,255,112,246,183,173, 91, 47,120,217,107, 17,
- 47,252,128,123, 85,102, 17,247, 76, 1, 20, 23, 23,199,196,196, 68,251,183,242,200, 9,224,216,191,206, 88,255,254,232, 55,209,
-201,127,255,248, 60,180,134, 73,171,166,186,253,150,142,196,237, 29,119,223,186,117, 11, 0, 58,116,232,192, 29,160, 59,223,219,
- 77, 47,236, 94,135,211, 1, 36, 73,101,100,100, 52,223, 8, 18, 34,110,199,254,156,160,211,154,188,139,253, 73,210,106,181, 88,
-172, 86,210,134,253, 89,134, 21,194,254,249,249,249,232, 56, 61, 61,157, 51,249,185,193, 0,225,101,182, 43,182,112,112,212, 63,
-125,250,244,190,125,251,138,125,216, 54,138,226,180,241,112, 77,162,164,164,196,109, 92,133,115, 40, 81, 27,230,126, 10, 49,131,
- 28,169,220,109, 71,176, 43,243,129, 3, 7, 48, 12, 75, 76, 76,244,168,204, 8,179,103,207,254,236,179,207,196,102,224, 17,112,
- 87,230,255,138,105, 83,204,181,181, 75,122, 60,200, 69,243,249,129, 66, 70, 28,251, 47, 89,178, 68,165, 82, 45, 89,178,228,139,
-199, 62, 6,128,192,174,161,220, 53, 60, 88,186,177,104,233,198,162,121,171,175,204,122,231,183, 39, 94, 57,239,233,203,148,151,
-151,243,168,132,123,203,254,165,165,165,142,148, 29, 25, 25, 73, 90,173, 3, 7, 12,240,244,110, 40,186,178,125,251,246,195,119,
-192, 79,226, 28,147,142, 28, 57,210,145, 70,121,186, 28, 69,209, 86, 43,105,181, 88,172,150,187,216,159,166,105,131,201,224,182,
-168,200, 75,176,117, 20,118,236,216, 33, 60,248,147,146,146,114,216, 38,146,115, 56, 39,199,237,107, 58,101,255,233,211,167,175,
- 90,181, 10,177,191, 84, 34, 21,187,177,219,176, 9, 58,105, 27,100,231,167,114,239, 44, 48,116,177, 45,251,187, 50,236,156,150,
-249,192,129, 3, 59,118,236,200,202,202,202,206,206,246,180,204,179,103,207,150, 72, 36,179,103,207, 22,155, 65,115, 21, 0,103,
-254, 27,171,110,255,171,111, 63, 33,196,141,116,198, 91,219, 87, 0, 0, 98,127,228, 52, 68, 71, 71, 35, 29, 80,174,171,236,183,
-116,144, 91, 93, 98, 48,209, 6, 19,125,187,222, 82, 81,107,190, 85,109, 22, 72,157,168,133,185, 98,255,150,131,163, 14, 0, 0,
-179,213, 98, 54,155,133,223, 4,241, 56,138,173,135,133,133,113,166, 49,127,207,177,181,163, 29, 29,103,158,126,107, 37, 45, 86,
-171, 5, 25,255, 28,251,147, 36,105, 48, 24,244, 58,125, 75, 71, 39,182,111,207,186,243, 11, 3, 12, 48,128,237,219,179,132,235,
- 0,142,253, 17,245,227, 56,174, 80, 40,252,252,125,197,110,220, 66,126,173, 64,159,210,169,242,176,139, 8, 9,145,229,252,200,
-172,172, 44,143,138,141,216, 31, 0, 68, 29,112, 15, 66, 64,171, 87,175,254,116, 78, 83, 37, 26,202,111, 33, 39, 64,136, 33,128,
-204,127,196,251,220, 73,238, 56,164, 87, 91,183,119,104, 52,209,122, 35,165, 51, 80,218, 70,170, 65, 79, 9,121, 1,187,201, 63,
-156,177,207, 29,148,148,148, 52, 52, 52,220,219, 90,203,200,200,224, 6,126,185,136,127, 74, 74, 74, 70, 70,134,217,100, 18,174,
- 0, 82, 82, 82,190,248,226,139,242,138, 10, 41, 65,180,105,219,150, 99,255, 23, 95,124,177, 71,143, 30, 60,221, 70,165, 82,141,
- 28, 57,146,211, 1,182,126, 9,255, 8,132,213, 98,181, 90, 44, 36,105,165, 40, 26,177,191,197, 98, 49, 26,141,141,141,141,122,
-189, 32, 5,192,133,128, 16,132,219,254,219,179,182, 3, 11,117, 53, 53, 0,208,244,205, 88, 22, 3,216,158,149, 53, 53, 41, 73,
- 72, 3,179,101,127,169, 84, 42,151,203, 21, 10,133, 66,161, 16, 88,114, 17, 66, 34,144,174,136, 91,120, 44,136, 39, 34,196,143,
-164,164, 36, 68,253, 30,205, 38,224,216,191,137,209, 36, 18,138,162,196, 88,144,151, 30, 0, 50,246,251,119,142, 54,215,214, 26,
-202,111, 1,192,240,176, 48,129, 78, 64,201,111,215,108,111, 98,119, 92, 95, 80,229,246, 14,158,178, 63, 71,253, 44,203,118,232,
-208,129, 59, 73,222, 65, 67, 67,131,193, 96, 80,171,213,247,182,214,208, 67,247,238,221,203,249, 1,136,253,123,247,238,109, 54,
-155, 76, 38, 19,167,153,248,187,220,198,143, 55,146, 36,217, 62, 60,156,164,105, 59,246,119,219,109,144, 14,176, 53,184,208,108,
- 84,167,126,201, 93, 10,192, 74, 34,246, 63,125,234,180,209,100,210,235,245, 90,173,182,161,161, 65,163,209, 8,175, 1, 20, 5,
- 18, 30,250, 7,128,250,186,250,250,250,186,186,122,117, 93,125,125,125,125,125,125, 93, 29, 0, 60,216,173,155,186,174, 78,160,
-249, 15, 0,125,251,246,109, 50,252,253,252,252,253,149, 74,127,165,159,159,159,216,141, 93,177,185,112, 3, 28,205, 32,224, 14,
- 92, 29,123,244,116,187,136,144, 91,169,196,196,196,164,164,164, 41, 83,166,140, 25, 51, 70,184,207,241,217,103,159, 81,212,239,
-116, 33,178,127,179, 20, 0,154,252, 3, 0,198,170,219,220, 73, 33, 35, 1, 75,150, 44,217,248,220,122, 0,248,247,143,207,175,
- 94,189,154,155, 69,186,122,245,234, 49, 95, 63, 14, 0,103, 87,157, 88,178,100,201,189, 45, 61,215,182,202,203,203,145,201,143,
-120,191,201,125, 49, 24,244,122,189,217,108,246,245,189,247, 81, 2,149, 74,149,154,154, 10, 0, 36, 69, 93,190,124,249,220,217,
-179,125,122,247, 49,155,205, 38,147,217,108, 50,109,249,250,107,244, 87,158,230,158,158,158,222,189, 91,119,146, 36,139,139,139,
- 41,210, 90, 81, 94,225,245,235,195,157, 17, 8, 0,112,227, 1,144, 22,138,166,150, 46, 93,122,242,228, 9,131,201,208,168,215,
-105,181, 90, 77, 67,131, 70,163,246, 72, 77, 34, 63,192, 35, 75,237,215, 95,127,213,235,245,122,189, 78,175,215,235,245,250,208,
-144,144, 7,187,117,187,122,229,202,145, 95,127, 21, 34,142,204,127,137, 68,234,235,235,235,239,239,175,244,247,247,247,247,245,
-241,245,169,170,170, 18,187, 49, 66, 90, 90, 26,199,191,220,224, 42, 58, 64, 39,209, 5, 2,205,118,254,184, 16, 63,251, 11,183,
-253,237,202,156,152,152, 56,102,204, 24,143,202,108,171, 3, 68,246,191, 7, 33,160,144, 27,165,106, 0,100,254, 35, 12, 15, 11,
- 91, 13, 87,249,111,132, 66, 61, 87,207, 92, 14,236, 26, 58,230,235,199, 87, 63,213,164, 48, 16,251, 35,243,223,237,108,162,239,
-222,143,245,206, 30,191,114,229, 10,106, 1,182,209, 0,169, 84, 42,149, 74,107,107,107,199,143, 31,223, 18,117,135, 56, 55, 35,
- 35, 99,192,128, 1,102,139,197,100, 54,153, 77, 38,147,201,100, 50,155,204,102,243,134, 13, 27, 92,245, 28, 52, 83,147,166,233,
- 51,103,206, 74, 37, 4,170,153, 27,165,165, 21, 21, 21,219,182,125, 51,125,250,147, 0,192,249, 1, 78, 59, 24, 23,116,178,179,
-224,220,206, 64, 69,182,127, 94, 94,158,161,209,136, 20,164, 78,175,211,233,180, 58, 93,163,240, 64, 10, 50,255,185,149,192, 66,
-212,192,244,233,211,185,227, 78,145,145, 15,118,235, 6, 0, 87,175, 92,185, 81, 90,106,247, 87, 30, 12, 30, 50, 88, 46,147,251,
-248,248, 40, 20, 10,185, 92, 46,149, 74,239,249,240,254, 95, 26,182,179,101,184,201, 51,156, 38,176,187,128,159,196,157,134,242,
- 61,242, 60, 4,170,141,123, 85,102,164, 3, 68,246,111,150, 2, 64,102,251,232, 45, 91,157, 94,234,118, 62, 40, 50, 31,250, 45,
- 29, 20,210,171, 45,226,125, 46,248,115,118,213, 9,183,173,193,187, 9,191,232,161,221,186,117, 43, 40, 40,224, 40,204, 49,232,
-175, 82,169,132,239,143,225,233,211,109,207,108,249,122,139,217,108, 70, 43,172,156,206,199,183,157,167,207, 48,116,239, 62,253,
- 46, 92,184,120,229,242,101,137, 84,218, 41, 50,178,188,162,124,219,182,109, 4, 65, 76,157, 58,245,197, 23, 95, 4, 8,112,188,
-195,170, 85,171, 80,239, 66, 79,183, 91, 7,192, 95,224,165, 75,151, 30, 59,118,172,177,177,177,209, 96,208,235,116, 58,189, 78,
-167,211,233,117,250, 70,125,163,193,104,116,251,178,253,251,247,207,207,207, 71,230,191,221, 52, 80,126, 53,144,144,144, 96, 91,
- 81,136,247,207,157, 59, 7, 2,150, 31,199,197,197,161,213, 94,254,190,254, 10, 31,133, 66,161,144,201,100, 56,142,139,236,111,
- 31,131,181,225,205,172,172,172,196,196, 68,184,123, 64, 85,200,148, 74, 91,219,194,211,217,204, 94,196,253,239, 73,153, 57, 29,
- 32,182,129,102, 41,128,232,232,232,102, 46,187,224, 90, 0, 82, 3,136,250,161,133,151, 98,161,135,246,234,213,235,244,233,211,
-181,181,181,191, 43,158,250,122, 0,120,234,169,167, 90,180, 6,109, 95,141,101,217,153, 79,205,220,176, 97,163,213, 74, 82, 20,
- 21, 16, 16,224, 86,207, 21, 21, 21,249,248, 40,144,108, 81, 81,145,221,101, 37, 46,148,150,173, 14, 64,163,193,104, 74, 40,127,
- 61,163,233,243, 67,135, 14,109,206,203,114,115, 64, 61,221, 11, 72,165, 82,229,228,228,108,219,182,141, 91,192,133,110, 34,176,
-109, 36, 36, 36,144, 20, 73,234, 73,113,200,215, 21,220,206,152, 92,185,114,165,192,218,230,214, 1,120,215, 25,133, 11,222,195,
- 50,139,184, 55, 33,160,230, 19, 98,113,113,241,234, 85,247,117, 47, 32,212,236, 30,122,232,161, 61,123,246, 32,222,111,190,111,
-225, 93, 48,138, 91,139,235,148,253,239, 9, 28,247,108, 64,211, 70,221,154,108,247,164, 30,184,155,228,228,228,120,186,247, 67,
- 66, 66,130, 23,171,118,197,125,126,188,176, 69,238,127,227,247,238,137,127,146, 50,139, 10,224, 94,162,249,158,132,215, 58,160,
-133,194,253, 45,215, 1,154,127,115,177,183,136,248,203, 53, 99, 17,127, 18, 96,247,118,131, 4, 17, 34, 68,136, 16,241, 87,129,
-152, 17, 76,132, 8, 17, 34, 68, 5, 32, 66,132, 8, 17, 34, 68, 5, 32, 66,132, 8, 17, 34, 68, 5, 32, 66,132, 8, 17, 34,254,
-158, 16,147,194,139,178,162,108,139,203,186,154,158,219,210,178,226, 55, 18,101, 69, 15, 64,132,136, 63, 18,104,119,123,244,191,
-167, 16,178,165,190, 8,167, 40, 44, 44, 20, 43, 65, 84, 0,127,106, 92,190,124, 57,197, 6,151, 47, 95,254,243,203,138,240, 8,
- 37, 37, 37,104, 99,131,172,172, 44,219,109, 15,132,179, 63,218, 86,214,235, 61,121, 92,157,185,135,178, 92, 78, 14,239,208, 18,
-234,173,176,176,112,237,218,181, 98,243,115, 11,201,223,239,149,114,115,115,227,227,227,255,252,229, 68,237, 62, 61, 61,157, 59,
-179,120,241, 98, 16,156, 12, 18, 0,152,111,131,126,215,228,211,214,223, 7, 89, 17,158,194,118,171, 3,143,118, 53,176,101,127,
-150,101, 49, 12, 19,190,197, 66,115, 86, 11,122, 33,139,246,241,231, 41, 94,118,118, 54,218,228,135,231,101, 29,101,221, 74,241,
-179, 63,195, 48,155, 54,109,202,204,204, 76, 78, 78, 22,219,225, 63,200, 3,216,226, 98, 51,187, 63, 27,251, 47, 88,176,192,150,
-253,145, 50, 88,176, 96,129, 16,131,107,243, 11,126,182, 12,142, 8,125,243, 11,126, 45, 42,171,213,106,231,206,157,203,101,161,
-169,170,170, 74, 73, 73,121,247,221,119,223,121,231,157, 87, 95,125, 21,237,215,239, 10, 50,173,161,215,220, 47,252, 15,223, 64,
- 63,169, 42,234, 82,138,249,226,187,178,163,239, 4,253,244,106,196,217,253,225,127,215, 14,230,197,126,250,118,236,143,224,145,
- 31,112,159, 61, 0,180,143, 63,186, 50, 59, 59,219, 46,216,149,157,157,205,159,225,139,147,117,148,242,194, 57,224,216,127,241,
-226,197,153,153,153, 71,143, 30, 21, 89,254, 31,164, 0,114,115,115, 49, 12,251,147,127,117, 20,114,233,216,177, 35,103,248, 35,
-219,159, 59,201, 19,147, 65,127,122,122,152,236,142,241,174,193,167, 53, 37,114, 65, 39, 91, 72, 22, 0, 78,158, 60,169, 80, 40,
-242,242,242,126,111, 61, 56,254,218,107,175, 45, 95,190,124,214,172, 89, 63,255,252, 51,143,108,219,147,151, 89,133,212, 55,175,
-140, 59,131,225,108,239,215,172,195,150,107, 6,206,170, 57,253,115,184,216, 21, 29,217, 31,187, 3,129, 58,192,118,192, 32,229,
-110,128,187,225,132,230,200,114, 58, 64,173, 78, 84,169, 52, 30,177,191, 83,253,193, 73,121,234,149, 22, 22, 22,174, 89,179, 6,
-195, 48, 28,199,243,243,243,115,115,115,197,230,228,189, 2,200,205,205,245,162, 6,155, 25, 95,206,205,205, 69,130,222,125,188,
- 45, 91,182,102,100,124,236,181, 19,112,127, 90,204,250,245,235, 57,219,127,241,226,197,233,233,233,233,233,233,156, 14, 72, 79,
- 79, 95,191,126, 61,143, 44,103,191,227,211, 52,197,123,158, 42,222,243, 20,199,227,204,183, 65,194,101,145, 77, 42, 80,150,101,
-217,227,199,143, 39, 39, 39,151,149,149,221,190,125,219,238, 79, 55,111,222,108,215,174, 29,184, 22,110,119,252,183,242,228,161,
-178, 50, 45,118,155,219,116, 26,165,114, 3,245, 77,121,112, 59,211,223,172, 95,149,148,148,240, 80, 45,207, 96,128,157,237,111,
-151, 87,142, 95, 7,216,102,224, 82,221, 13,112,151,159,203,246,175,236,246, 32,219,127,224, 97,110, 47,196,251, 30,241,184,173,
-254, 80,169, 52,222,177,255,220,185,115,215,173, 91,199, 48,204,194,133, 11, 49, 12, 67,182,224, 39,159,124, 34,178, 60, 15, 36,
- 60, 84,152,153,185, 13, 53, 56,225, 33,117,212, 52,103,206,156,137, 68,114,115,115, 17,167, 8,252,150,185,185,185, 91,182,108,
-153, 57,115, 38, 0,108,217,178,197,163, 71,115,230, 63,234, 39, 94,140, 4,160,167,123,250,208,230, 0,177, 63,199,251,182, 63,
-221,171,238,105,154,226, 61, 77, 59, 93, 23,239,121, 10, 31,255,181, 93, 96,135, 95,150,251, 34, 42,149, 10,159,150,226, 86,246,
-230,205,155, 86,171, 53, 46, 46,238,232,209,163,121,121,121, 79, 60,241, 4, 0, 48, 12,243,254,251,239, 55, 54, 54, 74,165,210,
-185,115,231,186,146, 13,190, 89,129, 91,169,134,184, 72,233,209, 74, 73, 94, 53,249, 68, 39, 0, 96, 25,246,226,251, 50,117,163,
-210, 36,245, 31, 51,183,248,239,212,169,220,154,189, 43, 87,174, 76, 74, 74,114, 12,112, 59, 50, 59,103,254, 59, 94,249, 39,220,
-197, 43, 37, 37,200, 70,163,104, 0, 32, 43,203,251, 60, 31,158,218,254, 44,203,114,185, 33,135, 13, 27,150,155,155, 43,178,191,
-151, 10, 32, 55, 55,119,203,150,173, 42,213, 39, 0,144,154,250,188, 64, 78, 68,113,237,238,221,187,115,103,226,227,227,227,227,
-227,145, 79,224,246,139,114,236,207, 61,203, 83, 58,222,178,101,235,204,153, 51, 0, 96,230,204, 25, 91,182,108,245, 84,121,108,
-217,178,133,203,103,240,151, 24, 70,190,159, 56,118,236,216,192,129, 3, 49, 12, 27, 56,112,224, 15, 63,252,240,248,227,143,163,
- 16,208, 43,175,188, 2, 0,245,245,245,219,182,109, 27, 56,112,224, 67, 15, 61,228, 40, 27,113, 44,191,106, 96, 55,192, 48,195,
-192, 14,196, 15,183,201,199, 59, 1, 0,134, 67,239, 87,172, 0,245,134,122,237,161,109, 93, 34, 6, 54,246,126,168,252,111, 80,
- 81,252, 73,213, 57,100,101,101,101,101,101, 57,146,184,109, 78, 21, 87,105,165,157, 38,110,252,195,145,152,152,232, 56,213, 21,
-197,118, 60,133, 23, 82,104,207,112,137, 68,242,210, 75, 47,229,231,231,139,161,255,102, 41,128,204,204,109,136, 73, 1, 32, 57,
-121,122,102,230, 54,183,132,136, 66, 61,182,236,207, 1,157,188,124,249,178,211,191,218,208,247, 93,236,143, 14,182,108,217, 34,
-144,139,143, 30, 61,138, 97, 24,186, 56, 62, 62,126,203,150,173,194,157, 0,142,253,109,123,151, 64,157,215, 28,251,197,214,234,
-247,200,252, 71, 17, 27,124,252,215,200, 9,136,246,196,252,111,146,157,150,194,229,126,114, 43, 75,146,100,126,126,190, 82,169,
-188,120,241, 34, 77,211, 58,157,238,202,149, 43, 33, 33, 33,220, 5, 33, 33, 33, 19, 38, 76,248,248,227,143, 29, 21, 0, 65,146,
- 29,242, 11,100,202,112,233,197,122, 45,173,212,235,100,244,149, 70, 8, 81,112, 23,248,133, 80, 15, 77, 40,255,242,227,248,191,
-135, 2, 80,169, 84,142,161, 15,199, 36,139,200, 3,176, 91,176,227,209, 92,157,150,200,112,119, 47, 94, 95,131, 92, 1, 91,111,
- 64,184, 3,145,149,149,229, 5,251,103,102,102,254,250,235,175,236,246, 32,108,170,102,237,218,181, 44,203,226, 56,158,145,145,
- 33,242,187, 55, 10, 32, 55, 55,151,101, 89, 91, 34,206,204,220,118,244,232,209, 97,195,134,241,220,104,253,250,245, 40,116,227,
- 20, 51,103,206, 92,191,126, 61, 79,251, 70,193,119, 59,206,141,143,143,223,178,101,139, 16, 30,183,117, 89, 16,158,122, 42,249,
-235,175, 51,133,240,184, 45,251,219, 89, 88,110,101,121, 94,153, 7, 11, 22, 44,224,232,158,139,254,219,142, 10, 44, 88,176,128,
- 71, 22,159,214, 20,202, 71, 58, 0,108,230,116,226,211, 52, 30,200, 78, 75, 17, 40,123,254,252,249,142, 29, 59,190,244,210, 75,
-232,231, 87, 95,125,149,151,151,247,200, 35,143,216, 94, 83, 93, 93,173, 80, 40, 28,101, 35,207,159,111,232,216,238,228, 75,255,
- 65, 63,101, 95, 21,211,121, 90,252,145,187,174,212, 86,251,200, 21,228,223,166, 83, 37, 38, 38, 70, 69, 69,241,228,186, 74, 75,
- 75, 19,152,230,208, 54, 4,228,202, 33,248,211, 86,130, 23,215, 35,197,233,145,236,214,173,153, 57, 57, 57,216,142, 16, 0,216,
-255,186,114,236, 10,253,240,225,195,197,169,159, 94, 42, 0, 20,250,231,204,127,206, 9,248,250,235, 76, 91,173,224, 20, 60,127,
- 69, 84,238,214,252,119,202,176,110,157, 0, 84,102, 91,246, 71, 65, 64,150,101, 51, 51,183, 97, 24,198,163,186, 28,217,223, 35,
- 29,224, 93,164, 8,121, 66,101,101,101,104,206,143,173,225, 95, 86, 86,230,202,145,178,149,253,234,168, 21,205,219,177, 53,222,
-191, 58,106,109, 33,217,188,188, 60,219, 55, 29, 49, 98,196,135, 31,126, 56,122,244,104,134, 97,222,123,239, 61,134, 97, 76, 38,
- 19,134, 97, 78,191, 96,215,188,188,139,241, 9,220, 79,106, 68, 59,250,195, 91, 48,186, 53,203,192,197,247,164,141,140,191,218,
-212, 74,141, 5, 63, 58,243,194,223,169, 95, 69, 69, 69,241, 15,183,122, 66,141,219, 1, 0,178,167, 10,241, 71,185,118,235,116,
- 54, 39, 79,190, 70, 91, 89,108,170,198, 35, 89, 71, 43, 30,229,112,190, 63, 1, 55,118,123, 16, 32,246,191, 72,125,113,216, 10,
- 0, 34,251,123,169, 0, 82, 83,159,103, 89,118,230,204, 25,142,150, 56,138, 11,101,102,110,203,200,248,184,133,138,226,148, 76,
-221,106, 14,174,204,174,110,248,245,215,153, 95,127,157,105,167, 30,108, 21, 15, 79, 71, 77, 73, 73,105,161,193, 0,174,179,121,
-177, 16, 76,165, 82, 61,147,146,242,204,255, 12,119, 47,230,210,180,156,236,139, 47,190,104,251, 51, 34, 34, 98,195,134, 13, 2,
-185,108,207,221,178, 76,132,191,207,134,110, 0,208, 67, 37, 5, 32, 1, 52, 0, 26,128,155,127,215, 14,198, 17, 49, 58,184, 15,
-217,226,156, 50, 53,119,198,237, 44, 32, 47,100, 29,173,120,129,254, 77,243,235,150,249, 54,104,255, 69, 10, 0, 54, 31,182,126,
-115,220,202,178,172,184,158,209,123, 5,192, 67,238,104, 56,215,109,227,243,250, 2,175, 51,217,242, 43,164,102, 22,187,165,187,
-235,229,203,151,185,217,159, 40, 68,195, 63, 76, 98, 39,139, 86,240,222, 79, 89, 17,158, 34, 45, 45,141,139, 5,165,165,165,221,
-159,135,222,231,149,192,127, 44, 30, 94,161,255,171, 20,245, 47, 16, 2, 18,113, 63,209,189,123,119,175,155,236, 31, 37, 43,194,
-211, 88, 16,218, 41, 33, 41, 41, 73,184, 93,124,215,236,207, 59,193, 31, 87, 83, 66, 93,197,115,248,207,180,132,108, 75,168, 46,
-126,224,211, 52, 24,134, 61,250,216,156, 38,119,243,151,179,232, 96,252,191,250,137,109, 79, 84, 0, 34, 68,252,241, 72, 76, 76,
-204,202,202, 18, 62,176,217,124,182,253, 99, 61,128,251,171, 45, 88,180,162, 80,132,119, 16,147,194,255, 19,225, 99,185,106,146,
- 63, 40,214,131, 8, 17,255,112,136,219, 65,255, 19, 33,178,191, 8, 17, 34, 68, 5, 32, 66,132, 8, 17,162, 2, 16, 33, 66,132,
- 8, 17,162, 2, 16, 33, 66,132, 8, 17,255, 4,180, 72, 82,248, 27,151,242, 0, 55,183,107, 31,174, 55, 25, 52,245,134,152,110,
-195,132,203, 30, 61,123, 29, 24,121,117, 69,133,159,143, 95, 80,176,223,192,254,157,132,203, 54,167,204, 76,221, 6,165,191,201,
-199,143,144, 16, 56,166,192,110,235, 22, 8,151,213, 41,159, 8, 10, 9, 10,240, 39, 64, 2,234,243,155,248,159,235, 19,126, 85,
-120,153, 77, 21,119, 5,235, 31,240,173, 22, 46, 91,105,108,115,151,172,197,131,231, 86,222, 61, 72, 16,110,245, 32,189,106,133,
-172,235,159, 65,182,135,179,122, 94,185, 50, 43, 45,205,201, 86, 51,151,238,174,103,159,246, 86, 15,190, 81,185,236,174,182, 17,
-238,193, 55,250,169,226,174,111,100,182,248, 9,151, 85,200, 13,119,221,234,209, 13,194,101, 39,238,154,111,251,115,113,149, 7,
-219,230,164,183, 77,109,161, 62, 40,202,182,144,172, 32, 5,224,136,231,114, 22, 97, 35,103,109, 98,251, 8,185, 81,201,111,251,
- 49, 96,252,229, 62, 95,168,182,126,249,229,250,161,137, 67, 41,131,177,251,131,195, 25, 6,230, 45,165,187,119,239,122,237,218,
- 77,179,137, 82,182, 27,234, 40,123,236, 92, 13, 11, 88,163,197,148,178,104,197, 91, 31, 61, 92,121,233, 12,128, 98,207,133,114,
- 28,135,245,111,190, 94, 84, 84, 24, 25, 25, 33,247,145,132, 4,201,157, 60,247,187,143,101, 50,153,143,143,143,191,191,127,104,
-160, 34, 76,170, 12,107,231, 23, 32, 87, 6,202,112,137, 68,194, 50,180,142, 0, 93,141, 46, 87,217,203, 85,201,181,215, 55, 42,
-125,180,173, 2,101,254,126, 82,153, 15, 46, 33, 0,151, 73,186,134,127, 74,178, 68, 73,229,127,248,223,250,112, 89,231,208,208,
-208, 54,254,102,147,217,130,203,125,128, 4,170,227,204, 6,141, 58, 84,191,167,229,148,246,166, 77,155,230,204,153, 35, 26, 47,
-110,225,138,238, 61,189, 6, 0,218,250,248, 86, 84, 84, 72, 21,114,198,215,247,126,190,130, 81,125,254,248,193,111,108,207, 36,
- 38,125,240,231,172,237,175,191,250, 74, 46,147, 49, 12,227,231,239, 63,241,209, 71,197,230,247, 23,243, 0,156,130, 61,248,229,
-156,209,238,117, 64,210,163, 93, 44,163,130,201,198, 6, 9,141, 15,232,221,126,214,172, 38,243, 25,199,225, 68,222,230,208,142,
-225, 76,163,110,196,192, 94,149,149,154,236,115,148,157,108, 74,202,123, 32, 11,192,124, 91,177, 4,123,225,242,191, 63,255,102,
- 95,147, 73,206,192,184,193,131,161,177, 10, 64,121,189,224,138, 52, 52,112,232,160,158,254,129,173,157, 60, 30,195, 1,195, 49,
-150,144, 90, 49,223, 86, 20, 65, 16, 82,130,144, 73, 9, 41, 65,144, 52, 96, 20, 3,184,203, 72, 87,213,133, 21,193, 1,208,202,
-215, 55, 44, 52,164, 85, 43, 95, 22,167, 41,166,145, 6,218,223,223, 55,180,109,251,168,232,163,217, 71,156,239, 35,148,113,192,
- 26,160,244, 11, 8,212,155,141, 50,131, 65, 33,147, 43,164,102, 26, 0, 76, 70,179,193,104, 42,211,244,172,169, 83,235,106,203,
-167, 14,113,254,232,172,149,238,210, 36, 61,147, 24,212, 38,200, 41,251,223, 67, 29,240,234,135, 31, 2,192,123, 47,191,236,133,
-236, 43,171, 86, 1,192,251, 75,151, 10, 23,249,173,162,162,168,168, 8, 0,158, 24, 57, 82,160,136,106,251,118,176, 89, 3,133,
-242,100,161,255,225,206,254,104, 24,134,205,113,182,133,100, 90, 90, 18, 63,191, 11, 97,255, 78, 65,193, 38,171, 5, 0,100, 62,
- 10,171,201,204, 24,140,117, 85,183,219,245,234,197, 35,210,174,115,140,219,247, 10,136,232,118,245,208,143,110, 47, 59,126,240,
-155, 97,137, 79, 42,130, 98, 5, 85, 86,146,218,237, 37, 83,167, 78,221,158,148,237,244, 79, 35,179,107,185,227,238,129, 18, 0,
-168, 49, 51, 38,138, 5, 0, 3,197, 2,128,106, 96, 96,140, 82,234, 84,118,245,234,213,175, 46, 92,242,216, 19,147,204,102,211,
-250,181,107, 54,108,216, 48,127,254,252,102, 54,206,107,215,174,125,248,225,135, 32, 96, 97, 65, 94, 94, 94,105,105,105,125,125,
-189, 94,175, 87, 42,149, 33, 33, 33,145,145,145,131, 7, 15, 22,249, 29, 97,247,150,119,184, 99,187,121,255,124, 10,224,211,132,
- 53,147, 79,188,203, 28,255,121,206, 16,224,215, 1,150, 70,117,219, 46,163, 87,188,252,196,102, 85, 14, 58,115,228,120,134,193,
-104, 25,159,184, 96,200,208,103,158,156, 58,202,199, 71,110,165, 41,189,209, 26, 51,200,113,211,158,155, 96,133, 39,146, 63,121,
-110, 81,147,107, 57,110, 72,130, 66, 33,255,225,208,190, 61,199,242,190,250,226, 99,179,201, 34, 35, 36,254,190,178, 86, 50,250,
- 90, 89,149,189,138, 98, 89, 96, 25, 96, 25,192, 25,150,101, 45, 86, 57, 80, 0,114, 96,173, 52, 77, 0, 13, 52,109,101, 40,154,
-113, 90,236,235,167,222,111, 31,198,182, 82,250,133,183,239,244, 96,175, 46, 74,127, 31,109, 99,109, 85,109,149, 70, 91, 77,154,
- 49, 95, 95,223,176,176,161,147, 39, 21,236,252,190,171,157,224, 39,153,183,104,165,210, 36, 1,153, 66,102, 50,202,172, 70,153,
- 89, 33,151, 96, 20, 11,132,217,212,104, 50,234, 77, 38,131, 73,167,213, 87,221, 92,183,238, 86,231, 56,231,235, 63, 63,252,234,
- 67, 87,245,249,242,211,206, 25, 89,163,209,216, 30, 7, 7, 7, 35, 54, 12, 10, 10,186,126,253,122, 86, 86,150, 71, 90, 65,214,
-166, 41,254,160, 1, 8,242,182,109,109,202,202,154, 55,111, 30, 89, 83, 35,132,253, 91,183,110,253,196,216,177,164, 92,158,158,
-158, 62,121,212, 40, 33,219, 91, 98, 24,182,250,205, 55,155, 34, 21,111,188,145,254,214, 91, 78,143, 93,137,219,234,128,149, 43,
-179,226,226,226,178,179, 75, 18, 19,163, 4,178,255,131,109,219, 5,182,106,133,154,153,159,194,231,118,109,141, 78,211,224, 31,
- 24,116,243,116,126,196, 67,253,121, 4, 31,157,179,100,230,228,137,209,145,145,232,231, 27,233,255,227,254,244,214,226, 23, 0,
-160,236,151,131, 3, 98, 58, 8, 10,245, 8,100,255, 38,203, 34,216,221, 21,238,215,163,249, 73,176, 11,111,205,198, 90,133,210,
- 37, 23, 44, 37,151,138,212,134,254,191,240,125,223, 12,149,106, 81,202,188,167,159,253, 79, 86,230, 55,145,145,145, 43, 86,174,
- 82,190,185,130, 75, 26,209, 28,234, 7,128,151,121,173, 19,189, 94,191,127,255,126,146, 36, 59,119,238, 28, 31, 31, 31, 16, 16,
-208,208,208, 80, 89, 89,121,227,198,141,202,202,202,177, 99,199, 42,149, 74,145,253,237,126,218,234, 0,123, 5, 48,167,248,206,
-214, 58, 44, 0, 6, 44,211, 8, 86, 11,153,179,117, 78, 2,184,243, 3,100,221,187,117,197,241,156,162,134,122,128, 43,218,138,
- 98,169, 66,254,227,207, 31, 25,235,232,228,127,191,196, 48,240,232,196,193,180,196,223,149,112, 81,209, 21,134,129,241,125, 48,
-128, 7, 0, 34,204, 22,235,148,113, 99, 21,129,248, 87, 91,247,226, 56,236,248,102, 51, 65,233,187, 69,200,175,149,217, 11, 50,
- 44, 48, 12,195, 48, 12, 77,211, 22, 41, 75, 98,164,213,106, 53,250,154,129, 81,224, 44, 77,203,216, 70,171,217,106, 50, 66, 43,
- 39, 15, 13,243,183, 72, 36, 62, 33, 33, 33, 93,186,116,105,211,118, 32, 16, 56, 77,159,193,217, 6,179,129,162, 25, 67, 85,165,
- 58, 44,164, 46, 36,112,104,187, 14, 95, 3,220,101,241,249,152, 41,214, 82, 7,102,185, 21, 39, 13, 50, 73,163,143, 84, 34,149,
- 1,227,135, 17, 88,163,193,168,169,186,121,253,204, 49,117, 89, 25,195, 48, 56, 75, 8,252, 78,159,127,242, 57, 58,248,207, 92,
-151,113, 39,219, 60, 83, 89, 89, 89,139, 22, 45, 42, 43, 43,195, 48,204,187,181,151, 27, 55,110,172,174,174,222,177, 99,199,132,
-225,195,131, 90,183,246, 84,252,253,165, 75, 53, 0, 44,203,162,141,225, 82,166,186,217,174,178,168,168,232,137,177, 99, 1, 64,
- 38,147,197,196,196,236, 60,116, 72,136, 43,208,252, 61,144,211,210,146,178,179, 75, 80,194, 16,238,255,164,164, 36,183,236, 31,
-211,186, 77, 96,171, 86, 4,142, 63, 63, 51,217,100,182,164,127,246,153,175,143,143,217,108, 54,155, 76,184,132,184,117,238, 92,
-135,190,125, 93,201, 34,150, 47, 46, 45,181,253,233, 5, 6,142,122, 50, 59,107,217,152, 71,103,179,242,104,129, 34,220, 94,158,
- 40,155,163,211, 51,174,208, 61, 80,114,179,145, 62, 50, 38, 76,186, 64,165, 75,238, 36, 9,106,237,150,253, 15, 30, 60, 24,217,
-238,129,103,159, 79, 93,246,210,210, 13, 95,100, 12,232,215, 47,227,127, 25, 11,151, 46,201, 28, 60,176,160,160,160, 23,175,171,
-196, 79,253, 7, 15, 30,188,118,237, 26,255,245,251,247,239, 15, 11, 11,235,219,183, 47,142,227, 0,192, 48,140, 84, 42, 13, 14,
- 14,110,219,182,237,141, 27, 55,246,239,223, 63,121,242,100,145,253,231,164, 53,133, 13, 55,173, 92,102,167, 3,238, 82, 0,207,
- 29,127,197, 72, 40, 24,154, 97, 48, 66,201,154,128, 52, 99, 64, 64,120,140,212,106, 96,179, 63,159,147,248, 31, 94, 29,192, 16,
- 4, 34,187, 86, 0,237, 3,194,187,222, 44,220,241,137,234, 11,220,226, 59,118,228,208,189, 7,143, 25,141,224, 27, 28,224, 40,
-230,227,219,213,100, 44,164,105,154,139,202, 0, 84,226, 68,194,211,179,102, 51,114,195,238,159, 63,127,116,226,127,124,253,192,
- 88,175, 1,104,235, 40, 78, 2, 33,101, 24,154,166, 73,138,182,232, 72, 35,105,108,240,145,144, 70,169, 69, 66, 18, 36, 70,209,
-140,206, 68, 25,244, 36,180,177, 23,188,112,120,101, 84, 91,140, 32, 48, 12,151,211, 52, 75, 25,203, 44, 52, 89, 81,165, 85,107,
- 26,181,122, 26, 55,155, 41,168, 34,164,231, 31,232,168, 83, 42,124, 28,159, 75, 0,176,122,179, 73, 95, 73, 87,107,137,206,237,
-113, 28,167, 41, 75, 67, 85,105,225,169,188,218,155,101, 44,203, 2, 72,112, 9, 0,113, 47,247,112, 71, 6,254,166, 77,155,166,
- 76,153, 18, 27, 27, 43,151,203,215,172, 89,227,221,173,144,249, 63,168,103,207, 54,109,218,108,216,176,225,145, 17, 35, 30,240,
- 92, 7, 4, 1,164, 76,157, 42,109,221,122,195,134, 13,210,214,173,221,250, 1,164, 92, 46,181, 88,118,238,220,105,235, 10, 8,
- 15, 7,121, 13,196,251,182, 41, 89,178,178,220,155,255, 6,163, 49, 44, 56,248,223, 83,166, 52,104,117,181,234,122,169, 84,130,
- 32,149, 74,229, 62,190,186,250, 58,253,173,114,101, 7,151, 67,115,197,165,165, 91,118,254,100,171, 0,144, 31, 48,176, 95,239,
-241, 35, 71, 8, 40,181, 30, 64,169, 12,137, 77,124,212,239,192,174,207,238, 79,244,255,226,151,235, 44,123,191,104,253,233,217,
-238,129, 18,162, 85, 48,165,169,233,255, 75,141,159, 4, 51, 80, 44,225, 34,140,122,227,218,181, 61,187,126,254,242,211, 47, 63,
-250,236,227,140, 53,235,130, 67,130, 87,188,183,226,171,173,153,241,131,134,126,254,217,231, 79, 36, 61, 17, 63, 52,222, 11,246,
-223,181,107, 87, 80, 80, 80,187,118,237,236, 18, 80,219, 69,126, 72,146,236,215,175, 31, 69, 81,122,189, 94,161, 80, 48, 12,115,
-245,234,213,162,162, 34,127,127,255,184,184,184,170,170,170,188,188, 60, 49, 22,244, 59,129,164,125,128,116,128,115, 15,224,211,
- 33,239, 55, 93,135, 23,176,135,190,192, 66,218,193,179,255, 59,237,211,237,161, 91, 63, 50,155,150, 19, 71,183,205,137,199, 55,
- 49, 78, 84,250,174, 67,234, 57, 93,116,143,205, 90,176,248,133,143, 1,212, 0, 74, 0, 75, 68,215,126, 10,185,196,100,176,128,
-149, 0, 0,165, 82, 89,163,214, 56,202,174, 91,187, 40, 37, 37,229,242,137,207,112, 28, 77, 99, 96, 0,128, 49, 93, 50, 91, 72,
- 31,127, 5,200,104, 0,208,235,116,173,109,242, 79,221,245, 2,140,149, 97, 36, 20, 69, 89, 44,150, 70, 9, 33,177,226,112, 91,
- 71,249, 82,180,140, 97,165,132,145,144, 80, 6, 99,163,213,201,164, 14,165,191,129,162, 48,139,149,110,208,234,138,174,149,149,
-223,174, 51, 89, 73, 93,163,186, 81,223, 96,166,173,152, 4, 51, 24,181, 58,227,141,155, 21,218,122,189, 1,160,139,157, 56,125,
-103, 10, 45,165, 53,148,159,191, 82,125,229,134, 78,127, 77,223,208,192,130, 68, 74, 96, 44, 38,197,113, 22,192,253,246, 93, 47,
- 63,253, 50, 79, 44,200,201,251, 74,154, 62, 89, 80, 80, 16, 65, 16,182,155, 77,122,106,254, 79,153, 50, 5, 0, 58,133,133, 9,
-223,101,204, 57,173,215,212, 0,192,134, 13, 27,120,156,128,223, 42, 42, 0, 32, 61, 61,125,242,228,201,200, 15, 0,128,139, 23,
- 47, 2,192,119,135, 15,243,235,128,197,111,188,129, 34, 93, 0,176,228,205, 55, 57,159,128, 39,242, 99,139,236,236, 18,187, 56,
- 50,218,244,152,139, 5, 57, 69,160, 68, 98,182, 90, 8,130,184, 90,114,157,101,217,203, 69,197, 86, 43,137, 3, 38,145, 72, 48,
- 12, 99,104,218,100, 48, 30,216,254,237, 19, 54,155,185,218,129, 99,255,153,147, 39,218,158, 63,121,246, 98,116,167, 8,185,251,
-130,223,137, 93,200,163, 19,147, 62,200,206, 90,150,157,181,236, 95,147,102,147,146,232, 22,100, 8,245,109, 89,199,152,154,121,
- 10,249,168,233,116,254, 94, 90,167, 6,128,154,121, 67, 34, 84,121, 52,227,220,148,233, 26,221,213,215,215,239,163,255,219, 56,
-114,196,136,129,131, 7,237,223,179,239,234,181, 34, 96, 88,133, 92, 62, 52,110,232,207,187,126,174,171,169,155, 52,105,146,112,
-234,223,191,127,127, 73, 73, 9, 0,156, 58,117, 42, 53, 53,149,199,187, 45, 45, 45,237,220,185, 51, 58,184,112,225, 66, 68, 68,
- 68,167, 78,157, 52, 26, 77,126,126,126, 84, 84, 84,235,214,173, 35, 34, 34, 74, 75, 75, 69, 5,192,199, 39, 78,180, 4,118,129,
- 61,178, 21, 35, 36,240,194,103, 11, 74,219,125,180,230, 75, 80,250,127,178,188,240,185,247,186, 18,217,155,230,116,232,182, 41,
-250,121,134,161,113,252,174,224, 70,151, 86,237,127,187,248, 29, 0, 0,224, 0, 6, 0, 18,128, 4,210, 34, 97, 8, 28, 24, 0,
-248,254,135,253, 0, 48,244, 95, 78, 56, 98,111, 1, 59,174,111, 79,206,133, 5,144, 0, 72, 65,170,160, 48,154, 1, 12, 0,166,
- 37,191, 8, 0, 55,143,111,114,148,165, 25,150, 98,112,156,162,112,171,197,136,227, 0, 96, 34, 8, 63,202,164, 51,177,152, 20,
-163,105,218, 72,131,209, 74, 57,190, 39,101,101,204, 82,130, 49, 82, 20,163,213, 55,146, 4, 38,181, 80,164,149,181, 82,164, 21,
-100, 12,142, 1, 38,103,180, 38,186,170,241, 45,111, 95, 0, 0, 32, 0, 73, 68, 65, 84,214,104,176,216, 15, 92,227, 88,147,195,
-130, 97, 77,123, 81,145,102,147, 86,173,198, 49, 66, 34, 97,129,149, 16, 24, 8,183,252, 11,111, 22,118,141,232,202, 19,249,177,
- 13,136,251,248,248,112,154,160,164,164, 4,177,127, 90, 90, 90, 64, 64,128, 86,171,109,104,104, 16, 18, 51, 65,230,127,219,182,
- 77, 30,213,252,249,243,255,247,191,255,121,231, 4,112,119, 64,129, 32,254,232, 63,166, 84,174, 92,185,114,233,210,165, 82,169,
-148,212,104, 2, 2, 2,150,205,159,239,214, 15,176,141,245,187, 26, 15,112,148, 90,233,110,152,253,204,153, 51,200, 51, 0,135,
-145, 49, 0,208,168,213,254, 74,101,157, 70,115,248,228, 73, 9, 78, 88, 72,210,104, 50, 49, 12,131, 84, 17, 69, 90,173, 22, 11,
-127, 85, 59,134,125,222, 90,252, 2,114, 2,162, 35, 35,203, 74,174,121, 84,195,137, 73, 31, 24,106, 79,254,242,253,103, 94,248,
- 1,110, 35, 63, 28,206,111,255, 52,118,214, 75,242, 78,189, 1,128,170,187, 93,164, 54, 0,128,124,240, 35,101, 52,229,187,225,
-164, 83, 17,157, 78, 39,247, 81,116,233,212,233, 70,249,173,250,218,250,105, 51,147,247, 28, 60,176,254,131,244,239,247,236,138,
-238, 20,253,244,228,167,242,206, 30,251,126,231,206, 73,174, 67, 49, 28,251,239,223,191,127,204,152, 49, 72, 67, 87, 86, 86,166,
-166,166,242,151,182,190,190, 62, 62, 62,158,166,233,210,210,210, 99,199,142,117,239,222, 61, 32, 32,160, 67,135, 14,177,177,177,
- 56,142,227, 56,222,174, 93, 59,238, 19,139, 16,164, 0,230, 96, 23,216, 67,155, 65, 46,135,224,142,198, 14, 3, 63, 90,145, 1,
-180, 1,170,116,175,111, 59,146,250, 88, 42,100,127, 89, 86, 85, 11,209,192,208,148,157, 2,184,166,211,197, 4,182,162, 44,112,
- 45,103, 75,151,132,135, 1, 8, 0, 32,173,164, 20,240, 70,179, 5, 0,198, 37,244,243, 9, 9,119, 90,136,113,189,176, 61, 23,
- 88,169, 2,100, 29, 31,182,150,229, 34, 39, 64, 42,147,147, 96,246,247, 81, 0,192,174, 61,219, 76,245,183, 6,117, 14,116, 18,
-120, 98, 24,153,213, 68,130, 12,199, 41, 48,155, 24,134, 33, 73,210, 98,150, 18, 18, 41,152,129,101,104,146,162, 73,146,116,236,
- 1, 70, 51, 67, 16, 24, 73,145,102, 11,163,211,155, 1,128,100, 88,171,133, 1, 9, 16, 82, 66,162, 0,204, 68, 51, 24,197,128,
- 73,111,226,171, 65, 26, 0,103,128,197, 0,199, 25, 12, 35, 24, 22,195,113, 6, 0, 7, 6,103,112, 28, 99, 8,126,243,223,211,
- 15,230,123,103, 26,162, 45,251, 71, 69, 69,233,245,122,138,162, 56, 75, 89,136,249, 31, 25, 26,138,126, 70,134,134, 54,211, 9,
- 16, 24,253,103,245,250,229,203,151, 91,234,235, 81,250,199, 46,109,219, 2,128,212, 98,153, 56,113, 98, 69, 77, 77,248, 61,157,
- 97,201, 69,120,184, 1, 0, 59,196,197,197,113, 30,192,165, 10, 7,251,192, 98,109,176,170,205,102,115, 96, 64,128, 66, 38, 39,
-105,138,101, 89,154,166,173, 86, 43, 73,146, 12, 69,243,215,115,113,105, 41, 55, 2,108, 27, 11,178, 29, 25,246, 20,126, 97, 3,
- 1,190,247, 66, 80,248, 24,192,136, 3,181, 53,145, 59,100, 29, 99,176, 78,189, 35,190, 56, 87,103,102,252, 36,152,245,232, 15,
-133, 37, 55, 92, 53, 16, 19,101, 61,147,119,106,221,234,181, 67, 18,134,189,254,246,155,251,126,217,151,249,213,215,131,135, 15,
-235, 16,217, 81,226, 43, 61,152,123,112,235,151, 95,127,247,195,206,159,127,254,121,194,132, 9,142,226, 40, 79, 14, 71,253, 8,
- 13, 13, 13, 66,222, 75,175,215, 7, 4, 4, 0, 64,100,100,100, 92, 92, 28, 65, 16, 12,195, 68, 68, 68,200,229,114,173, 86, 27,
- 25, 25,169, 84, 42,245,122,253, 63,153,223, 31,153,185,124,247,150,119,236,194, 62,119,217,178,119,177, 63, 94,192,230,102,130,
-143,162, 84,103, 5,147, 86,206, 24,123,247,140,130,122, 35, 88,169,132, 62, 49,192, 48, 64,154, 9,140, 1, 0,134,161, 29,110,
-213, 80,212, 80, 38,145,195,184, 71, 95,218,250,209, 7, 0, 86, 48, 90,104, 19,252,112,248,124,246,233,203, 0,208,190, 99, 39,
- 92,226,146, 13,199,247,193, 72, 51,236,250,121,111,255,177, 47, 0, 72, 1,164,132, 15, 76,125, 36,105,252,240,199, 0,160,252,
-230,117,150,164,157, 91, 55, 44, 75, 97,192, 50,180,197, 74, 90,173, 86,139,217,100, 52, 26, 27, 27, 27,245, 58,173, 94,175,215,
-233, 27,205,141,141, 38,147, 19, 10,215, 55, 98, 38, 51,109, 50,211, 6, 35,169,111,180,104,244,150, 6,157, 85,171, 39, 27, 26,
-172, 90, 61,169,174,167,212, 26, 74,173,165,234,212,214,234, 58, 39, 17, 36,156,101,105, 0,140,198, 48,156, 97, 49, 22, 88,150,
-101, 9,154,105,170, 79, 6,195,208, 56,129, 91,116, 27,220,237,216,158, 99,251, 14,237, 67,250,160,240, 38,223,210, 39,130, 32,
- 36,119,234,112,213,170, 85, 0,176,108,217, 50,180,203,188,237,180, 72, 33,230,127,155, 54,119,141,138,204,155, 55,239,231, 95,
-127,173, 20, 48,153,199, 41, 54,108,216,192,175, 66, 72,121, 83,204,227,219,111,191,189, 86, 85, 5, 0,187,115,114,184,147,133,
-133,133, 97, 97, 97, 45,212, 7, 16,203,219,166, 72, 68,199, 60,241, 31, 0,240,109,165,100,104, 90,167,214,212,213,213,213, 55,
-104, 12, 70,163,193,104,212, 55, 54, 26,180, 58,125, 67,131,217,100,180,154,205, 12, 69,187, 18,183,101,121,142,253,209,177,237,
-140, 32,126, 52,214,158,204,206,250,189,235, 26,213,231, 91,154, 47,110, 79,139,140,248,226, 28,214,169,183,229,200,142,155,255,
-238,235, 39,193,114,199,132, 81,218,218,254,123,107, 36, 46, 62,239,148, 41, 83,158, 91, 48,247, 90, 97, 97, 94, 78,110,128, 50,
- 96,250,180,233,129, 33,193,103, 79,229,251,203, 20,126,126,126,237, 34, 31,216,246,205,182,101,175,189,218, 40,140,211, 17,250,
-245, 19,180,155,191, 82,169,212,106,181, 56,142,119,232,208, 97,192,128, 1, 61,122,244, 8, 13, 13, 85, 40, 20,145,145,145,125,
-250,244, 9, 12, 12, 68,179, 66,255,225, 54,190,173,119,235,232,233,254,238, 1,204, 41,250,152,173, 45, 53, 75, 21,217, 53,190,
- 24, 64,100,195,109,226,187, 21,191,164,188,243, 97,247, 46,237,130, 20, 47, 60,232, 3, 27,207,177,164,245, 22,209, 22, 0,156,
- 5, 56,252, 1, 26, 1,224,194,197,159,250,196, 78,252,239,235, 95,253,248,221,154,253,135,175,140, 28,220, 67, 34,145, 31,200,
- 61,203, 18, 18, 43, 77,243,151,117, 92,223, 7,247,158,185, 10,233, 31, 76,153, 56,254,145, 71, 38,238, 59,244, 61, 69,154, 39,
- 60, 60, 29,167, 73, 41,225,156, 78, 89,134,166,129, 0,160, 37, 20, 77,178, 18,134, 97, 40,138,194,113, 28, 48, 28,199,128, 97,
-144,186,114, 50, 13,180,222,164,196, 9,141, 76,142, 99, 24,198,210, 44,205, 96, 12,203,144, 36,107,181, 0,174, 96, 49, 2,195,
- 8,140,198, 49, 11,205, 54, 24,216, 86,109,156, 6,100,126,223,139, 28,213,135,132, 96,113, 12,103, 88,130, 35, 67, 22, 99,121,
-204,255,110,131,187, 53, 89,169,155,179,179, 55,103, 3,192,177, 61,199, 96, 60, 95, 21, 49, 12, 11, 0, 59,118,236, 64,125,175,
- 83,167, 78,232, 5, 73,146,164, 40,202,173, 2,144,181,105,131,204,255, 78,247,142,112,165,173, 91, 3,192,132, 17, 46, 7, 54,
-135,244,234,149,158,158, 62,113,226,196,194,194,194,162,162,162,199, 19, 19, 1,160,107,215,174,220,201,155, 55,111,134,202,229,
-109,239,120, 36,247,118, 12, 0, 0, 80, 74, 22,219,180,183,110,147,214,106,234,180, 24, 80, 86,171,197, 92,109,148, 41, 20, 18,
-137, 4,121, 0,166,198, 70,139,193, 96,177, 88, 26, 27, 26,198,185,206, 61,139, 88, 30, 69,129, 6,246,235,125,242,236, 69,238,
- 79,118, 67, 2, 46,205,219,218,147, 39,115,190, 31, 61,254,201, 38,101,160, 45, 46,188,120,204, 11,195, 95,120,252, 7, 0,138,
-212,134,178,103, 31, 98,111, 92,108,253,233, 89, 3,197,234,146, 59, 5,108,189,161,251,119,136, 4, 3,220,181,130,159, 55,127,
-254,242, 15, 86,180, 14, 9, 37, 25,186,248, 86, 73,242,244, 25, 95,109,217,242,227, 15,187,102, 36,207,176,152, 45,185,249,199,
- 77,166,198, 57,207, 60,115, 48, 47,207,113, 30,135, 74,165,186,118,237,218,216,177, 99,237,252,128,250,250,250,151, 95,126,153,
- 27, 24,112,138,144,144,144,202,202,202,160,160,160,140,140,140,135, 30,122,168,111,223,190, 50,153, 12,199,241, 19, 39, 78, 12,
- 26, 52, 8, 0, 42, 43, 43, 67, 92,140, 29,254, 99,117,128, 75, 5,176, 41,230,249, 4,131,170,168, 92,115,123,226, 50, 0,128,
-147,203,216,221,159, 60, 80,125, 99,237,136, 39,160, 65, 13,239,109,102, 43,174,210, 62,126, 13,106, 18, 0, 48,135,165, 85, 71,
-114,126, 28,145, 48, 26, 0, 12, 12,121,173,161, 12,128,238,210,170,211,200,145,189,219,132,182,173,215,234, 0,160,193, 74,221,
-110, 48,116,115, 86,136,246, 29, 7,151,151,229, 1, 0, 96,146,113,125, 48, 0,201,222, 2,114,223,238, 29,213,117,149, 33,129,
- 1, 0, 16, 40,147,182, 11,116, 62,133,212, 10, 18, 25, 67,209, 64, 48, 24,134,211, 12,144, 20, 45,149, 32,246, 7, 0,134, 5,
- 96,157, 47, 2,120,252,201,101, 63,124,189,196, 87,198, 74,164,119, 60, 9, 18, 40, 22,204, 86,160, 45, 52,134, 97,152, 12,163,
-104, 48, 88, 96,246, 51,171,236,150, 86,115, 35,192, 12,206, 96, 12,176, 88, 83,128,158,102,112,156, 0, 2, 0, 7, 96, 9, 22,
- 88, 62, 39,128, 99,127,187,227, 99,123, 92,246,115,154,166, 45, 22,203,148, 41, 83,144, 2,216,177, 99,199,142, 29, 59,166, 76,
-153,210,185,115,103, 12,195,214,175, 95,191,108,217, 50,181,154,111, 53,208,146, 37, 75,150, 44, 89,178,119,239, 94, 67,245, 93,
- 59, 22,116, 10, 11,187,113,227, 6,240, 46, 10,115, 92,249, 37,109,221,122,227,198,141, 44,203, 62, 50, 98, 68,184,235,241,131,
-182,161,161, 67,122,247,174, 47, 45, 13,149,203,139,238,204, 5,138,110,215,110,209,162, 69,199,142, 29,139,137,137,233, 25, 30,
-206, 51,236, 97, 27,247, 23, 62, 6, 96, 59, 24,144,150,150,148,150,150, 84, 82,210,100,251,115,203, 2,120, 38, 2,249,135,183,
- 54,221,174, 98, 40,218,160,213,106,235,106, 49, 12,103, 89,198,108, 54,179, 44,203,178,236,141,203, 87, 72,171,133,103, 10,208,
- 93,222,237,200, 17,227, 71,142,224,166,132, 10, 9, 1, 53,214,157, 58,153,243, 61, 0,248,251,249,253,104,227, 4,244,143,159,
-212,162, 76,209,255,151,154,252,127, 65,108, 92, 98,205,188, 33,109, 63, 62, 94,164, 54, 4,201,176,122,181, 70,130, 97, 18,222,
- 24,225,211, 79, 63,205, 29,255,244,211, 79,227, 39,252,107,247,174,221,219,183,111,127,243,181,229,251,115, 14, 18, 18, 34,188,
-125,184, 86,171, 5,153,147,137,124, 93,186,116,113, 84, 3, 7, 14, 28, 0,119, 75,192, 34, 35, 35, 75, 74, 74,186,119,239,190,
-112,225,194,111,190,249, 38, 32, 32,224,234,213,171,182,177,129,146,146,146, 72,111, 3,110,255,196, 49,128,156,190, 41,112,103,
-102,243,238,154,192, 71,194, 48, 54,127, 15,155,183, 11,195, 0, 20, 10,179,175,242, 64, 96, 66,213,224, 68, 0, 32, 8,251, 5,
-129,133, 69,214,163, 39,222, 3, 0,134, 80,160,112,197, 53,221,237,255,206,255,143,209,104,209,153, 44, 0, 96,197,229,163,198,
- 77,113, 90,136,229,175, 61,179,247,231,254, 0, 0, 52, 10,182, 80,227,122, 97, 79, 62,191,198,215, 87,222,202, 71, 1, 0, 82,
-198, 28, 30,230,156, 95, 36, 44,101,197, 36, 50,134, 2, 12,163, 89,150,193, 48,156,162, 0, 0, 48, 92,194, 48, 20, 82, 84, 46,
-116, 64,131, 41,208,100,169,151, 73,112, 28,128, 1,160, 24, 32, 73,150,164,216, 70, 19,131, 17, 24, 13, 24,201, 52, 5,115,236,
-137,152,193,113,140,198,104,140,197, 89, 20,255,193,192,254, 17, 72,236,197,151, 70,186,218,151,227, 74,222, 21, 79,191, 22,203,
-178, 38,147,169, 87,175, 94, 81, 81, 81,165,165,165,219,183,111,231,188, 1,132, 15, 62,248,192,173, 14, 0, 0,167,195,107,147,
-103,205, 2, 1,139,194,208,210, 92, 91, 76, 76, 72,112, 59,122,220,246,142, 33,102,235, 13,220,188,121,179,127,215,174, 50,131,
-129,255,149,155,211,190,109, 89,222,118, 21, 5, 8, 88, 39,236,211,174,173,177,248, 26, 77, 81, 58, 77, 3, 69, 81, 44,203, 0,
-128,166,186, 70,167,209,176, 44,203, 99,254,219, 13, 6,108,217,249,147,237,212, 79,219,225, 1,231, 48, 94, 56,113, 24,205,167,
-128, 31,179, 62, 3,128,126, 35,158, 12,110, 29,219,146, 60,192,222,165, 3,224,211,216,212,255, 86, 49, 76,159,205,167, 78,141,
-107,211, 99,119,181, 4, 3,165, 84,232,198,145, 19, 39, 78, 60,148,115,104,212,152,209,187,118,254,240,206,202, 15,210,180, 90,
-150, 97,190,253,118,103,104,104,104,153,206,165,148,157, 26, 0,119, 75,192, 0, 96,240,224,193,149,149,149,103,207,158,237,215,
-175,223,232,209,163, 15, 31, 62,220,177, 99, 71,139,197, 50, 98,196, 8,150,101,207,158, 61, 43,149, 74,255,225, 83,128,208, 58,
- 0,206, 3,176,251, 9, 60, 43,129,111, 79, 92,246, 89, 65,118, 79,250, 82, 91,169,214,204, 74,138,217, 64,162, 86, 87, 53,168,
-105, 25, 33,238, 44, 32, 19, 22,220,119,252, 51, 79,211, 44,103,170,179,141, 6, 29, 33, 9, 0,220,119,233,106, 55, 43,149,198,
- 77,232,249,195,198,101,128, 27, 57, 34,245,247, 15,160, 73, 13,176,134,155,199, 55,245,239,221,209,101,112, 25, 8, 96, 89, 6,
-128, 2, 66,198, 82,128, 97, 52, 0, 96, 56, 0, 77, 67,211,127,174,240,204,156,215, 55,253,239, 77,138, 84, 75, 8, 28,113, 13,
- 77,177,102, 18,116,122,138, 4,150, 98,113,137, 20,123,247,109, 39,147, 91,158,125, 54, 10, 0,190,220,124, 13, 35,129,197,128,
- 5, 96, 89, 12, 88, 76,130, 1,176, 4, 70, 48, 12, 35, 89,188,100, 44,207,163,159,125,231,217,210,235,165, 94,124, 81,139,197,
-162,209,104, 2, 2, 2,226,226,226, 6, 12, 24, 80, 91, 91,123,253,250,117, 12,195, 24,134,217,185,115,167, 91, 29, 48,127,214,
- 44,159,214,173, 31,113, 22,174,153, 63,107, 22, 0,248,184,166,114,212, 33,237,100,195,219,180,241,168,252,109, 67, 67,135,246,
-238, 93, 95, 90,218,218,199,167,231,144, 33, 45,218,250,237,248, 61, 46, 46,206,110, 52,216,173, 14, 8,137,238,162,215,104, 36,
-114,153,197, 98,166, 73,138, 97, 24,101, 80,144, 86,173, 30,151,156,204,111,254,115, 11,193,208, 0,192,201,179, 23,199,143, 28,
-193, 69,255, 93,173, 11,139,105,167,169,171,175,219,158,181,141, 59, 51, 53,121,182,218,234,217,188, 79,199,152,143,195, 25,204,
-173, 31, 0,191, 52,109,228,208,229,199,166,181,247, 90,146, 22, 94,134, 81, 9,163, 46, 4, 93, 24, 59, 97,220,115, 79,205,238,
-221,167,215,174, 31,127,202, 59,127,102,206,156, 57,101,238, 54, 41,227,212,192,135, 31,126,248,225,135, 31,186, 93,225, 56,118,
-236,216,253,251,247,239,222,189, 59, 42, 42,106,204,152, 49,104, 46,220,165, 75,151, 74, 74, 74,164, 82, 41,167, 75,254,225,176,
- 91, 12,236,210, 3,176, 15, 55,247, 74,188, 8,137, 23, 61,121, 82,207,158, 67, 63,250,232,171, 23, 23, 76, 15,143,136, 6,176,
- 72,229,138,242,219,186, 17, 19,159, 22, 34,219,183,111,212, 51,207, 76,221,252,249,119,192,220, 4,144, 80,102, 83,120,187,128,
-142,173, 40, 55, 98, 52, 35,193, 25, 18,147, 72, 89,170, 73, 13, 0, 5, 44, 45,112, 90,203,156, 23,222, 4,128, 55, 94,153, 43,
-149, 96,104,223, 32,154,166, 27,244, 44, 77, 1, 33, 97, 62,222,200,215,254,102, 61,211, 5, 0, 62,255,172, 16,208,142, 52, 56,
- 48, 24, 16, 0,139,150, 60,226,246,185,218, 70,173,211,173,126,220,130, 97, 24,147,201, 68,211,180, 78,167, 35, 8,130,166,233,
-182,109,219,146, 36,105,219, 85, 62,248,224, 3, 87,123, 66, 32, 83, 61,200,171,233,158,193,168, 74, 61,100,124, 71,180,241, 48,
- 44,235,245, 24,128, 29,179, 59,157, 11,228,118, 57, 88,228,128,135, 0,224,234,145, 35,102,163,137,161,233,110,113,113,189,134,
- 12,247, 15,231,173, 64, 22,187,121,227, 58, 0,200, 0,254,243, 68,211,144,206,205, 27,215,109,143,157, 46, 17, 41,186, 29, 4,
- 16, 52, 45,249,217,155,183,170, 78,252,186, 27, 0,182,103,126, 54,112,248, 35,202, 54,195,132, 84,212,212,169, 83,133,236,244,
- 64, 99,206, 23, 33,148, 77,106,251, 75,165,249, 94,145, 78,159, 62,125,250,244,233,147,159,159,127,240,196,145,144,208, 16,143,
- 54, 41, 65,106, 64,200,149, 74,165,114,242,228,201,121,121,121,215,175, 95, 63,117,234,148,184, 23,144, 99,244,223,142,253, 61,
-216, 11,200, 59,116,126,240,161,159,247, 93,123,124,130,111,235,240, 14,106, 61, 53, 98,194, 83,194,101, 7, 63,244,224,224,135,
- 94, 77, 73,249, 47, 64,117,144, 82,210, 49,152,113, 31,181,252,247,146,230,151,249,173,247, 63, 1,128, 5, 11,231, 91, 77, 36,
- 3,224,235,235,187,118,227, 90,129,178,255,153,221, 21, 0, 62,255,191,171, 12, 75,188,178,236,177,251,240, 81, 89,150,181, 88,
- 44, 86,171, 21,209, 34, 34,196,191,235,254,160,110,119,152, 16, 14, 33,187,126,186,194,131, 35, 70, 8,191,248,118, 73,225,192,
-232,246, 94, 63,171,222,218,197,191, 77,151,196,164, 97,158, 10,186,218,229,205, 6, 56,133,201, 77,184,243,241,255,235,122, 42,
- 70,201, 67, 8,222, 76, 20,238,223,191,255,125,104, 36,131, 7, 15, 22,233,158, 71, 7,240,252, 85, 76, 10,255,151,132,152,213,
- 93,132, 8, 17,205,135,152, 17,236, 47, 9,145,253, 69,136, 16, 33, 42, 0, 17, 34, 68,136, 16, 33, 42, 0, 17, 34, 68,136, 16,
- 33, 42, 0, 17, 34, 68,136, 16,225, 22, 45,146, 20, 94,148, 21,101,255,156,178,104, 55, 8,177,174, 68,217,127,148,172, 32, 5,
- 0,119,111,152,197, 3,167, 93,168, 57,178, 34, 60,133, 43, 34, 19,225,105, 45, 9,172,201,178,178,178,138,138, 10,185, 92, 30,
- 26, 26,218,177, 99,199,251,246, 10,220,158,175,127,230, 30, 84, 83, 83, 83, 81, 81,193,127, 77,120,120,120,107,103,171, 79,154,
- 35, 43,226, 94,122, 0, 8,110, 87,222,243, 44,176,178,147,117,220,154,184, 69,247, 28,190,255,228,194,127,193,194,133, 11,187,
-117,235,198, 47, 30,126,247, 30, 56,182, 61, 33, 41, 41, 41, 49, 49,145, 71,246,158,232,128,135, 31,126, 24, 0,246,237,219,119,
- 31,100, 13, 6,195,206,157, 59, 81, 82,248,201,147, 39,247,117,157, 79,209,241,101,221, 38,133,207,200,200,112,106,109,240,215,
-146,144, 58,172,169,169,177, 88, 44, 24,134, 41, 20, 10,179,217, 92, 86, 86,118,250,244,233, 62,125,250,116,233,210,197,149,200,
-208,161, 67,221,190,215,237,219,183, 81,218, 19,126,172, 92,185, 18,109,247, 45,164,174,132,172, 5,153, 58,117, 42,127,187, 66,
-136,136,136, 0, 0,189, 94,111,177, 88,208,183,227,105,147, 21, 21, 21,139, 22, 45,226,121,168, 70,163, 25, 56,112,160,211,170,
-174,168,168,232,222,189, 59,143,108,117,117,245,242,229,203, 69,115,167, 57,240, 50, 41,188,104, 20,243,227,199,140,113,174,254,
-244,248,220,189,110,197, 15, 31, 62,204,117, 15,163,209,232,235,235, 91, 91, 91,235, 86,187,100,103,103,219, 30,219,118,200,236,
-236,236,172,172, 44,225,149, 80, 80, 80,128, 72,220,238, 62, 30, 33, 53, 53,117,222,188,121, 66, 82,191,162, 76,144, 79, 63,253,
-180, 70,163, 73, 79, 79,143,140,140, 12, 10,114,191, 22, 26,195,176, 95,126,249, 5, 29,143, 27, 55,110,239,222,189, 78,143,121,
- 60, 78,174, 97,164,164,164,196,197,197,109,218,180, 9, 17,165,144, 6,163,213,106,149, 74,165, 82,169, 84, 40, 20, 62, 62, 62,
- 53, 53, 53, 13, 13, 13, 1, 1, 1,167, 78,157, 2, 0, 30, 29,208,179,103,207,164,164, 36,142,184,109,173,248,180,180, 52, 0,
- 56,113,226,196,140, 25, 51,132,212,176, 64,246, 71, 88,183,110, 93,243, 27,182,159,159,223,229,203,151,165, 82,169,213,106,221,
-187,119,111,113,113,241, 43,175,188,226, 86,170,218,102,123,193,248,248,248,220,220, 92,238,103, 93, 93,157, 64, 65, 71,148,222,
-217, 68, 79, 68,243,217, 31,220, 38,133,255,147,224,220,185,115, 2, 45,196, 63, 79, 96, 36,188,255,138, 38,163, 38,255,117,129,
- 34,136,250,145,121,181,118,237, 90, 33,118,156, 93, 94,248,196,196,196, 3, 7, 14, 96, 24,102,183,211,153, 16,112, 73,225, 81,
-110, 72, 79,177,111,223,190,131, 7, 15,114, 73,225,221,214,124, 81, 81, 17,218, 51, 18, 37,133, 79, 79, 79, 23,226, 10, 52, 63,
- 41,188, 74,165,218,180,105,147,109, 82,248,148,148,148,164,164, 36,183, 5,214,104, 52, 10,133, 2, 0,230,205,155,103, 54,155,
- 51, 50, 50,124,124,124,204,102,179,201,100, 34, 8,226,204,153, 51, 60, 10, 0,177, 60,103,227,163,159, 94, 32, 45, 45, 45, 37,
- 37, 69,184, 19, 0, 0, 47,189,244, 18, 58,224, 90,148,227, 25, 87,136,136,136,168,171,171,123,253,245,215,253,252,252,118,236,
-216, 49, 98,196, 8,129,236,111,139,248,248,248,228,228,100, 91, 29,128,220, 8,158,134,228,245,199,141,141,141, 13, 15, 15,191,
-124,249, 50,218,203, 22,161,125,251,246, 49, 49, 49, 24,134, 29, 60,120, 80,100,255, 38, 86, 73,251, 0,220, 38,133,111, 38, 54,
-109,218,228,246,140, 64,100,100,100,164,166,166,122,170, 3,146,147,147,255, 90,193,113,142,253, 61,162, 51, 68, 97, 83,166, 76,
- 65,155,167,219,238, 6, 42, 28, 5, 5, 5, 0,144,152,152,136,146,194,183,105,211, 70,136, 21,111,135,209,163, 71,143, 30, 61,
-186,160,160, 96,195,134, 13, 5, 5, 5,110,239,160,209,104,130,130,130,188,115, 5,154, 3,167, 73,225,221, 58, 61, 70,163, 81,
-161, 80,204,158, 61, 91,171,213,214,215,215, 75,239,100,133,151, 74,165, 62, 62, 62,106,181,154,223,115, 42, 41, 41,225,180, 50,
- 82, 0,200, 15,136,139,139, 19,238,111, 69, 69, 69,113,105,159,239, 67,195, 46, 45, 45, 61,114,228,200,132, 9, 19, 34, 34, 34,
- 66, 67, 67,143, 28, 57,242,202, 43,175,248,249,249, 25, 12, 6,130, 16,146,223, 8,226,227,227, 95,123,237, 53,212, 25,237,252,
- 0, 87,216,186,117, 43,143, 19, 80, 81, 81,241,228,147, 79,186,250, 43, 77,211,225,225,225,225,225,225, 37, 37, 37,200, 57,238,
-211,167,207,192,129, 3,145,193, 33,154,255,182,236, 15,110,147,194, 55, 63, 8,227,246, 76,139,234,128,241,227,199,123,234, 7,
-184, 45,161,219, 91, 77,158,191,111,231,134,135,189,120, 65,141, 70, 99, 48, 24, 28, 75,123,235,214, 45, 79, 85,130, 23,245,204,
- 37,133,239,213,171, 23,134, 97,213,213,213, 94, 40, 0, 4, 36,184, 97,195, 6, 87,117,133,162,255,112, 39, 41, 60,183,119, 60,
- 74, 10,143, 78,242,124,232,113,227,198,113,227, 73,255,250,215,191, 56,159,128, 39,242,227,104,133, 56, 38,133,231, 98, 65, 78,
-113,237,218, 53, 28,199,209, 1,203,178,133,133,133,104,243, 37,148, 20,158,166,105,163,209,248,253,247,223,243, 80, 57,199,254,
- 73, 73,246,123,210,121, 20,213,137,138,138, 66, 5,246,212, 21,240, 2, 36, 73,246,235,215, 47, 39, 39,167,127,255,254, 6,131,
- 1, 5,217,114,114,114, 30,126,248, 97,138,162,220,138,199,199,199, 3,192,187,239,190,235, 42, 22,116,207, 81, 80, 80, 32,147,
-201,226,226,226,162,162,162,250,245,235,103,181, 90, 17,251,151,148,148,228,228,228,136,212,239, 22,247, 82, 1,220,243, 65, 96,
- 47,116, 64,100,100,164, 71,126, 0,234, 90,153,153,153,118,231,247,236,217,147,153,153, 41,240, 38, 39,110,116, 31,212,233,178,
-240,200, 15,103, 96,114,166, 98, 84, 84, 20, 34, 35, 79,217,159,211, 97, 30,153,135,200,252,183, 75, 10,239,157, 19,192,221,129,
- 39, 41, 60,103,242, 27, 12,134,149, 43, 87, 70, 71, 71, 75,165, 82,185, 92, 30, 16, 16,176, 98,197, 10,183,126,128,109,172,223,
-213,120,128, 23,170,253,204,153, 51,220, 53,142, 59, 98,169,213,106,165, 82, 73, 81,212,241,227,199, 9,130,176, 90,173, 38,155,
-164,240, 36, 73, 90,220, 37,133,119, 12,251,112,182,124, 84, 84, 84,141,135,217, 55, 85, 42, 21,154, 17,228,133, 31,224, 54,242,
-195, 33, 61, 61,253,229,151, 95, 70, 61,174,164,164,164,184,184, 24, 0,250,246,237, 91, 88, 88, 40,100, 30, 78,115,184, 30, 41,
- 15, 47,110,120,230,204, 25,171,213, 58,120,240, 96,110,227,185,194,194,194, 35, 71,142,136,228, 14, 54, 57,129,109, 67, 64,127,
-129, 49,128,251,172, 3,146,147,147,145,223,202, 57,194, 2,217,127,242,124,239,195,151,200,252,183, 51,252,171,170,170, 90,154,
-253, 57,243,191,103,207,158,232,103,207,158, 61,155,233, 4,240,131,139,254,251,249,249, 45, 95,190, 92, 42,109,202, 38, 20, 27,
- 27, 11, 0, 65, 65, 65, 19, 39, 78, 60,122,244,232,196,137, 19,239,225, 67,185, 58,225, 6, 0,236, 16, 23, 23,199,121, 0,142,
-243,166,173, 86,171, 90,173, 54,155,205, 1, 1, 1,114,185, 28,165,219,228,146,194,211,180,155,164,240, 72,169, 59,198,130,108,
- 71,134, 61,133,215,130,194,199, 0, 86,172, 88, 49, 97,194,132,200,200, 72, 95, 95,223,132,132, 4,181, 90,237,231,231,167,209,
-104, 54,111,222,140,227, 45,187,104, 52, 55, 55,151, 11, 31,161, 14, 40, 92,157, 20, 20, 20,148,149,149, 77,155, 54, 13, 0,190,
-253,246, 91,173, 86, 43, 82,191,189, 31,236, 34, 47,252,159,125, 37,176, 23, 35, 1, 0, 32,220,120,231,200,130,243, 91,133,179,
- 63, 66,191,190,177, 7, 15, 29,222,122,200, 23,233,131, 19, 55,186,123, 84,212,184,184,184,236,236,108, 20,199, 95,177, 98,133,
- 48,195,144,229, 42,199, 11,246, 71,230,191, 99, 82,248, 29, 59,118,160, 63,121, 1,183, 73,225, 53, 26, 13, 58,248,246,219,111,
-207,159, 63, 15, 0,223,124,243, 13,119,178, 69,147,194,115,115,126,236,180, 38,255, 96,187, 82,169,164,105, 90,163,209,212,213,
-213,161,177,122,163,209,216,216,216,168,211,233,180, 90,173,201,100,178, 88, 44,180,235,116, 67,182,100,109, 55,110,111, 55,175,
-159, 95,139,216, 22, 91,200,180,209,102,226,203, 47,191, 76, 72, 72,240,245,245,189,124,249,114, 78, 78,142,159,159,223,127,255,
-251,223,163, 71,143,190,242,202, 43, 66, 20, 64,188, 51,120,164, 3,222,125,247, 93, 79,217, 31, 5, 33, 17,251, 3,192,180,105,
-211, 70,120,178,119,247, 63, 4,115,210, 62,224, 70, 2, 90, 42, 4,116, 15, 7,129,155,195,254,239,190,251,174, 23,110, 50,138,
- 5, 37, 39, 39, 11,103,255,201,243,247,245,235,219,148,168,111,231,119,223,239,252, 14, 0,224,224,161,195, 48,106, 36,128,251,
-105,160,104, 86, 34,138, 5,157, 57,115, 6, 37, 65, 45, 40, 40, 16,208,124, 49,176,201, 11,239, 41,251, 35,243,223,169,177,239,
-157, 19,128,212,198,252,249,243, 93, 86,212,228,201,182, 73,225,103,206,156, 9, 14, 73,225,159,122,202,101,222,136,102,142, 1,
-128, 87, 73,225, 67, 66, 66,234,235,235,173, 86,107,109,109,173, 92, 46,231,146,194, 27, 12, 6,163,209,104,177, 88,180, 90,173,
- 93,112,223, 22,136,229, 81, 20,200, 46, 19, 25,143,148, 29,251,163, 69, 0,182, 63,189, 48,252,133,199,127, 0,160,184,184,184,
-176,176,208,104, 52, 14, 30, 60,216,104, 52,102,101,101, 77,155, 54,109,215,174, 93, 4, 65, 8, 81, 0,205,177,226,109,239,224,
-145, 84, 92, 92, 28,250,154,103,207,158, 53, 26,141,195,134, 13,235,218,181,171, 84, 42,181,157, 48,253,143, 5,154, 5,100, 55,
- 8,220, 82,179,128,238,237, 32,240,253,100,127, 91, 29,224,145,237,239,244,248,224,161,195, 2, 27, 46, 58,240,245,245,181, 93,
- 50,118,242,228, 73,183,178,142,121,225,209,140, 32,183,229,231,146,194, 59,218, 80,104, 34, 29,207,156, 60,199,149, 95, 72,157,
-176, 44, 59,127,254,124, 46,160,228,136,190,125,251, 70, 68, 68,160,252,239, 69, 69, 69,104, 46,144,237, 73,219,148,226,246,186,
-238,238,117, 0,194,199, 0,108, 27,161, 74,165, 74, 76, 76,204,206,206,182,141,152,241,215, 85,251,246,237,175, 93,187,134, 50,
-175,145, 36,137, 52, 16,151, 20, 30,141, 9, 11,156,204,147,152,152,152,152,152,200,217,239, 66, 34, 57, 28,221, 71, 69, 69,217,
-118, 34,175,167,147, 10, 4,154,241,185,120,241,226,156,156,156,145, 35, 71, 22, 23, 23,251,251,251,151,149,149, 9, 84, 0, 28,
-131, 35, 67,202,187, 33, 1, 79,109,127,212,143, 74, 74, 74,242,243,243, 1, 64, 42,149, 14, 28, 56, 48, 42, 42, 42, 33, 33, 65,
- 28, 7,118, 11,137, 99,127,243,250, 94,118,173,211,214,126,177, 53,139, 90,142,253,147,147,147,155, 57, 85,206, 35,241, 91,229,
- 46,227,245, 62, 62,190,110,197,157, 6,166, 5, 34, 49, 49,113,204,152, 49, 7, 15, 30,228,242,194,115,147, 65,133,232, 48,167,
- 73,225,209,138, 27,183,139,194, 28,149,250, 11, 47,188,192,195,254, 8,193,193,193, 40,196, 47,151,203,109, 13,255,215, 95,127,
-157,191,201, 53,115, 29,128,109,109,216, 45,149,112,171,239, 71,140, 24,177,103,207, 30,138,162, 26, 26, 80, 82,120, 22, 0,106,
-107,107, 27, 26, 26, 88,150, 21,110,200,103,101,101,217, 78,253,180, 29, 30,224,103,127,240,118,140,167,249, 58, 96,217,178,101,
- 71,142, 28,153, 56,113,226,251,239,191,191,100,201, 18,137, 68,130,150, 68,184, 13,241,121, 97,197,219,202,122, 10,130, 32, 42,
- 42, 42,108,215, 1, 92,184,112,161,190,190, 62, 38, 38, 70,224,188,213,127, 2,236, 6,129,249, 20,128, 91, 19,195, 83, 63,212,
- 59,120,193,254,247,185,159,172, 88,177,130,127,125,163, 91,101,217,156,144, 46, 34, 77, 52, 13, 31, 0,208, 90, 48, 46, 47, 60,
- 15,175,161,196,238, 73, 73, 73,182, 99, 0,200,188, 93,186,116, 41, 63,219, 58,149,245, 52,100, 36,208,240,191, 87, 46,169,109,
- 61, 56, 38,133,231,215, 1, 24,134, 77,152, 48, 33, 51, 51, 83, 38,147, 89, 44, 22,138,162, 24,134, 9, 12, 12,212,104, 52, 60,
- 27,117,216,246, 35,110,248,247,204,153, 51,137,137,137, 92,223,113,213,203, 80,147,176, 91, 54,236,233,216,175, 99,204,199,163,
- 40, 16,210, 1,220,226,175,231,159,127, 30, 29,232,116, 58, 30,145,202,202, 74,219,213, 94,223,124,243,141,219, 29,126, 92,201,
-122,132,243,231,207,163, 33, 37, 91,148,151,151,151,151,151,131, 8,155,156,192,182,212,207, 55, 11,168, 57,252,238, 40,123,127,
-180,197,253,103,127, 0, 8, 11, 11,107,206,184,101, 84, 84,212, 61,156,208,205,197,127,108,185,207,105,178, 79,175,183,124,104,
-166,172, 83,111, 64, 32,188, 30, 3,176,107, 18, 78, 93, 46,183,205, 38, 57, 57,249,250,245,235,135, 15, 31, 54,153, 76, 52, 77,
-199,198,198, 78,157, 58,213,237,183, 59,113,226, 4,231, 70,112,103,108,143, 93,181, 10,206, 56, 64,154, 99,229,202,149,110,149,
- 13,135,169,205,203,159,236,117, 15, 10, 15, 15,159, 52,105, 18,255, 53,239,188,243,206, 61,151, 21,225,145, 14,112,100,127,123,
- 5,208, 28, 14, 21,119,107,250,195, 97,247, 9,132,111, 9,251, 23,122,169, 63,228, 86,157, 59,119,238,220,185,179,240,235,143,
- 29, 59, 38,112,159, 31, 30,227,192, 11,117,123,175, 52,180,167,104,221,186,181,215,117,219, 28, 89, 17,194,117,128,203, 88,130,
-152, 20, 94,132, 8, 17, 34,254,153, 16, 51,130,137, 16, 33, 66,132,168, 0, 68,136, 16, 33, 66,132,168, 0, 68,136, 16, 33, 66,
-132,168, 0, 68,136, 16, 33, 66,196,223, 19, 45,152, 20, 94, 76,192, 45,202,254, 69,101,127,122,116,131,112,217,137,187,230,223,
- 43,217, 31, 39,122, 32,251,216, 79,119,201, 62, 50, 44, 28, 0, 48, 12, 35, 73,242,198,141, 27, 86,171, 85, 34,145,148,151,151,
- 79, 15,136,220,151,159,111,234,221, 97,208,160, 65, 4, 65,160, 73,180,187,143, 86,220,171,186, 66,207,229,128, 86,168, 92,186,
-116,233,129, 7, 30, 80,171,213, 15, 60,240,128,143,143, 15,220, 89,208,103,247, 92,167,178,183,126,219,146, 18, 95,182, 53, 63,
- 70,210,122,172,191,178,149, 43, 89,177, 61, 11,151, 21,164, 0,220,130,127, 81,226, 61, 76,192,221, 63,127,199,149,106,141,146,
- 32,122,251,225,251,227,159,113,123, 61,203,210, 24,230,114,213, 31,195, 90,129, 5, 28,151,185,189,207, 95, 34, 1,247,159, 13,
-133,133,133,107,215,174, 77,127, 21, 0,224,135,220,248,228,228,100,158,139, 75,203,111, 85,148,151, 23, 94,189,170,209,104, 34,
- 34, 34,252,149,202,113, 99,198,242,223, 31,109,145,132,224, 42,121,217,142, 29, 59,132,127, 41,180, 10,218,105, 14, 97, 62, 36,
-169, 81, 91, 3,192, 32, 43,216, 3,193,184,181, 16, 53, 11, 0,160,100, 51,156, 89,228,113,253, 78,169,251,253,185, 59, 66,121,
- 46,196, 48,204, 96, 48,236,223,191,191,164,164, 36, 73, 26,210,182, 67,152,217, 96,242, 49, 82, 67,151, 60, 55,124,226,180,221,
-159,101,252,116,240,224,216,177, 99,239, 67,147,160,105,186,164,164,164, 79,159, 62, 49, 49, 49,103,207,158, 53,155,205,209,209,
-209,142,155,195, 59, 5, 69, 81, 23,242,207,181,159,221,119,233,128, 30, 39,246,175,222, 89,144, 16,221,115,148, 64, 89, 17,205,
-242, 0,220, 82, 63, 63,238, 73, 2,238, 49, 5,223,119,172, 46, 5, 41, 16, 12,197, 52, 52, 86,214, 97,212,111,203, 44, 35,147,
-252, 30,228,217,186,139, 61, 85,240, 58, 73, 74, 66,130, 37, 4, 33,177, 88,240,171, 69,132,209, 40,235, 31,203, 88, 41,236,215,
- 19,254, 0, 48,107,114, 82, 96, 43,247, 10,192,163, 4,220,174, 52, 71, 75,167,236, 0,180,141,229, 27, 24,246,182, 83, 93,200,
-194, 27,216,212, 43, 73,247,103, 74,248, 29,246,103, 1,224,135,220,225, 71,143, 30,229, 81, 0,189,251,236,239,222,189,127, 86,
- 86,171,147,121, 39, 0,160,232,106, 33, 0, 60,251,239,239,180,141,243,245, 13,124, 59, 73,140, 25, 51,230,192,129, 3, 59,118,
-236, 56,116,232,144,211,157,242,132, 47,250,119,108,201,169, 41, 41, 25,194,148,135,109, 26,122, 15, 16, 53,235,247, 77,217,188,
- 80, 0,119,222,142,103,231, 81,132,235,215,175,231,108,223,254,118,226,212,216,228,231,101,109,130, 64,130, 3,224,192,176,192,
- 72, 25, 11, 59,126,214,156,178,143, 62, 56,126,252,248,144, 33, 67, 90,154, 76,113, 28,143,141,141,205,201,201,233,211,167,207,
-128, 1, 3,170,170,170, 46, 92,184,208,187,119,111, 33,219,204, 16, 4, 49,122,212,152,247,215,236, 74,123,166, 96,208,184,185,
-131, 6,102, 47,249, 95,121,204, 67, 79, 59,149, 69, 95,147, 95, 61, 96, 24,230,177,178,255, 27,193, 46, 33,240,239,190,151,192,
-205,224,184, 14, 19,251,116,175,185, 67,231, 11,215, 1, 94, 36,224,142, 43,201,139,108,243, 0,196, 14,192,252, 3,250,236,223,
- 94,199,144,183,181,250,238, 10,230,252,158, 76, 61, 11,202,110,206,117, 0, 11,224,231, 43, 97, 24,169, 86, 43,147, 73, 36, 62,
- 62,210,145, 67,128, 1, 28,199,164, 53,106,144, 73,165, 18,204, 74,145,164,208,222,234, 33,119,115, 91, 54,162,141,168,126,190,
- 42, 53,147,100,202,191,251,187, 85, 3,110,117, 42,223,250,207, 55, 48, 0, 64, 89,144,156,254, 73, 8,138, 15,182, 90,189,125,
- 58, 58, 94,156,180, 45, 38, 81,231, 5,251,175, 89,179, 6,199,241,197,239, 53, 37,126,226,233,225, 9, 9,218,152,152, 84,128,
-159,226,227, 63,226, 78,206,152, 1,227,199, 3,192,134,109,219,249,116, 0, 98,127,180,177,215,180,105,211,208,174, 71,110, 9,
-209,169,237,143, 54,204,224,202,153,154, 42,148,253,189, 68,220, 26,184,147,168,125,237,218,181,208, 47, 29,206, 46,110,161, 71,
- 29, 58,116,232,147, 73,115, 58,141, 26, 3,132, 5,147,226,152, 4,199, 8, 41,203, 98,140,129, 98,105,154,181,210,207,205,122,
-254,249,255, 46,184,222,166,141, 71,139,218,188, 64,126,126,126,187,118,237, 24,134, 57,114,228,200,213,171, 87,199,140, 25, 51,
-120,240,224,147, 39, 79,246,232,209,195,173,236,209,131,219,158,136, 53,158,209, 19, 51,222,104, 28,214,119,253,252,133,211, 86,
-167, 53,164,173,206,140,234, 59,131,135,220, 57,122, 73, 77, 77,181, 59,211,156,253, 40,255,233, 30, 0, 87,119, 91,247,102,118,
-238,210, 57,229,237,231,132,232, 0,239, 18,112, 15, 41, 60,212, 35,162, 3,246, 64, 7,152,244, 60,107, 48,128,186, 62,184,166,
-130, 60,246,179, 65,109,241, 3,186,234,200, 46,230,129, 46, 1, 1, 1, 78, 53, 0,195, 72, 43,110, 75, 46, 21,183, 33, 8, 28,
- 7, 34, 64, 73,247,237,110,234, 20,129,203, 36,184, 84, 34, 11, 11,196, 44, 22, 51,183,135, 62, 15, 60, 77,192,141,216, 31, 81,
- 63, 0,168,142,146, 38,171, 1, 0, 70,167, 29, 88,185,114,140,219,251, 92,255,224,186, 20, 43,110,250, 12, 88, 5, 22,250,224,
-157,227,154,176,127,243, 45,142,199,222,190, 43,153,201, 93,127, 74,201,138,139,139,155, 51,135,207,252,175, 43,104,247,250,134,
-199, 88, 96,223, 95,248,195,192,132,152,173, 31,231,166,103,205,128, 44,246,141, 69, 31, 1,119, 56,237, 0, 0, 32, 0, 73, 68,
- 65, 84, 63,208, 85,168, 41,221,120, 51, 37, 92, 1,198,250, 75, 44,203, 42, 91,247, 70,236,255,201, 39,159, 56,189, 88, 25,248,
- 91, 76, 12, 6,112, 28,224,135,147, 39, 97,224,192,166,243,220, 10,255,233, 83, 55,100,252,223,107, 56,211,193,169, 56, 98,255,
- 17, 35, 70, 48, 12,195,147,119,204,173, 41,131,216,223, 70, 31,164,100,100, 56,111,150,248, 84, 13,220,105, 49, 24, 0, 96,192,
- 36,221,253, 87, 12, 69,101, 48, 0,118,194,221, 62, 15, 62, 77,131, 2, 54, 0,192, 48,207, 44, 92,184, 16,157, 95,184,112,225,
-186,117,235,240,232,217, 77, 55,102, 1, 48,176,147,149, 76,179,127,174,109, 30, 70,201, 52,190,231,154,205,230,182, 17,145,192,
- 88,113, 57, 96, 18,130,210,107,205, 37, 55,106,203, 43,218, 15, 73,192,100,129, 24,105, 5, 2, 95, 57,119,201,152, 77,111, 46,
- 90,180,200,107,190,112,181,197, 8,199,200, 44,203,154, 76,166,224,224,224,194,194, 66,134, 97,110,220,184,177,121,243,230,110,
-221,186, 53, 52, 52,184,117,176, 88,150,141,192, 79,182,235, 56,174,225, 72,129, 86, 35,255,122, 55,181,231,196,150, 23,147,124,
- 36, 70, 6, 96,134,115,127, 87, 4, 47, 28, 63,150,157, 79, 32,225,167,126,150,101, 71,190, 58, 98,211, 17,213, 28, 72, 57,255,
- 85, 1, 12,117,255, 72,196,251, 70, 99, 38, 0,102, 54,127, 30, 28,156, 45, 36, 1,119,215,186, 43,240, 96, 55, 24,255, 12,232,
-235,176,122, 53,180,105, 7, 58,181,146, 96, 91, 41,160,173, 5,106, 26, 27, 76,135,190, 15,152,244,140,243,208,167, 81,114,165,
- 56,152, 32, 8, 63,169,137,192, 9, 76,130, 87, 87,251,117,237,194,180,111,135, 61,157, 68,179, 12,222,160,150, 8, 81, 0,158,
- 38,224,182,101,127,144, 16, 37,183, 53, 0, 80, 86,109,238,216, 70, 17,253,204, 79, 43, 87, 78,228,191,137, 20, 43,150, 96, 21,
- 4, 86, 71,179,161,242,214,152,223,147,149, 12,163, 54,155,179,232,252,165,205,241, 84,220,106,175,215, 54, 60, 58, 56,248,245,
- 13, 63,204,246,199, 59, 2,192,243, 47,116,237, 51, 32, 42,115,227,145,183,214,204, 83,169,132, 58,203, 24, 6, 41, 47,253,134,
-234,127,216,176, 97,185,185,185,174,216, 31, 0, 70, 39,212, 3, 92, 4,248,173,161,218, 63,186, 35,124,250,105,227,225,195, 16,
- 29, 13, 81, 81, 24, 0, 52, 84,251, 3, 64,108,175, 43, 23, 47,116,112,202,254,135, 14, 29, 98, 24, 6,113,247,183,223,126,235,
- 41, 97,113,199,182,236, 15, 0,174,216, 31, 0, 50, 84, 42,196,225, 78,181, 44,115,135,119, 84,155, 54, 97, 24,252,244,235, 93,
- 3,110,159,100,168,144,127, 17, 25, 25,201,178,236,250,245,235,209,249,245,235,215,175, 91,183,110,223,190,125,220,190,149,224,
- 32,139,220, 17,150,101,159,123,238, 57, 39,241,241, 59, 78,207,166, 79, 63,197, 48,216,157, 91, 97,199,134, 18,165, 18,164, 4,
-109,108,184,178,231, 96,230,246, 29, 31, 87,222, 0,128, 83,111,181,138, 30, 62,222, 82,118,235,210,133, 51, 5, 55,138,180, 85,
- 85,191,253,246, 27, 64, 91, 47,216,196,113,219, 53, 71, 6,175,172,172, 92,190,124,249,234,213,171,173, 86, 43, 65, 16, 74,165,
-210, 96, 48,156, 58,117,138,191, 89, 34,217,134,242, 99,111,125, 81,246,217,194, 7,212, 6,153, 76,130,183, 15, 82, 84,213, 89,
- 83, 86, 81,125,250,199,117,116,237,213, 33, 53,192,125,104,199, 3, 17,118,236,111,171, 21,112, 87,125, 6,237,123,254,187,183,
- 62, 46, 89,200, 3, 80, 6, 24,163,113, 43, 98,127,197,233, 82,227,190, 46,224, 46, 51, 76,251, 35,223, 72, 73, 19, 38,197,224,
-118, 41,144, 20,220,186,204, 86,223,198,234,110,251, 83,140, 20, 88,156,245,175, 51, 82, 31, 28, 56,225, 74, 60,188,173, 36, 49,
- 1,122,196, 88, 37,132, 84, 42,145,133,250,203,251,246,193,165, 82,153, 92, 38,103, 25,249,205,114, 57, 73,210, 52, 35,200, 88,
- 64, 9,184, 81, 37,240,239,214, 89, 82, 82, 98,155, 84,100,250,186,242,131,103, 52,101,213,102,164, 3,138,203, 77,144,184,157,
-255, 14, 18,172, 2, 0,164,250, 2, 63,191,107,114,133,158, 97,212, 36,121,134, 32,162,172,134,250,150,107, 1,215,207, 53, 2,
- 96, 28,251,223, 46,100,251, 77, 36, 94, 88, 49,102,216,152, 30, 0,236,245,115,141, 66,110,178,117,235,214,197,239, 97,254, 97,
-189, 88,128,113,147,230, 30, 61,122,148,231, 98, 6,191,213,186,117, 19,251,235,235,125, 1,160, 79, 31,136,142,134,167,159,110,
- 98,127,125,189,143,190,222, 39,216,247,182, 83,241, 41, 83,166,140, 28, 57,114,212,168, 81,211,166, 77, 35,238, 6,119,134,191,
-180,118, 45, 89,168,134,179,225, 38, 4,199,159, 24, 56,177, 43, 56,193,177, 99,199,218,217,218, 11, 23, 46, 68,219,246,253, 30,
-190,188, 27, 63,168, 84,191,253,246, 27,186, 57,247,154, 92,112,156,251,233,244,185, 50,150,197,125,229,100,213, 77,213,235,175,
-111, 54, 52,104, 70, 12, 66,231, 63,219,178,249,205, 37,207,198, 44,154,254,118,193,161,237,154, 27, 99, 30,125, 84,160,131,123,
-254,252,249,148,148,148,115,231,206,217,168,204, 12,167, 81, 62, 84, 33, 5, 5, 5, 71,142, 28,153, 62,125,250,134, 13, 27, 26,
- 27, 27,209, 6,218,102,179,217,223,223,127,234,212,169, 67,135, 14,117, 69,253, 24,134, 21,228,237, 44,218,183,104,209, 43,233,
- 63,189,241,192,149, 10,137,182,145, 96, 48,168,111,180,178, 33,157, 95,122,245,221, 71, 30,159,233, 82, 85,103,100,160, 14,171,
- 82,169, 92, 29,136,112,197,254,246, 30, 0, 71,253, 94, 56,134,118,103,204,230,207,237,220, 2,158, 4,220, 1, 13,183, 88,172,
- 1, 59,119,156,213,233,177,214,109, 64,230,143,229, 31,132,176,214, 64, 72, 40, 43,107,165, 25, 53, 3, 44,230,170, 84,108,157,
- 90,146,151, 47,127,160,141, 36,233, 49, 82, 42, 5, 41,129, 17,132,132, 32, 8, 2,199, 21, 50,172,117, 24,104,235,105,143,242,
- 28, 8, 73,192,125,151,249, 15,176,109,126, 59,238,184,255,178, 18, 41, 91, 71, 98,161,110, 83,120, 43, 26, 15, 7,191,189,165,
-118,113,106,157,218,231, 1,242, 18, 77,151, 0,192,205,243,109, 91,174, 17,172,202, 88,252,236, 88, 21,199,254,232,228,160,160,
-215,135,244,152, 50, 56,248,210,170,140,197,110,251, 76,102,102,230,175,191,254, 90, 95, 63, 58, 36,228,160,127,104, 79,150,101,
-113, 28,231, 25,103, 43, 43,131,146,146,223, 80,220, 8, 20,141,106, 3, 12, 24, 0, 0, 80, 92, 12, 27, 55,130, 94, 7,134, 70,
-104, 52,128, 95, 16,223, 32,132, 99,196,255,250,245,235, 0,240,222,123,239, 1, 64, 76, 76,140,119,209, 12,238,115,243, 92,182,
- 96,193, 2,206,138,183,165,114,254,155,119,234,212,137,139,254,115, 64, 78, 64,167, 78,157,126,119, 2,238,198,236,240,152,162,
- 75,151, 43,130,130,112, 28,127,241,197, 23, 63,250,232, 35,225,207,141,183, 4,178, 76,227,179,239,189,214,107,202, 20,213,123,
-239,113,249, 91, 84,197,168,242, 33, 55, 55,247,192,129, 3, 55,110,220, 96, 89, 22,192,232,150,253,145, 75,167, 82,169, 82, 83,
- 83, 99, 99, 99,207,157, 59,199,178,236,220,185,115,111,233,157,168,216,242,242,242,199, 30,123,172, 83,167, 78,123,246,236, 65,
- 41, 51, 1,128,162, 40, 0,120,248,225,135,121,198,105, 89,150, 45, 41, 60,255,230,210,255,132, 68,103,157,203,154,117,241, 22,
- 86, 86, 45, 1, 22,183, 88, 73, 53, 27, 50,111,246,243,222, 77, 1,106, 78, 94,147,127,250, 24,192,145, 35, 71,108,127, 54, 84,
-104,132, 48, 38,231, 1,156, 57,115, 6,217, 39,138,211,165,242,223, 42,232, 64, 95,112,151,128,251,124,105,141,197,143,238,106,
- 58, 23, 94, 86, 4, 93,122, 3, 78, 65,171, 96,203,133, 66,131, 30, 55,208,172,142,161, 2, 64, 14, 44,229,162, 1, 49,141,141,
-132,140,160,116, 90,252,212, 69,105,194, 64, 9,195, 72,110,221,146,158,253,205,199, 95,142,181, 13,195,135, 13, 38,127, 83,179,
- 56,238, 89,131, 16, 98, 37,165,101,105, 0, 96,101, 82, 16, 34,253,166,192, 14, 91, 39, 5,144,176,154,175,158, 13,154,206,155,
-147, 78, 90,125,154, 6,127, 0, 88, 45, 9,152, 94,125, 51,127, 85,123,191,182,221,180, 21, 21, 85,165,149, 45,250,201,251, 12,
-136, 50,104, 0, 0,140, 62,151,125, 77,221,191,123,171,105,132,124,104, 98,143,188,237,238,109,255, 73,195,127,253,225,135,196,
-192,188,236,181,175,193, 75,239,178,195,135, 15,231,159,250, 25,217,190,131,237,160,227,238,221, 48, 99, 6,108,221, 10,209,209,
-236,186,117,216,219,111, 55, 2, 52, 2, 64,116,215,160,197, 47,241, 61, 26, 25,191, 83,166, 76,249,246,219,111, 57,187,120,220,
-184,113,142, 44, 41, 92,205,187,189,230,192,129, 3,235,214,173,115, 84, 0,107,214,172,177,157,159,234,136,196,196, 68, 46, 21,
-187, 45, 94,122,233,165,181,107,215,186,114,136,127,189, 92,246,234,219, 75,102,191,177,244, 21,171,117,253,250,245,142,175,182,
-102,205,154,236,236,108,167,156, 56,188,123,199,207, 63,219, 24, 55, 99,198, 91,111,189,229, 84, 79, 44, 92,184,112,205,154, 53,
-159,126,250,169,144,202,249,228,147, 79,208, 16,107, 74, 74, 74,198, 29, 96, 24, 22, 27, 27,123,203,217, 28,115,146, 36,119,239,
-222, 61,122,244,232,226,226, 98,131,193, 64,146, 36,142,227, 86,171, 21,165,205,225,103,112,139,197,114,102,231,140,225, 79,188,
-189,239,200,245, 27,183, 9,157, 1, 39, 36, 80, 97,240,121,113,217,107,110,101,209,208, 14,127, 44, 72,132, 43,243,223, 62, 4,
-132,156,166,132,132,132,132,132,132, 11,119, 80,114,250,166,214,164, 13, 25, 32,104,238, 51, 98,121, 95,223,100,197,233, 82,233,
-205,122, 22,195,100,179,235,193, 93, 2,110,137,191,140, 98,161,212,108,173,172,173,163,127, 59, 2, 23, 78, 89, 46,158, 35, 27,
-234,235, 76,140,198,224, 83,108, 97,235,129, 48,211, 78,217,159, 6, 12,194, 31, 32, 34, 58,178, 18, 66,130,227,184,132, 32, 12,
- 70,105, 97,145, 79,128,143, 36, 44, 88,254, 80, 95, 92,161,144, 3, 96,152,187, 49, 0, 47, 18,112,151, 85,155, 15,158,209,112,
-212,143,216, 95,206,220,148, 51, 55,223,124, 88, 82, 86, 86,198, 47,190,243, 6, 19,150,222,100, 56,223, 48,208,229,215, 43, 10,
-143, 93,170, 42,109,104,233,166,176,245,227, 35, 0,160,171, 97,125, 77,221, 19,102, 75,158,120, 67,138,254,165,111,159,129, 1,
-198,223,217, 30, 27,118,100,214,162,196,160, 19, 7, 49, 12,251,241, 88, 2, 0,240,179, 63, 66,204,131, 93,109, 84, 8,108,216,
- 0,215,174,193,128, 1,240,214, 91, 44,135,160,160, 32,151, 65, 36,134, 65, 78, 0, 77,211,239,189,247,222,245,235,215,139,138,
-138,138,138,138,178,179,179,151, 44, 89,226,182,158,155, 3,100,170,219,241,233,130, 5, 11, 48, 12,115,101,197,115, 22,168,157,
-249,143,224,244, 36,135, 92,121, 3,134,251,255,223,171,239,250,239,206,158, 51,103, 14,183,167,116, 74,116,207, 5,113, 67,124,
-125,125,135, 15, 31,190,124,249,242,236,236,108,199, 44, 90,159, 85, 20,221,238,209, 61, 60, 60,156, 97, 24, 71,141,133,252, 15,
-225,190, 17, 55,193,102,238,220,185,112,103,241,132,211, 68,114,232,101, 59,116,232, 80, 86, 86,150,155,155,219,165, 75, 23,137,
- 68,130, 52,244,160, 65,131,132,152,234,157, 31,236,187,105,127,224,197, 61,111,196, 15,238,230,167,192,253,124,105, 31,185,229,
- 95,143, 9,202,109,160, 82,169, 80, 57,121, 98, 65, 34,120,128, 59,173, 83,149, 74,181, 96,193,130, 5, 11, 22, 0,192, 59,169,
-239,144, 53,148,143,143, 66, 96,109, 34,157,239,251,240, 53,150,192,151,127,103, 4, 1, 9,184, 59, 63, 52,210,168, 8,174, 98,
-101,167, 45,216, 73, 13, 89, 80,197, 22, 86, 99,133, 90,159, 26,163,111, 41,213,104,180, 50,167,180, 70,167, 25,248, 48,140,192,
- 0, 15, 84,226,131,227,136,164,199,232,145, 3, 37, 18,137, 36, 52, 88, 50,114, 24, 54,106, 4, 49,100,160,111, 72,104,160, 92,
- 38,199, 48,192,113,150,159,253, 61, 77,192,157,150,150, 86, 92,110, 2,128,252, 15,162, 0, 96,223,203, 1, 0, 32, 97, 53, 4,
-107,176,224, 17, 0,160, 86,171,133,100,112,141,139,139,203,206,206,222,218,104, 48, 89,241, 89,223,252, 95,141,194,199,100,109,
-193,253, 57,150, 76,221,150,167,126,119,235,215, 77,166,254,119,111,145,131,130, 94, 71,199,239,206,219,157,225,122, 16, 56, 37,
- 37,101,237,235,240,204,162,209,129, 39,178, 71,174, 26,129, 79,128,156,156, 28,129, 77, 34, 34, 34,130, 59, 30, 53, 10, 2, 3,
- 33, 42, 10, 6,246, 81, 42,100, 4,113,199, 51,235,255,208, 67, 46,219, 40,142,163,136,255,245,235,215, 99,108,240,246,219,111,
-191,253,246,219,149,149,149,110, 41,198, 54,136,207, 33, 53, 85,144,133,120,224,192, 1,187,140, 90,235,214,173,227, 55,255,109,
-199, 30, 56, 3, 22, 29,219, 13, 68,219,193,138, 97,140,209, 34,109, 27,145,178, 98,197, 51,126,129,129, 57,121, 77,161,161,153,
-207,188,185,250,255,138,215,108,251,111,175, 81, 83,131, 58, 29,216,181,203,209, 64,121, 60, 53,165, 71,207,158,104,128,154,190,
- 3, 46,128,102,251,211,105,192, 39, 53, 53, 21,141,241,162,160, 63,199,245,177,177,177,200,184,158, 59,119,110,108,108,172,171,
- 55,149, 74,165,143, 63,254,184, 86,171,213,104, 52, 62, 62, 62, 97, 97, 97,129,129,129,252, 89, 36, 57, 89,185, 92, 62, 57,245,
-163,205,167,251,151,222,210,181, 9, 32, 6,119,197,122,119, 98,253, 90,181, 18,217,185,165,205,127,224,153, 6,106, 55,139,182,
-253,136, 7, 4,218, 14, 92, 2,110,217,236, 44, 16,150,128,187,164,119,162,228,218, 85,115,163, 78,103, 33,107,205,242,106,179,
-169,187, 68, 86,193, 26, 52, 44,169, 39,217,131, 90,182,212,194, 76,118, 25,147,193, 0,195,106, 53,216,233,211,114,185, 84, 38,
-149,201, 58,180,147,141,140,199,101, 50, 9,134,177, 55,203,176,130, 75, 62,173, 67, 9,154,102,249,217, 31, 60, 76,192, 29, 21,
- 21, 5, 43,167, 74, 71,127, 12, 16, 85, 95,223, 52,108, 43, 99,110, 91,241,118,243,122, 21,221,190, 13,235,214,173,227,231,199,
-212,239, 54,113,170, 49,235, 78,190,218,111, 10,142,183,232, 26,174,232,209, 58,216,206, 30,203,190, 4, 0, 67,122, 76, 1,128,
-165, 11,223, 56,126,169,199,234,237, 51, 94,221, 56,129,191,192,179, 22, 37, 6, 7,163,168, 86, 14, 0,168,213,137, 44,155,133,
- 97, 24, 0,155,149,197,151, 32,119,202, 19,147, 15,236,219, 15, 0, 51,102,192,200,145, 88,221,173, 0,131, 70, 97,210,201,190,
-249, 18, 91,176,128,189, 89,163, 31, 56,120, 80,239, 30, 61,249,199, 0, 80,208, 63, 59, 59, 27, 0, 56,210,175,169,169,169,169,
-169, 17, 18,231, 73, 73, 73,193,113,220,150,127, 51, 50, 84, 66, 86,129,161,160, 57, 55, 18,128,188, 1,126,243, 31,108,102, 61,
-216,206,231,225,159, 10,129,116, 21,165,215, 75, 67,131, 9, 95,255, 30,147,167,188, 61,118,204,171,104, 42,103,223,126,180,201,
- 44, 13,105,211,107, 80, 66,100,251, 78, 31, 93,201,235,217,179,231,237,211,119,101, 36, 77, 77, 73, 65,195,195,207,167,166,162,
-217,162,148, 13,227, 75, 36, 4,176,191, 79, 48,157,112, 55, 23,196,198,198,178, 44,139,226, 60, 42,149, 10,133,122,108,255,202,
-195,254,168,216,129,129,129,131, 6, 13,186,122,245,234,217,179,103,105,154,246,243,243, 51, 26,141, 2,131,245,109,218,180,121,
-236,177,199, 78, 28, 61,181, 46,235, 64, 43, 76,214,181,141,229, 90,157,223,176,174, 36,167, 33, 92, 5,244, 49, 12,227, 58,172,
- 24, 2,186,103, 99, 0, 78,213, 64,249,145, 74,152, 33,136,253, 57, 70,179,187, 15,191, 14,232,208, 58,228,172,129,172,197,201,
- 50,179,197,199, 42,249,193,162, 51,211, 76,169, 25, 78, 27, 77, 44,203,142, 27, 55,206, 85, 80, 30,181,143,224, 86, 88,175,158,
- 84, 81,177, 28,199, 48,146,194,117,122,188,117, 40,166,213, 99,133, 69, 82,185, 20, 36, 18, 9,195,224,252,236, 15,158, 39,224,
- 78, 75, 75, 91,185,242,121,128,124,181, 90, 93, 86, 86,182,114, 12,164, 29, 24,190,176,231,113,100, 36,186, 53,255,109, 29, 35,
-219, 99,196,113,252, 70, 19,188,129,245,223, 84,226, 56, 86,209,180, 18, 56,155, 47, 57,212,123,243,118,191,182,113, 98,222,118,
-118,112,240,165,161,137, 61,142, 30,184,116, 66,179, 2, 3,236,221,121, 63, 1,240, 89,211,193,193,217, 24,134, 77,154, 52,233,
-211, 79,117,168, 75, 98,119,230,163, 36, 37,253,254,185,127,202, 29,236, 40, 59,239,197, 23, 54,126,244,191, 81,163,192, 90,213,
-225, 86,131,156, 49, 1, 0,180, 51,180,121,121,142,254,192,137,174,221, 7,243,233, 60, 68,253, 40,203,107, 85, 85, 21,242, 9,
-170,171,171,193,147,177, 62, 52,152,105, 23, 61,207, 80,169,120, 86, 3,216,126, 17,110, 36, 96,237,218,181, 66,204,127, 91,146,
- 18,126,177, 66,161,168,186, 89,218,169,115, 52, 67, 89, 48,138,150, 40, 91, 41,251,245,247,255,127,246,174, 59, 60,170, 50,235,
-159, 91,166,165,247,132, 20, 82, 73,232, 45, 16,144, 46, 36,128, 32,168, 11, 1, 20,219,186,154, 4,203, 2, 34, 70,193,253,116,
- 85, 92,112, 21,176,172, 16, 92, 87, 44, 65, 37,160, 72,147, 18,122, 15,132, 72,135,144, 70,122,159,204,100, 50,245,150,239,143,
-151, 92,135, 41,119,238, 76, 18,140,120,127, 79,158, 60,183,157,219,230,189,191,115,222,243,158,247,156, 33,195,153, 54,138,214,
- 26, 88,138, 6,154,201, 92,247,193,220,199,230, 90, 27,215,212,247,190, 60,103,182,216,251,208, 14,203, 3, 22, 44, 88,128, 60,
-254, 96, 86, 7,216, 92, 7,240, 63, 96, 66, 66,194, 39,159,124,210,208,208,144,146,146,114,238,220, 57,173, 86, 59,120,240, 96,
-135, 53, 83,145,236,200, 17, 35, 50,254,150, 81, 90, 89,250,196,223, 50,206,236,255,170,166,181,121,216,248,148,224,240,120,203,
-134,109,235, 67,224, 8,202,122,254,151, 56, 17,172, 19, 20,128,133, 25, 37,144,253,193,249, 2,220,165, 99, 30,245, 29, 3,197,
- 27, 62,104, 86, 96, 77,172,206,192, 16,193,164, 28,151, 51,108,155,150,191, 38, 42,195, 48, 69, 37, 88, 80, 0,248,120, 99,253,
-251, 82, 50, 9, 33,149, 80, 70, 74,214,208, 12,213, 85, 77,190,158,228,205, 82,210,219,219, 71,175,215,243,179, 63, 56,159,197,
- 1,205, 27, 24, 54,108, 88,102,102,166,159,159, 95, 77, 77,205,162,254, 53, 28,251, 59, 60,149,205, 18,181,130,240, 38,198,137,
- 91,158, 68,192, 76, 96,255,129, 85,235,179,214, 23,230,122,125,152,243,232,169,205,128, 1,246,202,156,239,122, 77, 82,243,179,
- 63,250,225, 82, 83,115, 0,212, 0,192,178, 96,193,108, 27, 63, 60, 0, 0,238, 61,215, 3,216, 24, 36, 28,216,175,127, 86, 86,
- 86, 64,208, 62,186,245, 28, 70,128, 86,175,192, 90, 41, 18, 39,131, 99,251, 76,238, 57,141,100,237,222,118, 74, 74, 74, 92, 92,
- 92,199,219, 39,114, 19,103,100,100,112,225, 49, 92, 63, 64,248, 72, 0,162, 33,135,230,191,203,152, 56,113,226, 11,155, 55,188,
-221,218, 50,120,252, 24, 60,216,151,101, 89, 48,177,192,176, 0, 18,140, 32, 49, 41,241,249,250,213, 94,147,134,197,198,198,118,
-250, 28, 40,228,234, 89,183,110, 93, 70, 70,198,160, 65,131,156,146, 45, 46, 46, 62,112,224, 0, 65, 16, 99,199,142,197,113,220,
-194,245, 79,211, 52,134, 97, 22,175,157,195,249,243,231,191,222,248,149,148,144,205,126,116, 54,142,227, 99,166, 61,123,135,222,
-162, 40, 36, 43, 70,245,116,133,255, 7,156, 74, 6,231,212, 71,232, 90, 1,238, 97,105,175,148,148,148, 24,247,254,136,107, 13,
- 77, 52, 27,157, 52,102,124,207,158,252, 76, 74, 16,196,192,132, 39, 13, 6, 61, 0, 78,178, 6, 0, 0, 22, 26,218,189, 2, 18,
- 57,244,237, 99,215, 16, 67, 12,238, 90, 1,110,238, 12, 40,102,148,179,247, 51, 51, 51,133,240, 17,186,174,107,175,122,206,181,
- 84, 0,200,202,178,113,159,115, 28,245, 30, 56,196, 39,171,179,146,185,251, 20,154, 7, 98,227,135, 7, 0,176,167, 94,190,157,
-159, 11,189,212,141, 31, 30,112,239,185,222,189,103,170, 67,241,186,154,201,117, 48,153,193, 43,188,189, 84,224, 7,173, 45,253,
-193,232,184, 9,118,226, 80, 30,210, 1, 46, 8,114, 35, 1, 78,153,255, 60,214,171, 77,196,198,198,134,252,253,239,107,247,237,
- 43,121,103, 91,170,196,223, 39, 34, 80,223,166,211,105,169,133,175,188, 78,184,249,237,254, 42,235, 66, 0, 54,217,153,100, 62,
- 52, 77, 1, 8,165, 78,135,174, 30,123, 79, 87, 88, 88,200,178,108,239,222,189,155,154,154, 72,146,164, 40,202,223,223, 31,218,
-243,211, 73,165, 82,212,105,179, 41,155,151,151,199, 80,216,168,209,131, 42, 43, 43,165, 82,169,209,104, 12, 15, 15, 71,187, 84,
- 42,149, 92, 46,199, 48, 76, 38,147,241,216,157,232,211, 54, 95, 16, 93, 64,157,220, 3,232,184, 62,112,138, 82, 99, 22,188,226,
-148,136, 92,174,144,203, 21,174, 95,206,165, 2,220,214,106,192,133,235,186,118, 57,158,187,237,234, 28,112,238, 61,215, 3,192,
-150, 45, 22, 27, 83,157, 58, 9,206, 68,180,182, 68,252, 94, 45,222,181,212, 96,165,165,165, 14, 61,248, 54,225,148, 20,203,178,
-110,110,110,143, 60,242, 8, 74,233, 92,222,158,210,249,196,129,253, 40,165,243,164,145,147,236,201,126,174,252,215,115,190,175,
-223,177,137, 55,123,168, 61, 29,224,194, 51, 14, 31, 62, 28,133,252, 51, 12, 99, 52, 26, 1,160,161,161, 1, 0, 60, 60, 60, 0,
- 0,109,145, 72, 36, 54,159,247,193, 7, 31, 68, 7, 48, 12,131,186,233, 40,172, 11, 69,133,161, 45, 82,169,212,166, 1, 39, 6,
-249, 8, 1,127,213,119,177, 40,188, 8, 17, 34, 68,252, 73, 33, 86, 4, 19, 33, 66,132, 8, 81, 1,136, 16, 33, 66,132, 8, 81,
- 1,136, 16, 33, 66,132,136,123, 30,164,248, 10,254, 40, 24, 98,167,184, 15, 15, 10,196, 1, 30, 17, 34, 68, 8, 81, 0,127,196,
- 98,199, 82,233, 62,133,172, 86, 34,109, 97, 24, 22,195,128, 32,112, 28, 35, 8, 2,197, 13,227, 44, 70, 98, 24,134, 3,181, 99,
-151,132,101,217,129, 3,159,238, 14,247,220, 17,217,112,103,194, 30, 42,239, 12,131, 19,139,104,139,178,162,236,159, 83,246,158,
-237, 1, 28, 61, 94,148, 52,204,228,235, 3,205, 74,172,224,130,156,196,201,105, 83,232,253,135, 2, 49, 12,199,112, 92,238, 9,
- 19,147, 90, 0,200, 49,247,177,121,231, 28, 60,233,161,147,199, 1, 64,194,154, 70,140,157,168,170, 43,191,116,243, 22,173,213,
-223,157,202,186,127, 54, 92,187,113,222,168,215,122,122,134, 58, 21, 8,107, 51,172, 91, 96, 32, 96, 71,100, 17,162,163,163, 81,
- 42,127,148, 81,217,169,231, 53,207,132,232, 90, 44,169, 8, 17, 93,222, 3, 64,248,234,235, 47,248, 5,158,122,242,111,246,118,
-117, 68,214,101,228,157,147, 76, 77,161, 47, 92, 84, 72, 37, 36, 73,144, 18, 9, 43, 35, 76, 64,122,146,160, 75,234, 71,201,165,
- 50, 22,160, 71, 48,204,156,198,220, 40,225, 99,255,162,107,133,113,125, 99, 67,195,124, 42,111, 93,151, 40, 2,250,246,142,255,
-229,231,159,115,115,115,187, 90, 7,220,229,130,242,191, 47, 46, 94,200,141, 10, 55, 12,136,101, 25,134, 86,169, 42,175, 95, 62,
-167, 49,244, 24,150, 56, 86,160,184,170,225,191, 4,113,123,206, 90,209,218,215, 6,191,109, 20,126,105,115,214,222,186,117,235,
- 43,175, 56, 55,215, 36, 37, 37,101,209,162, 69, 24,134,241, 36,115,230,129,139, 5,229,255, 28,224, 79, 21, 12, 0,192,178, 27,
-108,101,177,230,138,194,183, 31,197,182,207, 79,252,237,109,255,201,139,194, 35,152,151,129,228, 43, 8,211,165,192,161,243, 39,
-115, 79,155,108, 98,129, 32, 9,201,168, 17, 88, 80, 32, 78,146,184, 76, 66,244,142,199,111, 85, 80, 73,137,184,191,159,252,151,
-131, 94, 0, 64,176, 58,150,101, 66,194,236,178,255,197,115,231,162, 66,195, 47,158, 58,125,198,104, 82, 54, 42,165, 50,207, 62,
- 67, 70, 15, 26, 61,249,208,142, 28,232,178,217, 85, 22, 5,229, 81, 46,198,103,159,125,182,251,171,129, 95, 11,114,101,100, 51,
-137, 27,245,122, 90,213,166, 24, 51,206,113,230,222,171,215,207,123,202,155, 38,142,150, 69, 69,198,122,121,121,155, 40,170,161,
-161, 49,184,188,226,102,113,201,201, 19,205,163, 70, 63, 36,228,186, 4,161,166,139, 86,184,124,219, 46,231,222, 64,213, 93,184,
- 92, 64, 60, 21, 93,186, 27,114,115,115,183,110,221,122, 71,250,163, 46,100, 67, 22, 3,204, 5, 21,199,150,255,136,157,121,182,
-157,196,161,189,216,218,111,103,122,118,125, 91,210,220, 79,108,170,213, 95,126,249, 5, 45, 79,157, 58,117,207,158, 61, 54,151,
- 69,246,183, 94,229,212,128,109, 5,112,226,248,153,209, 99, 70,116,238,125, 48,142, 50,242, 11,172,208,116,135, 82, 33, 9,101,
- 51, 25, 18, 36, 9, 9,146,106, 52, 18,185,132,164, 73,217,208, 1,216,224,129, 4,142, 73, 48, 12,147, 73,164, 18,220,128,201,
-165,148,214, 46,251, 31, 63,120, 32,186, 71,224,229, 11,151,151,191,243, 22,183,125,197, 63,223,195, 9,108,104,226,208, 95,246,
- 28,112,168, 0, 24,134, 57,119,238, 92, 81, 81,145, 66,161, 24, 48, 96,128,195,220, 53, 96, 85, 80,158,171,182,250,223,255,254,
-247,247,210, 1, 5, 5, 5, 67,134, 12,225, 63,230,242,213,243,172,161, 44,178,135,222,219, 75,134,227,110, 58, 29,213,212,172,
- 59,146,187, 86,238, 53,116, 68,210, 56, 30, 65, 57,209, 16, 31,205,246,235,215,167,166, 86,153, 95,112, 94,163,105,243,246,246,
-140,137,137,196, 9, 9, 77,151, 23,252,122,124,200,224, 49,221,246, 19, 74, 73, 73,225,170,187, 44, 90,180,104,205,154, 53, 2,
-203,170, 88, 25,178,119,187, 7,128,154,238,150, 45, 91, 92,171,171, 37, 28,156, 49,158,149,181,222,217,235,224,145,179,144,108,
-222,191, 60, 44,140,196, 16, 31, 60,204, 15,239, 62,239,243,143, 11,142,241, 5, 21,133, 71, 58, 0, 0,156, 85, 3,199,255,126,
-211,230,246, 49, 31,247, 18,254,133,160, 30,156, 16, 53,144,123, 56, 72, 66, 74, 34, 66, 53,173,173,146,252,203, 17, 4, 65, 16,
- 24, 33,149, 80,253,122,105, 19,122, 17, 24,224, 82,137, 76, 74, 96,137, 3,141,126,190,204,209,179,182, 79,210, 39, 58,248, 86,
-113,189, 57,251, 3,192,242, 55,151,189,247,206,251, 61,238, 27,232,235,227,201,127, 15, 58,157,110,205,154, 53,183,110,221, 66,
-171,123,246,236,153, 54,109,218, 67, 15, 57, 48,105, 45, 42, 74,154,227,195, 15, 63, 92,178,100,201, 93,158,230, 94, 80, 80,192,
-149,212,224,129,161,173, 42, 58, 76, 23,224,239, 30, 30, 22,226,230,238,118,235, 86, 21, 77, 51, 97,161,158, 87,174,157,250, 85,
-225, 62,120,128,237,194, 15,151, 46, 29, 31, 24,111,236,217, 51,250,234,181, 91,249,249,215, 26, 26, 91, 89, 22,124,125, 21, 90,
-173,102,200,144,126, 45, 45,170,170,252,130, 11,151, 20,131, 6, 36,118,195, 47,199,162,184,163,195,178,142,230,158, 13,139, 84,
-198, 24,134,113,238, 14, 23,252, 72,239,188,243,206,140, 25, 51,156,205,214,144,156,156,140, 97,216,230,205,155,237,165, 99, 3,
-128,140,140, 12,139,158, 1, 42, 9,153,145,145, 97, 97, 19,164,167,167, 91,231, 14,224,210, 43,177, 44,155,158,158,225, 84, 39,
-195, 92, 54,233,117,205,217,127,121,112,212, 47,178,118,103,153,255,230, 63,153,197,207,231,224, 45,159, 56,126, 6,105, 2,129,
-176, 73,244, 2,217, 31,225,200,145, 35, 85, 85, 85, 85, 85, 85, 66,114, 57, 17,172,142,196,244, 82,137,164,224,114, 32, 65,146,
-158, 82,173,151, 92,231,233, 77, 87, 85,121,202,164,114,153, 76,150, 58,147,154,249, 0, 30, 22, 42,115, 83,216,174, 77,161,109,
-169,168,109,214, 44,249,191,255,179,222,213,162,106, 86, 54,212, 58, 44, 37,150,147,147,195,177, 63,194,238,221,187,175, 93,187,
-198,111,254,155,231,127, 70,230,191,170, 29, 0,240,230,155,111,186,156, 42,206,101,246,119,120,216,229,171,231,229,100,141, 66,
- 33,145,203,164,209,209, 81,195,146,146,124,125,125, 73,146,144, 74, 9, 63, 95,121, 85, 69,153, 61, 65,146,173,242,244, 80,104,
-117,212,229,203, 55,171,107, 85,229,149,234,194, 18, 99, 77,109,107, 67, 67,203,205,194,146,184,216,216,176, 80,175,166,134,242,
-238,249, 9, 33,239,191,249,150,197,139, 23,223, 81,219,157,199,182,197,113,123, 5,229, 93,235, 64,172, 91,183,142,235, 44, 10,
-196,129, 3, 7,114,114,114, 28,150,102, 52, 47,254,110, 94, 16,216,252,114,246, 46,141, 78,139,106,135,185,214, 43,218,188,216,
-221,220,234, 71,236, 31,230,135,135,250,225,252,201,236,166, 78,157,250,192, 3, 15, 32, 63, 15, 90, 64,203, 83,219, 33,234, 0,
-126, 8, 26, 3,112,173, 55,224, 50,110,222,188, 9, 0, 85, 85, 85, 97, 97, 97,252, 54, 41, 73,146, 18, 66, 34,145, 96,227, 70,
-131,182,205, 80, 90, 44,149,144, 18,146, 38, 71,142, 96,165, 18, 9, 65,224,192, 98,205, 74, 56,123,158,100, 24,198,166,178, 59,
- 95, 80,172,209,216, 24, 75, 92,249,230,155, 50,153, 92,167, 83,209, 12,197,127,183,231,207,159,183,222,152,159,159,223,167, 79,
- 31,129,230,191,185, 77,183, 99,199, 14,238,152, 46,234, 4, 88,184,122, 56,246,119,248, 1, 43,155,235, 3, 60, 49,138,102,140,
- 38,170,161,177, 89, 34,149, 27, 12, 38, 19, 69, 83, 20, 67,209,108,139,178,209,158,160, 84,210, 38, 87,132, 55, 53,169,212,173,
-218,102,165,206,203,127,208,168,129, 3,243, 78,236, 9, 53, 82, 42,181, 42, 33, 33, 86, 38, 37,219, 90,155,187,167,249,207,178,
-172, 69, 49,197,181,107,215, 10, 28, 9, 88,180,104,145,117, 13, 72, 46,173,180, 61,112,197, 21, 50, 50,252, 38, 77,250, 45,251,
- 91, 85, 85, 21, 0,108,223,190,189,177,177, 81,224,184, 84,110,110, 46, 98,127,116,252,214,173, 91,237,177,176,121,255,207,186,
- 32, 48,218,142,202, 2,219, 60, 3, 74, 35,186, 96,193, 2,212,111,176,249,128,246,218,115,106,106,234,236,251,114,127, 0,152,
-187,166,109,248,235, 26,155,178, 73,115,109, 63,160,185,175,223,222,120,128,200,242,230,158, 31,231,122, 0, 46,192,194,222,119,
-202,252, 71,246, 47,167, 6,214,174, 93,203,223, 15, 32, 8,114,100, 18, 67,224,228,217,115,242, 27, 55,229,211,167,192,131, 15,
-192,140,169, 88,143, 96,169, 92, 42,147, 75,101, 10,185, 44,172,135, 76, 46,149,203,165,182, 51,202,254, 99,249, 27,171,254,245,
-182,245,103, 19, 27, 29,233,237,227, 46,103,140, 26,173,169, 43,126,143,227,199,143, 31, 63,126,156, 35,125, 14, 0,208,212,212,
- 52, 99,198,140,174, 51,246,205,205, 58,180,138,122,226, 14,125, 11, 52, 13,109, 90, 83, 91,155, 81,173, 54,212,213, 41,171,171,
- 27, 91, 91, 13, 26,141, 73,163, 49,182,181,153, 84, 45, 42,187,142, 35, 3,165,215,211, 38,147,209,211, 83, 26, 17,230,229,230,
-238, 14, 0, 49,177, 81,225,161, 94,222, 94,114,150,165, 77, 20, 99, 48,180,117, 79,243,255,229,151, 95,182,201,236, 14, 59, 1,
-214,181, 36, 17,214,172, 89,147, 43, 44,107, 55,203,178,233,102, 64,228, 91, 85, 85,149,147,147, 35,164,127,124,224,192,129, 45,
- 91,182,112,236,159,156,156, 60,123,246,108,123,244,141, 97,152,117, 73, 72,100, 19,112,219, 89,150,117,148, 76,155,181,112,228,
-154,187,191,236,201, 4, 4, 4, 96,237,118,190,179,178, 34,156, 98,127, 16, 62, 6, 96,142,187,102,251,183, 19, 13,141,138, 74,
- 59,190,177, 36, 38, 40, 80,166, 86,147, 50,146,146, 73,137,195,103,164,211,239,151, 72, 37, 18,181, 90,114,226,156,187,151, 28,
-195,113,124,106,178,241,161,233, 44,142,179, 27,183, 10,186,122,110,110, 46,225, 38,111,150, 4,184,153, 42,139,170,216,137, 19,
-198,241, 31, 63,100,200,144,147, 39, 79, 90,108,116, 88, 6, 25, 21,245,222,184,113,227,211, 79, 63,141,182,112,117, 37,159,126,
-250,105,254, 50,135, 29, 1,178,253,145,153,198, 69,200, 89,187,122,109,194,215, 47,176,186,244,178, 76, 74, 24, 77,140,222, 80,
- 89, 81,217,212,172, 84, 55, 55,107,155,154,117, 77,205, 58, 31,191, 40,123,130,117,141,108,109, 93, 99,159, 62,177, 45, 74,165,
-132,196,213,173,149,109, 45, 76,223,184,182,224,192, 64, 55, 55, 55,153, 76, 81, 83,219,138, 17,190,221,243,227,177, 89,198, 29,
-141, 4,240, 11,162,254, 1, 87, 75,146,211, 28,224, 76, 73,153, 57,115,230,112, 22, 49,170, 90,129, 97,216,172, 89,179, 82, 82,
- 82,248, 39,251, 88,216,254, 8,230,253, 9,115,216, 43, 9,137,182,175, 91,183, 14,213, 94, 71,219, 43,108, 93,119,221,186,117,
-207, 63,191, 0, 85,215, 89,176, 96, 1, 0,139, 40,125,253,250,245,232,254,121, 52,199,186,117,235,254,115,191,239,220,181, 90,
- 11, 95,208,220,181, 90, 36,251,204,253, 18,145,196, 59,130,180,204,149,220,242,134, 85,175,237,252,246, 29, 7, 81, 64, 29,164,
-254, 49, 31,247, 66,163,193, 78,153,255,102,118, 61, 97,238,227,227,169, 35, 22, 16, 64,224, 24, 17, 24, 64,244,138,101,171,171,
- 73,156,192, 36, 36, 41, 33, 37, 23, 47,185,251,185, 75, 8,130, 24, 61,130, 86, 40,100, 12,195, 2, 75, 11,100,127,143,224,136,
- 58, 13,219, 86,116,152,196,136,165,111, 46, 23,242,137, 86, 84, 84, 84, 84, 84,152,223, 51,143,255, 7, 0, 50, 51, 51, 17,221,
- 35,246,159, 49, 99,198,198,141, 27,209, 46,181, 90, 93, 95, 95,191,115,231, 78, 33, 5,229, 93, 3, 42,252,148,149,149,133,134,
- 40,133,216,254, 8,131, 6, 36, 94,187,156,207, 86,169,181, 58,147, 82,166,103, 65,169,215, 83,106,181,161,190, 81, 91, 93,163,
- 25,123,127,164, 61, 65,157, 49,160,164,180, 33, 38,186,103,116,116,120, 83, 83,163,175, 15,221,171,151,119, 80, 96,140, 92,161,
-104,105,209,228,159,191, 94, 89,165, 14, 9,239,215,125, 62, 24, 22, 0,195, 0, 17, 47,199,191, 54, 99,249,109,120, 43,204, 34,
- 24,247,239,223,207,213,146, 68, 88,189,122,245,190,125,251,236,201,162, 95, 36, 61,221,183,253,114,172, 57,101, 35, 5, 48,123,
-246,108, 30,255,143,153,251,232,128, 83,213,141,236,149,132, 68,219, 17,125,219, 35,113, 20, 98,244,217,103,235,208, 8,199,224,
-193,131, 56,199,125,187, 69,111,183,210, 0,146,197,231, 40,145,108,234,196, 40,238,197,204, 89,115, 21, 0,248,173,255,169, 83,
-167,114, 1, 78, 15, 60,240, 0,247,235,136,158, 31,129, 32,187,137,213,143, 48,111,222, 60,167,142,199,113,156, 32,112,130,192,
-251,196,227, 67, 6,208, 50,169, 92, 66,146, 18,137,100,212, 8,144,201, 64, 66,200, 2, 2,228, 4,209, 70,211, 12,195, 8,242,
-228,104,155,107,229,225,189, 75,115,191, 13, 36,241, 39,150, 47, 19, 34,162, 80, 40,150, 45, 91,230, 84, 24, 40,170, 62,255,226,
-139, 47,162, 85,100,239,171,213,106,173, 86,251,204, 51,207, 0,192,103,159,125,214,117, 81, 64,168,248, 31, 87, 67,213,169,168,
-146,240,200,132,115,167,247, 6, 5,184,185,185,145, 0, 96, 48,208,234, 86, 99,179, 82, 23, 17,221,111,204,168,241,246,164,166,
- 77,155,181,239,151, 47, 79,231, 93, 25, 59,122, 80,100,100,164,201,168, 31, 50,120,160,187,183,247,173,146,242,170,234,150, 19,
-167,174, 41, 91,189, 31,185,111,124,247,249, 42, 22,100, 32, 7, 11,182, 32, 61, 29, 17, 58, 99,198,251, 56,142,241, 20, 88,207,
- 72, 79,111, 55,127, 1, 0, 99, 24,134,235, 4, 44, 92,184, 16,195,176,169, 83,167,180, 43, 25,152, 62,255, 31,214,190, 14,123,
-172,141, 97, 24, 63,251,155, 99,246,236,217,246,236,125,158, 86, 97, 93, 18,146,219,206, 83, 44,140,211, 28, 44,203, 46, 88,176,
-192,124,216,214,225,192,146,185,236,230,197, 30, 0, 44,200,131,209,174,205,139,203,145, 50,216,123,193,100,239,133,152,251,253,
-197, 49,128, 78, 83, 0,163, 70, 39,117,208,239,230,154,237,207,253,108, 2,209,172,196,122, 4,227, 40,241,195,190, 3,114,185,
- 84, 38,147,201,101, 82,217,140, 7, 48,185, 76,170,144, 99,205, 77, 68, 94,190, 39,205,208, 17,225,142, 93,204,185,185,185, 45,
- 90,157,242,220,238, 94, 17,146,203, 85, 78,184,164,113, 28, 79, 74, 74, 74, 74, 74, 18, 46,146,153,153,185,106,213, 42,228,237,
-105,106,106, 26, 49, 98,196,254,253,251, 31,122,232,161,166,166,166, 39,158,120,162,235,204,127,206, 17,132,172, 57, 33,158,159,
- 59,126,214, 81,227, 1,160,240,250,213,234,146, 91, 56,142,209, 52, 43, 87,248,197,247,233,255,200,195, 14,138,130, 5,133, 13,
- 60,157,183, 71,175,167, 6,244,143, 9, 11, 13, 40,175,168, 83, 94, 42,190, 81, 88,126,224,224,197, 91, 85,236,179,207,189, 36,
-240, 6, 74,119,182,186,252,212,101,101,101, 2,143,100,126,240, 21,190,119,198,118, 94,217,226, 47,185, 78,192,218,181,107,161,
-100,163,249, 1, 22,178, 54, 59, 4,230, 92,233,212,243, 58,251, 9,219, 43, 9, 41,164, 84, 36, 71,244, 22,135, 9, 49, 47,152,
- 91, 91,160,245, 10,142, 0, 0, 32, 0, 73, 68, 65, 84,183,172,125, 18, 0, 82, 39,246,228,216, 31, 0, 82,167, 13, 7, 0, 80,
-254,106, 79, 1,136,243, 0, 4, 98,195,170,215,204,189, 64,142, 21,192,239, 50,234,226,130,205,123,238,188, 76, 46,149,206,152,
-134,225, 24,150, 52,140,186,116, 89,129, 99, 24,142,227, 45, 45,120,104, 8,129, 99,210, 11,151,164,114, 25, 24, 77,198, 91,229,
- 10,135,236, 95, 92, 88, 48, 98,210,131,100,192,136,226,194, 60,178,118,203,171, 75, 95,127,255,223,255,234,162,135, 53, 47, 40,
-223,191,127,127,165, 82, 57,108,216, 48,165, 82,249,247,191,255,253,238,204, 2,115,150,250,205,117,192,152, 81,227,127,189,148,
- 95, 87, 91,231,238,238,206, 99,248,223, 65, 4, 3, 19, 7, 15, 76,204,254, 54,235,234,141, 51, 61,130, 61,228,114,137, 70, 99,
-172,170, 81, 99,100,196,179,207, 61, 41,240,210, 30,126, 47,187,252,188, 40,156,255,119,192,249, 37, 16,251,215,223, 2, 73,243,
-157,120, 4, 23, 62,195,140, 12,191,118,181,225, 10, 57,218,227,107,135, 60,238, 90, 45, 73,238, 49, 83,239,147, 1,176,160,171,
- 1, 93,141,200,215,157,136, 7, 31,255, 7, 26,245,221,176,234, 53,243,141,118, 21, 64, 71,210,245,116, 69,170, 31,199,173, 7,
- 48,165, 18,115, 11,193,252,253,176, 97, 67, 77,114, 41, 33,147,154,252,253,228, 24,134, 1, 96, 35,135,209,121,231, 37, 24,134,
-243,127, 75,185,185,185,253, 18,188,150, 44,124, 91, 39, 13,255, 49,183, 42, 54, 62, 9, 0, 60,206,238, 92,242,202,235, 31,126,
-208,133, 58, 0, 21,148,127,226,137, 39,184,110,193, 31,165,204,233,224, 1,137, 48,192,105,169,249,143,167, 31, 63,121,164,161,
-169, 65, 87,171,149,203,253,195,163, 7, 10,212, 31,208,177, 2,176,157,242, 86, 89,150, 1,215,210,153,148,108,188, 29, 14, 84,
-242, 85, 87,255, 46, 78,185,125,186, 9, 38, 63, 56,215,161, 45,111,175,115, 45,142, 1, 8,215, 1,214,236, 15,247, 64, 61, 0,
- 22, 88, 28,103, 49,156,101,129,245,243, 97,143, 28, 39,229, 82,137, 76, 74,206,156,198,178, 44,227,235, 79, 81, 52,198, 48, 52,
-203, 50, 60, 39, 25, 24,165,153, 62, 43, 85, 67,246, 10,242,112,127,236, 17,191, 77, 63, 93, 66, 58,192, 68,255,216,213,247,239,
- 66, 65,249, 63, 52,132, 51,254,239,217,101, 86,174, 76,243,125,237,142, 77, 57,126,174,203,230,191,236,148,225,255,103,195,236,
- 23, 62,253, 29,245,250,159, 68, 7,216, 53,160,197,162,240,127, 20,136, 5, 97, 68,136, 16,209,185, 16, 43,130,253, 97, 32,178,
-185, 8, 17, 34, 58, 23, 98,198, 37, 17, 34, 68,136, 16, 21,128, 8, 17, 34, 68,136, 16, 21,128, 8, 17, 34, 68,136,184,231,241,
-251, 23,133, 31,159, 20,102,239,200,182,230, 90,180,224,238, 23,130, 22,142,228, 85,153, 31, 96, 8, 12,182, 39,187,127,205,237,
-121,182, 41,139,111,199, 24,200, 26,234, 4, 94,215, 26,194,175,107, 13,139,235, 14, 27, 18,106,239,200,198,210, 43,104, 33, 32,
-250,118, 94,132,115, 5,213,157,245,188, 83,247,219, 78, 64,239, 29, 26,250, 68,123, 42,224, 79,131,111,159,127, 79, 74, 90,103,
-253,190,230,178, 55,110,220, 48,207,143,182,120,241,226,132,132,132, 46,106, 87,162,108,167,200, 94,186,116, 9, 45, 12, 24, 48,
-192, 89, 89,235, 18, 79,226,123,254, 93,100, 5, 41, 0,115, 80, 20,165,215,235, 49, 66,130, 97, 24, 77,153,164, 18, 82, 38,147,
- 57,171, 91, 40,138, 2, 0,146,116,110,156,185,173,185,214,221, 47, 4, 81,127, 72, 68, 20, 0,212,218, 79, 52,111, 77,130, 41,
-139, 63, 69, 84,248,159,237,121, 0,240,194,204, 36,232,222,104, 44,189, 18, 16,221, 15, 81,127,191, 97,163, 1,224,202,185, 19,
- 93,253,188, 59, 52,154,189,109,109, 83,220,221,247,182,181, 65, 93, 93, 94,230,171, 0,144,180,234,253, 46,125,210,195,135, 15,
-127,255,253,247,122,189,158,219, 34,151,203,231,205,155, 55, 97,194, 4,209, 16,235, 86,184,116,233,210,128, 1, 3, 16,245, 59,
-219, 38, 81,230, 46, 68,253, 78,181, 73,243,252,166,174,197,119,186, 80, 82, 80,132, 13,118, 86,183,106,122,196, 15, 31, 63,160,
-183,155, 76,194,178, 44, 77,179,151,111,222, 42,189,120, 76, 33,147, 8, 76,210, 9, 0, 30,242,178,126,189, 74, 46, 23,198,180,
- 25,162,132, 83, 63, 0, 40,188,253,219,154,107, 17,245,219,236, 13,240,216,191, 73,243, 95,219,191,230, 69,212,236,172,247,218,
- 12,120, 53, 63,173, 84, 42, 5, 0,150,101, 25,134, 1, 0,154,166,209,253,224,132,132,223,232, 6,128, 30, 65,193, 0, 96, 84,
-183, 24, 40, 10, 0, 52, 20,141,238,199, 59, 40,156,223,222,247, 14,141,109, 44,189,130, 62, 51, 91,189, 1,223,206,125, 94, 0,
-120,177,174, 14, 0, 16,251, 35,234, 7,128, 27,251,246,155,239,125,144,247,151, 82,185, 55, 54,121, 52,180, 52, 21, 5,249,244,
- 9,111,140, 19,242,227,222,184,113,227,135, 31,126, 48,103,127, 0,208,235,245, 10,133,162, 71,143, 30, 22,253,128,123, 27,185,
-185,185, 78, 85,153,230, 73,134,216, 21,212,143,218,228,165, 75,151,172,219,100,123,111,192,151,135,127,147,230,191,150,158,158,
-110,221, 38,209, 94,123,109, 50, 61, 61,253,232,169, 60,130, 32,105,154, 82,181,106, 30,155,245,208, 7, 31,124,224, 26,251,223,
-229, 55,214,205,177,211, 86,236, 56,223, 76,224, 54,157,113,210,204,199, 34,130,188,221,228, 36,195, 48, 52, 3, 36,129,249,121,
-247,238,215,171,103,238,222, 93,180,169, 77,136, 14, 48, 26,141,125,250,149, 14,234, 93, 74,224,244,225,115, 97, 82,137,227,108,
-174,109,205,181, 10,111,127,111, 47, 79, 0, 64,255, 45,246,134, 68, 68,217,235, 10,236, 95,243, 98,210,252,215,158,154,251, 23,
- 0, 64,255, 45,246,254,103,123,158, 67, 51,132, 32,136,240,240,112,130, 32,140, 70, 99, 91, 91, 27, 77,211, 40, 99,179, 32,109,
- 71, 18,255, 91,251,147,204, 27,234,202,224,172,166,170,161,182,232,155, 53,175, 59, 52,252,189, 67, 99,195, 67, 67, 0, 0,253,
-183,233, 11,114,237,121,121,242, 0,188, 88, 87, 55,197,221,253,157, 23, 95, 0,128,119,218,169,255,219,194,194,223,216,223, 81,
- 18,129, 50,246, 24, 36, 85,205,235,249,184,129,137,147, 49,236,181,198, 3, 5,251,111,196, 49,207,243, 63,239,154, 53,107,116,
- 58,157,121,250,107,180,172,211,233,228,114,121, 87, 86, 42,239,118,236,191,121,243,102,165, 50, 37, 39, 39, 85,200,241, 40, 59,
-255,221, 97,180, 75,151, 46,121,135,198, 22, 22,156,236, 55,108,180,121,155, 60,184,235,199,224,224, 96,206, 23,100,143,127,121,
-218,100,122,122,250,111,233, 85,173,176,126,253,250,218,250,198,130,203, 87,219,205, 2,195,251,159,108, 72,127,250, 81,145,196,
-239, 2,238, 24, 4,110,109,109, 29, 51,249,145,222, 61,253,101, 18,156, 97,152,218,218,218, 75, 23, 10,140, 20,195, 48,172,191,
-183,219,228, 7, 30,212, 25, 40, 33, 39,149, 73,234, 99,123,214, 2,129,245,237, 85, 33, 35,235,156, 98,255, 59, 44, 77,117,107,
-109, 69,153,194,219,223,186, 67, 96,147, 13,205,241,213, 15, 63,190, 48, 51, 41,105,254,107,214,198,136, 5,164, 82, 41, 65, 16,
- 94, 94, 94, 37, 37, 37, 74,165,146, 97, 24,225,236,223, 35, 40,216,131, 36, 30,121,233,221, 7, 30, 27,181,243,114, 85,173, 14,
-156,101,127,115, 84, 86,215, 94, 57,119, 34,208,215, 11, 0,128, 36, 92,120,222,169,179,158, 2, 0, 95, 82,226,144,253, 1,224,
- 31,159,254,231, 31,159,254, 7,177,255,222,182,182,165,147, 31, 4, 0, 8,148,242,241,145,247,238,201,179, 67,255, 26,249,188,
- 4,247,112, 7, 55, 28,136,176,224,209, 99,102, 77, 42, 9, 93,195,239,252, 1,128,175,190,250, 10,241,190,197,127,238,128,110,
-142,180,180,180,212,212,156,236,236,236,142,179,191,159, 95,174, 64,145,172,172, 44,148,160,223,188,100, 99,215,177,255,138,101,
-139,115,114,114,254,251,201, 7,230,236,159,147,147,243,233,167,159,242,180, 73,115,246,183,110,147, 15,140, 30, 2, 0,224,233,
-110, 79,246,195, 79,214, 33,246,175,111,108,170,111,108, 82,181,106, 36, 18,114,221,198,239,132, 20,189, 17, 33, 4, 15, 62,254,
- 15,243, 63,219, 10,128,166,105,255,168,129, 81, 33, 62,122, 19,141, 97,176,119,239,158,175,191,218,120,241,194,133,165, 47, 47,
- 34, 8,156,161, 25, 47, 55, 89,212,192, 49, 58,157,142,255, 98, 38,147,169, 95,175, 91, 94, 30,218,255,125, 85,143, 99,108,210,
-128, 27, 38,147,227, 84,204, 22,236,143,168, 95,167,106,226, 20,131, 74,109, 55, 13,164, 69,203, 67,205, 46, 47,123, 37,215, 40,
-191,250,129, 47,163, 67,108,108,172,191,191,191, 90,173,150, 74,165, 56,142,235,116, 58,165, 82,137, 58, 58, 14,179,113,109,221,
-246,211,162,181,251,126,250,228,141, 30, 65,193,110,238,126, 21,116,213, 55,107, 94,247, 32, 9, 0, 32,120,101, 45,216, 31, 81,
-191,170,186,184,119,120, 80,171, 86, 47,115,147, 1, 77, 59,251,188,175,127,190,243,202,249, 83,253, 99,250,170,104,187,122, 26,
-177,255,141,125,251,255,241,233,127,208,150,189,109,109,123,219,218, 74,210,255,185,239,234,197,126, 73, 49,208,100,247,199,186,
- 32,221, 57,122, 66, 96,160,123, 31, 29,219, 10,134,122,169,161,217, 64,183,234, 25, 29, 35,245, 8, 27, 59,108,203,175,239,217,
- 19, 68,174,127, 84,214,138,251,236,185,101,189, 94,255,253,247,223,119,255,175, 72,169, 76,233,136,184, 57,251, 47, 91, 38, 40,
-211, 56, 71,250,230,117, 25,187, 14,225,161, 33,168,116,112,126,126,254,193, 93, 63, 86, 86,215, 34,246, 7,128,212,212, 84,215,
-218,228,251, 79, 63,120,185,184, 34, 36,166, 7,180,105,249,175, 94,223,216,100, 50, 81, 0, 96, 50, 81, 38, 19, 85,113,171,204,
-169,155, 55,239, 46,136, 93, 7,225,248,205, 5,100, 48, 24,134,244,238,237,166,144, 48, 12, 75, 51,112,226,216,241,127,190,243,
- 46,195,194,205,162,162,139, 23,126,237,223,127, 16, 65, 96, 9, 49,225, 37,231, 41, 5,111, 98, 77, 41, 89, 31, 31, 85, 13, 36,
- 86, 81, 99, 2, 18, 27,216,251, 86,222,165,122, 22,132,134,220,112,126, 30,139, 62,129, 78,213,228,238, 23, 2, 80,197, 35,203,
-249,121, 44,236,145,188,236,149, 41,139, 63,133, 6,219,125, 17,138,162,220,220,220,112, 28,247,245,245,213,106,181,109,109,109,
- 0, 16, 24, 24,216,212,212,228, 48, 71,149, 94, 9, 73, 10,197,210, 79,142,165, 12,130, 91, 5,112, 22, 0, 0,150,126,114,236,
-227,197,247,211,140,160, 18, 52,220,240,218,164,196,222,164, 39,190,247,240,213, 33,189, 35,188, 60,100, 71,206, 21, 5, 68,247,
- 43,187, 51, 10,200,222,243,110,191,202, 66, 13,204,156,132,125,190,179,196,223, 55,250, 47,163, 49,158,231, 69, 62,159,189,109,
-183,243, 93,179,111,173,129, 48, 21,246,220,155,236, 63,223, 1, 92,135,229,189,247,105,112,176,205,172,220,250,222,183, 34,125,
-166,169,105,141, 65, 89,244, 77,249,166,227, 51,149,125,159,189,127,242, 75, 30, 10,223, 4, 57,233, 75,206, 84,157,253,241,236,
-240, 97,195,237,118, 54,113,156,123,159,230,203,127, 20, 60,252,176,177,179,216, 63, 50, 50, 82, 32,169,113,188,143, 58, 1, 46,
-231,112, 21,136,137,211,255, 82, 82, 82,146,159,159,159,147,147,147, 88, 82,146,159,159, 15, 0,137,137,137, 83,199, 15, 67,109,
-114,192,128, 1,101,188, 17, 38, 92,155,172,217,182,210,179,159,220,163,215,162,205, 43,159, 29,212, 63, 36,225,193,119,179,178,
-178,108, 70,167,168,212,173,114,185, 12, 0, 36, 18, 82,171,213,187,124,243, 34,239,219,131,160,100,112, 12,195,184,201,164, 70,
-138,197, 49,192, 49,120,243,237,119,105, 6,218,218, 52,181,181, 53,193,193, 33, 44,203, 80, 20,200, 37, 36, 33,225,115, 17, 80,
- 20,213, 55,182, 50,192, 87, 13, 24, 6, 24, 0, 6, 24,198, 14,237,119,243,204,197, 96, 33,225, 64,200,204,183,118, 7,241,152,
-255,230, 70,135, 53,245, 59, 52,255, 1,160,177,177, 49, 40, 40, 8,133, 57,153, 76, 38, 52,246,235,237,237, 45,145, 72, 42, 42,
- 42,248,135, 47,190,204, 61,242,236,131,227, 39, 0, 0, 64, 33, 5, 13,181, 69, 0, 48, 33, 30,188,222, 61,180,248,149, 81, 14,
-239,185,178,186, 22, 0,122, 6,249, 41, 13, 6,210,139,208, 55,104, 1,199,123, 68,134,239, 59,120, 86,224,243, 62,181,100, 69,
-233,137, 3,100, 45,180, 4,131, 27,142,143,140,138,158, 56,158, 47, 68,213,220,227,255,237,220,103,183, 26,110, 64,156, 30,206,
-144,224, 65,194,140,196,240, 25, 79,241,117,149,194,252,140,198,102, 9,101,250,166,124,211,169,167,189,199, 61,242, 80,239,160,
- 62,151,247, 29, 30,146,218, 38, 49,182, 81,189,153,134, 58,190,129,122,196,248,104, 12,192,124,185,155,187,125,148,202,148,135,
- 31, 54,206,159, 63,127,254,252,249,119,147,253, 45,124, 62,168,112,202, 93,224,184,169,179, 30,143,137,137,201,201,201, 65,236,
-159,154,154, 26,220,163,135, 83,109, 50,109,198,184,211,213,245,158,131, 60,171,246, 22,131, 92, 54,235,165, 39,253,194, 31,228,
- 37, 13,186,170,166, 78, 34, 33, 81, 15, 0, 0,156, 53,255,173,157, 69,162, 50,224, 81, 6,230, 58,224,142, 49, 0, 22,197,192,
-176, 64, 51,128, 99,128, 97,240,227,214, 45,143,252,101,118, 64, 96, 16,250,104, 89, 71, 73,198, 9,188,190, 95,220,237,226,136,
- 3,251,187, 1, 0, 96, 48,180,111, 9,129, 11, 42,114,107,238,243,177,216,206, 77, 5,176, 7,115,159,143,197,118, 46, 52,222,
- 38,212,106,117,107,107,171,193, 96, 96, 24,166,161,161, 1,249,127,180, 90,173, 70,163,113,232, 2,250,233,147, 55, 14, 95, 6,
- 85, 25,152,116,240,113,230,253,200,255,115,190, 0,126,173, 57, 33, 36, 94, 74, 85, 93,236,231,237,238,239,231,158, 16,223,167,
-164,180,161,176,170,169,167,191,183,161,174,158, 50, 81,220, 84, 0,158,231, 29, 53,225,161, 49,247, 63,250,211,142,205,135,142,
-110,222,180,122,201,172, 37,239, 93, 52, 65, 67, 83, 61,207,243,114, 30,255,191,142, 26, 49,191,111,228,230,159, 14, 94,188, 88,
-182,250, 82,254,247, 41, 79,194, 23, 39,171,170, 26,184,169, 0, 54, 92, 4,122, 25,109,108, 52, 26, 85, 0, 16, 28, 22,209,187,
- 79, 31,181, 66, 9, 0, 58, 70,139, 27,218, 20,109, 68, 93,141,109, 5,128, 94,163, 94,175,231,162,128,204,151,239, 97,183,143,
-203,236,111,110,254,163,177, 7,174, 19,208,213,143,172,170, 46,182,216,194,181, 73,110, 42, 0, 79,155, 28, 59, 60, 33,121,116,
-252,138,183, 63,248,112,237,238,255,251,246, 96,198,196, 97,181, 63,239, 86, 41,213,246, 24, 57, 43, 43, 43,117,230, 84,228,246,
-225, 20, 0, 0,188,247,230,235,194, 73, 92,164,123,126, 88,120,255,205, 59, 4,184,121, 15, 93,165,209, 18, 56, 70, 81, 52,195,
-178, 20, 3, 44, 11, 23,126, 45,152, 56,105, 10, 0,208, 44, 75,224, 68,171,214, 72, 25, 13,118, 53, 57, 77, 71,135,213, 4,250,
-169,144, 50, 25,149,228,129,138,171, 98, 24, 59,164, 79, 17, 69,211, 66,204,127,155, 67,193, 66,205, 97, 91,195, 80, 14,101,125,
-125,125, 27, 26, 26,100, 50, 89,107,107,107, 96, 96, 32, 26, 16,214,235,245, 45, 45, 45, 14, 21, 64,218,138,239, 63,206,188,223,
- 59, 10, 14, 95,134,191,175, 58,228, 65, 18,127, 89,248,175, 74,166, 54,123,245,171, 4,142, 9, 49,255, 19, 19,227, 3, 99,162,
-130, 2, 3,164, 56, 70, 97,108, 67,155, 78,217,170, 23,248,188, 31,174,220,246,112,159,104, 47, 47,127,183,192, 80, 83,179,178,
- 96,231,119, 45,205,229, 2,219,196,255, 86,190, 8,139,147, 73,202, 24,213, 6,245,132,250,227,154,179, 32,245,114,224,239, 42,
- 86, 55,226,186,114,169,118, 88,220,253,125,159,244, 40,241, 61, 28, 24, 88, 16, 49,178, 68,133,183, 26, 88,157,246, 91, 70,238,
-225,201, 99,251,255, 17,145,158,238,107,237,249, 17, 62, 26,236, 50,251,155, 19, 61,167,132, 80,197,246, 46,125,222,202,234,218,
- 83,167, 78, 33,191,127, 98, 98, 34, 0,228,228,228,252,176,125,183,240, 54,249,243, 79,111, 77,201,124,105,218,180, 73, 1, 50,
-162, 21, 99,247, 22, 86,156,186, 92,229,144,190, 23, 60,253,104, 73, 81, 81,197,173, 50,244,247,222,155,175,219,180,235, 69,184,
- 70,253,246,252, 63,119,184,128,100, 50,217,205,171, 23,163, 66,253, 20, 18,146,166, 25, 12,195, 48, 12,210,210, 95, 96, 89,134,
-102, 89,154,102,181,122,253,181,194, 18,169,212,174, 83,132, 50, 53, 15,233, 91,202,125,244,207, 47, 46,221,250,109, 47,212,103,
- 24,214,191,248,244,133, 62, 36, 17,232,208,252,183,160,126,157,170, 9,204,102, 2,243,155,255, 22,205, 49, 47,123, 37,152,205,
-140,181, 7,154,166, 67, 66, 66, 12, 6, 67, 93, 93, 29, 77,211, 1, 1, 1, 77, 77, 77, 1, 1, 1,168, 74, 53,191,108, 67,109,
-209, 27,239, 30, 82,149,193,191,151,140,213, 80,244,203,171,114, 62,202, 76, 93,178,122, 39,137, 97,142,248, 31, 84,213,197, 61,
- 2,124, 36, 32,161, 1,171, 41,189,114,171, 94, 21, 27,232,119,161,185,250,124,113,149, 16,243,127,214, 51, 47, 75,252, 0, 39,
- 96,227,238,210,173,159, 45,125,102,101,214,203, 51, 6,189, 48, 41,210,225,243,238,109,107,251,112,230, 28,104,145, 3, 38,129,
- 15, 63,152,125,246,216,190, 73, 11,176,127,189,132,157,126,149,199,252, 7,128, 11,181, 1, 99,116, 42,141,130,208,202,229,177,
-179, 36, 6, 86,167,194, 37, 20,196,179,180,214,212, 88,115,226, 19,213,252,199, 98,239,177,239,199,102,192,190,192,110,129,203,
-236, 15,119,122,255, 45, 2, 70,187,116, 36,160,176,224, 36,231,247,127,254,153, 57,123,218,125, 65,191,196,196, 56,156,187,144,
-151,189,114,110,242, 8,111,198, 87, 11,146,173,107, 94,250,108,231,175, 75,167,142,121,122,245,166,217,239,125,227, 80,111,113,
-115,199, 44, 86,197,136,254,174,198,111, 61, 0,130, 32, 90,106,138,138, 43,154, 72, 9, 65,209,140,137,162,207,159,207,255,250,
-235, 47,141, 52,107,162, 25, 41,137,215, 43, 53, 85,215, 78, 41,236, 12, 1,211, 52,221, 39,246,214,109,243, 31, 0, 0,219,250,
-109, 60, 0, 6, 56, 11, 56,139,227,204,200, 65,215,104,251,157, 0, 11,243,159,139, 2,114,247, 11,113,200,254, 22,230, 63, 23,
-129,144,178,248, 83,135,108, 8, 0, 74,165, 82,163,209, 72, 36, 18,100,254, 51, 12,131,254, 11, 81, 0,223,172,121,253,124,213,
- 17,143, 16, 88,250,201, 49, 79,146,104,168, 45,242,146, 73, 90,154, 43, 9, 28, 35,113,220,161,249, 31,225,231,121,181,164,148,
- 50, 26,101,164, 84,163,209, 95, 40,173, 14,136,238,231,144,253,209,243, 62,244,226, 59,217, 31,127,164,101, 32, 34, 54,252,242,
-149,211, 47,207, 24, 36,240,121, 1,224,229,216, 97, 59,110, 30, 4, 21, 5,242,128,253,121, 87,177,127,189,244,105,112, 48, 63,
-251, 3,192, 32,227,131, 39,246,231,129,177, 85,131,181, 42,113,141,138, 52,153,104,181, 76,175,149, 87,151,126,191,236,102,212,
-224,120,158, 17, 96, 0,224, 90,142, 92, 46,151,203,229, 22, 27,187, 57,144,213,159,155,155, 11, 0, 15, 63,108,116, 56, 32,220,
- 17,246, 47, 40, 40, 96,237,135,204,119, 93, 56, 80,101,117, 45, 23,243,243,198, 63, 22,203, 72,105,112,112, 48,138, 11, 66,219,
- 29,182,201,103, 39, 12, 92,244,193, 71,173,117,245,129, 94, 65, 87,174,150, 63,189,122, 19, 10, 99, 21,168,243, 56,152,123,117,
-196,126, 64, 71,176,243,219,119,118,242,214, 17,185, 99, 96,214,211,211, 51,255,240, 54,150,157, 25, 21,234,239,233, 38,235,219,
-127,112,223,126,131, 72, 28, 52, 58,186,188,166, 57,239,240, 46, 15,119, 55,123, 39,106,211,106,227, 35,107,244, 6, 57,139,202,
-230,177,160,144,235, 89, 22,154, 91,100,128,129,167, 59, 53, 32,190,236,216,185, 33,158,158,158,252,230, 63,103,245, 43,188,253,
- 37,172, 9,168,219,209, 99, 52,233,230,208,252,231,172,126,180,170,170,191, 29,114,192, 51, 29,151,211, 1, 0, 16, 18, 18, 2,
- 0,205,205,205, 94, 94, 94,200,255, 35,164, 40,235, 55,107, 94, 7,248,215,130,212,241,240,241,177,207,150, 79,159,189,228,163,
- 77, 43, 95, 32, 49, 76, 42,147, 59, 52,255,175,150,215,199, 69, 4, 28,200, 61, 13, 0,222,161,177, 0, 96, 50,220,238,107, 75,
-236,139, 35,243,255,221,103, 38,253,253,205,141, 17, 49,152, 83,207,139,204,255,201, 63,253,111,223,252, 71,177,240,145, 0, 48,
-197,221, 29, 0,118,104, 52,232,128, 25, 30, 30, 60,183, 61,208,240,234,133, 95,118,234, 19, 78, 70,245,234,175, 86, 64, 41,220,
-106, 45,107,104,120,143,214, 40,195, 23, 63,185,132,255, 69,173, 91,183, 78,161, 80,232,116, 58,142,194, 20, 10,197,186,117,235,
-254, 16, 31, 18,178,250,235,234,234, 0, 64,200,104,112,114,114,178,107,236, 15,237,197,223,121,136,207,217,185,196, 2,161,170,
- 46, 94,241,214, 27, 63,238,248,101,202,152,161, 92,155,244, 14,141, 77, 44, 41,153, 58,235,241,242, 38,109, 79,127, 55,126,243,
-127,209,134, 29,203,254, 54, 57, 52,100, 2,210, 34,232, 86,121,250, 82, 2,187, 5, 98, 63,160, 19,245, 1,159, 2, 0, 0, 47,
- 79,143,243,135,183,149,134, 39,196,244,234,227,229,174, 96, 88,208, 25,140, 37, 37, 37, 13, 37,191,122,122,184,227,246,173, 90,
-133, 92,190,121,207,120, 30, 27, 31,199,113,119,119, 7,230, 30,138, 1,117,247, 11, 97,104,147,132,189, 29,144,110,194, 36,246,
-146, 49,152, 3,197,159,165, 44,254,148,227, 65,129,236,207,233, 0,110,242, 87,115,115,179,221, 23,100, 71, 7,124,211, 62, 17,
-234,243,247,218,231,196,154, 52,252,101,200, 35,252, 60,243, 26, 91,126,189, 89, 21, 16,221,143,227,125,135,236,143,240,208,139,
-239,108, 29,234,254,226, 35,189, 93,120,222,151, 99,135, 45,217,190, 25, 91,241,230, 47,193, 35,214,106, 46,115,219,135,144,146,
-112,185,227,140, 79,131,140, 15,254,178, 93, 95,169, 44,110,104,170,169, 43,244, 32,104,175,209, 3,199,222,255,228,253,247,246,
-151,227, 66, 12,104,122,186,175, 11,236, 15,191,235,144,102,132,159,231,125,247,221,103,209, 38,167,206,122, 28, 0,120,216, 31,
-225,217, 9, 3, 83,114,207,204,127,243,235,113,227,198, 5,223,217,155,116, 89, 93, 33, 29,224,240,133, 88, 43, 75, 81,103,240,
-240, 62, 95, 42, 8, 0,240,242,242, 50, 52, 87,156, 63, 92, 8, 0,168,224,178, 76, 38,179, 30,155,181,128, 68, 34,241, 22,144,
-242,129, 7,200,225, 67, 80, 90,160,180,132, 25,245, 11,201, 88,141, 28, 62,170,250, 74,115, 54, 20, 66,253,222,129,161, 70,251,
-195,218,252,152,255,206, 55, 55,175, 95,113,249,121,243, 10, 43,208,103,102,206,254, 14,169, 31,225,201,161,238,174, 61, 47, 0,
- 96,107, 94, 69,212,207,177,191, 64,234,231,240, 64,244,108, 64,202, 77, 88,140,204,250,245,235,209,164,223,117,235,214,113,179,
-127, 55,110,220,136,204,255,141, 27, 55,118,255, 84, 16, 46,196,128,118,133,145,222,213,176,217, 38, 29, 82, 63, 66,202, 27,159,
-119, 34,245, 59,165, 14, 69,174,183, 7,139,138,240, 32,176, 40, 60, 73,146,246,124, 53, 93, 1,228,229, 71,212, 15, 78, 82, 63,
-242,122,187, 70,133, 0, 64,209,140,144,238,133, 77,212, 55,171,132, 95,200, 28,200,203,239, 26,245,119,228,121,145,151,127,135,
- 70,227, 50,245,139,184, 87,129, 66, 60,203,155,180, 46, 80, 63,226, 95,206,219,243,199,213,127,247,170, 14,224, 51, 7,197,162,
-240, 34, 68,136, 16,241,231,132, 88, 17, 76,132, 8, 17, 34, 68, 5, 32, 66,132, 8, 17, 34, 68, 5, 32, 66,132, 8, 17, 34, 68,
- 5, 32, 66,132, 8, 17, 34,238, 77,252,254, 69,225,255,108,178,250,218, 10,225,178,242,144, 8,241, 61,139,178,162,172, 40,219,
- 69, 69,225,187,117, 15,192,217, 89,224, 37, 37, 37,185,237, 40, 41, 41, 17,213, 59, 15, 84, 42, 85,121,121,249,169, 83,167,206,
-159, 63, 95, 94, 94,238,218, 73,254,184, 89,222, 68, 56,139, 27, 55,110, 56,117,112, 70, 70,134,203, 23,114, 89, 86,132,235, 61,
-128,238, 6,103, 25,188,164,164,100,229,202,149,115,230,204, 49, 23,143,137,137, 17, 46, 94, 82, 82,146,147,147,147,154,154, 26,
- 19, 19,227, 80, 48, 45, 45,205,225, 57,231,204,153, 99, 51, 26,122,255,254, 47,133,200, 42,149,238, 93,244,110,235,235,235, 13,
- 6, 3,134, 97,114,185, 92,175,215,151,151,151,159, 61,123,118,208,160, 65,113,113,113, 78,157, 71, 72,170, 12, 0, 72, 79, 95,
- 32,228,176,172,172,117,157, 45,155,110,231, 96,203,212, 99, 14,219, 21,188,137, 97,111, 91, 41,191, 55,177, 57,215, 82, 65,214,
-219,225,237, 77,153, 50, 5, 0,246,238,221,235,194,143,133,114, 65,167,167,251,118, 36,178,254,198,141, 27,107,214,172,113, 56,
-225,238,185,231,210, 88, 22,172,127,213, 87, 94, 89, 34, 68,156,107, 21,107,215,174, 29, 63,126,124, 70, 70,198,166, 77,155,212,
-106,181,195,139,222, 65, 73, 36, 49,111,148, 52, 61, 35,253,253, 61,255,126, 37,229, 21,180,241,243,207, 55,216,148,125,252,241,
-199, 1,192,221,221,198,151,130, 42, 59, 61,253,244,211,226,140, 4,115,160,121, 97, 92,244,191,109, 5, 96,157,108,164,139,210,
-143,116,162, 2,224,216, 63, 57, 57, 25,205, 73, 41, 41, 41, 17,168, 0,208, 71,142,232, 12,229,189,202,204,204,116, 44,155,227,
-231,232,196,118,223, 88,219, 12, 7, 85,212, 65, 64,146, 52,215,234, 96,168, 84,170,160,160,219, 5, 30, 20, 10, 69,125,125,125,
- 75, 75,139,183,183,119, 94, 94, 30, 0, 8,209, 1,185,185,185,232, 45, 97, 24, 54,107,214,172,228,228,100,135,154, 96,251,246,
-109,104, 97,230,204,135,237, 45,219,147,213,157,124,241,246, 43, 25,245, 41,183,108,190,170, 24,101, 55, 5,222,158, 61,119, 20,
- 55, 59,122,244,232,123,239,189,103,254,162,190,253,246, 91,254,134,177,106,213,170,149,178, 85, 0,144,154,154,122,199, 39,240,
- 38,230,108,147,190,251, 31,145, 57,251,103,101,101,177, 44,155,157,157,125,252,248,241,105,143, 45,183,119,240, 73,171, 18,218,
- 63,229, 44, 89,179,102, 13,195, 48, 27, 54,108,200,206,206,246,234, 57,222, 38,233,115,221,193,235,215,175, 99, 24,246,232,163,
-143, 2,192, 99,143, 61, 38, 68,109,124,176,255,118, 21,226,218,189, 53, 24,134,109, 90,232, 6,128,101, 78,125, 21,246, 0, 0,
-124,247,213,166,140,241,124,125,130,196,196, 68,225,166,158,200,254, 14, 92, 64,233,233,233, 57, 57, 57, 27, 54,108,176,248,224,
- 5, 58,100, 58,226,123, 49,151, 69,198,184,112,217, 13, 27, 54, 36, 39, 39,163, 15, 44, 57, 57,217,169, 6,129,216, 63, 53, 53,
- 53, 43, 43, 11, 93, 84,224, 83, 96,115,148,232,143,103,139, 61,120,236, 92,135,254,120,182, 56,100,127,150,101,209,135, 39,208,
- 27,163, 84, 42,189,189,189,131,130,130,158,121,230,153,249,243,231, 75,165, 82,133, 66, 33,151,203, 49, 12, 35, 8, 2,165, 2,
-230,193,213,171, 87,211,211,211,183,108,217,130, 94, 23,203,178, 91,183,110,205,200,200,184,122,245,234, 93,110,202, 22,202,160,
-139, 76,144, 85,171, 86,101,101,101,205,189, 62,103,206,181, 84,139,151,255,154, 33,211,162, 79, 96, 15, 25, 25, 25, 75,151, 46,
-141,142,142,118,225, 30, 50, 50, 50,210,211,125,253,253, 15,116,220,246,231,216,223, 41,113,142,253,151, 44, 89,194, 35,110,222,
-252,214,174, 93, 59,110,220, 56, 0,120,244,209, 71,199,143, 31,239,144, 55, 44,100,231,222, 71, 2,192,166,133,138,121,163,164,
-175, 78, 89,202, 47,235,238,238, 62,110,220,184,180,180,180,100, 43,160, 93,162,249,207,195,254,182, 21, 0, 87, 24, 26,217,209,
-156,185, 39,132,142,209, 55,211,145,239,205, 53, 7,142, 77, 78,119, 86,132, 83, 30,153,153,153, 14,243,223,254,190,224,216, 31,
- 0,170,170,110, 23,220,168,172,172,228,255,216, 84, 42,149, 86,171,197,113, 60, 57, 57, 89,165, 82, 85, 87, 87, 75, 36, 18,146,
- 36, 73,146,148, 72, 36, 40, 85,167,197,132,126,139, 15,245,163,143, 62,194, 48,108,246,236,217,235,215,175, 79, 78, 78,206,202,
-202,154, 61,123, 54, 0,124,252,241,199,247,216,215,194,177, 63, 0, 68, 71, 71,115,182, 5,122,249, 92, 7, 81, 32,191, 36, 39,
- 39,175, 95,191, 62, 39, 39,199,181, 81,147,215, 95,127, 61, 39, 39,135,231,167,225, 97,255,213,171, 87, 99, 24,150,145,145,145,
-157,157,125,236,216, 49, 0, 16,158,129,245,167,156, 37, 72, 28,199,241,115,231,206, 33,113,135, 87,196, 48,108,222,188,121,104,
-245,209, 71, 31,157, 48, 97, 66, 70, 70,198,207, 63,255,236,208,145, 88,187,183, 6, 48,200,254,251,237,252, 19,155, 22,186, 61,
- 58, 90,150, 57,245, 85,254, 43,242,176,132,216, 45,176, 96,255,180, 76, 75, 86, 36,109, 54, 86,174, 48,116,137, 89, 97,104,135,
-109,189,179,216,191, 83, 20, 64, 71,176,114,229, 74,151, 31,228,174,129,101,217,170,170,170,218,218,219, 85, 24,205,151,237,161,
-161,161, 1,199,113,130, 32,138,138,138, 88,150,189,113,227,134,209,104,196, 48,140, 36, 73, 12,195,104,154,214,106,181, 63,253,
-244,147,189, 31,250,192,129, 3, 0, 48,123,246,108,243, 3,208, 50,162, 39,158, 22, 98,238,225,177,183,204, 99,236,219,243, 5,
-241, 56,127, 44, 60, 63,200, 38,117,170, 13,172,148,173,194,238, 84,168,200,239, 95, 34,196, 61,104,102,194, 35, 29,137,152,238,
-192,129, 3,194,109, 82, 36,219,171, 87, 47, 16, 60,220, 98,142, 5, 11, 22,112,206,174, 5, 11, 22, 28, 59,118, 12,195, 48,225,
-236, 63,126, 52, 1, 0, 12,195,188,242,202, 43,107,215,174, 69,226, 51,102, 62,199, 95,216,143, 51,255, 57, 32, 95,208,238,221,
-187,123,247,238, 13,224,206, 47, 59,247,190, 59, 18,115,109, 90,232, 6, 0,223,109, 42,184, 17,114,131, 95, 86,132, 11,236, 15,
-246,198, 0,210,210,210,144,225,207, 21,134,118,138,253,109,218,161, 60,238,105,123,178,230,219,187, 46,225, 95,110,110, 46,151,
-118,220,252, 30, 92,243,216,178,155,125, 93,190, 19,205,131,142, 7, 60,185,155,180, 96,132,240,240,112,243, 3,108,190,174,230,
-230,102, 79, 79,207,230,230,230,147, 39, 79, 18, 4, 97, 52, 26,117, 58, 29, 42,125,195,178,172,201,100, 50, 24, 12, 60, 38, 42,
-234, 21, 89,191,147,228,228,228, 45, 91,182,228,228,228,240,188,174,142,143, 1, 40, 70,125,106, 78,247,104, 89,160, 26, 24, 55,
-110,156,211, 58,224, 77,140,107,249,191, 13, 38,189,137,129, 51, 99, 75,230, 58, 18,218, 11,187,187,230,148,120,253,245,215,209,
-232,133,112,113,150,101, 57,255,251,152, 49, 99,142, 29, 59,230,148,237,207,178, 44, 69, 81,230,226, 71, 78,208, 31,172,202,112,
-104,254, 35,198,183,198,154, 53,107,166,207,127,195,158,172,153,247,255,206,254,129, 0, 89, 17, 46,131,228,105,181,200,252,191,
-203,182,191,185, 39,234,238,132,114,154,123,123,204,227, 67,248, 25,205,110,127,182,221,251,239,130, 38,224,188,255,252,154, 96,
-254,252,249,238,238,238, 30, 30, 30,158,158,158,222,222,222,190,190,190,187,119,239,126,226,137, 39,208, 94,185, 92, 62,121,242,
-228,244,244,116,235, 52,127, 70,163,177,185,185, 89,175,215,123,123,123,203,100, 50,138,162, 88,150,165,105,218,104, 52,154, 76,
- 38,154,166, 29, 58, 40,236,185, 1,103,207,158,125, 23,156,102,246, 70,131,133, 0,233, 0, 39,126,199,183,109, 60,236,156,107,
-169, 57, 57, 57,194, 71,166,204,205,127, 78,109, 11, 52, 44,204,205,127,155, 42,159, 31,155, 54,109, 66, 39, 89,191,126,189, 11,
-174,127,100,249,145, 36,185,120,241,226,115,231,206,181,139, 59,104, 30, 31,125,244,209,216,177, 99,205,183,124,255,253,247, 71,
-142, 28, 97, 89, 22, 89, 36, 60,241,233,107, 63, 90, 59,111,228, 29,230,255,252,143,181,223,159, 52,177, 44, 59,228,177, 33, 25,
-227, 51,132,199,182,139, 16,104,254, 3,207, 60,128,220,220, 92,212, 8,184,193, 0,126, 55, 92,102,102,166,107,247,103, 79, 54,
- 38, 38, 70, 56,167,228, 90, 1, 69, 4, 57,235, 54, 21, 18,220,217, 29,176, 97,195,134,213,171, 87,115,171,136,253,103,206,156,
- 57,115,230, 76, 0, 56,114,228,136, 77, 41, 79, 79, 79,154,166,149, 74,101, 99, 99,163, 82,169,212,106,181, 90,173, 86,163,209,
-168,213,106,149, 74,165,211,233, 12, 6, 3, 79, 73, 31, 12,195,182,108,217,226, 80,137,118, 43, 28, 53, 3,183,177,177,177,145,
- 91,230,241,107,155,251,253,205,109,121,167,204, 2,139,131,215,175, 95,191,101,203, 22,151, 71, 2,182,108,217, 34,164, 73,103,
-103,103, 31, 57,114, 4, 13,252,102,100,100,160,103, 23, 94,116, 97,121,230,248, 35, 71,142, 48, 63,248,176, 44,187,102,205, 26,
- 36,126,244, 36,211,110,142,219, 53,255, 57,135, 15, 0,124,247, 93,246,130, 5, 11,142, 28, 57,178,104,209, 34,135,151,174,221,
- 91,131, 1,150,221,110,254, 63,246,145,150,152,167,250,238,164,113,209,162, 69,171,246,188, 47,146,120, 23,177,191,221, 30,192,
-134, 13, 27, 56,215, 63, 55, 24,192, 79,142,136,199,145, 45,239,172,187,198, 66, 22,245, 9, 98, 98, 98, 92,115,251,112, 97,160,
-119, 19,200,240,119,205,255,131, 12,127, 33,254, 31,238,243, 70, 11,255,252,231, 63,191,252,242,203,118, 23,202, 76,180, 48,121,
-242,100,123, 10,192,223,223,191,169,169,201,104, 52, 54, 52, 52,200,100, 50,146, 36, 81, 15,160,173,173, 77,171,213, 26, 12, 6,
-149, 74,245,234,171,118,199,220,144,153,111, 51, 68, 24,237,229,185,231, 78, 25, 3, 16,184,221, 28,200,109, 98, 73,112,203,151,
-175, 88,177, 34, 32, 32,160, 75,155,132,181,249,207,193,225, 72,128,181,249,239,148,237, 63,127,254,252,199, 31,127,156,101,217,
-247,222,123,111,217,178,101,227,198,141, 19, 94,208,230,141,215,198, 31, 62,124, 24,219,226, 15, 0,251,222,240,156,252,110,235,
-184,113,227, 86,172, 58,194,178, 44,127, 23, 4,197,254, 3,192,247,223,111, 58,114,228, 24,139,177,139, 23, 45, 78, 72, 72, 16,
-114,209,181,107,215,206, 27, 37,249,205,234, 7,118,241,162,197,193,147, 67, 92, 24,249, 16, 97,131,207, 87,189,102,173, 24,144,
-135,128,228,177,253, 19, 19, 19,205, 7, 3, 28,118, 93,205,121,220,181,126, 0,146,237,160,231, 7,221,179,139, 60,222,237, 27,
- 28,114, 82,113,165,186,255,250,215,191, 90,248,103,114,114,114,208,119,104,141,240,240,240,162,162, 34,154,166,213,106,181,201,
-100, 66,174,127,189, 94,143, 98, 73,209,152,112,108,108, 44,143,102,205,201,201, 65,157, 0,174, 37,228,230,230, 90,108,177,137,
-174, 24, 3, 48,247, 8,217,123, 87, 54,183,167,167,167, 47, 95,190,124,238,220,185, 63,252,240,131,112, 71,165,197,242,202,149,
- 43,211,170,210,231,228,230,218,156, 8, 54,101,202,148,210,210, 82,139, 89, 8, 8,165,165,165,192, 59, 41, 44, 53, 53, 39, 53,
-117, 82, 74, 74,137,245, 96, 67, 83,211, 36, 0,101,122,186,221, 47,145, 43,133,136, 58, 25,251,246,237, 3,103,202,153,225, 56,
-198,110,246, 5,196,254, 23,169, 47, 15, 25, 1, 96,197,170, 35, 66, 62, 13,212,156, 22, 44, 88,192,178,236,226,151, 23, 39,196,
- 39, 8,188,232,210, 87, 95,193, 48,140,101,129,152,167, 66,178, 33,147,123, 0,203,223,223, 16,209, 57, 32,237,117,231,185,129,
- 95, 46,204, 67,136, 79,188, 83,124, 65,206,206, 0,248, 19,130,115,185,112, 28,135,102,111,152,111,180,233, 51, 29, 63,126,252,
-238,221,187, 41,138,106,105,105, 65, 99, 0, 0,208,208,208,208,210,210,194,178,172,195,223,110,225,194,133, 31,125,244, 17, 82,
- 3,230,126,255,133, 11, 23,118,181,238,212,157,124, 81, 8,233,219,100, 67,107,197,144,145,145, 33,144,253,173, 89,216,124, 64,
-216, 97, 39,192,122, 99, 89, 89, 25, 8, 8, 49,224, 28,176,119,222,121,178,144,231,109,106,106,218,183,111,159,185,243, 93, 8,
-210,211,211,153, 31,124,247, 93,164, 0, 96,227, 33,227,247, 39,141, 44,203, 30, 59,229,132,183,234,232,209,163,139, 22, 45, 18,
-104,245,115, 64,141,240,135, 83,166, 69,139, 22,133, 76,233,209,174, 79, 4,201,162,233,190,104,120,223,226,103, 18,103, 2,131,
-173,114, 96,142,103, 2,103,101,101,161, 73, 85,230,166,159, 67, 23,144,229,231,225,170, 14,232,248, 73,184,108, 16, 2,145,154,
-154,106,211,133, 45, 68, 9, 89,251,124,132,123,129,172,125, 62, 2,189, 64,220, 72,181,249,183,109,115,163, 77, 51,109,250,244,
-233,217,217,217, 82,169,212, 96, 48, 80, 20,197, 48,140,143,143,143, 82,169, 20, 50,249,185,111,223,190, 89, 89, 89,251,247,239,
- 71, 97, 63,104, 78,192, 31,238, 3, 59,120,240,224,244,233,211,119,238,220,233, 2,251,115, 92, 89,146,153,201,211, 85, 93,186,
-116, 41,216, 9,159,123,245,213, 87,249,199, 0,210,211,125,237,201,166,167, 59,238,218, 10,207,114, 97, 19, 83,222,109,229,150,
-157, 98,255,207, 62,251,204,181,159,227,131,127,127, 24,107, 57, 41,141, 0, 0, 32, 0, 73, 68, 65, 84, 50,185, 71, 71,126, 80,
-155,202,146,171, 62, 45,194,185, 30, 0,216, 26, 11,189,203,163,163,119,115, 6,128,245, 88,159, 96, 53,227, 34,241,205,153, 51,
- 71, 72,166, 7,155, 64,222, 45,164,156, 44, 60, 93,230, 27,249,159,104,254,252,249,197,197,197,135, 14, 29,210,233,116, 52, 77,
-207,152, 49, 3,195, 48,225,239, 60, 37, 37, 37, 37, 37, 5,217,110, 2, 13,255,206, 26, 3,176,183,204,195,134, 22,113, 41, 66,
-102, 51, 1,151,234,167, 36,213,252,181,164,165,165,165, 85,165, 99,237, 19,193,208, 46,155, 61, 45,158,247, 63,105,210, 36,135,
- 13,210,133, 93,220,243, 98, 24,246,200, 35,143,160,236, 67,206, 2,159,171,196, 48,108,230, 67,105,200, 86, 64, 65,159,230,105,
- 30,186, 2,137,143, 15,117, 89,246,233,167,159,182,167,231,208, 46, 17,174, 40,128,223, 23, 46,152, 45,119,223, 8,237,200, 21,
- 59,146,229,173,179,158, 52, 54, 54,214,218,221,111, 52, 26, 9,130, 32, 8,162,179,127,208,117,191,147,172,141,134,132,210,135,
- 57,198,155,183, 19, 67,153,247, 14,211,170,210,145,162,237,158, 83, 76, 59, 56, 87, 38, 43, 43, 11, 4,184,222, 59, 61, 28,147,
- 63,207, 79,215, 41, 75,209, 41, 4, 98, 81,120, 17, 34, 68,136,248,211, 66,172, 8, 38, 66,132, 8, 17,162, 2, 16, 33, 66,132,
- 8, 17,127, 38,144,226, 43, 16, 33, 66,132, 57, 48,235, 37,150,251, 39, 66,236, 1,136,248,227,195,102,114,112, 17, 34, 48, 0,
-192, 0,195, 48, 12,199,172, 32,206,205,186,119,123, 0, 98,145,229, 63,149,236,140,177, 89,247,246,243, 62, 57,115,192,111,102,
- 14,142,163,112, 85, 46,162,145,109, 7, 58,224,235,237,151,204,101, 91,202, 14,201,229,114,116, 60, 74,160,109, 46,139,178,230,
- 49, 12, 3, 0, 38,147,201, 51, 98,220,159,160, 93, 97, 4, 41, 99, 25,138, 97,168,157,199, 43,205,131, 66,237,201,178, 44, 91,
- 87, 87, 23, 18, 18,226,194,117, 59, 34, 43,126,251,224, 76,164,214, 31,222, 5,180,124,249,111, 37,236, 86,172, 72,186,123,178,
-121,203, 1, 96, 69,210, 10,110,193,217, 59,183, 55, 79,213,222,118,103,207,115,175,245, 85,141,109,100, 83,105, 47,253,197, 48,
-170,162,144,141,174,244,236,171,245,138,148,186,123,218, 59,254,248,241,227, 99,198,140, 65,212,143, 72, 28, 25,177, 28,137, 51,
-237,184,117,235,150,133,236,249,243,231, 19, 19, 19, 21, 10, 5, 73,146, 4, 65,112,226,136,247,233,118, 24, 12,134,252,252,252,
- 9, 17,227,186,255,219, 99, 89,182,169,169,233,212,169, 83, 62, 62, 62, 22, 19, 35, 28,247, 9, 48, 92, 38,247,243,241, 77,104,
-211, 84,105, 90, 43, 48,192, 0, 99,129,229,243, 8, 49, 12,179,101,203,150,194,194, 66, 0, 80, 40, 20, 75,150, 44, 17,126, 57,
- 36, 91, 82, 92, 68, 16,132, 84, 38, 91,180,104,113,151,206, 66, 16,123, 0,221, 5,246, 50, 77, 2,111,162, 49, 68,220,230, 84,
- 46, 28, 29,145,189,151,208,193,185,163,119,129,189, 90,111, 93, 83, 29,221,172,213, 26,162, 70,224,138,112,172, 87,249,197,225,
-112, 65,105,240,248,213,237,201, 70, 44,204,166,208,213,171, 87, 9,130, 24, 59,118, 44,217, 14,164, 12,144,225, 79, 81, 20, 77,
-211, 38,147,233,214,173, 91, 7, 15, 30, 36,252,135,153,203,106,181,218,130,130,130,145, 35, 71, 74,165, 82,174,104, 26,142,227,
- 12,195, 80, 20, 69, 81,148,201,100,210,233,116, 5, 5, 5, 26,141,166, 59,255,178,203,150, 45, 51,255,136, 90, 91, 91, 7, 15,
- 30,236,130,236, 55,155,242, 21,138, 32,130,144,106, 90, 43, 48, 12, 88, 52, 91,192, 62, 45, 87, 87, 87,107, 52,154,199, 30,123,
- 44, 38, 38, 6,229,165,240,243,243, 27, 54,108,152,205,131,159,158,114,199,204,184, 75,215,175, 31,246,116,123,121,205,219, 67,
-134,246,175,169,172,223,183,251,112, 84,255, 33,106,181, 74, 36,107,151, 97,225,239, 53, 15,253, 39,109,114, 1, 98, 1,123,203,
- 93,196,254,207, 63,111,187, 78,186, 82,169,252,238,187,239,120,116, 0, 98,112,103, 77,248, 14,202,114,182,191, 11,230,191, 69,
-229, 25,123, 7,116,209,219, 70, 61, 6,238, 63,218,216,220,156, 12, 0,126,126,185,221,176,249, 26, 43,174,202, 78,126, 99,208,
- 50,127,137, 35, 18, 2, 41,198,143,149,248, 17,173, 77, 82, 69,171,174,207,133, 79,243,227, 51,180,110,145,182,236, 86,236,218,
-181,107, 82,169,116,226,196,137,136,199, 37, 18, 9,142,227,168,244, 13, 69, 81, 6,131,161,162,162,226,208,161, 67, 52, 77, 91,
-204,124,195,113,220,100, 50, 93,184,112, 97,236,216,177, 10,133, 66, 38,147, 33, 89,164, 0, 12, 6,131, 70,163,185,116,233,146,
- 94,175,119, 56,105,174,172,172,172,162,162,162,181,181, 85, 42,149, 6, 7, 7,247,234,213, 11, 57,151,132,160, 35,178, 12,195,
-188,241,198, 27, 92, 50,212,101,203,150, 93,189,122, 53, 40, 40,200,223,223, 95, 32,251,255,239,153,103,166, 13, 25, 2, 0, 33,
- 47,189,164,112, 11,214,168,203,213,170, 98,150,165,113, 28, 99, 25, 7, 53,168,253,252,252, 2, 2, 2,190,254,250,235,167,158,
-122,106,251,246,237,126,126,126, 71,143, 30, 53, 26,141, 0, 61,109, 30,223,244,175,151,185,101, 15,163, 41,148,210, 47, 90,250,
-230,154, 15,254,249,239, 15, 62, 11,195,233,207, 62, 88, 61,113,222, 99,246,100, 69, 56,197,254, 96,150, 10,212,110, 15,192, 60,
- 5,138,189,229, 78,199,221,207,225,220, 9, 14,168,118, 29,224, 20, 56,157,250,229, 35, 95, 91,239,253,235, 79, 79,118,169, 25,
-142, 78,110,254,223, 97,217,238,223, 17,250,150,198,248,210, 93,245, 4, 29,231, 13,145, 61, 89, 98,160,148,140,137,145, 26,244,
-134, 19, 21, 6, 21, 73, 48, 18,125,238, 55,248,180,133, 12,105,233, 11,226,138, 95,250,250,250,222,127,255,253,114,185, 92, 42,
-149,146, 36,137, 12,127,189, 94, 95, 93, 93,125,228,200, 17, 28,199,113, 28,183, 41, 75,211,244,149, 43, 87,198,140, 25,227,229,
-229, 37,151,203, 9,130,160, 40,202,104, 52,170,213,234,179,103,207, 26, 12, 6,146, 36,209, 72,128, 61, 92,188,120,241,228,201,
-147,165,165,165,106,181, 90, 42,149,134,132,132, 12, 27, 54,108,212,168, 81,238,238,142,167,130,187, 44,203, 48, 12,170,252, 99,
-190, 17,229,133,158, 61,123,182, 16, 21,130, 19, 82,243,213,218, 79, 62, 9,121, 56,252,223,255,254,200,100,106, 3, 0, 28,199,
- 24,150, 5, 22, 3,176,171, 4,142, 31, 63,126,230,204,153,215, 94,123,141, 32,136,191,252,229, 47, 17, 17, 17,135, 14, 29,218,
-189,123,247,136, 41,142, 38,253, 98,216,183, 69, 53, 91,111, 86,109,255,249, 43,130,192, 94,126,233,137, 65, 33, 1, 27, 22,189,
-249,185, 16, 89, 17,118,216,223,220,228,183,208, 7, 78, 68, 1,117,117,186,199, 24,251,232, 10, 19,190,131,178,224,146,223,191,
-211,109,121,174,152,165,112, 18,183,121,164,159, 95,174, 64,243,159,162,168,179,103,207, 90,175,154,111,180, 6,119, 12, 87,101,
-208,122,213, 38,154,175,156,175,174, 82, 7,121,146, 49,158, 44, 25,192,144,247, 77,117, 31,244,141, 98,232,135, 50,111,133, 84,
-163,211,106,233,158,132, 86,121,241,164, 13, 22,195,113, 84,236,254,230,205,155,151, 46, 93,242,242,242,242,247,247,247,247,247,
- 15, 8, 8,240,241,241, 81,169, 84, 71,143, 30, 37, 8, 2,121,249, 45,100,209,118,169, 84, 74,211,116, 97, 97,161,155,155, 91,
- 64, 64, 64, 80, 80, 80, 96, 96,160,135,135, 71, 97, 97,161,201,100, 66,174, 33,107,229, 97,110,191,239,223,191,191,184,184, 56,
- 58, 58,122,202,148, 41, 73, 73, 73, 90,173,246,224,193,131, 23, 46, 92,208,235,245, 14,109,255,253,185, 7, 74,106, 84,158,113,
- 35,227,167,252, 45, 44,105,166,210,128,239,207, 61,224, 80,150, 97, 24,181, 90,125,241,226,197,227,199,143, 15, 28, 56,144,115,
-227,160, 5,135,236,143, 19, 82,119,143, 80, 63,255,254,217,223, 95,124,230,127,255,219, 93, 80,176,187,160, 32,228,165,151, 0,
- 0,177, 63, 0,224, 24,224,188,241, 64,187,119,239,222,190,125,251,139, 47,190,232,233,233,233,230,230,182,117,235,214,227,199,
-143, 55, 54, 54,198,199,199, 59,108, 93, 31, 21,220,252,224,244,229,207, 63,120,157, 36,116, 56,221,250,254,218,255,253,112, 52,
-191, 26, 39,157,205, 48, 42, 66, 32, 72,225, 68,223,157,135, 98,254,180,106, 0,185,110,156,242,222, 88,119, 47,184,126,128,195,
-158, 71,107,107,235,201,147, 39,139,138,138,134, 15, 31,110,177,154,151,151,135, 54,218, 4,218,155,151,151,215,220,220, 60,106,
-212, 40, 79, 79, 79,180,209,124,213, 38,188,244, 77,187,203,245, 97, 74, 98,136, 23, 22,216, 0,113,164, 55,142,249,179,250,186,
-182, 58,236, 74, 57, 83,219,166, 39,113, 28,152, 66, 24, 58,197,158, 2,144,201,100,197,197,197, 97, 97, 97, 41, 41, 41, 4, 65,
- 48, 12,211,212,212,116,252,248,113,137, 68, 34,149, 74, 81,250, 35,198, 74, 22,137, 75,165, 82,150,101, 75, 74, 74,226,226,226,
-188,189,189, 53, 26, 77, 65, 65, 1, 77,211, 50,153,204, 96, 48, 24, 12, 6, 30,171,232,236,217,179,149,149,149,131, 6, 13,154,
- 48, 97, 66,120,120,120, 91, 91, 91, 96, 96, 96,110,110,238,169, 83,167, 28, 58,115,206,158, 61, 91,215,172,242,139, 31, 25, 51,
-118,174, 79,120,188,161,173,165,252,204,174,155, 7,190,114, 40,139, 70, 47,170,171,171,131,131,131,227,227,227, 47, 94,188,136,
-168, 31,249,130,150, 45, 91,102,179, 66,206,109,181, 71,202,125,124, 19,124,252, 18,112, 92, 98, 50,181,125,241,229,161,103,254,
-122, 63,146,125,238,185,231, 2, 3, 3,145, 44,134,181,187,255,109, 13, 3, 28, 63,126,124,199,142, 29,207, 63,255,124,143, 30,
- 61, 0,224,192,129, 3,101,101,101, 10,133, 66,161, 80, 76,159, 62,253,228, 85, 29,207, 83,111,186, 81,241,225,217,235,255, 93,
-153, 25,158, 16,217,166, 81,254,252,203,217,139,151,110,248,176,140,180,182,110,250,139,243, 79, 92,209,137,124,237, 44, 44, 50,
-253, 88,119, 8, 72,107, 46,224,146,220,218, 91,238, 86,112,153,184, 59, 40,235,178,255,167,227, 86,191,144, 93, 60, 84,238,114,
-212, 80, 89, 89,217,201,147, 39,149, 74,165,205, 85,129, 40, 42, 42,106,106,106, 26, 53,106, 84, 84, 84,148,245,170, 53, 26, 26,
- 43, 78,214,232,166,187,185, 29,171, 96, 66,135,202,162, 13,249,202,171,207,255,244,254, 69,166, 76,165, 49,178, 85,173,180,130,
-196, 41, 85,173,183, 45, 59,134,211, 1,114,185,252,214,173, 91,215,175, 95,239,215,175,159, 82,169, 60,125,250, 52,242,236,219,
-115,226, 99, 24,134, 58, 1, 72,150,101,217,138,138,138, 1, 3, 6,228,230,230, 50, 12, 35,151,203, 37, 18, 9,138, 14,226,233,
- 1,148,151,151,235,245,250,196,196,196,240,240,112,130, 32,188,188,188, 70,140, 24,113,250,244,233,242,242,114,131,193,192,255,
-150,202,203,203, 25, 92, 26, 54, 56,217, 39, 60, 30, 39, 36, 10,175,192,158, 35,166,223, 58,189,157, 95,150,101,217,150,150,150,
-170,170,170,158, 61,123,142, 30, 61,154, 32, 8,228,249,121,234,169,167,208, 1,222,222,222, 60, 23,149,203,253,253, 3, 7, 25,
- 13,170,198,166, 2,131, 65,105, 50,105, 0, 0,201,214,213,214,114,178, 24, 6,246,180, 94, 77, 77, 77,118,118,246,252,249,243,
- 7, 12, 24, 0, 0,251,246,237,219,189,123,247,235,175,191, 30, 28, 28,220,126,136,221,240,196, 66,181, 54,243,200,175, 43, 95,
- 73, 31,251, 96,114,155,166,113,243,143, 71,178,190,216,250,203,203, 79,199,212, 87,174, 82,215,250,249,249,243,200,138, 16,232,
- 11,178, 86, 9,164, 77, 87,140,195,229,110,142,142,199,104, 10,193,187,195,223,189,251, 21,196,204,185,219, 66, 25,116, 70, 50,
- 72,187,184,113,227, 70,251, 56,158,141, 85,167,160, 84, 42,247,239,223,143,138,120,152,175,218,236,230, 95,104,214,169,140,204,
-133, 6,170,186,133, 10, 62, 77, 14,220, 92,116,171,236,202,141, 51, 70,138, 36,140, 12,232,141,172,146,101, 2,125, 89,155, 36,
-206, 5,128,162, 48,158,186,186,186,200,200,200,178,178, 50,228,246, 33, 73,242,183, 9, 78,142,192, 77, 26, 64,255,187,103,229,
- 56,134, 97, 80, 21,148,232,232,104,115,197,118,238,220, 57, 0, 72, 72, 72, 64, 69,247,236,149,253,193, 48, 28, 0,116,218, 58,
- 77,107, 5, 77,235,205,101,183, 3, 20, 21, 21,197,197,197,101,102,102, 2,107,219,247,175, 84, 42, 63,249,228,147,233,211,167,
-143, 25, 51, 6, 0, 78,156, 56,177,109,219,182, 23, 94,120,193,140,253,237,162, 70,107,120, 98,247,233, 69,115,166,207,126, 98,
-150, 86,175,254,105,251,225,181,159,109,250,122,242,240,152,122,145,244, 59, 95, 19,152,235,128,206,156, 9,108,238,137,182,183,
-124, 47,161, 59,176, 0,242,221, 11,247,255,240,140, 25,240,255, 70, 9, 9, 9, 41, 41, 41,190,190,190, 54, 87,157,130,175,175,
-111, 74, 74, 10, 71,247, 22,171, 22,208,209, 94, 38, 12,206, 53, 26,234,105,250, 64,137,126,115,142,254, 96,101, 96,145,212,187,
- 82,101,170,104,101,218, 40,208, 82,172,204, 63,196, 30,101,163, 72,127,154,166, 41,138,242,247,247,247,240,240,136,140,140, 52,
-153, 76,104,139,197,116, 48,115, 89, 20,233, 79, 81,148, 78,167, 99, 89, 54, 34, 34,162,170,170,170, 71,143, 30, 36, 73, 26, 12,
- 6,163,209,136,206,204,227, 23,237,217,179,167, 92, 46,207,207,207,175,172,172, 68,101, 56,207,156, 57,163,209,104,122,246,236,
- 41,147,201,248, 95, 81,207,158, 61,113,198, 88, 85,144,219, 82, 89,200,208, 38,157,186,161,252,204, 46, 99,155,146, 95,150,187,
- 25,173, 86,203,141, 78,191,247,222,123, 87,174, 92, 57,119,238, 28, 42,218,174, 82,217,141,167,164, 40, 29,101,210, 40,220, 67,
-228, 10, 63, 52, 35,216, 92,246,243,207, 63, 71,178,204,157, 47,172,169,169,233,235,175,191,206,202,202,122,251,237,183,103,206,
-156,249,224,131, 15,162,174,192,142, 29, 59,150, 46, 93,218,175, 95, 63,158,199,108,106,106,250,230,155,111,230, 61,255,226,196,
- 45, 71, 94,121,242, 47,127,127,117,129,222,168, 41, 45,174,200,202,218,188,109,198,168, 9, 17, 65,194, 27,213,182,109,219, 68,
-114,231,247, 5,113,188,111, 62, 14,220,249,169, 32,172,171,167, 90, 47,119,178,189,111, 21,200,111,110,242,243,155,255,214,178,
-121,203,151,231, 45, 95,110,189, 44,196, 5, 36, 92,182,179,122, 3, 92, 48,143,112,243,191,185, 57,153, 27, 57,112,170, 3, 17,
- 21, 21, 53, 99,198,140,184,184, 56,155,171, 2, 17, 23, 23, 55, 99,198, 12,206,225, 99,177,106,227,248, 94,113,189,220, 9, 79,
- 12, 76, 44,123, 77,105,204, 46, 50,124,119,178,250,108,113,115,181, 14,154,244,116,177,134,173, 49,176, 17,177,113, 54,217, 16,
- 69,109, 26,141, 70,157, 78,215,163, 71,143,254,253,251, 3,128,159,159, 95, 82, 82, 18, 34,113,196,227,214, 36,142,200,221,100,
- 50, 25,141, 70, 12,195, 98, 99, 99, 91, 90, 90, 42, 42, 42,154,155,155,163,162,162,112, 28, 55, 26,141, 6,131, 1, 29,102,239,
-206,135, 15, 31, 30, 30, 30,126,229,202,149, 61,123,246,236,220,185,115,231,206,157,199,142, 29, 35, 8,226,190,251,238,227, 25,
-243,224,100,131,253,188,155, 74,126,189,177,255,203, 43,187,214, 93,219,149,117,235,212, 54, 25,206,240,203,146, 36, 25, 28, 28,
-236,229,229,117,225,194,133,202,202, 74,115, 53,128,108,249,236,236,108, 30, 70, 54, 26, 84,170,150, 34,137,196,221,199,175,183,
-187, 71,152, 68,226,142,250, 4, 0, 80,125,230, 63,135,190,254,123, 74,111, 13, 0, 48,104, 18, 24,123,123, 0, 96,215,174, 93,
- 10,133,162, 95,191,126, 81, 81, 81, 35, 71,142,228,186, 2,143, 63,254,120,116,116, 52,255, 99,238,222,189,203,203,203, 99,220,
-248, 17,131,135, 14,124,228,249,103,180, 24,213, 80,223,156,241,210, 59,171,134,197, 13, 13,114,194,182,216,182,109,219,251,239,
-191, 47,234, 0, 33,106,192,178,205,220,195,198,178,107, 62,250,164, 21, 43,204,185, 59,105,197,138, 78,151,229,108,237,191,254,
-244, 36,207, 1, 93, 61, 39,139,187,138,249,204, 0,126, 17, 79, 79,207, 73,147, 38,249,249,249, 89,175, 38, 37,241, 13,168,160,
-189, 73, 73, 73, 67,134, 12, 33, 73,146,219,104,190,106, 19, 97,241,125, 7, 92,201,143, 84,170, 26,105, 70,173,167,100, 44,203,
- 26,168,158, 30,164,146,162,170,218, 40, 0,152,222, 43,216, 61,170,175,198,150, 63,132,139,248, 28, 48, 96,192,160, 65,131,148,
- 74, 37, 10,220,244,244,244, 28, 57,114,228, 79, 63,253,132, 38, 4, 48, 12,131, 89,201,162,217, 94, 24,134,197,199,199,235,116,
-186,134,134, 6, 20, 66,170,215,235,227,227,227,235,235,235,145, 44, 77,211, 60,250, 50, 37, 37, 5,133,114, 94,184,112,129, 11,
-229, 28, 52,104,144,195,104,156,168,168,168,148,228, 73, 39, 79,158, 44, 45, 62, 83, 93,176,255,182,236,232,137, 14,101,189,188,
-188,134, 14, 29,122,226,196,137,147, 39, 79,134,133,133, 69, 69, 69,185,187,187, 47, 91,182,236,227,143, 63,142,140,140, 28, 54,
-108,216,234,213,171,237,213,136,103, 24,147, 74, 89, 4, 44,120,251,197,135,132,222,167,211, 53,106,212,183,254,253,193,199,255,
-124,107, 89,104, 56,124,183,208, 13,155,163,188,255, 73, 64, 26,147,155, 8, 92, 88, 88, 56,105,210,164, 49, 99,198, 68, 70, 70,
-106,181, 90,150,101, 63,253,244,211,185,115,231, 34,117,203,143, 27, 55, 10,103,207,122,104,222,188,153,253, 7, 36, 52,181,170,
- 52,170,198,180,191,191,243,206, 35,147, 38, 49, 90,167,216,127,237,218,181,241,241,241,159,124,242,201, 75, 47,189,244,240,195,
- 15,139, 68,111,238,240,177,201,251, 93,165, 0, 92,142, 32,154, 61,123,182,107, 51,129,237,193,124,162,150,107, 58,192, 89,246,
- 23, 46,203, 31,117,211,213,169, 29, 56,127, 17,119, 21,243, 57, 1, 14, 65,146,164,121,180, 15,183,202, 19, 2,196,237,181, 56,
-134, 95, 4, 33, 52, 58, 86,159, 52,150,202,219, 93,166, 2, 15, 76, 18,233,129, 87,209, 24, 33, 35,143,214,211,122, 6, 2,101,
- 68,236,176,113, 26,223, 40, 91,116,198,152, 76, 38,130, 32,162,163,163,135, 14, 29,170, 86,171,245,122, 61, 82, 0, 70,163,209,
-207,207,111,204,152, 49, 59,118,236, 64,238, 32,139,207,128,166,105, 52,109,184, 79,159, 62,200,123,163,215,235, 81,219, 70,253,
-134, 62,125,250, 52, 55, 55,107, 52, 26,254,134, 61,112,224, 64, 47, 47, 47,215, 38,115,185, 38,139,227,120,104,104,232,148, 41,
- 83, 74, 75, 75,175, 95,191, 94, 94, 94,238,233,233,233,227,227,147,146,146,242,223,255,254,215,222, 92, 92, 51, 47,144,182, 69,
-121, 67,175,111,246,241,141,247,240,140,240,244,234,217,214, 90,181,114,213, 23,143,206, 75,254,110,161, 91,251,139,101,205, 53,
-192,180,105,211,118,239,222, 93, 89, 89,217,220,220, 60,115,230,204,175,190,250, 42, 41, 41,169,119,239,222, 66,158,113,250,244,
-105, 63,253,180, 67,221,210, 84, 89, 93,179,240,133, 39,151,190,246,222, 35, 19, 71,141, 49,168, 65, 34,148,151,182,109,219,246,
-214, 91,111,161,110,104,108,108,236,251,239,191,255,234,171,175,138, 58,128, 95, 31,116,149, 2,232, 96, 4,145, 11, 44,143,208,
-216,248,197,242,188,159,109, 58,124, 28, 14,255, 54, 54,126,145,183,252,103, 11,131,221,220,141,195,195,227,141, 95, 52,230,253,
-188,220, 53,217,223, 11,127,196,172, 65, 81,163,238,191,104,160, 26, 14, 30,144, 80,186,139,173,108,110, 43, 37,197, 48,127,150,
-189,191,135,207,248,201,147,252, 18, 39,216,177,103, 25,154,166,163,162,162,146,146,146,116, 58,157,201,100,146, 74,165,136,196,
-145,241, 30, 24, 24, 56,122,244,232,189,123,247, 90,187,113, 24,134, 33, 73,114,208,160, 65, 24,134,105,181, 90,212,141,128,246,
-113, 5,147,201,196, 48,204,128, 1, 3, 78,159, 62,237,112, 24, 60, 42, 42,138,199,193,213, 21,178, 56,142,251,248,248, 12, 24,
- 48, 32, 44, 44, 76,169, 84, 54, 52, 52, 0, 64, 85, 85,213, 3, 15, 60,176,122,245,106,135,226, 52,109,104,211, 84, 25,141, 42,
-133,186,204,203, 39,214,205, 35,212,205, 35,116,223,129, 58,108, 82,112,187, 49, 7, 96, 22,255, 57,106,212, 40,169, 84,218,220,
-220, 60,109,218, 52,127,127,255, 39,159,124,242,240,225,195, 2,111,245,190,251, 70,201,100, 50,175,171,249, 47,188,240,183,240,
-248, 94,239, 47,250,219,198,207,190,250,148,208, 11,103,255,204,204, 76, 31, 31,159,234,234,106,133, 66,193, 48,140,187,187,251,
-138, 21, 43,150, 47, 95, 46,234, 0,206,231,179,243,219,119,156, 72, 5,209, 65,252, 46, 17, 68, 54, 73, 77,160,249,111, 45,107,
-110,191, 35,127,142, 61, 30,239,136, 44, 15, 23, 59,203,209,247,124, 38, 56, 28,199, 7, 79,154,226, 31, 26,222,112,237, 50,113,
-171, 36,206, 84,227,233, 31, 60,106, 64,239,126,137,253,117, 33,118,231, 7,177, 44, 27, 29, 29, 61,102,204, 24,228,172, 39, 8,
-194, 96, 48,160,116, 14,156,119, 40, 34, 34, 98,244,232,209,214,132,165, 80, 40, 6, 15, 30, 76,146,164,209,104, 68, 71,114, 65,
- 53, 92, 38, 56, 28,199,135, 12, 25,146,159,159,223, 61, 95, 26, 73,146, 65, 65, 65, 65, 65, 65, 9, 9, 9, 12,195,104,181, 90,
-131,193, 48,102,204,152,229,130,198,165, 88,147,177,213,100,212,232,116, 13, 50,153,175, 68,234,137,227,228,183,217,187, 30,159,
- 63,253,182, 22,188,243,104,212,177,248,240,195, 15,117, 58, 29, 0,196,199,199, 11, 47, 43, 61,116,104, 34, 49,124,248, 51,111,
- 33, 89, 54, 62, 62, 33,254,225,135,249,189,130,230, 88,181,106,149,200,242, 66,116,128, 77,246,135,123,184, 32,140,203,161,159,
-230,148,237,172, 9,223, 17, 89, 17,252,136,232,211, 47,162, 79, 63, 0,224,114,111,242,207, 11, 74, 77, 77,245,245,245, 69,161,
- 62, 12,195, 32,151, 14,234, 1,160,129, 95,148, 16, 52, 54, 54, 22,195,176,227,151,219,204,101,215,174, 93,155,147,147,131, 14,
-160,105,218, 94, 58,104,169, 84,234,208,169,210, 77, 52,168,135,135,135,135,135,135,147,230, 2, 82, 3,173, 56, 78, 2,224, 0,
- 12,146,181,231,243, 66, 41, 63,209,171,118,234,246,104,154, 89,188,120,177, 11,178,162,153, 47, 92, 7,216,219, 37, 22,133, 23,
- 33, 66,132, 21, 47, 0, 88, 38,123, 96,197,138, 96,247, 32,196,146,144, 34, 68,136,176, 50,254, 65,172, 0,249,167,128, 88, 18,
- 82,132, 8, 17, 34, 68, 5, 32, 66,132, 8, 17, 34, 68, 5, 32, 66,132, 8, 17, 34,238,121,136, 69,225, 69, 89, 81,214,177,108,
-122,122,250, 67, 15,167,255,188,205, 70,202, 13,241, 93,253,238,178, 43,218, 35,238,236, 5,185,138, 69,225, 29, 43, 0,176,147,
- 14, 76, 96,220, 88,183,146, 21, 40,254,123,221,115,247,129,203, 57, 39, 58, 55, 17,105,247,127, 75, 15, 61,156, 62,237,129,161,
- 40,141,222, 61, 63,241,226,143,133, 21, 43, 86,204,152, 17,203, 45, 47, 95,190, 92,124, 39,174,244, 0, 16,216,205,119,228, 96,
-194,230, 56,145,237,221,226,195,112, 42, 3,104, 71,100, 45,238,217,169,219,254,189,238, 25,161,185,161,168,161,161,166,174, 81,
-163, 82,153,188,189, 37,193, 1, 30,129,129, 61,252, 2, 5,165, 87, 59,127,234,179,146,226,194,226, 50,125, 69, 13, 27,209, 3,
-139,141,146,199,196,198, 15,189,239,249,187,175, 54, 80,110,209, 63, 10, 45, 30, 59,118, 44, 56, 56, 56, 50, 50,210, 97, 74, 78,
-115, 76,123, 96,104, 90, 90, 26,192,134,159,197,132, 99,221, 15, 70, 99,230,222,189,105, 83,166,108,152, 49, 99, 21,234, 13,136,
-106,192, 28,247,254, 68, 48,142,241, 49, 12,152, 31,124,187,255, 13,155,140,109, 21,229,151,140, 70, 83, 92,180,207,132, 49, 61,
-125,188,101,202, 22,125, 85,141,230,102, 73, 77,139,170, 49,162,231, 0,137,212,110,233, 87,101, 99,225,201, 35,159, 19,160,158,
- 59, 29, 70, 39, 66,108, 36, 20,149,177,199,207,233,118, 31,186,176,107,235,210, 81,227,159,243, 13,136, 23,120, 27, 46,219,254,
-230,130, 40,145, 92,119,214, 1,181,181,181,245,245,245,117,117,117, 41, 41, 41,223,126,251, 45, 0, 40, 20,138,199, 30,123,140,
- 63,129,157, 57,118,255,114, 30, 96,195,238, 95,206,139,108,210,221,204,127, 0,152, 53,107,235,222,189, 48,107,214,214,180,180,
- 98,212, 27, 16,187, 2,214,212,207,109,233,194, 84, 16,191, 23,216,205,190, 72, 7,252, 33,216, 31, 0, 42,203, 47, 5, 7,200,
-135, 15,137,198, 48,192, 48,140, 97, 88, 47, 15,153,123,172, 52, 42,194,251,234,141,198,202,242, 75,209,113, 35,237,201,158, 60,
-242,249,216, 68,245,162,191, 2, 65, 0,134,129,137, 2,119, 55,232, 19, 7, 35, 7,195,206, 67,234,147, 71, 62,159, 62,235,223,
- 93,234, 2,178, 89, 84,178,219,150,124,184,118,237,218,249,243,231, 37, 18,137,249, 70,157, 78,247,197, 23, 95,148,148,148,204,
-155, 55, 79,200, 73,126,222,150, 5,144,254,243, 54,231, 94, 20, 87, 39, 25,165,189,179, 88,229,249, 69,192, 44, 99, 32,207,170,
- 93,123,136,101, 3,154,154, 98,202,202,252,171,170, 42,131,130,202, 99, 98, 84, 65, 65,172,224,140,188,103,207,158, 21,146,167,
-143, 71,132,127,181,179,100, 57,231, 79, 90,218,222, 25, 51, 98,209,127,180,107,198,140, 88, 81, 7,216,180,250, 81,106, 32,110,
-203, 61, 21, 5,132,253, 65,238,179,185,161,200,100, 50, 37, 13,237,193,109,193,113, 76, 42, 37, 20,114, 82, 34,193, 99,163,125,
-141, 70, 83,115, 67,145, 61,207, 15, 1,234,197,207,128,222, 0,165, 21,160, 84, 65,139, 26, 54,109,135,151,222,130,101, 31,192,
-168,161,128,179,234,243,167, 62, 19, 27, 61,194,197,139, 23,127,253,245, 87, 11,246,231,112,232,208,161, 43, 87,174,240,112,241,
-209,163, 71, 57,182, 69,236,143,150,143, 30, 61, 42, 68,225,229,181,195,230,170, 64,253,202,191,106,147,253, 99,174, 95, 31,155,
-155, 27, 81, 88, 36, 85,171,123, 20, 94,239,191,115, 71,224,133, 11, 32,184,166,119, 94, 94,222,217,179,103,235,235,235,133,191,
-103, 36,194,179,202, 47,107, 78,247, 60,171,246,128,120, 31,253, 55,206,136, 19,155,189, 57,245,243,231,122,232, 46, 61,128, 78,
-177, 31,217,206,184,174,107,174, 12,174,210,150, 16, 31, 75, 67, 99, 77, 66,172, 31,226,125,139, 93,114, 25,217,162, 50,196,199,
-250, 21,150,212,216, 28, 12, 40, 41, 46,156, 59, 29, 0, 96,207, 81,248,207, 55, 48,121, 44, 76,155, 0,215,139,160,224, 10,171,
-144, 99, 67,250,193,148,241,240,227,222,194,161,247,117,149, 11,200,230, 43,234,158,230,127,109,109,237,165, 75,151,236,177, 63,
-167, 3,236,213, 72,153, 63,127,126,118,118, 54, 42,114,203, 61,239,209,163, 71,179,179,179,209,222,187,243, 45,240,175, 90,195,
-171,174, 46,250,204, 25, 35,142, 75, 48,160, 24,150, 49,209, 12, 69, 5, 30, 59,170, 10, 8, 48,132, 11,141, 36,201,203,203,187,
-124,249,242,144, 33, 67, 6, 15, 30, 44, 92,196,188,115, 99,177, 42,176, 27,225, 44,251, 91,211,253, 94,179,126,128, 8,135,176,
- 84, 0,214,195,167, 2, 73,205, 30,153, 10,145,237, 10,223,177,192, 48, 21,155, 3,200, 2,101, 45, 14, 19, 62, 22, 93,215,160,
-185,127,116, 79,150,133, 99,167, 42,180, 58, 19, 0, 12, 29, 20, 18,232,175,168,168,106, 45, 42, 85,146, 36,222, 43,198,247,196,
-153,182,132, 62, 54,100,139,203,244,163, 19,193, 96,130, 95,142,192,161, 83,108,104, 48, 22,211, 19, 38,141,129,222,177, 24, 73,
-128,132,132,145,131,225,223, 89,122,126,135,143,195, 5, 30,171,129,243,248, 91,248, 37,186,225, 0, 64, 89, 89, 25, 63,251,163,
- 99,236,237, 26, 55,110,220,184,113,227, 16,227, 35,210,231, 20, 3, 87,208,184,211,209, 65,243, 31, 0,124,174, 93, 55,154, 76,
- 56,142,179, 4,193, 48,140, 9, 37,180,163, 25,217,197,139,194, 21, 0, 0,104,181,218, 19, 39, 78,152, 76,166,176,176,176,208,
-208,208,174,214, 1,174,217,254,123,211,246, 78,217, 48,101,214, 86, 72,219,187,119,202,134, 41,123,211,246, 34,173, 32,221, 81,
- 36,146,187, 5,108,214,133,119, 28, 5, 36, 60, 46,200,218, 42, 20,104, 39,218,212, 19,194, 21,143,205, 59,231, 41,158,110,143,
-166,185, 1,100,129,178, 54, 15, 67,103,195, 0,152,205,118, 71, 35, 84, 42,147,183,183, 12, 0, 42,170,213, 58, 29, 5, 0,113,
- 49,190,129,254,138, 11, 87,234,111,220,108,150,203,137,216,104, 31,165,202,118,162,249,138, 26, 54, 54, 18, 48,128,169,227, 96,
-112, 95, 76, 38, 5,138,130,201, 99,193,199, 19, 74,202, 97,202, 56,136, 12,135,138,154,174, 77,227,194,241,190, 64,151,244,239,
- 5,155, 78, 12,103,111, 21,113, 61,167, 0,186,148,253, 57,216, 43,221,206, 83,210,157,131,164,184,200, 96, 50, 98, 4, 73,179,
- 44, 6, 64,209,140,137, 98, 88,154,198,110,222, 0,152,230,236,157, 92,190,124,185,182,182,214,221,221,221,219,219, 91,184, 14,
- 16,232,252,233, 32,251, 47, 95,190,124,197,138, 21,179,182,254,166, 12, 0, 96,202,134, 41,210, 29, 69, 59,118, 20,163, 1, 0,
- 52, 74, 60,112,220, 83, 34,251, 91,179,127, 55,114, 1,217, 36, 83,129, 68,236, 84,172,170,237, 51,116, 82,236, 16, 54, 71, 41,
-228, 84,222,222, 18,101,139, 62,192,207, 45,117,102,111,138,102,100, 50,130,192,113,150,101, 31,156, 28, 59, 61, 37, 22,195,160,
- 73,169,243,246,182,109,186, 70,244,192,138,111,177,189, 99, 97,226,125,192, 2, 92, 47,130,129,189,193,215, 11, 30,152, 0, 12,
- 3, 36, 1,133,165, 16,209, 3,227,127,201, 14, 23,132, 79, 36,233,136,223,172,171, 97, 93,233,101,243,230,205,119, 24, 13, 44,
- 59,119,238, 92,225, 58,224,174,177,191, 11,186,129, 67,115,120,152,244,250, 13, 86, 2, 82,134,197, 48, 48,209,148,145,165,181,
- 20,165,139,235,237,194,205,244,239,223, 63, 44, 44, 76, 32,251, 3, 64, 82, 82,210,240,225,195, 57,250,182, 88,181, 7,212, 75,
-224, 14,179, 88,117,136,180,189,183,169, 31, 0,204,109,127, 52, 74,188, 99, 71,177,200,254, 54,217, 31,238,141, 40, 32,135, 61,
- 15,135, 96, 89,192,231, 42, 59,174, 3, 80, 48, 18, 62, 71,201, 99,254, 3, 64,112,128, 71, 69, 85,107,128,159,219,234,117,103,
-199,141,138, 24, 58, 48, 24,147, 96, 40, 28, 8, 69,106, 84, 84,181, 6, 7,120,216,148,141,141,146,159,200,215,245,142,133,128,
- 68,120,109, 1, 44,124, 26,188, 61, 65, 66,194, 63, 63,134,183, 22, 2, 0,156,200,135,216, 40,185,192, 27,238,224, 68,176,110,
- 62, 21,192,221,221,157,191, 98, 23, 69, 81,221,173, 49,115,236,207,163, 6,248,117,128,186,111, 63,217,197,139, 12,203,186,227,
- 36, 65, 96, 20, 75,107, 77,166, 86,163,209, 52,104,144, 83,119,226,230,230,230,212, 24, 0, 71,247,246, 86,187, 66, 7, 44, 95,
-190, 60,109,197, 10, 11,246,231,204,127, 17,252,236, 15, 98, 58,232,223,172,197, 78,138, 31,189,173, 3,120,213, 73, 96, 96,143,
-162,210,234, 65,253,130, 94, 91, 56,114,227,119,151, 20,114,114,112,255, 32,174,156, 50,195,176, 69,165,202,224, 32,219, 94,215,
-152,216,248, 93, 7, 47, 60, 61, 11,216, 18, 24,249, 23,136,137,128,236,159,219,247, 45, 4,154,134, 93, 7, 33, 38, 54,190,235,
- 94,148,205,254, 89,247, 12, 3,141,137,137, 57,123,246, 44, 79,141, 17,129,229,121, 57, 23, 80,118,118,118, 87,247, 0, 50, 51,
- 51, 17,245,219,115, 1,217,219,245,155, 86, 11, 15,111, 26, 59,142, 62,116,216, 40,149,120,176,164,158, 97, 84, 70, 99,235,196,
- 73,108,207,158,130, 59,196,216,240,225,195,133,187,254, 57, 17,142,238, 45, 86,157,210, 1,246, 98,103,121, 96,193,254,156,231,
- 71, 28, 13,230,103,127, 81, 1,116, 50,110, 15, 0, 56,242, 2,249, 5,198,181,168, 26,207,228, 87,143, 72, 12,125, 32, 57,102,
-207,129,146, 93,251,138, 1,224,141, 37,163, 24,134, 61,147, 95, 45,147, 73,237,205, 7, 30,122,223,243,187,182, 46, 93,243, 63,
-245,226,103, 96,253,187,240,210, 91,144, 60, 26, 90,212,176,230, 31, 64,211,176,230,127, 64,131,151,240,249,192,206,218,236,246,
-122, 12,221, 51, 10, 40, 54, 54,246,210,165, 75,246, 58, 1, 20, 69, 37, 38, 38, 10, 57, 15, 10, 6, 69, 65, 65, 71,143, 30, 21,
-174, 3, 44, 38,154, 9,156,119,198,233, 0,123,123, 29,200,227,184,113,196,136,198,208, 80,205,197,139, 30,229,229,250,232,232,
-182,126,253,232,136, 8, 16, 92,108,203, 53,238, 54, 23,177, 88,229,127,112,243,189, 22,215,117,246, 54, 16,204,121, 31,245, 6,
-156,117,105,222, 99,224,137,233, 16, 21,128,141,232,157,187,112,170,136,158, 3, 42,202, 47,109,221,121, 35, 46,218,119,250,228,
- 88, 95, 31,185,178, 69, 95,112,169,174,168, 84, 41,147, 73, 35,122, 14,224,145, 29, 53,254,185, 99, 71, 62, 63,153,175,158, 62,
- 17, 62,255, 23,196, 70, 66,241, 45,248, 98, 51,236, 58, 8, 52,120,141, 26,255, 92,199, 9,221, 5,246,239,158,227,192, 35, 71,
-142, 60,114,228, 8,102, 53, 7,138,162,168,184,184,184,216, 88,199, 22, 34,138, 2,226,188,255,168, 43, 32, 80, 7,184, 76,103,
-246, 88,222, 49,251,183,235, 0, 38, 50, 82, 27, 25,169,117,233,165,185, 64,187,252, 79,202,127,194,142,200,242,179,191,113, 70,
- 28,252,233, 7, 0,192,214,124, 96, 78, 37, 56, 14, 3, 21, 62,196, 42, 36, 12, 84,184,172,112,241,142, 92,215,230,211,185,118,
- 93,167,198,162, 37, 82,247,152,184,145,205, 13, 69, 37,101, 53,167,206, 85,114,185,128,130,131, 66, 29,230, 2,242, 13,136,159,
- 62,235,223,231, 79,125,246,195,174,194,247,254,115, 87,115, 1,253,177,216, 31, 0, 66, 66, 66,230,206,157,123,227,198,141,115,
-231,206, 17, 4,129,227, 56, 69, 81, 82,169, 52, 49, 49, 49, 33, 33,193, 89,246,119, 65, 7,136,232,106, 44, 95,190,124, 69,218,
-138, 41, 27,166,216,156, 19, 32, 14, 6,240,131,236,136, 67,160, 75,101, 5,158,176, 91,221,179,179,240, 11,140,243, 11,140, 75,
-112, 73,118,232,125,207, 11,156,237,213, 89, 79,113,215,230,112,116, 58, 18, 18, 18,132,208,189, 53,172,185,126,220,184,113,104,
- 90,128,168, 0,186,149, 14,128, 91, 54,182, 15, 91, 62,236, 79,254,102, 28,150,124, 23,139,194,139, 16, 33, 66,196,159, 20, 98,
- 69, 48, 17, 34, 68,136, 16, 21,128, 8, 17, 34, 68,136, 16, 21,128, 8, 17, 34, 68,136, 16, 21,128, 8, 17, 34, 68,136,184, 55,
- 33, 22,133,239, 28, 89,158,180,104, 93, 42, 91, 82, 82, 82, 82, 82,146,147,147,227,130,108,105,105,105,113,113,177,107,178, 98,
-219, 16,101, 69,217, 63,138,172, 32, 5, 96,143,149,172,225, 48,242,175, 35,178,157,142,180, 84, 21, 72,165, 27,178, 21, 60,199,
-148,148,148,240,204,189,228,191,103, 78,246,195, 15, 63, 92,178,100,137, 83,213,210, 57,217,203,255,241,234,255,130,218,133, 74,
-235, 3,253, 63,101, 27,105, 0,216,176, 97, 67, 90, 90,154, 83,111, 38, 41,225,123, 74,173, 86, 40, 20, 57, 57, 57,169,169,169,
- 93,247, 19, 8,156, 87, 97,243,121,127, 47, 89,123,103,187, 59, 13, 24,195, 48, 28,199,113, 28, 71, 83,216,140, 70, 35, 65, 16,
- 12,195,176, 44, 11, 34, 68,116, 69, 15,192,162,173,219,108,106,152,163,170,114,232, 35,113, 77, 86,136, 69,236, 50,246,239,223,
- 15,242, 62, 60, 44,156,153,153, 25, 20, 20,100,177,107,201,146, 37,252,167, 69,178,136,250, 79,159, 62,141,212,128, 83,178,204,
-213,255,195,251,190,253,245, 65, 35, 0, 48, 87,255, 15,237,194,251,190,237,240,137,188,212, 47, 51, 44,124,191,199, 8, 0, 15,
-140,151,244,139,187,178, 97,195, 6, 0, 16,162, 6,252,123,230, 53,220,172, 61,118, 53,178,205,224,254,192,148,150,176, 16,236,
-220,185,147,106,181,126,226,196,137, 93,212,206,186,212,104,224,145,117,200,152,194,155,165,179, 40, 41, 41,121,255,253,247,151,
- 46, 93, 42,100,190,177, 57, 8,130, 32, 73,146, 36, 73, 52,115,109,213,170, 85, 75,151, 46,165,105,154,162, 40,138,162,104,154,
-238,162, 27,222,181,107, 23,255,203,153, 54,205,113, 54,233,221,187,119, 59,117,188,136,187, 6, 52, 31,216,113, 58,104, 30,246,
- 79, 76, 76,204,207,207,119,248, 17,218,252,168,120,100, 45,206,147,153,153,137,220, 26, 46, 39,152, 76,155,177, 1, 20,241, 27,
- 54, 79, 0,128, 13, 57,222,251,247,239,119,200,224,214,185,227,151, 44, 89,194,159,149,133,147, 5,128,212,212,212,145, 35, 71,
-142, 28, 57,210, 41, 89,196,248,232,255,202,246,217,218,120,223,183, 95,157, 37,127,127,171,158,231, 1,189,117, 75,250,199, 19,
-255,223,222,181,199, 53,113,165,237,119,114,129,112,179,136,162,136, 21, 5, 1,139,226, 13,187,216,213,109,189, 20,202,170, 68,
-177, 72,119,187,237,238,226,165, 9,221,126,252,218, 21, 10,172,124,126,107,187,165, 18,170,214,150,221,175,146,182,138,237,182,
-187, 45, 82,131,176,181,172, 88,215,109,171,184, 22,250,121,193, 86,133,180, 94, 64, 64, 80, 2,228, 66, 52,140,254, 99, 0, 0,
- 23,234, 73, 68, 65, 84, 50,153,243,253,113,116, 58,102,146,201,100,194,165,151,121,254,200,111,114,146, 51, 51,153,204, 60,207,
-251,190,231, 61,231, 53,154,209,198, 95, 43,234,155, 72,179, 17,153,172,176,100, 78, 83,211, 5,187, 91, 87, 64,127,229,229,198,
-147, 1, 65,163,136,176, 9,227, 67,199, 71, 95,106,177, 78,153,110,147, 43, 58,235,246,119,237,223,191,127,245,234,213,226,163,
- 50, 40,208,104, 52, 74,165,178,164,164,196,225, 30, 78, 72, 72,120,238,185,231,148, 74,165,115,139, 76, 38,243,185,141, 43, 87,
-174,196,196,196, 72,165,210,160,160,160,230,230,230,192,192,192,147, 39, 79, 30, 63,126,252,169,167,158,114,121,231,171, 84, 76,
-217,163,159, 68,220, 66, 16, 4,182, 18,156,226,192,129, 3,236, 46,116, 11, 66,136, 15,161, 87, 85, 85,121,244,253, 65, 65,123,
-123,123, 88, 88,152,120,203,113,240, 62, 95, 15,128,155,253,185,143,196,177, 80, 9,247, 18,231, 14,236, 95, 92, 92, 92, 80, 80,
- 64,183,240,215, 0,213, 60, 45,140,137,213,254,115, 49,109,245, 39, 39, 39, 3, 0,126,101,199,197,152, 12,238,148,253,217, 62,
- 1,251, 71,209,150,126, 69, 69, 5,243, 82,240,233,235,212,210,207, 75,119,179, 68,229, 88,243,198,152,201, 82, 63, 95, 98,114,
-184,180,235, 38,101, 35,165,221, 61,200,208,143,154,175, 82, 32,129,177,254,167,245,122,125, 84, 84,148,211,190, 20,170,136,155,
- 26,117,188,189, 35, 50, 34, 52,126, 86,148,212, 55,100,114,228,205,155,102, 75,103,187,253,106,135,197, 95,166,215,235,103,187,
-234, 59,116, 17, 33,254,127,177,176,190,108,139,100,168, 99, 41,122,189,158, 32,136,233,211,167, 87, 87, 87, 51,255,142,121,243,
-230,113,176, 63, 0,200,229,114,133, 66,209,213,213, 21, 27, 27, 59,119,238, 92,153, 76,246,234,171,175,218,237,246,153, 51,103,
-126,240,193, 7, 39, 79,158, 60,125,250,180, 84, 42,117,229, 7,172, 90,181, 10,255, 94, 87, 79, 49, 7, 41, 87, 85, 85,225, 43,
-227,212,128, 67, 8,117,116,116,240, 17, 0,143,190,143,233,251,200,145, 35, 78, 63, 90,178,100, 9, 31,102, 63,114,228, 72,120,
-120,248,180,105,211, 68, 25,240, 42, 4,132,159, 46, 87,246,251,240,156,144, 94,175, 47, 40, 40,224, 41, 24, 46,163, 61,160, 58,
-116,232, 80,133, 54, 17,124,204, 28,209,127, 7, 6,119, 16, 51,110, 6,199,160,197,163,190,190,158,105,254,243,233,251,238,179,
-129,236,167,244,177,109, 70,238, 94, 20, 69,249,250, 19, 18, 9,248,251, 65, 79, 47, 53,128, 80,128, 31, 97,161,192, 60,128,238,
- 14,149, 80, 36, 92,188, 98,175,171,171,115,234, 4,244, 26,234,131,131, 3,124,124,208, 19,153,243,237,118,212,222,105,189,220,
-218, 3,242, 43,126,163, 7,174,117,126, 35,241, 49,156, 59,215,211,218, 81,231,233, 88,130,151, 17, 33,102,101, 49, 62, 96,174,
-184,199,174,223,233, 10, 55,110, 36,209,219, 33, 33,117,174, 40,210,173,222, 48, 91, 56,180, 71,163,209,164,166,166, 98,222,111,
-106,106,194, 27,216,246, 79, 77, 77,229, 56,162,175,175,175,209,104,140,139,139, 91,178,100, 73, 78, 78,206,250,245,235, 1,192,
-102,179,149,151,151, 55, 52, 52, 52, 54, 54,190,247,222,123,102,179,153, 93,235, 6, 99,197,138, 21,130,255,148, 55,223,124,147,
- 91, 68,249, 88,244,244, 78,120,126, 31, 0,194,194,194,194,195,195,219,218,218, 28,218,195,195,195,249, 19,122, 91, 91, 91, 91,
- 91,155, 40, 3,108,208, 49, 31,167,174,128,140,143, 21,239, 13, 29,123, 10,166, 29,205,203,234,215,170, 97, 2,104,149,101, 0,
-160,109, 80,209,209,158,228,228,100, 0, 3,211, 15,224,102,240,206,206, 78,154,181,121, 50, 56, 55,176,174,168,213,106, 87,139,
-109,112, 16, 16,142,255,176,251, 34,132,186,206,109,156, 16, 43, 53,154,111,245, 53,219,145,197, 10, 54, 51, 2, 0, 27,137,144,
- 4, 1,192,153,211, 13,122,189, 30,192,199, 97,183, 6, 67,147,220,119,244,216,144,224,158, 27,166, 30, 67, 79,253,231,237,173,
- 29,200, 39,192, 52, 49,186,223,108,234,138,153,101,155, 18, 55,240,222,235, 13,205,205,205, 0, 10,241,201,241,210,252, 39, 8,
-162,186,186, 58, 53, 53,181,166,166,102,198,140, 25, 25, 25, 25,110,217, 31, 11,192,245,235,215,253,253,253, 31,120,224,129,109,
-219,182,201,229,114,181, 90,189,119,239,222,134,134,134,250,250,250,195,135, 15,159, 57,115,102,236,216,177, 28,165,108, 84, 42,
-149,171, 16,208,235,175,191,206,113,232, 65, 9, 1, 29, 56,112, 64, 64, 8,104,218,180,105,108, 1, 16,176,124,147, 40, 3, 94,
-121, 0, 35, 14,118, 93, 17,158,193,129, 67,135, 14, 85, 20,124, 13, 82, 31,213, 67, 83, 32,120,138,246,125, 0,119,209,255, 65,
- 9, 98,224,129, 95,218,246,103, 2,143, 10,176,221, 11,158, 22,235, 59,185, 1,108,111, 32,168, 55,231, 27, 43,106,239,162, 0,
- 36,129,254,136, 32, 8, 27,137, 44, 3, 96,177,130,101, 0,172, 54,176,152,193, 58,112,219, 2,189, 83, 60, 2,201,141,173,151,
- 35, 38, 69, 6, 34,185,172,203,108, 62,114,244,202,185,230,214, 27, 55,250,103,204,179, 27, 45,164,101,192,110, 54, 81,237,151,
-193,108,132,151, 94,122, 73, 92, 33,202,169,167,194,243,134,196,230,255,244,233,211,163,162,162,244,122,125, 77, 77, 13,118, 2,
-220,178, 63, 14, 1,205,153, 51, 71,161, 80,236,221,187,119,221,186,117, 91,183,110, 69, 8,157, 56,113,226,232,209,163,167, 79,
-159, 54, 24, 12, 49, 49, 49,189,189,189, 28, 85,110,210,210,210,216,182, 5,246,120,184,253,131,145, 10, 1, 57,117, 2, 60, 50,
-255, 69, 25,248,126, 11, 0, 14,253, 99, 55,153,169, 1,244,195,134,131,245,252, 35,197,152,247,147,147,147, 43,180,137,224,227,
-163,125,103,240,207, 25,103,254, 36, 37, 37,213,213,213,185,114,101, 92,121, 51, 78,201,157, 79, 44,232,183,127, 48,134,143,151,
-252, 74,233, 99, 25,128,187,130, 8, 9,129, 0,192, 6,200, 98, 2,163, 21, 25,205,200,104, 65, 20,114, 94,249,227,183, 79, 27,
-103,206,214,135,221,115,227,208,193,206, 27, 55, 44,115,126,218, 59, 43,164, 31,228, 3, 22, 19,213,217,138,140, 70,130, 36,137,
-144,177, 4, 16,148,248, 84, 12, 10,240,253,204, 28, 80,169,169,169, 97, 82,179,211,145, 0,137, 68,146,151,151, 39,147,201,222,
-122,235,173, 61,123,246,172, 93,187,182,184,184,152, 32,136,111,190,249,198,108, 54,231,231,231,147, 36,153,149,149,197,145,188,
- 36,120,232,117,164, 66, 64, 78,157, 0, 97,171,183,138,248,190,122, 0,204,176, 53,155,232, 93,145, 44, 19,218, 6,213,109,234,
-191, 88,241,234,215,224, 23,171,125,255, 91, 61,224,136, 2,121, 19,225,169,171,171,163,205,127,236, 13,208,219, 25, 25, 25,120,
-142, 21,123,240,217, 45,251,227, 44, 32,118, 95,210, 14, 70, 19, 26,176, 34, 67, 63, 26,176, 34,153,239,173, 70,139, 9,204, 54,
-212,125, 3, 93,191,137, 26,207,145, 20, 5,249,249,249, 77,173,119,236,147, 36,161,237,138,245, 74,203,205, 79,143,223, 68,136,
- 56,247, 21,149,250, 43,210, 71,134,174,119,192,167,255,132,222, 94,132, 40,248,217, 82, 66,161,128,101,203, 86,113,103, 26,234,
-202,213,105,153, 94,101,232,122, 83, 65,204,163,186, 11, 52, 66, 66,234,134,237,102,118,184,129,203,202,202, 18, 18, 18, 26, 27,
- 27,171,171,171,153,237,174,134,130,183,111,223, 30, 28, 28,140,141,232,221,187,119,175, 91,183,110,207,158, 61, 88, 57,182,111,
-223,222,211,211,211,219,219,107, 50,113,213,122,121,226,137, 39,152,161, 27,108,254,115,199,127, 70, 54, 4,228,224, 4,120, 99,
-254,227,238,162,237,255, 61, 19,128,134,134, 6, 87,185, 43,122,189,222, 77,254,168,111, 64,197,148,127, 3,217, 0,145, 1,170,
-162, 72,237,191, 82, 1,180,183,197, 32,153,127, 20,136,153, 9,202,206, 10,101, 63,225,106,181, 26,179, 63,115, 4, 24,219,254,
-248,173, 83, 15,128,238, 43,140, 89, 46, 94,188,120,249,236,171, 84, 40, 37,145,129, 92, 66, 0,128,141, 66, 36, 9,125,125,200,
-106, 3,210, 6,164, 29,126,191, 49, 63, 42, 42,170,169,245, 42,187,239,165, 11,175,204,152, 65,125,114,212, 78, 72,224,122, 59,
-161,240,131,163, 31,129,213, 76, 16, 8,102, 37,200,219, 46, 83,139, 22,173, 88,190,124, 57,199, 76, 66, 93,185,186,228, 41,200,
-251,139,112, 13,240,166,128,176,176,190,174,194, 26,195, 3,156,249,147,154,154,138,255,122,236,206,230,229,229, 57,253, 50, 69,
- 81, 95,124,241,197,253,247,223, 79,183,236,222,189, 27,115,177,205,102,179,219,237, 23, 47, 94, 12, 13, 13,117, 53, 8, 76, 71,
-129, 4,216,239, 35, 24, 2,114,112, 2, 4,155,255, 34,245, 15,173, 0, 52, 52, 52, 12,197, 76, 72,108, 44,107, 52,154,140,140,
-140,164,164, 36, 7,219, 31,211, 40,255,169,170,116, 22, 16,126,203,199,246,103,142, 0, 99,224,183, 56, 25,148,187, 47,205,254,
- 14,227, 1,124,250,186, 66, 73,165,197, 85,223,152,152,152, 61,111,216, 30,188, 79, 78, 1,216,172,148,175, 15, 1, 0,125, 70,
- 52, 96, 67,164, 29, 26,206,218,237, 20,114,149,199, 25, 19, 19,243,246, 94,114,209, 98,233,234,199,164,253,125,168,207, 0,198,
- 62, 34, 50, 6,217,109,132, 76,162,232,185, 65,181, 93,181,230,254, 62,149,219,246,223,249, 52,196, 70, 64,233, 70,200,222,225,
-149, 6, 8,246, 9,132,245,245, 62,239, 83,216,157, 63,111,222,188, 45, 91,182, 48,141,253,146,146, 18,165, 82,233,106,118,152,
-213,106,157, 54,109,154,197, 98,145, 74,165,254,254,254, 0, 80, 89, 89,153,158,158,110, 54,155, 45, 22,203,192,192, 64, 96, 96,
-160,221,110,231,254, 57,194,114,129, 70, 54, 4, 68, 59, 1,120, 67,164,254,239,156, 0,120,201,254, 28,221,147,146,146, 48,203,
-227,184, 57,157,114,202, 52,252, 29,132,225, 14, 72, 9,240,145,128,159, 20, 2,101, 48,208, 87,177, 85, 14,126,255, 81,173,137,
- 4,191, 16,237,219,188, 12,127,167, 57, 63,152,193,185,147,226,153,236,207, 28, 15,224,211,151,155,253, 57,250,190,168,217,181,
-241,233, 44,133, 2, 40, 10,102, 78,147,222,186, 86,103,236, 54, 59,178, 83,210,220,220, 92,142,157, 63,255,194,174,220,220, 44,
-146, 4,171, 13,217, 73,144, 16,176,120, 5,244,245, 16, 95,157, 50,155, 45,146,149,202,135,185,217,127,203,122,136,190, 27, 0,
- 96,234, 68,240,210, 15,248, 49,128, 61,231, 75,173, 86,167,166,166,114,140, 6, 91,173, 86,179,217,172,215,235,103,207,158, 77,
-146,164, 92, 46,175,170,170, 74, 78, 78,182, 88, 44, 38,147,233,226,197,139,163, 71,143,230, 72, 3,165, 65, 7, 84,249, 4,127,
-190, 11, 33, 32,218, 9, 16,112,157,121, 78, 23, 16, 33, 92, 0,134,200,246,119,234,218,179, 3, 62,130, 15,237, 54,250,239, 13,
-251,195,157, 35,189,180,134, 1, 0,159,190,174, 70, 2,248,244,221,241,202, 46,181, 90, 45,145,192,167, 13, 36, 69,221, 26,245,
-165, 40,200,207,207,117,219,119,219,182, 93, 89, 79,170, 1,128,144, 0, 69,193,127,254, 13,198,126, 10, 81,176,114,229,138,148,
-148, 20, 14,246,207,127, 28,130, 3,161,173, 11,252,124,129, 66, 16,160,128, 34, 53, 20,150,253,192, 53,192,149,123,193,231,158,
-116, 96,255,172,172, 44, 76,253,213,213,213, 4, 65, 56,149, 1,171,213, 42,145, 72,194,195,195,251,250,250, 62,255,252,243,185,
-115,231,146, 36,105, 48, 24, 78,157, 58, 21, 25, 25, 57,102,204, 24,179,217, 76,146,164, 91,135, 6,207, 8,243,200, 33, 24,241,
- 16,144, 48,219, 95,112, 47, 17, 78, 4,192, 85,202, 63,207,236, 55,111, 60,232,178,178, 50,246,162,108,110,217, 80,171, 42, 59,
-116,232, 16, 92, 0,184,192,108, 54, 0, 24, 0,190, 22,124,206,124, 88,152,254, 69,106,181, 26,207, 39,200,201,201,241,180,148,
-177, 90,173,126, 39, 55, 0,235,129,167, 21,122,233,203,133, 71,125,249, 59, 28,187, 94,251,182,111,127, 47,172, 88,177, 98,229,
-202,149,238,175,213, 95, 7,159, 70,135,186,239, 8,134,254,225,206, 97, 94,189, 94,143, 16,170,169,169, 97,127,228, 32, 0, 8,
- 33,138,162,172, 86,107, 68, 68, 68, 79, 79,207,230,205,155, 13, 6,195,196,137, 19,251,251,251,173, 86, 43, 30, 9,112,123,104,
- 1, 81,160,246,246,118,239,127,242,160,236, 68,196,200, 8,192,136, 23, 73,143,138,138, 18,176, 31,193, 25, 62,131,232,211,184,
- 93,250, 77,128, 43,192,231,114, 57,221,246,180, 47, 31,246,247,198,204, 31,169,251,106, 80,254, 95, 97, 59,161,151,243,164, 87,
-244,140,139,139,219,189,123, 55, 69, 81,220,139,122, 98,235,158,162, 40,155,205,134, 23,131, 3, 0,138,162,134, 97, 49, 56, 17,
- 63,108, 56,157,220, 35, 22,133, 23, 33, 66,132,136, 31, 41,196,138, 96, 34, 68,136, 16, 33, 10,128, 8, 17, 34, 68,136, 16, 5,
- 64,132, 8, 17, 34, 68,136, 2, 32, 66,132, 8, 17, 34,126,152,112, 82, 20,158,185, 36, 3,179, 30, 11,179,253, 7, 92,100,153,
-153,138, 74,255,118,177, 32,245,247,235, 90,121,212,145,251,184, 69, 69, 69,120,163,176,176,240,199,246,255, 14,250,165, 22,159,
-163, 17,233,203, 75, 0,188, 4, 94,209,147,223,119,125,216,125,233,109,135,213, 64,121,214,223,240, 18,116, 89, 96, 76,103,116,
-253,188, 97, 80,224, 11, 23, 46,208, 53, 9, 54,110,220,248,221, 95, 4,209,225, 90,125,249,229,151, 0, 16, 23, 23, 55,164, 7,
- 85,171,213,171,210,212, 85,186, 50,135,219,224,195,131,141, 85,186, 50,167, 55,198,135, 7, 27,157,238,106,249,178, 4,254,199,
- 45, 42, 42, 82, 42,167,210,219,174, 52,192, 21,250,250,251,244,109,122, 19, 50, 1, 1, 62,148, 60, 34,116,114,232,152, 80,183,
-189,142, 29, 59,198,124,187, 96,193, 2,209, 80, 21, 49,228, 30,128,247,224, 89, 68,165,169,181,135,221,232,192,185,204,233,136,
-220,116,204,115,150, 16,135,120,224, 61, 96, 70, 99, 39,104,227, 79,157, 38,203, 50, 15, 61, 49,114, 18, 0,116, 88, 44,164,121,
- 0, 0,160,167, 23, 0,216, 75, 27,177,193, 44, 72,185, 99,199, 14, 62, 5,208, 37, 4, 80, 8,240, 43,128,243,141,215,118, 13,
-137, 88, 50,175, 21,166,126,254,215, 74,176,126, 99,246, 95,190, 44, 1, 64, 93,165, 43,227,191, 43, 44, 24, 44, 1,240,236, 52,
-172,214,252,218, 90, 85, 74,138, 86,169,212, 96,111,128,167, 12,124,218,244,233,228,185,147,214,167,103,142,246, 31, 77,145,118,
- 11, 26,248,232,196, 63, 63, 62,122,120, 65,212, 66,133, 66,193,193,254, 79, 62,249, 36,179,229,181,215, 94, 19, 53, 64,132, 55,
- 96,214, 2,115, 95, 20,222, 27, 56,172,139, 41, 0, 2,150,236,114, 59, 45,158,195,150,167,171, 16, 3, 0,126,117,248,148,215,
- 66,146,193,163, 78,235,255,238, 7,119,219,225,179,206, 55, 26, 79,181,116, 63, 92,188,103,232,254,206,211,103,206,206,154, 25,
- 79, 33, 56,123,246,236,172,153,241, 0,183, 54,232, 22,138,243,122,112, 87,124,228, 40, 26,142,175, 85,102,102, 38, 0,224, 87,
- 71,246, 39, 8,112,246, 95,168,213,234, 7, 31, 60,168, 86, 47, 19,172, 1,203,151, 37,168, 84, 42, 0,109,149,206, 61,197,211,
- 93, 60,229,122,182,249, 15, 0,233,233,149,181,181,144,158, 94,169, 82,181, 96,111,192,173, 43,128, 16, 58,114,254,227,167,254,
-235,201,123, 67,231,250,221,117, 23,178,146, 20,178, 75,101, 62,209, 73,209, 95,205, 59, 95,172,213,204, 31,123, 31, 94,232,205,
- 41,186,186,186,232,237, 21,247, 7,204,127,250,179, 95,106, 44,116,203,210,165, 75,249,255, 4,157, 78,199, 94, 25,116, 24,250,
- 14, 10, 4,148,122,199,243,144,197,149, 33, 92,177, 63,126,203,212, 0, 25,211,181,247,100,219,135,125,164,206,206, 78,122, 37,
-100, 14,133, 0,223,123, 56, 56,154, 96, 81, 54,159, 80, 12, 7,109,113,212, 18, 80,171,213, 25, 25, 25,108,222,199, 69,137,105,
- 97,224,192,196,200, 73,173, 55, 13, 31,100,165,143, 33, 22,182,188,158, 27,181, 58,234,208, 16,179, 63, 0, 96,210, 7,128,248,
-248,120,186, 5,251, 4,116,139, 55, 54,190, 83,154,198,215,138,205,251,229,229,229, 26,141,102,217,194,185, 7, 63,251, 2,130,
- 2,160,183,127, 40,126,242,135, 7, 27, 1,180,174,162, 58,220, 72,235,221,228,156,224, 70,189,200, 39,248,163, 82,213, 42,149,
- 83,241, 43,254, 72,169,156,202,173, 1,159,127,245,249,250, 13,107,239,143, 89,108, 31, 24, 32,237, 36, 33, 35, 0,164, 8,168,
-142,235,109,113,161,247,108,202,218,244, 66,201, 11, 15,198,187,116, 13, 91, 91, 25,149, 28, 90, 94,114, 32,253,143, 63,254,152,
-167, 6,232,116,186, 15, 55, 31, 92,254, 39, 16,192,227, 58,157,174,164,164, 36, 47, 47,111, 68, 52,160,189,189,253,252,249,243,
-109,109,109,143, 62,250,168, 71, 29,207,159, 63, 47, 10,128,115,179, 47,191, 24, 0,180,154, 2,151, 33, 32,122,128,215, 97, 93,
-126,167,237, 14,107,205, 51,229, 1, 47,163,198, 12, 7, 49, 23, 92,171,168,168, 96,135, 8,216, 5, 52,248,132,110, 6, 5,239,
-191,255, 62,155,250,113,148, 3,179,127, 65, 65, 1, 71,247,171,250,203,198,253,255, 19,184,238,149,137,145,147,198,143,241,211,
-239,215, 63, 92,188, 7,130, 71, 65, 79, 47,200,165,124, 78, 32, 39, 39,135,142, 2,241, 92, 79,130, 66, 16, 17, 0,127,126, 28,
- 54,148, 67,168, 63,124,217,227,216,210,196,163, 98, 10, 91, 86,221, 58, 82,207, 63,255, 60,155,250, 1,160, 36, 51,181,244,163,
-250,176,168, 9,237,151, 58, 92,153,255, 0,192,225, 4,184,141,234, 84,233,202,112,252,135,165, 10,188,238,144,146,119,157,252,
-180,216, 44, 94,119, 8,230,125,252,106, 85, 70,251, 84, 55,115,127,223,100, 54,249,199,250,221, 55, 97,254,128,209, 40,243,245,
-149,201,110, 61, 98,250,230,230, 3, 85, 85,235,214,102, 78,241,141,152,187,104,206,213,179, 87,239,158,224,126, 88, 79,123,242,
-217,125,251,246,173, 89, 3, 76, 15,128,143, 6, 96,246,135, 41, 47,127,184,249,247,158,106,128, 78,167,219,185,115,103,108,108,
-108,105,105,105,118,118,246,112,106, 0, 77,253,194,250,226,142, 2, 92,135, 31,182,249,143,217, 31,111,104, 53, 5, 76, 39, 96,
- 48, 67, 64, 21, 21, 21, 56, 58,172,215,235,153, 2, 64,191,229,174,178,226,106, 40,216,237, 67,254,200, 35,143,120,127,242, 52,
- 33, 58, 24,254,184, 20,165,171, 81,117, 51, 92,238, 95, 61, 31, 5,229, 66,210,230,126,248, 27,188,209, 8, 0,168, 34, 87,254,
-155, 82,146,228, 85, 91, 49, 54, 54,214, 83,145,235,220, 13,207,237,130, 73,119, 67, 71,141,207,222, 55,173,153,127,119,210,226,
-125,220,140, 3,244,144,239, 53, 93,113,208, 12, 69, 96,204, 51,239, 23,111,152, 29, 31, 54, 45,245, 5,142,107,197,241,191,115,
- 7,136,240,205, 64,179,127, 89, 89, 25, 30,251,229, 75,103,163, 94,228,201,245, 14,176, 42,163, 29, 90,106, 25,126,128, 43, 92,
-235,188,246, 80,198, 67, 65,163, 70,219, 9,242,147,163,255,238,235,239, 87,174, 92,121,189,179,115, 95,229, 7,235,215,102,250,
- 42,124, 37, 72,158,146,144,242,234,145, 82, 62, 2, 0, 0, 55,111,122, 92, 1,141,102,127, 0,240, 84, 3,116, 58,221,150, 45,
- 91,162,163,163, 1, 96,234,212,169,195,230, 7,120, 67,253, 76,243, 31,111,136, 2,192, 19,131, 60, 6, 48,110,220, 56, 92,221,
-133, 89, 40, 17,175,144,204,103,108,128, 61, 20,204, 39, 4,228,170,244, 46,127, 96, 51,159, 29,243,225, 54,255, 1,224,163, 63,
-108, 81,110,221, 65, 38, 45,148, 1, 4, 30,111, 62,212,210, 13, 0,100, 82,182,237,204, 88, 34,244,119,124,184,143,219, 25,114,
-138,238,180,191,101,175,189,114, 33, 43,207,120,216, 26, 54,214,121,139, 0, 15,128,167, 42,148,151,151, 3,128, 74,249, 64,125,
- 91,103,208,236,160,214,218, 22, 80,248,166,103,255, 38,228,238,212,161,187, 77,217,153, 63,194, 28, 68,167, 65, 36, 87,121, 65,
-181,170,218, 20,109, 74,122, 37,168,106,107, 83,180, 41,181,170, 90, 62, 78, 64,191,165,111,172,223, 24,210, 98, 66, 18,244,147,
-196,196,253,251,247,239,220,177,131, 66,232,177,199, 31, 11, 25, 19, 98,234,239, 39,237,100,144,124,148, 77, 98,227,121,206, 61,
- 61, 61,116, 94, 16,159,209,224, 59,216, 31,131,183, 6,232,116,186,252,252,252,196,196, 68,186, 37, 62, 62, 30,199,187,134, 78,
- 3,188,167,126,166,249, 15, 0,109,109,109,162, 19,224,177, 0,184, 74,167,113,218,206,177,132, 28, 14, 19,225,209, 96, 60, 42,
-128,221,130,168,168, 40,230,112,194, 80, 80,131, 96,184,138,248,187,173, 68,255,240,174, 74,180, 50,178,227,167, 9, 99, 96,161,
- 95,122, 41,121,237, 58, 4,143,146,117,255,173,102,103, 3, 72,165,124, 78, 94,192, 90,199,167, 54, 62,122,239, 28,136,202, 62,
- 59, 35,112,237,249,201, 25,240,231, 60,118,203,208,121, 0, 26,141,230,254,159, 76, 75, 90, 24,171,156,153,183,125,231,107,231,
- 26, 90,179,150,222,219, 94,245,161,225,102,175,128,255,194, 33, 64,228,234,190,114,106,242, 11,251,235,217,251,113, 58, 86, 92,
- 88, 88, 88, 84, 84,148, 94,249,173, 24, 0, 64,138, 54,197,167,186,185,186,186, 5, 15, 0,224, 81,226, 89, 15,252,214, 65, 91,
- 41,138,178, 83,128, 40,210,215, 79,241,248,175,127,253,220, 31,255, 56,126,252,248,137, 97, 97, 22, 99,191, 29, 1,162,236, 28,
-229, 92, 22, 44, 88,176,111,223,190,238,238,238,222,222, 94, 90,170,233,188, 32,183, 25, 65, 58,157,110,251,134, 38, 80, 68, 67,
-251, 95,238,248, 64, 17,189,125, 67, 83,206, 27, 92, 26,160,211,233, 86,173, 90, 21, 31, 31,223,221,221,205,108,143,136,136, 88,
-181,106,213,136,143, 9,243, 52,255, 69, 39, 64,160, 0, 56,157,240,197,115, 34, 24, 6,174,218,200,116, 2, 48,227,143, 27, 55,
-142, 78, 27,207,200,200, 48,243, 54, 75,249, 12,255,122,159, 6,138,205,124,167, 67,193,110,119,219,242,146, 74,158, 94,106,110,
-187, 32, 59, 94,106,171,204, 38,150,111, 59,240,187, 53,151, 14,124,173, 44,121, 11,100, 67, 85,111, 57,175, 2,106, 75,246,207,
-184,148, 2, 93,198,103,147,243,156,182, 8,240, 0,248,155,255, 85,251,183, 72, 39, 78, 15,132,216,203, 71,181,125, 4,250,207,
-133, 43, 73,103, 91, 57,175,252,229,219,193,186, 50,154,241, 1,224,240,225,101, 14,159, 58,189,175, 92, 5,124, 4,164,150, 10,
- 72, 13, 82,213,222,162,126, 0, 96,218,254,120,148,184,186,186,197,225,251, 65,126, 65,109,134,182,196, 41,243,205, 3, 22, 48,
- 91, 72,171,109, 83,126, 62, 33, 1,147,177,159,162,236,164, 29,249,202,228,215,251,175,203,237, 62,174,142,184,230,118,200,255,
-216,177, 99,248,153,162,243,130,174, 93,187,198,125,182,105,105,105, 57,111,192,246, 13, 77,113,145,119,236,255,203,175,173, 57,
-111,204,224,102,240,180,180, 52,157, 78,151,152,152, 24, 17, 17,193,108, 63,123,246,108, 85, 85,213,208,177,127, 88, 88, 88, 88,
- 88,216,160, 68,255,105,136, 78,192, 8,132,128,104,121,184,239,190,251, 42, 42, 42,112,240,135,173, 10, 71,190,232,225,195,209,
-252,159,109,111,210, 64,105,243,223,129,250,177, 92,185, 61,135, 83, 45,221,182, 51,207,117,192,103, 97,203,183,129,161,183, 69,
-155, 59,245,201,151,219,247,228,130, 92,118,171, 76,215, 16,224,178, 17,226,198,173,230,110, 25, 34, 15, 64,163,209,252, 34,105,
-254, 93,212,104, 19,200, 43, 95,206,254,223,154,255,123,246,231, 63,203,220,241,238,154, 23,223, 30,162,225,122, 44,240,183,231,
- 1,120,166,250, 30, 5,124,156, 58, 1,170,162, 34, 7,246,167,205,127, 87, 8, 31, 23,254,209, 39,181, 11, 38, 45,240, 15, 8,
-164, 40, 36, 65, 36, 69, 16, 8, 33, 59, 2,146, 66, 36, 73,154, 13,198,127,156,252,199,228,113,147,249,156, 3, 51, 35, 72,245,
-203,216, 21,225,122,237, 73,240, 84, 3,248,176, 63,221,183,176,176,176,164,164,100,194,132, 9,183, 76,156,150, 22,141, 70, 51,
- 12,182,191, 55, 50,224, 96,254,139, 78,192,200, 8, 0,115,224, 23,211, 61, 83, 21,120, 86, 44,113,120,182,121,210,138,176, 52,
- 80,182,249,207,159,250,111,133,128,138,247,124, 0,240,243,173, 43, 80, 69, 46,241,200,246, 83, 45,221, 68,200,232,230,171,189,
- 32,147,241, 9, 1, 9, 3, 59,235,223,163,121, 0, 28,162,200,173, 10,216,252,223,176,120,214, 51,219, 94,249,195,166,252,208,
- 81,227,154,206, 93,206, 60,247,238, 80,103,106,177, 89,155, 14,157,241, 75, 31,114, 31,240,225,128, 3,251,211,145, 31, 87,163,
-193, 10,133, 66,246,141,252,200,165,127,101,204, 92,211,107,233, 37, 36, 0, 32, 1,160,236,118, 68,145,100,128,111,208, 49,195,
- 23, 23,143, 55, 39, 39,120, 94,197,168,229, 9,224,151, 6,250,173, 6, 76,184,252,229,181, 8,158,236, 79,247,205,203,203, 43,
- 45, 45, 13, 14, 14,238,238,238,222,178,101,203,112, 70,126, 4,200, 0,219,252, 23,157, 0, 33, 2,224,253, 60, 0,182, 55,192,
-156,230,138,157, 0,143,140,211, 97, 88,140,129, 54,255,153, 9,160,122,189,158,150, 13,183, 83,121,177, 6,172,222,186, 27, 85,
-194,216,204,178,127, 61,179,230,103,154,119, 64, 46, 15, 80,248, 12,209, 57,211,201,254, 14, 27, 30,205, 3, 16,224, 1, 96,243,
-255, 25,109,245,166,245, 15,133,135, 45,166,131,126,252,175,213,109,238, 94,246,224,131, 7,111,199,127, 60,136,221, 49, 45,122,
-122,101,136,193, 13,248,184, 5,147,247,177, 55,192, 14, 91,205,189,103,110,245,187,213,246, 95,144,139, 38, 45, 26, 19, 52,198,
- 98,179, 32,132,124,100, 62, 61,102, 83,253,213,195,229,127,221,187,100,250, 18, 1,135,214,158,124,118,219,182,109,185,185,188,
- 38, 1,220,214, 0,240,136,253,233,190,217,217,217, 35, 56, 15,128,150, 1,158, 95,246,116,186,192,143, 7,169,143,111,174,249,
-235,159,180,154, 2,230, 60, 0,231, 19,193,188,159, 7,224,224, 13,176,233,222,211,178,133, 60,225,125, 26, 40, 86, 26, 92,101,
-151, 22,185,168,168, 40,158, 39,252,112,241, 30,184, 61,249,107,209,166, 93,120,195, 56, 52,255,168,247,230,182, 55,178,186, 97,
-241,172,228,186, 19,143,253,241,173,178,178, 50,166,107,197,255, 90, 13,150, 31,224,233,164, 48, 47,195, 65,108,246,183, 42,163,
-129, 53, 0, 64, 99,201,172,165, 71,247,125,114, 60,162,126,225,252,133, 19,131, 38, 2,133,174, 91,186,143, 53, 30,107,111,106,
- 95, 26,183,212,215,215,119, 24, 30,126,172, 1,194, 24, 28,251, 1, 35, 59,234, 43, 26,239,131, 8,246, 20,176,193, 15, 1,177,
-231, 49, 57, 77,208,116, 91,132,210, 83,134,242, 50, 13, 20,167,250,212,213,213,209,140,198,147,206,176,175,224,205,161,217,177,
-108,111,214,204, 25, 6, 9, 73,254,239,215,133, 93, 43,182, 19,192,255, 52, 92,113,253,170, 52, 53,253, 41, 31, 42, 23, 16, 14,
- 42, 44, 44, 44, 82, 21,165,104, 83,156,206, 9,224, 30, 12, 72,156,145,104, 50,153, 78, 84,157,232,183, 26, 1,192, 87,226, 19,
- 49,126,114,220, 28, 15, 86,205, 91,176, 96, 65,101,101, 37, 51, 35,200,102,179,121,116,169,189, 97,240,239,114,206,143, 8, 79,
-157, 0, 87,244, 43, 27,126, 90,225,158, 40,228, 41, 61,121, 95, 52, 92, 48,157,121,111,246, 14, 67,244,220,105,248,231,246,138,
- 27,195,119,173,188,249,225,158,218,233,131, 27, 14, 42, 44, 44,132, 75, 78,218,239, 45,188,215,109, 95,127,127,255,248,152,153,
-222,156,118,122,122,186, 72, 97, 34,188,215, 0,151,214,182, 88, 20, 94,132, 8, 17, 34,126,156, 16, 43,130,137, 16, 33, 66,132,
- 40, 0, 34, 68,136, 16, 33,226,199,132,255, 7,168,169,103, 9, 86, 45,238,236, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130,
+137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 2, 0, 0, 0, 1,
+ 0, 8, 2, 0, 0, 0, 74,242, 89, 48, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0,
+ 0, 0, 4,103, 65, 77, 65, 0, 0,192,153,201, 12,156,227, 0, 0, 0, 32, 99, 72, 82, 77, 0, 0,110, 39, 0, 0,115,175, 0,
+ 0,246,112, 0, 0,129,232, 0, 0,107,215, 0, 0,226,170, 0, 0, 48,131, 0, 0, 21, 42,251,118,133,113, 0, 0,192,173, 73,
+ 68, 65, 84,120,218, 98,244,137,169,101, 24, 5,163, 96, 20,140,130, 81, 48,242, 0, 64, 0, 49,141, 6,193, 40, 24, 5,163, 96,
+ 20,140, 76, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0,
+ 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64, 44,112,
+150,175,173, 12,241,218, 54, 31,126,130,204, 29,213, 59, 8,245,162,105,167,186,189, 7, 14, 28,112,112,112, 24, 13,231, 81,189,
+163,122, 7,185, 94, 60, 0, 32,128, 88,134, 71, 61,150,158,158, 14,103,207,156, 57,115, 64,108,159, 49, 99, 6, 35, 35,227,176,
+111, 50,192,131, 58, 50, 50,114,205,154, 53, 16,118, 72, 72,200,104, 99,106,248, 69, 52,253,179,210, 40,160, 51, 0, 8, 32, 22,
+ 90,164,128,219,183,111,247,244,244, 64,216, 37, 37, 37,170,170,170,116,240,201,255,255,255,129, 36,253,139, 96, 96, 40, 61,120,
+240, 0,200, 80, 80, 80, 24,144,234, 7,107, 45,136,213, 37,192, 54, 59,126, 19,150, 47, 95,142,223,253, 64, 43, 86,173, 90, 5,
+ 97,175, 95,191,222,213,213, 21,194, 6,214, 4,180,171, 3,140,141,141,129,228,217,179,103,201,144, 29,153,224,222,189,123,157,
+157,157,112,110,121,121,185,146,146,210, 32,175, 54, 6,208,205, 35, 25, 0, 4, 16, 11,158, 66, 28, 66,146, 90,124, 67,138,161,
+198, 85, 45, 60,178,252, 95, 30,127,172, 15,171, 25,216, 98,145,214, 0,232, 53, 96,209,255, 0, 12,118,236,216, 65,255,118, 19,
+ 36,192,103,130, 1,144,221,213,213, 5,228,150,149,149, 97, 85, 28, 24, 24, 8, 97,252,249,243,247,215,239,159,191,126,254,130,
+128, 63,127,254,224,210,130,181,244, 71, 3,192,154,128,166,117, 0,158,218, 11, 82, 1,140, 2, 92,237, 0, 32,128, 20,172,116,
+ 72,150, 16,171,201,200, 2, 3,232,230, 17, 14, 0, 2, 8,103, 5, 0,108,194,175,170,173, 10,107,110, 35, 41, 14,128, 17, 9,
+ 41,250,129,236, 55,223,222, 50, 8, 51, 84,238,109,248,116,239,125,122, 42,253,138, 69,204,196, 68,107,171,225,117,128,135,135,
+ 7,144, 4,178,233,233,217,253,251,247, 3, 25,142,142,142,104,117, 0, 30, 0, 44,238,127,253,250,253,235, 23, 74,233,127,230,
+204, 25, 19, 19, 19,130, 54,134,133,133, 65, 24,145,145,145,187,119,239,134, 87, 0,100, 68, 16,145,161, 4,108,221, 3, 75,127,
+ 55, 55, 55,100,193, 93,187,118, 1,251, 43, 16, 54,214,169,136, 17, 94,250, 35,135, 45, 25,229, 50,217, 90,200,232, 7, 80,203,
+205,163,128, 12, 0, 16, 64, 44,184,154,255,106,106,106,170, 60,124, 36,117, 2,224,165, 63,176,232,111,119,110,128, 8, 38,110,
+204, 98, 16, 99, 8,236, 10, 35, 24,151,152, 5, 55,121,101,247,227,199,143,129,164,172,172, 44,156, 1, 49,153,186,135, 94,160,
+121, 7, 94, 7,252,254,253,103,198,140, 25,148, 55,130,136,209,142, 86,250,195, 53, 98, 13, 73,148,210,255, 55,176,244,255,249,
+ 19, 92, 9,192, 75,255,255,255,254, 19, 83,250, 3, 85, 66,216,189,189,189,240, 38, 63,124, 50,128,120, 55,163, 57,155,120, 0,
+ 47,250,129, 53,144,161,161,225,104, 30, 70, 30, 69,193,154,120,224, 73, 2,168,128,224,184, 10,188, 67, 9, 73,195,112, 46, 49,
+205, 32,204,162,156, 96, 70, 64,115, 51,176, 73,193,200,200,232,226,226, 66,146,155, 33, 32, 57, 57,121,238,220,185,163,201,128,
+ 36, 0, 16, 64, 76,184,154,255, 45,225, 33, 63, 94,191, 46,209,214,128,143,230,227, 7,144, 33, 35,120,233, 95, 82, 82, 2,140,
+ 66, 32, 57,223,127, 26, 80, 92, 64, 93, 4,174, 6, 15, 40,155,122, 11,136,178,123,174,199, 55, 95, 9,170,188, 64,170,103,158,
+ 60,121,130,167, 74,160,110,233, 15, 44,235, 49,139,108, 96, 29, 0, 44, 82,205,205,204, 72, 53, 13, 50,186, 2, 4,251, 97, 0,
+127, 33, 14, 47, 73, 29,193, 0, 51,195,227, 46,253,255,130,138,253,159,160,193, 31,228,210,255,239,223,191, 95,191,127, 37,232,
+ 84, 72, 47, 1,185,163,176, 6, 12,136, 28,252, 1,185, 25,105, 36, 7,200, 38,232, 77,172,165, 63,176,232, 7,246,114, 32,165,
+ 63, 43, 11,235,104, 54, 38, 56,108, 2, 17, 68, 30,100,199, 95,148,147,215, 2,131, 40, 70, 46,253,113, 53,236,176,186, 25, 88,
+250, 3,211,210,234,213,171,247,236,217, 67,170,155,129,165, 63, 11, 11, 11,144, 28, 77, 6, 36, 1,128, 0, 98,194,211,252,255,
+246,226,185,167,161, 17, 49, 5, 55,164,206, 0, 54,255,129, 12, 72,233, 15,233, 52, 0, 73, 72, 29,240,228,211, 51,163, 50, 11,
+130,117,201,215,239,192, 98,232,239,243,183, 63,159,190,254,241,248,229, 15, 34,139, 78, 72, 10,195, 85,250,211, 14, 96,214, 1,
+ 64,240,227,215,207, 31, 63,126, 16,111, 8,164, 28,135,140,173,139,138,138,194,155,198,248,115, 14,114, 59, 26,179,227,140, 39,
+223,130,198,253,129,197, 63,184,241, 15, 47,253,127,255,254,253,245,235,215,207,159, 62,211,122,116, 98,213,170,213, 48, 30, 35,
+ 24, 50, 0, 69,136,175, 3,224,165, 63,164,232,103, 98, 98,226,224,224,224,230,225, 26,205,198, 52,234,215, 18,217,167,196, 90,
+121,160,141, 8, 17,163, 23,222,143, 4,214, 1, 36, 57, 27, 82,250,131, 6, 52, 70,235, 0, 18, 1, 64, 0,118,205, 94, 7, 65,
+ 24,136,227, 36,208,224,238, 32,239, 64,124,156,250, 8,142, 60, 15,137, 3, 59, 60,150,176, 16,135,106, 75, 33, 90,130, 7, 37,
+ 23, 98,180,158,137, 35, 55, 53, 13,133,210,143,223,221,253,219,224, 45,202, 79,199,121, 16,155,242,108,147, 0, 74, 32, 96,195,
+127,203,125,172,196,242,118, 31,125,125,131,106,123,169,205,173, 49, 87,101,132, 52,148, 31,120,185,252,131,193, 62, 22, 32,133,
+ 20, 66,252,119,212,210, 52,197,131, 95, 84,252, 97,149, 67,125,215,182,116, 7, 0, 77,178, 44, 43,171,138,249,254, 46,138,144,
+254, 73,146,196,113,236,216, 54,240, 69,120, 12,125,192, 50, 47,113,159, 64,220, 39,254, 63, 70,250,247,150,254,224, 13,180,214,
+ 74, 41, 41, 73, 14, 0, 37, 32,107,244,216, 63, 47,114,111,240, 46,117, 61,206,154,157,179, 97, 24,125, 64, 81, 28, 56,167, 44,
+176, 37,253, 25, 99, 97, 24,110, 38, 35,246,124, 53,138, 2,249, 9,220,116, 45,200,161, 8,185,141,115,110,209,255,211,109, 2,
+164,255, 76,180, 32,128,200,102,213,130,136,246, 20, 64, 76, 88, 71,114, 76,148, 85,127,188,126, 13, 44,253,129,108, 59,112,179,
+148,152, 78,192,189, 43,119,144, 13, 65, 99,191,189,252,130,160, 9,164,150,254,240,162, 31, 88, 13,200,202,202,194, 5,127,195,
+ 0,176,232, 7,182,109,223,189,123, 71,221, 80,131, 88,186, 99,199, 14,120, 63, 0, 82,250,235,233,233,253, 0,214, 0,223,191,
+195,107, 38,252, 89,110,234,180,169, 64, 71,202, 72, 75,255,254,251, 23,173,244, 39,152,109, 32,117, 0,114,131, 11,178, 26, 21,
+107,191, 4,165, 2,248,245, 27, 82,250,159, 62,117,250,219,247,239,192,210,243,227,199,143,192,128,122,255,254, 61,241, 33, 0,
+ 25, 5, 34,126,232, 31,148, 0,222,188,125,251,246,205,155,183,239, 64, 52,152, 9, 20,212,208,212,124, 7,102, 16,211,252, 7,
+146,192,210, 31,218,240,231,230,230,225,225,229,229,225, 5, 50, 70,179, 49,174,210,156,248, 6, 56,100, 5, 1,156,129,139, 77,
+146,237,104, 35, 66, 4,117,185,184,184, 0,235, 0, 96,233,239,234,234, 74,124,159, 3, 88,214, 3, 75,124, 56,119,180,244, 39,
+ 9, 0, 4, 16, 19,102,243,127, 85,109, 21,144,241,237,197,115,184, 32, 49, 51, 1, 37, 37, 37, 83, 83, 39, 50,128,103,125,129,
+138,225,171, 72,129,108,215,197, 1, 64,246,185,174, 19, 64, 53,212,117, 61, 60,109, 61,121,242, 4,210,228,135,148,251,208,238,
+203,215,175,192,210, 13,216, 30,231,226,162,254, 40, 1,208,234,140,140, 12,144,141,127,254, 92,187,118,237,252,185,115,250,122,
+250, 63,126,128, 59, 0,223,191, 47, 89,188, 24, 34,139, 39,185,247,246,246,106,105,106, 1, 93, 11, 12,165, 63,191,127, 61,125,
+242,148,108,239, 51,192,102, 32, 24,192,219, 17,240,245, 0,126,255,252,243, 23, 52,242,115,242,228,137,175,223,191,126,249,252,
+ 9, 88,250,191, 7,149,254,239, 72,170, 38, 33,253, 0,146, 90,106,135, 14, 29,250, 12, 2,159,192,228,103, 17, 97, 97, 96,233,
+127,227,250,245,131,135, 14, 17,163, 29,210,252,103, 97, 97, 5,198, 38, 15,176,236, 7, 98, 30, 46, 78, 46,206, 23, 47, 94,140,
+102, 99, 8, 40, 47, 47,135,151,191,240,201, 85, 8, 3, 34, 8, 81, 64,100,179, 29,255,184, 16,254,210,159,248,182, 63,154,155,
+129,117, 0,176,244, 39,201,205,200,117,192,104,233, 79, 42, 0, 8, 32, 44, 67, 64,194,247, 31,188, 3, 15,254,192, 69,128,157,
+128, 30,134, 27,248, 13,130, 12,245,220, 56,123, 77, 64, 93, 4, 88,226,247,196, 66, 43, 12, 72,233, 15,105,254, 19, 92, 77,180,
+174,221,128,188,246,248,245,235,215, 33, 41, 0,121, 52,128, 21, 12, 94,191,126,237,229,229, 69,139,176,131,148,185,192,134,191,
+153,153,217,143,159, 63,191,255,248, 14,110,253,127, 7, 49,126,252,152, 50,101, 10,174,156, 3, 89,169,249,247,239,223,179,103,
+207,177,178, 48, 67, 66,230,254,131, 7, 79,159, 62, 93,190,124, 69,100,100, 4, 80, 4,222, 15,192,154,193,224,131, 78,104, 45,
+ 56,130, 43, 80, 33,109,255,227,199,143,127,253,242, 13, 82, 65,126,250,252,233,211,167,143,159, 62,125, 33,126, 32, 5,210,252,
+135,239, 4, 38,166, 26, 0, 42,134,179, 21, 21, 20,128, 69, 63, 40,181, 92,191,126, 31,220,107, 65,150,197, 3, 44,173, 44,217,
+217,216, 57, 57, 57,129, 61, 0,118,118,118, 96,228, 82,125,122,127, 72, 3,228,213, 50,240,197, 51,240,154, 0, 77, 1,254, 66,
+ 28,235, 80, 62, 73, 61, 15, 34,171, 13,106,185, 25, 82, 7,140,150,254,164, 2,128, 0, 98,193, 28,255,113, 94,178, 12,171, 82,
+130,235, 65, 33,205, 7,163, 50, 11, 97, 93, 9, 72,185, 15, 31,252, 1, 54,255, 9,166, 6,242, 22,252, 66, 44,213,212,212,188,
+124,249, 50,188, 8,195, 28,244, 7, 42, 35,254,124, 12, 82,109, 71, 22, 89,178,120, 9,176,244,135,236,176,194,186, 30, 31,121,
+157,254,191,127,127,245,244,141, 46, 94,188,116,253,218, 53, 22, 86, 86, 96,201,248,228,233, 19, 96, 83,151,153,153, 57, 44, 44,
+ 12, 88, 7, 48, 48,240, 99,154, 0,212, 14,201, 93, 16,219,209,246, 1,224,119, 48,176,244, 63,122,244,232, 23, 32, 0,205,250,
+126, 2,151,254, 64,226,243,151,207, 95,190,126,251, 70,208,179,192,162,255, 12, 24, 48, 96, 44, 3,197, 95, 13, 56, 56, 56, 32,
+ 7, 20,164,220, 63,127,254, 60, 3, 17,219,143,141,193, 0,200,224,225,226,225, 0, 21,254, 28,108,108,108, 76, 76, 76,163,165,
+ 63,250, 24, 44, 82,185,185,122,245,106, 96,107,154, 1,117, 66,149,152, 37,149,200,109, 11, 82, 87, 51,147, 49,238, 79, 21, 55,
+195,235,128,209, 52, 64, 42, 0, 8, 32, 22,180, 86, 60,133,219, 46,224, 41, 0, 82, 13, 64,138,126, 6, 26,111,197,130, 88,170,
+171,171,123,250,244,105, 96,123, 31, 81,241,188, 5,205, 72,199,198,198,210, 52, 4,145,189,246,255,255,255,152,216,152, 41, 83,
+166,130,199,217,255,240,243,243, 19,172,231,110,221,186, 5,108,209, 66,244, 2,217,104,202,238,225,168,180,144,235, 0,200,108,
+ 48,100, 73, 40,254,112,134, 44,159,183,182,182,166,196,179,240, 53,160,164,158, 5, 4,212,123,224,192,129,229, 96,128,220, 51,
+ 32, 50,109, 0,171,144,223,127,126,255,254,252,123,116,202, 23, 23, 32,184, 98, 18,168,128,200,208,134,239, 3, 32, 47, 51, 18,
+175,145,138,110, 30, 5,100, 0,128, 0,162,254, 97,112,192,216, 2, 13,253,119,209,245, 44, 32, 72,178, 51, 53, 53,221,182,109,
+ 27,164,220,167,188,111, 65,222, 96, 20,124, 47, 46,214,210,159, 42, 0,243,204, 6,200,178, 81,130, 77, 54,170,132, 3,220, 16,
+ 96,105, 78,234,217, 15, 14, 96, 64,170,141,163,231,252,144,209, 22,161,127,226, 39,207,198, 65,226,230, 17, 11, 0, 2,136, 38,
+167,129, 82,222,147, 32,187, 14,160,209,112, 63,237, 50, 0,229,134,143,230,150, 81, 48,228,146,241, 40, 24, 36, 0, 32,128, 24,
+169,123, 64,194, 40, 24, 5,163, 96, 20,140,130,161, 2, 0, 2,104,244, 70,176, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70,
+ 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48,
+ 10, 70,193, 40, 24,161, 0, 32,128, 70, 47,133, 31,213, 59,170,151,230,122,113, 45,207,165,181,222,209, 56, 26,213,139, 31, 0,
+ 4,208,104, 15, 96, 20,140, 2,218, 2,200,233,246, 16,146, 84, 64,204,145,250,163, 0, 43,184,121,243,230,104, 32, 16, 4, 0,
+ 1, 52, 90, 1, 12, 36,184,118,237, 90, 58, 18, 0,114, 7,191,222, 81, 64, 18,184,119,239, 30,228, 96, 3, 32,137,124,236, 1,
+241,165, 63,228, 88, 89,178,207,228,193, 37, 66, 69,189,240, 59, 57,200, 3,180,168,222,128,165,127,127,127,255,104,242, 35, 8,
+ 0, 2,136,101,248,121,233,240,225,195,182,182,182,131,223,157,144,116,223,219,219, 11, 23, 41, 46, 46,102, 32,250, 50, 72, 32,
+249,111,165, 32,162, 38, 15,159, 72, 7,189,163,128, 84,128,124,212, 1, 73,167, 26, 32,151,254, 64,146,145,145,145,248, 35, 22,
+ 40,217, 45, 72,134, 94,200, 57,254,120,156, 7,236,253, 64, 14,249,193,227, 89, 76,189, 4,117,225, 47,253,255,253,251, 55,107,
+214,172,165, 75,151, 70, 71, 71,143,166, 67, 92, 0, 32,128,134, 97, 15, 96, 9,142,195,236, 6, 91,233,159,159,159,143, 92,250,
+ 67, 42, 3,160, 32, 49, 13,174, 5,185,220,200, 37, 56,164, 64, 7, 10,210, 84,239,199,143, 31, 51, 51, 51,225,183,208,188,120,
+241, 2,168,165,181,181,181,185,185,185,170,170, 10,114, 94, 63, 46,192,246,241,171,110,230,124,158,253,247, 33,220, 63, 47,254,
+ 92, 77,255,113,169,149,237, 72,179,224,230, 42,249,115,187,164,135,107, 6, 35,227, 60,125,180,210, 31, 2, 72,234, 7,208,185,
+ 7, 0, 57,199, 31,162,114, 15, 24,160,149,227,248,111,248,130,235,197,212, 69, 70,231, 0, 94,250, 3,155, 83,192,210,255,200,
+145, 35,163,165, 60, 30, 0, 16, 64,195,173, 2, 0, 54,255,129,109,165, 65, 30,235,144, 33, 23, 57, 57, 57,120,195, 31,210,246,
+135, 11,226, 25,147,129, 72,197,217,176,193, 26,239,239,129, 8,194,134, 8,210, 72, 47, 16,156, 60,121,146,131,131,227,248,241,
+227,136,212,195,196, 84, 93, 93, 93, 91, 91, 27, 31, 31,191,117,235, 86, 60,122, 37, 78, 94,251,207,193,202,117,252, 17, 92,132,
+145,233,191, 94,245, 47,155,218,247,230,241,175, 78,111,149, 30,205,138,152,165, 63, 35, 12, 16, 89, 7, 32, 79, 24,164,163, 2,
+ 6, 66,211, 9,148,232,133,215, 1,239,222,185,204,156,249,158,164,210, 31,107,253, 1,215, 69,106,175, 20, 88,250,247,245,245,
+ 1, 67, 12,152, 50,207,156, 57, 3, 44, 13, 70,147, 19,126, 0, 16, 64, 76,248, 11, 83, 50, 66,144,194,241,101,160,141, 16,141,
+228, 69, 30,176,249, 63, 99,198, 52,178, 59, 1,244, 73, 49, 19, 39, 78,132,183,253,129, 69,127, 47, 24,192,235, 0, 32, 27,168,
+ 0,143, 94,120,251, 29, 88,124,223,222, 22, 11, 68,240,114, 28, 40, 69,188, 94, 72,155,148, 72,189,192,210,231,216,177, 99,192,
+222,244,163, 71,143,158, 63,127,142, 38,245,240,225, 67, 73, 73, 73, 6,220,154, 37,143, 93,121, 18,109,205,246,232, 35,227,115,
+248,161,211,144,171,220, 24,222, 61,100, 23,146,252, 62,204,242,213,189,123,247,240, 20,181,120, 38, 3,208,218,254,104,247,202,
+225,175, 3,144,111,224,154,137, 10, 24, 8,221,207,133, 44,251,127,149, 32, 50, 98, 32,241,110, 47, 72,185, 79, 82, 57,142, 92,
+127, 0, 17,121,165, 63,176,123, 58, 97,194, 4, 96,219,191,160,160, 0, 88, 7, 64,218,130,211,167, 79, 31, 45,229,241, 0,128,
+ 0, 98,193, 83, 20, 46, 93,186, 28,146,224,136, 31, 82,135, 36,205,152,152, 24,136, 22,160, 33,144, 50,133,200,184, 4,170, 95,
+178,100, 9, 80, 59,184, 40, 95, 66,146,213,240,230, 63, 36,159,144, 49, 19, 0,177,157, 84, 75, 41, 1,144,210, 31, 94,238, 35,
+115, 9, 87,221,224,210, 31,194, 6,213, 1, 94,139,209, 6,118,240,235,133,199, 8,184, 14, 72, 39,168, 23, 88,196,255,250,245,
+203,216,216, 24,216,187, 2,118, 2,130,130,130, 64,117,198,191,127,237,237,237, 95,190,124, 97,101,101, 5,102, 63, 92,122,133,
+ 30, 62,101,250,245,231,131,177, 2,235,145,103, 44,199, 95,254, 14, 82, 4,197,209,191,255,151,218,217,222,125,225,253,206,202,
+227,154,121,123, 56,101, 42,130,205,222,206,206, 78, 96,121,135, 57,192,141, 89,178,195,155,255,152, 42, 7,225, 41, 94,233,233,
+130, 72, 53, 10,168, 97, 1, 12, 6,178,239,249, 32,181,237, 15,204,245,240,187, 33,109,108,108,128,217,121,180,244, 39, 8, 0,
+ 2,136, 5,119, 81,184,108,230, 76, 80,240,101,100,100, 17, 89, 38, 66,198,181,181,180,180,224, 34,182, 96, 0,233, 19, 16,140,
+ 81,120,233, 15,183,139,212,226, 24,232,230,152,152, 40,112, 13, 20, 5,100,147, 90,121, 0,173,131,223,103, 48, 36,166,145,233,
+ 9,142, 30, 61,106,110,110, 14, 44,143,128,228,134, 13, 27, 2, 2, 2, 32, 67, 64,149,149,149, 12,224,171, 23,150, 47, 95, 14,
+148, 50, 53, 53,197,212, 43,127,244,204, 11,115, 77, 96, 97,246,213, 92,150,121,195,243,223, 1,138,224, 33, 32, 6,189,202, 95,
+ 64,173, 95,223,126,220,183, 92, 69,222,252,139,158,233,147, 97, 16, 80,248, 47, 85,135,131,213, 96,128, 89,136, 35,223,169,130,
+235, 90,105,172, 23, 55, 14, 56, 0,214,103,152, 75, 93, 33, 99, 59,164, 2, 50,116, 65,206, 12,103, 97, 97, 41, 44, 44, 60,115,
+230,204,232,208, 63,145, 0, 32,128,176, 87, 0,192,182, 63,164, 36, 5,130,232,232, 72, 32,151, 96,129, 8, 25,234, 65, 46,253,
+225, 0, 34, 8, 84,128, 85, 22,169,248, 70, 41,253, 33, 12,160, 32,145,101, 49, 48,202,129,197, 19, 68, 49,144, 4, 86, 0,196,
+119, 2,224,165, 63,114,238, 34,178,206,163,164,253,130,220,234, 39,169,249, 15, 25,177, 1,182,250, 33,157, 0, 85, 82,154,255,
+ 80,189,225,233,240,187,159, 8,234,253,253,251, 55, 48, 83,241,242,242, 94,186,116,233,239,223,191,159, 62,125,186,126,253,186,
+176,176, 48, 92, 1,144,237,237,237, 61,109,218, 52,204, 10,128,249,247,111,217, 51,151,217,120,165, 89, 47,189,253,248,151,247,
+243, 39,182,191,215,191, 48, 8,115,192, 21,112, 11,255, 49,245,126,178,112,154,237,240,168, 0,128,161,138, 57,244,129,121,201,
+ 34,164, 7,128,182, 97,135,164,181, 58,180,184,225,142, 26,222,127, 15,233, 10, 32,247, 6,136,239, 64, 0,195,141,140,210,127,
+233,210,165,135, 14, 29,250,191, 74,144, 49,236,125,127,127, 63,176,226, 4, 54, 77,102,204,152, 49, 90,190, 19, 4, 0, 1,196,
+130,181, 52, 4,134, 32,114, 65, 12,172, 0,128,197, 43,176, 87,133,199,160,137, 19, 39, 66,134,110,176, 2,160, 20, 80, 1,158,
+244, 13, 25,124, 71, 43,115,193,229,248, 18, 98,202,113,228, 46, 11, 4,196,198, 70, 47, 94,188,148,152,114, 28,185,244, 71,107,
+ 97, 17,212,139,199,203,120, 0,176,159, 4, 47,238,225,163,255,200,179, 2, 64, 5,120,244, 50,133, 67,135,242, 33,117, 0, 3,
+210,154, 78,166,240,247, 36,232, 13, 79, 39, 82,239,133, 11, 23,228,228,228,128,109, 43, 8,119,209,162, 69,199,143, 31,247,241,
+241, 65, 86,243,242,229, 75, 14, 14, 14, 76,189, 10, 23, 46,124,144,147, 60, 89,152, 4,225,178, 45,186,253,247,248, 71, 38, 31,
+ 20,149, 31, 95,114,178,115,252, 30, 54,153, 10, 88,178, 43, 41, 41,225,185,235,170,188,188,156,200,107, 14,145,135,128,112,117,
+ 8, 6,109, 32,144,161, 30, 82,113,146,164,119,217,178,165, 7, 14, 28, 96, 92, 3,106,142,236,170,225,117,107,249,108,103,103,
+ 55,186,244,147, 72, 0, 16, 64, 44,152,165, 33,114,243, 31,222, 9, 0, 22,166,200,181, 2, 86,128, 71, 22, 82,148, 19,108,254,
+ 99, 45, 97, 9,118, 2, 32,110, 70, 46,253, 33,131,128, 64, 7, 3,197,129, 89, 8, 79,213,133, 89,250,147, 84, 7,144, 55, 82,
+ 4,233, 9, 61,122,244, 8,178,230, 7,185,225, 15, 20,196,213,145, 66,214,187,232,200, 47,200,186, 29,228,198, 59, 80,144, 70,
+122,129,197, 61,178, 79,237,237,237,187,187,187,157,157,157,255,253,251,215,214,214, 6, 36,191,127,255, 14, 12,103,172, 49,168,
+126,252,248, 37, 91, 7, 56,247,143,189,228,223,238,199, 12,206, 98,255,255, 49, 92,106, 99,253,242,143,231,221,119,190,119,140,
+ 66,126, 49, 23,135, 83,190, 2,150,239,248,167, 91, 73, 41, 26, 87,129,200, 61, 97,196,244, 71,225,233, 22,235,106, 78, 60,247,
+ 53, 34,235, 5,182,163, 73,210,139,217,138,135,220,225, 76,159, 1, 55,208, 52, 53,164,244,191,244,103,254,254, 95,224,242,106,
+180,244, 39, 22, 0, 4, 16, 74, 5,144,145,145, 5,186,213, 54, 38, 10,179, 37, 14, 25, 23, 2,162, 25, 51,166,209,200, 41, 88,
+ 11, 83,130, 53, 7,220,205,184, 12, 4, 86, 93, 64,132, 86, 61, 32, 87, 60,120, 50, 42, 48,121,209,104, 50, 0,158,217,200,216,
+ 8, 6, 84,144,144,158,158, 48,249, 43,234,102,174,247,180,211, 11,190,158, 30, 1,228,229,229,167, 76,153, 66,100, 89,182, 13,
+ 85,239, 63,121, 30,206, 41,154, 64,134,246, 76, 86, 6, 6, 96,171,255, 61, 24, 61, 28,174, 25, 12, 94, 16, 67, 24,116,184, 45,
+ 14,107, 73, 13, 23, 33,184, 10,136, 12,189,152,173,120, 34,251, 55,148,135, 45, 48, 25, 3,203,125, 32,123,193,254, 95, 43,142,
+253, 2, 22, 5,163,251, 25, 73, 2, 0, 1,132, 82, 1,224, 41,220, 33,211,185, 4, 19, 31,217, 10,200,190,201, 22,127,133, 68,
+161,179,105,157, 93,175, 93,187, 6, 95,253, 9, 25,162,193, 63, 77,130,166, 23,178,131,151,158,122, 71, 1,169,160,188,188, 28,
+ 62, 22, 4,100,211,199, 82, 58,239, 4, 30, 88,224,222,242,121,168, 56,117, 16, 2,128, 0, 98, 25, 13,130, 1, 4,192, 98,151,
+236, 36, 59, 80,122, 71, 1,169, 99, 65,144,147, 18,128, 36,241,237, 98,148,213,159,176,193, 31, 92, 75, 66,113,141,231,224, 23,
+161,133, 94, 90, 84, 93,248, 1,176,243, 10, 12, 22, 63,255, 52,104,119,115,251, 57, 8,195,203,211,104, 52,237, 17, 3, 0, 2,
+104,180, 2, 24, 5,163,128,182,192,197,197, 5, 88, 1, 16, 63,177, 73,121,105, 59,176, 61, 0,250,214, 22,255, 33, 59, 10, 71,
+ 1,121, 0, 32,128, 70, 47,133, 31,137,128,243,231,141,239,236, 26,163,225, 48, 10, 70,193, 8, 7, 0, 1, 52,122, 28,244, 72,
+ 4,163,165,255, 40, 24, 5,163, 0, 8, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,163,
+ 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0, 2,136, 38,151,194,223,191,122,156,129,233,
+135,164,140,244,231,239, 95,223,191,253,170,166,105, 67,188,222, 35,231,238, 50,252, 99,127,249,244, 41, 55, 39,183,160, 16,183,
+185,137, 34,241,122, 41,113,243,191, 55, 83,120,121,190,115,114, 51,179, 48, 51, 49,114, 48, 62,255,148, 79,188,222, 79,188, 65,
+130,194,130,252, 60,204, 12, 44, 12,239, 46,204,194,111, 47,167,244, 13,226,221,252,253, 41,202, 96,189, 20,215, 75,226,245, 62,
+251, 38,142,162,247, 39, 9,246, 62, 67,157, 36,144,254, 69,194,245,170, 79,217,212, 7,131, 94,109,108,225,220,217,185,186,188,
+ 28,203, 81, 51, 87, 81,195,153, 83,230, 23, 9,113,244,132, 13, 37,109, 72,147, 16, 71,155,159,162,196,209,143,159,220,196,235,
+229, 96,255,138, 98,148,223, 20,226,245,250,110,202, 65,230, 22,191, 32,225,216,156, 94,137, 12, 26,229,193, 81,189, 52,210,139,
+ 7, 0, 4, 16,190,101,160,169, 7,138, 24, 29,227,103,253,215, 39,198,160,123, 87,118, 49, 50,252,227, 97,231,156, 63,115,217,
+194,133, 19,173, 93,172,255,124,253,166,165, 97,247,239, 31, 67,118,217, 95, 45, 45,245, 59,119, 30,254,248,254,135, 87,210, 26,
+ 83,239,209,243,175,254, 51, 48,126,249,249, 61,189,168,165,113,146,251,179,171,103,129,201,123,219,197, 39, 76, 76, 12, 19, 27,
+106,110,221,186,169,160, 32,207,206,201, 34, 44,200,142,197,222,117,211,216,216,216, 56, 57, 57,121,120,120, 68, 4, 56, 68, 89,
+121, 69, 37,185,249,217,121, 5,216,152, 88, 88, 88,254,255,251,251,137,153,225,211,171, 79,135,121,117,113,185,252,227,221,169,
+188,156, 31,249, 4,216,120,184, 89,217, 56,153, 88,152, 25,152,216, 88,212,165,103,255,254,207,124,239, 89, 18,126, 95,239,127,
+164, 44, 34, 34, 34,206,243,227,251,143,159, 76,236,156, 12,191, 25,254,200,197,124,120,255, 78,228,243, 54,218, 85,218,179,102,
+205, 74, 75, 75, 27,109,188, 16, 4,184,138,123, 82,213, 0,129, 4, 39,215,211,167, 79, 89, 57,216,255,113,113,209,211, 11,223,
+222, 93, 56,182,119, 5,178,136, 75,104,199,224, 12,237,197,139, 22,177,179,177,253,251,247,143,155,135,199,215,207,111, 52,249,
+ 13, 9, 0, 16, 64, 4,246, 1,252,223,187, 48,205,153,112, 29, 16,234,167,242,211, 73,232,247,151, 15, 44,127,153,204,244,100,
+226,227,161,205,103, 96, 9,126,226,248, 2, 17, 57,233,127, 95, 62,217,155,235, 62,123,246,126,207,249, 63,104,122,211,211,219,
+ 24,216,248, 25,185,248,254, 51,255,191,120, 45,113,222,138,157,208, 38,249, 63, 6, 15, 75, 75,134, 47, 47, 24, 24,120,239, 94,
+190,206, 42, 34, 96,109,161,195, 35, 32,134,197,122, 70, 38, 32, 98,252,207,204,250, 11,104,204, 31,102,102,102, 86,102,102, 54,
+ 86, 16,249,251, 47, 3,227,159,127, 32,119,224, 0, 47, 46,182, 8,241, 51,240,113,113,137,138, 8,243,241,113,253,103,250,251,
+231,223,151,191, 12,127,121,120,184, 68, 36,100,148, 84,143,236, 57,136,253, 28,161, 25,187,127,241,243,114,243, 11,124,254,241,
+141,237,235, 87, 14, 54,118, 14,214, 31,127, 65,237,193,111, 63,190,126,251,254,232,189,206,171, 55,239, 62,189,126, 18,102,133,
+221,234,213,157,132,174, 73, 74,112, 17, 20, 23,196, 90,250, 83,177, 14,168,234,238, 6,146,109,165,165,100,232,173,236,234, 2,
+146,237,101,101,196,107,185,242,244,233,173, 91,183,128,140, 32, 71, 71, 34,181,204, 92, 5, 58, 9, 7,249, 86, 44, 32, 27, 66,
+ 50,192,206, 71, 3,178,211,176, 29, 33, 9, 44,217,241,151,239,196,148,254,138,130, 66,223,127,253, 4, 50,216, 56, 57,126,125,
+255,241,239,235,183, 55, 47,158, 75,234,234,226,209, 34,169,172, 70,208, 95,252,242,154, 55,246,109, 36,168, 12, 88,250,219,184,
+ 68,112, 8, 26, 16, 21, 88,161,239, 8, 42, 9, 11, 11, 91, 21,186, 7,171,148,227,158,215,112,182,150, 0,168,100,120,245,227,
+223,247, 63,160, 16,254, 10, 38,103,154, 11,168,241,178, 98,213,219,211,211, 83, 85, 80,226, 31, 20,248,227,199,247,137,253,125,
+ 83,166, 76,201,201,201,161, 48,113,222,185,115,167, 27,156, 62, 9,110, 44, 56,126,252,248,131, 7, 15,222,190,125,251,249,243,
+103, 94, 94, 94, 97, 97, 97, 5, 5, 5, 75, 96,233, 49, 10,192, 96,203,146,102, 56, 27,109,221, 63, 64, 0,225,171, 0,102, 59,
+244, 5,159,104,253,119,108,107,154, 21, 3,254, 58,224,231,151,119, 18, 42,206, 45,165, 65, 11,102, 30,128,136, 28, 60, 54,227,
+235,183,159, 94, 46,249, 86,214, 9, 17, 97, 78,156,156,236,191,254,254,249,252,237,151,154, 5,230,161, 61, 15, 25,126, 49, 4,
+ 69, 79, 79, 45,130,118, 45, 61,172, 28, 56, 56,216, 55,236,219,185,237,232,241, 69,243,167,253,248,254,147,141,153,133,135,139,
+141,143,237,239,157, 71, 47,208,171, 40, 96, 17,240,255, 31, 8, 49,253, 3,178,127,254, 98,103, 0, 86, 49,236, 12,255,127,253,
+253,203,204, 0, 44,202,255,254,250,247,231,239, 63,172,206,190,123,170, 93, 70,244, 63, 31, 47,183,180,140,162,134,174, 10, 47,
+ 15,231,199, 47,175, 95,188,126,241,254,227,203,223, 63, 24,185,128,181,130,168,117,112,224,229,181,235,213,209, 52, 78, 95,250,
+248, 47, 47,239,119, 22, 6, 54, 14,182,239,223,216,126,125, 99,251,193,193,206,194, 8,204, 37,204, 63,190,127,249,254,237,243,
+247,239, 95,191,127,250,248,249,197,195, 9, 19, 30, 43, 27, 99,223,255,217,189,168, 27, 87,120,150,198, 97, 47,145,223,191,127,
+143,204, 22, 18, 18,130,148,134,130,130,130,119,239,222, 93,189,122, 53, 73,181, 2,155, 56,116,252, 1,104,168, 32,185,105,107,
+214,234,213,217,217,217,191, 95,189, 34,166,244, 23, 19, 19, 11,114,115,251,205,206,222,219,219, 27,236,228, 68,204,241,150, 64,
+ 15,246, 52, 52, 64, 71, 42,234,235,123, 27, 27,177,178,113,105, 71,174, 3,128, 12, 99, 99,227, 61,123,238,185,184, 40, 17, 89,
+250,107, 72, 72, 10,240,241, 65,146, 25, 55, 7,231,243,215,175, 62,189,255,192, 35, 32,248,240,244, 25,121, 83, 19, 60, 26,253,
+210, 74, 98,130,125, 85, 21, 20, 32,220,250,222,201,112,169,198,226, 92, 32,249,104,251, 94, 51, 53, 89,162,134,122,136, 44,253,
+161, 45, 11, 33, 66, 42, 8,239, 71,227,102, 97,188,216,152,204,200, 39,242,247,222,197,159,247,174,222,122,247,213,100, 59,190,
+248,157, 49,115,102, 81,122,118, 92, 74,210,234,165, 43,128, 37,111, 75,103, 23,111, 67, 11,252,210, 8, 74,138,126, 80, 94,192,
+219, 58, 1,150,248,187,118,237,250,253,251,183,178,178,178,173,173, 45, 63, 63,255,135, 15, 31,158, 61,123,118,255,254,125, 32,
+233,230,230, 6,172, 15, 70, 75,127, 52, 46,114, 29, 0, 16, 64,232, 21, 64,218,109,216,209, 58,224, 29,118,255,255,125, 97,248,
+245,243,247,129,101,105, 14, 12,132,250, 1,108, 90,154,234, 76, 76, 7,110,125,120,203,192,112,253,227,211,219,192,254,242,198,
+173,147,190,189,249, 27,157, 88, 8,108,206,251,249, 90,254,101,225,193,165,249,214,173,235, 64, 53, 94,250,192,102,157, 20, 3,
+131,252,143,159,191, 66, 60,220, 56, 4,152, 22, 45,219, 1,108,190,175, 89,177,128,249,207,103, 77,121,246, 59,143,208, 53,254,
+251, 15,186,151, 10, 8,254,254,253,251,147,245,255,111,198,223,191,126,253,250,198,245,131,225, 31, 7,211,255,191,127,217,254,
+127,249,245,227,215,247,111, 12,124, 88, 44, 21,229,249,201,194,194, 9,108, 47,168,168,168,136, 75,152, 51, 48, 51,253,253,123,
+150,233,255,135, 31, 95,129, 85,198,215, 23,207,222,137, 10,191, 17, 22,176,150,148, 93,204,192,128,210,226,227,252,241,231,255,
+207, 55, 12, 63,216,127, 49,253,254,202,198,242,133,147,149,133,149,141,225, 31, 55, 35, 51,227,151,175,223,222,191,120,120,247,
+236,209,119,143, 30, 1, 93,197,244,159,153,200,120,154, 55,125, 30,132,145,148,137,115,220, 9,249,158, 41, 32,187,168,168,232,
+209,163, 71,192, 34,146,188,189,151, 83,167, 78,125,249,242,229,154, 53,107,188,237,236, 4,197,196, 72,213, 14,108,251,191, 7,
+151,140,144,131,225,210,195, 8, 28, 87, 9,108,251, 3, 75,127, 80, 66, 97, 99, 83, 83, 83, 91,187,111, 31, 49, 93, 1,202,207,
+ 64, 6,150,242,192, 66, 31,114, 97, 8,156, 12, 13, 13, 37, 88,250,171,137,137, 3, 75,127,102, 38,166,172,152,232,239, 63,126,
+246,206,157,203,197,201,249, 3, 8,190,127,103, 98, 97,126,124,254,188,172,161, 33, 46,189,144, 82,254,246,131, 7,200, 92, 50,
+128,185, 83,196,158,213, 21,174,126,201,255,217, 85,137,212, 2, 63,203, 19,114,155, 35, 86, 17, 92, 0,216,240,127,248,229,239,
+ 65, 87, 81,214,252,153,159,162, 21, 89, 4,197, 8,150,254,123,247,238, 85,144,148, 74,201,202,168, 40, 44,155, 50,127,134,153,
+145,209,140,201, 51, 10,202, 74,150, 90,154, 95,190,124, 89, 23,111, 87, 9,127,209, 15, 52, 25,200,197,175, 30, 88,250,139,138,
+138, 26, 26, 26, 50,129,123,249,192, 28,199,202,202, 10,108, 24, 73, 72, 72, 0,235, 0,160,108,112,112,240,104,233,159, 86, 14,
+ 29, 54,156,213, 89,129, 86, 7, 0, 4, 16, 74, 5,144,122,172,242, 27, 51,199,191,191,255,254, 49, 50,243,254,255,206, 0,108,
+ 6, 51, 48, 51, 72,171,177,254,250,250,127,207,188, 52,151, 36,188,117,192, 63,102,102, 72, 97, 7, 44,107,101,248,165,213, 31,
+222, 92, 51,125,230,124,166,159, 92,110,142,214, 59,246, 30,253,246,141,129, 75,136, 31, 83, 27, 39,151,250,247,111, 55,129,197,
+ 55,124, 84,134,129,225, 25, 19,179, 67, 92,124,242, 63,246,175, 91,182,206,243,243, 77,226,226,102,248,246, 22,152,136, 37, 48,
+181,255,102, 96,102, 5,151,254,191,255,252,253,249,233,247,183,223,223, 62,112,178,252,254,198,250,147,229, 55,243,111, 70, 96,
+ 65,254,233,251,159,175,159,127, 51,136,163,107,188,184,191, 83, 73,130,145,153,153,145,145,137,253,239,223,255,127,190, 61,250,
+249,247,247,211, 23, 31,223,189,255,242,241,243, 95,166, 31, 63,254, 48,188, 96,102,189, 32, 37,247,137,151,131, 19,211, 94,160,
+ 87,255,127,254,241,253,243,179,191, 47, 63, 50, 43,203, 0,211,223,223, 63, 63, 63,188,120,112,243,212,241,215, 15, 31,129,139,
+ 45, 22, 38, 96,232, 50, 83,243, 12,119, 72, 3,127,214,172, 89, 33, 33, 33, 6, 6, 6,236,236,236,125,125,125,228, 25, 5,105,
+254, 91,232,232,136,139,139, 3, 75,112, 31,123,123, 41,210,235, 0, 65,112,185,207, 42, 38, 6, 52, 1, 72, 18,236, 7, 0,219,
+254,172, 63,127,174, 93,187, 22,185, 43, 64,252,112, 16,217, 0, 82,238, 35, 95,201, 2,172, 62, 9, 86, 0, 95,191,125, 19, 21,
+ 18, 74, 12, 9,249,240,241,211,235,119,111, 89, 89, 89, 32, 0, 88,196,176,115,114,125,122,251,230,243,227, 39,188,178, 56,167,
+230,128,165,255,146,181,155,145, 43, 0, 72, 63,192,220, 72,207,203,209,158, 8, 87,127,102, 96,224,229, 21, 54,112,241,227,222,
+189,105, 46,125, 70,255, 47, 45,156,240,115,199,124,177,217,231,128, 53, 1, 51,159,208,159,247,175,128,165, 63,176, 67,240,245,
+207,127,102, 28,195,168,247,239,220,217,182,105,235,194,217, 11, 39,205,157, 54,163,111,130,144,176, 80, 75, 91,203,162,101, 75,
+109, 45,172,231,205,157, 23, 20, 26,100,107,109, 75, 70,233,191,105,211, 38, 96,191, 86, 82, 82, 18,237, 2,106,180,145, 31, 96,
+219,223,200,200,232,207,159, 63,192,174, 0, 7, 7, 7,176, 2,184,113,227, 6,176,169,193,195,195, 3,236,237,189,120,241, 2,
+168,102,116, 44, 8, 81,128,148,119, 64,234, 0, 56, 0, 8, 32,148, 10, 96,182, 85, 59, 84, 29,211,229,255,251,230, 51, 10, 75,
+ 50,164, 76, 62,205,169,105,250,120,227,191, 89,181,204, 71,150,167,217, 50,205,250,135,165, 74,223,180,239, 93,154,202, 39,255,
+248,252,226, 92, 96, 7,226, 29, 48,225, 50, 48,252,148, 87, 55,226, 96,103,249,254,245, 39,195, 47, 80,197, 0,236,139,189,122,
+247, 30, 83,239,132,254, 34,208,221,241, 39,230, 50, 49, 65,150, 49,128,134,107,254,125,191,250,227,231,111, 78, 30, 14, 6, 54,
+ 80,197,240,249,211, 39, 49,164,251,167, 80, 60,240,239,215,191,127, 44,192, 20,240,243,231,207, 47, 44,204, 44,191,152, 24,158,
+127,250,195,245,231, 47,219,191,255,172,204,223,152, 89,254,124,253,246,229, 23,150, 69, 29,188, 60, 95,255,252, 97,252,249,235,
+ 47, 48,123,223,186,243,232,201,243, 55,223,127,253,254,244,229,221,151,207, 31,126,252,253,197, 8, 76,244,223, 62,126,250,118,
+255,225,211,143,111, 63,127,101, 96, 80, 65,211, 14,116, 22, 36, 71,252,249,248,245,201,133,235, 47,175,223,255,244,249,206,231,
+ 15, 31,254, 51,176,176, 50, 51,254,103,100,101, 98, 2,245,161, 8, 30, 83, 82, 26, 87,138,103, 44, 8,139,127, 89,160, 81, 6,
+204, 30,192, 26, 23,249,176, 73, 82,155,255,192, 90, 4, 52,198, 45, 42, 74,252, 41, 99,216,139,117,112,185, 15,172, 3,240,116,
+ 2,174, 60,125,202, 0, 62,251, 26,216, 34,131,244, 3, 64,197,205,165, 75, 64,114,221,254,253,248,235,128,226,250,122,200, 72,
+ 23,144, 93,210,208, 0,239, 19,224, 25,249, 65, 6,192,230, 63,218, 56, 50,228,208, 99,248, 88, 16, 86, 32,192,194,242,227,215,
+ 79, 96, 8,223,184,119, 23,104,227,181, 91,183,127,253,250,205,196,192, 8, 12,127,160, 99,128, 45,142,239, 95,191,237, 94,181,
+ 50, 8,233, 48, 87, 52, 0, 47,253, 99,130,125,145,197, 79,158,187,164,170, 40,207, 78,216,225,176,177, 11,118, 85, 96,209, 15,
+236, 7, 0,145,103, 96,242,111, 22, 85, 26,150, 16,239,158,179,201,169,189,202,230, 96,119,138,252,123,102,199,223, 79,160, 73,
+133, 87,217, 86,242, 51,143,255,253,135,189, 41,163,174,170,206,197,197, 61,105,206, 84, 71,123,123,115, 75,139, 93,219,118,222,
+184,115, 11,216, 49,231, 96,103,183, 54,182,222,186,105,235,155, 87,111, 2, 3, 3,137, 47,250,129,205,246,123,247, 64, 81,118,
+234,212,169,140,140, 12, 60,189,219, 7, 15, 30, 40, 43, 43, 67, 24, 23, 47, 94,148,151,151, 87, 84, 84,124,255,254,253,153, 51,
+103,148,148,148,128,141, 12,160, 8, 80,106,180, 2,192, 3, 0, 2, 8,203, 28, 64, 26,227,197,255, 7,151, 49, 50,179, 48,228,
+206,205,127, 32, 57,169,111, 33,176,176,156, 94,123, 51,181, 77,157,121,207,172, 52, 89,205, 89,170, 89,192, 54, 55, 19, 19,202,
+224,134, 10,159,204,149, 75,235,192, 76, 96,193,248, 21,124,212,251,111,134,223, 63, 89,254, 1,155, 14,160, 50,125,253,134, 93,
+ 64,210,218, 19, 75, 25,177,227,242,127, 15, 67, 29,120, 23, 22, 88,202, 49, 48,176, 50,176,114,252, 97,252,251, 15,124,210, 83,
+120, 52,232, 76,249,135,199,102, 97,234, 5,166,203, 63,255,152,152,254,252, 97,250,245,243, 27,184, 27,248,157,153,153,251,207,
+247, 79,223,129,133, 48, 35,176,103,240,237, 47,195,183, 95,127, 48,253,249,231,215,191, 31,172,204,255,190,253,249,243,239,227,
+231, 47,191,153, 25, 89,127,254,249,253,235,255, 47, 32,193,192,246,143,137,145,129,145,253,223,199,239,127, 95,188,254,246,245,
+ 39,250,196, 53, 19, 35,180,195, 2, 44,151, 32,103, 81,253,254,241,253,227,187,119, 76,192, 80, 99,249,207,240,159,133,153,145,
+129,248,150,255,205,135, 55,213,229,213,241,140,252, 32, 15,136,115,114,114,194,107, 2, 96, 62,129,148,254,192,106,128,159,159,
+255,227,199,143, 31,128, 53, 16, 17, 99, 38,144,230, 63,176,155, 12,225,230,228,228, 76,158, 60,153,188, 78, 0,220, 4,200, 64,
+ 16,254,209,127, 70, 94, 94,160,131,203,202,202,128,141,232,223,239,223, 3,221, 92,145,147, 67,176, 31,128, 60,214,143,107, 62,
+ 0, 83, 87, 39,161,105,246,179, 96, 0, 97, 99,158,136,245,254,221, 59, 30, 94,222, 55,239,223,239, 63,121,146,133,137,249,231,
+239,223,223,190,127, 7, 54, 48, 33, 85, 17, 48,145,252,250,249, 19,127, 80, 99, 14,251, 0, 69, 32,157, 0, 85, 5,133, 71,247,
+238,144, 20,194,192, 58,224,235,235,147,219,215,207, 37,163, 31, 64,112,228, 7, 14, 46,172,154,109, 16, 95,200,174,168, 7,202,
+ 32,111,158,223,122, 7, 90,105,202,110,233,243,232,239, 31,174, 41, 39,177,106,249,244,233, 19, 59, 39,135,138,162,226,253, 39,
+143,223,190,126, 27, 30, 19,189,109,239,238,137, 29,189,235,183,109, 82, 85, 84,141, 11,142, 61,126,238,232,250,181,107, 3,113,
+ 15,197,192, 75,127, 96,209,239,234,234, 10,169,161,159, 61,123, 6, 44,253,241,187,246,237,219,183,182,182,182,192, 60, 14, 44,
+229,143, 30, 61,170,165,165, 5, 76, 81,178,178,178,192,206, 49, 19, 24, 0, 59, 16,240, 40, 30, 5, 88, 1, 64, 0,177, 96, 41,
+253,247, 45, 96, 96,103,103, 16,146,251, 38,107, 62,169,101, 6,195,223,175, 12, 47, 62,213, 44, 63,152,225,159,193,176,103,225,
+163, 23,175, 25, 84, 25,254,253,253,131, 86, 1,220,249,244, 73, 77,128,239,207, 79,134, 59, 7,150,168, 56,184,131,199, 72, 24,
+126,255,250,205,202,192,244,229, 7,104, 17,133,135,131, 17,167,176, 52, 86, 71,120,232, 50,110,187,248,159, 21,216,220,151,115,
+255,245,232, 48,164, 19,192,202,198,254,155,225, 7, 15, 39,232,238,192, 77,219,150,127,127,251,216, 66, 89, 0,203,192,211,191,
+127,108,191,190,255,102, 96, 3, 86, 2, 12, 63, 64, 89, 20,216, 43,252, 9, 44,218, 89, 88, 25,126, 48,252,255, 7, 26, 26, 2,
+138, 96,230,128,111, 63,254, 49, 51, 51,254,254,243,251,199,207,127,159, 62,255, 0,185,246,223,255, 95, 63,255, 1,107, 31,102,
+160,110, 14, 6,198,239,127,255,129,150, 16,125,255,252, 29, 95, 8,130,186, 2,255, 24,254, 51, 50, 48, 49, 1, 75, 7,230,127,
+255, 25,129, 12, 80, 45,248,143, 9, 88, 49, 49,254, 99,198,223,252, 39, 53,194,184, 96,203, 16,145, 75,127, 96,123, 7,216, 5,
+ 6,118,131,224, 45,101, 98,154,255, 10, 34, 34, 16, 46,144, 65, 97, 39,128,200,209,255,255,159, 63,215,214,214,254,124,251, 22,
+114,253,163, 10,184, 6, 98,253,249,211,215,215,247,233,171, 87,210, 84, 93, 97, 9, 31,225,129, 79, 0,160, 1, 99, 99, 99,120,
+ 15,224,234, 83,140,246,193,207, 95, 31,126,189,251,241,227,135, 0, 63, 63, 7, 48, 41,254,253, 3, 12, 88, 96, 89,243, 11,216,
+ 17,248,253,251,223,159,191,248,195,249,246,131, 7,240, 25, 96,228,177, 32,228,153, 97, 82, 1,183,168, 57,176, 29, 69,134, 70,
+226,231, 0,236,119,191,126,165,176, 6,216, 9, 96, 84,212,147,159,127,254,205,143,127,220, 44,140,191,142,108,184,121,239, 62,
+174, 4,242,253,207,175,179,199, 79, 77,232,233,183,114,176,169,105,106,216,185,125,231,210, 69,139, 45,237,108,100, 21,228, 88,
+184, 88,247, 30,222,187,108,225,226,117, 27,214,110,221,186,213,219,219, 27, 83, 59,228,158, 28,120,209, 15, 1,192,118, 12, 49,
+254, 2,166,121, 96,137, 15, 74,192, 10, 10,192,216, 4,118,215,128,217, 31,216,234,103,103,103, 7, 54,134,128,130,188,188,188,
+ 64, 53, 35,185,124, 7,182,108,182, 44,105, 70, 27,246, 65, 6, 0, 1,132, 50,176, 7, 26,249, 57,188,148,129,147,227,193,167,
+ 95, 12,223, 63,178,255,251,166,167,163,196,240,246, 27,195,175, 63, 14,250,106,160,133,153,191,127, 48, 51,130,135,104,254,253,
+197, 48,234,195,173, 15,143, 88,216, 25, 60,252, 10,151, 77, 2, 54, 82,126, 49,124,251,249,247, 59,195,134,253, 23,246,156, 6,
+221, 23, 47, 35,167, 8, 90, 99,143, 3,120,233, 51,254,254,193,176,105,235, 14, 19,183, 92, 80,243,159,129,149,153,147, 33,204,
+ 39,212,203,206, 31, 40,251,228,225,221,255,191,255, 98,111,221, 0,155, 99,160,201,234,191, 63,127,129,166,127,127,254,248,254,
+237,219,183, 47, 95,190,124,254,244, 17, 24,247,159, 62,127,249,241,229,203,247,239, 88,138,240,207, 95, 24,191,255,248, 11, 68,
+ 95,191,253,254,252,229,231,251,207, 63, 63,124,250,245,241,243,239, 15, 31, 64,228,187,183,127,222,189,255,243,238,227,159, 55,
+239,126,189,124,131,101, 4,137, 9, 88, 28, 0,179,214, 95, 70, 70, 38, 96,153,255, 31,228,142,255,204,127,255, 65,195,243, 31,
+ 56,187, 16, 51,255,171,105,169,121,116,219,209,157,251,118, 66,234, 3, 96,111, 0,143, 98, 96, 18,103,129,133, 97, 23,120, 21,
+102, 69, 69, 5,228,148,121,228,101,145,196, 52,255,197,197, 81,102, 69,178,179,179,183, 30, 58,244,140,136,197, 60, 88, 1,176,
+249,143,191, 10, 1, 54,243, 33,140,149, 43, 87,222,121, 1, 90,202,181,229,192, 1,184,224,205,155, 55, 69, 69, 69,105,148, 7,
+ 32,165, 60,242, 21,137, 16, 54,158,241, 31, 80, 69,203,199,251,239,239,223, 79,239,222,191,121,243,230,237,135,247, 95,191,125,
+ 3,162,207, 95,190,124,253,248,233,243,135, 15,192, 84,246,235,199, 15, 96, 53,128, 75, 59,114, 41, 15, 47,253, 33,108,228, 21,
+ 65,248,193,151,215, 39,247,172, 70,100,221,111,239, 46,208,186,188,120, 30,174, 0, 44,247,129,165,255,207,131,107, 30, 38, 26,
+ 2, 75,255,195,174,162,127, 62,190, 54,217,241,138, 5, 71,244, 2, 91, 18,169,249,153,119,110,222, 60,126,224, 48, 63, 47,127,
+100,120,164,128,176,208,185, 83,103,120,216, 56,184,185,185, 37, 21,164,150,175, 88, 94, 81, 93,245,133,184, 50, 29, 2,140,140,
+136, 58,205, 31, 88,190, 3, 11,122, 96, 75, 31,216,234, 55, 51, 51,211,214,214, 22, 17, 17,225,224,224, 0, 22,253,250,250,250,
+ 2, 2, 2,144, 85,161, 35,188,141,143,220,187,197,236,233, 2, 4, 16,162, 7,144,118,107,218,255,215, 15,126,176,114,236,121,
+197, 5,140,107,133, 15,207,153,215,181,108, 79,111,238,214, 82,145, 20,228,200,213,224,100,152,122,254,255,239, 95,143,153,193,
+227, 6, 88,202, 25, 30, 96,138, 5, 82, 23, 47,109,214, 55,240,173,171, 89,180,113, 93,223,174,253,215, 29, 45,181, 89, 88,216,
+119, 31, 62,247,159,153,229,215,223,191,248,221,234, 97,168,177,227,236, 13,134,222,142, 16, 95, 47, 31, 31,223,157,251,214, 3,
+ 27,232,222,238,145, 76,127,127,179, 50, 99, 47, 78,129, 69,255, 95, 80, 73,251,151, 5,216,210,255,207, 2,108, 2, 0, 27,194,
+160, 37, 1,192,134, 56, 35,168,127, 0,233, 37, 96,233, 63,126,231,101, 98,126,207,198,206, 4,106, 53,255,253, 15,108,237,255,
+251, 15,236, 61, 0, 59, 1, 12, 76, 28,255, 25,153,129,173,121,198,191, 76,140, 63,255,254,255,240,245, 63,159, 56,214, 1, 25,
+196, 89,228,144,240, 96, 97,254,207, 4,170, 16,152,225,133, 33,168,110,192,221,252, 7,150,254,208, 86,234,130, 61, 64, 4,100,
+ 0, 43, 3, 6, 47,124, 65,244, 15, 60, 20,187,102,205, 26, 72,222, 83, 84, 84,132,120, 16,216, 44, 5,122,156, 96, 5, 0, 44,
+253, 33,205,127, 69,234, 21,184,172,224,129, 35,111,123,156, 19,155, 86,186,186,189,189,189,192,102, 62,176,160, 7,246, 6, 2,
+192, 39,227,171,171,171,195, 5, 31, 62,124, 40,194,206, 46, 1,235,145, 80,119, 14, 0, 8, 32, 87,178, 32, 95,123, 75,240,210,
+218,247,111, 62, 50, 50,252, 1,181, 40, 94,126, 99,227,224, 0,109, 42, 4,247, 0,190,127,249,242,243,235, 87,208,132,211,135,
+ 15, 30,184,239,158,133,148,242,144, 81, 32,115, 35,189,147,231, 46,193,165,208,166, 4,112, 54,111, 95,159, 60,121, 96,189,179,
+ 87, 4,180, 50,248,120,251,230,165,163,100, 52,252,137, 31,255, 1,245,213,222,125,125,148, 98,250,255,254, 37,177,217,231,190,
+254,249,255, 41, 90,145,127,217,253, 79,137,194,192,210,159, 9,119, 5,159,157,147, 83,219,209, 34, 38, 44,242,251,223,223,219,
+143,239, 69, 71, 70, 45, 90,178,100,227,134, 77, 81,209, 81, 63,127,252, 60,124,230,216,247,239, 95,210, 18, 18,246, 30, 63,142,
+185,142, 3, 24, 35,119,238,220,113, 3,119, 16,145,251, 1,111,223,190, 45, 45, 45,133, 79, 12, 96, 5,194,194,194,207,158, 61,
+ 19, 20, 20,156, 49, 99,134,169,169,169,161,161, 33, 27, 27, 27, 48,239,159, 56,113,194,194,194, 2,168, 0, 40, 43,140, 99,238,
+112,196,214, 1,104, 0, 32,128, 16, 21,192, 44,181, 44,135,175, 51,111, 61,121,255,220, 23,220,232, 56, 89,241,127,203,116,169,
+151,247,251,237,131, 24, 62,188, 99,104, 91,240,255,233,141,191,156,220, 31,222,129,186,239,140, 24, 91,171, 14, 30,216,104,239,
+224, 12,100,124,253,247,251,206,135, 71,192, 18, 89,133, 79,209,209, 81, 79, 92, 68,226,237,199, 79,160, 14,194,175, 63,207, 63,
+124,213,196,230, 8, 25, 57,203, 39,143,142,131,211, 44,139, 7,104, 37, 40,203,142,203,191,119,110, 89,243,242,205, 51, 97, 1,
+ 80, 23, 79,128,141, 85, 82, 0,251, 18,210, 95, 12, 44,108,160,150, 24, 51,176,209,205,244, 23,216, 71,249,243,151,149, 5, 82,
+250, 51,128, 23,137,130,182, 8, 96, 3, 1, 17, 21, 27, 22,151,112,177,253,103, 97,133,245, 36,126, 51,252,249,207,240,227, 23,
+195,223,159,192,134, 61, 35, 35, 27, 35,208,220,175, 63, 25,146, 19,186,208,182, 86,195,103,128,255, 49, 1,235, 13,208,248, 15,
+164, 13, 14,236, 1, 48, 49,131,170, 35,160,236,127,102, 96,183, 0, 95, 39, 0, 94,250,163,177, 65,117, 0,174,225,166,191,127,
+129, 69, 15,176,248,134, 84, 0,107,192, 0,200, 85, 86, 86, 6,218, 62,113,226, 68, 96,135,224,221, 59,124,187,129, 74,192, 96,
+199,142, 29, 95, 95,162,156, 88, 0,172, 15,238,223,191,207,128,119, 83, 24,230,206, 47, 96,209, 15,172, 78,128, 65,231, 99,111,
+ 47,141,123,254, 0, 88,178, 91,233,233,189,125,240, 0, 88,202,223,130,173, 5, 82,149,148, 44, 42, 42, 58,122,244,168,154,154,
+154,142,180, 52,158,105, 15,228,113,127,226,231, 0,144, 39, 3,202,203, 65,139, 62,239,221,131,182,253,225,219, 2,240, 44, 4,
+226,145, 22,251,254,252, 5, 48,101,125, 5, 54, 50,223,188, 6, 38,174,255,255,255,253,248,241,227, 63, 24,220,191,118,253,247,
+175,159,120,150, 0,161,244,110, 29,237,129, 8,190, 36,148,152, 33,160, 47,111, 78, 1, 75,127,144, 51,184,185, 55, 34,117, 2,
+ 76,108, 3,105, 90, 82,152,108,127,117,198,147,193,192,216,229, 85,182,149,196,180, 99,192,250, 64,144,141,241,237,187,247, 44,
+140,140, 44,120,199, 8,227,226,226,224,236,205,155, 55,123,121,123,110,217,180,101,213,170, 85, 13,213,181,187, 14,236,101,102,
+ 97,150,150,145, 6, 6, 36, 3, 27,150,133,124, 42, 42, 42,152,213,192,238,221,187, 25, 8,109, 1, 3,182,244,239,221,187,167,
+165,165, 85, 80, 80,176, 98,197, 10,126,126,254, 27, 55,110, 32,143, 13, 0,101, 21,200, 29,112, 27, 33, 0, 32,128, 80,230, 0,
+ 14, 24,166, 51,192, 86, 54,111,121, 37,224, 35,202,248,255,204,182,255,199, 55,129,234,126, 14,142, 31, 92,188,187, 5, 28, 94,
+ 88,186,128,199, 34,208, 55, 4,222,188,245,235,200,137, 54, 80,153,200,204, 1, 25,174,184,243,233,121, 93, 78,210,183,111, 63,
+ 63,125, 7,205, 1,252, 98, 98,119,242, 8,193,234,136,218,234,132, 29, 91,193,219,106,254, 66, 6, 91,254,120,232, 50, 70,100,
+245,113,113,177,243,129,231, 0, 88,255,253,144, 22,197, 94,190,176,252,255,243,139, 17, 84, 7, 0,139,138,191,192, 60, 10,204,
+169,127,192,115,182,140, 76,192,238,192, 31, 72, 69,133,163, 14,248,240, 93,224,251,207,183,108, 44, 32, 69, 64, 21,127,128,213,
+199,239,255,191,255,252,255,242,253, 31,168,249,207,192,248,251, 31,116, 48, 7,189, 32, 6,141,238,255, 5,194,255,192, 98, 1,
+ 60,254,195,200,128,110, 5, 68, 91, 94,161, 35,174,115, 57,174, 31,191, 78,106,108, 1,211,244,247,239,223,117,117,117,149,148,
+148, 30, 60,120,176, 10,188, 75, 22, 82, 25, 64, 64, 71, 71, 7,193, 58, 0, 8,176, 78,175, 5,199,199, 51, 16,177, 41, 12,178,
+ 53, 23, 25,248, 58, 56, 16,156, 61,150,128, 53,196,144,123, 3,192,134,191,137,186, 58,219,215,175,248,189, 76, 73,250, 70, 46,
+229,145,119, 81, 48, 16,177, 79,152, 83, 82,226,219,237, 59,127,255,252,249,244,254, 3,184,119, 5,138,226,247, 47, 95,125,122,
+255, 30,232, 42, 60,205,127,180,201,128, 37,107, 55, 35, 47,253, 68,158, 30,192, 14,190, 93, 60,177, 31,178,158,130, 97,227,106,
+208, 2, 80, 35,251, 8, 33, 49, 3, 90,150, 3,255, 81,234, 0,134,217, 6, 25,117, 47,254,253,211, 95,112,234,148,135,184,246,
+150,151,192,210,159,151,149,216,131, 35,129,145,187,239,192, 62, 39, 87,231, 77,107, 55, 52,119,118,148,127,252,248,255,223,191,
+149, 43,215,138,136,136, 60,250,132, 83, 23, 90, 53,192, 64,104, 11, 24, 16, 88, 90, 90, 2,219,248,231,206,157, 51, 50, 50,114,
+118,118,222,191,127,191,156,156, 28,176,133,100,111,111, 15,140, 32,160, 56, 43, 43,235, 8, 95, 2, 4,217, 7, 0,239, 1,160,
+113,129, 0, 32,128,112,238, 4, 6,246, 3,230, 94,222,163,243,247,170, 4,235,199, 31,255, 89,110,255, 23, 96,126,253,233,133,
+ 5,116, 27, 33, 19,182, 1, 25, 81, 33, 67,175,132,184,191,255,225, 77,245,255, 95,190,126, 98,102,225,103, 96,226, 42,235, 33,
+176, 83,201,195, 91,103,195,212, 10, 6,166,111,240,130,148,135,135,255,239,239,247, 12,255,191, 62, 60, 54,203, 68, 79, 14,231,
+224, 50,176,145, 13,206,154,127, 24,152,217,254,131,171, 1,112,233, 15,106, 46, 51, 64, 9, 92, 32, 33,173,102,214,228,134, 63,
+191,223,177,128, 23, 57,131,250,248,127,254,255,248,205,240,233, 51,176, 51,240,255,207,127, 38, 22, 86,198,214, 38, 44,139, 91,
+ 82, 82, 64,195,199, 11, 23,220, 97,252, 13,106,254,131,186, 25, 32, 10,220, 74,250,207,204, 8,154,139, 98, 41, 46,113,195, 99,
+117, 74,115,202,131,187, 15,200,136, 81, 96,250,126, 15, 94, 63, 99,108,108,108,102,102,246,250,245,235,187,119,239,130, 22, 38,
+254,251,183,118,237, 90,130,117, 64, 78,124, 60,167,152,152, 15,182,225,154, 28,112, 5,192,137,187, 40,135,100, 72, 52,189,210,
+226,226, 36,185, 31,216, 27,176, 6,247, 6,196, 56, 57,117,172,172,104,154,250,209,202,119, 96,136,161,205, 6, 19,172, 3,132,
+ 85, 85, 62,191,127,207,194,206,246,243,231,143,191,191,255, 0, 3,153, 87, 80,240,227,187,119,192,210, 31,127,243, 31,190, 17,
+ 12, 50, 1,112,242,220, 37, 96, 5, 0, 31,253,199,181, 47, 76, 77,242,253,155,183,111, 86,173, 94, 14, 23, 9,139, 78,126,247,
+139,180,117,159,152, 99, 62, 24, 34,140, 4,251, 1, 12,219,161, 7, 57,168,108,132,238,189,255,248,251, 47,241,110,112,114,112,
+186, 40,120,209,205,219, 35, 53, 54, 89, 79, 95,119,211,198,205,199, 47,156, 77, 75, 75,123, 68,232,144, 50,120, 53,208, 13, 6,
+ 4,119, 56, 2,107, 11, 96,143, 97,203,150, 45,192, 38, 17,176,223, 0, 89, 11,119,245,234, 85, 96,219, 31, 88,250,195,235,146,
+ 17, 14,208, 54, 3, 35, 3,128, 0,194,119, 20,196, 63, 93,151, 75, 12, 46,151, 72,177, 73, 71,199,122,210,164, 69,121,249,145,
+210,242,192, 84,251,147,149,157,227,201,243, 79,246,190,113,196,232, 53, 52, 84, 74, 72, 8, 91, 48,111, 29,195,191,135,192,150,
+253,159, 31,223,165, 37,249,229,248,254, 16,208,246,247, 31, 11,211,191,223,140, 44,172,255,255, 64,171, 1, 32,241,255, 47,145,
+203, 90,210,114, 65, 67, 10,245,149,153,172, 44,140,144,115,131,254,254,253,251,225, 51,176, 38, 96, 96,102,249, 55,109, 42,190,
+244, 23,159, 0,218, 28, 48,111,238, 77, 6,200,137, 52, 76,192,238, 2,104,204,167,168,196,135,160,189, 31,191,124,196,122,212,
+ 15, 65, 0, 44,131,128,157, 0,160, 35, 63,125,250,196,204,204, 12,100, 72, 72, 72,252,254,253, 27, 57,171, 0,235, 0, 92,103,
+ 66, 64,154,234,130,100, 45,247, 20,130, 4, 41,137, 37, 62, 38, 16, 39,113, 88,150,236, 57, 0,180,146, 29,235, 90, 32,130,219,
+193, 20,204, 76,129,228,141,131, 7,127,124,251,254,239,239, 95, 77, 99, 99, 93, 43, 59, 30,105,188, 1,248,159,241,225,253,187,
+160, 25, 23, 6,134,164, 32,232,148, 14, 80, 4,153,141,117,139,200,173,231,192, 36, 33, 24, 30,157,242,240,241,139, 19,135,182,
+ 0, 69, 86, 45,157,107,110,231,195, 43,110, 67, 76, 64,133,129,246, 97, 16, 62,233,225, 47, 35,246, 77, 8,143, 2, 37,182, 63,
+251, 65,173, 66, 71, 31, 12,206,156, 57,179,247,196, 65, 97, 17, 97,146, 14, 41,129, 84, 3,196,168,228,229,229, 13, 14, 14, 62,
+126,252, 56,176, 25,116,234,212,169,209,179,128, 48, 71,255,209, 74,127,180,249, 0,128, 0,162,254,165,240,202, 26,166, 91,119,
+222, 9,240,230, 18,147,150,125,247,249,143,189,119, 44,241,122, 45, 77, 53, 44, 77,171,210,211,235, 24, 24, 94, 10,242,178,200,
+ 9,253, 35, 60,106,153, 88, 66,185,155, 27,219,167, 3,201,252,130,156, 95,223,127,255, 3, 47,181,236,159,218, 79,164,222,164,
+100,208, 73, 65,243,230,220,248,247,159,185,178,194,159, 14,145, 10, 58,242,232,231,207, 95,191,126, 65,138, 69, 72,129, 56, 92,
+207, 7, 37,120,194, 4,241,128,152, 83, 63,113, 1, 13,123,123,226, 21, 63,191,119,211, 92, 85,134,108,187,222,254, 82,225, 17,
+ 87,113, 9,181, 33, 85, 35,174, 83,222,144, 0,211, 31, 70,246,239, 76,216,231,255,239,126,254,163,198,139,167, 64, 32,103,161,
+176,137,137, 9, 29, 18,137, 37, 24,140, 22,247,184,234, 0, 60,178, 0, 1, 52,122, 41,252,144, 4,163,183,186,143,130, 81, 48,
+ 10, 40, 7, 0, 1, 52,122, 35,216,144, 4,163,165,255, 40, 24, 5,163,128,114, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,
+140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16,
+ 64, 52,185, 20,126, 84,239,168,222,193,169, 23,114, 26,196,104, 88,141,234, 29, 81,122,241, 0,128, 0, 98, 65,203, 30,196,232,
+193,154,133, 40,209, 59, 10, 72, 5,184, 10,178, 81, 64,106, 40, 17, 25,146,143, 30, 61,122,250,244, 41, 59, 59,187,136,136,136,
+156,156, 28,221,188, 0, 63,243,117, 48,231,160, 87,175, 94, 61,125,250, 20,191, 26,105,105,105, 49,108,187, 79, 40,209, 59, 10,
+ 40, 7, 0, 1,132,190,236,151,224,206,123, 60, 27,172,208,244, 98, 30, 77, 76,211, 51,135,233, 95,184,224, 87, 80, 80, 80,160,
+169,169,137, 95,187, 52,234, 25, 56,200, 57, 33, 52, 52,212,197,197, 5,143, 94,170,212, 1,238,238,238, 64,114,231,206,157,116,
+208,251,245,235,215,181,107,215, 66, 46,133, 15, 14, 14, 54,196,125,159, 34,166,103, 9, 94, 10, 63, 99,198, 12,172,173, 13,252,
+161, 68, 76, 24, 2, 75,168,159, 63,127, 2,173,224,224,224,248,241,227, 7,176, 38, 56,125,250,180,190,190,190,138,138, 10, 46,
+ 45,214,214,214, 4,253,245,252,249,115,200,181, 39,248, 1,176,244,135, 28,247, 77, 76, 88, 17,179, 23, 36, 44, 44, 12,127,186,
+130, 0,121,121,121, 6,240,121,203, 64,191, 67,226, 14, 79,154, 4,166,219,162,162, 34, 60,150,190,127,255,222,220,220, 28,107,
+ 80, 3,245,106,105,105,225,209,251,242,229,203,218,218,218,209,230, 14, 37, 0,207,165,240, 0, 1,196, 50,108, 60, 73,255, 70,
+241,198, 25, 30,184,164, 2, 50,119, 16,212,190,127,255,126,120,246,248,246,237, 27, 23, 23,215,235,215,175, 9,214, 46,123,246,
+236, 65,102, 35,103, 72, 32,119,245,234,213,196, 7,194,229,203,151, 33,133, 56,154, 57, 36,129,140,140,140,236,236,108, 98,174,
+126,133,220, 4, 25, 23, 23, 7,244,111,111,111,175,130,130,130,160, 32,225,189,208,192,146,119,251,246,237, 16,182,135,135,199,
+142, 29, 59,176,178,241,244, 56,225, 9, 3,200, 48, 54, 54,158, 53,107, 22,164,160, 36, 38,193,124,252,248,145, 23, 12,128,165,
+ 63, 39, 39, 39,176, 50,248,240,225, 3, 63, 63,255,169, 83,167, 24,192, 27, 86,113,105,212,209,209, 1, 22,151,240,130, 27,185,
+ 21, 15, 44,208,129,228,137, 19, 39,162,162,162,136, 9, 97, 34, 75,127, 8,152, 48, 97, 2,229, 9,155,155,155,251,218,181,107,
+172,172,172,191,126,253, 2, 6,242,237,219,183, 43, 43, 43, 9,234,122,137,116,188,160,173,173,237,225,195,135,225,220, 55,111,
+222, 16,169, 17, 19, 60,128, 29,162, 55, 10, 40, 47,253, 25, 48, 46,133, 7, 8,192,222, 25,219, 48, 8, 3, 81, 52,146,171,204,
+ 16, 15,225, 34, 61,131,120, 10,247, 46,211, 51,144,229, 13, 34,121, 28,183,121,242, 33, 11,129, 2, 7,105, 40,242, 43, 64, 50,
+ 58,225,227,223, 63, 23,247, 47, 90, 0, 74, 41, 74,133,120,157,131,145,199,243, 53,137,154,119, 84, 46, 17,234, 23,121, 53,142,
+163, 70,199, 45,124,225, 33,238,148, 18, 44,185,152,116,166, 65, 55,133, 23,111,200,163, 64,251,231,156,187, 41,252,238,151, 71,
+251,203,204, 72, 49,133,167, 6,104, 90,129,223, 77,225, 9, 12,210,159,155,194,147, 39,176,243,110,192,236, 14,188,127,107,102,
+ 9,104,127,154,140,123, 51,133,175,181, 26, 99,120,213, 70, 1, 16,150,239, 26, 95,110, 79,128,133, 68,171,111, 2, 64, 8, 65,
+ 46,122, 70,173,159,124, 3,194, 31,178,142, 49, 82, 3, 72,140, 97, 24,148,236, 63, 7,236,239,189,159,215, 0,105, 35, 54, 18,
+233,244,230, 58,231,104,163, 41, 87, 50,203, 86, 96,173, 37,193,248, 41,200,207, 63,251, 79,172,210,124,225,215,166,240, 31, 1,
+216, 59,155, 19, 6, 97, 56,138, 11,210, 13,114,235, 16, 30, 29,160,189,101,129,220, 29, 35,251,184, 71,134,201, 49,217, 64,232,
+207,252,105, 16, 81, 19,219, 82, 40,244, 29,130, 40,228,160,201,251,240,144,247, 73, 1, 96,155, 21,239, 84,130,205,134,181, 60,
+171, 1, 44,187,223,250, 57,158,217,255, 20,157, 9,133,193,218,114,120,250,242, 52,208,122, 96,255,155,185, 20,229, 46,165,240,
+140, 53, 46,126,133, 91, 2, 83, 49, 3, 99,113, 6, 40, 21,215,255, 90, 20,120, 7,155,165,240,197,208,195,215, 65, 0,134, 97,
+ 32, 7,132, 16, 46,207, 86,120, 46, 80,130, 24,227,113,114,130,253,179, 42,139, 0, 72, 14, 72, 77,100,181,121, 11,222,207,181,
+207, 95, 88,216,216,109,231,156,214, 26, 37, 80, 74,113, 13,251, 35, 6,172,210,182,173,233, 55,154,217,223, 90, 43,155,113,149,
+ 3,246, 48,142,227, 65, 8,240,222, 27, 99,246,158, 78,211,116, 77,224,109, 75, 56,238,186,174,239,123, 49, 28,127,251,191,100,
+255,102,171, 20,254, 33, 0,123,215,110,195, 48, 8, 68,163,140,132,216,129, 79,155, 53,178, 6, 27,100,141,136, 58, 29,107, 32,
+209,177,131, 27, 40,242,146, 83, 40,130, 13, 1, 81,230, 10,203,182,140,125, 6,241,222,221, 67,226, 86, 18, 64, 45, 92,252,184,
+ 50,188,138, 3,180,214,163,121, 64,215,195,238,171, 46,215,199,253, 38, 38,126, 16,240,135,121, 85,123, 27, 99, 28,165,132,137,
+126, 46, 69,225,129,218,136,149, 48, 3, 39, 8,128,140, 26,130, 3,142,250,138,212,255,211,167, 40,124,217, 59,158,138,194,211,
+205,198, 64, 75, 41,203,122,146, 82,170,228, 4, 13,229,167,142, 66,234,162,240, 69, 11,218,181, 16,194,249,189,151, 56, 78,240,
+ 69,239, 61,109,190, 68, 69,225, 95,181,166,183,205, 90,219,128,242,130,254,200, 54,190,216,104, 72,213,193,195,228,240,104, 42,
+ 48, 97, 41, 37,198,152,115,142,115,142, 81, 35,145, 13,151, 66,136,156,115,183, 57, 16, 31, 71, 99,204,145, 22,180,220, 16,118,
+ 32,161, 4,167,162, 91,224, 57,198,136,208, 31,124, 0,183,255,208,223,181,167, 0,162,102, 5, 64,245, 73, 96, 50,234, 0, 96,
+115,146,164,126, 0, 36,107, 45, 93,186, 20, 77,124,219,182,109, 64, 65, 34, 13, 57,113, 95,203, 66,241, 26,241, 35, 63,240, 6,
+ 38,188,169, 8, 76,190,144,194,136,212,210, 31, 94,135,145,212, 60,132, 52,255,209, 46,133, 39,175, 19, 0, 55, 1,207,165,240,
+240, 38, 63,176, 76, 1, 54,102, 85, 85, 85,129,141,104,118,118,118,126,126,254,150,150, 22,130,253, 0,228,177,126, 92,243, 1,
+100, 84,237,192,130, 24,174, 6,243, 68, 44, 96, 3,159,151,151, 23, 88,234, 29, 59,118, 12,216,248, 5,150, 44,223,145, 46,133,
+ 7,221, 59, 77,232, 82,120,204, 97, 31,120, 91, 30, 24,221,175, 72,188,125, 19, 24,191,144, 21, 65,100,244, 3, 8,142,252,192,
+ 1, 48, 34, 74, 75, 75, 33, 57, 14,104,221,237,219,183, 25, 64,199,244, 26, 2,235, 63, 98,214,225, 80, 82,214, 67, 42, 15, 50,
+ 12, 4,198, 35, 48,118, 44, 45, 45,225, 7,207, 1, 93, 11,236,187,140, 22,238, 12, 72,119, 2, 35, 15, 1, 33,167,118,128, 0,
+ 26,236,147,192,244,169, 3,128,234, 33,253, 86,120, 71,152,200,210, 31,216,252, 39,219,107,144,230, 63, 90,195,255,197,139, 23,
+180, 46,253,225,205,127, 29, 29, 29, 8, 23,200,160,176, 19,128, 31,192, 71,255,185,185,185,107,107,107,129,165, 63, 68,220,192,
+ 0,116,201, 9,176,220,247,245,245, 61,114,228, 8,144,164,162,165,240, 48,129, 79, 0,160, 1, 96,179, 17,222, 3,192, 92, 55,
+ 13, 44, 83,128,117,192,143, 31, 63,128,181, 20,176,174,130, 92,183, 9,191, 20, 30,200,192, 95,250, 67, 42,117,204,177, 32,228,
+153, 97, 82, 1,217, 26,137,159, 3, 0,214,199,222,222,222,192, 28,196,197,197,229,224,224, 0, 12, 1, 96,148, 1,107,232, 5,
+ 11, 22, 48, 49,209,118,211, 40,176,172,135, 15, 31, 65, 50, 32,241,213, 9,176, 65,243,232,209,163,240,240,112, 6,240,165,211,
+160,171,199, 70, 1, 90, 63, 24,199,189,240, 0, 1,200, 59,131, 28,132, 65, 32,138,238, 61,141,186, 55,158,171, 27,238,194,198,
+112,136, 90, 57, 66, 87,156,130, 21, 97,107,244,153, 73, 8,193, 90, 1, 99, 98,226, 95,145,118, 51,105, 50,111,102, 24,202,252,
+250,159,192, 29,157, 0, 84,159,188, 39, 88,164,186,181,158,254,162,253,110,123,158, 46,167,105, 35,241,128,106,160,201, 84, 48,
+ 52,142,163,236,227,227,126,117,137,225, 45,125,156, 14,250, 75,250,255, 60, 20, 30, 27,228, 85,135,222, 14,133, 7, 34,178,192,
+ 63,231,249, 49,220,220, 24,147, 30,126,117, 40,124, 58,243, 83, 68,205,245,102, 59,233, 63,148,199, 66,239,189,244,234, 81,140,
+ 49,132, 0, 95,168, 6,168, 0,174,175,199, 13,229,176, 46,250,246,197,185,254,245, 40,146,155, 93,115,108,244, 67,105,173,225,
+ 62,244,119,206, 89,107,161,191, 82,138,216, 60, 12, 67, 77, 0, 56, 44,169, 41, 6,224,134,173,244,151, 77, 72,161, 63, 98,113,
+108,185,187,251, 79, 68, 5,144, 58, 1,185,238, 2,104,144, 78, 2, 83, 82,250, 3,211, 16, 25,221,100,200, 88, 16,176, 43, 64,
+124,233, 15, 44,238,129,165, 63,116,148, 99,221,250,181,224, 91,252,128,149, 1,131,147, 35, 3, 3,225,101,160,144, 85,137,144,
+177, 32, 96, 19, 21,114, 9, 42,176, 8, 38, 34,249,130,138, 90,248,189,240,164,150,254,144,230, 63,214,198, 62,121,157, 0, 72,
+181,145,147,147,131, 51,160,130,131,145, 47,133,143,137,137, 97,192,184, 20, 62, 54, 22,231,189, 17, 20,206, 1, 48,144,117, 41,
+188,176,176,240,219,183,111,129,237,253,215,175, 95, 3,123, 0,240, 75,225,129,253, 54, 96,124, 1, 75,127, 96, 53,128, 54,184,
+143, 12, 32,165, 60,100, 20, 8,237, 38, 50, 60,186,208, 74,127,200, 38, 0,100, 46, 25, 13,127,226,199,127,128,224,246,237,219,
+192,232, 0,122,208,210,210, 18, 72, 2, 3, 13, 88,158,110,218,180,137,153,153,153,152, 10,128,146, 86, 60,178, 9, 36,233, 50,
+ 6, 3, 32,227,220,185,115, 64, 55,219,216,216, 0,147, 22,176,151,137,188, 96,122,196, 2,200, 42, 32,180, 73, 96,228, 85, 64,
+ 0, 1,216,187,130, 20,134, 65, 32,248, 1,159, 32,248, 12,207,130, 63,242,149,130, 79,240,228, 55,188,116,154,129,101, 91, 75,
+220,228, 80,122,232,158, 36, 36, 16, 54, 58, 51,113, 71,246,119,139,192,223, 68,127,205, 1,151,180,255,199,241,147, 3,108, 19,
+151, 3, 8, 46,125,100,172,214,186,125,118,237, 11, 79, 71,208,246,253,165, 41,252,170,161,104,164, 59,241,228,173, 39,191, 72,
+ 39, 64, 70,160,191,108, 40,173,129,239, 24, 66, 96,255,119, 16, 0,189, 64,250,162,110, 41,254,206,117,175,231, 0,236, 53, 0,
+ 61, 9,145,147,156, 51, 16, 65,239,152,157,231,202,123,223,123,103,231,181, 57, 39, 25, 72,154,194,179, 38,108, 52,243,228, 35,
+ 68,191, 91,118,114, 4,238,113,179, 94, 68,183,237,164,198,160,227,179,148, 2,249,159, 82, 2, 31, 56,231,198, 24, 70, 2, 16,
+ 4,167,144,186, 87, 18,184,170,253,185,142,144,177,214, 26, 6,128,254, 24, 35,242,134, 95,153,127, 29,120, 27, 15, 1,196,130,
+153,223,200, 54, 11, 45,117, 34,183, 95,144,155, 69,180, 43,253,129,201,142,194,165,114, 36,105,127,252, 4,231,120, 61, 39, 39,
+ 23, 65,237, 88, 7,166,137, 4,192, 2, 5, 88,226,239,221,187, 23,126, 47, 60,124, 49, 40, 49,117, 24,214, 75,225, 33, 59,110,
+ 8,110, 10,195,172,212,115,115,115,241,148,254, 16, 32, 36, 36, 4, 25,226, 7,182,166,145, 27,254, 53, 53, 53,248,147, 28,133,
+251, 0,144, 67, 3,109,171, 4,193,250, 30,216, 21,219,182,109,219,159, 63,127, 62,124,128, 92, 10, 15,114, 9,176, 67, 0,228,
+ 2,217,196, 55,228,129,246, 34, 47,253, 68,158, 30,192, 95,250, 51,144, 59,199, 67,121, 29, 80, 81, 81,113,240,224, 65, 96, 52,
+181,183,183, 3, 91, 12,192, 14, 16,100, 75, 4,193, 33, 62, 50, 90,241,200,122, 73, 5,192,154,233,233,211,167,200,251, 0, 46,
+ 94,188, 8,236,186, 1, 91, 21, 68,174, 91, 29, 9, 0,109, 18, 24, 25, 0, 4, 16, 11,254, 66, 28, 87,223,150,214,128,140,210,
+159,206,249,164,165,165, 5,255,254, 70,130,149, 37, 37, 67,186,144, 66, 19,178, 12, 31,200,128,236, 5,131,223, 11,143,167, 92,
+131, 92,236, 14, 44,188,144,231, 0, 32,205,219,178,178, 50,252,165, 45, 86,189,164, 14, 25, 17,217,240,167, 86,151, 20, 57, 28,
+ 48, 47,133,199, 95, 7, 0,131,197,219,219, 27,216,146,101, 99, 99,251,249,243, 39,176, 14, 0,134,176,128,128, 0,176,192,194,
+115, 80, 7,114, 62,130, 79,255, 2,237, 5,170,135,231, 29, 92,185, 12,146, 36,208,182, 13,147, 58,247,139, 57,230, 67,210, 40,
+ 16,164, 14,128,111,254,202,202,202,130, 48,128, 61, 33, 60, 90,158, 61,123,134,188,219,107,197,138, 21, 4, 79,248,193,165,151,
+ 36,112, 1, 12,208, 4,159,128,193,104,185,207,128,116, 39, 48,114,209,143,188, 10, 8, 32,128, 88,168, 88,190, 99,234,165, 79,
+109, 65,255,210, 31, 8, 68,193,128,108,237, 74, 96, 64, 45,199,192,199,127,144,203, 62,172,151,125,146,125,228, 3,133,122,177,
+246, 6,136, 4,100,207, 1,160, 37, 9,172, 93, 46,130,201, 6,216,173,188,123,247,238,254,253,251,191,127,255,254,247,239, 95,
+ 3, 3,131,176,176, 48,130,113,119,226,196, 9,120, 55, 2, 46,130,204,198,149, 42,224,141, 3, 72,205, 1,204, 65, 4, 43, 27,
+ 56, 8,163,236,254,100,178,115,144,180,180,116, 96, 96, 32,126, 53,205,205,205, 84,215, 59, 10, 72,170, 3, 48, 75,127, 32, 0,
+ 8, 32, 22,106,149,161,163,167, 53, 13, 56, 64,139, 2,226,143,132, 29, 66,158, 26, 16,163,148,193,128,120,245,192,254, 13,145,
+231,252,224,105, 28,144, 81,221, 82,171,134, 38, 21,136,137,137,145, 29,182,148,232, 29, 5,196,215, 1,184,164, 0, 2,104,244,
+ 82,248, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70,111, 4, 27, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,
+163, 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,
+130, 17, 10, 0, 2,136,134,151,194,143, 94,192, 61,170,119,136,234,221,236, 55,133,120,189,190,155,114,168,165,119,163, 47, 9,
+122,253, 55,163,232,245,177, 1, 93, 47,202,200,200,248,251,247,239,251,247,239,255,250,245,139,133,133,229,201,147, 39,145,252,
+ 10, 59,207,156,249,174, 39,107, 97, 97,193,204,204, 12, 89, 68,187,229,200, 83,106,133, 21,196, 94, 56,128,236, 80,185,122,245,
+170,148,148,212,187,119,239,128, 36, 39, 39, 39, 3,108, 67, 31,154,189, 88,245, 62,190,178, 36,221,246,209,178, 51,106, 44, 98,
+110, 60,188,124,184,244,142,166,103,226,245,226, 1, 0, 1, 68,194, 81, 16,248, 55, 37, 82,241, 2,110,147, 51,107,174,191,124,
+207,203,204,172,199,205,180,203, 54,129,160,250,255,255,255, 50, 50,226,220,245,247,239,255, 47,134,255, 12, 76, 76,108, 4,205,
+ 25, 18, 23,112, 15, 54,112,243,230,205,254,254,254,222, 42, 16,123,195, 97,208, 25, 0,120, 20, 63,120,242,248,233,147, 39, 55,
+111,220,120,255,254,189,188,188, 60, 15, 47,175,135,171, 27,126,243, 33, 71, 36, 65, 0,174,203,203,128,226,196,199, 20,100, 23,
+ 52,214, 59,132,241,129,208,119,144,180, 6, 58,136,105,181, 16, 9, 26,141,251, 25,148,226,193,201,107, 1,195,217, 34,146,195,
+ 55,228, 13,194,222, 53, 34,120, 20, 2, 75,207,175, 95,191,238,218,181, 11,152,140, 67, 89,133, 37,100, 69,127,124,253,206,249,
+237,143,117, 73,170,157,111,248,150,185, 51, 54,239,221,235,230,230, 70,135, 36,241,247,239, 95,160, 27,244,245,245,213,212,212,
+206,157, 59,247,227,199, 15, 85, 85, 85,204,195,225,177,130, 63,127,254, 92, 60,115, 94, 38,217,176,204, 76,251,196,174,158,181,
+151, 29, 84,117,156,136,212, 59, 10,200, 0, 0, 1, 68, 84, 5, 64,204,145, 62, 84,185,128,219,245,242,122,185,151, 15, 24, 88,
+ 25,152,255,253,249,247,225,203,179, 55,140,127,174, 84,252,116, 12,229,214,192,115,116,215,255, 83,151,107,126,255,102, 17, 22,
+ 98, 97,102,102,249,249,147,233,198, 45,230,111,223,216, 76, 12,254,253,250,195,120,232, 4, 15, 80, 69,124,112,168, 0, 31,225,
+ 10,128,164, 11,184,113,213, 28,180,190,178,131, 1,114,140,101, 61, 35, 99, 19,214,186,240, 63, 80, 42,236,122, 40,125,150,132,
+195, 74,255,255,224,210,223,238,200,145, 35,120, 42, 0, 61,253, 93, 90, 90, 38,171, 87,243,157, 60, 14,218, 6,117,235,198, 77,
+ 32,153,146,184,238,227,151,156,207, 31,240,157, 36,225,234,234, 10,172, 6,128,165,252,190,125,251,176,158,148, 71,252,166,127,
+204,148,156,145,158, 62,131,184,202, 3,249, 26,122, 18,128, 82, 60,226, 80, 54, 50, 42, 0,152,239,240,156, 60, 10, 1,119,239,
+222, 61,176,106, 85,147, 75,152, 65,116, 22,155,184, 32, 3, 11, 19, 3, 3, 19,176,249,195,240,143,245,223,207,255, 94,241,105,
+143, 38,117, 28, 59,118,204,202,202,138,214,133, 41, 19, 19,147,129,129,193,129, 3, 7,128,117,128,153,153,217,139, 23, 47, 46,
+ 94,188,168,167,167, 71,204, 49, 51, 64,207, 58, 59,185,182,247,109, 42, 79,184,108,225,145,105, 97,190,167,100,242, 19, 53,211,
+ 56,172,122, 33,177,137,191,122, 0,202,146, 92,217, 15, 35,128,118, 33, 48,162,239, 5, 91,253, 15, 16, 64, 44, 68,102, 24,131,
+ 56,221, 76,235, 28,226,235, 0, 50, 46,224, 54,190,119, 92, 65, 92,138,193,192,140,145,135, 95,127,215,170, 55,255,126, 63,255,
+248, 89,139,227,223,133,109, 75, 63,255,103,224,213,196, 94, 7, 0, 99,158,155,139,229,223, 63,214,143, 31,217,216, 88, 88, 56,
+ 57, 89, 29,173, 24,254, 1, 19, 33, 35,235,171,119, 12,108,172,172, 44,140,191,254,252,254, 77,108,110, 37,177,236,134, 31,217,
+ 8, 57,136,106,235, 13,214, 31,191,127,167, 39,154, 16,172, 6, 8,214,169,248,246,127,214,131, 50, 3,228, 22, 36,172, 82,196,
+128,219,123,249,122, 86, 69, 66,216,197,161,203,213, 92, 62,145, 81,250,247,245,245, 1,115,123,113, 27,244,226, 39, 60, 57,220,
+193,225,163,154, 26,176,233,189,217,214,118, 18, 92, 48, 42,138, 1,124,135,219,148,229,171,240,213, 1,144,210, 31,114,176, 87,
+120,120, 56,228,212, 35,130, 5, 34,214,182, 63,228,192, 12,184, 59, 51, 50,136, 45,253,201, 4,198,125, 12,176,139,218, 65, 21,
+128, 81, 47,195,185, 98, 26, 89, 5,172, 29,167, 7,166, 41, 58,185, 50, 48,255,100,100,101, 98,100, 97, 98,100,102,253,255,159,
+241,223,215, 63,255,255,254,253,255,235,111,106,124, 86, 86, 93,254, 93,113,113,146, 54,181,145, 1,128,121, 65, 82, 82, 18, 24,
+206, 7, 15, 30,188,113,227, 6,176,254,182,180,180, 60,121,242,164,182,182, 54, 65,189, 71,246, 46, 15, 50,248,118,246, 51,115,
+ 84,253, 23, 27,195,137, 57, 5,225, 61,229, 31,202,123,150, 42, 25, 70,225, 41,220,225,197, 11, 48,138,209, 68, 40, 57,143,114,
+ 36, 0,128, 0, 98, 33,166,144, 90,182, 99,169,178,138,114,122, 83, 42, 49,117, 0,121, 23,112, 91,221,220,167, 45, 47,203, 40,
+ 37,203, 16,152,245,255,235, 87,134,119,111,133, 94, 61,253,125,116,235,215,119, 63,185, 25,254,190, 56,184,233,159,148, 10, 63,
+ 63, 63,214, 26, 0, 88,250, 63,125,206,114,245,182, 56,232,200, 66, 6,102,126,222,191,134, 90,223, 21,229,153,216, 88,152, 88,
+ 89,216, 68, 5, 24,127,254,252, 1, 63, 67, 31, 15, 32,245, 2,110, 72,233, 15, 41,250, 65,126, 63,242,251,251, 47,208, 5,191,
+206,229,187, 59, 59, 93, 9,154,115,183,227, 46, 43,227,109,104, 52, 48, 62,101, 20,209,128,177, 95,137, 38,226,219, 28, 15,108,
+251, 35, 95,102,130, 34,149,190, 26, 44,133,175,249,255,230,178,100,205, 20,255,255, 12,255,219, 11, 54,152, 59,168, 45,155,118,
+184,119,117, 20,195,234,255,245, 69,211,164,212,137,109, 74,127,121,152, 46,205,193,240,237,237, 85, 96,227,139, 87, 76, 15, 82,
+250, 79,159, 62, 29,171, 98, 94,129, 43,106,106,192, 50,247, 24,176,159,112,242, 36, 3,248,206, 62, 16,128,239,240,143, 12,155,
+ 50, 99, 78, 53,211, 63, 89,172,218, 33,165, 63,176,237, 15, 44, 83,240,220, 59, 70,176, 41, 3, 41,253,145,234,131,244, 25, 51,
+176, 39, 75,166,176,247, 12,176, 20,195, 8,198,255, 66, 81,101, 25, 33,163, 50, 32,202, 27,181,207,195, 20,254, 30, 50, 96, 3,
+ 26,126,252,151, 80, 80, 80, 0, 17, 7, 50,128, 53, 1,147,106, 50,212, 96,176, 26, 52,189, 44,225,232,246, 34,223,195, 8,146,
+197,109,239,143, 31, 63, 36,228, 21, 24,254,253, 98, 98,103, 96,100, 97,254,243,249,227,143,123,247, 95, 63,121, 42, 99,229,192,
+200, 38,192,248,251, 23, 3, 51, 83,103,102,137,235,172,134,162,162, 34,178,203, 11, 92, 71,140,192, 75,100, 96,122,248,254,253,
+187,144,144, 16,176,125, 0, 12,237,251,247,239, 47, 88,176, 64, 83, 83,243,195,135, 15, 4, 59, 88, 64,189,242, 76, 39, 37,229,
+ 60, 62, 28,188,252,241, 61,251,226, 45,127,182,157, 88,146, 23,202,201,242, 13, 24,107, 81,216,251,187,163, 0, 47,192,140, 44,
+180, 62, 1, 64, 0,177,224, 47,250,129, 65,236, 88,101, 63,235,224,204, 52,134,244, 11,139, 46, 51, 88, 19,182, 18, 82,238,127,
+251,182, 20, 24,167, 63,126,204, 19, 18,218, 67,204, 5,220,234,111,174, 51,104,104, 50,120, 37, 48,124,126,195,248,246, 29,131,
+184, 36,195,167,119,188,204,255,249, 56, 24, 36,126, 50,188,250,242,225,251,190,245,252,129, 9,216,135, 62,191,177, 92,191, 45,
+ 4,236, 60,114,179,126,103,102, 98, 6,182,125, 94,190,228, 86, 87,249, 39, 35,201, 24, 23,250,247,255, 63,166, 15,239, 88,136,
+169, 0, 72,189,128, 27,185,244,103, 96, 97,190,247, 28,148,123, 31,189,252, 33, 39,206,161,154,176,185,179,211, 23,191, 33,192,
+210, 31, 88,238, 51, 51,190,249,251, 95,132, 93,140,145, 59,226,217,191,127,239,126,252, 88,253,247, 76, 25, 37, 61, 21,130,181,
+ 87,245, 20, 63, 75,161,154, 41, 27,146,121,152,228,128,220,172, 92,117,125, 51,165,165, 83, 15, 54,246,101,207,156, 73,108,103,
+ 25, 88, 4,165, 23, 94,129,132,191,141,141, 13,176, 2,192, 85,250,131,106, 68,135,183, 12, 12,151, 24, 24,174,124,120,201,163,
+ 42,199, 48,123,246,151,253,251, 25, 84, 85,129, 78, 5,149,114, 64, 65, 80, 23, 83,247,250,165,139,178, 88, 75,127, 96,219,246,
+ 31, 24, 48,128,239,147, 33,181,192,130,179,145, 75,127, 6,208, 52, 0,206,216, 1,118, 11, 32,101, 56,214, 90,246, 31,172,220,
+ 1, 54,118,128,225,176,249, 16,202,132,219,244, 25, 51, 33,253, 11, 5, 5, 5, 96,246,153, 56,113, 34, 68, 28,200, 0, 86, 0,
+ 59,119,238,132,159, 91,201,128,161, 23,210, 29, 1,234, 74, 77, 77,197, 50, 62, 14,235,244,204,154, 61, 27,104,239,150,195, 79,
+209, 74, 67, 22, 94, 94, 6, 86,230,191,223, 62, 92,223,182,119,233,170, 53,211,158,129, 44, 58,213,200,167,106,231,245,243,209,
+227,171, 23,207, 94,190,127,235,227,139, 23, 87,174, 0, 35, 78,130,140,210, 4,243,216, 53,204, 18,252,217,179,103,181,181,181,
+ 61, 61, 61,191,126,253, 2,102, 73, 94, 94,222,175, 95,191,158, 58,117, 10,127,178,132,232,253,240,228,104,227,252, 71,115, 11,
+164,222,125, 5,246,230,153,100, 4, 57, 94,188,249,149,222,245, 71,223,196, 88, 14,119,175, 14, 82, 13,192, 35, 26,147, 49, 10,
+208, 74,127,228, 90, 1, 32,128,152,112,229, 25,200,185,231,136,222,186, 71, 52, 49, 22, 64,110,128,249,246,109, 25,164,244,231,
+ 56,253,224,219, 78, 21, 6, 66, 55,195,200, 28, 92,193,250,251, 59, 35, 43, 35,195,243, 7, 12,191,255, 48, 60,190,246,255,229,
+115,198, 55,207,121,254,252, 99,101,248,207,244,159,231,205,183, 63, 29,187, 79,224,210, 46, 45,193,226,226,192,160,173,246,139,
+133,153, 21,216,228, 23,225, 97, 55,212,103, 98,101,101, 99,103, 99,255,255,143,253,225, 19,118,208, 21,126,255,136,106, 44, 64,
+ 46,224,134, 4, 2,254,211, 58,129,178,200,151,138, 68, 78,120,178,247,236,123, 96,233, 15,169, 3,110, 63,249,206,224,178, 10,
+191, 9,192,210, 31, 84, 13,124,190,204,205,125,135,157,227, 51,176,244,255,253,251, 44, 51,179,210,175,175,111,105,151, 2,238,
+158,255, 2,140, 26,120,233,255,252,230,127, 35, 95,230,220, 22, 87, 27, 87, 96,247,252, 63, 88,150, 48, 88,182,108, 89,113, 27,
+ 35,143,168, 46, 48, 76, 61, 2, 51,143, 28, 57,130, 71,241, 63,166,199, 98, 98,208,210,255,243, 91,208, 41,217,250,250,160,210,
+ 63, 46, 14, 90,250,127,126,203, 9, 68, 66, 92,207,177,106, 15, 9, 9,113,116,116,116,114,114, 10, 15, 15,103, 70, 5,112, 17,
+252,174, 69, 75,201,196,214,112, 72,101, 19, 4, 96,114, 25, 25,176,180, 43,224, 26,221,220,220,208,218,218,192, 78, 0,228,216,
+ 62,196,240, 37, 42,216, 48,115, 38,176,116,134, 24, 14,247, 38,124,112, 28,206,197,106, 47,219,255,255, 76, 92,236,191, 95, 60,
+156, 89, 83,179,224,235,135,247,246, 22, 16,241,185, 75, 22, 52,148,164,168, 21, 69, 54, 93,222,183,234,253,125, 87, 63, 63, 34,
+ 59,184,192,226, 30,152, 11,206,159, 63,143, 84,101,206,192, 58,202, 7, 9,144,203,151, 47, 31, 60,120, 48, 50, 50, 18,216, 75,
+251,242,229, 11,228, 0,109, 96,191,132,135,135, 39, 44, 44,204,218,218, 26, 87,209, 15,210,123,124,237,173,157, 69, 69,149,189,
+155,235,165,174, 63,101,249,248,133,249, 31, 35,195,219, 47,191,254, 11, 43, 23, 86,181,250, 4,196,224,172,170,129,213, 56, 56,
+195,206, 4, 3,172,140, 81,128,171,244, 7, 2,128, 0, 98,193, 90,244,147,209, 49, 68, 19, 1,150,254,104,221, 2, 60, 23,112,
+243,127,120,252,159,241, 3,227,249, 99,255, 63,125,102, 20, 19,103, 96,227, 97, 60,179,151, 65, 84,140,129,153,229,207,175,255,
+191,254,254,123,247,143,225, 63, 35, 46, 87,253,127,243,142,229,248, 25,118, 41,113,150, 80,255,223,172,172,192, 54, 16, 35, 51,
+ 51, 11, 51,248, 14, 11, 14, 54, 70, 49, 81,134,143,111,255,146,116,207, 1, 49, 23,112,163, 52,255, 25, 24,150,231, 72,194,217,
+ 38, 21,247, 88,255,191,249,205, 40, 66,240, 10,111,142, 47,251,133,154,150,188, 46,206,120,243,142, 83,234,247,213,191,127, 65,
+ 21,198,195, 11, 18,180, 75, 4, 93, 51,138, 83,220,102,194, 75,127,136,160,133, 96,141,149,118,136,165,208, 85,160, 44,193, 60,
+179,116,233,210, 67,135, 14,189,125,235, 44, 44,188,151, 71, 68, 7,152, 90,152,152,152,240,204,179, 61,122, 4,172, 44,175, 64,
+198,141,128, 30,126,247,149,193,204, 12, 60, 9,113,155, 97,234, 84,134,207,159, 24,190,126, 97,248,242,149,129, 91, 16,223, 36,
+ 4,230,136,255,221,187,119,129,100, 91, 91, 27,144, 84, 83, 83, 35,111, 52, 3, 30,221,120,148,229,231,231,195, 91,241,200, 69,
+ 57,126,195, 21, 21, 21,225,163,255,112, 0,233, 4, 0,165, 16,157, 0, 84,144, 44,173,118,235,234,181,167,130,130,192, 32,205,
+203,203,155, 52,105, 18,241,246,218,254, 20,248,255,239, 75, 74, 91,181,110, 72,200,204,182, 54,248,253, 45, 51,111, 67, 2, 31,
+116, 76,255,238,221,187,129, 86,131, 51,248, 55,130,165, 63,164, 75, 7, 12, 28, 96, 43,219,192,192, 0, 88, 19, 0, 53,102,102,
+102, 62,254,140,165,138,125,242,228,137,191,191, 63,208,107,219,182,109,131, 92,153,201, 0, 94,210,195, 0,190, 71, 8,207, 60,
+ 45, 80,252,222,205, 11, 13,101, 73,194,170,171,207,175,142,191,244,152,241,209, 75, 22, 96,171,239,231,175,223,239,254, 11,103,
+ 39,103,145,183, 4,136,146,123, 77, 70, 20, 0, 8, 32, 44, 67, 64,192,106, 28,153,251,225,233,123, 98, 74, 76,120, 15, 0, 60,
+ 4, 4,138, 48, 96,243,159,253,202,211,191, 2,160, 70, 31,254, 11,184, 47, 60,120,245,147,251,175,250,247,243,210,143,110, 49,
+168,232, 49, 48,253, 97,224, 19,250,121,241,230,215,207, 76, 95,255,254,255,244,239, 15, 63, 3, 59,195,255, 63, 56, 18,208,191,
+ 47, 95,152,217,152,255,124,250,200,116,234, 18,171,131, 57,203,191,127, 44,143, 31,179,158,187,194,201,195,206, 40, 33,202,100,
+ 99,249,251,202, 59, 96, 33, 69, 90,130, 32,166,149, 84,190, 26, 20, 50,157,161,130,144, 66, 31, 58,176,243,255, 13, 43,176,117,
+255,255,253,162, 20,193, 72,188,119,210,177,190, 60,253,151, 1, 52,250,209,195,194, 31,249,242,225,153, 46, 25,110, 9,205,143,
+ 79,159,190,120,240,140,166, 81,174,111,166,244, 21, 28,165,223, 56,175,113,125,215, 90,215, 8,157, 33,183,118,209, 62,190,138,
+112,219, 63,208,238,208,134, 13, 46, 2,199,247,244, 87, 51, 20,182,254,183,179,179,195,191,244, 83, 65, 70, 22,121,210,113,203,
+ 22,208,220,239,178,101,192, 78,192,255, 9, 19, 24,155,154,190,128, 42, 6, 6, 6, 85,117,193,226, 66,124, 86, 67, 26,191,192,
+ 14,193,202,149, 43,225,237, 98, 15, 15, 15,204, 82,146,248,106,158,160, 26, 96,137, 9, 44,178, 49, 43,128,190,190, 62,228,245,
+169,152,192,197,197, 5,126, 21, 59, 50, 0, 10,246,247,247,227,234, 16, 31,186,246,168,170,169, 36,185,190,172,242,215, 47,160,
+165,152, 94, 3,218,187,103,207, 30,172,101,162,157,150,220,188,185, 83,141,163,162, 26, 27, 27,177,214, 19, 64, 65,160,246,217,
+179,103, 19, 19, 56,192,210, 31, 50,197, 10,172, 38,103,192, 0, 80, 4, 88, 19, 60,198,182,198,252,247,239,223, 91,182,108,113,
+118,118,190,125,251,246,215,175, 95,129, 92, 96, 13,244,235,215, 47,200,181, 57,248, 75,240,159, 63,127,158, 93, 27,101, 23,212,
+180,243,224,221,251,207,153, 63,125,101, 98,102, 97,120,250,149, 51,175,162,154,160, 94,200,212, 14,254,177,160, 81,128,171,249,
+ 15, 4, 0, 1,196,132,150, 37,128,192, 1, 12, 46,194,192,189,211, 15, 63,126,255, 40,108, 70,212,218,103, 72, 41,207,197, 21,
+ 13, 44,253, 89, 31,190,253,207,200,200,150,252,150,129,208, 5,220, 44, 60,108,127,254, 51, 60,248,241,235,217,235, 55,127,175,
+ 28,100,184,120,234,231,165,243,191, 63,188,125,243,253,223,251,175,156,183,127,254,127,203,192,252,227, 47,214,210,255, 47,176,
+ 63, 44, 45,197, 44, 47,247,159,133,153, 5,152,230,128, 45,255,175,223, 88,111,222,226,228,231,100, 17, 21, 98, 55, 53,100,226,
+224, 96, 7, 15, 89, 19,104, 68,144,113, 1,247,163,151, 63,246,158,125, 15, 47,250, 33,165, 63,251,191,135, 64,212,224,206,242,
+ 8,216,244,197, 11,214,222,255, 39,218, 11,109, 56,223,255,250,247,201,221,167, 55,143, 94,125,241,224, 3,173,147,194,178,105,
+160, 10,254,211,171,255,192,210,223, 33,153, 37,168,158, 21,130,122, 87, 69, 49, 50, 48,226,207,108,254, 54, 7,227,139, 92, 4,
+ 79,236, 5,230,186,141, 71, 29, 24,192,199,229, 19,180, 81, 77, 67, 29,169, 10, 97,152, 50,133,225,206, 29, 80, 63,160,177,241,
+ 63, 28, 8, 10, 10,226, 28, 68, 2,143,221,255, 5, 3, 96,147, 31,216,246,191, 5, 6,192,162,176,164,164,132, 96, 56, 83, 2,
+ 32, 77,117,180,242, 20,216, 39, 0,122, 31, 87, 43, 30,222, 2, 69,107,254, 67, 0, 86, 65, 56, 56,204,254,129,145,137,103, 78,
+ 85, 43,207,150, 61,192, 44, 3, 63, 83, 58, 93, 85, 39,223,216,138,139,139, 11, 88,221,214,214,214, 2, 61,142,121,139,214,220,
+167,183,158,107,107, 73, 75, 75, 3,131, 11,179,198,130,244, 63,136,239, 27,193, 23,216, 0,155,252, 12,176,205, 19, 88, 47,146,
+131,120, 86, 86, 86, 22, 24, 17,192, 78,134,138,138, 10, 11, 11, 11,164,134,182,176,176, 32,166,169,174,172, 97, 56,107,151,192,
+165,109,245,182,150,154,220, 28, 76,220, 92,127, 57,217,127,122,250, 19,117,183, 1,176,188,130,184, 19,207, 88,208, 40,192, 3,
+ 0, 2,136, 9,107,152, 2, 65, 62, 24, 0,185,205, 25,205,191, 95,253,225,228,228, 32, 50, 52, 33,117, 62,151,251,157,255,204,
+ 76,181,235,190, 49, 16,113, 1,183,178,169,227, 55, 14,161, 23,255,217, 78,255,100, 60,249,254,247,229, 23,255,111,190,100,188,
+249,145,243,213, 55,174, 7,127,190,124,251,245,239,212,199,111, 88,111,224, 99,100,100,102,100, 96, 18,224,101,178, 52,102, 14,
+245,255,235,104, 14, 76,123, 44, 34, 66, 44,142, 54,140, 78,246,204, 86,230, 92,194, 34, 2,236,108,236,192,226,159,137,233, 63,
+254,210,159,212, 11,184,129,138, 65, 3,253, 12, 12,103, 58, 64,125,133,157,165,160, 21, 74,192,134, 63,243,255,175, 63,153,228,
+129,236,119,239,222, 17,115,131, 43, 48,112,128,249,121,217,151,175,223,127, 49,197,175,152,243,138,131, 19,200,160, 93,124,151,
+132, 45, 63,254,174,117,217, 98,104, 83, 31,216,252,183, 16,172,129,176, 91,179,183,204,192, 61, 9, 12, 44, 20,250,107, 24, 18,
+138,156, 5, 78,236,113,236,178,103,242,102, 56,112,224, 0,145, 73, 66, 94, 94, 30,206,118,114, 98, 16, 16, 0,118,176, 24,204,
+245,121, 57,216,152,153, 97, 61, 51, 19, 83, 83,156,105,148,137, 9, 50,226, 15, 44,250,213,144, 64, 19, 24, 60,123,246,140, 96,
+ 17,131, 60,136, 15, 7, 25, 25, 68,181, 16,129, 45,125,180, 27,181,128,133, 56,254,230, 63,242,220, 3,188, 1, 11, 97,163, 77,
+ 68,163,129, 95,140,140,255,190,253,100,149,144, 79,111,105, 73,224, 22, 16, 56,112, 28, 58, 52, 20,147,208,208, 51,231,118,223,
+242, 58, 93,167, 48, 65,197,221,155, 54, 97, 54, 80, 2, 50,210,181,117,116, 32, 19,212,127, 97, 0, 62,128,134,204,197, 58,224,
+ 3, 44,220, 33,115,188,144, 65,127,120, 89, 15,108,242, 67, 26,215,192,154, 0,200,198,229, 83, 86, 86,214,128,128,128,143, 31,
+ 63, 2,107, 38, 78, 78, 78, 81, 81, 81, 1, 1, 1,252,183, 72,194,245,178,179,179, 7,103, 76, 90,112,218,228,193,227, 79,226,
+252,204,150,234,140,122,138,255,185,249,248, 70, 75,103, 90, 55,255,129, 0, 32,128, 88,240,119,144,225,141, 98, 25,123, 41, 34,
+219, 14,240, 11,184,217,146, 87, 51, 16,119, 1,247, 61, 61, 23,150, 59, 55,126,124,249,244,233,231,239,215, 63,216, 95,254,248,
+174,197,194,246,244,255,215,247,255,127,127,254,253,127,239,199,255, 15,126,254, 11,198, 57, 38, 3,108,182, 50,190,126,207,120,
+250, 52, 59, 59, 43, 27, 43, 27,155,172, 36,155,163, 45, 19, 27, 27, 11,176,163,252,240, 17,227,229,171,156, 98, 34,204,127,255,
+254,199, 95,250, 51,144,120, 1, 55,104,140,168, 51,140,213,121, 26,144,249,246, 45,116,218,150,237,223,243, 95, 76,146,217,186,
+183,158, 63, 7, 21, 19,248,203,199,140,117,179,224, 85,227,106,216,125,181, 43, 46, 31,163,233, 30, 46, 85,231, 79, 12,171,254,
+ 31,221,115, 21,200,182,210, 6,237,170, 45, 43,168, 63,118, 85,187,103, 85, 84,213, 84,111,252, 14, 6,182,253,133,132, 32,163,
+ 90, 7,192, 53,156,203,255,255,171,193, 5,235,255,213,171,241, 93,144, 27, 18, 20,188,123,231, 46, 6,240,194,127, 71, 71,198,
+ 55,143,249,191,190,231,248,254,137,109,197, 66,198,252,252,255, 15, 95,125, 54,183,180,208,211,214,193, 63, 7, 0, 25,244, 7,
+166, 43, 6,240, 37,130, 16,241, 87, 96, 64,204, 56, 15, 48,102,129, 21, 9,114,249, 11,108, 50, 18,179, 11, 12, 50,104, 14,159,
+ 9,128,244, 6,240, 55,255, 25,144, 86, 61, 32,175,231,193,191, 20, 2, 82, 87,253,249,252,153, 85, 68,136,153,139, 71, 59, 56,
+164,201,205,181, 10,178,148,211,208,232,239,247, 31,172,194,226,186, 22, 14, 10, 50,138,147,174, 31,215,209,209,121,126, 26,229,
+ 70,210, 12, 80,210, 5, 85,114, 89,192,178, 27,188, 90,244, 15, 82,137, 15,108,148, 3, 69,224, 11, 76,189, 81,203, 2, 96,201,
+ 14,244, 35,100,156, 7, 24, 98,144,161, 30,100, 89, 60,165, 63,196,217,192,226, 30,216,222,191,113,227,198,185,115,231,128,145,
+197,205,205,253,237,219, 55, 34, 7,235,197,197,197,253,253,253, 79, 28, 57, 53, 97,245,110, 62, 70, 54,117,241,159,119,222,112,
+219,168,255,134,215, 16,184, 6,244,129,226,240, 12, 59, 58, 4, 68, 30, 0, 8, 32, 22, 98,198, 73,129, 65,249,228,224, 51,134,
+ 40,162, 74,127,120,137,134,102, 14,254, 58, 64, 86, 76,248,220,215,223,175,153,126, 63,250,241,147,243, 23,203,134,159,159,126,
+252,253,247,224, 7,195,233,111,223,129,241,234,225,225,129,107, 80, 30,146, 62,132,248, 24,117,117,254,220,186,205,206,196,200,
+248,251, 15,211,167,207, 76, 98, 34,140, 31, 63, 51,222,188,197,202,206, 10, 76,253, 44,255,254, 49,225, 47,253, 25, 72,191,128,
+ 27,188,102, 52, 11,216, 7, 0, 54,246,129,253,223, 78, 87,134,242,221,118, 5, 58,199, 32,141, 68,130,205,127,228,142, 17, 50,
+ 27, 82,198,225,111, 52, 49,212, 51,154,204,186,135, 57, 87, 1,221, 9,188, 7,223,229, 80,109,217, 91,170,167,250, 30, 95,245,
+223, 82,232,170,181,139,246,145,221, 87, 79,188,111, 1,214,162,173,217,155,129, 69, 43, 30,123,129,165, 63, 48,168, 3, 3, 3,
+103,207,254, 4,201,146,140,176,245, 40,161,161,136,232,222,124,216, 18, 83,111,118, 94,238,212, 73,147,129,205,255, 95, 47,100,
+ 31,127, 96,255, 7,234, 59, 49, 72,126, 21, 47, 77,251,188,251,132,186,150, 37,190, 58, 15, 82,244, 67,110,121,125,241,226, 5,
+164, 79,240,242,229, 75, 6, 82,230,250, 32,147,153,104,163,231, 51, 64,130,233,120,214,131,194, 99, 4, 62, 19, 0,236, 13, 16,
+211,252, 71, 46,164,136, 87, 12,108, 50,191,120,248, 64, 81, 89,245,223,159,159,140,127,254,178,240,242,241, 26,153,240, 24,154,
+254,251,250,231,239,183,159,255,255,252,101,248,251,175,124,122, 79,120, 84, 56,102,227,250,207, 10, 65, 60, 38,163,201,250,111,
+ 70, 87, 0, 44,226, 33, 35,254, 12, 72,247, 0, 35,215, 1,248, 61,168,174,174, 62,121,242,228,215,175, 95,187,186,186,158, 57,
+115, 6, 88,250, 3,181, 16,188, 51, 21,162,215,194,220, 60, 35, 57,227,254,147,251,177,201, 25, 39,119, 47,124,254,249,157,137,
+189,171,184,140, 26,122,194,198,150, 17,224, 5, 20,230,254,175,209,141, 96,196, 0,128, 0, 98, 33, 50,243, 16,217,246, 71, 46,
+209, 72,186,128,251,190, 77,164,160, 13,195,221, 89, 61,239, 56, 25,223,254,255,254,243, 31,179, 56, 11, 7, 19,199,191,255, 95,
+191,225,191, 19, 21,216,166,187,115,143, 81, 76,132, 65,128,159, 81, 71,235, 15, 59, 43, 51, 27,235,159, 95,127,216, 95,191, 99,
+120,246,244,173, 32, 47,203,237,251, 44,252,252, 2, 63,126,252,192, 95,250, 51,144,126,138, 3,100,223,128,137, 9,104,223,175,
+144,144,208,243,231,207, 11,116,158,195, 75,127,130, 70, 97,189,162,150, 40, 0,222,238,139,188,219, 14, 77, 10, 63, 16,214,123,
+ 58, 99,230,140, 91,123,248,122, 87, 71, 30, 95, 5,234, 64,149,132, 45, 7,245, 12,240,150,254,144,136, 3, 23,244,159,192,121,
+143, 1,173,100, 91,208,187, 23, 72,114,203, 1,243, 33,150, 73, 66, 96, 3, 31,104,130,136,216,174,191,159,207, 48, 50, 51,124,
+251,193,201,248,249, 15, 11, 19,139,184,178,166,155,156, 23,203,127,156,206, 6, 22, 40, 42, 42, 42,148,167, 79,200, 48, 49,176,
+ 14,128, 47,143,129,247, 3,136,159, 9,128, 20, 67, 4,155,255,100, 3, 39, 39,167,236, 85,179,154, 62,127, 48,176,183, 97, 18,
+ 23, 4, 89,247,251, 63,232, 56, 7, 6, 86, 70,102, 22, 70, 54,230,217, 51,250,248,156, 77,148,149,149,169,190, 7, 10, 50,212,
+ 51,125,250,116, 32,169,175,175, 79,146, 94, 96, 13,189,119,239, 94,102,102,102, 91, 91, 91, 96,240,162, 13,253, 3, 59, 4,192,
+130, 30, 45,216,225, 0,216, 99, 88,180, 96, 33, 27, 51,123, 72,100, 8, 80,141,141, 87, 10, 74,189,245,231, 15, 68,239,232,170,
+ 30, 90,140,255, 0, 1, 64, 0,177, 80,203, 26,170, 92,192,109,146, 86, 2, 44,148,127,237, 92,199,244,237,231,219,191,255, 21,
+205,108,236,229,228,240,151,164,192,100,167,167, 30, 7,222,235,203,196,242,255, 39,184, 97,192,240, 26, 54, 42,192,202,193,160,
+165,137,179, 33, 6, 41,193,201,187,128, 27,110, 2,100,205, 40,188,189, 15,100, 16, 83, 30, 65,236, 37, 47,168,195,174,135,130,
+ 3, 19,139, 59,195, 8,245, 30,224, 64,205,229,211, 76, 23,184, 59,137, 61, 7, 2, 92,202, 51,198, 23, 65,207,231,130, 4, 42,
+ 80, 16, 88,238,115,203,133, 18,212,254,242,185,219, 75, 6,183,127, 76,143,249,249, 62, 50, 8, 49,128,142,127,248,197,192, 66,
+ 98,210,162, 4, 64,234, 0, 50, 52,194,103, 2, 72,106,254,227,105,189, 98, 5,192,146, 93, 34, 47,111,194,174, 93,247,154, 55,
+132,178, 10, 11,128, 15,116,251,254,237, 79,126, 73, 37, 51,151,208,182,133, 51, 47,138, 48,186,145,114,152,207,223,191,127, 24,
+ 24,136, 45, 58, 9, 14,245,224,242,221,173, 91,183,128,164,134,134,198,219,183,111,129,189,109, 96,169, 45, 44, 44,204, 0, 59,
+159,142,141,141, 13,210,105,195,170,247,212,169, 83,255,254, 48, 90, 89,235, 3,123,120, 64,149,191,126,253,146,145,145,129, 72,
+125,252,248, 17,216,209, 1, 26,194,206,206,142,167,221, 9,201,218,200,140,209, 33, 32,226, 1, 64, 0,177,208,200, 92,178, 51,
+ 45,232, 62,236,204, 18,146,180,112,112,112, 2, 17,249,214,145,117, 1, 55,102, 53, 64,134,189,228, 89,135,199,181,180, 62, 3,
+ 14,220,192,103, 0, 31,198,131, 44, 24, 74,146, 33, 76,255,100, 63,127,144, 29,168, 20, 79,222,209, 96,192, 86, 63,193, 17,124,
+172,128, 36, 93,192, 82,143,139,139, 43, 48, 48, 16,114,164,243, 35,216,145,206, 71,247,238,134, 28,233,236,108,225,140, 75,239,
+236,247,237,169,130,149, 40, 66,120, 79, 15,197, 85, 7,144,225, 71, 83, 83, 83,200,146,127, 96,119, 28, 88,130, 3, 25,175, 95,
+191, 6,146, 60, 60,160, 85,206, 16, 17, 86, 86, 86,172,254,245,241,241,129, 40, 0,234,133,116,211, 33,203,186, 32,171,194, 32,
+ 34,192,138, 1,107, 3,110,116,145, 15, 49, 0,255,173,239, 0, 1, 52,122, 41,252, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,
+163, 55,130,141,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,
+130, 81, 48, 10, 70,193, 8, 5, 0, 1,196, 50, 26, 4, 67, 5, 24,226,184,220, 7, 15, 56, 63, 58,193, 51, 10, 70,193, 40,192,
+ 13, 0, 2,136,134,151,194,211, 65, 47, 27,219, 46, 78,246, 23,172,108, 31,254,253, 3, 45, 73, 4,157,255,201, 8, 62, 5, 20,
+180,110,152,233, 63, 35, 11,136, 98,248,179,121, 43,235,255,255,255,245,244, 18, 6,131,155, 41,209, 43, 67,202,178,135, 39,168,
+203,224, 70, 47,209, 30,213, 59,170,119,100,234,197, 3, 0, 2,104,104,247, 0, 14, 29,185, 99,102,242, 91, 80,128,225,221,123,
+198,243, 23, 57, 88,152, 88,188,220,255,238,222, 47, 10, 44,246, 25,153,152, 56,120, 25,156,204, 62, 48, 48,176,216, 88,254, 63,
+117,134,128, 79,247, 31, 3, 29,106,207,250,255,183,185,173,211,199,151,143, 46,223,126,248,247,219, 15,250,220,172, 59,210,192,
+245,155,231,126,253,248,198,203, 43, 69,210, 66, 88,172,203,186,137, 92, 8, 72,137, 94, 8, 80, 84, 84,132, 28,229, 15, 57, 81,
+153, 36,255, 34,159,132, 72,222, 90,210, 81, 48, 10,104, 4, 0, 2, 8,189, 88, 92,184,104, 46,126, 13,241,113,201,184,164, 40,
+209, 75, 54, 56,117,134,213,195,245,239,197, 75,156,108,172, 44, 44,204, 44,172,172,255,217,153,127, 51,176,240,178, 48,124, 55,
+211,254,195,193,198,254,159,129, 65, 82,156,193,207,235,223,205,123,248, 74,255, 59,215,111,169,104, 41, 75, 73, 11, 60,121,120,
+131,149, 83, 68, 75, 67,109,251,198,141,123,246,236,161,117, 29, 64,231, 11,229, 7, 22, 92,186,184, 71, 65,230,167,174,242,255,
+127,255,254,126,252,248,228,198,149, 51, 95,126, 74,154, 24,219, 18,169,253,227,235, 57,204,204,208, 61,107,119, 38, 84, 24, 52,
+253, 34,222,106,228, 82,123,237,218,181, 37, 37,164,237, 53, 1,150,254, 5, 5, 5,192, 14, 37,158,195,156,241, 0, 50, 47,148,
+ 31, 25, 0,255, 81,193, 12,224,128,155,133,237, 20,107,248,165,240, 48, 85,255, 97,251, 19, 17,161, 61,194, 47,133,135, 0,228,
+107, 32,209,214,253, 3, 4, 16,253,122, 0, 76, 12,212,223,204,237,229,246,251, 63, 3, 51, 11, 51,171,149, 57,163,152, 40, 19,
+ 11, 11, 19, 59, 43,179,134, 26,211,195,199,127,204,140,153,132,133, 56,182,239, 3,157, 41,200,252,255,251,255,255,255, 36,164,
+113,150,254,151,206,156, 81,144,146,185,116,252,196,201, 95,191,223,191,121,207,198,206,171,105,104,173,111,237,182,127, 51,104,
+135, 48,141,234, 0,180, 11,229, 33,103, 49,166,164,164, 12,254,106,224,194,249, 61,236, 44,239, 88,152,126,253,248,241,247,227,
+ 87, 78, 27, 59,194, 39,247, 94,187,113,142,151,227,173,147, 53,187,130,188, 50, 31, 31,255,239, 63,127, 94,191,126, 35,254,232,
+241,237,187,247,142, 29,125,103,101,237, 79,140,189,192,210,255,239,157, 86,178,157, 77,246,217, 27,144,219, 93,224,103, 1,225,
+185,209,101,176, 1, 96, 11, 6, 88,219,161, 28,127, 68,195,210,240, 63, 35, 3, 35, 25, 85,220,255, 71,235, 24, 79,166,192, 10,
+113, 6,216,101,107, 8,147, 82,102,124, 53, 11,159,140,181, 90,221,190,125, 59,132,237,225,225,177, 99,199, 14,172,236,209,210,
+ 31,147, 11,175, 6, 0, 2, 8,123, 5,112,244,200, 73,107, 27,115,234,186,227, 31,161, 19,249,137,188,161, 9,165, 82, 97, 97,
+126,255,142, 69, 66,140, 85, 66,140,237,203, 23, 86, 14, 86,150,191, 44,236, 70,186,140, 6,122,204, 76,140,172,160, 77,228,172,
+108,172, 76, 63, 25, 57,216,254,124,195, 89,250, 31,217,183, 87, 81, 82,244,202,197, 43,213,205, 13,112,241,214,198, 54, 38,102,
+ 70, 35, 99,163,237, 59,246, 18,172, 0,254,253,251, 7, 44,196,239,220,185,195,201,201,169,171,171, 75,240,236, 26, 6,140, 11,
+229,225,183,173,206,153, 51,103,160,234,128,243,231,207, 27, 26, 26,226, 87,115,229,218,185,255, 63, 31,200, 75,254,224,231, 99,
+103, 98,226,250,254,253,207,219,119,223, 15,238,153,192,193,103,100,110,102,135, 71, 35, 7,243,107, 53,197,255,218,218,154,207,
+ 95,188, 63,123,254,220,151, 47, 95,249,249,121,149,148,228,153,152, 89,255,254,125,116,254,194, 17, 67, 3,155, 65,155,133,128,
+205,127,248,237, 46,192,126, 0,176, 14, 32,242, 90, 21,140,134, 44,189,123, 0,144,164,187,102,205, 26,242,238,213, 34, 30,192,
+ 27,227, 51,103,206, 32,213, 30, 38,249, 96,136,222, 83,237, 60,104,141, 68, 9, 1, 38,105, 33,166,193, 19,158, 67, 23,192, 75,
+124,180,250, 0, 32,128,112,246, 0,128,117, 0,144, 36,181, 26, 56,146,119, 27,171,184,205, 36, 85,226,115, 8,164, 7, 71, 76,
+ 53,176,231,128, 24, 43, 11,171,172,212,151,207,159, 89,207, 94,145, 5, 93, 3,201, 8, 58, 12, 78, 91,245,155,186, 42,232,170,
+ 0, 54, 86,118, 54,102, 70, 99,189, 95, 66,130,255, 14,157,198,110,136,166,162,248,195,187,175,144, 75,127, 32,168,174,175,106,
+107,238,146,180,212, 19, 20,224,197,239,134,239,223,191, 3, 75,132,135, 15, 31, 66,184,192,166,135,151,151,151,191, 63,129, 38,
+ 45,218,141,146,200,160,183,183,183,184,184,152,206,219,220,129,165, 63,252, 74, 13, 60,224,231,215,167,138,210,223, 69,132,185,
+101,164, 37,184,184,185, 30, 62,124,250,247,239, 63,105, 41,222,171,215,143, 95,224,228, 54,208,197,126,241,195,229,203, 71,244,
+212,126,201,201, 41, 94,187,254,240,236,217,235,175,223,124, 6,198,179,160, 32,231,183,111, 95, 12, 13,181, 63,124,248,248,244,
+236,249,139,151, 57,245,117,141, 7, 97,206, 65,187,220,145,224,181,142,200, 35, 27,104, 71, 25, 3,217,240,225, 14, 50,198,145,
+154,155,155,125,125,125, 73, 61,173, 1, 88, 7, 0,237, 93,181,106, 21,174,227,216, 24,192,103, 41,163,245, 12, 32, 87, 66, 2,
+197,209,218, 4,192,130, 30,243,236, 0,248,241, 74, 64,255,166,167,103,144,212,201, 64,214,107, 86,249,229,116, 59, 15,188,232,
+ 31, 45,181,169,213,252, 71,142, 50,180,232, 3, 8, 32, 2,161, 12,172, 6, 32, 53, 1,145, 0,107, 65, 79,100,233, 15, 1, 7,
+ 15, 30,124, 10, 6,196,156,229,196,252,255, 59, 11,227, 15, 54, 86,214,243, 87, 68,153, 89, 88,120,217,190,241,113,124,231,229,
+255,251,244, 41, 47, 59, 27, 7, 59, 59,123,168,223, 31, 63, 79, 38,105, 41,118, 46, 78,236,119, 83,124,251,240,248,197,187, 47,
+197,117,117,152, 82, 31, 62,190,123,255,250, 5,193,171,196, 86,175, 94, 13, 47,253, 33, 96,219,182,109,215,175, 95,199,223,252,
+ 71, 62,255, 25,210,252,255, 8, 3, 64,118,125,125, 61,217, 71,197,145, 93,250, 19, 84, 6,108,254,115,176, 60,231,228,100,229,
+ 96,103, 83, 84, 84, 48, 49, 51, 19, 20, 20,100, 97, 97,102, 99, 99, 22, 18,228,120,250,248, 1, 46,141, 44,255,159,242,242,112,
+126,251,254,231,202,149,219,207, 94,124,124,244,228,211,173,123,191,158,191,248,252,250,245,135,219,183,238,169, 40, 43, 75, 75,
+241,189,125,253,104,112,102, 33,200,232, 63,178, 8,176, 55,128,114,183, 59,158,182, 45,120, 57, 26,214, 11,229,201,235, 64, 0,
+ 11,101,120,103,145, 72,176,119,239, 94, 96, 18, 37,120, 53, 35,242,229,239,200, 23, 2, 35, 91,135,203,106,136,177,144,187,195,
+200,235, 21,173, 42,228, 70,110,245, 67, 74,127, 96,219, 95, 10,212,252,199, 23, 92, 30, 30, 30,158,158,158,144,113, 30, 8, 3,
+194,246,128,129,209, 58, 0, 63, 0, 8, 32,162,230, 0,200,235, 13,144, 13,110,223, 6,117, 35,128,117,128,180,180, 52,254, 54,
+ 41, 11, 11, 11, 43, 51, 43, 43, 43,163,157, 53,195,183,175, 63,239,223,101, 3,118, 8, 88,254,178, 88,152,255, 7,214, 10,204,
+204, 76, 12,255, 25,223,189,103, 56,125,142, 5,116, 19, 8,182,202,238,220,249,187, 95,190, 96,153, 75,236,168,175,103,103,231,
+248,254,253,227,223,127,127,240,187,246,220,185,115,152,130,103,207,158,213,212,212, 36,178,249,143,220,166,219,188,121, 51, 92,
+ 13,141, 58, 1,104, 67, 61,240,210,159, 96, 6,126,255,238,149, 8, 47,227,159,191,255,126,253,254,243,250,205, 59, 86, 54,142,
+159, 63,127,255,254,243,247,207,159,127,127,254,254,255,240,254, 13, 46,141,108,172, 95, 57, 56,101,222,190,253,248,233,243,183,
+119,239,191,243, 9,235, 91,233,233,157, 58,186, 67,234,215,159,143,159, 62,170,171, 43,179,179,177,124,253,252,110,112, 54,255,
+129, 37, 20,218,101,138,192, 30, 0,145, 51, 1,192,154, 3,243, 14, 72,248,177,210,184, 0,252,114,133,140, 12, 33,103,103,196,
+233,111,192, 28, 1, 36, 55,109,218,244,230,205, 27, 34,231,165,246,236,217, 3, 41,253, 33,234,215,174, 93,139,171, 20, 70,238,
+255, 97, 94, 8, 12, 17,135, 92, 11,140,213, 4,200, 49,162, 64, 18,210,111,192,234, 65, 92,233, 25,232,188, 16,203, 61, 43, 25,
+ 24,194,251,191,154, 86,126,193,170,215, 44, 28,187, 7,145,199,250,113,205, 7,140,150,242,200, 35, 63,104, 61, 0,128, 0,162,
+126, 63, 11,173,189, 79, 82,243, 31,210,254,133, 87, 3,192,204,131,191, 31,192,204,204, 98, 97,246,143,153,137,229,244, 25,142,
+155,183, 57,188,221, 25,124, 60, 25,124, 61, 24, 37,197,217, 56,216,216,129,136,147,131, 93, 90, 18,200,224, 0,178,177,154, 80,
+ 91, 93,211,217,222,132,153,109,148, 21,229,249, 5,184, 57,254,253,250,242,237, 55, 45,226,227, 8, 24,192, 11,125, 56, 0,114,
+223,190,125, 11,236,233,211,174,177,143,220,172,131,112, 33, 61,113,130, 99, 11,127,255, 50,124,253,246,251,235,215, 95,159, 62,
+253,124,249,242,253,179,103,111, 62,127,254,249,229,203,111, 96, 13,250,245,235,239,143, 31, 62,226, 28, 56,250,249,231,199,143,
+191,191,127,255,226,229,101,147,149,230,227,226, 6, 53,247,148,148, 21,100,164,248,248,249, 56,254,255,255,251,251,207,191,159,
+ 63,191, 14,206,230,127, 81, 81, 17,214,146,157, 96, 39, 0,243, 46, 73, 8, 0, 10,238, 33,238,212,110,240,136, 10, 2, 64, 10,
+ 95, 96, 53, 0, 44,211,137,233, 31, 3,219,254,107,214,172,129,151,254, 64, 50, 36, 36, 4, 87,241, 13, 52, 28,243, 74, 72, 72,
+155, 0, 46, 14,116, 15,161,195,180,255,163, 13,228, 34, 15,127,225,210, 35, 34, 34,194, 8,107,231,147,170,119, 20,144, 84,250,
+ 51, 96,204, 1, 0, 4, 16, 81, 61, 0,186,181,253, 97, 5,205, 95,200,165,210,132, 29,102,246, 79, 76,148,253,211, 39, 22,118,
+150, 63,236,108,204, 7, 78,178,121, 59,178, 2,219,254,159, 62,177, 30, 61,195,205,199, 1,186, 74,194,195,229,151,191,247,127,
+ 38,166,255, 11,214, 18,101, 59, 48,115, 50,115,113,188, 99, 21,225,250,253,228,206,211,255, 78, 14,118,248,213, 3, 91,211,199,
+142, 29, 67, 19, 36,120, 13, 50,228, 82,239, 5, 11, 22, 36, 36, 36, 64, 68,224,247, 74, 2, 69,240, 95,115, 72, 9,128,180,253,
+ 33,205, 52,248, 10, 57,204,161, 94,172, 64, 80, 72,244,217,253, 43,192,112,254,245,251,223,143,159, 79, 30, 63,121,251,238,253,
+167,119,239,190,189,125,247, 29,136, 4,132, 20,112,105,124,249,230,255,139,151,111, 52, 53,149, 63,188,127,207,202,194,244,233,
+243,147,175, 31,254,105,169,124, 21, 23, 21,229,226,226, 98,103,231,124,254,226, 51, 35,179,224,224,204, 60, 88,175,113,135,204,
+ 4,224,215, 8,233, 31,192,239,146,132,215, 28, 12,164, 92, 41, 19, 22, 22, 6,111, 17, 67,110,173, 0,198, 90,112,112, 48,176,
+250,193,191,217, 7,173,237, 15, 1,200,253, 9,100,128,235, 74, 72,136, 56, 48,181, 64,238, 94,135,136, 63,198,102, 47, 80, 77,
+ 86, 86, 38,228,118, 29,112,181,241, 31, 82,164, 3,117, 65,220,143,167,230, 0,234,157,234, 40, 24, 62,225, 27,218, 88, 16, 80,
+ 4,162, 55,201,145,117,180, 16,167, 4,164,149,119,192,217,179, 58, 43,128,117, 0,188, 31, 0, 16, 64, 44,180, 40,250,129,173,
+126,200,108, 48, 73,205,127,164,118, 61, 51,242, 24, 31,158,123,196, 68, 68,152,153, 24,153, 69, 69,152, 85,149,255, 63,123,198,
+194,196,204,200,202,194,194,202,194,122,233, 50,183, 16, 55, 43,208, 28,107,243,191,156,156,236,255,254,253,103,248,255,151,200,
+210,159, 71, 92,246,229,151,255, 95,239, 28, 96, 97,100, 46,173,175, 38, 38,139, 62, 6, 3,100, 55,227, 25,255, 97, 0,175,247,
+135, 20,247,144,210, 31,216,222, 7,214, 4, 16,169, 79,159, 62, 1, 75,255, 45, 91,182, 16,115,161, 60,121, 0,114,241, 19, 48,
+ 72, 33, 83,148,196,180,253, 33, 64, 95,215,248,250,149,179,255,159,126,250,246,253,247,123,246, 31,255, 25,222,255,248,241, 7,
+216, 27,120,245,230,219,179,231, 95,108, 29,229,113,105,252,254, 75,228,222,253,215, 74,138,114,138,138, 50,111,223,190, 17, 20,
+248,171,170,202, 47, 38,170,196,193,201,249,225,195,151,179,231,110, 60,121,250, 73, 66, 70,123,240,100,152,255,224,219, 46, 33,
+ 5, 47,188,252,197,186,150, 31,203,104, 5,210, 10, 70, 96, 39, 0,126,151, 36, 4,244,245,245,237,218,181, 11,151, 94, 72,140,
+164,167, 11,194,172,251,143, 92,100, 67, 42, 0, 96, 43, 30,207,248, 15,210,240,209, 94,146,110, 55,194,117, 37, 36, 68, 28, 82,
+124,227, 42,196, 33, 75,140,166, 77,155, 14,153,225, 48, 48,208,135, 15,220,195, 90,244, 56,111, 26,128,232,101, 10,123, 15,209,
+ 27,234,164, 0, 15,152,176,254,107, 12, 12, 12,248, 91,255,192,188, 6, 95,224,228,233,233, 9,143,157,209,145, 31, 34, 1, 64,
+ 0,177, 12,146, 86, 63, 4, 68, 68, 68,144,164, 30,216,192,103,102, 6, 33, 77, 53, 38, 67,221,191,236,108, 28,160, 10,128,149,
+213,202,156,129,157,157,129,149,153, 93, 68,132,131,153,249,235,223,191,255,254,253, 35,106, 36,231,219,187, 23, 28, 50, 26,247,
+247, 44, 17,101, 97,138,173,174, 34, 70, 11, 39, 39,103, 85, 85, 21, 73,203, 64, 33,183,207,231,228,228, 64,184,144,246, 62,176,
+232,255,246,237, 91, 82, 82, 18,144, 61,109,218, 52,218,173, 2,130, 92,254, 7,191, 67,149,164, 85, 37, 50,242,234,103, 78,236,
+ 20, 19, 1, 54,220, 89,192, 99, 59,127, 63,125,254,245,238,253,119, 89, 69,109, 27, 43,123, 92,186,188,188,130,119,109,159,127,
+226,212, 85, 91,107,125,121,121,249,223,191,126, 24, 26,232,113,243,243, 63,188,247,232,233,179, 15, 71,143, 95,127,255,153, 63,
+208,210,126,240,228,138,204, 12,200, 0, 11, 99, 38,176, 64, 4, 23,232,255,144,202,125, 38, 38, 70, 60, 23,172,131, 46,103,255,
+ 15, 47, 0, 25,129, 41, 15,222, 9, 0, 50,128,165,149,135,135, 59,172,146, 97,240,142,174,197, 28,235,192, 85,106, 3,101,241,
+151,254,200, 0,168, 18, 87,123, 31, 79,170,192,188, 18, 18, 46,142,231,178, 48,120,205, 1, 44,127,193,205,127, 70,228,250, 3,
+191,189,200,122, 87, 21,242,128,194,133, 67, 28, 34,181,170,240, 17,164, 50,216,121,241, 55,174, 0, 65, 30,247, 31,157, 3, 32,
+ 3, 0, 4, 16,246, 10,192,202,218,140,194,113, 55,242,218,254,240,104, 35, 18,188,123,207, 40, 41,206, 4, 57,248, 97,215, 94,
+208, 64, 63, 59, 59, 7, 59, 27,187,175, 39, 35,144,226,228, 96,124,247,150,249,212, 89,222,191,255,254,202,202, 16, 30, 98, 6,
+ 54,255, 63,124,251,254,254,204, 54, 85, 89,214, 43, 79, 73, 24,146, 6,214, 67,102, 96, 64,188, 22,240,133,242,157,144,209, 30,
+ 96,111,192,220,220, 28,216, 90,244,247,247, 7,178, 99, 99, 99,105,215,252,135, 15, 4, 65, 90,115,196,140,252,160, 68, 43,184,
+148,191,117,227,218,179,123, 15,129,229,224,223,191,255, 57, 56,133,212, 52,117, 2, 3, 8, 92, 10, 38, 38,173,119,226,212, 14,
+ 96,143, 65, 87, 71, 73, 90, 74,228,209,227,151,239, 47,223,189,121,235,209,222,125,151, 30, 62,253,159,146,154, 75,164, 3,238,
+111,249, 76,182,175, 31, 60,120, 64,164,202,127, 43, 5,137,151,245,221,132, 87,239,221,249,240, 78, 0,104,212,232,222, 2,100,
+ 5,104,122,177,118, 8,144,203, 74,146,252, 75,106, 22,198,117, 37, 36, 49, 87, 69,194, 11,122, 52,101,196, 52, 47,254, 61, 92,
+187,102, 66, 28,168,251,226, 36, 7, 47,253, 65, 92, 47, 83,240,104,233, 5, 92, 21,192,232, 62, 0, 34,193,172,206, 10,228, 81,
+ 32,100, 0, 16, 64, 44, 84, 73, 58, 84, 1,100,180,121,207,156, 99,231, 96, 99,243,245, 2,214, 0,140,102, 38,127, 46, 95,225,
+100, 2, 95, 33,253,225, 3,147,148, 4, 51, 19, 35,219,197,203,108, 28,236, 12,191,126,255,122,248,136,147, 96,233,127,247,214,
+121,115,103, 31, 22, 17,243,187,183, 78,177,188, 88, 83, 86, 90,217,213,221, 78, 35,207, 34, 95, 40,175,163,163,243,254,253,123,
+ 32, 27, 72,230,229,229,209,103, 23, 24,169, 69, 63,114, 29, 0, 68, 23, 46,159,125,249,226, 37, 55, 55, 55,158,134, 63, 74, 65,
+160,103, 12, 68, 75,151,204,188,118,243,164,164, 56, 15, 7, 7,235,151, 47,191,158, 62,255,196,200, 34,155,146, 26, 71,164,213,
+ 60, 66, 69,100,251, 23,178,156,127, 0,192,185, 98, 6,229, 68,196, 66,210,179, 36,120,129,140,108,152,145, 33, 4,171, 54,200,
+ 41, 28,113,149,215, 4,203,113,242,238,146,132,123, 51,212,146, 29,228,224,239,207, 65,104, 20, 80, 15,248,196,212, 66,102,125,
+129,117, 0,178, 32,156, 13, 16, 64,232, 21, 0, 37,199,245,208,226,168, 31,194,169,135,129,241,253,123, 70, 46, 9, 70, 97, 33,
+ 70, 19,163,223, 28,108,204,236,108,191,133,133, 56,192,121,128,209,194,228,239,169,115,172,160, 46, 2,222,188, 4, 44,253,181,
+213,249,138,243,155,190,179,201,172,219,243, 84, 89, 13,212,150,231, 57,189,165,184,164,178,183,135,134,117, 0,228, 66,121, 96,
+147, 31,222, 45, 24, 42,215,156,130,246,124,233,146,172, 43, 58, 38,253,200,177,131,175,223,190,254,254,226, 27, 7,135,176,140,
+162, 30,145,245, 7, 3,101, 23,192, 82, 37, 84,255,255,255,199, 64,222,113, 38,247, 22, 64,151, 3,221, 91, 72,235,120, 33,105,
+216,103,144, 0, 55,159,112,130,109,121, 92,157,235,209, 57, 0,226,235, 0,204,210, 31, 8, 0, 2,104,200,223, 7,240,159, 1,
+180,194,135,145, 9, 24,243,255,133, 4,254, 31, 60,194,194, 1,218,254,203,226,231, 5, 76, 12,255, 4,133,255,252,249,203,248,
+239,223, 95,112,238,197, 9,244, 20,190,120, 7,135,126, 97, 81, 21,227,225,142, 10, 20, 90,182,254, 50,164, 14,248,253,119, 29,
+173,221, 79,198,133,242, 67, 26, 16, 95,226, 15,100,151,249,125, 71,154, 96, 5,138,208,106, 33,242,245, 2, 91,253,103,139, 24,
+ 70, 1, 14, 16,146, 61,101, 0,235,245, 17, 82, 7,224,146, 2, 8,160,209, 75,225,135, 12, 24,189, 16,102, 20,140,130, 81, 64,
+ 93, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 39, 46,141,130, 81, 48, 10, 70,193, 8, 5, 0, 1,
+ 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52,240,151,194,
+219,155, 73,227, 82,249,245,221, 11, 8,131, 91, 72, 2,194, 56,120,234, 41,178,130,159,162,226,184,244,238,238,135,238,179,117,
+ 45,132,174, 49, 96,127,253,146, 72,123, 49, 1,241,246, 98, 2, 52,123, 77, 12,165,112,169,124,115,255, 42,132, 33,162, 8, 61,
+ 23,225,204,249,103,212,242,175,199,110,236, 7,208,243, 75, 73,197,194,142, 2,158, 34, 14, 53,127,135,107, 26,181,226, 23, 89,
+239,205,155, 55,145,207, 71, 43, 44, 44, 84, 87, 87,167, 81,186, 26,213, 75, 21,189,151, 47, 95,134, 48,116,117,117, 73,213,139,
+121,197,211,104, 56, 15,136, 94, 60, 0, 32,128,176, 47, 3,253,243,231,207,143, 31, 63, 24,153, 65,151,106,253,253,243,155,141,
+149,133,157,157,157,212,186, 5,104, 8, 3,248,196,102,146,116, 1, 11,125, 96,113, 15, 41,250, 37,100, 21,128,228, 11,220, 7,
+205, 99, 22,130,192,226, 15, 82, 20, 78,221,116, 10, 72,102,251,153, 49, 12,110, 0, 44,244,129,197, 61,164,232,215, 54,177, 6,
+146, 87,207, 28,165,181,127, 55,127,249,178,243,235, 87,119,110,110, 32,201,240,242,229,169,242, 50,160,160, 89,103, 23, 77,125,
+122,224,192,129, 21, 43, 86, 0,211, 21, 92,132,131,131, 35, 34, 34,194,193,193, 97,180, 33, 54,168, 0,176,208, 7, 22,247,144,
+162,159,212, 52, 9, 57,185, 11, 82,244,147,148, 38,145,207, 55, 37,111,125, 39, 25, 87, 10,142, 2,128, 0,194, 82, 58,127,250,
+252, 69, 82,205,212, 94, 87,131,139,157,245,255,255,255,127,255,254,191,114,251,225,253, 75,135, 57,217, 89,137, 60,164, 19, 8,
+120, 56, 30,104,171,222,187,114, 75,233,235, 79, 5,226,139,126, 32,201,201, 47, 12,100, 64,138,126,172,189, 1, 60,237, 95,179,
+232, 10, 32, 3,146,236, 48,101,177,174,119, 66, 54,150,141,141,141, 1,188,191, 28,116,121, 0,248, 80, 82,136,123,152,152, 89,
+241, 55,186,129, 64, 82, 12,212,118,254,245,233,195, 79,112,181,247,229,207, 95,136,123,248,197,100,240,183,247,249,165,148,129,
+ 12, 72, 54,195,214, 27, 16,164,174,127,129, 32,231, 37,168,103, 0, 41,253, 33, 69, 63,168,109,190,107, 55,178,172, 15,222,152,
+250,200,253,230, 45,207,235, 15,111,239,136, 9,104,202,188, 81, 33, 38,114,129,109,255,149, 43, 87, 34,151,254, 64, 0,228,114,
+114,114, 74, 74, 74,162,245, 3,134, 55,216,179,103, 15, 73,183, 76,227, 57, 12,145, 22, 69, 63, 36, 77, 2, 25,152,105, 18,214,
+ 27, 16,196, 83,254, 2,211, 36,144,129,153, 38, 33,178,184,210, 36, 80,246,208,241, 83,204,204, 44,127,255,254,249,248,249, 75,
+ 84,176,127, 79, 79, 15,121,165, 63,157, 67,108,144,131, 45,216,214,142, 35,199, 2, 64, 0,161, 87, 0, 95,191,255,114,246,139,
+146, 21,227,231,226, 0, 93,162,242,247, 31, 3, 11, 51,163, 16,191,134,182,170,220,158,157, 91,255,254,254, 74, 76, 29,240,235,
+215, 47, 77,237,251,250, 26,247,153,153,254, 30, 56, 35,205,198, 74,248, 52, 87, 96, 65, 12, 44,106,249,249, 64,247, 47, 66, 72,
+ 52, 89, 96,149,128,171, 43, 0, 44,239,128,201, 46, 62, 60, 8,200,134,144,104,178,192,228, 72,176, 25, 2,244,151,140,140, 12,
+144, 4, 58,254,235,215,175,192,210, 31,114, 98, 51, 81,181, 29, 11,243,188, 9,235,217,249, 25, 94, 62, 96, 56,253,229,233,235,
+ 23,119, 22,247, 87, 18,108,248, 3,179,153,140, 20,104,104, 11, 66, 98, 29, 11, 34,207,191,120,206, 1, 0,150,239,192,162,191,
+ 57, 39, 27,200,110,134, 21,253, 75,110,221, 66,148,254,132, 14, 17,120,240,255, 48,131,217,211, 8,185,152,159,255, 84,216,255,
+253,191,254,102,239,249,221, 55, 85,254,101,225,247,111,127,127,255,247,239,223,145,143,191,134,176,129,130,192,126, 0,169,167,
+220, 92,191,126,125,226,196,137,180,188,223,156,134,165,255,170, 85,171,222,191,119, 93,189, 58,148, 24,245,144,211,249,233, 83,
+162, 1,203,119, 96,154,188,117,254, 24,176,232, 71, 78,147,251,182,174, 19, 23, 23,135,143, 5,225, 42,127,241,164, 73, 80,233,
+ 12, 63, 94, 21, 3, 0,227,241,197,171, 55,231,175, 92,131, 53, 11,126,118, 77,158,149,158, 16, 57, 90,136,211, 1, 0, 4, 16,
+202, 36,240,231,207,159,109,220, 2, 53,228,132,217, 89,153,128,165,255,139, 23, 47, 46, 95, 60,255,235, 15,144,249, 95,152,159,
+203,205,211,231,251,207, 63,196, 24,202,206,250, 74, 89,238, 5, 3, 51,163,150,234, 99,118,150,151, 36,149,254, 40, 45,205, 79,
+159,129,133, 62, 80, 10,179, 67,128,181, 52, 68, 6, 11, 87,174, 3, 22,250, 64, 41,204,198, 8, 26, 0, 54,252,129,229, 62, 31,
+ 31,223,189,123,247,128,133, 62,168,218, 35,186,244, 7, 54,252,129,165,127, 96,110,139,103,148,213,150, 43, 79, 95,124,103, 32,
+181,244, 71, 6, 79,158,189, 0,246,181, 69, 5,249,192, 85, 51, 51, 25,254,245, 8,142, 7,181,208, 88, 88, 9,150,254, 64, 80,
+ 59,101, 42, 16, 65, 74,127, 96,111,160,212, 13,220,238, 23,101,195, 87, 30,241,111,115, 11,145, 74,148,207, 98,101,226,225,102,
+224, 98, 98, 96,150, 22,183,182, 9,118,190, 39,213,143,127,240, 7,228,194,133, 11, 33,229, 62, 26, 9, 87, 64, 12,248,246,237,
+ 27, 65, 17, 26,129,180,180,180,208,208,213, 75,151, 46,165,188,244, 23, 18,218, 67,164,150,153, 96,192,200,200,136,124,101, 35,
+237, 74,255,214,170,194,213,171, 87,207,153,220,131, 92,250, 3, 69,166, 76,153,130, 39, 77, 34,151,254,152,105,210,211, 26,124,
+234, 20, 47, 55, 46,189,189,147,167, 67, 74,255, 87,111,222, 2, 17,176, 7,192,202,202, 50,125,193,114, 98, 46,189, 25, 5,196,
+ 0, 96,147, 31, 25, 33, 75, 1, 4, 16,162, 2, 0,150,122,194, 10,122, 10, 18, 2, 63,126,255, 5,214,214, 59,119,238, 88,180,
+112,193,165,139, 23, 75,139, 10,152,153,153,128,125, 1, 62, 46,118, 5, 61, 27, 96,147, 13,191,101,191,127,255,214, 86,125,200,
+199,243,109,222,194, 87, 76,140,255,205,116,111, 2, 69, 8, 58, 17,173,244,135, 20,253,223, 63,190,133, 87, 12, 64, 17, 92,122,
+209, 82, 30, 36,217,157, 90,218, 1, 79,148, 64, 17, 60, 86, 43, 43, 43, 11, 11, 11,127,250,244, 9, 88, 19, 48, 49, 49, 1, 61,
+ 8, 44,253, 33, 29, 29,130,167,113,173,221,176,190, 96,194,174,245,147,107,128, 53, 1, 23,183,208,227,191, 79,129,165, 63, 15,
+ 56,159, 48,227,213,139, 86,250, 67,138,254,143,207,238,106,200,136,125,254,246,131,157,139,157,225,239, 95, 82,253, 91, 57,123,
+203,213,115,199,117,148,180, 62,254,197, 89, 79, 67, 74,127, 96,171, 31, 88,244, 67, 68,128, 69, 63, 16,221, 75,111,220,117,237,
+146,182,153, 18,195, 91,156,145,117,145,109,139,181,131,168, 40,183,230,247,255,159, 25,126,190, 98,251,249,238,231,223,207, 63,
+254,125,255,199,198, 35,109,107,178,230, 66, 27, 46,141,144,161,127,200,181, 86,240,108, 15,103, 3,165,128, 10,136, 73,199,111,
+222,188, 41, 42, 42, 2,182,253,111,220,184, 1,228, 30, 62,124,184,173,173,173,166,166,134, 62,185, 8, 88,112, 83,165,237, 15,
+ 44,253,171,170,136, 58,105, 28, 94,232, 35,223,203, 72, 59, 0, 76,147,144,171,131,207,158, 61, 11, 44,247,129,105, 18, 82,250,
+ 51,128,111,109, 36, 47, 77,118, 37,248, 92,185,251, 88, 66, 73,146,225, 43,129,122, 26, 88,244,255,254,253, 7, 92,128,252, 1,
+162,199, 15, 31,144,228,120,228,238,194,104,215,129,120, 0, 16, 64,136, 33,160,159, 63,127, 26,106,104,112,113,178, 2,219,251,
+127,255, 49, 28, 61,124,164,177,185,229,223,127,134,219,119,238, 92,186,120, 65, 71, 71,159,153,153, 81, 93, 73,230,222,185, 63,
+156,120, 15,214,100, 99,121,165,166,240,140,129,133,241,241,243,223, 64, 82, 79,227,225,169,203,175,254, 51, 16,187,228, 6, 62,
+206,131,214, 39, 0, 86, 6,224,181, 64, 79,241,232,133,143,243,160,181, 71,128, 9, 17,180, 54,230, 53,246,190,200,159, 63,127,
+184,184,184,128, 69,191,160,160, 32,176, 57,249,245, 43,232, 32,104, 81, 81,209,183,111,223, 18, 60,163,234,199,123, 6, 51, 78,
+206,210,201,135, 93,245, 25, 30,158,103, 56, 13, 22, 4,114, 39, 21, 58,254,253, 71,212, 21, 52,240,233, 53,103, 99, 13, 22, 94,
+166,157, 7,174, 25,106,200,242,241,176, 31, 60,115, 71, 68, 81,251, 1,234, 42, 32, 92,254,221,116,237, 63,195,115, 6, 63,103,
+198,217, 91,238, 9, 11, 42, 6, 89, 51,226,241, 47,100,204,103,231, 87,232,121,215,255, 27,250, 25,164, 63, 50,166,214,255,111,
+108,102, 96,250,206,120,170,109,138,184, 56,214, 83,185,127,104, 60,148, 23,240,250,244,247,203,207,247,119, 22, 63, 90,118,196,
+239,189, 86,138,163, 91, 46, 15,167,160, 58, 7,139, 32,139,223,199,211,235, 78,155,154,152,226,236,108, 50, 49,193,195, 19,153,
+ 77, 60, 16, 17, 17,201,207,207, 63,114,228,200,206,157, 59, 65, 85,215,206,157,154,154,154,129,129,129,244,201, 42, 1, 1,191,
+168, 85,250,203,203,203, 19, 89,168,193,203,125, 72, 39,128,236, 51, 92,137, 4, 78,222, 65,192,126, 48,176, 2, 0,150,251,198,
+ 96, 6, 3,248,122, 59, 15,123, 19, 72,154,212,213,213,125,128,119,133, 9, 60, 77, 62,223,208,193,171,205,193,163, 90,176,170,
+ 35, 69, 95, 71, 66,221,167, 5,232, 29,172,171, 83,128,109, 59, 14, 14,208, 26, 19, 96,195,255,219,183, 31,100, 59,126,180,220,
+199, 5,240, 28, 6, 7, 16, 64,136, 10,224,223,191,127, 92,236,108,191,254,252,103, 98,100, 0,162,250,166, 22, 96, 53,240,245,
+235,151, 23, 47,158,139,139, 75,252,255,255,239,207, 31, 6, 14, 86, 22,102, 86,124, 67, 4,192,194, 84, 75,249,137,136,224, 39,
+208,144, 31,248,162, 79, 70,198,255, 70,218,183, 79, 94, 18, 39,102, 57, 16,164,153,143, 57, 28,132,167,249,143,220,232,192, 44,
+250, 9, 54,255, 33,237, 74, 49, 49, 49,200, 50, 39, 96,103, 5, 50,247,203,207,207,207,202,202,250,248,241, 99,252,211, 23,243,
+247, 28, 76,241,177,119, 0,179,111,253, 1,141,255, 0, 25, 14,106, 12,124, 45,251, 11, 75,172, 8,186, 25,216,200, 2,146,114,
+ 98, 66,239,127,254,100,225, 99,254,241,250, 27,176,104,148,148,151,217,181,239, 52,145,254,141, 47,110,189,127,116, 47,203, 11,
+134, 15,226, 12,192, 74,204, 66, 65,209,201, 30,223, 18, 85,228, 17,255, 37,225, 41,107,127,222,100, 80,249,193,112,146,133,129,
+135,133,193,215, 88,198, 55, 30, 95, 87, 73, 90,232,215,175,119,172,127,126, 3, 75,255,227, 9,252,118,129,254, 26, 98,154, 87,
+118, 29, 48, 12,253,202,250,235,235, 31,141,127,175, 95,226,155,168,135,148,248,144, 57, 0,100, 54, 73, 0, 88,226,115,115,115,
+ 95,191,126,157, 11, 12,162,163,163,105, 61,236, 3, 44,181,129, 69,127, 52, 24,208,179,244, 71, 27,243,129, 92,156, 66,135, 50,
+206, 35, 56, 70, 73, 73, 9, 88, 1, 64, 74,127, 96,219, 95, 92, 82,146,164, 52,153,230,107,119,226,217, 43, 94,125,222,167, 59,
+239, 50,112,176, 7,231,198, 9,201,248,224, 45, 52,254, 62,125,254, 18, 88,250, 67,122, 0, 64, 64,106,243, 31,115,176,104,180,
+ 50,192, 83, 25, 32,215, 1, 0, 1,132, 50, 7,240, 31,178, 6,230, 63, 3,176,232,103, 2,149,221, 12,235,214,174, 9, 12, 10,
+ 17, 17, 21,131,100,218,255,132, 14, 25,103,102,122,165,173, 2,189, 28, 81, 79,135, 11,220,116, 97, 48,210,186, 7, 20, 39,198,
+113,200, 99, 62,104,226,240,173, 0,184, 0,242,152, 15,154, 56,124,105, 60, 86,240,233,211,167,207,159, 63, 3, 59, 64,192, 42,
+240,245,235,215,144,241, 31, 96, 87,224,203,151, 47, 4,135,128,214, 79,174, 57,112,133,225,227, 3,134,223,223, 25, 38,149, 59,
+ 66,198,127,206,157,103,184,240,252, 40, 49,235,165, 62, 62,187, 43,196,207, 45, 44,196,173,174,166,121,239,254,235, 91, 79,223,
+202, 9,243,255,124,249,234,207,239, 63,240,173, 0,120,252,107,229,224,111,227, 24,185,126,243,170,253,135, 86, 45,235, 43, 14,
+ 46,110,187,244,155,225,245,219, 87,120,252, 11, 31,241, 79,180, 50,143,214,146, 95,181,126,223,165, 75, 15,250, 46,159, 93,225,
+ 26,199, 48,247,216,211,167,175,225, 91, 1,176, 12, 17,252, 96,255,251,235,205,175, 95,160,203,223,197,165,101, 53, 52, 53, 63,
+113,130,102, 74,190,255,251,198,244,243, 43,231, 87,230,151,207,177, 87, 0,144, 96,252, 1, 6,240, 97, 31,180, 21, 65, 68, 2,
+ 96,188, 44, 89,178, 4, 88, 13, 20, 20, 20, 0,107,110, 72, 87, 96,208, 14,251,144, 93,250, 35, 55,255, 33,115, 15,240, 78, 0,
+173, 11, 8, 96,154, 68, 19,129,167, 73,248, 86, 0, 60,105,210,214, 84,221,197, 90,173,181,169,167,119,194,182,186, 37,251, 50,
+156, 76, 94,108,220,246,241,253, 39, 92, 37, 50, 80, 60,212,207, 3, 50,236, 3,175, 0,128,160,173,190,146,248, 66,124,180,184,
+199, 15,208, 70,255,145, 59, 4, 0, 1,196,132,220, 67,255,248,229, 27, 51, 19, 35,176, 66,254,247,255,255,159,127,160, 73,251,
+139, 23,206, 59, 57,131,110,176,251,251,255, 63, 51, 19,243,231,111,191,254,252,250,137,179, 38,255,251, 87, 81,250,185,168,208,
+ 71, 72,101, 98,101,198, 3,185, 92, 21,216, 9, 48,212,188,243,231,239, 95, 98,154,255, 88,167,130,137,109, 14, 99,155,134, 34,
+168, 87, 80, 80, 16, 88,238, 3,123, 0,192,106, 64, 84, 84, 20, 50, 33, 12, 44,158, 62,124,248, 64,176, 2, 72,107, 93, 1, 44,
+247,249, 21, 24,128,213, 64, 94,231,126, 96,233, 31,148,223,254,228,223,139,165,125,101,192,144, 36,166,249,111,108,172, 38,170,
+164, 32, 38, 42,194, 6, 12,121,198,255,175,191,126,127,255,249, 7,145,254,237,237,216, 16,160,169,200,199, 39,204, 37, 42,245,
+251,221,251,243, 91,150,127,120,247,136,200, 52, 49,175, 35,135,161,208,133,229,207, 47,133,175, 12,175,152, 63, 77,122,126,154,
+129,141,143,192,120,215,221, 79,111,152,190, 63, 98,251,102,162,226,168, 21,199,115, 79,240,128,168,232,121, 89,139,123, 31,153,
+ 62,255,252,255,253,219,146,127, 28, 60,188,120,218,254, 84, 1, 15, 31, 62, 4,146,192,198,184,136,136, 72, 96, 96, 32,164,149,
+ 74, 59,144,158, 46,136, 57,242, 67,252,108, 48,217,165, 63,114, 65, 15,175,132, 32, 55,182,211,212,191,192, 52,121,252,248,113,
+200,184,191,177,177, 49, 3,248, 34,226,149,155,182, 17,159, 38, 55,174,111,112, 47,207,245,242,114, 22, 97,103,254,204,248,127,
+231,173,199,199,175, 60, 37, 88,124,103, 38, 68,222,187,115, 7,216,240,135, 32, 96,233,143,181, 93, 63, 10,200, 43,250,113,141,
+255, 0, 1, 64, 0, 33,134,101,128, 37,224,237,107,151, 20,164,132, 56, 89, 89,254,254,253, 7,190,162,153, 33, 45, 61, 27,216,
+ 37,248, 11,222, 13,240,237,199,143,235,183,238,177,177,225, 28, 20,249,243,251,157,161,214,125,120,166,207, 42,188,191,118,137,
+ 42,164,207, 96,162,115,247,196, 69, 77, 22,102, 81,130,205,127,180,162, 31, 40,200,128,180, 19, 24,127,243, 31, 45, 57, 2, 5,
+ 25,144,118,198,226, 2,127,255,254,149,144,144, 0,246, 0, 94,190,124, 9,100, 3, 75,150,183,111,223, 2, 73,200, 45,213,248,
+245,190,126,113,167,166,101, 63,176, 7,208, 93,108,251,229,207,223,162,206,213, 19,203, 67,139,251,182,176,128,238,160, 33,220,
+212,146, 20, 17, 96,101, 96,253,203,192,248,252,254,213,135,175, 62, 42,139, 10, 93,124,247,236,220,221,167,196, 52,255,131,147,
+138, 88,133, 24,152,152, 25, 22,108,187,191,118, 90,105, 82,199,204, 34, 95,253,108,103,121,130,254, 5, 54,255,123,253,194, 24,
+ 62,112, 48, 48,178, 50,244,246,132,156, 62,188,203, 57,147,177, 61,151,241, 68, 25,158,230, 63, 16, 92,124, 33, 98,243,253,227,
+ 23, 78,230,111, 28, 28,202,193,172,192, 66,255, 35, 19,235, 31, 6,181,255,127,191,253,126,243,252,232,228,143,209, 81,202, 52,
+ 74,199,240,193,104, 77, 48,128, 8,218,130, 1, 77,243, 15,214, 5,251, 68,118, 11,200, 46,253, 25, 80, 71,255,209, 22,140,210,
+116, 38,224,214,249, 99,240,160,206, 74, 10,219, 1, 27, 11,218,174,164, 68,112,239, 2, 48, 77,134,187,152,243,255, 19,252,198,
+192,186,182, 63,119,218,150, 11,165, 30, 54, 9,125,203, 66,218, 22, 19,172,183,224,123,199,208,184,163, 43,250,105, 13, 0, 2,
+ 8,209, 3, 0,182,124, 63, 60,191,115,247,241, 91, 22, 86,102, 96, 31,224,247,159,191,231,206,157, 93,180,104,254,175,191,255,
+127,255,253,199,198,194,244,234,253,151,167,215,143,115,226,152, 2, 6, 22,157,154,202, 15,161,205,127,112,191,127,237, 18, 53,
+208, 0, 16,211,127, 32, 98, 98,250,103,161,127,253, 47,238, 78, 0, 90,243, 31,190, 10, 8, 88,244, 19, 44,253,209,154,255,240,
+ 21, 8,192,162,144, 96,105, 8,206,207,239,191,124,249,194,202,202, 10,105,254,255,251,247, 15, 66, 18, 83, 1, 44,238,175, 60,
+247,244, 32,143, 4,104,226,151,151,133, 25, 88, 31,240,177,179,126,120,247, 4,216,252,103, 97, 98, 34,216,252,151, 21,226,189,
+118,239,254,159, 95,191,216, 89,216,190,124,249,113,241,254, 51, 96,209, 79,176,244,135,248,215, 63,167,121,233,164,137,223,254,
+ 49,200, 42,203, 92,185,122, 2, 88,250, 19,233, 95, 32, 40, 82, 54,217,124,123, 31,195,199, 63, 12, 28, 34,187, 79, 93, 3,150,
+254,192,162, 31,127,233, 15, 4,250,191,124,142,238, 62,197,240,235,243, 23,198,207,239,153,190,124,100,249,253,251,239, 39,246,
+ 31,223, 56,158,221, 95, 81,117, 91,193, 64, 13,207, 12, 48, 16,192, 83, 14, 7, 24,160, 9,226, 7,179,193, 96, 0,243, 9,164,
+213, 15, 44,211, 25,192,179,193, 4, 39,132, 41, 41,253,129, 69,252,127,220, 75,230,105,183, 28, 8,152, 38,225,107,126,106,106,
+ 11,129,105, 82, 92, 92, 28,178, 46, 8, 34, 78, 48, 77,166, 56,232, 21,244, 76,252,252,242,149, 40,159,216,213,107,143,128,165,
+ 63,100, 25, 43,145,117, 30, 28, 32,143,234,140,246, 3, 40, 1, 91,150, 52,111,193,123,143, 8, 64, 0,161, 76,204,242,242,242,
+158, 61,176,225,255,127, 63, 5, 41, 97, 94, 46,118, 45, 29, 3, 45,109,125, 22, 38,134, 47,223,255, 62,122,254,238,212,129,173,
+ 60,220, 92,184, 12,250,250,237,155,154,252,243, 31, 63, 57,254, 67,174,205,251,207,192,201,241, 3,152,140,223,125, 96, 7, 10,
+240,114,255,209, 85,123,112,248,140, 33,208, 10,252,205,127,120,171, 31,200,101,253,255,155,225, 15,116,245,216, 95, 22, 46,130,
+205,127,120,171, 31,194,253,248, 10,186,228, 0,207,118, 92,120, 29, 0, 36,129,253, 0, 32,249,238,221, 59, 62, 62, 62,200,248,
+ 15, 49,151,178,130, 87,253,183,103,134,218, 51, 76, 58, 60,173,218, 59,164,120,226,178,142,108, 96, 15,128,141,157,131, 96,243,
+255,218,163, 87, 42,178, 34,123,247,156, 96, 0,111,191, 4,146,191,127, 66,251,218,172,184,181, 67,154,255, 45, 73,206,121,245,
+ 11,100,149, 24, 73,242, 47,164,249,239,182,126,222,174,232, 72, 70, 25, 11, 6,240,150, 96, 6,240,225, 16, 16, 5,190, 60, 60,
+120,156,173,247,179,236,226,246, 45, 63,212,143, 41,168,234,124,226,100,184,207,240,240,243,131,215,175,219,254,126,121, 47, 83,
+ 24, 87,140, 63,160,166, 79,159, 14, 44,238,191,127,255, 14, 47,194,128, 92,160,224,144,200, 72,144, 86,255, 75,240, 54,105, 98,
+102,131,129,237,101,242, 74,127, 6,216,229,239,120, 10, 62, 82,247, 18, 19, 9,128,105,178,181,161,102,221,230,237,238, 54, 70,
+240, 52, 9, 68,198,247,238,121, 4,199, 60,122,251, 77, 78,152, 11,127,243,191, 96,214,230,170,100, 55, 41, 9, 7, 72, 45, 2,
+113, 42,158,190, 20,145,221,130,209,126, 0, 21,235, 3, 52, 17,128, 0, 66, 95,153,195,199,203,115,238,192,134,251, 50,234, 74,
+170,154,124,220,156,255,254, 51,124,255,249,235,222,189,123,175,239, 93,224,229,225,102,194,221,170,229,228,224, 88,181,195, 30,
+ 79, 27, 31,168,151,155,155, 64,115, 15,178, 6, 20,216,228,255,247,247, 55,168,244, 7,131,223,140,172,184, 14, 99, 64, 6,144,
+245,103,192, 38, 48,188, 28, 36,178,244,135,215, 1,240,205, 95,192, 58, 0,103, 0,225,168, 3, 22,195, 54, 66,205,110,131,237,
+137,253,253, 5,255, 53,228,192,230,255,169, 55, 31, 46,220, 6, 13,248,192,203,125,130,165, 63, 4, 0,155,255,107,141,184,115,
+ 2, 53,200,240, 47,176,249, 95,188,105, 21, 99,107,253,118,113,243, 9, 95,174,192,197, 13, 89, 88,101, 56, 8,159,248, 4,236,
+ 7,108,223,244,227,201,251,187,175,223, 62,127,121,139,135,249, 47,159,181,158,173, 99,156, 35, 77, 19,238,128,111,250, 37, 99,
+ 13,104,122,186, 32, 25,165, 63,195,128, 78,105, 2,211,164,165,165, 37, 90,154, 4,150,254, 12,160,169, 96, 46,252,122,129,205,
+127,215, 61, 39,163,235, 23,217,217,217,137,163,246, 38,201,174,174, 32,117, 0,193, 0,193,172, 44, 71,235, 12, 60,229, 62,242,
+ 76, 0, 64, 0, 97, 41,223,128,237,223,159,239, 30,159, 59, 0, 90, 46, 2,185,112,153,157,157, 29,115,110, 22, 13,176,178,178,
+242, 19,113,228, 3, 30, 0, 25,240, 97, 6, 54,249,255,124, 99, 70, 42,250,137, 57,177, 26, 50,224, 3, 44, 10,145, 75, 67, 98,
+138,126,126, 81,169, 95,184,167,181,241,131,232,230,197,183,111, 92, 37,219,191,167,110, 61,134,100, 51,228,210,159, 96,209, 15,
+ 1,113, 70,220,228,249, 23, 20,167,253,101,144,162, 31, 94,250, 19, 89,244,195,129,167, 98, 8, 3,164,114, 35,110,141, 12,176,
+248,134,108,250, 5,182,247,225,187,127,129, 12, 72,243, 31,200, 24,252,135, 58,144,177, 6,148, 22,141,116, 90, 3,172,105,146,
+ 96,209, 15, 1,174, 53,179,169, 88,244,147, 84, 29,142,150,245,184, 0,218,141,240, 12, 24,243,192, 0, 1,132,189,129,203,194,
+194,130,107,172,134, 22, 0, 50,202, 15, 41,250, 25, 72, 44,250, 33,163,222,228, 21,133, 12,160,149, 75,255,136,233, 94, 96, 5,
+175,222,125, 36,222, 34,100, 0, 25,229, 39,175,232,167,196,191,144, 81,254,205, 95,190,144, 93,244,143,130,225, 10, 32, 75, 60,
+ 31,189,253, 70, 70,209, 15, 41,127,225,163, 61, 67,183,254, 27,174,117, 0, 30, 89,128, 0, 26,189, 19,120, 20,140,130, 81, 48,
+ 10, 70, 40, 0, 8,160,209, 27,193, 70,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,173, 0, 70,193, 40, 24, 5,163, 96,132, 2,
+128, 0, 26,173, 0, 70,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,173, 0, 70,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,248,
+ 75,225, 71,154,222, 31, 47, 30, 19,175,151, 67, 66,118, 52,156, 71,245,142,234, 29,213, 75,163, 75,225, 1, 2,104, 80,247, 0,
+ 72,221, 5,126,239,222,189, 61, 48, 0,100,143, 86,239,120,192,199,143, 31, 31, 61,122,116,252,248,241,115,231,206, 1, 25,228,
+ 25, 66,197, 83,222, 70,193, 32, 7, 55,111,222, 36, 73,113, 70, 70, 6,217, 22,145,173,119, 20,144, 10, 0, 2,136,101,208,186,
+140,212, 18, 28,168,190,163,163, 35, 44, 44, 12, 89,187,146,146, 18,241,218,129, 96,245,234,213,161,161,161, 74, 96,128, 95,125,
+ 90, 90, 26, 65, 51,129,142,193,186, 26,122,247,238,249,196,232,125,255,158,155, 70, 97,251,234,213,171,159, 63,127, 50, 50, 50,
+114,112,112,252,248,241, 3, 88, 1,156, 62,125, 90, 95, 95, 95, 69, 69,133, 36,115,136, 57, 42, 3, 92,145,103, 18,163,108,230,
+204,233,212,214,155,142, 67, 49,250,209, 99, 4,211, 21, 67, 61, 35, 99, 19, 70,229, 87,207, 24,118, 61,148,129, 93,131,160,243,
+220,221, 65, 71,234,146,119,120, 53,228, 44,232,244,116, 65, 74, 86,214, 3, 75,213,254,254,126,130, 27,238, 82, 83,211,128,222,
+194,140,213,146,146, 98, 98,180,195, 83,197,132, 9, 19,236,237,237,129,229,248,178,101,203, 62,125,250, 68,208, 82,148, 34,137,
+133, 57,194,138, 45, 61, 35,189,107, 71,119,137,107, 9, 68,112,246,236, 89, 88,245,198,196,128,118, 41,115,115, 99,201, 41,144,
+155,157, 18, 18, 18, 70,119, 36, 32, 3,200,190, 48,248,234,127,128, 0,194, 94, 1, 96, 30, 54, 66,163,227, 71,168, 88, 1,192,
+ 75,127,160, 59, 33,123, 82,128, 38, 16, 89, 1, 64, 50, 57,164, 56,131,156,123, 85, 94, 94, 78, 88,239,106, 33, 66, 6,227, 12,
+177,175,190, 4,110, 81,103, 32,226,144, 52,242,238,193, 0,182,253,197,196,160, 23, 60,112,114,114, 2, 43,131, 15, 31, 62,240,
+243,243,159, 58, 5,186, 60,153,152, 58, 0, 24,188,144, 80, 2,134, 88,112,112, 48, 48,192, 9,214, 4,155, 54,109,128, 48,252,
+252, 2,112,177,113,233,253,126, 44, 7, 26, 36, 86, 83,224,108,100, 46,144,129, 75,239,142, 29, 40,151,155, 29, 58,116,168,173,
+173, 13, 57,160,150, 44, 89,130, 63, 97,116,118,118,118,176,119,130, 11,226, 80,148, 44, 80,207, 72,106,146,166,127, 38, 66, 46,
+253,129, 94, 6,198,248,210,165, 75,143, 28, 57,226, 21, 85,141, 75,241, 49,140, 43,180,215,175, 6,149,254,255,254,253,155, 53,
+107, 22, 80, 59,159,156, 61,214, 66, 31,222, 29,188,113,227, 6,144, 27, 25, 25, 9,100, 71, 69, 69, 17, 83,109,244,236,134,222,
+ 66,252, 98,231,115,160,222,101,249, 92, 64, 35,203, 61,202, 24,192,177,183,124,225,178, 12,123,124,125, 2, 99, 99, 99,226,155,
+122,163,165, 63, 50, 0, 8, 32, 38,172,197, 10, 48,123, 3, 35, 27, 45,195, 19, 57, 32, 67,201,216, 11,178, 94, 72, 99,156,120,
+189, 64, 7,187,128, 1,164, 14, 32, 41, 65, 64, 74,127,160,117,160,235, 41,192,150, 18,233, 11,198,176,247, 16,132, 71, 4, 23,
+224,217, 50, 29,130,240,136, 16, 44,253,255,131, 1,241,163, 49,239,223,191, 7,150,245,192, 10, 32, 41, 41, 41, 58, 58,154,141,
+141, 13, 88, 7, 0,251, 1, 64,239, 51, 51, 51, 19, 60, 94,255,218,181,107, 64,123,215,172, 89, 3, 9, 46,160,165,107,215,174,
+ 5, 54,244,128,226,116, 78,202,104,149, 1,141,154, 32,192,210, 31,152, 36,194,111,132,129, 90,250,168,129, 95,241,179, 28,173,
+ 79,128, 11, 0,195,167,180,180, 84, 81, 81,145, 12, 55, 0,245, 2,219,254,194,194,123, 41,111,251,195, 75,127,146,180,195, 75,
+255,226,226, 98, 60,218,145,147, 31,176,249,111,103,103, 7,100, 0,235, 0, 96, 63,128, 96,185,129,166, 55,220, 18,212, 42, 93,
+150,207, 9,236, 7,148,185,151,226,215, 11,108,251, 3,237, 2,118,199, 93, 48, 0, 68,106,180,249,143,167,244, 7, 2,128, 0,
+ 98,194,214,229,132, 94, 12, 13,105, 71,195,155,123,196, 20,199,144, 60, 67, 73,126, 35,111, 0, 7,107,153, 78,170, 22,120,229,
+ 1,108,254, 19, 60,255,118, 96, 1,188,244, 7,146, 79,159, 66, 47,220,120,242,228, 9,254,204, 6,108,251,127,251,246,141,137,
+137, 9,232, 71, 32,251,217,179,103,172,172,172, 44, 96, 0,100, 64,142,234, 68,219,208,143,150, 81, 39, 78,156, 8, 44,250, 67,
+ 66, 66,128, 5, 10,208, 16, 96,225, 8,100, 3,165, 38, 77,154, 52,204,114, 11,188,244, 7,178,129,101, 55,188,109, 1, 9,124,
+120, 7,145,200,242, 5,168, 12, 24, 98,192, 68, 69,222,172, 73,101,101, 37, 80, 47,158,168,193, 83,250,247,245,245, 1,163, 12,
+ 88,145, 0,139,239,195,135, 15, 51,128, 79,100, 34,190,244,135,104, 7,166,153, 51,103,206, 64,180, 19,180, 17,168, 62, 34, 34,
+ 2,194, 5,214, 1, 14, 14, 14, 64,219, 55,110,220, 72,112, 32, 17,216,252,103, 96,100, 88,154, 7, 61,127, 2,216, 15,136,180,
+102, 7,245, 3,240, 2, 60,165,196,104,183, 0,173,244, 79, 43, 71, 47, 21, 1, 2,136, 5,107, 98,133, 95, 12,125, 15,233, 98,
+104,130,105,157, 90,165, 63, 85, 42, 0, 74, 0,176,242, 32,219, 35,116, 3,192,162, 4, 88,244,191,120, 1,189,133, 17,153,141,
+ 11,188,126,253, 26,152,147,129, 45,253, 59,119,238, 0,181, 3,243,234,175, 95,191,128,217, 15, 88, 1, 0,201,191,127,255, 2,
+171,135,245,235,215,227,138,232,189,123, 65,237, 80, 96,137,143,172, 0,194,134, 20, 79,120, 82, 8,242, 8, 15, 46, 54,158,198,
+ 62,174,177, 32, 60,131, 63,104, 35, 63,144, 54, 41, 73,105,160,131,189,147, 17,181, 66,133,140,251,223, 35,102,120, 16,169, 9,
+ 15,169, 35, 33, 37, 29, 48, 12,137,111,147, 66,244,170,170,170, 50, 16, 61,221,130, 12, 50, 51, 51,225,131, 93, 64, 54,176,248,
+ 6, 26, 66,124,233,111,111, 13, 58,146, 17,216,246, 47, 41, 41, 1, 54,204, 33,218,125,253, 82,241, 95,236, 7,111,254,195, 1,
+100, 44,104,219,182,109, 26, 26, 26,192, 38, 59,126,189,225,150, 40, 7,115,129,199,130, 24,150, 47, 59,127, 83,226, 38,126,189,
+163,128,140,210, 31, 8, 0, 2, 8,251, 28, 0,176, 75, 5,105,248,195, 47,134, 38,169,244,199,218, 14,197, 51, 60,141, 75, 47,
+178, 56,237, 14,252, 3,250, 20,126,236, 56,178, 27,200, 27,177,253,191, 74,144,108,151,124,241, 33, 60,225, 9,119, 36, 90,137,
+ 32, 35, 35,131,172, 0,107,112,189,123,247,142,151,151, 23, 72, 30, 59,118, 12, 88, 13, 0, 75,127, 96,147, 31,114,245, 13,176,
+104,251,253,251,247,207,159, 63,241, 52, 81, 33,189, 34,204, 48, 1,138,172, 89,179, 6, 40,139, 39,184, 40,159, 3, 0,150,245,
+200,197, 61,132, 77,100, 53, 0, 44,146, 72,174, 3,192, 67,252,144,148,143,152, 76, 2, 11, 18, 63,183,132, 92, 71, 50,192, 46,
+118, 39,111, 80, 2,216, 9,128,204, 94, 16,175, 29, 24,149,240,241,119, 27, 27, 27, 96, 9, 78, 82,219, 31,168,253,207,159, 63,
+200,218, 15, 30,253,219,211,153, 65,176,249, 15, 41,241, 49, 65,127,127,191,119,116, 13, 46,189, 72,163,255,168,253, 3, 34,244,
+142, 2,178, 1, 64, 0,177,224, 73,181,144,230, 63,157,219,254,200, 35, 81,244, 89,202,137, 60,218,131,188, 62, 4,127,137,134,
+179, 63, 11, 27,253, 39,163, 38,128,143,254,227,175, 9,162,163,163,185,185,185,121,120,120,128,165, 57, 63, 63,191,160,160, 32,
+176,121, 21, 27, 27, 11,145,229,224,224,112,115,115, 3,250, 2,243,152, 63, 96,137, 15, 44,253,127,252,248, 1,212,197,206,206,
+ 14,204,222,255, 65,151,125,254, 5,138, 3, 75,127, 32,131,224, 0, 5,174, 97, 64, 96, 67,149, 14,131,102,184,102,131,137, 1,
+144, 58,128,132,120,108,194,226,217,176,235,161,224,169, 41, 98, 13, 65,110,254,195,171,109, 34, 27, 22,200,205,127,172, 85, 62,
+126,176,108,217, 50,136, 33,192, 58,128,140,161,127, 72,203, 15,216, 53, 44, 44, 44, 60,115,230, 12, 76, 59,129,228, 49,113,226,
+ 68,180, 75, 58, 87,172, 88,113,240,224, 65, 96,186,130,180, 72,240,172, 79,159, 48,113, 66,132, 5, 74,243, 63,122,210,183, 21,
+199,126, 3,245, 26, 70, 25,102,216,103, 16,191,182,125, 20, 16,217,252, 7, 2,128, 0, 98,194,211, 46,134, 36, 2,248,100, 0,
+254, 97,184,242,242,114,242,220,135, 75,175, 18,248, 62, 82,226, 91,241,104, 0,178, 34,136,212, 97, 83, 98, 22,119, 14, 6, 48,
+107,214,172,190,190, 62, 56, 23, 82,250,251,129, 1,144, 1,204,114, 88,117, 1, 43, 12, 96, 41,255,254,253,251, 55,111,222, 0,
+201,111, 96,240,229,203,151, 79,159, 62,125,252,248, 17,216, 27, 0,246, 0,240, 92,233, 3, 44,128,128, 45,125,130,149,232,160,
+ 2,135,144, 0, 92, 16,232,125, 56, 27,207,184, 54,242,184, 63,114, 91,158,164,102, 1,154, 98, 96,113, 12, 12, 67,178,103, 2,
+128,122,137, 73,210,192, 18, 31,152, 6, 32, 19,191,192, 58, 0,226,119,226, 47, 93,168, 46,183, 7,106,255,183, 82, 0,168, 29,
+216,244,134,104, 63,116,236, 31,172, 57,142,179,249, 15, 31,240, 1,141,219, 44, 95,154,153,153, 9, 52,167,160,160,128,160,213,
+160,230, 63, 3,227, 82, 88,243, 63,106,226, 55,230,136,143,203,143,253, 2,234,237,220,209, 53, 90,136,211,168,244, 7, 2,128,
+ 0, 98,193, 85,190,192,135,254,225,147, 1,248, 11, 71, 72, 57, 14,105,203,147, 58, 92,131,166, 23,210, 39, 0, 10,146, 55,236,
+ 3, 95, 6, 74, 79, 0,105,248,147, 55,254, 3,105,248, 19, 51,254, 3,207,222, 16, 70, 99, 99,227,252,249,243, 97, 67, 40,126,
+ 16, 6,176,249,143,171, 2, 16, 22, 22,126,251,246, 45,176,189,255,250,245,107, 96, 15, 0,216,190,131,244, 0,190,126,253, 10,
+172, 9,128,165, 63,176, 26, 40, 43,195, 57,231, 6,105,230, 99, 93, 34, 12,145,197,227,102,170,204, 1, 16, 41,142, 12, 32,195,
+ 38,232, 5, 92,117,117,107,107,171,136,136, 8, 77,147, 4,102,243, 31, 14, 8,206, 4, 96, 54,255, 73,106,251, 3,251,136, 49,
+ 49, 49,192,200, 5,122,191,170,170, 10,216,251, 33,254, 66,155,154, 10,251, 3, 7, 14, 48,174, 1,221,207,186,171,134,215,173,
+229, 51, 80,123,107, 39,168, 21,143,191, 11, 2, 89,251, 15,110,245, 47, 59,120,240,240,127,198,255,133, 5,133,234,234,234,196,
+ 88, 10,212, 27, 97,197,138,104,245, 51,128,244,138,187, 73,144, 49,243, 49, 10,176,148,231,157, 21,152, 21, 3,100,132, 0, 32,
+128, 88,240,180,253,129,165, 63,242,100, 0,193,174, 43,114, 57, 78, 94, 63, 0,162,151,194,145, 31,136,155,201, 44,199, 7,125,
+130,131, 12, 82,193,175,234, 78, 76, 76, 68, 27,159, 1, 10, 66,242, 33, 38,144,145,145,185,115,231, 14,176,196, 7, 54,249,127,
+255,254, 13, 25,250,255,241,227, 7,100, 45, 41,100, 78, 88, 89, 89, 25, 79,205, 10, 52, 28,210, 9,128,167, 4, 96, 80,163,137,
+ 96, 5,180,152, 3, 64, 30, 17,194, 21, 86, 88,197,129, 1, 8,172, 3,194,195,195, 87,174, 92, 73,252, 64, 37, 26,187,163,163,
+ 35,237,105,122, 24, 48,165, 97,219, 8,230,238,238,126,255,254,125,180, 93, 8, 16, 0, 20,103,192,187, 41, 44, 52,116,117,104,
+168,179,171,235, 61,204,201,134,183,111,157, 25, 24,222,167,167,227,204,137,240,171, 16, 33,157,140, 93,187,118, 49,144,114,157,
+ 25, 19, 19, 35,168, 17, 3, 41,253, 47,253,153,191, 31,116, 17, 38,176,244, 39, 38,107, 64,146, 19,176,213, 15, 36, 11,139, 10,
+213,213,212,137,180,180,180,172, 4,172,151, 1,216,234,135,232,149,112,147, 4,141, 54,141, 22,254,180, 7, 0, 1,196,130,171,
+ 59, 15,159,248,133, 47,243, 32,102, 76,156, 42, 99, 65,164,238, 0, 24,129, 0, 62,228, 2, 47,227, 32,187, 55,144, 5,177,142,
+153, 2,235,134,109,219,182,253,249,243,231,195,135, 15,144, 57, 0, 6,240,234, 32, 32, 23,200, 38, 24,119,249,249,249, 19, 39,
+ 78,132, 84, 3,200,227,254, 64,113, 90,215,157,192,226,158,152, 66, 31,107,105,136, 89, 49, 0,155,216, 68,150,254,152,165, 48,
+242,132, 48,193, 78, 0,166,224,131, 7, 15, 24,136, 88, 98, 0, 31,128, 69,117,185, 11, 49,254, 5,246,243,128, 69, 63,242,224,
+ 59, 49, 0,168,253,223, 74, 65, 96,185, 15,100, 47,216,255,107,197,177, 95, 64,237,135,143,147, 48, 90,117,232,208,161,130,130,
+ 2, 34, 91,253,112, 0, 73,132, 43,143,255, 6,234,149,112,151,132,213, 39, 68,233,133,108,247,133, 76,239,163, 69,211,232, 78,
+ 96, 6,108,215,129,161,237, 4, 6, 8, 32, 22,172,217, 3,178,169, 10,185,233, 71,112, 8, 8, 61,123,144, 91, 7, 80,110, 8,
+252, 52, 8, 34, 1,176,178,193, 58,132, 77, 76, 37,132, 57,230, 67,252, 40, 16,230,152, 15,145,163, 64,240,153,106,228,188,141,
+ 85, 16,107, 51,205,219,219,123,233,210,165,108,108,108, 63,127,254, 4,214, 1,255,254,253, 19, 16, 16,120,255,254, 61, 49,155,
+159,181,180,180,128,230,239,222,189, 27,178,236, 7,178, 39, 96,200,101,176,125,251,246, 1, 3, 97,203,150, 45,100,148,254,240,
+178,242, 94,121, 57,158,174,106,105,105, 41, 3,142,229,115,101,101,101,248,231, 0,210,211, 5,113,233, 5,182,253,137, 41,199,
+ 9,246,129,240, 0,247,150,207,112, 54, 73,165,255,180,105,211,200,139,142,158,238, 94, 80,147,159, 2,128,181,178,132,223, 62,
+ 61, 10,240, 0,128, 0,194,185, 12,148,160, 8, 77, 1, 61,119, 0, 96,206,245, 17, 93,205,144, 89,240,129,244,114,146,233, 90,
+200,232, 22,164,114, 66, 27,233, 66, 22,196,239,163,232,232,232,187,119,239,238,223,191,255,251,247,239,127,255,254,245,245,245,
+ 5, 22,229,196,135,185, 43, 24, 64,218,110, 68, 54,252,169, 53, 7,128,139,141,167, 52, 68, 91,151, 66,204,110, 38, 6,248, 81,
+ 63,247, 66,145,131, 5,152, 11,210,158,166, 51,194, 54,130, 65,164,176,246,180,240,132,191,179,179, 51,193, 4, 73,134, 20,220,
+191,192, 24, 9, 12, 12,132,156, 62, 68, 42, 96, 10,127, 15,212,238,231,159, 6,105, 43, 64, 22,125, 34, 31,243, 64, 11, 96, 28,
+ 99, 68,182, 94, 96, 3, 31, 87, 61, 7,145, 26, 5,248, 1, 64, 0, 13,198,195,224,200,104,182,208,191, 17, 74,137,141,148,156,
+242, 70, 45,159, 42,131, 1,154,224,175, 95,191,152,193,128,218, 17, 58,125,128,244, 98, 73, 72,144,227,195, 8,131,122,232,193,
+ 80,200,189, 67, 96,233, 15,169,104, 7,231, 22, 83, 10,247,202,128,181, 19, 30,122,167,250,114, 76,252,231,252,208,174,178, 28,
+ 29, 20, 2, 2,128, 0, 26,189, 20,126, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 27,193, 70,193, 40, 24, 5,163, 96,132,
+ 2,128, 0, 26,173, 0, 70,193, 40, 24, 5,163, 96,132, 2,128, 0, 98, 25, 13,130, 81, 48, 10, 70, 1, 50, 96,196,100,253,135,
+ 19,163, 96, 88, 1,128, 0, 26,237, 1,140, 80,128,245,112,240, 81, 48, 10, 24,193,152, 17,116, 6, 52, 35, 6, 24,221,155, 53,
+220, 0, 64, 0, 33, 38,129, 71, 47, 89, 30,213, 59,156,244,198,249,233, 34,154, 57, 76, 76,144,229,170,240, 21,141,255, 97, 0,
+162, 96,209,166,203,200,122, 63, 60,216,207,193,193, 1, 81, 15, 57, 64, 27, 89, 47,228,212,188,127,255,254, 1,217,191,127,255,
+230,149,181, 27, 1,225,204,200,204,194,254,255,223,159,127,255,254,108, 57,242, 4,121, 81, 40, 46,189,192, 32,122,249,242,165,
+132,132, 4, 25,246, 82,162,119, 52, 47, 48,144,178, 82, 11, 32,128,134,252, 16, 80,117, 53,226, 10,187,214, 86, 51,250,233, 61,
+ 5,186, 84,175,213,172, 21,206, 32,213,229,184,246,169,226, 18, 39,213,156,225,214, 87,253,245,149,229,237,125,213, 31,151,164,
+255, 60,190,245, 95,241, 9,175,214, 55, 62,121, 54,110, 94, 92,234,143, 28, 57, 98, 99, 99, 3, 41,250, 33,133, 56,164, 17, 11,
+ 47,196,255,193,192,195,135, 15,209,244,158, 59,119,206,216,216,152,147,147,147,133,133, 5,168, 17,174, 29, 82,238,255,133,129,
+159, 63,127,158, 61,123,214, 65,214,110,240,135, 30,208,229,111,223,190, 61,126,252,184,128,128, 0,218,198, 8,194,141, 68, 70,
+ 38,118, 14, 33, 1, 65,245,175, 95,158,126,249,252, 24,212, 13, 96,252,207,240, 31,223,136, 16, 48,148,214,172, 89,115,235,214,
+ 45, 32, 27, 24,140,197,197,197,196, 91, 7,209,123,239,238, 29, 96,152,179,177,179, 23, 20, 20,210,116, 23,194, 8, 7, 0, 1,
+ 52,136, 42, 0, 92, 39, 77, 50,224, 61,104, 12, 82,112, 35, 23,229,196, 3, 74,244, 14, 39, 64,225,222, 81, 58,148, 94,159, 31,
+ 94,255,120,104,213,183,111, 63, 21,204,153, 56,101, 24, 85, 31, 93, 50,101,184,248,254, 39,207, 5,174,184, 55,140,210, 88, 53,
+ 93,187,118, 13, 88,130, 0, 11, 59, 22, 24,128, 84, 6,144,134,255,159, 63,127,128, 37, 56,176,253, 14, 44,253,247,237,219,199,
+ 44,108,130,172,247,219,183,111,231,207,159,183,176,176, 96, 99, 99,131, 95,154, 6,212, 14, 44,155,254,128, 1, 80,227,247,239,
+223,129,106,190,124,249, 50,152, 99,182,170,170, 10, 57, 19,125,254,252,217,192,192,128, 12,189,139,151,157,229,228, 20, 3, 22,
+200,160, 10,128,145,225, 63,100,183, 0,238, 98,249,217,179,103,192,144,137,138,138, 82, 82, 82,130,156, 75, 33, 36, 36,100, 98,
+ 98,130, 85,113,130, 59,202,206,184,203, 55,110, 28,224,229, 42,234,111, 50, 52,210,121,254,228,213,174,109, 7, 20,116, 12, 63,
+125,250, 56, 90, 88,147, 13,208,198,123,145,151,254, 3, 4, 16, 11,214,178, 0, 82, 10,224, 98,211,168,244,207,202,194,126, 79,
+250,251,247,239,151, 47, 95,142,167, 14,128,148,224,164, 54,225, 41,212, 11,111,251,147,209,252, 71,187,121, 6,151, 2, 26,133,
+ 54,164,199, 0, 39, 33,130,239,222,129,118,205, 8, 9,237, 25,132,201,247,215,227,107,236,199, 22,255,252,246, 47, 72,133, 89,
+ 93,244,207, 63,161,255,172, 66,204,159,223,178,113,126,254,174,121,113,202, 89,181,140,111, 92,242,216,218,173,140,215,175, 95,
+ 7,150,224, 78, 78, 78,144,114, 28, 8,128,133, 56,228,234, 27, 96, 33, 14,108,191, 63,126,252,120,255,254,253,192,154, 0,109,
+231, 27, 80, 25, 80,205,197,139, 23,129,245, 7,176, 1,203,206,206, 14,209, 11,169, 0,128, 26,129,165,219,229,203,151,127,252,
+248, 65,112,211,220,131, 7, 15,128,182, 0, 75, 94,160, 27,196,197,197, 85, 85, 85, 33,131, 75,196, 0, 74,244, 2,157, 90, 83,
+ 83, 3, 63, 12, 21, 88,154, 3,107, 68, 49, 49, 49, 97, 97, 97, 34, 75,255,121, 73, 73, 94,134,134, 64,182, 68,110, 46, 39,151,
+248,151, 79,143, 62,125,188,251,255,255, 95,208,129,113,255, 8,220, 65, 13, 44,238, 69, 68, 68, 22, 45, 90, 20, 31, 31,191,105,
+211, 38, 32,247,208,161, 67,191,126,253, 98, 96,144,195,170,254,109,123, 17,156,205,243,235,183,212,159, 31, 5,165,245,253, 61,
+141,221, 61,211,164,153,254, 78,235,233,115,138,136,194,165,119, 20,144, 84,250, 51, 32, 29, 5, 10, 4, 0, 1,132,189, 7,128,
+124, 4, 10, 46, 54,213, 1,253,207,112,166,194, 0, 20,172, 14, 32, 9,192,235,212,249,129,139, 48,101, 19,215,199,209,180, 25,
+ 14, 49, 28,153, 36,120,109,247, 0,130, 31, 31,222,168,221,223,250,138,249,175, 10, 63,131,188,220,127,102, 61, 54, 22, 37, 37,
+182,159, 63,126, 30,125,252,243, 35, 11,243, 63,214, 31,123, 22, 51,121,229,255, 99, 65, 31, 11,130, 95,126, 41, 40, 40,232,232,
+232, 8, 44, 58,129,197, 40,176, 33, 15,105,248, 3,203,110, 96, 43,245,224,193,131, 76, 96,128, 85, 47, 80,229,213,171, 87,109,
+108,108,248,248,248,128,218,129, 34,192,210, 31, 88,138,125,250,244,233,244,233,211,192,106, 0,104, 26,100, 38, 0, 23,184,116,
+233,210,177, 99,199,238,223,191, 15,212, 2,180, 93, 66, 66, 2,216, 10,182,178,178,226,230, 38,188, 21,156,108,189, 64, 39, 65,
+110,254, 65, 22,132,156, 11, 13,108, 69, 17, 83,133, 48, 49,179, 33,115, 95, 76,158, 44, 17, 32,211,221, 61,241,247,239,175,224,
+192, 97,252, 7, 44,253,255,131,186, 0,255,113,143,191,157, 60,121,178,162,162, 2, 24,104, 65, 65, 65,178,178,178,192,138,118,
+219,182,109,230,238,132, 54,253, 50, 50, 46,185,243,124,237,237,167,155, 54, 46,100,102,102, 44,202,141,213,151, 16,153, 85, 80,
+ 63,155, 24,189,163, 0, 71,233,143,220,228, 71,171, 15, 0, 2,136,132, 85, 64,180, 62,238, 81, 9, 55,160, 69, 19,158, 66,189,
+ 12,100,141,251, 83,189, 45, 15,191,204,146,248, 66, 28,171, 74, 96,219,159,200,230, 63,176, 16, 4, 22,127,152, 92,100, 65, 76,
+ 0, 87, 3,191,101, 16,147,139, 21,188,187,122,238,217,211, 79, 98,188, 44, 74,188,255, 89, 68,254,177, 88,122,112,235, 47,230,
+ 52,234,101,231,231,100,251,242,253,219,183,191,114,204,223,222, 95, 58,134,165, 20, 99, 98,130, 92,118,127,251,246,109, 96,107,
+ 29, 88,136, 11,131, 1,176,101, 42, 32, 32,240,241,227, 71, 96,155, 20, 88, 60, 65, 70,249,209,244, 66,196,129,197, 46,176, 14,
+184,117,235, 22, 23, 23, 23, 80, 23,176,249, 44, 42, 42,202,195,195, 3, 20, 1, 86, 33,144,161, 33,204,202, 3,185,253,190,123,
+247,238,187,119,239, 42, 42, 42,186,187,187,155,153,153,125,251,246,109,223,190,125,192,142, 5,176,250, 33,216,246,223,189,103,
+239,189,231, 31,121, 85, 44,212,220,147,165,205,252,222,255,100, 2,138, 16,212, 11, 44,253,129, 21, 6,176,242, 0, 22,193,122,
+122,122,240, 97, 28, 8,131, 96,233, 15, 44,250,185,121,164,132,132,117,150,174,184,148, 52,111,222,182,243,231,129, 8,216, 3,
+ 96, 0, 77,119,127,133,170, 97, 4, 34,124,235,129,128, 5, 61,176,213,159,147,147,195,203,203, 11, 12,186,181,107,215, 2, 29,
+243,230,205, 27, 53, 53, 53,130,169,107,226,249,219, 61, 39,174,204,238,169,100, 97,254,206,244,247,115,215,132,121, 43, 15,157,
+125,198,196, 66,234, 9,163,163,128, 72, 0, 16, 64, 44,196, 23,244,131,121, 42,102,196, 86, 3,144,161, 27,146, 70,111, 48,187,
+ 23,240,126, 0,193,158,199,231,207,159,129,205, 82, 96,179,218,212,212, 20,141,123,234,212, 41,136, 32, 86, 0,145, 5,146,192,
+150, 41,176, 25, 11, 44, 26, 32,130,200, 92,172,128,239,199,219,109,143,126, 72,191,103, 54,228, 99, 20,125,205,160,194,194,207,
+196, 40,252,255,199,203,175, 47, 25,175, 62,250,247,226,235, 15, 96, 25,204,240,239, 22,131,145, 59,174, 10,128,157,157, 29, 88,
+ 10, 75, 75, 75,187,186,186, 2, 75,118, 96, 17,249,246,237, 91, 96,145, 4,148, 2, 22,241,144,227,143,254, 97,232,133,104, 7,
+ 42, 0, 38,123, 96,199, 87, 69, 69,133,159,159,255,203,151, 47,231,207,159, 7,214, 10, 64, 51,127,130, 1,158, 86, 17,176,122,
+123,242,228,137,190,190,190,131,131,131,140,140,204,215,175, 95,129,245, 7,176,155,123,252,248,113,130,131, 57, 64,189, 47,223,
+125, 20, 82,179, 80,178, 13, 23,144, 81,251,249,245,195,163,147, 91,111,239, 93, 72, 80, 47,100,246, 2,216,185, 17, 23, 23, 7,
+ 22,184,192,154, 0, 82,244, 67,198,130,128,108,172, 55,228, 64,171, 61, 22, 14, 1, 65,117, 1, 33,117, 38, 38, 86, 96,113, 63,
+119,254,254,164, 68, 71,136,222,212,212, 84,160,227, 33,122,193, 94, 6, 23, 5,216,166, 1,128, 1,187,121,243,230,172,172, 44,
+ 73, 73,208, 1,159,123,247,238, 5, 86,102,156, 96,224,237,237,125,236,218,119, 60,190, 94,118,243,113,239,233, 27,115, 58,202,
+101,212,229,191,126,121,191,113,251,233, 75,151,111, 10,252,255,199,246,226,165,119, 78,244,209,171,223, 71,203,107, 82, 1,218,
+ 73, 63,152, 29, 2,128, 0, 98,193, 44, 11,224,135,220,226, 98, 15, 42, 64,118,193, 77,161, 94,178,199,127, 40,111,245, 19, 35,
+133,167, 40, 39,123,213, 16, 48, 39, 3,139,251,247,239,223, 99,229, 18, 9,128,181, 5,176,252, 5, 22,250, 10, 10, 10,152, 92,
+ 76,240,250,205,227, 99,207,191,123,115,113, 29,126,252, 79,202,136, 93,241,231,217,247,215,178,214,119, 93,250,247,224,227,151,
+ 95,255,159,126,254,203,201,194,244,231,227, 11,126,108,237, 24,120, 29, 0, 44, 49, 31, 62,124,120,227,198, 13,109,109,109,160,
+131, 79,156, 56, 1, 25,217,199, 53,136, 15,212, 11,233, 4, 64,244, 2,235,128,199,143, 31,235,234,234, 2,139,111, 96,253, 1,
+ 20, 1,138, 67, 86, 7,225,233, 1, 60,122,244, 8,104,190,177,177, 49,176,244, 7, 42, 6,118, 65,204,205,205,129, 86, 3,197,
+129, 53, 7,254, 80, 2,170,249,199,196, 38,109,224, 2, 44,253,153,152, 89, 57,249, 68,229,204,189, 31,158,216,132, 95, 47,208,
+157, 31, 62,124,120,250,244,169,156,156,156,181,181, 53,208, 82,200,200, 79,124,124, 60, 68, 1,176, 14,195, 99, 41, 7,135,176,
+176,168,254,175,159, 31,223,188, 61,255,243,231,251,223,191, 65,243,219, 16,189, 47, 95,188,128,235, 5,181,254,113,212,122,207,
+159, 63, 95,186,116,105,116,116, 52, 48,172, 24,192,215,209, 0,123, 3,149,149,149,192,218, 8,166, 4,231,242,196, 91,159,190,
+149, 31,188,208, 81,146,110,235,227,242,245,203,155, 85,235, 14,206,156,187,118,123, 81,130,210,171, 39,157,159, 94, 8, 9, 9,
+227,209, 59, 10,136, 28, 11,194,172, 18, 0, 2,136, 5,235, 80, 12, 65,246, 32, 7,148,175,209, 36, 6,180,152,182,208,255, 6,
+ 49,228,178, 27,173, 50,160,198, 97,144, 56,193,205,155, 55, 97,243,120, 88,184, 36, 1, 96, 17,188,123,247,110,200, 37, 30,200,
+ 92,172,221,252,139,239,190,127,252,245,239,226,235, 63,207, 62,252, 17, 63,193,162,183,234,206,195, 7, 87,111,158,252,245,135,
+133,249,215, 63,134, 31,191,254,191,255,255, 79, 84,240, 63,214, 66, 28,190, 0, 20,178,140,231,229,203,151,242,242,242,192,122,
+ 11, 50,236, 3, 36, 17, 27,156, 8, 1,248,166, 1, 8, 57, 56,111,142, 3, 86, 78,144, 91, 80, 20, 21, 21,145, 43,182, 51,103,
+206, 0, 73, 96,240, 66, 46,221,195,117,237, 15, 48,180,128,228,247,111, 47,191,124,126,252,247,239, 15,100,189,155,192, 85, 53,
+176, 27, 4,210,251, 31,251,216, 63, 48, 30, 39, 79,158, 12,108,230,219,216,216, 0,185, 71,143, 30,221,176, 97, 67,118,118, 54,
+ 82,233,143, 19, 60,255,246, 51,118,219,137,130, 48,239,144,216,224,111, 63, 62,173,223,116, 96,194,180,101,139,220, 76,129,165,
+255,104,217, 77,245,154, 0,185, 14, 0, 8, 32,106,238, 4, 70, 30,137,198,197, 30, 78, 96, 48,148, 2,144,177,123,226,199,127,
+240,204, 25,224,143, 35, 96,241,225,234,234, 42, 40, 40,136,149, 75, 18, 0,234, 2,234,133, 23,247,104, 92, 52,240,253, 47,223,
+111, 70,134, 51,111,126,190,250,251,119,239,189, 31,171, 86,255,216,247, 68,244, 14, 27,255,147,143,191, 31,127,254,247,245, 15,
+195,183, 63,255,217,133, 37,112, 21,217,144,149,254,127,255,254,253,243,231,143,176,176, 48, 15, 15, 15,176, 14,248,253,251, 55,
+ 68, 4,109, 59, 24,178, 94,200, 74,127,160,154,239,223,191, 3,185,178,178,178,192,150,181,164,164, 36,176,218, 0,182,193,129,
+ 53, 31,196,100, 60,227,162,192,102, 56,176,175,112,246,236,217, 39, 79,158, 64,174,225, 60,121,242,228,151, 47, 95,128,226,192,
+206, 7,254, 32, 2,170, 97,250,247,235,233,249, 61, 31,158,220,250,247,247,247,247, 79,175, 31,157,220,250,235,235,123,252,122,
+225,142,249,246,237, 27,124,118, 26,216, 9,184,122,245, 42,176, 28,135, 92,218,254,241, 35,206,245,148, 64,191,254,249,253,133,
+147, 91,130,131, 83, 8,178, 35, 24, 89,239,236,217,179, 33,122,255,161, 6, 24,176, 3,183,104,209, 34, 96,235,161,169,169,201,
+207,207,207,199,199, 7,210, 21,216,188,121,115,105,105, 41,176,203,133,199,155, 64,189,139, 23, 47,142,200,202,113, 90,115,176,
+ 36, 46, 40,175, 44,243,199,175, 47,247,239, 62,158, 57,115,213, 6, 95, 43, 7, 89, 49,226, 19, 21,176,178, 25, 45,220,241,143,
+ 5,193,203,125,228,121, 96,128, 0,162,254, 81, 16,152,183,167, 98,178,169,220,222,199, 88,200,143,220,228,199,223,252,199,212,
+123, 10, 40, 84, 93,141,201, 38,102, 8,136,120,189,212,234, 13,192, 23,243, 16,223,252,127,247,206, 5, 62,115, 64, 82, 7, 66,
+ 65, 65,193,215,215, 23,216, 12,196,202, 37, 18, 0,213, 3,117,193, 7,124,208,184, 88,212,171,170,168,114, 51,243, 50, 50,252,
+254,255,255,250,251, 95, 75,239,252, 92,126,236,217,233,187,239,158,125,103,120,251,227,239,221, 47,255,159,255,252, 47,171,172,
+130,181, 52,132,172,218, 4, 22,214,192, 66, 28, 88,118,235,232,232,128,171, 76, 33, 51, 51, 51, 72, 33, 14, 41,199, 49, 11,113,
+ 72,225, 14,172, 39,128, 10,128,213,188,178,178,242,135, 15, 31, 30, 63,126,252,238,221, 59,160, 83,129,189, 10,160, 56,208, 4,
+136, 50, 92, 46, 55, 53, 53,149,145,145, 1, 22,160, 59,118,236,216, 2, 6,135, 15, 31, 6, 54,204, 45, 45, 45,241,204,121,192,
+245,138, 11,241,191,189,119,225,230,238,249, 87,183, 78,191,190,117,230,195,227, 27,216,153,254,225,215, 11,172,156,128,205,109,
+ 62, 62,190,139, 23, 47, 2,107, 29,228,106, 0,210,150, 95,186,116, 41,158, 18,249,215,207,143, 31, 63,220, 97,101,229, 22, 16,
+210,224,230,145, 6, 50, 32,125, 2, 32,120,118,114,234,254, 69,121,174, 26, 95,192, 21, 0, 3,116, 27, 24, 56,216,182,110,221,
+202,201,201, 9, 52, 22, 24, 50, 22, 22, 22,240,174, 64, 76, 76, 12,176, 35,130,223,155,219,182,109,229,227,227,177,179, 55, 55,
+ 48,210, 11,204, 74,250,198,248,231,245,171,119, 25,185,205,157, 38, 42, 70, 98, 36,180, 45,128,165,127, 87, 87,215,104, 29, 64,
+ 76, 53,128, 38, 2, 16, 64,116,218, 8, 54, 32,141,101,242,198,232,205, 90, 91,145,203,110, 32,151,234,122,225,109,237,196,245,
+113,120, 20,208,122, 79, 22,220, 22,228,157, 1,248,181, 0, 75, 31,103,103,103, 96, 25,138,201, 5,150,170,248, 66, 6, 44, 11,
+ 36, 13, 13, 13,129,229, 20, 92, 16,153,139, 21, 72,171,105,233, 94, 61, 43,255,254,227,155,191,255, 62,253,248,195, 14, 44,173,
+127,254,145,227, 97,121,255,231,207,211,175,160, 21, 68,222,170,226,220, 10, 90, 95,176,141,135,192, 87,124,234,234,234,234,235,
+235, 3, 11, 38,200,194, 77,160,179,129, 69,213,250,245,235, 33, 27, 2,128, 34,140, 24,122, 33,187,189,128,233, 86, 77, 77, 13,
+ 88,127,188,126,253, 26,178,132, 20,104, 26, 80,228,213,171, 87, 16,189, 64, 17, 60,245, 37,176,103, 3, 89,202, 9, 44,145,225,
+ 75, 57,129, 46, 33,184, 26, 7,164,215,197, 25,164,247,238,201,103,231,119, 67,245, 90, 59, 17,212, 11, 44,253,141,140,140,142,
+ 30, 61, 10,212, 43, 45, 45, 13, 52,135,155,155,187,170,170,106,210,164, 73,192,174, 15,208,246,190,190, 62, 92,119,196, 3,171,
+188,143,239,239, 0,139,117,126, 33, 53, 9, 41,203,239,223,223,124,249,244,176,187,103, 82, 99, 67,149,148, 12,195,242,124, 46,
+198,176,247,142,113, 12,144, 26, 19,190, 17,248,214,173, 91,192, 52, 96, 99, 99, 3, 52, 31, 88,229, 0,229,166, 76,153, 18, 30,
+ 30, 14,169,110,241,131,155, 55,111,133, 4,251, 71, 68,248,233,232,170,191,253,252,241,203,199, 55,105,121,205,205,129,206,206,
+255,190,145, 84,250, 79,152, 48, 1, 24, 41,192, 90, 39, 55, 55, 55, 32, 32, 96,180,160, 71, 30,240,193, 90,238,195, 1, 64, 0,
+177,208,167,160, 39,184,130, 40, 36, 36,132,188,157,192,184, 0,242, 70, 45,242,234, 0, 82, 75,127,226,245,226, 95,117, 67,235,
+163, 29,224,227, 69,112, 91,144,247, 4, 16, 4,192,114, 16,121,181, 15,156,139,103, 9, 16, 92, 22, 77, 13,126, 45, 16, 32,165,
+168,252,195,204,246,207,169,109, 15, 62, 50,240, 48,178,202,243, 48, 61,253,203,200,204,206,114,232,213,223, 31,255, 24, 68,217,
+153,149, 77,236,190, 8, 42, 96, 43,206, 64, 77,120, 96,139, 27,216, 14, 5,150,137,159, 62,125, 2,150,221,144, 10, 0,216,126,
+ 7, 86, 90,192, 50,107,243,230,205,144,225, 32,180,108, 0, 20,129,108, 27,214,212,212,132,140,222, 0,245, 66,210, 54,164,223,
+ 0, 20, 7,246, 6,190,124,249,130, 63, 97,235,233,233, 1, 75,100,242, 54,115,145,167, 23,232,108, 41, 41, 41,119,119,119, 96,
+173,115,227,198,141, 71,143, 30, 1,107, 59, 1, 1, 1, 96, 85, 52,103,206, 28, 92,123,113,145, 70,129,190,125,120,127,243,199,
+143,119, 2,130,106, 60,188,178,188,124,114, 95, 63, 63,237,232,156, 27, 25,225, 2,172, 0, 96, 1,251, 31,185, 6,240,242,242,
+218,182,109, 27,176,195, 1, 12, 16, 63, 63,191,133, 11, 23, 2,235,117, 13, 13, 13, 98,252,232,237,237,181,126,253,230, 79, 31,
+222, 62,121,246, 60, 63, 59,174,180,162, 45,208,201,202,230,231, 39, 6, 86, 98,203, 37, 96,233,223,208,208, 0,233,134, 2, 59,
+106,192,126, 64, 89, 89,217,104, 29,128,191, 62, 64, 6, 0, 1, 68,205, 10,128,194, 21, 68,100,148,242, 16,240,230,205,220,234,
+ 83, 27,177, 14,248, 16,156,254, 5,234, 61, 85,189, 17,173,193,142, 60,140,131,167, 28,127, 51,247,205,169,141,213,228,233, 29,
+ 40, 48, 20, 79, 13, 82,176,114,188,244,243,207,235,125,123, 89,255,124,191,244,249,255,158,207,127,216, 24, 25,133,255,255,119,
+148, 20,176,119,115, 22, 50,118,192,209,158, 5,245, 0,128, 77, 96, 96,121, 4,108,194, 3, 11,122, 96, 49, 10, 41,196, 33,141,
+119, 81, 81, 81,107,107,235,157, 59,119, 98, 14,227, 0, 69,128, 85, 5,176,185, 13, 84, 15,108,213, 66,186, 17, 12,176,121, 5,
+ 32, 23,168, 0,216,171, 56,113,226, 4,193,105,112, 5, 48, 32,211,227,100,233, 5,214, 1,192, 18, 31,232, 60, 96, 15, 0,216,
+233, 1,246, 93,128,130, 79,159, 62,245,244,244, 4, 54,255, 9,106,255,251,247,231,215, 47, 79,127,253,250,200,249,233, 1,159,
+128, 50, 23,143, 20, 16,237,218,251,146,209, 89, 28,214,152, 3,147, 48,245, 86, 86, 86,192,128, 5,150,254,192,154, 64, 88, 88,
+ 56, 46, 46,238,192,129, 3, 68, 58,213,210,210,138,157,157,157,239,218,217,236,236,100, 25, 53,213,174,130,228, 5,211, 22, 78,
+ 97,254, 65,124,233, 95, 94, 94, 14,244,236,179,103,207, 56, 57, 57,129,145, 2,236,238,180,182,182, 86, 87, 87,143,214, 1,240,
+ 49, 31, 96,161,143,231, 40, 8,128, 0,162,114, 15, 96, 64, 86, 16, 97, 45,212,136,108,254, 99,234, 69,110,191, 67,198,115,112,
+149,227,148,232,197, 83, 22,147, 90, 70, 15,251,147,224,128, 37,154,129,179,187,176,148,204,235,235, 87,152, 31,222, 83,249,253,
+156, 87, 88,220, 74, 87, 67,219, 88,231,187, 4,206,253, 65,192,146, 26,216,246, 7, 54,243, 33,131,245,192,174, 0,144, 1, 57,
+206, 1, 62, 58, 36, 43, 43, 11,172, 3, 48, 11, 44, 96,105, 98, 96, 96, 0,172, 3,128,229, 59, 68, 37,124, 81, 13,252, 36, 56,
+160, 81,134,134,134,103,207,158, 29,156,129, 6,116,188, 24, 24,168,171,171, 3,253, 11,172,198,128,222, 7,134, 70, 53, 81,243,
+ 82,255,127,255,250,252,251,215,151,239,223, 95,179,179, 11,178,178,241, 50, 49,177, 44, 89,186, 53, 38,218, 27, 90, 11,162,170,
+134,116, 44,122,123,123,129, 21, 45,144,161,166,166, 70,252,181,210, 70, 70,198,204,166,166, 73, 13, 16,189,255,213,212,212,213,
+ 2, 2,240,143, 10, 34,131,206,206,206,209, 82,158,152, 58, 0,107,233, 15, 4, 0, 1, 52,108, 47,132, 33,123,233, 39,114,145,
+ 77,106, 19,158, 18,189,163, 0, 63,144,213,212, 6, 34, 32, 3,126,246, 38,254,125, 65,161,161,161,130,130,130,144,165, 62,192,
+ 18, 16, 50,164, 3,233, 1, 64, 38,126, 33, 7,130, 42, 43, 43, 3, 5,143, 92,249,138,172,119,194,132, 9,171, 87,175,134, 40,
+ 0,157, 20,132,227, 56,104, 96,203,151,224,160,202, 32,169, 65,121,192,128,196,230, 2,164, 26,248, 12, 44,253,129,102, 0,131,
+ 13,162, 23,215,152, 23,228,200, 79, 72, 80,147,228, 60, 96, 48, 23, 22, 22,146,161,119,180,153, 79,124, 29,128, 75, 10, 32,128,
+ 70, 47,133, 31, 5,163, 96, 20, 96,148, 11, 12, 12,232,135, 61,252, 31,189, 17,108, 24, 2,128, 0, 26,189, 18,114, 20,140,130,
+ 81,128,209,248,103, 24,189, 1,114, 68, 0,128, 0, 26,189, 18,114, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 10, 96, 20,
+140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8, 32,196, 28,192,232, 37,203,163,122,
+ 71,245,226,210,155,158,158,238, 31,144,190,113, 3,150, 35, 55, 70,195,106,192,245,182,194, 86,220,225, 90,228, 58,122, 41, 60,
+ 46, 0, 16, 64, 44,104,169, 28, 83, 5,145,235,198, 6,149, 94, 34,181, 15,148,155, 7, 15, 32,251,204, 9,234, 30, 68,138, 7,
+ 64,174, 28, 56,120,240, 32,144,109,111,111,143,255,242, 0,218,133, 18,176,244,247,242, 52,130, 28,163, 55,236, 55, 94, 12, 45,
+ 0, 44,253,125,125,149,225,236,234,234,234,209, 48, 33, 30, 0, 4, 16,250, 42,160,255,171, 80,206, 96, 98, 12, 35,225,180,119,
+180,140, 65,210, 9,160,148,232, 69,115, 51, 73,206, 30, 40, 55, 67,192,187,215,119, 94,191,126,254,242,205,151,143, 31,127,243,
+243,179,138,139,240,136,138, 74, 10,137, 18,117,188,218,185,227,211,238,221,189,117,247,193,143,199,207,255,203, 74, 50, 42, 43,
+112, 40, 41,171, 25, 89,102,209,191,218,128,156, 45, 74,163, 98,241,242,229,203, 6, 6, 59,102,204,248,118,224, 0, 67,125,253,
+174,199,143, 31, 75, 72, 72,112,112,112,136,138,138, 42, 41, 41,145, 81, 25, 28, 62,124, 88, 92, 92, 92, 94, 94,158,224,145,156,
+200, 0, 88,250,167,165,165, 49, 48,204,218, 56,122,224,216,224, 3,191,126,149,239,220,153,230,238, 62,203,215,183, 19,210, 27,
+ 24,173, 6,144, 1,158,141, 96, 0, 1, 52, 76,150,129,194, 75,124, 70, 70,134,127, 43, 5, 7,191,131,127,255,250,250,248,209,
+229, 95,191,126,171, 40, 10, 56,216,200, 9,240,179,191,255,240,227,233,243, 47,183,239, 61,255,240,241,141,172,156, 46, 43, 27,
+206,171, 95,223,191,185,117,236,224,108,102,134, 79,225,222, 12,214,198, 12,202,242, 12,119, 30,252, 63,114,230,251,182,253, 23,
+183,174, 45,181,178, 79, 21, 20, 81, 35,210, 25,100,183,253,145, 53, 66, 14,146,163, 81, 29,240,238,221,187,188,188,111,162,162,
+ 12,161,161, 12, 29, 29,160, 11,185,254,252,249, 3,172, 0,196,196,196,128, 21, 0,176, 79, 32, 37, 37, 69,208,144, 23, 47, 94,
+188,122,245,234,229,203,151,174,174,174, 75,150, 44, 97, 0,239,245,141,138,138,194,127,128, 29, 50,216,182,253, 28,176,244, 7,
+147,163, 96,112, 53,255,129,100,112,240,218,157, 59, 65,100, 90,218, 93, 72,111, 96,180, 43,128, 89,244,195, 69,144,235, 0,128,
+ 0, 26, 38, 21, 0,176, 19, 0,169, 3,134, 68,233, 15, 4, 79, 30, 93, 22, 23,225, 48, 53, 84, 4,223,175,196,248,239,223,127,
+ 62, 30,118,110,101, 54, 5, 89,254,107, 55,223, 0,101, 21, 85, 44,112,233, 5,150,254,182,198,159, 10, 18, 25,152,153, 65, 21,
+222,239, 63, 12,220, 92, 12,154, 42, 12, 22, 6, 12, 91,246,127, 2,202,122, 7,119,211,116, 8, 8,235,165,146, 52,186,242, 65,
+ 72, 72,104,203, 22, 78, 89,217,239,192, 30,192,251,247, 44, 42, 96,240,229,203,151,123,247,238, 29, 56,112,224,211,167, 79,192,
+114, 28,127, 63,224,250,245,235,231,206,157, 99,101,101, 69, 22,252,254,253,251,220,185,115,129,134, 68, 68, 68, 16,227,140,141,
+ 27,128, 94, 78, 7,147, 36, 0,248, 61,201,144, 99,239,208,184,120, 98,132, 1,233,196, 64, 60, 92,156,237,161,255,255, 69,222,
+190, 85,122,240, 64,248,233,211, 39, 98, 98,143,148,148, 62,138,137,253, 39,250, 68, 94,160, 59,137, 57,167, 15,143, 22,252, 92,
+106,233,133, 15,254,164,165,237, 4, 50, 32, 36, 68, 10,200, 24,173, 3,176,182,250, 33, 71, 3,193, 69, 0, 2,104, 88,173, 2,
+ 98, 28, 34,238,124,247,250,206,239,223,191,205,140, 36,225, 34, 76, 76,140,108,108,204,156, 28, 44,172,172, 76,202,138,130,192,
+158, 1, 80, 13,174,145, 31, 96,219,191, 48,137,225,199, 79,134,251,143, 25,222,127,100,248,240,137, 97,217, 38,134,220, 6,134,
+170, 30, 6, 43, 35, 6,166,255,159,128,106,134, 77,156,234,234,234,110,220,168, 41, 38,198, 16, 21,197, 34, 33, 97, 10, 44,175,
+125,125,125,125,124,124,220,221,221,197,197,197,129, 37,251,202,149, 43,239,222,189,139,235,162,196, 75,151, 46, 93,184,112, 1,
+173,244,135,131,253,251,247, 95,189,122, 21, 79, 89,124,232,208, 33,120,105, 11, 41,253, 33,108,160, 56, 49, 21,222, 41, 24,192,
+202, 37,178,126,197,207,197, 90,250, 43,221,184, 97,187,103,143,236,173, 59,108,159, 62, 73,222,186,161,179,101,179,232,197,139,
+ 12, 68,223,233, 13,116, 33,176,216, 5,246,153,136,143, 38,136, 22, 60, 92,252,122,145,139,123, 60, 92, 92, 0, 82,238, 67,200,
+ 95,190, 42, 12,163, 0,169,232,199,127,214, 3, 64, 0, 13,150, 30, 0, 85,218,143,255,169, 97, 47,121, 67, 25,240,155,182,136,
+ 25, 99,121,253,230,185,186,178, 16,164,220, 71,147,226, 96,103,249,240,241,167,154,178,208,173,123,207,177, 78, 6,220,187,123,
+ 43, 28,116, 36, 23,195,142, 67, 12, 83, 23, 51,184,217, 50,120, 57, 48,220,184,195,112,254,234,127, 78, 14, 70, 67,109, 6,119,
+123,134,117, 59,111, 25, 89,210,106, 8, 8,107, 16,209,238,198, 55, 96,235, 30,216,222, 7, 50,128, 45,125,107,107,107,184,160,
+160,160,160,166, 38,139,159, 31,176, 15,116,230,214,173,111, 12, 12,192, 64, 97,199, 28,249,185,124,249, 50,174,210, 31, 94, 7,
+224,186, 35, 37, 58, 58,122, 41, 24, 0, 25,112,255, 2,139,126,160, 8, 68,150, 62,121, 1, 63, 23, 19,240,189,124,169,120,242,
+228, 47, 38, 38, 86, 70,134, 63,255,254,255,251,253,247,223,159, 63,162,135, 15,125, 20, 17,249, 41, 67,236, 74, 18, 96,177,123,
+229,202, 21, 67, 67, 67, 3, 3, 3,226,181, 32,119,110,208,184, 68,118, 35, 72, 45,253, 49,139,251,157, 72,253,128, 81, 64, 16,
+ 0, 4, 16,122, 5,128, 57,125, 74,100,161,134,171, 48, 37, 70, 47, 45,198,142,137, 92,166,130,117, 2,153, 72,189,104,202,136,
+159,139,126,249,250,139,163,181, 28,176, 65,118,248,248,227,111,223,127, 3, 69,140,244, 37, 68,133, 57, 31, 63,253,124,231,254,
+123, 22, 22, 38, 85, 37,193,163, 39,191,170,107, 98,209,123,247,193, 15,107, 99,134,159,191, 25,182, 31,100,216,127,252,191,148,
+ 56,163,146, 28,131,179, 13,131,134, 50, 35, 11, 51,232, 28,117, 11, 3,134,238,153, 63,240, 15,248, 16,100,224,105, 53,192, 71,
+252,209,198, 37,104,183, 54,230,209,163, 71, 12,224,243,241,145, 5, 31, 60,120,160,165,245,170,170, 10, 20,240,109,109,183, 30,
+ 60,208,102, 96, 67, 63, 25, 20,168, 6,127,233, 15, 81,131, 75,202, 14, 12, 32, 37, 62,164,208,135, 87, 12,240, 11,141,169, 14,
+ 40,108,254, 3,129,192,245, 27,191,126,255,102, 98, 98,250,207,204, 12,186, 20, 1,114,160,221,223,127,236,151, 46, 17, 95, 1,
+ 48,128,239,149, 60,122,244, 40,176,171, 42, 45, 45, 77,204, 68, 11,133,117, 0,121,109,127, 96,113,239, 62,203, 61,120, 45, 67,
+218, 78, 16, 3,200,133,212, 10,108,155,239,140, 22,238,104, 0,235,189,240, 0, 1, 68,120, 21, 16,241,235,130, 48, 91,133, 68,
+182, 19,177,214, 19,196, 87, 60, 88, 93,142,231,242,116, 92,197, 52,124, 2,153, 72,189, 88,149, 65, 76, 3, 54,236,255,173,194,
+ 57, 27, 1, 94,243, 3,106,174, 62,126,246,233,251,119,208,181, 86, 42, 74,130,192, 10,224,226,213, 87, 55,111,191,227,224, 96,
+ 86, 86, 20,120,255, 17,251, 65,243,143,159,255, 87,150, 7,153,239, 97,199, 96,160,197,200,206,198,240,231, 15,168, 31, 32,192,
+203,112,239, 17,131,187, 29,131,188, 12, 72, 13, 77, 83, 18,188,220, 39,114, 72,122,160, 0,214, 65, 12, 82,157, 10, 41,235,225,
+ 21, 0, 77, 75,127, 56,192,117,117, 59,158, 43,221,225,128,245,238,157,159,191,127, 49, 50,179,252,253,255, 31,152, 78,254,252,
+253,247, 27,216, 17,248,251,151,241,246, 77, 6, 6, 47, 82, 93, 2,236, 7, 0, 59, 82,220,220,220,252,252,252,196,215, 1, 68,
+ 14,254, 80, 88,250, 87, 87, 87,183,182,182, 2, 75,127,120,101, 0, 36,129,213, 0,176,244,223,188,249, 46,100, 2, 0, 50, 75,
+172,103, 23, 63, 90,250, 99,150,254, 64, 0, 16, 64,131,101, 8, 8,107, 97, 74,100, 65, 76,210, 90, 85,236, 38, 80,105,237, 16,
+208, 37,196, 24,197,207,207,250,254,195, 15, 17, 33,174, 80, 63, 13, 96,254,100,103,103,102, 6,182,215,254,255,247,113, 83,246,
+118, 85, 6,154,240,246,253,119,160, 26,172,122,101, 37, 25,239, 62,252,175,161,204,224,100, 9, 26,242,186,113,135, 65, 79,131,
+ 65,144,143,193,211,129,225,223, 63, 6, 96, 39,224,214,125,144, 26,252,129, 76,144, 65,252, 70, 18, 74,198,205,136, 1,192,246,
+ 43,176, 5,122,247,238, 93, 96, 75,220,214,214,150,135,135, 7,114, 98,176,130,130,194,169, 83, 98,141,141, 79, 25, 25, 25, 95,
+189, 82, 83, 83, 83,184,246, 12,139, 94, 52,145, 85,171, 86,161, 52, 26,254,255, 15, 15, 15, 39,190, 14,160, 91,233, 79, 70,221,
+ 0, 7,239,100,164,217,110,220,252,207,202,192,246, 15, 52,239,251,251,239,159, 95,255,255,126,251,243,231,187,138, 6, 25,142,
+209,209,209, 1,134, 63,145,165, 63, 3,248,154, 79, 96,147, 31, 94,124,163,113,113, 1, 72, 47, 1,174, 12,141, 75, 16, 0,155,
+255,144,162, 31, 72, 34,183,253, 33,179,196,192,202, 96,180,244,199, 90,250, 3, 1, 64, 0, 13,135, 85, 64, 4,123, 30, 4,193,
+255,255, 12, 76,225,239, 41,175, 3, 32,139,145,152,194,222,227,105,254, 3,129,184, 8,207,227,167,159,129, 21, 64,223,244,211,
+118, 86,178, 70,122,226,140,172,140,144,229, 64,144,149, 26, 64, 89,160, 26,172,122,149, 21, 56,142,158,253, 14,172, 0, 68,140,
+ 25, 42, 50, 25,242, 19, 24,248,121, 65, 35, 63,141,147, 24, 26,242, 65, 10,142,158, 5,169, 33,105,160,140,242,197,160,180, 91,
+ 6,250,230,205, 27,200, 61,136, 91,183,110,125,244,232,145,135,135,135,162,162,226,231,207,159,223,191,127,127,253,250,159, 3,
+ 7,128,133,133,137,163,163,163,140,140,204,181,103,175,209,244, 2,219,173,248,111,236,250,243,231,207, 96, 75,204,240,210, 31,
+ 79, 53,128,191, 14,248,164,165,205,126,233,210,191,255,255,185,153, 88,152,153, 25,255, 0, 75,255,223,191, 63,255,250,245, 91,
+ 95,159, 36,151,112,113,113,145, 52, 7, 0, 47,238,113,113,105, 81, 7, 0,155,249,105,224, 54, 62,114,233, 15,111,254,143, 2,
+252,165, 63, 16, 0, 4,208,232,113,208,176,214, 34,149,214,143, 66,235, 0,188,213,137,168,168,228,157,251,207,244,181,197, 42,
+242, 45, 22, 44,191,204,201,193, 98,160, 35, 6,191, 78,249,223,191,255,119,238,191, 23, 23,195, 62,234,170,164,172,182,117,223,
+197,132, 96,134,255,247, 24, 44,130, 24,148,100, 25,150,110,132,201,229, 51,252,253,203,176,117, 31, 72, 13,237, 2, 10,107,255,
+140,118,203, 64,111,220,184,161,169,121,127,254,124, 32,243,111, 83,211,165,117,235,190,169,171,171, 3, 43,128,123,247,238,189,
+124,249,210,200,200, 8,216,132,199,181, 12, 84, 73, 73,233,244,233,211,120,238, 24, 33,242,122, 94,248, 16, 16,144,164,117, 15,
+ 0, 88,178, 67,138,126, 92, 67, 64,184,164, 16,181,154,140,204, 91, 91,187,191,251, 15,252, 98, 99,229,249,207,242,227,223,191,
+143,191,126,125,118,114,254, 47, 39, 71,116,135,152, 17, 88,254, 18, 63,244, 15,215, 2, 47,238,209,184, 36,213, 1,184,214,206,
+226, 1,104,165, 63,124,228,103,116, 54, 24,127,233, 15, 4, 0, 1, 52, 90, 1, 80, 19, 64, 39, 0, 8,141, 2, 9,137,170,124,
+248,248,230,228,217,103,230,198, 82,158, 46, 74, 59,246,222,219,186, 11,148,106,107,138,173,128,165, 63, 80,156,157,157, 13,215,
+126, 96, 35,203,172,173,107, 75,251,231,129, 86,130,206,104, 1,173,254,116,177, 6,173, 4,237,175, 5,149,254,253,243, 24,254,
+ 50,240, 17,191, 31,152,212, 54, 59,174, 30, 3,237, 86, 1,125,253,250,213,208,240, 7,164, 36, 49, 49,249,191, 99,199,189, 91,
+183,110, 65, 54,130, 57, 56, 56,216,219,219,227,217, 4,160,172,172,124,249,242,101, 92,157, 0, 96,243,223,216,216,152, 24, 55,
+ 64, 22,131, 66, 22, 5, 1,217,196,215, 1,104, 27,205,136,220,119, 6,175, 3,112,201, 18,208,207,196,244,203,220,252,141,148,
+212,151, 75,151,120, 30, 61,250,161,168,248, 85, 91,251,175,172, 44, 3,209,151,109,145, 87,118, 35,107, 65,227,226,247, 56,178,
+ 44,154,189,164, 58, 3, 2,144,203,125, 72,111,128,212, 33,205, 97, 6,240,172,233, 0, 8,160,209, 10, 0,203,234, 29, 58, 24,
+ 37, 43,167,251,248,209,229,181, 91,110,170, 40, 10,122,187, 41, 11, 10,112,188,255,240,227,252,229,151,192,182, 63,176,244, 7,
+202,226,209,107,101,159,122,248,224,236, 99,103, 63,121, 59, 49,204,110, 7,237, 4,190,251,144, 97,238, 42, 80,219, 31, 88,250,
+ 3,101, 41, 47,208,201, 40,253,105, 52, 7, 32, 33, 33,241,224,129,200,153, 51,160,225,157, 91,183,248, 76, 77,181,132,133,133,
+225, 59,129, 9, 30, 5, 97, 97, 97,113,240,224, 65, 70,140, 61, 80,192,210, 95, 69, 69, 5, 88, 67, 16, 83,250, 35,143,254, 67,
+186, 2, 68,214, 1,100, 23,103,184, 74,121,194,165, 63,172, 14,248, 39, 47,255, 13,136,200, 10,115, 50,138, 93,252, 62,197,111,
+ 32, 37,122,241,151,254,160, 69,162, 35,126, 2,128, 1,219,126, 96,120,149, 0, 16, 64,132,151,129, 18, 63,197, 74,204, 50, 80,
+226,245, 18,175,157, 18,123,177,250,142, 60,123, 73,154,139,102,101,227, 86, 82,177,120,247,250,206,189, 7,207,143,159,121, 2,
+ 63, 11, 72, 92, 76,138,224, 89, 64,130, 34,106,222,193,221,231,142, 79, 91,185,245, 86,219, 84,186,158, 5, 68,231,210, 31, 8,
+212,213,213, 47, 94,244, 74, 76, 60, 3,238, 1,152,132,133,233,115,113,113,145, 84,127,132,135,135,223,188,121,243,204,153, 51,
+204,160,185,118, 38, 96,209,207,198,198, 6,108,251, 3, 77, 38,181,244, 39,163, 14, 24, 5,180, 6,160,181, 64,105,173,238,179,
+220,177,238, 9, 24,157, 12,192, 15, 0, 2,136,133,146, 1, 1,154,234, 37,210,192, 65,229,102, 82, 1,176,172, 7, 34,117,178,
+244, 2,203,122, 34,119,123, 81,203, 23,116,219,195,129, 12,128,197,189, 37, 24, 80, 88,139, 16, 83,220, 99, 2,204,178, 30,200,
+134,108, 11, 24,173, 0, 6, 85, 29,192,240, 16,139,184, 73,181,201, 8, 15, 25,130, 87,190, 3, 4,208,232,165,240,163, 96, 20,
+140,130, 81, 48, 66, 1, 64, 0,141,222, 8, 54, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5,
+ 35, 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,
+208,232,165,240,212,209,139,231, 88, 52,154,234,189, 7, 6,171, 87,175, 38, 67,239,253,251,247,239,222,189, 75,158,222,209,180,
+ 49,170,119, 84,239, 80,209,139, 7, 0, 4, 16,206,141, 96, 68,158,130, 73,117,189, 84, 7,105,161, 31, 25,216,216,102, 45,229,
+196,163, 6, 88,134,226,217,123,137,223,205,112,189,189,189,189,197,197,197, 36,221,150, 14,215,123,101, 42,159, 78,246, 39, 50,
+110, 90,215, 19,158,242,255,205, 95, 32, 99,214,172, 89,224, 75,107, 73, 0,102,234, 43,254,124,250,196,201,201, 9,172, 3, 66,
+ 67, 67,105, 23, 5, 68,238,171,192,234,223,129,210,139,203, 52,250, 36, 96, 70, 70, 70, 38, 48,128,108, 97,251,245,235, 23, 51,
+248,108,231,255,255,255, 51,140,130, 81, 64, 61, 0, 16, 64, 44,184,210, 58,214,164,198, 72,232, 86, 57, 72, 38, 33, 79, 47, 49,
+ 45, 98,178,193,238,221,187, 25, 56, 52,241,148,194,229,229,229, 98, 98, 98,104, 82,192, 2, 29,191,177, 16,189,144,162,255,196,
+137, 19,144,106,128, 36,189,255,174,213, 49,105, 53, 45,218, 7, 58,174, 0,200,134, 72, 1, 69, 8,250,136,239, 83,209,191,255,
+ 12, 43,118,128, 52,122,218,179,106,171, 92, 5,214, 1,160, 10,143,136,106, 64, 88,238,212,235,219, 47, 14, 95,147,255,250,147,
+219,211,253,131,180, 4,227,153, 51,199, 62,125,250,225,228,228, 68,163,116, 70,211, 70, 3, 30,189, 4, 75, 76,226,147, 37,169,
+ 0, 24,191, 93, 93, 93,165,165,165,196,236, 55, 70, 6,192,178,158, 5, 12, 32, 59,215,128,137, 4,104,200,223,191,127,255,128,
+ 1,144, 65, 35, 7,111,221,186, 21,127,224,120,121, 17, 62, 77,122,219,182,109, 36,169, 31, 5,116, 3,144,253,192,104,235,254,
+ 1, 2,136,133,164,210,223,216,216,248,236,217,179, 4, 51, 33,214, 76,133, 71, 47,154, 57,192,178, 24, 50,172, 65,246, 1,147,
+105,190,179, 24, 56,213,102,173,114, 0, 53,141, 87,243,131, 74,127, 66, 37, 56,230,217,241,192, 18, 28,255,169, 44,112,189, 64,
+ 54,176, 5,109, 1, 6, 36,233,133,148,248, 16,178, 3,182, 91, 27, 88,250,151, 5,115,116,173,253,129,199,131,252,223,139,117,
+212,152,191,126,255, 95, 20,203,113,226,234,159,239, 95,255,127,251,197,224,104,112,245,234,173,191, 4,187, 2,247, 30,247,159,
+ 59,205,205,203,199, 40, 33, 41, 46, 42,174,242,240,238, 47, 5,173,223,172, 28,175,246,172,127,179,126,253,250,192,192,192,209,
+172, 66, 21, 0,140, 95, 95, 95, 95, 96, 29,128,150,134,141,140,140, 26, 27, 27,129, 82,216, 91,100, 44, 44,108, 48,240,248,241,
+ 99, 85, 85, 85, 96, 53,192,203,203,123,231,206, 29, 30, 30,158,211,167, 79, 31, 63,126, 60, 59, 59, 27,103,202, 7, 71, 61, 60,
+255,194,115, 34, 68, 4,200,133,180, 18,176,130, 77,155, 54, 97,106,129,139, 0,185,196, 20,232, 27, 55,110, 36, 73, 61, 85,192,
+139, 23, 47, 36, 36, 36, 70,147, 28,158,114, 31, 23, 0, 8, 32, 22,146, 74,127,252, 54,225, 57,168, 4,255, 17,231,104,165,127,
+ 71, 71, 71, 69, 69, 5, 92,132,248, 58, 32,205,120, 22,131,176,218,172, 93, 14,240, 86,191,171,171, 43,144, 1, 33, 49,199,197,
+144, 75,112,172,165, 63,102,159, 0,211, 83,240,150, 62,176,198, 66, 14, 10, 98,244, 98,109,233, 3, 75,127,252,222, 20,249, 94,
+164, 42,207,204,201,206, 40, 47,197,252,230,253,191,223,127,152,223,126,248,255,241,203,255, 59, 79,254, 49, 48, 49,136,112, 93,
+ 2,250, 75, 73, 73, 9,171,222,127,255, 87,107, 42, 43, 29,127,241, 82, 81, 78, 84, 71, 79,137,153, 93, 72, 94,241,253,251,239,
+ 63, 94,189,248,251,228,229, 15, 46, 22,160, 86,125, 92,122,105, 55, 34, 68,124, 20,147,167, 23,179, 69, 66,235,177, 20, 96, 56,
+ 2, 45,213,210,210,218,188,121, 51,114,116, 0, 51, 17,158,210, 31, 8, 88, 89, 89, 57, 56, 56,222,188,121,163,166,166,102,104,
+104, 8,172, 15, 38, 77,154, 4,108,245,235,234,234,174, 91,183, 14, 88, 1, 92,186,116, 9, 88, 37,224,234, 7,248,251,251, 67,
+252,139, 43, 23,227, 41,148,129,101, 55, 36,100,176, 54,224,128,226, 47, 95,190, 36,166, 2, 32, 73, 61,164,248,222,191,127, 63,
+ 86, 41, 71, 71, 71, 98, 74,118,160,118, 41, 41, 41,117,117,245,209,106,128, 84, 0, 16, 64, 44,152,185, 11, 87,251,157, 62, 14,
+ 2,230, 22, 96,233, 79,100,133,129,115,180,135, 33, 13, 72,174,158,101,198,192,246, 29,207,232, 63, 90, 9,142, 86,153,225, 47,
+193, 33, 0, 94,121,156, 56,113, 2,185,249, 79,140,222,101,165, 60,152,185, 52,186,231, 43,126, 93,255,254,253, 99,231, 98,100,
+ 98, 98,224,226,100,248,240,233,223,207,255,255,185, 57, 25,127,252, 99,248,254,243,191,140, 40,211,191, 63, 12,183, 31,255,221,
+179,103, 15,214, 78,192,167,143, 39, 4, 4,184,217,216,254,167, 38,152,255,253,251,255,197,171, 95,143,158,126, 96, 96,125,204,
+ 41,248,243,249,171, 7, 76,108, 31,175, 93,251,240,244,229, 30, 82,231, 18, 40, 28, 17, 66,190, 89,140, 24,128,124,226, 30,230,
+253,157,184,192,187,119, 46,112,182,144,208, 30, 92, 69, 36,193,250, 6, 89, 4, 79,221, 3, 76, 90, 62, 62, 62,144,114,255,234,
+213,171, 16, 6,164,237, 15, 20,199, 99, 35, 59, 59,251,215,175, 95, 53, 53, 53,129,101, 31, 48, 33, 37, 39, 39, 3, 5,127,255,
+254,189, 96,193, 2, 96, 7,250,220,185,115, 43, 87,174,252,254,253, 59,230, 93, 55, 16,224,237,237, 77,118,164,204,157, 59, 23,
+127, 37, 74, 76,139, 30,110, 8,145,234, 25,192,231, 53, 1,139,239,103,207,208, 47,244, 1, 10, 18, 95,160, 63, 3,131,209,106,
+ 0, 19,192,199,124,176,118, 5, 0, 2,136,133,152, 86, 60, 37,197, 49,169, 0,185, 29, 77, 84,171,127, 86, 58,131, 36,195, 44,
+ 95, 80, 86,156,117, 54, 13, 62,218, 3,110,245,127, 68,238, 7,224, 47,193, 95,189,122, 5, 47,181,137, 44,193,241, 3, 72,189,
+ 2, 44, 47,112, 29,182,129,167, 0,130,140,255, 96,234, 5,106,121,115,173, 72, 18, 60,248, 3, 17,249,254,247,255,143, 95, 12,
+191,193,220,223,127,254,255,103, 2, 49, 46, 95, 58, 11,172, 71, 25, 24,216,208,140,253,248,241, 42, 43,187,160,136,144,192,135,
+119,223, 62,124,252,112,226,204,139,167, 47,255,179,113,127,147, 86,249,242,253,219, 27, 85,189,223, 10,154, 63, 87,206, 62,123,
+231,206, 29, 6, 6,142,209,156, 67, 97,243, 31, 8,128,205,127, 96,113,191,101,203, 22,109,109,237,208,208, 80,130,165, 63,164,
+ 2,120,253,250, 53, 23, 23,151,157,157, 93, 79, 79, 15,176, 67, 0, 76, 6, 11, 23, 46, 4,150,254,192, 70,198,222,189,123, 47,
+ 95,190, 44, 34, 34,130,231, 42, 27, 96,253,141,107, 8,104,246,236,217,120,172,166,202, 16, 16,208, 16, 50,134,128,128,165, 54,
+102, 5, 64,198,241, 77,163,213, 0,169, 0, 32,128, 6,215,113,208,152,247,138, 16, 57, 56, 0,106,239, 87,220,103, 96,102, 75,
+115, 83, 96, 16, 80,152, 5,190,248, 15,255,232, 63, 85, 6, 49, 32, 19,191,240,182, 63, 50,128,204, 10, 96,118, 47,136,108,177,
+ 46, 45,225,198,236, 13,240,126, 42,126,240,235,255,139, 55,192,214, 31, 19, 15, 23,168,171, 14, 44,244,127,252,100, 0,214, 1,
+ 64,242,215,111,134, 31,223, 25,126,253,132,181, 64, 81, 43, 15,158, 63, 69, 79, 31,201,201, 42,242,252,103,101,121,243,253,251,
+254,131,143,175,221,121,250,238,221, 23,109,227,191, 95,127,252,249,241,243,239,247,111,255, 94, 60, 98,248,254,149,161,187,187,
+123,244,132, 40,172, 61, 21, 34, 19, 36,164,249,175,165,165, 5,108,248, 3, 43, 3, 96, 5, 0,233, 4, 16, 44,253, 33, 67, 64,
+ 6, 6, 6, 28, 28, 28,192, 66, 63, 41, 41,169,189,189, 29, 88,146,158, 60,121,242,224,193,131,151, 46, 93,250,248,241,163,170,
+170,234,167, 79,159,240,220,114, 19, 16, 16,128,217,182,128,244,120,240,247, 15, 6,106, 8, 8,107, 39,128,164,230,255,104, 53,
+ 64, 54, 0, 8,160, 65, 81, 1, 64,134,254, 33,221,100,228, 58, 0,158,217, 32,131,245,196,143, 20, 67,202,125, 96,195, 31, 60,
+ 10,196, 54,107, 41,245,221, 12, 89,249,227,226,226,178,103,207, 30, 92, 93, 25, 92,189, 25,172,133, 59, 49, 99, 65,241,149, 95,
+165,196,153,162,124,217,128,197, 61, 63, 47, 35, 19, 35,184,225,207,240,255,199, 55,134,175,191,254, 3,187, 5, 95,127,252,255,
+247, 31,251,205, 31,241,249, 95,117,245,239, 73,104,188,219,189,253,213,187,119, 63, 12, 44, 63,233, 9,125, 97, 96,253,249,227,
+219,191, 87, 79,255,127,253,202,248,231, 15,163,144, 8, 35, 3,227,191,209, 92, 65, 21, 0, 73,207,200, 19, 42,192,154, 0,185,
+104,198, 58, 19, 0, 44,217,203,202,202, 88, 88, 88, 22, 45, 90, 52,127,254,252,196,196,196,142,142, 14, 96,137,252,224,193,131,
+239,223,191, 3,179, 9,176,237,159,145,145,129,103,241, 18,217, 83,175, 3, 53, 4,132,181, 19, 64,222,233,173,163,128, 84, 0,
+ 16, 64,131,165, 7,128, 60,108,141, 89,208,227, 42,100,145,193,172,179,105,176,162,255,246,234, 73,247,193,171,128, 16,245, 1,
+158, 81, 32, 74, 70,120,128, 14,131, 55,255, 33,189, 1, 56, 27,216, 3,128,236,177,194,156,124, 38, 88,250, 67, 86, 1, 97,234,
+253,243,151,225,235,183,255, 63,127,129,166,124,129, 36, 11, 59, 84, 16, 88, 1,124,255,253,255,237,187,255,175,223,255, 63,119,
+237,207,191,127,160,161,188,171, 79, 81,204,252,243,135,225,217,227, 95,143,239,190, 63,114,252, 61,176,145,119,237,198, 63,159,
+168, 63,108, 44,255, 95,191,100, 56,178,139,225,211,167,255,255,255, 49,216, 56, 49,114,112, 48,120,122,250,227, 95,105,184, 97,
+ 65,122, 64, 2, 69, 43,116, 41,185, 65,140,164,123, 23,224, 64, 72,104, 15,221, 18, 51, 90, 2, 6,114,141,140,140,206,157, 59,
+183,121,243,102,100,113, 92, 83,193,192,182,133,128,128, 0,164, 17, 61,111,222, 60, 96, 63, 0, 88, 19, 64,106, 14,160,212,135,
+ 15, 31,128, 61,128,111,223,240,221,245,146,154,154,138, 60,116, 3,105,254,227, 31,255, 25,216, 33, 32,180, 78, 0, 37,205,127,
+136,246,209,182, 63,145, 0, 32,128, 6, 75, 5,112,246,236, 89, 92,107, 87,128,226, 4,214,143,178,115,175, 86, 56,196,240,231,
+ 44,131, 34,119, 90,171,226,172, 3,192,142,246, 44, 88,101,224, 74,252, 40, 16,242, 74, 80,204, 85,161,152, 57, 28, 88,138, 65,
+ 74,127,228, 25, 96, 72,219, 31,194,197,218, 3,128,235, 37,175,100,185,125,251,246,163, 43,147,254,137,254, 99, 98, 97, 96,101,
+ 2,229,180,223,255,254, 3, 11,247,207,159,255,255,250,205,240,231, 55,168, 62, 40, 44, 2,117,167,174, 62,125,130,169,247,225,
+173,137,218,218,255, 14, 31,252,203,200,196,240,250, 5, 35, 7, 39,195,193, 29, 12,191,190, 3, 75, 8, 6, 61, 35,214,103,143,
+254,217,219,123, 3,243, 45,158,157,132,192,210,191, 43,155,161,108, 42,249,117, 0, 37, 23, 8,147,167, 23,215,176, 6,125, 0,
+100,229,143,143,143, 15, 36,234, 33,221, 89, 96, 51, 31,171,226,127,255,254,157, 63,127,222,214,214, 22, 46, 2,172, 3, 32,101,
+241,239,223,191,255,254,253, 11,140, 68, 81, 81, 81, 92,147,192,240, 81, 32, 50,218,239, 3, 56, 4,132,214, 9, 32,187,249, 63,
+ 90,244,147, 10, 0, 2,136,180, 10, 0, 88, 16,211, 98, 39, 36,164,177, 12,204, 21, 64,134,139,139, 11, 90,219, 31, 82,140, 18,
+191, 85, 21,190, 10, 8,194, 37,166,237,143, 60, 3, 12, 1, 16, 46,100, 49, 40,126,189,240,210, 31,109, 62,128, 24,189,184, 0,
+176,249,143, 75,175,170,170,234,252, 57,191,157, 45, 88,129, 5,192,239, 95,255,216,217, 64,121,245,243,215,255, 63,127,255, 7,
+ 22,253,103,175,252,253,251,239, 63,174,117,156, 64,189,139, 23,254,177,119, 96, 14,140,102,254,242,249,255,231,143, 12, 95, 63,
+ 51, 42,170,254,255,251,155,145,133,137,227,195,187,127,207,158,252, 42, 41,244,193,223,246,159,144,207,160, 38,199, 48,185,136,
+ 33,183,143,162, 58,128,236, 62, 1,121,122, 41, 95,247, 73, 94,202, 7,150,254, 13, 13, 13,200,141,253,174,174, 46, 32, 23,215,
+238,176, 95,191,126, 1,139,176, 31, 63,126, 48, 51, 51, 67,238, 62, 91,187,118,109,112,112,240,247,239,223,129,130, 63,127,254,
+228,225,225, 1, 86, 3,248,189, 67,222, 90,160,129, 29, 2,130,119, 2, 32,140,209,162,159, 62, 0, 32,128, 72,168, 0, 40, 44,
+253,241,104, 7, 22,250,144, 82, 30, 50,110, 14, 95,114,138,220,240, 71,171, 24, 80, 0, 51, 35, 3, 27, 19, 3, 39, 51, 3, 15,
+ 11,195,207,207,171,219, 89, 25, 56, 79,165,133, 40, 50,112, 10,205, 90, 76, 84,195, 31,235,154, 31, 72, 9,142,127, 81, 60,114,
+233,143, 60, 31, 64,140, 94,252,165, 63, 30,189,109,157, 51,138,242, 51, 56, 56,128,173, 69, 6, 93,117,102,104, 88, 93,254,251,
+251,239,255,191,255,152, 75, 74, 74,240, 24,222,212, 50,163,164, 36, 3,216, 99,248,245,251,255,223, 63, 12,192, 46,132,131, 55,
+195,231, 15,140, 55, 46, 2, 11, 24, 38, 63,223, 32,252,165,127, 67, 50,131, 10,248, 72, 18,101,105, 6, 10,251, 1, 35, 1, 96,
+238,249, 2,173,236, 2, 3, 92, 90,128, 21, 0,176,172, 7,109,199,208,215,255,243,231, 15, 43, 43, 43,176, 77, 13,108,196, 0,
+ 75,255,111,223,190, 1,155,255,130,130,130,120,150,129,194, 1,124, 64,149,152,193,159,193, 48, 4, 4,239, 4,144, 17,206, 68,
+110, 23, 24, 5,152, 0, 32,128,136,173, 0,104,212,246,199,218,181,199, 28,240, 33,219,106,130,163,255,148,148,254, 12,168, 51,
+189,240, 58,140, 1,188,154,150,160, 94, 92, 51, 1,196,232,237,155, 56, 3, 24, 92, 76, 76, 12, 71,206,130, 70,252, 33,179,190,
+224,161,255, 18,130,122,123,122,102,100,100,130, 55,124, 48,129,180,156, 58,196,240,245,203,191,255,255, 24,252,252,188,221,221,
+221,241,148,254,229, 49, 12, 2, 60, 12,207,222, 48,112,178, 51,252,251,207,192,205,193,208,154,206, 80, 61,115,152,215, 1,184,
+186, 23,196,164, 73,180,210, 63, 35, 35, 3, 82,244,111,222,188, 25, 88, 74, 98,173, 6,128, 21, 0, 19, 19, 19,176, 61,251,249,
+243,231, 51,103,206, 24, 26, 26, 2,171,129,143, 31, 63, 94,188,120, 81, 81, 81, 81, 88, 88, 24, 88,250, 3, 69, 8,118,104, 32,
+ 59,194, 72,234, 16, 12,248, 16, 16,121,109,127,178,117,141, 2, 32, 0, 8, 32,244, 10, 0,215,146,127, 34, 87,191, 81,210,131,
+ 6, 42,192, 60,148,141, 96,105, 56, 43,109, 38,104,180,231, 22, 3, 8, 33,192, 71, 48,186, 79,182,155,137, 41,133,225, 62, 2,
+150, 17,144,253, 4,192,106,131,212,171,140,129,122,151,150,112, 67,234, 3, 82,111,232,133, 7, 23,100,214,151,248, 14,199,140,
+233, 8,189, 95, 62,129, 10, 8, 63, 63, 63,194, 97,181,132,250,197, 40,173,245, 14,224,208, 63, 3,234, 52, 47, 48,192,129,101,
+226,150, 45, 91, 48,165,208, 42, 0,160, 50, 96, 3, 31,200,144,147,147,251,240,225, 67,109,109, 45,176, 2,144,150,150,254,242,
+229, 11, 80, 16, 50, 19, 64,208,106, 50, 70,129, 94,188,120, 65,185,151,169, 98,200, 40,160, 27, 0, 8,160, 65,113, 41, 60, 28,
+ 0,139, 48, 50,204, 33,123,133, 15, 21,251, 52, 4,143,126, 35,163, 43, 64, 76,112, 97,101,147,170,151,152,210,159,146,102,254,
+ 64,165, 43,170,196, 47,121,134,192,143,243,132,159,232,169,169,169, 57,111,222,188,127, 96,128,167,253, 14,105,221, 3,213, 0,
+ 11,122,200, 97,112,224, 10,254, 31, 29, 14,131, 27, 5,195, 27, 96,221,220, 3, 16, 64,163,151,194,143,130, 81, 48, 10, 70,193,
+ 8, 5, 0, 1, 52,122, 35,216, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16,
+ 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64, 88, 46,133,
+ 71, 62,146, 1,249, 62, 22,100,241, 97,124,201, 50,242, 82, 84,184,223, 71, 47,164, 30, 90, 97, 69,146, 70,252,246,182,182,182,
+ 66, 24,213,213,213, 35, 45,126,169, 30,212,163,249,104, 64,244,226, 1, 0, 1, 68,181,179,128, 32, 39,122, 18,167,150, 13, 83,
+ 47,156,141,118, 26, 40,145,247,111, 80, 8,224,215, 2, 67,138, 51,248,253,121,116,168,129,111,221,186, 5,191,147,160,168,168,
+104,240, 31,130,136, 22, 86,215,175, 95,103, 0,175,113,164,169,165,192,100,224, 31,144,190,113,195, 76,180,100,176,109,251, 57,
+160, 32,214,132, 1,148,194,106,148,151,167, 17,241,246, 2, 75,127, 95, 95,101, 56, 27, 87, 29,128, 11,124,254,242,249,222,179,
+123,223,254,127, 99, 96,100, 96,251,199, 42, 39, 42, 47, 42, 44, 74, 80,215,177, 99,199,144,185, 86, 86, 86,163, 13,213, 81, 64,
+ 35, 0, 16, 64,212, 60, 12,142,200, 75, 84,174, 62,253,128, 41,136, 86,230, 34,111, 71,196, 95, 28, 19,185, 75, 8, 79,229, 1,
+ 49, 1, 82,162, 97, 46,208,134,200, 98, 93, 44,139,108,181,180,162, 44,144,124,249,227,199,159,239,224,243,248, 63,124, 98, 0,
+159, 95,132,239, 4, 11, 48, 64,190,144,178,175,175,143,152, 11,208,153, 24, 65, 27,113, 33, 36, 16, 96,101, 76,159, 65,147,202,
+ 18, 57,172, 32, 69, 63,241, 97, 69,118,253, 13, 41,253,193, 5, 55,168, 14, 32,222, 40, 72,133,129, 81, 1,144,230,140, 95,191,
+202,119,238, 76,115,119,159,229,235,219, 9,233, 13, 16, 89, 13, 28,185,122, 68,222, 80, 54, 57, 56, 65,144, 75,240,223,159,191,
+ 63,254,255,220,113,114,215,190,131,123,173,148,172, 57, 56, 56,240,148,254,153,153,153,200, 34,211,167, 79, 31,173, 3, 70, 1,
+ 37, 0,249, 46, 48,180,236, 9, 16, 64, 84, 62, 13, 20,237, 92, 76, 50, 0, 25, 71,118, 17,220, 22,143,167, 45, 15,191,133, 24,
+200,134,144,104,178, 68, 29, 36, 41,192,119,233,222, 10, 78, 6,153,191, 12, 71, 95,205, 57,119,241,238,219,160,142,249,180,139,
+206, 75,151,175,232,233,234, 0,203,250, 43, 87, 64, 12,160, 8,132, 1, 23,249,135, 55, 60,240,223,248,136,231,210,112, 72, 88,
+ 37, 36, 36, 0,217, 16, 18,189,244, 7, 6, 20,182,184, 0, 74, 57, 59,111, 79, 79,247, 36,187, 14, 0,150,254, 96,103,207,218,
+184,129,112, 17, 15,215, 66,106, 89,143,217,252, 7,146,193,193,107,119,238, 4,145,105,105,119, 33,189, 1,130, 93, 1, 96,154,
+217,127,115, 95,118, 78,166,137,168, 33, 39, 63,255,255, 95,127,254,253,255,203,204,194,166,226,162,114,195,248,102,199,172, 78,
+115, 17, 11,200, 65,111, 88,193,155, 55,111,224,108,111, 91,110,243,252,163, 17,157, 63,224, 34, 78, 78, 78,196,123, 97,195,134,
+ 13,152, 39,131,210, 65, 47, 85, 0, 25, 87,189, 67,246, 33,143,158, 12,129,171,244,135,112,145,235, 0,128, 0, 98, 65,238,218,
+147,194,102,195,180,233,213,171, 87,240,147,144,241,212, 16, 12,236, 26,120,202,104, 70,140, 34,155,152,161, 24, 60,197, 22,158,
+187, 4,128, 5, 19,176,145,142, 89,238, 67, 46, 37,134, 87, 12,120, 0,176,225,255,244,253,199,117, 25,193,194,140,214,119,103,
+151, 40, 5, 42,237,166,113,233, 15, 4,144, 66, 31, 8,116,116,116,224, 34,144, 62, 1, 92,132,146, 54, 62,214, 98, 26, 18, 86,
+152,229,254,130, 5, 11,128, 97,229,105,109,184,253,232,121, 6, 94,110,134, 79, 95,104,225,101,240,120,206, 44, 92,163, 58,248,
+ 65,192,167, 42,236, 5, 28, 95, 27, 49,131, 63,105,105, 59,129, 12, 8, 9,145, 2, 50,240,215, 1,103,110,156, 73, 78, 73,180,
+ 85,117,248,251,243,231,159,191,127, 24, 89,128, 9,152,249, 63,195,191,151,175,159,105,138,106, 84,101, 84,181,116,181, 56,235,
+224,236, 26, 94,184,112, 1, 81, 1, 72, 45, 64, 43,244,247,237,219, 71,100, 29, 0, 44,193,183,213,110,247,106,102, 32,163, 28,
+ 7,234,237,234,234, 42, 43, 43, 27,144, 58, 0, 88,142,223,188,121,243,217,179,103,145,145,145, 36,105, 4,234, 26,173, 0,176,
+ 55,251,202, 65, 69,217,172,206, 10, 52,113,128, 0, 66, 84, 0,240, 9, 94,180,115,249,177,138,163,157, 53,143, 92, 61, 64,142,
+ 81, 67, 30, 14, 66, 62,112, 13, 88, 67, 96, 14, 17, 96, 94,160, 65,204,208, 13, 85,192,170, 85,171, 48,139,126,200, 40, 7,164,
+244, 7,138,224,209,254,228,222,163,175,235,235,120,146, 38, 2,107, 2,113, 97,206,123,235,239,129, 74,127, 1, 62,208, 16, 16,
+ 43, 51, 49, 14, 0, 6, 23,124, 20,136,200,243, 36,128,101,189, 28, 55,195,148, 24,134,148, 5, 12,162, 92, 12,215, 63,160,139,
+ 92, 37,226,198, 20,204,106,149, 96, 71,170,169,169, 9,179,232, 7, 50,186, 18,124, 38,239, 56, 33,161, 36,249,226,225, 75, 92,
+205,127, 32, 3, 79, 39,128,224,168, 14,184,165,159,142,214,222,135,212, 7,196,164,144,174,101, 88,188,166,150, 65, 84, 10,129,
+148,251, 16,242,151,175, 10,219,230, 59,248,213,127,251,254,141, 75,141,211, 66,210,252,231,215,175, 44,236,236, 44, 44,208, 44,
+118,239,206,157, 77, 27, 55, 38, 37, 38, 40,176,203, 25,218, 27, 60,185,242, 68, 70,146,240,180, 94,235,182,132,131, 7, 15,134,
+132, 48, 32,247, 0,136,169, 3, 32,165, 63,131, 66,255,182,218, 66, 82,235, 0,160,222, 9, 19, 38,168,169,169, 77,158, 60, 57,
+ 55, 55,151,158,117, 0,188,232, 39, 79, 47, 68, 35, 25, 93,135,225,221,252,135,148,254, 16, 6,176, 14, 64,238, 4, 0, 4, 16,
+ 53,135,128,128,133, 59,100,116, 24, 88, 19, 32, 87, 0,112, 46,254, 91, 86,112, 77, 5, 19,204,228, 97, 97, 97,148, 59, 30, 94,
+ 32,162, 53,252, 33, 87, 81,226,154, 85,255,206,240,232, 75,160,249,127,222, 18, 6,151,218, 47, 12,203, 25,230,128,138,164,255,
+171, 75, 88,227, 38,255,249, 67,212,221,138,192,108, 70,106, 37,247,106, 30, 67,227, 12, 6, 89, 25,134,151, 91,216, 22,206,253,
+149,176, 2,139, 8,229,227,102,120, 0,124,202,247,249,134, 14, 94,109, 14, 30,213,130, 85, 29, 41,250, 58, 18,234, 62, 45,120,
+194, 10, 79,188,227, 31, 32,130, 36, 6,120,233, 15,228, 66,230,126,137, 45,206,248,218,136, 44,235,209, 0,176,184, 71, 19,217,
+137,212, 15,192, 5,158,191,122,238, 22,234,198,203, 39,248,151,241,207,225,131,135, 62,127,249,226,235,231,247,250,213,171, 53,
+107,215, 37, 39, 38,176,115,176, 51,253,103,117, 55,114,159,180,127, 50, 49, 21, 0, 16,188,127, 79,242, 13,104,240,210, 31,196,
+ 33,177, 14, 0,234,109,104,104, 80, 81, 1,249, 93, 89, 89,153,110,253, 0, 74,138,126,228,230, 63,132, 49, 90, 1, 16, 9, 0,
+ 2,136,202,115, 0,192,130, 30,114,187, 11,242, 69,137,144, 19,146,137,153, 27,192,156, 10, 38,102, 8, 8,215,213,187,196, 3,
+ 72, 51, 31,115,204, 7,127,243, 31, 8,118, 84, 54,248,182,247,253,113,177, 6,134, 35,207,241, 59,187,239,190, 5, 10,254,113,
+201,253,125, 89,132, 81, 52,139,152,178, 15,127,103, 8, 43,120, 27,176, 60, 55,241,241,173,140,178,175,123,127, 73,136, 96, 23,
+ 33,163, 7, 64,100,173, 0,108,248,131,154, 18,190,118, 39,158,189,226,213,231,125,186,243, 46, 3, 7,123,112,110,156,144,140,
+ 15,237,146, 41,230,202, 31,242, 58,136, 88, 7,145,112,173, 11, 2, 22,247,238,179,220,131,215, 50,164,237, 4, 49,128, 92, 98,
+ 58, 1, 95,126,124, 22,225, 20,254,243,227,219,127,166,255,166,102,102,235,215,175,159,208,215,247,239,255,255,232,152,104, 33,
+ 97,161,111, 95,190,252,249,251,135,151,149,239, 55,211,111, 34,221,252,225,195, 7,248,186, 32, 98,102,131, 81, 74,127, 8, 32,
+186, 14, 0,234, 5,230, 2, 51, 51, 51,184,136,142,142, 14,100,188,139,118,117, 0,229, 69, 63,114,243,159, 1,124, 41,252,104,
+ 39,128, 72, 0, 16, 64, 44,120, 10, 35, 60,226,120,142,144,131, 12, 19, 65,102,131, 33,179, 2,144,110, 1, 80, 28,121, 58,129,
+ 22, 69, 3,217, 0,215,136, 63,193,155,232,131,102,172,253,239,167,248,210,210, 72,152,193,154, 51,120,242,159,231,175, 25, 4,
+248, 88,222, 46,223, 50,225, 44, 3, 51, 51, 49,142, 39,227,172,227,139, 69,145, 38, 6, 12, 74,185, 87,180,121, 18,111,202,135,
+ 50, 76, 41,195, 20,161, 93, 15, 0, 24, 38,182,166,234, 46,214,106,190,186,101,189, 19,166, 95, 59,251, 52,195,201,228,197,198,
+109, 31,223,127, 34, 35, 46,208, 6,136,112,165, 43,172, 77,126,242,162, 30,211, 28,172,115,197,192, 34, 15, 88,240, 1, 75,127,
+120,101, 0, 36,129,213, 0,176,244,223,188,249, 46,100, 2, 0, 50, 75,172,103, 23,143, 86,183,130, 14,239,252,199,240,255,223,
+ 31,118, 78,142,152,216,216,198,250,122,113,113,113,105, 9,137, 31, 95,191,252,253, 15, 20,255,139,231, 58, 23, 96, 17,191,102,
+205,154,183,111,223,126,250,244, 9, 94, 85,195,215, 5, 17, 92, 17, 4, 44,193,123, 83,174, 50,112,168, 48,188,152,138, 34,193,
+161, 2, 20, 47,158,131,175, 14, 0,234,245,247,247, 7,150,248, 64,219,145,197,229,228,228,128,226, 3, 62, 39, 76,100,243,127,
+180, 19, 64, 18, 0, 8, 32, 22,204,236, 68,198, 70, 48, 8,128,220,218,136,220, 9,128,148,248, 64, 17,248,178,113,160,212,119,
+162,155,165,196, 76,255, 82,190, 12, 20,210,204,199, 58, 21, 76,208,216,187,221,105,172,193,147,191, 63,187,197,114,124,242,239,
+181,185,140, 94, 61,155,178, 66, 30,110,186,239,219,181,136,129,133, 86,247, 45,151,173,102,216,217,181, 94,251,161, 59,195,155,
+175,165,174,101, 88, 69,200,232, 1, 16,223,252,223,184,190,129, 89, 90,139,135, 65,237,209,193, 89,159, 25,255,159,186,245,216,
+229,202, 83,188, 33,255, 8, 54, 88, 55, 19, 94,226, 3,193,222,189,158,104,178, 88,211, 21,174, 1, 31, 50,150,150,146,177, 52,
+ 8,216,252,135, 20,253, 64, 18,185,237, 15,153, 37, 6, 86, 6,104,234,121, 57,121,159,125,124,102,166, 96,254,253,231, 15,134,
+239, 63,254,252,250, 93, 85, 94,206,200,196,240,237,235, 23, 96,189,240,231,239,127,118, 22,214,215, 95, 94,179,254,101,195,101,
+ 99, 8,108,200, 31,216,240,135,228, 41,248,186,160,231,207,159,227,119, 45,176,140, 6,150,242,192,178, 94, 83, 17,197,252,235,
+247,127, 21,207,209,198, 95,130, 3,101,129,165, 60,176,249, 15, 44,241,145,197,175, 92,185,178,113,227, 70,218,149,254, 18, 96,
+ 64,149,209,127, 56, 24,237, 4, 16, 9, 0, 2,136,154,133, 20,188,122, 0, 22,253,192, 10, 0, 50,248,131, 89, 43,236, 63,255,
+129,152, 50,154,248,188, 77,201, 50, 80,120,243, 31,173,232,135, 84, 87, 4,221,112,241,238,219,223,151, 27, 95, 50, 28,149,240,
+234, 97,248,248,233,238,172, 18,229,204,254, 23,243, 75, 24, 88, 89,160,215,116,209, 0, 60,250,202,160, 41, 22,136, 95,132, 70,
+ 61, 0, 96,176,132,187,152,243,255, 19,252,198,192,186,182, 63,119,218,150, 11,165, 30, 54, 9,125,203, 66,218, 22,211,104,186,
+ 30, 82,193,195,246, 1,144, 86,235,147, 52,224,131,181, 19,144, 6,110,227, 35,151,254,240,230, 63, 46, 32, 37, 38,181,227,240,
+ 78, 43, 89, 43, 46,110,158,127,255,254, 51,253,255,243,143,145, 17, 24,218,192,182,255,159,127,255,255,252,249,243,253,227,215,
+173,167,183,202,139,201, 19,227, 6,228, 21, 65,213,185,214,222, 82,247,102,157,102, 32,181, 14, 32,166,244,135,235, 5,250,174,
+171,171, 75, 82, 82, 18,218,196,185,123, 23, 24,233,116,104,251, 83, 82, 13,160, 53,255, 71, 59, 1,196, 3,128, 0,162,213, 70,
+ 48, 72,113,143, 92, 43, 16,121, 99, 9, 90,222, 38,178, 88, 33,111, 25, 40,102,243,159,248,162, 31, 58, 4,212, 49,127, 29, 3,
+131, 71,187,247,255,213, 37,140, 97,189,192,250,128, 81, 72,240,206,147, 79,160,230, 63, 51, 51,141,226, 12,115,213, 63, 73,251,
+ 0,240, 84,138,248,107, 5, 72,243, 63,197, 65,175,160,103, 98,101, 85,185, 40,159,216,213,107,143, 18,174, 45,163,245, 74, 45,
+204, 82, 27, 62,116, 70,220,242, 33,194, 3, 62,120, 0, 90,233, 15, 31,249,193, 53, 27,204,193,193,193,242,128,117,255,195, 3,
+161,186, 33,159,126,124, 98, 4, 53, 3,128,248,223,223,191,255,255,253,249,195,205,206,123,236,227,249,219,199,239,184, 26,145,
+126,139,209,221, 84, 6,226,150,129, 34,234, 0,201, 71,215,159,203, 17, 89,250,195,245,150,149,149, 77,158, 60, 89, 64, 64,224,
+237,219,183, 13, 13, 13,244, 28,249, 33,163, 26,192,108,254,143,118, 2,136, 7, 0, 1, 68,205,125, 0,152,189, 1,228,109,174,
+144, 78, 0, 73,141, 83, 58, 28,198, 0,111,254, 35, 47, 0, 5,122, 19, 94,109, 16,220,202, 11,169, 3, 2,219,231,253, 95,203,
+ 32,146, 48,243, 64, 65,136, 77,231, 82, 6, 86, 86,110, 14, 54, 26,185, 25,190,216, 31,141, 65,210, 62, 0, 50,122, 0,144,230,
+127,193,172,205, 85,201,110, 82, 18, 14,240, 65, 63,226,195, 10, 86,118,123, 58, 59,111,135,141,255,144, 48,118,135,220,162,135,
+159, 12, 65,221, 1, 31,130, 0,185,220,135,244, 6, 48,135,173, 12, 53, 12, 55, 47,219,252, 55,252,143,189,172,189, 48,175,240,
+143,223, 63,128,161,205,198,194,246,225,251,183, 19, 79,246, 46, 88,178,208, 81,203,145, 12,171, 91,183, 37, 44, 92,184,176,164,
+132,168, 77, 0,176, 58,128,129,164,210, 31,174, 55, 55, 55,119, 0,247, 1,192,171, 1, 34, 21,147,186, 93, 96,228, 0,159,152,
+218, 45, 75,154,103,117, 86, 32,239, 3, 64,158,105, 3, 8, 32,106,238, 3, 64,235, 13, 96, 22,247,164, 94, 91, 72, 36,160,124,
+ 25, 40,164,166,129,220,178, 11,175,228,148,192,128,200,126, 0, 3,108,243,151,125,213, 12, 8,227, 43,109, 98,148,242,230, 54,
+ 37,213, 42,176,249,239,186,231,100,116,253, 34,160, 51,144,187, 86,196,135, 21,181,250, 1,164,110, 10,163,112, 56, 8,179,244,
+ 7, 45, 18,197,152, 0,128, 3, 71, 61,167,131,107, 14, 31,151, 59, 97,109,110, 45,205, 43,205,240,239,255,235, 31,111,143,157,
+ 59,246,226,234, 11, 39, 77, 39,118,118,118, 58,100,126, 72, 29, 64, 94, 9, 14,233, 7, 12,236,172,239,104,227,157,138, 0,115,
+ 11, 24, 4, 0, 4, 16, 53,135,128, 48,247, 49, 97, 93,160, 73,240, 18, 74, 82, 75, 40, 10,151,129, 66,150,250,236, 1, 3,146,
+138, 51, 72, 95,129, 18,171, 49,199,178, 41, 57, 51,135, 14, 85,136,107,205,108,242,194, 10,179, 19, 64,188, 51,112,149,245,192,
+ 78, 0, 92,150,152,162,156,140,225, 32,208, 90,160,180, 86,247, 89,238, 88,247, 4,224,159, 12, 48,211, 54,251,246,237,219,201,
+141, 39,191,252, 2, 53, 6,216,153,216,228,196,229, 53, 13, 72, 56, 53,207,202,202,106,237,218,181,200, 43,130,126,255,254, 77,
+ 82, 80, 83, 82,130, 15,230, 53, 63,163,128,212, 78, 0,174,226, 23, 32,128, 88,232, 95,172,224,223, 40, 68,106,241, 68,249,165,
+225,100, 23,103,148, 55,123,233, 48,122,142,117,248, 7,118,226, 6,253,194,138, 18,143,147,218, 78,167,238,112, 16,168,148,127,
+136, 69,220,164,218,132,160, 94, 46, 46, 46, 29, 85, 93, 74,156, 29, 28, 28, 60, 90,132,141, 2,202,235, 0, 92, 82, 0, 1, 52,
+122, 41,252, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 55,130,141,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,
+130, 81, 48, 10, 70,193, 8, 5, 0, 1, 6, 0,178,212, 98,212,112,143,196, 46, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130,
};
diff --git a/source/blender/src/drawobject.c b/source/blender/src/drawobject.c
index 9cbd22b781e..5b3b27b2c3e 100644
--- a/source/blender/src/drawobject.c
+++ b/source/blender/src/drawobject.c
@@ -1666,7 +1666,7 @@ static void draw_em_fancy(Object *ob, EditMesh *em, DerivedMesh *cageDM, Derived
}
}
- if( (G.f & (G_FACESELECT+G_DRAWFACES))) { /* transp faces */
+ if((G.f & (G_FACESELECT+G_DRAWFACES))) { /* transp faces */
char col1[4], col2[4];
BIF_GetThemeColor4ubv(TH_FACE, col1);
@@ -1766,7 +1766,7 @@ static void draw_mesh_fancy(Base *base, DerivedMesh *baseDM, DerivedMesh *dm, in
glFrontFace((ob->transflag&OB_NEG_SCALE)?GL_CW:GL_CCW);
// Unwanted combination.
- if (G.f&G_FACESELECT) draw_wire = 0;
+ if (ob==OBACT && (G.f&G_FACESELECT)) draw_wire = 0;
if(dt==OB_BOUNDBOX) {
draw_bounding_volume(ob);
@@ -1797,7 +1797,7 @@ static void draw_mesh_fancy(Base *base, DerivedMesh *baseDM, DerivedMesh *dm, in
glEnable(GL_LIGHTING);
glFrontFace((ob->transflag&OB_NEG_SCALE)?GL_CW:GL_CCW);
-
+
dm->drawFacesSolid(dm, set_gl_material);
glFrontFace(GL_CCW);
@@ -1811,30 +1811,36 @@ static void draw_mesh_fancy(Base *base, DerivedMesh *baseDM, DerivedMesh *dm, in
dm->drawLooseEdges(dm);
}
else if(dt==OB_SHADED) {
- if( (G.f & G_WEIGHTPAINT)) {
- set_gl_material(0); /* enforce defmaterial settings */
-
- /* but set default spec */
- glColorMaterial(GL_FRONT_AND_BACK, GL_SPECULAR);
- glEnable(GL_COLOR_MATERIAL); /* according manpages needed */
- glColor3ub(120, 120, 120);
- glDisable(GL_COLOR_MATERIAL);
- /* diffuse */
- glColorMaterial(GL_FRONT_AND_BACK, GL_DIFFUSE);
- glEnable(GL_LIGHTING);
- glEnable(GL_COLOR_MATERIAL);
+ int do_draw= 1; /* to resolve all G.f settings below... */
+
+ if(ob==OBACT) {
+ do_draw= 0;
+ if( (G.f & G_WEIGHTPAINT)) {
+ set_gl_material(0); /* enforce defmaterial settings */
+
+ /* but set default spec */
+ glColorMaterial(GL_FRONT_AND_BACK, GL_SPECULAR);
+ glEnable(GL_COLOR_MATERIAL); /* according manpages needed */
+ glColor3ub(120, 120, 120);
+ glDisable(GL_COLOR_MATERIAL);
+ /* diffuse */
+ glColorMaterial(GL_FRONT_AND_BACK, GL_DIFFUSE);
+ glEnable(GL_LIGHTING);
+ glEnable(GL_COLOR_MATERIAL);
- dm->drawMappedFaces(dm, wpaint__setSolidDrawOptions, me->mface, 1);
- glDisable(GL_COLOR_MATERIAL);
- glDisable(GL_LIGHTING);
- }
- else if((G.f & (G_VERTEXPAINT+G_TEXTUREPAINT)) && me->mcol) {
- dm->drawMappedFaces(dm, NULL, NULL, 1);
- }
- else if((G.f & (G_VERTEXPAINT+G_TEXTUREPAINT)) && me->tface) {
- dm->drawMappedFaces(dm, NULL, NULL, 1);
+ dm->drawMappedFaces(dm, wpaint__setSolidDrawOptions, me->mface, 1);
+ glDisable(GL_COLOR_MATERIAL);
+ glDisable(GL_LIGHTING);
+ }
+ else if((G.f & (G_VERTEXPAINT+G_TEXTUREPAINT)) && me->mcol) {
+ dm->drawMappedFaces(dm, NULL, NULL, 1);
+ }
+ else if((G.f & (G_VERTEXPAINT+G_TEXTUREPAINT)) && me->tface) {
+ dm->drawMappedFaces(dm, NULL, NULL, 1);
+ }
+ else do_draw= 1;
}
- else {
+ if(do_draw) {
dl = ob->disp.first;
if (!dl || !dl->col1) {
shadeDispList(base);
@@ -3641,7 +3647,7 @@ void draw_object(Base *base, int flag)
dtx= 0;
/* faceselect exception: also draw solid when dt==wire, except in editmode */
- if(ob==((G.scene->basact) ? (G.scene->basact->object) : 0) && (G.f & (G_FACESELECT+G_VERTEXPAINT+G_TEXTUREPAINT+G_WEIGHTPAINT))) {
+ if(ob==OBACT && (G.f & (G_FACESELECT+G_VERTEXPAINT+G_TEXTUREPAINT+G_WEIGHTPAINT))) {
if(ob->type==OB_MESH) {
if(ob==G.obedit);
@@ -3650,7 +3656,7 @@ void draw_object(Base *base, int flag)
glClearDepth(1.0); glClear(GL_DEPTH_BUFFER_BIT);
glEnable(GL_DEPTH_TEST);
- zbufoff= 1;
+ if(dt<OB_SOLID) zbufoff= 1;
}
}
else {
@@ -3884,7 +3890,7 @@ void draw_object(Base *base, int flag)
if(G.f & G_SIMULATION) return;
/* object centers, need to be drawn in viewmat space for speed, but OK for picking select */
- if((G.f & (G_VERTEXPAINT|G_FACESELECT|G_TEXTUREPAINT|G_WEIGHTPAINT))==0) {
+ if(ob!=OBACT || (G.f & (G_VERTEXPAINT|G_FACESELECT|G_TEXTUREPAINT|G_WEIGHTPAINT))==0) {
/* we don't draw centers for duplicators and sets */
if((flag & DRAW_CONSTCOLOR)==0) {
if((G.scene->basact)==base)
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index ec740c5f75b..30df91bd092 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -103,11 +103,6 @@ extern int count_action_levels (bAction *act);
/* Local Function prototypes, are forward needed */
static void hilight_channel (bAction *act, bActionChannel *chan, short hilight);
-static void up_sel_action(void);
-static void down_sel_action(void);
-static void top_sel_action(void);
-static void bottom_sel_action(void);
-
/* Implementation */
short showsliders = 0;
@@ -2750,17 +2745,13 @@ bAction* bake_obIPO_to_action (Object *ob)
{
bArmature *arm;
bAction *result=NULL;
- bActionChannel *achan;
bAction *temp;
- bPoseChannel *pchan;
Bone *bone;
ID *id;
ListBase elems;
- float actstart, actend;
int oldframe,testframe;
- int curframe;
char newname[64];
- float quat[4],tmat[4][4],startpos[4][4],imat[4][4],mat3[3][3];
+ float quat[4],tmat[4][4],startpos[4][4];
CfraElem *firstcfra, *lastcfra;
arm = get_armature(ob);
@@ -2826,17 +2817,13 @@ bAction* bake_everything_to_action (Object *ob)
{
bArmature *arm;
bAction *result=NULL;
- bActionChannel *achan;
bAction *temp;
- bPoseChannel *pchan;
Bone *bone;
ID *id;
ListBase elems;
- float actstart, actend;
int oldframe,testframe;
- int curframe;
char newname[64];
- float quat[4],tmat[4][4],startpos[4][4],imat[4][4],mat3[3][3];
+ float quat[4],tmat[4][4],startpos[4][4];
CfraElem *firstcfra, *lastcfra;
arm = get_armature(ob);
diff --git a/source/blender/src/editconstraint.c b/source/blender/src/editconstraint.c
index 777c88dbbf3..dad204fee6c 100644
--- a/source/blender/src/editconstraint.c
+++ b/source/blender/src/editconstraint.c
@@ -620,28 +620,28 @@ void add_constraint(int only_IK)
}
if(pchansel)
- nr= pupmenu("Add IK Constraint%t|To Selected Bone%x10");
+ nr= pupmenu("Add IK Constraint%t|To Active Bone%x10");
else if(obsel)
- nr= pupmenu("Add IK Constraint%t|To Selected Object%x10");
+ nr= pupmenu("Add IK Constraint%t|To Active Object%x10");
else
nr= pupmenu("Add IK Constraint%t|To New Empty Object%x10|Without Target%x11");
}
else {
if(pchanact) {
if(pchansel)
- nr= pupmenu("Add Constraint to selected Bone%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Stretch To%x7");
+ nr= pupmenu("Add Constraint to Active Bone%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Stretch To%x7");
else if(obsel && obsel->type==OB_CURVE)
- nr= pupmenu("Add Constraint to selected Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Follow Path%x6|Stretch To%x7");
+ nr= pupmenu("Add Constraint to Active Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Follow Path%x6|Stretch To%x7");
else if(obsel)
- nr= pupmenu("Add Constraint to selected Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Stretch To%x7");
+ nr= pupmenu("Add Constraint to Active Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Stretch To%x7");
else
nr= pupmenu("Add Constraint to New Empty Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Stretch To%x7");
}
else {
if(obsel && obsel->type==OB_CURVE)
- nr= pupmenu("Add Constraint to selected Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Follow Path%x6");
+ nr= pupmenu("Add Constraint to Active Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5|Follow Path%x6");
else if(obsel)
- nr= pupmenu("Add Constraint to selected Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5");
+ nr= pupmenu("Add Constraint to Active Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5");
else
nr= pupmenu("Add Constraint to New Empty Object%t|Copy Location%x1|Copy Rotation%x2|Track To%x3|Floor%x4|Locked Track%x5");
}
@@ -763,4 +763,24 @@ void add_constraint(int only_IK)
}
-
+void ob_clear_constraints(void)
+{
+ Object *ob= OBACT;
+
+ /* paranoia checks */
+ if(!ob) return;
+ if(ob==G.obedit || (ob->flag & OB_POSEMODE)) return;
+
+ if(okee("Clear Constraints")==0) return;
+
+ free_constraints(&ob->constraints);
+
+ DAG_object_flush_update(G.scene, ob, OB_RECALC_OB);
+
+ allqueue (REDRAWVIEW3D, 0);
+ allqueue (REDRAWBUTSOBJECT, 0);
+ allqueue (REDRAWOOPS, 0);
+
+ BIF_undo_push("Clear Constraint(s)");
+
+} \ No newline at end of file
diff --git a/source/blender/src/editdeform.c b/source/blender/src/editdeform.c
index 418209dc709..dbfbbfde0c8 100644
--- a/source/blender/src/editdeform.c
+++ b/source/blender/src/editdeform.c
@@ -629,37 +629,6 @@ void vertexgroup_select_by_name(Object *ob, char *name)
void object_apply_deform(Object *ob)
{
- char *err= NULL;
-
- if(ob==NULL) return;
-
- if(ob->type==OB_MESH) {
- Mesh *me= ob->data;
- if(me->id.us>1) {
- err= "Can't apply deformation to Mesh with other users";
- } else {
- int i, dmNeedsFree;
- DerivedMesh *dm = mesh_get_derived_deform(ob, &dmNeedsFree);
-
- for (i=0; i<me->totvert; i++) {
- dm->getVertCo(dm, i, me->mvert[i].co);
- }
-
- if (dmNeedsFree)
- dm->release(dm);
-
- DAG_object_flush_update(G.scene, ob, OB_RECALC_DATA);
- }
- }
- else if (ob->type==OB_CURVE || ob->type==OB_SURF) {
- Curve *cu= ob->data;
- if(cu->id.us>1) {
- err= "Can't apply deformation to Curve with other users";
- } else {
- freedisplist(&ob->disp);
- }
- }
-
- if(err) error(err);
+ notice("Apply Deformation now only availble in Modifier buttons");
}
diff --git a/source/blender/src/editipo_mods.c b/source/blender/src/editipo_mods.c
index d228effc951..83aec9ccbee 100644
--- a/source/blender/src/editipo_mods.c
+++ b/source/blender/src/editipo_mods.c
@@ -301,7 +301,9 @@ static int ipo_keys_bezier_loop(Ipo *ipo,
*/
IpoCurve *icu;
-
+
+ if(ipo==NULL) return 0;
+
/* Loop through each curve in the Ipo
*/
for (icu=ipo->curve.first; icu; icu=icu->next){
diff --git a/source/blender/src/editmesh.c b/source/blender/src/editmesh.c
index eb77356ecdc..1a2e62714ea 100644
--- a/source/blender/src/editmesh.c
+++ b/source/blender/src/editmesh.c
@@ -1226,7 +1226,7 @@ void separatemenu(void)
if(G.editMesh->verts.first==NULL) return;
- event = pupmenu("Separate (No undo!) %t|Selected%x1|All Loose Parts%x2");
+ event = pupmenu("Separate %t|Selected%x1|All Loose Parts%x2");
if (event==0) return;
waitcursor(1);
diff --git a/source/blender/src/editmesh_tools.c b/source/blender/src/editmesh_tools.c
index 1ecf44bd71a..aa5aa0414ca 100644
--- a/source/blender/src/editmesh_tools.c
+++ b/source/blender/src/editmesh_tools.c
@@ -2316,7 +2316,7 @@ static void fill_tri_triple(EditFace *efa, struct GHash *gh, int numcuts, float
for(j=1;j<(numcuts+1)-i;j++) {
float percent= (float)j/(float)((numcuts+1)-i);
- innerverts[i][((numcuts+1)-i)-j]= subdivide_edge_addvert(&temp, rad, beauty, percent);
+ innerverts[i][((numcuts+1)-i)-j]= subdivide_edge_addvert(&temp, rad, beauty, 1-percent);
}
}
diff --git a/source/blender/src/fluidsim.c b/source/blender/src/fluidsim.c
index cb6519253b7..cc9f240ef94 100644
--- a/source/blender/src/fluidsim.c
+++ b/source/blender/src/fluidsim.c
@@ -276,6 +276,7 @@ void fluidsimBake(struct Object *ob)
char targetFile[FILE_MAXDIR+FILE_MAXFILE]; // temp. store filename from targetDir for access
int outStringsChanged = 0; // modified? copy back before baking
int haveSomeFluid = 0; // check if any fluid objects are set
+ int noFrames = G.scene->r.efra - G.scene->r.sfra;
const char *strEnvName = "BLENDER_ELBEEMDEBUG"; // from blendercall.cpp
@@ -286,6 +287,11 @@ void fluidsimBake(struct Object *ob)
elbeemDebugOut(debugStrBuffer);
}
+ if(noFrames<=0) {
+ pupmenu("Fluidsim Bake Error%t|No frames to export - check your animation range settings. Aborted%x0");
+ return;
+ }
+
/* check if there's another domain... */
for(obit= G.main->object.first; obit; obit= obit->id.next) {
if((obit->fluidsimFlag & OB_FLUIDSIM_ENABLE)&&(obit->type==OB_MESH)) {
@@ -394,7 +400,7 @@ void fluidsimBake(struct Object *ob)
}
// dump data for frame 0
- G.scene->r.cfra = 1;
+ G.scene->r.cfra = G.scene->r.sfra;
scene_update_for_newframe(G.scene, G.scene->lay);
// start writing
@@ -420,7 +426,6 @@ void fluidsimBake(struct Object *ob)
/* output simulation settings */
{
- int noFrames = G.scene->r.efra - G.scene->r.sfra;
double calcViscosity = 0.0;
double aniFrameTime = (fssDomain->animEnd - fssDomain->animStart)/(double)noFrames;
char *simString = "\n"
@@ -550,7 +555,6 @@ void fluidsimBake(struct Object *ob)
" castShadows= 1; \n"
" } \n\n" ;
- int noFrames = (G.scene->r.efra - G.scene->r.sfra) +1; // FIXME - check no. of frames...
struct Object *cam = G.scene->camera;
float eyex=2.0, eyey=2.0, eyez=2.0;
int resx = 200, resy=200;
@@ -575,7 +579,7 @@ void fluidsimBake(struct Object *ob)
}
fprintf(fileCfg, rayString,
- noFrames, targetFile, resx,resy,
+ (noFrames+1), targetFile, resx,resy,
eyex, eyey, eyez ,
lookatx, lookaty, lookatz,
fov
@@ -706,7 +710,7 @@ void fluidsimBake(struct Object *ob)
int done = 0;
unsigned short event=0;
short val;
- float noFramesf = G.scene->r.efra - G.scene->r.sfra +1;
+ float noFramesf = (float)noFrames;
float percentdone = 0.0;
int lastRedraw = -1;
diff --git a/source/blender/src/header_action.c b/source/blender/src/header_action.c
index 608153e10b5..3ab573ff9ce 100644
--- a/source/blender/src/header_action.c
+++ b/source/blender/src/header_action.c
@@ -93,6 +93,11 @@
#define ACTMENU_KEY_BAKE 2
#define ACTMENU_KEY_SNAP 3
+#define ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_UP 0
+#define ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_DOWN 1
+#define ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_TOP 2
+#define ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_BOTTOM 3
+
#define ACTMENU_KEY_TRANSFORM_MOVE 0
#define ACTMENU_KEY_TRANSFORM_SCALE 1
#define ACTMENU_KEY_TRANSFORM_SLIDE 2
@@ -669,6 +674,62 @@ static uiBlock *action_keymenu_extendmenu(void *arg_unused)
return block;
}
+static void do_action_keymenu_chanposmenu(void *arg, int event)
+{
+ switch(event)
+ {
+ case ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_DOWN:
+ down_sel_action();
+ break;
+ case ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_UP:
+ up_sel_action();
+ break;
+ case ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_TOP:
+ top_sel_action();
+ break;
+ case ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_BOTTOM:
+ bottom_sel_action();
+ break;
+ }
+
+ scrarea_queue_winredraw(curarea);
+}
+
+static uiBlock *action_keymenu_chanposmenu(void *arg_unused)
+{
+ uiBlock *block;
+ short yco= 0, menuwidth=120;
+
+ block= uiNewBlock(&curarea->uiblocks, "action_keymenu_chanposmenu",
+ UI_EMBOSSP, UI_HELV, G.curscreen->mainwin);
+ uiBlockSetButmFunc(block, do_action_keymenu_chanposmenu, NULL);
+
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1,
+ "Move Up|Page Up", 0, yco-=20,
+ menuwidth, 19, NULL, 0.0, 0.0, 0,
+ ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_UP, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1,
+ "Move Down|Page Down", 0, yco-=20,
+ menuwidth, 19, NULL, 0.0, 0.0, 0,
+ ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_DOWN, "");
+
+ uiDefBut(block, SEPR, 0, "", 0, yco-=6,
+ menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
+
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1,
+ "Move to Top|Shift Page Up", 0, yco-=20,
+ menuwidth, 19, NULL, 0.0, 0.0, 0,
+ ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_TOP, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1,
+ "Move to Bottom|Shift Page Down", 0, yco-=20,
+ menuwidth, 19, NULL, 0.0, 0.0, 0,
+ ACTMENU_KEY_CHANPOS_MOVE_CHANNEL_BOTTOM, "");
+
+ uiBlockSetDirection(block, UI_RIGHT);
+ uiTextBoundsBlock(block, 60);
+
+ return block;
+}
static void do_action_keymenu(void *arg, int event)
{
@@ -752,15 +813,23 @@ static uiBlock *action_keymenu(void *arg_unused)
uiDefBut(block, SEPR, 0, "", 0, yco-=6,
menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
+ uiDefIconTextBlockBut(block, action_keymenu_handlemenu,
+ NULL, ICON_RIGHTARROW_THIN,
+ "Handle Type", 0, yco-=20, 120, 20, "");
+
+ uiDefBut(block, SEPR, 0, "", 0, yco-=6,
+ menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
+
uiDefIconTextBlockBut(block, action_keymenu_extendmenu,
NULL, ICON_RIGHTARROW_THIN,
"Extend Mode", 0, yco-=20, 120, 20, "");
uiDefIconTextBlockBut(block, action_keymenu_intpolmenu,
NULL, ICON_RIGHTARROW_THIN,
"Interpolation Mode", 0, yco-=20, 120, 20, "");
- uiDefIconTextBlockBut(block, action_keymenu_handlemenu,
+ uiDefIconTextBlockBut(block, action_keymenu_chanposmenu,
NULL, ICON_RIGHTARROW_THIN,
- "Handle Type", 0, yco-=20, 120, 20, "");
+ "Channel Ordering", 0, yco-=20, 120, 20, "");
+
if(curarea->headertype==HEADERTOP) {
uiBlockSetDirection(block, UI_DOWN);
diff --git a/source/blender/src/header_filesel.c b/source/blender/src/header_filesel.c
index 1d661a7940d..3cf07f7bae2 100644
--- a/source/blender/src/header_filesel.c
+++ b/source/blender/src/header_filesel.c
@@ -116,7 +116,7 @@ void file_buttons(void)
xco+=XIC;
uiBlockBeginAlign(block);
uiDefIconButS(block, ROW, B_SORTFILELIST, ICON_SORTALPHA, xco+=XIC,0,XIC,YIC, &sfile->sort, 1.0, 0.0, 0, 0, "Sorts files alphabetically");
- uiDefIconButS(block, ROW, B_SORTFILELIST, ICON_DOT, xco+=XIC,0,XIC,YIC, &sfile->sort, 1.0, 3.0, 0, 0, "Sorts files by extension");
+ uiDefIconButS(block, ROW, B_SORTFILELIST, ICON_SORTBYEXT, xco+=XIC,0,XIC,YIC, &sfile->sort, 1.0, 3.0, 0, 0, "Sorts files by extension");
uiDefIconButS(block, ROW, B_SORTFILELIST, ICON_SORTTIME, xco+=XIC,0,XIC,YIC, &sfile->sort, 1.0, 1.0, 0, 0, "Sorts files by time");
uiDefIconButS(block, ROW, B_SORTFILELIST, ICON_SORTSIZE, xco+=XIC,0,XIC,YIC, &sfile->sort, 1.0, 2.0, 0, 0, "Sorts files by size");
uiBlockEndAlign(block);
diff --git a/source/blender/src/header_info.c b/source/blender/src/header_info.c
index dbb32bf9358..b4e8a19d94d 100644
--- a/source/blender/src/header_info.c
+++ b/source/blender/src/header_info.c
@@ -1204,10 +1204,6 @@ void do_info_addmenu(void *arg, int event)
/* Camera */
add_object_draw(OB_CAMERA);
break;
- case 7:
- /* Lamp */
- // add_object_draw(OB_LAMP);
- break;
case 8:
/* Armature */
add_primitiveArmature(OB_ARMATURE);
@@ -1245,13 +1241,11 @@ static uiBlock *info_addmenu(void *arg_unused)
uiDefBut(block, SEPR, 0, "", 0, yco-=6, 120, 6, NULL, 0.0, 0.0, 0, 0, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Camera", 0, yco-=20, 120, 19, NULL, 0.0, 0.0, 1, 6, "");
-// uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Lamp", 0, yco-=20, 120, 19, NULL, 0.0, 0.0, 1, 7, "");
uiDefIconTextBlockBut(block, info_add_lampmenu, NULL, ICON_RIGHTARROW_THIN, "Lamp", 0, yco-=20, 120, 19, "");
uiDefBut(block, SEPR, 0, "", 0, yco-=6, 120, 6, NULL, 0.0, 0.0, 0, 0, "");
- /* armature needs 3d window to draw */
- //uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Armature", 0, yco-=20, 120, 19, NULL, 0.0, 0.0, 1, 8, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Armature", 0, yco-=20, 120, 19, NULL, 0.0, 0.0, 1, 8, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Lattice", 0, yco-=20, 120, 19, NULL, 0.0, 0.0, 1, 9, "");
uiBlockSetDirection(block, UI_DOWN);
diff --git a/source/blender/src/header_nla.c b/source/blender/src/header_nla.c
index 636334e2e9a..d193f382bba 100644
--- a/source/blender/src/header_nla.c
+++ b/source/blender/src/header_nla.c
@@ -289,8 +289,8 @@ static uiBlock *nla_stripmenu(void *arg_unused)
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Strip Properties...|N", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 0, "");
uiDefIconTextBlockBut(block, nla_strip_transformmenu, NULL, ICON_RIGHTARROW_THIN, "Transform", 0, yco-=20, 120, 20, "");
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Reset Strip Size|ALT S", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 8, "");
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Reset Action Start/End|ALT S", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 9, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Reset Strip Size|Alt S", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 8, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Reset Action Start/End|Alt S", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 9, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Snap to Frame|Shift S", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 10, "");
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
@@ -301,8 +301,8 @@ static uiBlock *nla_stripmenu(void *arg_unused)
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Move Up|Page Down", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 6, "");
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Move Down|Page Up", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 7, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Move Down|Page Down", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 7, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Move Up|Page Up", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 6, "");
// uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Convert Action to NLA Strip|C", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 5, "");
diff --git a/source/blender/src/header_view3d.c b/source/blender/src/header_view3d.c
index 97e10fc1585..c2f83c637fd 100644
--- a/source/blender/src/header_view3d.c
+++ b/source/blender/src/header_view3d.c
@@ -1903,6 +1903,35 @@ static uiBlock *view3d_edit_object_trackmenu(void *arg_unused)
return block;
}
+static void do_view3d_edit_object_constraintsmenu(void *arg, int event)
+{
+ switch(event) {
+ case 1: /* add constraint */
+ add_constraint(0);
+ break;
+ case 2: /* clear constraint */
+ ob_clear_constraints();
+ break;
+ }
+ allqueue(REDRAWVIEW3D, 0);
+}
+
+static uiBlock *view3d_edit_object_constraintsmenu(void *arg_unused)
+{
+ uiBlock *block;
+ short yco = 20, menuwidth = 120;
+
+ block= uiNewBlock(&curarea->uiblocks, "view3d_edit_object_constraintsmenu", UI_EMBOSSP, UI_HELV, G.curscreen->mainwin);
+ uiBlockSetButmFunc(block, do_view3d_edit_object_constraintsmenu, NULL);
+
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Add Constraint...|Ctrl Alt C", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 1, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Clear Constraints", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 2, "");
+
+ uiBlockSetDirection(block, UI_RIGHT);
+ uiTextBoundsBlock(block, 60);
+ return block;
+}
+
static void do_view3d_edit_object_scriptsmenu(void *arg, int event)
{
BPY_menu_do_python(PYMENU_OBJECT, event);
@@ -2020,6 +2049,7 @@ static uiBlock *view3d_edit_objectmenu(void *arg_unused)
uiDefIconTextBlockBut(block, view3d_edit_object_parentmenu, NULL, ICON_RIGHTARROW_THIN, "Parent", 0, yco-=20, 120, 19, "");
uiDefIconTextBlockBut(block, view3d_edit_object_trackmenu, NULL, ICON_RIGHTARROW_THIN, "Track", 0, yco-=20, 120, 19, "");
+ uiDefIconTextBlockBut(block, view3d_edit_object_constraintsmenu, NULL, ICON_RIGHTARROW_THIN, "Constraints", 0, yco-=20, 120, 19, "");
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
@@ -3118,6 +3148,35 @@ static uiBlock *view3d_edit_latticemenu(void *arg_unused)
return block;
}
+void do_view3d_edit_armature_parentmenu(void *arg, int event)
+{
+ switch(event) {
+ case 1:
+ make_bone_parent();
+ break;
+ case 2:
+ clear_bone_parent();
+ break;
+ }
+ allqueue(REDRAWVIEW3D, 0);
+}
+
+static uiBlock *view3d_edit_armature_parentmenu(void *arg_unused)
+{
+ uiBlock *block;
+ short yco = 20, menuwidth = 120;
+
+ block= uiNewBlock(&curarea->uiblocks, "view3d_edit_armature_parentmenu", UI_EMBOSSP, UI_HELV, G.curscreen->mainwin);
+ uiBlockSetButmFunc(block, do_view3d_edit_armature_parentmenu, NULL);
+
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Make Parent...|Ctrl P", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 1, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Clear Parent...|Alt P", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 2, "");
+
+ uiBlockSetDirection(block, UI_RIGHT);
+ uiTextBoundsBlock(block, 60);
+ return block;
+}
+
static void do_view3d_edit_armaturemenu(void *arg, int event)
{
switch(event) {
@@ -3144,15 +3203,12 @@ static void do_view3d_edit_armaturemenu(void *arg, int event)
case 7: /* Warp */
initTransform(TFM_WARP, CTX_NONE);
Transform();
- case 8:
- make_bone_parent();
- break;
- case 9:
- clear_bone_parent();
- break;
case 10: /* forked! */
extrude_armature(1);
break;
+ case 11: /* clear roll */
+ auto_align_armature();
+ break;
}
allqueue(REDRAWVIEW3D, 0);
}
@@ -3174,6 +3230,7 @@ static uiBlock *view3d_edit_armaturemenu(void *arg_unused)
uiDefIconTextBlockBut(block, view3d_transformmenu, NULL, ICON_RIGHTARROW_THIN, "Transform", 0, yco-=20, 120, 19, "");
uiDefIconTextBlockBut(block, view3d_edit_mirrormenu, NULL, ICON_RIGHTARROW_THIN, "Mirror", 0, yco-=20, menuwidth, 19, "");
uiDefIconTextBlockBut(block, view3d_edit_snapmenu, NULL, ICON_RIGHTARROW_THIN, "Snap", 0, yco-=20, 120, 19, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Clear Bone Roll Angle|Ctrl N", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 11, "");
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
@@ -3183,9 +3240,11 @@ static uiBlock *view3d_edit_armaturemenu(void *arg_unused)
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Duplicate|Shift D", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 4, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Delete|X", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 5, "");
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Make Parent...|Ctrl P", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 8, "");
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Clear Parent...|Alt P", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 9, "");
+ uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
+
+ uiDefIconTextBlockBut(block, view3d_edit_armature_parentmenu, NULL, ICON_RIGHTARROW_THIN, "Parent", 0, yco-=20, 120, 19, "");
+
if(curarea->headertype==HEADERTOP) {
uiBlockSetDirection(block, UI_DOWN);
}
@@ -3417,7 +3476,7 @@ static uiBlock *view3d_pose_armaturemenu(void *arg_unused)
uiDefIconTextBut(block, BUTM, 1, ICON_MENU_PANEL, "Transform Properties|N", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 0, "");
uiDefIconTextBlockBut(block, view3d_transformmenu, NULL, ICON_RIGHTARROW_THIN, "Transform", 0, yco-=20, 120, 19, "");
uiDefIconTextBlockBut(block, view3d_pose_armature_transformmenu, NULL, ICON_RIGHTARROW_THIN, "Clear Transform", 0, yco-=20, 120, 19, "");
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Scale Envelope Falloff|Alt S", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 13, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Scale Envelope Distance|Alt S", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 13, "");
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
@@ -4289,18 +4348,18 @@ void view3d_buttons(void)
/* Transform widget / manipulators */
uiBlockBeginAlign(block);
- uiDefIconButBitS(block, TOG, V3D_USE_MANIPULATOR, B_REDR, ICON_MANIPUL,xco,0,XIC,YIC, &G.vd->twflag, 0, 0, 0, 0, "Use 3d transform manipulator (CTRL+Space)");
+ uiDefIconButBitS(block, TOG, V3D_USE_MANIPULATOR, B_REDR, ICON_MANIPUL,xco,0,XIC,YIC, &G.vd->twflag, 0, 0, 0, 0, "Use 3d transform manipulator (Ctrl Space)");
xco+= XIC;
if(G.vd->twflag & V3D_USE_MANIPULATOR) {
- uiDefIconButBitS(block, TOG, V3D_MANIP_TRANSLATE, B_MAN_TRANS, ICON_MAN_TRANS, xco,0,XIC,YIC, &G.vd->twtype, 1.0, 0.0, 0, 0, "Translate manipulator mode (CTRL+Space)");
+ uiDefIconButBitS(block, TOG, V3D_MANIP_TRANSLATE, B_MAN_TRANS, ICON_MAN_TRANS, xco,0,XIC,YIC, &G.vd->twtype, 1.0, 0.0, 0, 0, "Translate manipulator mode (Ctrl Alt G)");
xco+= XIC;
- uiDefIconButBitS(block, TOG, V3D_MANIP_ROTATE, B_MAN_ROT, ICON_MAN_ROT, xco,0,XIC,YIC, &G.vd->twtype, 1.0, 0.0, 0, 0, "Rotate manipulator mode (CTRL+Space)");
+ uiDefIconButBitS(block, TOG, V3D_MANIP_ROTATE, B_MAN_ROT, ICON_MAN_ROT, xco,0,XIC,YIC, &G.vd->twtype, 1.0, 0.0, 0, 0, "Rotate manipulator mode (Ctrl Alt R)");
xco+= XIC;
- uiDefIconButBitS(block, TOG, V3D_MANIP_SCALE, B_MAN_SCALE, ICON_MAN_SCALE, xco,0,XIC,YIC, &G.vd->twtype, 1.0, 0.0, 0, 0, "Scale manipulator mode (CTRL+Space)");
+ uiDefIconButBitS(block, TOG, V3D_MANIP_SCALE, B_MAN_SCALE, ICON_MAN_SCALE, xco,0,XIC,YIC, &G.vd->twtype, 1.0, 0.0, 0, 0, "Scale manipulator mode (Ctrl Alt S)");
xco+= XIC;
}
- uiDefButS(block, MENU, B_NOP, "Orientation%t|Global%x0|Local%x1|Normal%x2|View%x3",xco,0,70,YIC, &G.vd->twmode, 0, 0, 0, 0, "Transform Orientation (ALT+Space)");
+ uiDefButS(block, MENU, B_NOP, "Orientation%t|Global%x0|Local%x1|Normal%x2|View%x3",xco,0,70,YIC, &G.vd->twmode, 0, 0, 0, 0, "Transform Orientation (Alt Space)");
xco+= 70;
uiBlockEndAlign(block);
xco+= 8;
diff --git a/source/blender/src/outliner.c b/source/blender/src/outliner.c
index b659362d60a..ed560404cd8 100644
--- a/source/blender/src/outliner.c
+++ b/source/blender/src/outliner.c
@@ -2443,7 +2443,6 @@ static void outliner_draw_tree(SpaceOops *soops)
outliner_draw_selection(soops, &soops->tree, &starty);
// grey hierarchy lines
- glColor3ub(110,110,110);
BIF_ThemeColorBlend(TH_BACK, TH_TEXT, 0.5);
starty= soops->v2d.tot.ymax-OL_H/2;
startx= 6;
diff --git a/source/blender/src/transform.c b/source/blender/src/transform.c
index 0602aa22e44..f1506887401 100755
--- a/source/blender/src/transform.c
+++ b/source/blender/src/transform.c
@@ -495,10 +495,14 @@ static void transformEvent(unsigned short event, short val) {
stopConstraint(&Trans);
}
else {
- if (G.qual & LR_CTRLKEY)
+ if (G.qual & LR_CTRLKEY) {
initSelectConstraint(&Trans, Trans.spacemtx);
- else
+ }
+ else {
+ /* bit hackish... but it prevents mmb select to print the orientation from menu */
+ strcpy(Trans.spacename, "global");
initSelectConstraint(&Trans, mati);
+ }
postSelectConstraint(&Trans);
}
}
diff --git a/source/blender/src/transform_conversions.c b/source/blender/src/transform_conversions.c
index 82b5c63d4cb..a7ab91b59c3 100755
--- a/source/blender/src/transform_conversions.c
+++ b/source/blender/src/transform_conversions.c
@@ -2355,6 +2355,7 @@ void createTransData(TransInfo *t)
createTransMBallVerts(t);
}
else if (G.obedit->type==OB_ARMATURE) {
+ t->flag &= ~T_PROP_EDIT;
createTransArmatureVerts(t);
}
else {
diff --git a/source/blender/src/transform_generics.c b/source/blender/src/transform_generics.c
index d88a128cdb7..cfd7223c1c1 100755
--- a/source/blender/src/transform_generics.c
+++ b/source/blender/src/transform_generics.c
@@ -492,11 +492,18 @@ void postTrans (TransInfo *t)
static void apply_grid3(TransInfo *t, float *val, int max_index, float fac1, float fac2, float fac3)
{
/* fac1 is for 'nothing', fac2 for CTRL, fac3 for SHIFT */
- int invert = U.flag & USER_AUTOGRABGRID;
+ int invert;
int ctrl;
int i;
float asp= 1.0f;
+ if(t->mode==TFM_ROTATION || t->mode==TFM_WARP || t->mode==TFM_TILT || t->mode==TFM_TRACKBALL)
+ invert = U.flag & USER_AUTOROTGRID;
+ else if(t->mode==TFM_RESIZE || t->mode==TFM_SHEAR || t->mode==TFM_BONESIZE || t->mode==TFM_SHRINKFATTEN)
+ invert = U.flag & USER_AUTOSIZEGRID;
+ else
+ invert = U.flag & USER_AUTOGRABGRID;
+
for (i=0; i<=max_index; i++) {
/* evil hack - snapping needs to be adapted for image aspect ratio */
diff --git a/source/blender/src/transform_manipulator.c b/source/blender/src/transform_manipulator.c
index 990de66a6d3..6b16a3b0497 100644
--- a/source/blender/src/transform_manipulator.c
+++ b/source/blender/src/transform_manipulator.c
@@ -295,17 +295,24 @@ int calc_manipulator_stats(ScrArea *sa)
bezt= nu->bezt;
a= nu->pntsu;
while(a--) {
- if(bezt->f1) {
- calc_tw_center(bezt->vec[0]);
- totsel++;
- }
- if(bezt->f2) {
+ /* exception */
+ if( (bezt->f1 & SELECT) + (bezt->f2 & SELECT) + (bezt->f3 & SELECT) > SELECT ) {
calc_tw_center(bezt->vec[1]);
totsel++;
}
- if(bezt->f3) {
- calc_tw_center(bezt->vec[2]);
- totsel++;
+ else {
+ if(bezt->f1) {
+ calc_tw_center(bezt->vec[0]);
+ totsel++;
+ }
+ if(bezt->f2) {
+ calc_tw_center(bezt->vec[1]);
+ totsel++;
+ }
+ if(bezt->f3) {
+ calc_tw_center(bezt->vec[2]);
+ totsel++;
+ }
}
bezt++;
}
diff --git a/source/gameengine/Ketsji/KX_IpoActuator.cpp b/source/gameengine/Ketsji/KX_IpoActuator.cpp
index df4a5047ef1..1b6b92c790d 100644
--- a/source/gameengine/Ketsji/KX_IpoActuator.cpp
+++ b/source/gameengine/Ketsji/KX_IpoActuator.cpp
@@ -163,7 +163,8 @@ bool KX_IpoActuator::ClampLocalTime()
void KX_IpoActuator::SetStartTime(float curtime)
{
float direction = m_startframe < m_endframe ? 1.0 : -1.0;
-
+
+ curtime = curtime - KX_KetsjiEngine::GetSuspendedDelta();
if (m_direction > 0)
m_starttime = curtime - direction*(m_localtime - m_startframe)/KX_FIXED_FRAME_PER_SEC;
else
@@ -172,7 +173,14 @@ void KX_IpoActuator::SetStartTime(float curtime)
void KX_IpoActuator::SetLocalTime(float curtime)
{
- float delta_time = (curtime - m_starttime)*KX_FIXED_FRAME_PER_SEC;
+ float delta_time = ((curtime - m_starttime) - KX_KetsjiEngine::GetSuspendedDelta())*KX_FIXED_FRAME_PER_SEC;
+
+ // negative delta_time is caused by floating point inaccuracy
+ // perhaps the inaccuracy could be reduced a bit
+ if ((m_localtime==m_startframe || m_localtime==m_endframe) && delta_time<0.0)
+ {
+ delta_time = 0.0;
+ }
if (m_endframe < m_startframe)
delta_time = -delta_time;
@@ -211,7 +219,7 @@ bool KX_IpoActuator::Update(double curtime, bool frame)
bool result=true;
if (m_starttime < -2.0*start_smaller_then_end*(m_endframe - m_startframe))
- m_starttime = curtime;
+ m_starttime = curtime - KX_KetsjiEngine::GetSuspendedDelta();
switch (m_type)
{
@@ -241,7 +249,7 @@ bool KX_IpoActuator::Update(double curtime, bool frame)
} else
{
m_localtime=m_startframe;
- m_starttime=curtime;
+ SetStartTime(curtime);
m_direction=1;
}
break;
diff --git a/source/gameengine/Ketsji/KX_KetsjiEngine.cpp b/source/gameengine/Ketsji/KX_KetsjiEngine.cpp
index a163e8fde58..e82ecd83fee 100644
--- a/source/gameengine/Ketsji/KX_KetsjiEngine.cpp
+++ b/source/gameengine/Ketsji/KX_KetsjiEngine.cpp
@@ -99,6 +99,9 @@ const char KX_KetsjiEngine::m_profileLabels[tc_numCategories][15] = {
double KX_KetsjiEngine::m_ticrate = DEFAULT_LOGIC_TIC_RATE;
+double KX_KetsjiEngine::m_suspendedtime = 0.0;
+double KX_KetsjiEngine::m_suspendeddelta = 0.0;
+
/**
* Constructor of the Ketsji Engine
@@ -355,6 +358,12 @@ void KX_KetsjiEngine::NextFrame()
if (!scene->IsSuspended())
{
+ // if the scene was suspended recalcutlate the delta tu "curtime"
+ m_suspendedtime = scene->getSuspendedTime();
+ if (scene->getSuspendedTime()!=0.0)
+ scene->setSuspendedDelta(scene->getSuspendedDelta()+curtime-scene->getSuspendedTime());
+ m_suspendeddelta = scene->getSuspendedDelta();
+
m_logger->StartLog(tc_physics, m_kxsystem->GetTimeInSeconds(), true);
m_logger->StartLog(tc_network, m_kxsystem->GetTimeInSeconds(), true);
scene->GetNetworkScene()->proceed(localtime);
@@ -403,7 +412,11 @@ void KX_KetsjiEngine::NextFrame()
m_sceneconverter->WritePhysicsObjectToAnimationIpo(m_currentFrame++);
}
+ scene->setSuspendedTime(0.0);
} // suspended
+ else
+ if(scene->getSuspendedTime()==0.0)
+ scene->setSuspendedTime(curtime);
DoSound(scene);
@@ -439,6 +452,12 @@ void KX_KetsjiEngine::NextFrame()
if (!scene->IsSuspended())
{
+ // if the scene was suspended recalcutlate the delta tu "curtime"
+ m_suspendedtime = scene->getSuspendedTime();
+ if (scene->getSuspendedTime()!=0.0)
+ scene->setSuspendedDelta(scene->getSuspendedDelta()+curtime-scene->getSuspendedTime());
+ m_suspendeddelta = scene->getSuspendedDelta();
+
// set Python hooks for each scene
PHY_SetActiveEnvironment(scene->GetPhysicsEnvironment());
PHY_SetActiveScene(scene);
@@ -459,7 +478,12 @@ void KX_KetsjiEngine::NextFrame()
// Actuators can affect the scenegraph
m_logger->StartLog(tc_scenegraph, m_kxsystem->GetTimeInSeconds(), true);
scene->UpdateParents(curtime);
+
+ scene->setSuspendedTime(0.0);
} // suspended
+ else
+ if(scene->getSuspendedTime()==0.0)
+ scene->setSuspendedTime(curtime);
DoSound(scene);
@@ -1224,6 +1248,11 @@ bool KX_KetsjiEngine::GetUseFixedTime(void) const
return m_bFixedTime;
}
+double KX_KetsjiEngine::GetSuspendedDelta()
+{
+ return m_suspendeddelta;
+}
+
double KX_KetsjiEngine::GetTicRate()
{
return m_ticrate;
diff --git a/source/gameengine/Ketsji/KX_KetsjiEngine.h b/source/gameengine/Ketsji/KX_KetsjiEngine.h
index 7f0b4fd59f9..f7c919e19d5 100644
--- a/source/gameengine/Ketsji/KX_KetsjiEngine.h
+++ b/source/gameengine/Ketsji/KX_KetsjiEngine.h
@@ -103,6 +103,9 @@ private:
double m_deltatime;
static double m_ticrate;
+ static double m_suspendedtime;
+ static double m_suspendeddelta;
+
int m_exitcode;
STR_String m_exitstring;
/**
@@ -237,7 +240,13 @@ public:
* @return Current setting for display all frames.
*/
bool GetUseFixedTime(void) const;
-
+
+ /**
+ * Returns the difference between the local time of the scene (when it
+ * was running and not suspended) and the "curtime"
+ */
+ static double GetSuspendedDelta();
+
/**
* Gets the number of logic updates per second.
*/
diff --git a/source/gameengine/Ketsji/KX_Scene.cpp b/source/gameengine/Ketsji/KX_Scene.cpp
index cabba5cacb0..6ad420375e6 100644
--- a/source/gameengine/Ketsji/KX_Scene.cpp
+++ b/source/gameengine/Ketsji/KX_Scene.cpp
@@ -112,7 +112,8 @@ KX_Scene::KX_Scene(class SCA_IInputDevice* keyboarddevice,
m_active_camera(NULL),
m_ueberExecutionPriority(0)
{
-
+ m_suspendedtime = 0.0;
+ m_suspendeddelta = 0.0;
m_activity_culling = false;
m_suspend = false;
@@ -1135,6 +1136,23 @@ void KX_Scene::SetPhysicsEnvironment(class PHY_IPhysicsEnvironment* physEnv)
m_logicmgr->RegisterEventManager(touchmgr);
return;
}
+
+void KX_Scene::setSuspendedTime(double suspendedtime)
+{
+ m_suspendedtime = suspendedtime;
+}
+double KX_Scene::getSuspendedTime()
+{
+ return m_suspendedtime;
+}
+void KX_Scene::setSuspendedDelta(double suspendeddelta)
+{
+ m_suspendeddelta = suspendeddelta;
+}
+double KX_Scene::getSuspendedDelta()
+{
+ return m_suspendeddelta;
+}
//----------------------------------------------------------------------------
//Python
diff --git a/source/gameengine/Ketsji/KX_Scene.h b/source/gameengine/Ketsji/KX_Scene.h
index 0c0ee4e287a..7203fa87acc 100644
--- a/source/gameengine/Ketsji/KX_Scene.h
+++ b/source/gameengine/Ketsji/KX_Scene.h
@@ -251,6 +251,9 @@ protected:
void MarkVisible(SG_Tree *node, RAS_IRasterizer* rasty);
void MarkSubTreeVisible(SG_Tree *node, RAS_IRasterizer* rasty, bool visible);
void MarkVisible(RAS_IRasterizer* rasty, KX_GameObject* gameobj);
+
+ double m_suspendedtime;
+ double m_suspendeddelta;
/**
* This stores anything from python
@@ -515,6 +518,25 @@ public:
virtual PyObject* _getattr(const STR_String& attr); /* name, active_camera, gravity, suspended, viewport, framing, activity_culling, activity_culling_radius */
virtual int _setattr(const STR_String &attr, PyObject *pyvalue);
virtual int _delattr(const STR_String &attr);
+
+ /**
+ * Sets the time the scene was suspended
+ */
+ void setSuspendedTime(double suspendedtime);
+ /**
+ * Returns the "curtime" the scene was suspended
+ */
+ double getSuspendedTime();
+ /**
+ * Sets the difference between the local time of the scene (when it
+ * was running and not suspended) and the "curtime"
+ */
+ void setSuspendedDelta(double suspendeddelta);
+ /**
+ * Returns the difference between the local time of the scene (when it
+ * was running and not suspended) and the "curtime"
+ */
+ double getSuspendedDelta();
};
typedef std::vector<KX_Scene*> KX_SceneList;